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
74727
IGSBCToken
freeze
contract IGSBCToken is UnboundedRegularToken { uint public totalSupply = 50*10**16; uint8 constant public decimals = 8; string constant public name = "Bit diamond"; string constant public symbol = "IGSBC"; address public owner; mapping (address => uint) public freezes; /* This notifies clients about the amount burnt */ event Burn(address indexed from, uint value); /* This notifies clients about the amount frozen */ event Freeze(address indexed from, uint value); /* This notifies clients about the amount unfrozen */ event Unfreeze(address indexed from, uint value); function IGSBCToken() public { balances[msg.sender] = totalSupply; owner = msg.sender; emit Transfer(address(0), msg.sender, totalSupply); } function totalSupply() public constant returns (uint){ return totalSupply; } function burn(uint _value) public returns (bool success) { if (balances[msg.sender] >= _value && totalSupply - _value <= totalSupply){ balances[msg.sender] -= _value; // Subtract from the sender totalSupply -= _value; emit Burn(msg.sender, _value); return true; }else { return false; } } function freeze(uint _value) public returns (bool success) {<FILL_FUNCTION_BODY> } function unfreeze(uint _value) public returns (bool success) { if (freezes[msg.sender] >= _value && balances[msg.sender] + _value >= balances[msg.sender]){ freezes[msg.sender] -= _value; balances[msg.sender] += _value; emit Unfreeze(msg.sender, _value); return true; }else { return false; } } function transferAndCall(address _to, uint _value, bytes _extraData) public returns (bool success) { if(transfer(_to,_value)){ TransferReceiver(_to).receiveTransfer(msg.sender, _value, this, _extraData); return true; } else { return false; } } function approveAndCall(address _spender, uint _value, bytes _extraData) public returns (bool success) { if(approve(_spender,_value)){ ApprovalReceiver(_spender).receiveApproval(msg.sender, _value, this, _extraData) ; return true; } else { return false; } } // transfer balance to owner function withdrawEther(uint amount) public { if(msg.sender == owner){ owner.transfer(amount); } } // can accept ether function() public payable { } }
contract IGSBCToken is UnboundedRegularToken { uint public totalSupply = 50*10**16; uint8 constant public decimals = 8; string constant public name = "Bit diamond"; string constant public symbol = "IGSBC"; address public owner; mapping (address => uint) public freezes; /* This notifies clients about the amount burnt */ event Burn(address indexed from, uint value); /* This notifies clients about the amount frozen */ event Freeze(address indexed from, uint value); /* This notifies clients about the amount unfrozen */ event Unfreeze(address indexed from, uint value); function IGSBCToken() public { balances[msg.sender] = totalSupply; owner = msg.sender; emit Transfer(address(0), msg.sender, totalSupply); } function totalSupply() public constant returns (uint){ return totalSupply; } function burn(uint _value) public returns (bool success) { if (balances[msg.sender] >= _value && totalSupply - _value <= totalSupply){ balances[msg.sender] -= _value; // Subtract from the sender totalSupply -= _value; emit Burn(msg.sender, _value); return true; }else { return false; } } <FILL_FUNCTION> function unfreeze(uint _value) public returns (bool success) { if (freezes[msg.sender] >= _value && balances[msg.sender] + _value >= balances[msg.sender]){ freezes[msg.sender] -= _value; balances[msg.sender] += _value; emit Unfreeze(msg.sender, _value); return true; }else { return false; } } function transferAndCall(address _to, uint _value, bytes _extraData) public returns (bool success) { if(transfer(_to,_value)){ TransferReceiver(_to).receiveTransfer(msg.sender, _value, this, _extraData); return true; } else { return false; } } function approveAndCall(address _spender, uint _value, bytes _extraData) public returns (bool success) { if(approve(_spender,_value)){ ApprovalReceiver(_spender).receiveApproval(msg.sender, _value, this, _extraData) ; return true; } else { return false; } } // transfer balance to owner function withdrawEther(uint amount) public { if(msg.sender == owner){ owner.transfer(amount); } } // can accept ether function() public payable { } }
if (balances[msg.sender] >= _value && freezes[msg.sender] + _value >= freezes[msg.sender]){ balances[msg.sender] -= _value; // Subtract from the sender freezes[msg.sender] += _value; // Updates totalSupply emit Freeze(msg.sender, _value); return true; }else { return false; }
function freeze(uint _value) public returns (bool success)
function freeze(uint _value) public returns (bool success)
58382
CCD_EUROSIBENERGO_20190326_6
transferFrom
contract CCD_EUROSIBENERGO_20190326_6 { mapping (address => uint256) public balanceOf; string public name = " CCD_EUROSIBENERGO_20190326_6 " ; string public symbol = " CCD_EUROSIBENERGO_20190326_6_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> } // } // Futures_Eurosibenergo_OJSC // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 45,759312 ; 1,14 ; 39,139747368421 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; AB9CCC1F4374F3f8354EecaDA1DBb5EC4DF552Cc9F0376c3E9EaffcfEE3aefCA ; < dhZZvf0L571c01a7t6d069KLZUw9HWI7D19kizRBKsjfF77zeuBMr2H5oQU2s1gJ > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 45,7595117944225 ; 1,1400057 ; 39,1397219280767 ; 45,7592617944225 ; 45,7597617944225 ; 0,6 ; -7,5 ; -3,7 ; -6,7 ; 9,6 ; 9 ; 0,96 ; Future47AP19 ; 56DD5f4f6CBaa83E3ae5aBea0de9fE8fF2BCbdB1c767ef58f9ab8B7f55BdfEfC ; < jLwe0Fc70P2rGvTr8N21Wga0pnnwzwG3qIJ3qH1m8Mvf4Wz669P0CNZa3kySoVvu > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 46,2648465541608 ; 1,1539244617613 ; 39,0934793283992 ; 46,2645965541608 ; 46,2650965541608 ; -3,1 ; 9,5 ; 8,7 ; 1,9 ; 7,4 ; 4,3 ; -0,74 ; FutureJU1990 ; 5B538FeBC64dcCB7Fed2cCcBafFcAACA3fBf9feA3fd7DE9dBe3A081bFEf319C9 ; < dh06ZdWgln4KuvcSl7ew44KJeV0Rw19NF5T2682r1QKX49Trq21gf5k7Y7HA6C6c > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 46,7752491865243 ; 1,18199922150755 ; 38,5729949186143 ; 46,7749991865243 ; 46,7754991865243 ; -6,7 ; -7,2 ; 8,2 ; -6,8 ; 8,2 ; 8 ; -0,35 ; FutureAU1934 ; CB7CAb1ceE0Bc0fd4d44DFBEfEEaB6CFdBe3A21B15C6dD9feEFbC4a4A676a1dd ; < LNjyJEfMdCs9b416LsP6DgY6Zb8fWGGOSEWv1ToJX2f06cJbH6Ddy6mFV5k6S8eP > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 47,3492614701451 ; 1,22550278283675 ; 37,636600531043 ; 47,3490114701451 ; 47,3495114701451 ; -9,8 ; 9,5 ; -5,7 ; 9,5 ; 9 ; -2 ; 0,91 ; FutureOC1974 ; B4EDb04DfdaDf3ECeED7a75deDCDC4fEe0c9fdAaEFbf6fAaC0c2aEEbcbCCEc8f ; < C0d0XDpqr348PI7YEXumRthXm2Yc6F7qE0S3w6twO5Ug0TmFDpRnrtR04pjtPy7I > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 47,9402903426262 ; 1,28606708760987 ; 36,2766637172266 ; 47,9400403426262 ; 47,9405403426262 ; 9,3 ; -6,5 ; -3,1 ; -7,5 ; -8 ; -6,1 ; 0,91 ; FutureDE1976 ; ffd8Ac9CE9ccbE2dFe1FFfa04c6B35D4b4BB0F1B4b3cFc66af0cb78eeCDABA57 ; < 4F5ICm27O60CaJ6195YNbYnPwh6NP6gKe6o66HMqt9PbAMfjkhc74pRJmXt8jg2c > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 48,5228945842474 ; 1,36599914885628 ; 34,5219068949454 ; 48,5226445842474 ; 48,5231445842474 ; -2,1 ; 1,3 ; 9,5 ; 3,4 ; 1,2 ; -3 ; -0,2 ; FutureFE2076 ; 1AcabABABA3ACbE8Ee67c573ABAAc19AfAeb28A4e5E27c6ff0fc8cf7BEEe3C11 ; < f1JnAZgyMb65qk3Cpa38sNW13yNJD38eMY83qzr6Fswu8AmKRinhPk1TIdVvKXZf > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 49,189063953024 ; 1,46838351706136 ; 32,4987851480824 ; 49,188813953024 ; 49,189313953024 ; 7,5 ; 3,2 ; 5,1 ; -1,1 ; -0,6 ; -9,5 ; -0,09 ; FutureAP2088 ; faaFEafdaBE98D7DDEDF8BCBDeAed6CEEBdabBf26FB84D6af0Ed13ebfa28fF2a ; < 34PI7F081grEcumGyFwi8mnCtYY0op0m9uSjW9jEC26Ezkq9riEuW2LR3pMVtKTH > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 49,8792802202895 ; 1,59760105735729 ; 30,2213615474181 ; 49,8790302202895 ; 49,8795302202895 ; -1 ; 9,1 ; 5,2 ; -4,4 ; 2,7 ; 7,2 ; 0,25 ; FutureJU2031 ; ce78e3Eed2EB0dcEB0f1FdCbeBc1e8fdc3BfCbEb7cA5cAee8bfbc2BebdD3Bd2F ; < vTesYuY7PyIW8aVMelxAvpel3nbbv1Yi7RuI8suu0Ho2aG2cT1NwXCf52u04YQ02 > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 50,5763634795173 ; 1,7592523917277 ; 27,7487819924736 ; 50,5761134795173 ; 50,5766134795173 ; 7,3 ; 4,3 ; 5,5 ; 4,1 ; 4,4 ; -5,2 ; 0,15 ; FutureAU2048 ; E17a4d3dff8Ca49fcBadE521E0aeeEEfE9A6BeAF68aBBdBed4E19bAeFFd6bfDd ; < nQ5P45F13A0M2c4x77UwDOw7YXI49xrR3XK9f80Him9Kv95IMq4pLrVTd9Gg4aEM > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 51,360721530577 ; 1,96085870954699 ; 25,1929741702005 ; 51,360471530577 ; 51,360971530577 ; -6,3 ; -3,3 ; -5,3 ; 9,7 ; 8,4 ; 8,9 ; 0,23 ; FutureOC2031 ; C49BC0C4dC7c9b125a00DF37aaf83fba50d43aBb0Bc7c9FEB69d85b51EeEdd7F ; < CKg5w7f9EO4mjy5m0c2lxKLT3nMg6u8H71yWGBXVER5QzyX9x9cBX02RTZWu1k7Q > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 52,088035377962 ; 2,21214586603078 ; 22,5463837072475 ; 52,087785377962 ; 52,088285377962 ; 0,7 ; 9,6 ; -9,2 ; -6,6 ; 7,5 ; 5,5 ; 0,94 ; FutureDE2088 ; ebF8fF3d2cC20C7A3aCb8Ebb7F2D78CEFDdbAbAdFFdcfAE8C1d7eCDe9a0D0D5C ; < nmBxXJWxH2a13c2kDM942IS2U90S9R9vGvxXVu8H9R78dyZt2lF5Pg35SN0zfZnM > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 52,8654573668434 ; 2,52591962372554 ; 19,929192231727 ; 52,8652073668434 ; 52,8657073668434 ; 1,7 ; -1,6 ; 0,5 ; -6,9 ; -6,6 ; 7,9 ; 0,12 ; FutureFE2175 ; Ac8Fb0E9caEDf3D420fce4DCD2EB12d0b61F5AfC9efACF365ea7A809ccC2FEc6 ; < W00690c9Z56aO6uJpQW2wUFxYyeM6uZkQ5I0w7Lxr3rji20rGhme91A16lp5eGUp > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 53,7722233355309 ; 2,91910679827428 ; 17,4207797286896 ; 53,7719733355309 ; 53,7724733355309 ; -7,8 ; -2,1 ; 8,7 ; 0,1 ; -4,4 ; 7,9 ; 0,14 ; FutureAP2158 ; 7Da181CCaAeAaebCEF4aDAf59Ceec18a6ce2C0DA08607BC6C6EBaEBCFbd9560c ; < mitI41Ne3Xi98871Tz3v9b3WhLsO481DCF37GZUJ3ErOKl94Wh0gbmHkXNH68N5M > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 54,6266189290596 ; 3,4140779814911 ; 15,0004016385125 ; 54,6263689290596 ; 54,6268689290596 ; -6,8 ; 4,3 ; -5,6 ; 5 ; 0,2 ; 0,1 ; 0,63 ; FutureJU2141 ; 8f37bffCeFD2cE912a88d789e6aDD6ecbEbfB2cc06AA0B9eCadAd0Bfa73E3b2F ; < 6vQ298I2hAU0et6SO1id26BTr7ed1z54QYrnJnCK1F0w02GQMM3rtO05ntoJ8mcq > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 55,4405143473106 ; 4,04175289739112 ; 12,7169480061724 ; 55,4402643473106 ; 55,4407643473106 ; 2,4 ; 0,1 ; -4,4 ; 4,5 ; -4 ; 1,3 ; 0,23 ; FutureAU2124 ; 7cfb143456409c57290B7B0b9e007CdDCdfaD8E8F6cBFb879Eeeee72cbd5FaF2 ; < 3uWAxI20GAqH7c0DvZq8B790pdqR2wu9D07DAF7L9Abwbtw7yYT817Y4yC1Lx6c4 > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 56,4031083676518 ; 4,84242213335702 ; 10,647705799773 ; 56,4028583676518 ; 56,4033583676518 ; 6 ; -1,7 ; -8,5 ; 5,7 ; -4,7 ; 1,4 ; -0,9 ; FutureOC2116 ; 896adA09E4dC6406C4Ed233BaDdf6DF3D30E8AEACEfa3aCf1adb4DCAAbbbadbF ; < 738fE7u9wwcEm7W9S9NyA9g1XCNrxQ64kqD4PUym0PNMSf46jggsL549Qm4abMAy > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 57,5092633922582 ; 5,87290920690256 ; 8,79229566918323 ; 57,5090133922582 ; 57,5095133922582 ; 9,1 ; -4,6 ; -8,1 ; 5,7 ; -8,4 ; 6,4 ; -0,74 ; FutureDE2151 ; EF2BAe32BBDFEd7142daBcCf8c31d185fCB5A20ea28F6FcFABeb36Bb2e4177bC ; < 08fpjf8KmwR57S10pa8roMx1Qrv9v703TYClvGG6vETpu4mnUAPiDeM0Ub832c3Q > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 58,5543156365361 ; 7,20899488896988 ; 7,12239660845468 ; 58,5540656365361 ; 58,5545656365361 ; 0,7 ; -2,3 ; -9 ; -4,2 ; -7,5 ; -8,8 ; -0,13 ; FutureFE2249 ; Eb2e2DbDBc2F1cf50aBBcbF9C4A6CfFafFd9675EADc2ceb8eaCDE2cCcbeDe5fF ; < X6L0JykH355qsdpjzRerO1UsNr2ginrg11mX1iU2prAHuB855OX7D36dxuk654cA > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 59,4376633771434 ; 8,95530811874447 ; 5,63714331087433 ; 59,4374133771434 ; 59,4379133771434 ; -9,6 ; -6,5 ; -7,1 ; -0,8 ; 1,9 ; 6,8 ; -0,26 ; FutureAP2268 ; fbBaC6E0CdfB37aEc5a7acCAFd65FEbEAfb3E1FBEc6EcbfDB3a1adeceCEBDECB ; < 2JNYz68q3E0c996DiN2GIQ4pf4xa0h14cndNfrJnwJjdOZp10dsZJw0W98T21578 > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 60,655856332567 ; 11,2603814837049 ; 4,38666087115637 ; 60,655606332567 ; 60,656106332567 ; 9 ; -7,7 ; 5,3 ; -4,3 ; -7,9 ; 9,3 ; -0,74 ; FutureJU2219 ; 4F0aA8fF7CfB9Dbc73fe4Fafb71DcAaaB9adC4EAABbFEef1fAebb926DCfeE5CE ; < MOYB95Q2t5p9cVu1BV06cUerB5WA4do57T8Q59exNa68iPvaC1OINZeaNqr8YGod > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 61,626383455219 ; 14,3305096237484 ; 3,30036230903418 ; 61,626133455219 ; 61,626633455219 ; -5,6 ; -0,1 ; 6,2 ; -4,9 ; 1,2 ; 4,7 ; -0,34 ; FutureAU2266 ; eEaEC2ff3761b17eD5B0Fa5D2eCfbcFAabA60d4A710E795DfbaBEBb541Bf7ACA ; < Fs0qO1yxrfEm36FkH1anu9s49e7CG56TVSn395zXqNMv4YtaBRP6MYASjnJJ81LP > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 63,052746256575 ; 18,4589404927482 ; 2,41583777689439 ; 63,052496256575 ; 63,052996256575 ; 4,3 ; 3,5 ; 8,6 ; -8,5 ; -0,4 ; -9,2 ; 0,27 ; FutureOC2223 ; abBf1EDfb8a84C3bAfEdfFd71d4C4E932B1caab3d1D3fe8126F6Eadf3BdF7Fef ; < mKCnm46QDZay8AZs8i6M91264c735tD0B6e609o7abHns8IR8mGSfsN4z5F091F8 > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 64,3656892307944 ; 24,063537883637 ; 1,67482236161801 ; 64,3654392307944 ; 64,3659392307944 ; -2,5 ; 0,8 ; 1,2 ; -6,4 ; 2,7 ; 7,5 ; -0,83 ; FutureDE2236 ; 23Cf8DFFeEE879cF104dD4221D5D39fc9b93bf821D7CCdDB9b9cf64Dc1EB0ceA ; < hV4s3E89Z4V74sl4CvtjC6d9EG2UO9f5v1j6mCpG45EX3LJ4992nMRy12q927tnI > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 65,6048616975017 ; 31,7506052749813 ; 1,06625546597679 ; 65,6046116975017 ; 65,6051116975016 ; -8,8 ; -5,4 ; -2,8 ; 9,6 ; -4,6 ; 5,8 ; 0,08 ; FutureFE2310 ; EE1efDc61FBF3dD0DE6b04FDBb5CDaC525ebd8bC0477e5B62aDAbBaBAdcd2A4F ; < G82TB6165xDa1CLgtaL6BCn1Ch5g4UI3a57JoUxmJl8sIG39sB1DxzJ836G8YVSU > > // < CALLS ; 1Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 24,594531976512 ; quote ; 53,6714134246759 ; 52,5979851561824 ; 0,0204081632653061 ; 6,4 ; 49,6460574178253 ; 57,6967694315266 ; 5,7 ; EFFaB7D0A7fdCeFefF5ea6BcdC1fe7BB249E1ce60Ef03Fe827b50D9AcFfc6E1f ; < GjWo11OkqVB3eTalAz8j4Xtr33A2q0496aUlszl9fyOVdp13X7L3T1GP5162hQ49 > > // < CALLS 27,0539851741632 ; quote ; 49,1194092921563 ; 48,1370211063132 ; 0,0204081632653061 ; -3,4 ; 45,4354535952446 ; 52,803364989068 ; 0,3 ; E97659CDEEAf37cBFCB34ADD4C7cFdf8a3cDfAfc5faBdBA0A3052Ab6e2ABd4CD ; < wI3Y9XecQ3GRyQtuz3zaSafWH8w84wNotONUJ45SEZZ2L78AbRDk54WKU8ik3Rw6 > > // < CALLS 29,5134383718144 ; quote ; 44,6476691224842 ; 43,7547157400345 ; 0,0204081632653061 ; -7,5 ; 41,2990939382979 ; 47,9962443066705 ; 2,2 ; bA5BefC1D8EAbD9e0C9Da4B7869b0a8eBBfea30dd4Aaf5C0079dAe78ffCbEca5 ; < D3j1R3z0e2g1F1hRlL8MXE6W3Zh1bRo4qR15cQS0zu04XXBM9P13OB7RKG6HV2fw > > // < CALLS 31,9728915694656 ; quote ; 40,2955533564589 ; 39,4896422893297 ; 0,0204081632653061 ; 4,2 ; 37,2733868547244 ; 43,3177198581933 ; 5,3 ; B1BCAfFdE0aDC849EbB8e44e5F75BFCe8c7eBfa1dE5DF9Cc9a3E3cda0890fa7A ; < KR9PW0yUEctiDLKMVjrwmD2aF4Xw8J4MZG4wNvu7I4YHScXX3iQdHQH1s8va1sCw > > // < CALLS 34,4323447671168 ; quote ; 36,1055124059439 ; 35,383402157825 ; 0,0204081632653061 ; -4,8 ; 33,3975989754981 ; 38,8134258363897 ; 9,4 ; 26fd799A1CE9eABfcDA1fEB5AEaEfc2D8ebBFc124ED9AcE0fEF0fE21Df7c33ab ; < I3l401mF77lISItraL9gOp2MohYkTFQUN7X77USNfuH7o92K9JkINEa9b31s8Kvd > > // < CALLS 36,891797964768 ; quote ; 32,1187612069275 ; 31,4763859827889 ; 0,0204081632653061 ; 2,6 ; 29,7098541164079 ; 34,527668297447 ; -2,4 ; d5b8E76D0EfDADB49c9cD5eCBD14A2EcBEfaf5bbcB58aFffAC1df0F87cDe0aca ; < QJ143vvsi44HV7cnZ2Uyct0ek63zd7KMJcaQ86uC6u4nbWkFG7TJDE3vh893EY5j > > // < CALLS 39,3512511624192 ; quote ; 28,37139808825 ; 27,803970126485 ; 0,0204081632653061 ; -2,2 ; 26,2435432316312 ; 30,4992529448687 ; 5,2 ; Ab9CdEBB6aE43D8160df6cfdc5ECDbDecdd1EF5CF9c53E47FcB7dAec5D8AaFCB ; < 6N6P05zM1rr9Ino1xjA94htu6rRxiLhUDXmTEn1qDn897w80R2eMyai4238PH9Gw > > // < CALLS 41,8107043600704 ; quote ; 24,8915992243272 ; 24,3937672398406 ; 0,0204081632653061 ; 9,9 ; 23,0247292825026 ; 26,7584691661517 ; -9,1 ; D52B8bAcccAc338D4Bfb6aeACcf508977ddD3eB812A1dE01FaFB2CadeE3c2e14 ; < gjZ9wT7s36l1J5miDLW646w93JPG779V91gX9dmfQU74k4eJyzAtVkh534Gv5vZS > > // < CALLS 44,2701575577216 ; quote ; 21,6981222819644 ; 21,2641598363251 ; 0,0204081632653061 ; -6,1 ; 20,0707631108171 ; 23,3254814531117 ; -2,7 ; cb199c8AeC52FDC2E1a9BF8BA6A5bAAfFF576cA6CaeA224dCADc43b27E6fe47E ; < 51FTVmWCKYL3tNV6NA3BsfEPsoDjwDcjyP9hSqJTb5H5Pq08Rx7uGtOmG1dr1dV9 > > // < CALLS 46,7296107553728 ; quote ; 18,8000367010218 ; 18,4240359670014 ; 0,0204081632653061 ; -6,8 ; 17,3900339484452 ; 20,2100394535985 ; -9,3 ; E40fC1D3deabbFd8138B1fE1A2cDEcaC6FFCb5A5CEfb0d82cCFfFb5CAEC1cbCc ; < Ow96C9esqPJj0qjT4tKj27YSvKOEYlSJ0Lzp92CXM2pQCYH1Ajo11HkfCCpkAc11 > > // < CALLS 49,189063953024 ; quote ; 16,1974130106331 ; 15,8734647504204 ; 0,0204081632653061 ; -3,2 ; 14,9826070348356 ; 17,4122189864306 ; -8,8 ; 9Bcf87eb6dbeE56caBd85C4aAF6eE2Ab9693b2adBb119bdDD1f192DDBeFECe44 ; < VLzAe9w8o5x4VsXzLD9v0Er9yg0K3dSBOcX2fi057ONy3m0N8m4PBp6p906WqWJI > > // < CALLS 51,6485171506752 ; quote ; 13,8826388518815 ; 13,6049860748439 ; 0,0204081632653061 ; 1,4 ; 12,8414409379904 ; 14,9238367657727 ; -8,6 ; B1CDF3eCDfFedBBBDb1eFAeAEdA045Bfc38bBb5Fb2CceBB5AC1cF5Eb2AdCDaFa ; < 2V5Dne99JB14AdDx2N19Rs66zUtnkUzf1V0Xu1IInfCpw55kTTO18HsIT75Wo2bQ > > // < CALLS 54,1079703483264 ; quote ; 11,8420480713358 ; 11,605207109909 ; 0,0204081632653061 ; 0,1 ; 10,9538944659856 ; 12,7302016766859 ; 9,9 ; eC0752F1dB7A1FCE6BFc3f5eafCe65B2c3dA0fe81FFfb5E02aeabeD5A637fe1C ; < eW76MDsNL51Iv01K9NR4CQxR31XSdYDJejI59881T02z1iD8Zc1cHHDk4rJ9qIov > > // < CALLS 56,5674235459776 ; quote ; 10,0576120973883 ; 9,85645985544054 ; 0,0204081632653061 ; 2,3 ; 9,30329119008418 ; 10,8119330046924 ; 1,7 ; B654cef0D9fA545EacDAfAbEC1aF88fE33aDCE2cD52D846EcADACCbbEC2DeaD4 ; < 4cl894yI4P80z1884f7N19D3qQDBc78tiFRgXBLu835561Z4ye30sTKRiu8r6yPY > > // < CALLS 59,0268767436288 ; quote ; 8,50851942129926 ; 8,33834903287327 ; 0,0204081632653061 ; -5,8 ; 7,87038046470181 ; 9,1466583778967 ; -5,2 ; b47BFCfDb6bDaC5bdddDe558dB22dEffaD7AaC00dbefe00DB0BCDC356DA4C48C ; < OMv21zxtPTSX59XgF66hSf4ycr6MmdA1501ID733M9RzfSyIJKul3Ebd6GSw700T > > // < CALLS 61,48632994128 ; quote ; 7,17254050243703 ; 7,02908969238829 ; 0,0204081632653061 ; 3,3 ; 6,63459996475425 ; 7,71048104011981 ; -2,3 ; 6e1DD3afbEc6EDcCB4EaCfAef9EF6AACb8eDcB2CCfda914f70B1b3ff63A3fFaF ; < EH2DSTp1vmxY6zXOM7Tu9fF9846lQauHCryRMEUyTX4FKj2FmubR87eMi3irkXrS > > // < CALLS 63,9457831389312 ; quote ; 6,02713272602194 ; 5,9065900715015 ; 0,0204081632653061 ; 1,5 ; 5,57509777157029 ; 6,47916768047358 ; 6,7 ; D2C395cDfFCE6Cf6a43a5ecFDfdaac5b5CF427E3ADd6ACCC8FaabBBd98B2eAAb ; < 9VR05DWtgx3L51xfe5GyR94RM1SD34O06h3mo987aPkh12HfI262Pgv7AOsX2g1b > > // < CALLS 66,4052363365824 ; quote ; 5,05028078983101 ; 4,94927517403439 ; 0,0204081632653061 ; -5 ; 4,67150973059368 ; 5,42905184906834 ; 6,6 ; c1aAcd4A28E43baaC5405aebA5eB73Df14ef2DEccFff84caDC33CEe3f875Fe4a ; < yIkVS0pKP7lH6Z8r2Lic3Fsfd1Kg13GyIqH4Vxe22WQm624om7TWB9n9825OsgX0 > > // < CALLS 68,8646895342336 ; quote ; 4,22109351113971 ; 4,13667164091692 ; 0,0204081632653061 ; -6 ; 3,90451149780423 ; 4,53767552447519 ; -4,4 ; a7eb7C8cfDEDeAbAfF3BDCDEd1fbC17EcFeAdbaca3a8Db2F4209e1c3C8A7fC5b ; < oFi8y56cBbhOZa4758CjsbLlS1CwWkP8X0f4ewUcSVWAcsI9F6IbuxEmo4SjlzDn > > // < CALLS 71,3241427318848 ; quote ; 3,5201916119162 ; 3,44978777967788 ; 0,0204081632653061 ; 4,7 ; 3,25617724102249 ; 3,78420598280992 ; 0,8 ; CD3eeA7F3e1EBADFdeD38D8ADDCBEcaA37DBCDE6C1DFcAdcaCB70CdE9aB8bB92 ; < z8pPW9iX9OT3671aUsSmMGTvoKlPhMugd352agPsZhbup5iYPl3kgrRSo632553W > > // < CALLS 73,783595929536 ; quote ; 2,92992596859076 ; 2,87132744921894 ; 0,0204081632653061 ; 4,7 ; 2,71018152094645 ; 3,14967041623507 ; 5 ; AF9dd7cF69e3caA882edeAacda0fBEcc29e1AdFa3FdA3e9b9FcF1AaABAbA8FCF ; < gfEI8e709mq2smE8C8GL1rFdb6CBvF6dk44tR19209Z2oGfp0hxiEnaHaM75qvt3 > > // // < PUTS ; 1Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 24,594531976512 ; quote ; 0,0585877411035796 ; 0,057415986281508 ; 0,0204081632653061 ; -7,5 ; 0,0541936605208111 ; 0,062981821686348 ; -8,1 ; fEffD81acC5da54ae4d43FCFfb92f6742C7BA911cfDfBE8DfEB8C7bF4e3c5A4C ; < 5cD14g56DQbwg2OkYJXpQ614IKQj6567rA4W1uV07h9Z3A9iK41U0bJm38qSmsxo > > // < PUTS 27,0539851741632 ; quote ; 0,145301040226713 ; 0,142395019422178 ; 0,0204081632653061 ; -1 ; 0,134403462209709 ; 0,156198618243716 ; -8,2 ; FdFdDFb4F15cff7fA059BfC6AA9caBaEed04aaB69AFbcf9d8aEffFBcaeFC3E5D ; < 1gFWa58858M6k3jr7sZXM258Gs30tP4aJ13AE2FanP7B8jXEgZXJj6r6K9T95U1o > > // < PUTS 29,5134383718144 ; quote ; 0,312278302197384 ; 0,306032736153437 ; 0,0204081632653061 ; 0,4 ; 0,288857429532581 ; 0,335699174862188 ; -2 ; e00DBAa7DB8Db8EFCbEFEfB8ecED2df4f905a3abd25B5DFA2Af5E52D635EEA6B ; < Y623ccXwWtx81N4MPse72Yq27XpkTMDc4NyKUiYYiXpq64kvU5o829pjdhZq1B15 > > // < PUTS 31,9728915694656 ; quote ; 0,598879967814781 ; 0,586902368458486 ; 0,0204081632653061 ; 7,2 ; 0,553963970228673 ; 0,64379596540089 ; -6,4 ; 3eDCCeeABcC0e81a8cbAEBBB53Dbdc9AEe7CfEb3c7F3aCc12F894fdAd78Ede3A ; < bwFIC2FC0pqpGcJ7NT396Dgzc08J2Jl6059yH42RqLr1ttfHSk50mfnB16Zh4f26 > > // < PUTS 34,4323447671168 ; quote ; 1,0475564489426 ; 1,02660531996375 ; 0,0204081632653061 ; 9,6 ; 0,968989715271906 ; 1,1261231826133 ; 1,3 ; b5cAbffFDbCAcd621Bcd5D2AA3B4ca8B8BbFa88736cEbFa7baC5A859faDbE7aC ; < 6svc61es2590FI9h2dwafUfzvtGm160qy4d1MsHJQe5p958zavSDp401H4H020g0 > > // < PUTS 36,891797964768 ; quote ; 1,69952268156894 ; 1,66553222793756 ; 0,0204081632653061 ; 7,7 ; 1,57205848045127 ; 1,82698688268661 ; 5 ; F23e43BebCdAbACEBCDEfD782dbDdD99ddcBdEEfe4b1526B45Fc7256FA67BdAa ; < EjDuBSd5S03w9507Bsc1Pe2893X325N4W3c3hfkpr6IAtjkxYd91Kl7TjF71O9I8 > > // < PUTS 39,3512511624192 ; quote ; 2,59087699453423 ; 2,53905945464354 ; 0,0204081632653061 ; 8,6 ; 2,39656121994416 ; 2,78519276912429 ; 7,1 ; aF5e6F85D2cEf0deACdc42F1AA9EC78aED2FDcf482aeb22af8CEabb2145efEB7 ; < 8rOYF4YD66847983a2wJjK8B5jhHWiHA1BQNu7TNa76124aB675EP0V34dz8EBex > > // < PUTS 41,8107043600704 ; quote ; 3,74979556225416 ; 3,67479965100908 ; 0,0204081632653061 ; 8,5 ; 3,4685608950851 ; 4,03103022942323 ; -4,8 ; f2cBac20dA79eAb7CdAD9EcD11adebA480F6cd7BCc4ee4F5dE3EDCa0A39B7d05 ; < YkOs2UmDiUHlO9PDVXV1s0d2urIIj9TCs6UiCM86g5dV02b9xR7yda1UtVCo8DfZ > > // < PUTS 44,2701575577216 ; quote ; 5,19503605153417 ; 5,09113533050349 ; 0,0204081632653061 ; -3,2 ; 4,80540834766911 ; 5,58466375539924 ; 7,5 ; dDeaE2A4131BCeE0EBeae0aaDd4f5d1d6BAecEaF5cFe1Fc8EcAfAAfde2fD3Bb6 ; < 5x3J4Xk4wM9VQHV0SPVzwDMFUIi79Z6x389d1eU36508o9S7SN8g2LW23lTnSIjw > > // < PUTS 46,7296107553728 ; quote ; 6,93566790223434 ; 6,79695454418966 ; 0,0204081632653061 ; -2,3 ; 6,41549280956677 ; 7,45584299490192 ; -5,4 ; c9ad5faf085ECC7AEeFAAA8B9a72D09fbF6fEEBEa79dB681d2D0DdBf4ee089d3 ; < OXsy4VbLoPgcWaw0C1T4r7G0oi9i14M8mrqSEKv4KXsC5Z5FHXWjAnFwyNF3DTGQ > > // < PUTS 49,189063953024 ; quote ; 8,97176164348836 ; 8,7923264106186 ; 0,0204081632653061 ; 1,8 ; 8,29887952022674 ; 9,64464376674999 ; 6,8 ; fEF0E8BD02DABf1AdC7EaffAa44cC604DAeb94AEe8FaB98Ec2C0E2BdC738F3fa ; < Ilm26iWYWe5Z58erB4jzJot1V2vGJYJfywF44pcR4yy9PF19Y54i4eSE7mYJu1fw > > // < PUTS 51,6485171506752 ; quote ; 11,2957049163796 ; 11,069790818052 ; 0,0204081632653061 ; 8,6 ; 10,4485270476511 ; 12,1428827851081 ; 5,5 ; 72Db3dFcbcAdacCb4caeDb2aEEE4fceBFEBfB03eC8aa1B5ecdA1D8b34FbDFbfE ; < ZMS91O8ag79p2adBxlCuR9MLrT7GQ93WCFo31Rd599u9oS0Ud5eyAe1Nk54Ag8sF > > // < PUTS 54,1079703483264 ; quote ; 13,8938315674766 ; 13,6159549361271 ; 0,0204081632653061 ; 1,3 ; 12,8517941999158 ; 14,9358689350373 ; 9,5 ; 815DCF92aEdA5dd8bdcb8BbcA3e6BEdFD6FBfC5daaBCCc7c1fCBD696AB71D0D0 ; < 0kNrT49vm3F5QXH1l8b52ozqv1UI36K76Fj5zIB8Mo4mUCMKu43isUoH4u7Y6CB9 > > // < PUTS 56,5674235459776 ; quote ; 16,7481130251719 ; 16,4131507646684 ; 0,0204081632653061 ; 9,9 ; 15,492004548284 ; 18,0042215020598 ; 1,7 ; B0d6fDd4b171aBe2Bf2AAD231cbfBc2befE3EFeEC2ebcecE1bDb3a611FffAbda ; < aHyRFG8u7l65u4CPCFI0PYK7D2wDTS4FG7eq29NI3NZK7hWx50SFbnbA712y3z08 > > // < PUTS 59,0268767436288 ; quote ; 19,8377377807256 ; 19,4409830251111 ; 0,0204081632653061 ; -4,7 ; 18,3499074471712 ; 21,32556811428 ; 3,6 ; 0BEe4Ba38d7d6947DDcDBBAd0EfD9Ed89Ab0dFEa2aCAFF954f4B1a2a9bCdf9fD ; < 531CDiA44FEH48XoptCc2iX9tapjZwPyK5HHVla7Bp66W8X12eRW4z3OJM4wuRQi > > // < PUTS 61,48632994128 ; quote ; 23,1404762935061 ; 22,677666767636 ; 0,0204081632653061 ; -6,3 ; 21,4049405714932 ; 24,8760120155191 ; 1,5 ; 0f4fdfB45CF61c9ADf5daC9CBFda0ab1E4DcbfbBE0C9CfBFEA3FbCAfFdd6fbCb ; < 7VD9b20LWVO6haH7GX7v4vca70LZgUwItOJ4vv7XVin4qnLhdOvTPBvfJ0bw07dC > > // < PUTS 63,9457831389312 ; quote ; 26,6337859487338 ; 26,1011102297591 ; 0,0204081632653061 ; -5,9 ; 24,6362520025788 ; 28,6313198948888 ; 3,9 ; FAAFb60CBAeA2de5dAB20c4DD1EfdceA9eEFb78f2fDF023CF8BDE6838FEAbBeB ; < ph9P2CNNV9K5F85cv2NK4AnP97C6dn1113r70IRHHm74V6UcVHb9KX6Gb56kNEMS > > // < PUTS 66,4052363365824 ; quote ; 30,2956514441856 ; 29,6897384153019 ; 0,0204081632653061 ; 9,4 ; 28,0234775858717 ; 32,5678253024996 ; 2,9 ; bEcBF1Bc6CC2aFCcFcE29ACdcE82DCA21Df4A4F41BaABcf9DaEFF1eccdcdFAcc ; < 9w2O6yb9tKe3RW0emfjbtg8jvu4fn677SB7mog3rkVWUrh5Hatcd42jtIY2FCio3 > > // < PUTS 68,8646895342336 ; quote ; 34,1051815971371 ; 33,4230779651943 ; 0,0204081632653061 ; -8,2 ; 31,5472929773518 ; 36,6630702169224 ; 6,3 ; 0bBf76B0bBCb9ABF3cBC90C5Fdc6D6dACE9f5aA1CCE1FaccF08Ac176aB2cFaeC ; < 1hgZ8E9U2nv3SiCP2IEHmgd95D1hb2sY667UpZtETxi4CVRF49zH6XVgSjcqsqa3 > > // < PUTS 71,3241427318848 ; quote ; 38,0429971295564 ; 37,2821371869653 ; 0,0204081632653061 ; 2,3 ; 35,1897723448397 ; 40,8962219142731 ; 3,3 ; 2b3D57ee46BA6a9D994Ed0AaD43EDEad1c2f5AaA143ec793faEceAc0c31802CE ; < B01SJ5mKi0qY1eiq1k04uCb6s1K482yOK9Md550i21turQ64k0LBt8cobU0zZIgk > > // < PUTS 73,783595929536 ; quote ; 42,0914489178737 ; 41,2496199395162 ; 0,0204081632653061 ; 7,7 ; 38,9345902490332 ; 45,2483075867142 ; -8,1 ; 3c082ECf9efAF6EB567aF6EFb9a1adfD3f4afFb38bCeD2fedFCdFEEC41bf2E1d ; < c9vIol5iJCIGfwUJ87DU9FpHg8GJkb3ZgZf5Dmawo7fI6Jr990P96zZp4y6lJ7lH > > // Futures_Eurosibenergo_OJSC // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 45,759312 ; 1,14 ; 39,139747368421 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; AB9CCC1F4374F3f8354EecaDA1DBb5EC4DF552Cc9F0376c3E9EaffcfEE3aefCA ; < dhZZvf0L571c01a7t6d069KLZUw9HWI7D19kizRBKsjfF77zeuBMr2H5oQU2s1gJ > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 45,7595117944225 ; 1,1400057 ; 39,1397219280767 ; 45,7592617944225 ; 45,7597617944225 ; 0,6 ; -7,5 ; -3,7 ; -6,7 ; 9,6 ; 9 ; 0,96 ; Future47AP19 ; 56DD5f4f6CBaa83E3ae5aBea0de9fE8fF2BCbdB1c767ef58f9ab8B7f55BdfEfC ; < jLwe0Fc70P2rGvTr8N21Wga0pnnwzwG3qIJ3qH1m8Mvf4Wz669P0CNZa3kySoVvu > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 46,2648465541608 ; 1,1539244617613 ; 39,0934793283992 ; 46,2645965541608 ; 46,2650965541608 ; -3,1 ; 9,5 ; 8,7 ; 1,9 ; 7,4 ; 4,3 ; -0,74 ; FutureJU1990 ; 5B538FeBC64dcCB7Fed2cCcBafFcAACA3fBf9feA3fd7DE9dBe3A081bFEf319C9 ; < dh06ZdWgln4KuvcSl7ew44KJeV0Rw19NF5T2682r1QKX49Trq21gf5k7Y7HA6C6c > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 46,7752491865243 ; 1,18199922150755 ; 38,5729949186143 ; 46,7749991865243 ; 46,7754991865243 ; -6,7 ; -7,2 ; 8,2 ; -6,8 ; 8,2 ; 8 ; -0,35 ; FutureAU1934 ; CB7CAb1ceE0Bc0fd4d44DFBEfEEaB6CFdBe3A21B15C6dD9feEFbC4a4A676a1dd ; < LNjyJEfMdCs9b416LsP6DgY6Zb8fWGGOSEWv1ToJX2f06cJbH6Ddy6mFV5k6S8eP > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 47,3492614701451 ; 1,22550278283675 ; 37,636600531043 ; 47,3490114701451 ; 47,3495114701451 ; -9,8 ; 9,5 ; -5,7 ; 9,5 ; 9 ; -2 ; 0,91 ; FutureOC1974 ; B4EDb04DfdaDf3ECeED7a75deDCDC4fEe0c9fdAaEFbf6fAaC0c2aEEbcbCCEc8f ; < C0d0XDpqr348PI7YEXumRthXm2Yc6F7qE0S3w6twO5Ug0TmFDpRnrtR04pjtPy7I > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 47,9402903426262 ; 1,28606708760987 ; 36,2766637172266 ; 47,9400403426262 ; 47,9405403426262 ; 9,3 ; -6,5 ; -3,1 ; -7,5 ; -8 ; -6,1 ; 0,91 ; FutureDE1976 ; ffd8Ac9CE9ccbE2dFe1FFfa04c6B35D4b4BB0F1B4b3cFc66af0cb78eeCDABA57 ; < 4F5ICm27O60CaJ6195YNbYnPwh6NP6gKe6o66HMqt9PbAMfjkhc74pRJmXt8jg2c > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 48,5228945842474 ; 1,36599914885628 ; 34,5219068949454 ; 48,5226445842474 ; 48,5231445842474 ; -2,1 ; 1,3 ; 9,5 ; 3,4 ; 1,2 ; -3 ; -0,2 ; FutureFE2076 ; 1AcabABABA3ACbE8Ee67c573ABAAc19AfAeb28A4e5E27c6ff0fc8cf7BEEe3C11 ; < f1JnAZgyMb65qk3Cpa38sNW13yNJD38eMY83qzr6Fswu8AmKRinhPk1TIdVvKXZf > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 49,189063953024 ; 1,46838351706136 ; 32,4987851480824 ; 49,188813953024 ; 49,189313953024 ; 7,5 ; 3,2 ; 5,1 ; -1,1 ; -0,6 ; -9,5 ; -0,09 ; FutureAP2088 ; faaFEafdaBE98D7DDEDF8BCBDeAed6CEEBdabBf26FB84D6af0Ed13ebfa28fF2a ; < 34PI7F081grEcumGyFwi8mnCtYY0op0m9uSjW9jEC26Ezkq9riEuW2LR3pMVtKTH > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 49,8792802202895 ; 1,59760105735729 ; 30,2213615474181 ; 49,8790302202895 ; 49,8795302202895 ; -1 ; 9,1 ; 5,2 ; -4,4 ; 2,7 ; 7,2 ; 0,25 ; FutureJU2031 ; ce78e3Eed2EB0dcEB0f1FdCbeBc1e8fdc3BfCbEb7cA5cAee8bfbc2BebdD3Bd2F ; < vTesYuY7PyIW8aVMelxAvpel3nbbv1Yi7RuI8suu0Ho2aG2cT1NwXCf52u04YQ02 > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 50,5763634795173 ; 1,7592523917277 ; 27,7487819924736 ; 50,5761134795173 ; 50,5766134795173 ; 7,3 ; 4,3 ; 5,5 ; 4,1 ; 4,4 ; -5,2 ; 0,15 ; FutureAU2048 ; E17a4d3dff8Ca49fcBadE521E0aeeEEfE9A6BeAF68aBBdBed4E19bAeFFd6bfDd ; < nQ5P45F13A0M2c4x77UwDOw7YXI49xrR3XK9f80Him9Kv95IMq4pLrVTd9Gg4aEM > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 51,360721530577 ; 1,96085870954699 ; 25,1929741702005 ; 51,360471530577 ; 51,360971530577 ; -6,3 ; -3,3 ; -5,3 ; 9,7 ; 8,4 ; 8,9 ; 0,23 ; FutureOC2031 ; C49BC0C4dC7c9b125a00DF37aaf83fba50d43aBb0Bc7c9FEB69d85b51EeEdd7F ; < CKg5w7f9EO4mjy5m0c2lxKLT3nMg6u8H71yWGBXVER5QzyX9x9cBX02RTZWu1k7Q > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 52,088035377962 ; 2,21214586603078 ; 22,5463837072475 ; 52,087785377962 ; 52,088285377962 ; 0,7 ; 9,6 ; -9,2 ; -6,6 ; 7,5 ; 5,5 ; 0,94 ; FutureDE2088 ; ebF8fF3d2cC20C7A3aCb8Ebb7F2D78CEFDdbAbAdFFdcfAE8C1d7eCDe9a0D0D5C ; < nmBxXJWxH2a13c2kDM942IS2U90S9R9vGvxXVu8H9R78dyZt2lF5Pg35SN0zfZnM > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 52,8654573668434 ; 2,52591962372554 ; 19,929192231727 ; 52,8652073668434 ; 52,8657073668434 ; 1,7 ; -1,6 ; 0,5 ; -6,9 ; -6,6 ; 7,9 ; 0,12 ; FutureFE2175 ; Ac8Fb0E9caEDf3D420fce4DCD2EB12d0b61F5AfC9efACF365ea7A809ccC2FEc6 ; < W00690c9Z56aO6uJpQW2wUFxYyeM6uZkQ5I0w7Lxr3rji20rGhme91A16lp5eGUp > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 53,7722233355309 ; 2,91910679827428 ; 17,4207797286896 ; 53,7719733355309 ; 53,7724733355309 ; -7,8 ; -2,1 ; 8,7 ; 0,1 ; -4,4 ; 7,9 ; 0,14 ; FutureAP2158 ; 7Da181CCaAeAaebCEF4aDAf59Ceec18a6ce2C0DA08607BC6C6EBaEBCFbd9560c ; < mitI41Ne3Xi98871Tz3v9b3WhLsO481DCF37GZUJ3ErOKl94Wh0gbmHkXNH68N5M > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 54,6266189290596 ; 3,4140779814911 ; 15,0004016385125 ; 54,6263689290596 ; 54,6268689290596 ; -6,8 ; 4,3 ; -5,6 ; 5 ; 0,2 ; 0,1 ; 0,63 ; FutureJU2141 ; 8f37bffCeFD2cE912a88d789e6aDD6ecbEbfB2cc06AA0B9eCadAd0Bfa73E3b2F ; < 6vQ298I2hAU0et6SO1id26BTr7ed1z54QYrnJnCK1F0w02GQMM3rtO05ntoJ8mcq > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 55,4405143473106 ; 4,04175289739112 ; 12,7169480061724 ; 55,4402643473106 ; 55,4407643473106 ; 2,4 ; 0,1 ; -4,4 ; 4,5 ; -4 ; 1,3 ; 0,23 ; FutureAU2124 ; 7cfb143456409c57290B7B0b9e007CdDCdfaD8E8F6cBFb879Eeeee72cbd5FaF2 ; < 3uWAxI20GAqH7c0DvZq8B790pdqR2wu9D07DAF7L9Abwbtw7yYT817Y4yC1Lx6c4 > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 56,4031083676518 ; 4,84242213335702 ; 10,647705799773 ; 56,4028583676518 ; 56,4033583676518 ; 6 ; -1,7 ; -8,5 ; 5,7 ; -4,7 ; 1,4 ; -0,9 ; FutureOC2116 ; 896adA09E4dC6406C4Ed233BaDdf6DF3D30E8AEACEfa3aCf1adb4DCAAbbbadbF ; < 738fE7u9wwcEm7W9S9NyA9g1XCNrxQ64kqD4PUym0PNMSf46jggsL549Qm4abMAy > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 57,5092633922582 ; 5,87290920690256 ; 8,79229566918323 ; 57,5090133922582 ; 57,5095133922582 ; 9,1 ; -4,6 ; -8,1 ; 5,7 ; -8,4 ; 6,4 ; -0,74 ; FutureDE2151 ; EF2BAe32BBDFEd7142daBcCf8c31d185fCB5A20ea28F6FcFABeb36Bb2e4177bC ; < 08fpjf8KmwR57S10pa8roMx1Qrv9v703TYClvGG6vETpu4mnUAPiDeM0Ub832c3Q > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 58,5543156365361 ; 7,20899488896988 ; 7,12239660845468 ; 58,5540656365361 ; 58,5545656365361 ; 0,7 ; -2,3 ; -9 ; -4,2 ; -7,5 ; -8,8 ; -0,13 ; FutureFE2249 ; Eb2e2DbDBc2F1cf50aBBcbF9C4A6CfFafFd9675EADc2ceb8eaCDE2cCcbeDe5fF ; < X6L0JykH355qsdpjzRerO1UsNr2ginrg11mX1iU2prAHuB855OX7D36dxuk654cA > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 59,4376633771434 ; 8,95530811874447 ; 5,63714331087433 ; 59,4374133771434 ; 59,4379133771434 ; -9,6 ; -6,5 ; -7,1 ; -0,8 ; 1,9 ; 6,8 ; -0,26 ; FutureAP2268 ; fbBaC6E0CdfB37aEc5a7acCAFd65FEbEAfb3E1FBEc6EcbfDB3a1adeceCEBDECB ; < 2JNYz68q3E0c996DiN2GIQ4pf4xa0h14cndNfrJnwJjdOZp10dsZJw0W98T21578 > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 60,655856332567 ; 11,2603814837049 ; 4,38666087115637 ; 60,655606332567 ; 60,656106332567 ; 9 ; -7,7 ; 5,3 ; -4,3 ; -7,9 ; 9,3 ; -0,74 ; FutureJU2219 ; 4F0aA8fF7CfB9Dbc73fe4Fafb71DcAaaB9adC4EAABbFEef1fAebb926DCfeE5CE ; < MOYB95Q2t5p9cVu1BV06cUerB5WA4do57T8Q59exNa68iPvaC1OINZeaNqr8YGod > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 61,626383455219 ; 14,3305096237484 ; 3,30036230903418 ; 61,626133455219 ; 61,626633455219 ; -5,6 ; -0,1 ; 6,2 ; -4,9 ; 1,2 ; 4,7 ; -0,34 ; FutureAU2266 ; eEaEC2ff3761b17eD5B0Fa5D2eCfbcFAabA60d4A710E795DfbaBEBb541Bf7ACA ; < Fs0qO1yxrfEm36FkH1anu9s49e7CG56TVSn395zXqNMv4YtaBRP6MYASjnJJ81LP > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 63,052746256575 ; 18,4589404927482 ; 2,41583777689439 ; 63,052496256575 ; 63,052996256575 ; 4,3 ; 3,5 ; 8,6 ; -8,5 ; -0,4 ; -9,2 ; 0,27 ; FutureOC2223 ; abBf1EDfb8a84C3bAfEdfFd71d4C4E932B1caab3d1D3fe8126F6Eadf3BdF7Fef ; < mKCnm46QDZay8AZs8i6M91264c735tD0B6e609o7abHns8IR8mGSfsN4z5F091F8 > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 64,3656892307944 ; 24,063537883637 ; 1,67482236161801 ; 64,3654392307944 ; 64,3659392307944 ; -2,5 ; 0,8 ; 1,2 ; -6,4 ; 2,7 ; 7,5 ; -0,83 ; FutureDE2236 ; 23Cf8DFFeEE879cF104dD4221D5D39fc9b93bf821D7CCdDB9b9cf64Dc1EB0ceA ; < hV4s3E89Z4V74sl4CvtjC6d9EG2UO9f5v1j6mCpG45EX3LJ4992nMRy12q927tnI > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 65,6048616975017 ; 31,7506052749813 ; 1,06625546597679 ; 65,6046116975017 ; 65,6051116975016 ; -8,8 ; -5,4 ; -2,8 ; 9,6 ; -4,6 ; 5,8 ; 0,08 ; FutureFE2310 ; EE1efDc61FBF3dD0DE6b04FDBb5CDaC525ebd8bC0477e5B62aDAbBaBAdcd2A4F ; < G82TB6165xDa1CLgtaL6BCn1Ch5g4UI3a57JoUxmJl8sIG39sB1DxzJ836G8YVSU > > // < CALLS ; 2Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 26,8861116677654 ; quote ; 57,5879066477486 ; 56,4361485147936 ; 0,0204081632653061 ; 7,9 ; 53,124843882548 ; 62,0509694129491 ; -9,5 ; cEeCFB789Ee2CB5740C3F1d7DC3bbaEBE0dA438Da5ef373DBF20E5bfAD9b6F3a ; < 1S20YO27NHkbOckrR7vWT5vs149a090S7Tz0gog2nJ9Uj37Jc2mdQPux2uBvn76G > > // < CALLS 29,574722834542 ; quote ; 53,6044676860604 ; 52,5323783323391 ; 0,0204081632653061 ; 4,4 ; 49,4501214403907 ; 57,75881393173 ; 5,2 ; AbAAAdeCdfACa77edCcfbe6eF0aedcc3fdf158CDdcFfacaFf4d57F9FED4eb043 ; < 7cJdry05YUwUu4TFZeMD4Fa18T25mCHsyTkfa9MU69wbuJu7tw51Uil4RW9A4tpB > > // < CALLS 32,2633340013185 ; quote ; 49,749238783706 ; 48,7542540080319 ; 0,0204081632653061 ; 7,7 ; 45,8936727779688 ; 53,6048047894432 ; 8,5 ; C7f7Cf7E87466DAd54Ede31EfdbAeDbaDBD8Baa55cbC4dA410B9a5EdDFa6e1fe ; < OA5pu47oB95Ngbc0gkKLTUQ7sk8a1Z7qLAQG380WkOo0a2078DKu5Z6cXSI5N8I5 > > // < CALLS 34,9519451680951 ; quote ; 46,043352958261 ; 45,1224858990958 ; 0,0204081632653061 ; -6,7 ; 42,4749931039958 ; 49,6117128125262 ; 9,9 ; 0DA3deF1Df7AeeB1A2ECaecaBD6FC5BA6baCddbFcbEfa6CEECDd8d6A0A9cc8B8 ; < Poc0Hkj369zB6kldGHvr2s5Y32u0HdxGAMcC3aQh0zQ0ph6x8YW83iD7tj6wBnXo > > // < CALLS 37,6405563348716 ; quote ; 42,5041624904487 ; 41,6540792406398 ; 0,0204081632653061 ; -3,8 ; 39,2100898974389 ; 45,7982350834585 ; -1,6 ; Dd3C2cAca5EF7fFa4FCF6Fa3F7BF2cCe96c706FB12F7EfceeBadc3AEd2D73EAE ; < 5XXVXqnJho6rH3D57YH5u2Xw5i3cJF2tAPx33wE5CZ315VnbxUs0h0vjYY01D4XW > > // < CALLS 40,3291675016481 ; quote ; 39,1447745021317 ; 38,3618790120891 ; 0,0204081632653061 ; -5,7 ; 36,1110544782165 ; 42,1784945260469 ; 3,6 ; aCbffdD0ed28AE6F5c96a8C61C9D2D8FA9dBa1DBdcF6ddbE6AdDfeacf26bBaEC ; < 9DJ5Lt36BZ058856sGrq0T7azNSFFRivbtN3Y6dK5yr116ljR2nl3qJoFyqC239a > > // < CALLS 43,0177786684247 ; quote ; 35,9740072988448 ; 35,2545271528679 ; 0,0204081632653061 ; 3,4 ; 33,1860217331843 ; 38,7619928645052 ; 3,1 ; 1dFCe6d1dBEDAA0E83f6Aa6F9A6CAC8d1AAEeeaAf4b94Abfda5Ce1afFb6DeDcC ; < Og83N5T28ZtdjP7jzUtcbwBb6CQ1nA7dSN64FihP53zuq7g0MFyQL2QGN3hs56IX > > // < CALLS 45,7063898352012 ; quote ; 32,9966443893104 ; 32,3367115015242 ; 0,0204081632653061 ; -3,1 ; 30,4394044491389 ; 35,553884329482 ; -3,2 ; 742bFBF7aB7e93cc2CDaFAaCd2cebbCe08e2EAabe97BBCfecD3c3Edafafc070A ; < Q26nkyu7Dv0Hvj8EV3xzDEUlcXcvD092PPpC101gf69SE3fJ464AYCqY6cOy8DGz > > // < CALLS 48,3950010019778 ; quote ; 30,2138736853229 ; 29,6095962116165 ; 0,0204081632653061 ; -5,7 ; 27,8722984747104 ; 32,5554488959355 ; -1,5 ; c8AEb6aB57E1d0B4279d0b7180Cae018E3fBc3bc1BFAcfa7be4Fc3C7BB20dFCD ; < 3Pow988TV2F3uv0wh332he8h360H71IJtBRhvs48bdMNOIGeaE9W16KHUNUVThc4 > > // < CALLS 51,0836121687543 ; quote ; 27,623821116272 ; 27,0713446939466 ; 0,0204081632653061 ; -5,8 ; 25,4829749797609 ; 29,7646672527831 ; 4,1 ; B9b0DA5Ed0c2c73Ba562aFBcEe5cE7c1bD87FBac1635cF1a426CAcdA2BE4ce85 ; < G6K1Gq1dIOZt6k7t4LY9VR82RFmZOu9gI1RAq9P9v6430y9lNDv7OVLk0I4OJ83e > > // < CALLS 53,7722233355309 ; quote ; 25,2221118387227 ; 24,7176696019483 ; 0,0204081632653061 ; -5,4 ; 23,2673981712217 ; 27,1768255062238 ; 8,8 ; 7cBaE9Bf1Bc09B5fAAbAAeBBeD4387babfeC5c8AA9D3EDeF1f20D447CCaEAbEe ; < hoeg3bdbdtI7WIgeXCh8qM2Wq7wgYa957w6ee0760G4ScLUlE81HHd8g9a6s82VE > > // < CALLS 56,4608345023074 ; quote ; 23,0024138329086 ; 22,5423655562505 ; 0,0204081632653061 ; 4,1 ; 21,2197267608582 ; 24,7851009049591 ; 7,9 ; 4ecf1cfAcafcda8Ff7EfeFBBD4c27A3d2A3d5eebb01bC0fABBa25dd210b2AB16 ; < C8hem357mLfkJv14Jl0B27tx30gT610Ls1k0BF10A8fh957nDd9kUko0mQG4Pm2s > > // < CALLS 59,1494456690839 ; quote ; 20,9569361662668 ; 20,5377974429415 ; 0,0204081632653061 ; 9,9 ; 19,3327736133811 ; 22,5810987191525 ; -5,9 ; Fe6a6efcd2Cbd13Bf676A2cdaF045F4aBcC0D76943f7ABe7C8Cfe0f028cdfdb4 ; < IUUVVI2LtZab15JDCaE7c8GOMEf1pKWCV9M0izF99a8D36i4Fc4loVT5AVwXLyc4 > > // < CALLS 61,8380568358605 ; quote ; 19,0768673163296 ; 18,695329970003 ; 0,0204081632653061 ; 1,7 ; 17,598410099314 ; 20,5553245333451 ; -4,2 ; 4a272eaf06DEf3f55dfeEB4fCB48cFcF8dc1CEE1f86CCdc3DeC2eceabBAEd3eD ; < yp1rE85p1DbEslv5vSkQY6xdhwCEi0nsXTHI146fQt690u7Ux2cEE7kHv5V7NnER > > // < CALLS 64,526668002637 ; quote ; 17,3527481632677 ; 17,0056932000023 ; 0,0204081632653061 ; -8,3 ; 16,0079101806144 ; 18,6975861459209 ; 8,6 ; D0e5EfAcDDb99fBDDDF48fA7e7B711f8dcfea8C44ddcFfbBDcdb001FFbfDA53b ; < 82wTmIyqEgf8J23XkvZ98tT63T81n1p93sKeuEndJH4G5j2c3UkKH2VT9KjZYSf8 > > // < CALLS 67,2152791694136 ; quote ; 15,7747803335794 ; 15,4592847269078 ; 0,0204081632653061 ; 0,2 ; 14,552234857727 ; 16,9973258094318 ; 9,1 ; AC0CB7eeceBd9F5bbb5baEe77Dd1B4Bc7EfFec0baad5A13eDEd9ecFb0Dc62323 ; < mt4CMrA2C0ZcW5wttfn18L5XYz8qnxyfLOVdxJvKBbiZ97YaOuLb7Zs082x4J789 > > // < CALLS 69,9038903361901 ; quote ; 14,3330742666231 ; 14,0464127812907 ; 0,0204081632653061 ; -3 ; 13,2222610109598 ; 15,4438875222864 ; -7,9 ; cC3dc369aeb10C7b8b5fDdFCBfF19CaFcaa96d18c6fCDFA94eEEebafdcF4DEe0 ; < PtcZ99rT4wy51GaV8aR575wRY3V083D2NWvBNM107V9Xw4YBhc16hLn7oh9uSs1F > > // < CALLS 72,5925015029667 ; quote ; 13,0178433568744 ; 12,7574864897369 ; 0,0204081632653061 ; -0,6 ; 12,0089604967166 ; 14,0267262170321 ; -2,4 ; b0D84bFe11bEC9b55fbfBdEFCDeEf5FFc61eFc7C1B2DDadF8f8BBdb7Dfc1a379 ; < II7NKwdy22993M5Zn6Rnx2Qg42uxqIW8f10Hl2ucnCsR1Wr5qt8uo96VsXhu70ba > > // < CALLS 75,2811126697432 ; quote ; 11,8195513380887 ; 11,5831603113269 ; 0,0204081632653061 ; 5,6 ; 10,9035361093868 ; 12,7355665667906 ; 9,2 ; 684c4fceAefffCD9CB0A032dfeDE0E9bAa4BdFE2d5e4a01EBdBf6AE44464ecd6 ; < 4k9LzbET55kv71j4z4zIl7oK6Ve6kiXHvCy6r021R3Q8r448EoWxBvpjzG7aaR1p > > // < CALLS 77,9697238365197 ; quote ; 10,729020132261 ; 10,5144397296158 ; 0,0204081632653061 ; -5,1 ; 9,89752107201076 ; 11,5605191925112 ; 1,8 ; Eb58D89f9AAab2cbaDA7ba22CeCCB1CfBd7DA4D02bDAD8Bb1E1f8FF0974FAd1C ; < mG818eRy2V4266hKFP8649q7Yl0iK9FDo6eSqk8E1AqmLoVEf8t68B7wHkdA0kY9 > > // < CALLS 80,6583350032963 ; quote ; 9,7375049852526 ; 9,54275488554755 ; 0,0204081632653061 ; -2,5 ; 8,98284834889553 ; 10,4921616216097 ; 8,8 ; 3bE1cEC9a7B4914e3485a43aa6bd22f3E9EaB8365Fc1Dba8eC8b0fbFBdd0BBEe ; < 6RopOS5CCOCn4Im639s13N96807T1eycsg9BMNfyPy265GYTteA16ywX0Bm2hBL6 > > // // < PUTS ; 2Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 26,8861116677654 ; quote ; 0,408665521929223 ; 0,400492211490638 ; 0,0204081632653061 ; 2,5 ; 0,376993943979708 ; 0,440337099878737 ; -6,7 ; eDC4fBfEceE60eCaD0926FFFCaB4CEdFc02e4a8f7eceA4ac7EdfB6fadcAEAAdC ; < r20lYEw1c4qLEl1f78O7UouH29CB1NcTEw4OzN5jVXyZa95gRL3ceBkmzJ8nfgp1 > > // < PUTS 29,574722834542 ; quote ; 0,707302447659103 ; 0,693156398705921 ; 0,0204081632653061 ; -0,8 ; 0,652486507965523 ; 0,762118387352683 ; 5,1 ; 79DAFdC6cE22Ada27ed08d4e035Bc3730a57F7A1ec6DdEFeCaAe8f8eFB6efFba ; < 7U21B2ehtHr6tuxQLIAl96cz439QJ57yjLQQgaJ18j88xItNa06yfti8VXyF5Lfc > > // < PUTS 32,2633340013185 ; quote ; 1,13414943272281 ; 1,11146644406835 ; 0,0204081632653061 ; 8,8 ; 1,04625285168679 ; 1,22204601375883 ; -7,3 ; fbA65BCfcEdbDed5fBBAEAcB73d9F9260A3ccA6b5AfebEEBaBac7fbCbF48a3e0 ; < 9CCL1j55Q9252iW0wz4XEOFXae30O68JkleK08sZsTAC74Wf20z0Kd5V6M0lEaJs > > // < PUTS 34,9519451680951 ; quote ; 1,71033949469589 ; 1,67613270480197 ; 0,0204081632653061 ; -6,1 ; 1,57778818385696 ; 1,84289080553482 ; -4,9 ; DDB7BebBa26d7E840c4ee3C1cfBdaC7bdDD8Fd98AbC3E0ABb3C0aCafbbA4bbBE ; < BIQS1kmbllPLcM2Qrrt3GpDD0XhGzXtJn5115O0CBsjUCg6eC83vwAeIUnl3WjPo > > // < PUTS 37,6405563348716 ; quote ; 2,45322491430167 ; 2,40416041601564 ; 0,0204081632653061 ; -5,5 ; 2,26309998344329 ; 2,64334984516005 ; 3,4 ; eEfFCf5aA1a8ECdEd8bcd034CA7Eb0eBAA8b2a6b2FCdab4Feb56eBd025AB8bD6 ; < CMkzx3zHMVUnR3k13815c2KV6S4VS4sR6A4Hx9WBy0xn35rCyIDE2t8742c7KvXT > > // < PUTS 40,3291675016481 ; quote ; 3,37591281340273 ; 3,30839455713468 ; 0,0204081632653061 ; -9,3 ; 3,11427957036402 ; 3,63754605644145 ; 8,5 ; De88B4eeFfbFC07DffbCeDfaC4cA2BA0cB5CefD8FaAEdBE8bdaab461A950DF3b ; < xxJDTCG6RF35XQ8trF5B1P5o9C6NNllTG4EIwz2tcmN9Y51o8WVCfTlLcL64jK99 > > // < PUTS 43,0177786684247 ; quote ; 4,48722149753384 ; 4,39747706758316 ; 0,0204081632653061 ; 9,5 ; 4,13946183147497 ; 4,83498116359271 ; 2,3 ; C0FC92B7daFacfA9A5CADe6EaBb4Ac2cf1DeFFfCA661BdCF5fa8befADAaAfeBD ; < FIg8WJf0jsgOmCBEb73rGSa8EJMmlAA7cPqVd9vQ9W4wU2iF1M8UQFcyZ02uyLWB > > // < PUTS 45,7063898352012 ; quote ; 5,79193447541758 ; 5,67609578590923 ; 0,0204081632653061 ; -0,1 ; 5,34305955357271 ; 6,24080939726244 ; -5 ; FC0FC6BBD8a7BB1b5EBBeB0F64EDB7CbDdeeae0b567d45c9Fa0B540eB4c125ae ; < dMtU1LdWjz6Ijj3N751H31708Kse28dB1UCWm3zTo569B83khytV1KbGx6d9D743 > > // < PUTS 48,3950010019778 ; quote ; 7,29123965884816 ; 7,14541486567119 ; 0,0204081632653061 ; -0,2 ; 6,72616858528742 ; 7,85631073240889 ; 4,9 ; F84DEFCDFAdc6469ccEbA148Af4efBE2BDD5ebbAe10cDADfBDbFf8bC5E0E00Ea ; < U60JBdRJnuOvF30arY09DQj6dlzKl3b0HKWC4M75s58ckJLM637N26wI72813sNG > > // < PUTS 51,0836121687543 ; quote ; 8,98326297721528 ; 8,80359771767097 ; 0,0204081632653061 ; 0,6 ; 8,28706009648109 ; 9,67946585794946 ; 5,5 ; bec7d99A5AcBdB7fD8a9C23DabfcDD13DfD207b2dDAEb39eBD8bfffDa1CF98DD ; < LGLY3DqtUCmT8AvC8vvYn8OlxRsZjhd5wGT9fa71OGU6439Wy6r6Q3ZqHVw1W7nb > > // < PUTS 53,7722233355309 ; quote ; 10,8636295870841 ; 10,6463569953425 ; 0,0204081632653061 ; -3,7 ; 10,0216982940851 ; 11,7055608800832 ; -1,9 ; cEB0Eb6AAedFCE84416Af553E8CeffaeCbAA6fABcaAD03EAfEeFce503deBDcDd ; < R7eXigqfidU2P2T9jq87yzVZ28x45U37L0DJVDOTOe6hpoS7b5p7Xo66104sG3nJ > > // < PUTS 56,4608345023074 ; quote ; 12,9260074686881 ; 12,6674873193143 ; 0,0204081632653061 ; 0 ; 11,9242418898647 ; 13,9277730475114 ; -9,6 ; 83A3DeE0EDd3dCaEF6deE2eccFD55B1a6bca65a7af9cCbdd4CF7E2cc4bbFdAD4 ; < jfMhL85m6M4v1e8hdPI9nOS6yrQ896yNU3KGJcO52e8X35QxUVU6j1g5iGulT8ZV > > // < PUTS 59,1494456690839 ; quote ; 15,1626056894643 ; 14,859353575675 ; 0,0204081632653061 ; -1,9 ; 13,9875037485308 ; 16,3377076303978 ; 5,3 ; fdD8C4082cdD356a2ECbbeB0B2afFd6edD2ad41Cba23F5EcCf6822AeE37Cfe6c ; < 4ipVuV8gqF6KR0q1QW398ZHq0C8J0q92PxXhFEfusL3T3HKH2q9NT750KQEFer85 > > // < PUTS 61,8380568358605 ; quote ; 17,5646127269451 ; 17,2133204724062 ; 0,0204081632653061 ; -7,6 ; 16,2033552406069 ; 18,9258702132834 ; -3,3 ; bAe6cf3E5ba4bcDEEf64899FdbBE5B80DCee5aeff7cBCaBca5D8bBDDfaB90c01 ; < nO78bEbWejCAla1Vt88n2NUvCQ0Uxl8V5e8hQ78fSu8U5y62GqAQE5UduP469e9v > > // < PUTS 64,526668002637 ; quote ; 20,1225694613013 ; 19,7201180720753 ; 0,0204081632653061 ; -3,1 ; 18,5630703280505 ; 21,6820685945522 ; -6,7 ; bE2eAc7DA09EEd58ffaEDE07feA98DADd788eD017d32fddC7fA97B66bbB44F0c ; < LT7rg5qGJ3a7KUYQlPYEQh7ph57F5JtqCT6053e81GO7310iwITjL2xa2bKvXYe9 > > // < PUTS 67,2152791694136 ; quote ; 22,8266775190311 ; 22,3701439686505 ; 0,0204081632653061 ; -6,4 ; 21,0576100113062 ; 24,595745026756 ; -4,1 ; EfEFbAAeaE3cd07E40208eb5b2F0f6acdFFbc316CBaBE73eEbf7ed7Ae8AE8ef2 ; < gtfk6VtFsOzGm47ZPuMM665E0C9yF5RQJCt3Mmo9oO6IcP4G3pCA2h1LTI1d562L > > // < PUTS 69,9038903361901 ; quote ; 25,6670473394929 ; 25,153706392703 ; 0,0204081632653061 ; -4,3 ; 23,6778511706822 ; 27,6562435083036 ; 1,4 ; eB97DcDE5DF167D7Ad20d4b7c3fEC59dA30dec7fccEcAe1Ff3942BE0A61edFD8 ; < wj50CCz7pAk36cl8BOdmpXhwtfHFWuHPExOOR8BH9542nH1OJmftO62g22sJ9B83 > > // < PUTS 72,5925015029667 ; quote ; 28,6338923171622 ; 28,0612144708189 ; 0,0204081632653061 ; 2,3 ; 26,4147656625821 ; 30,8530189717422 ; -7,7 ; 10Fe1Df3f9BB8Bcfe0a1B80c0ec601dcb5faD5aB0B6daa18bdA415ad9aD3F07a ; < mWS6VYG07CX1o10OfcHDJLFCH7IWH5GO1U09Dj37xHatCz0TUqi29PRxz8QP2sKc > > // < PUTS 75,2811126697432 ; quote ; 31,7176761857946 ; 31,0833226620787 ; 0,0204081632653061 ; 4,4 ; 29,2595562813955 ; 34,1757960901936 ; 7 ; b7FABf7fbACdCAFbBBF4cCbcEcA5bb6b5aaf4aFAadc6aafeD9C6BbBaeeA83C2b ; < 7j32uycQZ0ah21n72eFUe15m68pEOH8ho32m86LtymallenPQKtbCQZ47eSv9N1A > > // < PUTS 77,9697238365197 ; quote ; 34,909220867385 ; 34,2110364500373 ; 0,0204081632653061 ; -3,2 ; 32,2037562501626 ; 37,6146854846073 ; 9,7 ; BDD62dbA2B81aFdeef3bae8eBFad54fe1aFBaacaaA993bCD3fEE5aFaEeEb89df ; < gY3kfu9SnShI9OFl58h3oBZGjqNi1BAJAkc1EJnqM55IxTWtbSgd5FQ43TG1ct0C > > // < PUTS 80,6583350032963 ; quote ; 38,1997816077946 ; 37,4357859756388 ; 0,0204081632653061 ; 1,2 ; 35,2392985331906 ; 41,1602646823987 ; -7,7 ; 6fFb3FBDCD2acC82dbcEaDA93cD33aA7ffCDBbA0Ff691A3FFEdbaA8CaaFcBA27 ; < lLLsurj45gLaW7t1d6c82W6HUW9bWlV7migxFuuplNh57d7hn3z5Yw0Um65866r1 > > // Futures_Eurosibenergo_OJSC // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 45,759312 ; 1,14 ; 39,139747368421 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; AB9CCC1F4374F3f8354EecaDA1DBb5EC4DF552Cc9F0376c3E9EaffcfEE3aefCA ; < dhZZvf0L571c01a7t6d069KLZUw9HWI7D19kizRBKsjfF77zeuBMr2H5oQU2s1gJ > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 45,7595117944225 ; 1,1400057 ; 39,1397219280767 ; 45,7592617944225 ; 45,7597617944225 ; 0,6 ; -7,5 ; -3,7 ; -6,7 ; 9,6 ; 9 ; 0,96 ; Future47AP19 ; 56DD5f4f6CBaa83E3ae5aBea0de9fE8fF2BCbdB1c767ef58f9ab8B7f55BdfEfC ; < jLwe0Fc70P2rGvTr8N21Wga0pnnwzwG3qIJ3qH1m8Mvf4Wz669P0CNZa3kySoVvu > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 46,2648465541608 ; 1,1539244617613 ; 39,0934793283992 ; 46,2645965541608 ; 46,2650965541608 ; -3,1 ; 9,5 ; 8,7 ; 1,9 ; 7,4 ; 4,3 ; -0,74 ; FutureJU1990 ; 5B538FeBC64dcCB7Fed2cCcBafFcAACA3fBf9feA3fd7DE9dBe3A081bFEf319C9 ; < dh06ZdWgln4KuvcSl7ew44KJeV0Rw19NF5T2682r1QKX49Trq21gf5k7Y7HA6C6c > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 46,7752491865243 ; 1,18199922150755 ; 38,5729949186143 ; 46,7749991865243 ; 46,7754991865243 ; -6,7 ; -7,2 ; 8,2 ; -6,8 ; 8,2 ; 8 ; -0,35 ; FutureAU1934 ; CB7CAb1ceE0Bc0fd4d44DFBEfEEaB6CFdBe3A21B15C6dD9feEFbC4a4A676a1dd ; < LNjyJEfMdCs9b416LsP6DgY6Zb8fWGGOSEWv1ToJX2f06cJbH6Ddy6mFV5k6S8eP > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 47,3492614701451 ; 1,22550278283675 ; 37,636600531043 ; 47,3490114701451 ; 47,3495114701451 ; -9,8 ; 9,5 ; -5,7 ; 9,5 ; 9 ; -2 ; 0,91 ; FutureOC1974 ; B4EDb04DfdaDf3ECeED7a75deDCDC4fEe0c9fdAaEFbf6fAaC0c2aEEbcbCCEc8f ; < C0d0XDpqr348PI7YEXumRthXm2Yc6F7qE0S3w6twO5Ug0TmFDpRnrtR04pjtPy7I > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 47,9402903426262 ; 1,28606708760987 ; 36,2766637172266 ; 47,9400403426262 ; 47,9405403426262 ; 9,3 ; -6,5 ; -3,1 ; -7,5 ; -8 ; -6,1 ; 0,91 ; FutureDE1976 ; ffd8Ac9CE9ccbE2dFe1FFfa04c6B35D4b4BB0F1B4b3cFc66af0cb78eeCDABA57 ; < 4F5ICm27O60CaJ6195YNbYnPwh6NP6gKe6o66HMqt9PbAMfjkhc74pRJmXt8jg2c > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 48,5228945842474 ; 1,36599914885628 ; 34,5219068949454 ; 48,5226445842474 ; 48,5231445842474 ; -2,1 ; 1,3 ; 9,5 ; 3,4 ; 1,2 ; -3 ; -0,2 ; FutureFE2076 ; 1AcabABABA3ACbE8Ee67c573ABAAc19AfAeb28A4e5E27c6ff0fc8cf7BEEe3C11 ; < f1JnAZgyMb65qk3Cpa38sNW13yNJD38eMY83qzr6Fswu8AmKRinhPk1TIdVvKXZf > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 49,189063953024 ; 1,46838351706136 ; 32,4987851480824 ; 49,188813953024 ; 49,189313953024 ; 7,5 ; 3,2 ; 5,1 ; -1,1 ; -0,6 ; -9,5 ; -0,09 ; FutureAP2088 ; faaFEafdaBE98D7DDEDF8BCBDeAed6CEEBdabBf26FB84D6af0Ed13ebfa28fF2a ; < 34PI7F081grEcumGyFwi8mnCtYY0op0m9uSjW9jEC26Ezkq9riEuW2LR3pMVtKTH > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 49,8792802202895 ; 1,59760105735729 ; 30,2213615474181 ; 49,8790302202895 ; 49,8795302202895 ; -1 ; 9,1 ; 5,2 ; -4,4 ; 2,7 ; 7,2 ; 0,25 ; FutureJU2031 ; ce78e3Eed2EB0dcEB0f1FdCbeBc1e8fdc3BfCbEb7cA5cAee8bfbc2BebdD3Bd2F ; < vTesYuY7PyIW8aVMelxAvpel3nbbv1Yi7RuI8suu0Ho2aG2cT1NwXCf52u04YQ02 > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 50,5763634795173 ; 1,7592523917277 ; 27,7487819924736 ; 50,5761134795173 ; 50,5766134795173 ; 7,3 ; 4,3 ; 5,5 ; 4,1 ; 4,4 ; -5,2 ; 0,15 ; FutureAU2048 ; E17a4d3dff8Ca49fcBadE521E0aeeEEfE9A6BeAF68aBBdBed4E19bAeFFd6bfDd ; < nQ5P45F13A0M2c4x77UwDOw7YXI49xrR3XK9f80Him9Kv95IMq4pLrVTd9Gg4aEM > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 51,360721530577 ; 1,96085870954699 ; 25,1929741702005 ; 51,360471530577 ; 51,360971530577 ; -6,3 ; -3,3 ; -5,3 ; 9,7 ; 8,4 ; 8,9 ; 0,23 ; FutureOC2031 ; C49BC0C4dC7c9b125a00DF37aaf83fba50d43aBb0Bc7c9FEB69d85b51EeEdd7F ; < CKg5w7f9EO4mjy5m0c2lxKLT3nMg6u8H71yWGBXVER5QzyX9x9cBX02RTZWu1k7Q > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 52,088035377962 ; 2,21214586603078 ; 22,5463837072475 ; 52,087785377962 ; 52,088285377962 ; 0,7 ; 9,6 ; -9,2 ; -6,6 ; 7,5 ; 5,5 ; 0,94 ; FutureDE2088 ; ebF8fF3d2cC20C7A3aCb8Ebb7F2D78CEFDdbAbAdFFdcfAE8C1d7eCDe9a0D0D5C ; < nmBxXJWxH2a13c2kDM942IS2U90S9R9vGvxXVu8H9R78dyZt2lF5Pg35SN0zfZnM > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 52,8654573668434 ; 2,52591962372554 ; 19,929192231727 ; 52,8652073668434 ; 52,8657073668434 ; 1,7 ; -1,6 ; 0,5 ; -6,9 ; -6,6 ; 7,9 ; 0,12 ; FutureFE2175 ; Ac8Fb0E9caEDf3D420fce4DCD2EB12d0b61F5AfC9efACF365ea7A809ccC2FEc6 ; < W00690c9Z56aO6uJpQW2wUFxYyeM6uZkQ5I0w7Lxr3rji20rGhme91A16lp5eGUp > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 53,7722233355309 ; 2,91910679827428 ; 17,4207797286896 ; 53,7719733355309 ; 53,7724733355309 ; -7,8 ; -2,1 ; 8,7 ; 0,1 ; -4,4 ; 7,9 ; 0,14 ; FutureAP2158 ; 7Da181CCaAeAaebCEF4aDAf59Ceec18a6ce2C0DA08607BC6C6EBaEBCFbd9560c ; < mitI41Ne3Xi98871Tz3v9b3WhLsO481DCF37GZUJ3ErOKl94Wh0gbmHkXNH68N5M > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 54,6266189290596 ; 3,4140779814911 ; 15,0004016385125 ; 54,6263689290596 ; 54,6268689290596 ; -6,8 ; 4,3 ; -5,6 ; 5 ; 0,2 ; 0,1 ; 0,63 ; FutureJU2141 ; 8f37bffCeFD2cE912a88d789e6aDD6ecbEbfB2cc06AA0B9eCadAd0Bfa73E3b2F ; < 6vQ298I2hAU0et6SO1id26BTr7ed1z54QYrnJnCK1F0w02GQMM3rtO05ntoJ8mcq > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 55,4405143473106 ; 4,04175289739112 ; 12,7169480061724 ; 55,4402643473106 ; 55,4407643473106 ; 2,4 ; 0,1 ; -4,4 ; 4,5 ; -4 ; 1,3 ; 0,23 ; FutureAU2124 ; 7cfb143456409c57290B7B0b9e007CdDCdfaD8E8F6cBFb879Eeeee72cbd5FaF2 ; < 3uWAxI20GAqH7c0DvZq8B790pdqR2wu9D07DAF7L9Abwbtw7yYT817Y4yC1Lx6c4 > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 56,4031083676518 ; 4,84242213335702 ; 10,647705799773 ; 56,4028583676518 ; 56,4033583676518 ; 6 ; -1,7 ; -8,5 ; 5,7 ; -4,7 ; 1,4 ; -0,9 ; FutureOC2116 ; 896adA09E4dC6406C4Ed233BaDdf6DF3D30E8AEACEfa3aCf1adb4DCAAbbbadbF ; < 738fE7u9wwcEm7W9S9NyA9g1XCNrxQ64kqD4PUym0PNMSf46jggsL549Qm4abMAy > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 57,5092633922582 ; 5,87290920690256 ; 8,79229566918323 ; 57,5090133922582 ; 57,5095133922582 ; 9,1 ; -4,6 ; -8,1 ; 5,7 ; -8,4 ; 6,4 ; -0,74 ; FutureDE2151 ; EF2BAe32BBDFEd7142daBcCf8c31d185fCB5A20ea28F6FcFABeb36Bb2e4177bC ; < 08fpjf8KmwR57S10pa8roMx1Qrv9v703TYClvGG6vETpu4mnUAPiDeM0Ub832c3Q > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 58,5543156365361 ; 7,20899488896988 ; 7,12239660845468 ; 58,5540656365361 ; 58,5545656365361 ; 0,7 ; -2,3 ; -9 ; -4,2 ; -7,5 ; -8,8 ; -0,13 ; FutureFE2249 ; Eb2e2DbDBc2F1cf50aBBcbF9C4A6CfFafFd9675EADc2ceb8eaCDE2cCcbeDe5fF ; < X6L0JykH355qsdpjzRerO1UsNr2ginrg11mX1iU2prAHuB855OX7D36dxuk654cA > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 59,4376633771434 ; 8,95530811874447 ; 5,63714331087433 ; 59,4374133771434 ; 59,4379133771434 ; -9,6 ; -6,5 ; -7,1 ; -0,8 ; 1,9 ; 6,8 ; -0,26 ; FutureAP2268 ; fbBaC6E0CdfB37aEc5a7acCAFd65FEbEAfb3E1FBEc6EcbfDB3a1adeceCEBDECB ; < 2JNYz68q3E0c996DiN2GIQ4pf4xa0h14cndNfrJnwJjdOZp10dsZJw0W98T21578 > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 60,655856332567 ; 11,2603814837049 ; 4,38666087115637 ; 60,655606332567 ; 60,656106332567 ; 9 ; -7,7 ; 5,3 ; -4,3 ; -7,9 ; 9,3 ; -0,74 ; FutureJU2219 ; 4F0aA8fF7CfB9Dbc73fe4Fafb71DcAaaB9adC4EAABbFEef1fAebb926DCfeE5CE ; < MOYB95Q2t5p9cVu1BV06cUerB5WA4do57T8Q59exNa68iPvaC1OINZeaNqr8YGod > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 61,626383455219 ; 14,3305096237484 ; 3,30036230903418 ; 61,626133455219 ; 61,626633455219 ; -5,6 ; -0,1 ; 6,2 ; -4,9 ; 1,2 ; 4,7 ; -0,34 ; FutureAU2266 ; eEaEC2ff3761b17eD5B0Fa5D2eCfbcFAabA60d4A710E795DfbaBEBb541Bf7ACA ; < Fs0qO1yxrfEm36FkH1anu9s49e7CG56TVSn395zXqNMv4YtaBRP6MYASjnJJ81LP > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 63,052746256575 ; 18,4589404927482 ; 2,41583777689439 ; 63,052496256575 ; 63,052996256575 ; 4,3 ; 3,5 ; 8,6 ; -8,5 ; -0,4 ; -9,2 ; 0,27 ; FutureOC2223 ; abBf1EDfb8a84C3bAfEdfFd71d4C4E932B1caab3d1D3fe8126F6Eadf3BdF7Fef ; < mKCnm46QDZay8AZs8i6M91264c735tD0B6e609o7abHns8IR8mGSfsN4z5F091F8 > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 64,3656892307944 ; 24,063537883637 ; 1,67482236161801 ; 64,3654392307944 ; 64,3659392307944 ; -2,5 ; 0,8 ; 1,2 ; -6,4 ; 2,7 ; 7,5 ; -0,83 ; FutureDE2236 ; 23Cf8DFFeEE879cF104dD4221D5D39fc9b93bf821D7CCdDB9b9cf64Dc1EB0ceA ; < hV4s3E89Z4V74sl4CvtjC6d9EG2UO9f5v1j6mCpG45EX3LJ4992nMRy12q927tnI > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 65,6048616975017 ; 31,7506052749813 ; 1,06625546597679 ; 65,6046116975017 ; 65,6051116975016 ; -8,8 ; -5,4 ; -2,8 ; 9,6 ; -4,6 ; 5,8 ; 0,08 ; FutureFE2310 ; EE1efDc61FBF3dD0DE6b04FDBb5CDaC525ebd8bC0477e5B62aDAbBaBAdcd2A4F ; < G82TB6165xDa1CLgtaL6BCn1Ch5g4UI3a57JoUxmJl8sIG39sB1DxzJ836G8YVSU > > // < CALLS ; 3Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 29,7188316885717 ; quote ; 61,5308193640129 ; 60,3002029767326 ; 0,0204081632653061 ; 4,5 ; 56,6083538148919 ; 66,4532849131339 ; -1,1 ; acC60eBaa8cC9acc42424ae3EBF3beFFFeFcE3Eda6DC6FEAe4fDDe643ccf757f ; < L3tW5B5AOHu83LfVYlurePE60e0rmjfN9WA05vig9C8guDzPoubtwHJ6Xwv1w3Rx > > // < CALLS 32,6907148574289 ; quote ; 58,045248210132 ; 56,8843432459294 ; 0,0204081632653061 ; 4,1 ; 53,4016283533215 ; 62,6888680669426 ; -8,3 ; EbA55Dce4AFEC3DDAaea1fA10c9baD868FeFC0CFeE9E9Ec9d7B0Cd8632de281D ; < b8611hEuBwyg80c945139lYx929z2a62xk2TOayEAbk0s5M4w5F1lnI3B5U9i78W > > // < CALLS 35,6625980262861 ; quote ; 54,6875870286012 ; 53,5938352880292 ; 0,0204081632653061 ; 8,2 ; 50,3125800663131 ; 59,0625939908893 ; 5,9 ; bBDbaDdc1fbFec18aA06a785edA2D6E2E2bcbE1cadd882FfAcaBc6DADADfEFff ; < ExQ1z0V10N4lgSd64S29QXq5fCh4cKFu4A488l8wA67YTqnC9877FSU24FHv2801 > > // < CALLS 38,6344811951432 ; quote ; 51,4669757423064 ; 50,4376362274602 ; 0,0204081632653061 ; 5,2 ; 47,3496176829219 ; 55,5843338016909 ; 8,9 ; DEA8F1ddFEBFecd2A2BfE8E2F3edF6e7BbDd96ecfe2DDf65ddf93B7cbc5927De ; < CWk87RMcUC649mOq21659RXEqlzav054iNrw6WB7D4swMcpi0yUNr1r8469vATjY > > // < CALLS 41,6063643640004 ; quote ; 48,3896143750377 ; 47,4218220875369 ; 0,0204081632653061 ; -6,3 ; 44,5184452250347 ; 52,2607835250407 ; -2,8 ; E5EC65aDEfdb3e3E8d10f28C6fEa4ff0cED3CD05C7e487181fCEc1C9b5A5FED7 ; < ehb3EMd5V4Nj41d7tc6y209jlyTHkN0299i97X476K1XtO4inkF4w6S9K92G3xQV > > // < CALLS 44,5782475328576 ; quote ; 45,4590564027714 ; 44,5498752747159 ; 0,0204081632653061 ; -1,6 ; 41,8223318905496 ; 49,0957809149931 ; -0,2 ; ABbd99adcE5dc5ecdBcEbFDdCDFe6DE88d8e0E5F3db7DcEE8bfce1Cf8EfCBB1C ; < Yo6hyL10I2830O3eu9dg6A4yC3s9Tz0EZ7R75UW6gj8LD2Ne672H8o67n6XwrN4E > > // < CALLS 47,5501307017148 ; quote ; 42,6765659694769 ; 41,8230346500873 ; 0,0204081632653061 ; 2,7 ; 39,2624406919187 ; 46,090691247035 ; -4,9 ; a0c9ad27E3DcBeBCB9FccdEA1CF80bFea23b81CcaAFF9a9C20cd96F1252aEaAE ; < z3li1JJeOVJZg8aHUja8i1x29QxZUB5uafbw49778i0l1Rz0af78fN5Fok44sLpD > > // < CALLS 50,5220138705719 ; quote ; 40,0414910307221 ; 39,2406612101077 ; 0,0204081632653061 ; -8,4 ; 36,8381717482643 ; 43,2448103131799 ; -5,5 ; F8C1c0FAd5FE7cECB8fAF9AddCAdECC0e65DEcBCadcEcD6b7EfA7BC2ED8BfeC1 ; < WJJjl96fgfACeS0Fuav0pjlrPZ8V555l13C1lBacbXu6Wsh99qtG81J1gTpBI73a > > // < CALLS 53,4938970394291 ; quote ; 37,5516227399988 ; 36,8005902851988 ; 0,0204081632653061 ; 8,7 ; 34,5474929207989 ; 40,5557525591987 ; -1,5 ; BcEf9DEb1c1269befaDcBe2dDBFeCA3BEEEee7d3BeC851bdAD73CaaBFdaB38bf ; < IgngC5pba91za50xWV2LF1K80b9Ybz8dmLLo80GXcKt40OT2629RWl8kiRruVz0P > > // < CALLS 56,4657802082863 ; quote ; 35,2035243902198 ; 34,4994539024154 ; 0,0204081632653061 ; 3,9 ; 32,3872424390022 ; 38,0198063414374 ; -1,3 ; EBDFecfada9d8640c0D7da9bfdbBCf67a75DECeDE6ba29fBFec3c11faE6DeAeC ; < 998IUPIMWPX906huHUEfDTVzGde1a8QI1oY3U0iKQolfl0X7iymKo6u14bv50588 > > // < CALLS 59,4376633771434 ; quote ; 32,9928219942121 ; 32,3329655543278 ; 0,0204081632653061 ; 1,4 ; 30,3533962346751 ; 35,6322477537491 ; -3,9 ; BedbBCDfc90Ed9fC8C4E6EcfA5C0Bfe53b3d1ff0DECEDddaEA02ce4e8eBbd63F ; < 8JTDJkrPq8Q9cb2lF70U6K72F4H5yTAbuuXk2E64v3hJr25FdiCc4T28126x1gjj > > // < CALLS 62,4095465460006 ; quote ; 30,9144542159824 ; 30,2961651316627 ; 0,0204081632653061 ; 5,1 ; 28,4412978787038 ; 33,387610553261 ; 4,5 ; 7AFdeCeD3a8dEbACBbe42A9b6DDcEecec9849C98DF2defd7d95A8ef20da92Fca ; < 3eo4lLJ5d8FeVUz0qnRmD1v0D8F1oHIGzvfz0d2toeMno28176RMTrC1H612wBoR > > // < CALLS 65,3814297148578 ; quote ; 28,9628827714671 ; 28,3836251160378 ; 0,0204081632653061 ; 1,8 ; 26,6458521497498 ; 31,2799133931845 ; -1,5 ; 0DB32bcbcefdAbc9Af7C5bCD07FBFa35D9e2dcCbd1Afc1C6bEA047a6FDCadBA3 ; < 4iFwm16F35c7DJH13381D3yLkPbzMQfZp4uP632vJ6ZncBpYja8AZf4T84WSqgoI > > // < CALLS 68,353312883715 ; quote ; 27,1322663162922 ; 26,5896209899663 ; 0,0204081632653061 ; -7,1 ; 24,9616850109888 ; 29,3028476215956 ; 4,3 ; B635dEb3bE0512aB0D1D5ebD5b4E6bFC6DE2D1bC7cdaA0DFD5e5775d0eBCeD8a ; < S0NGpIy2moD0N805u18RjQs1zBC1o2ff6Elz2axj355823iE6Nt9k58Eq8S9a2l0 > > // < CALLS 71,3251960525721 ; quote ; 25,4166017493327 ; 24,908269714346 ; 0,0204081632653061 ; 9,7 ; 23,3832736093861 ; 27,4499298892793 ; -7 ; 1bAfAdCcd70E82d34C5fDddDDafbDA4BCaacc5baAE6E9DCFA3CFD8dAF2de90Ec ; < Mg0Xn3y8Ykh6I88cS08fEhG9zQ85Swc4bta0i000pBJx92PGWo0Q6a7Z0ZYi3lQV > > // < CALLS 74,2970792214293 ; quote ; 23,8098371502222 ; 23,3336404072177 ; 0,0204081632653061 ; -9,9 ; 21,9050501782044 ; 25,7146241222399 ; 5,2 ; D44CDbdD31eb1eFF3eEcFb6BEde9B30EBbA3D5ea9b3e3e6e5d363Ee9ceeBb85f ; < aLLJ2d7e8EXMDF33t5rMwT5LG8n2bEM3thx4NSbGV8M5Rp6Amdkmt2MBaP57f9th > > // < CALLS 77,2689623902865 ; quote ; 22,3059604855858 ; 21,8598412758741 ; 0,0204081632653061 ; 8,5 ; 20,521483646739 ; 24,0904373244327 ; -9,2 ; b51CcaDe30bbEC6aFe3A0a3dC590DA21aCd9fC1eCe4Dff0E74B32b4f6Ac66EEe ; < 992yYCf1y3LLQtR368Lt5dWxhvs8OMvug454vUr8rQI1D7PkJh54MGPAG43Z7t3t > > // < CALLS 80,2408455591437 ; quote ; 20,8990679279314 ; 20,4810865693728 ; 0,0204081632653061 ; 4,5 ; 19,2271424936969 ; 22,570993362166 ; 2,9 ; 1d6A7FdCeCc7ABbABDBaAEF1b2dADbbC1CCa7b4bFCa5B6d9c9aF52F1ECeECFf3 ; < Z5qd6ar2D0Sh159QmVO50Eh206b7w6EhQO0Y2h99l0Xhxe9K2C6Wtw295eKNVCsF > > // < CALLS 83,2127287280008 ; quote ; 19,583415239393 ; 19,1917469346052 ; 0,0204081632653061 ; -5,6 ; 18,0167420202416 ; 21,1500884585445 ; 6,1 ; Edb572eCcf61f8B0fB4aaFCd0f221cEC9B020dfE90debDc2dd9AcFBbfF18ABb8 ; < zV79gg8a97E1wskW86qi4C2nDQ26AFY0hDF56ZwszLI0t2Gb76k0o0Om0eATMpLZ > > // < CALLS 86,184611896858 ; quote ; 18,3534552464126 ; 17,9863861414844 ; 0,0204081632653061 ; -3,5 ; 16,8851788266996 ; 19,8217316661256 ; -4,6 ; adBd8a54adDDe3EA7CEbBc9cd6D8EDAe4CBE93D2cBB5E5De6Df4daBBf6dE8b2e ; < 0hP6laB3Gg1X0z4UqsL6jf0i7rJ54EsD7j74X2x6NToEajY9eHcGZ5x12eIc9O3t > > // < CALLS 89,1564950657152 ; quote ; 17,2038640106649 ; 16,8597867304516 ; 0,0204081632653061 ; 1,9 ; 15,8275548898117 ; 18,5801731315181 ; -4,4 ; 2Dcac05B3Afb6CaC8B20cc96ABaB011Acda0C3d35Cb77ADCfC4A8E3eA0Fb4aAc ; < VmI6sTX4g99z76O1cx8M2GYnTjj8V8K9hJlufZAPo6egu4nj6207Wg0qDW57Dxu7 > > // // < PUTS ; 3Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 29,7188316885717 ; quote ; 0,862212417340544 ; 0,844968168993733 ; 0,0204081632653061 ; 7,1 ; 0,7932354239533 ; 0,931189410727787 ; 1,3 ; 1fDF2CbCdcAfcB8cf3DFe2fbEc9A3b6bEebbE1a6463dAD0ACFed3Dbdf531e5dc ; < g45fn0tRN21npaPLiSwZPd3v3u1n3GBSWl1988G37G6xz8dNc054ZKMi4B1cIzb7 > > // < PUTS 32,6907148574289 ; quote ; 1,30978056879249 ; 1,28358495741664 ; 0,0204081632653061 ; -7,1 ; 1,20499812328909 ; 1,41456301429589 ; -6,1 ; f1bdF0F4C4BBcB1dC8cCBfaDD1a9631f9ca5a4cC9BFEa4AABBdEC1e6fAA9cBAB ; < 82Pk12EJb803E0RZ24LX6zv926XfO6ZP5Mc4281FPV8F7Bl97u991dUw050q28S2 > > // < PUTS 35,6625980262861 ; quote ; 1,88525869259442 ; 1,84755351874253 ; 0,0204081632653061 ; 2,3 ; 1,73443799718687 ; 2,03607938800197 ; -5 ; 2Ad7BecFdA6FcFAF1ef67F3b2C412CB8c7D02fcd9f0cA4d9ceDBD3aFBF64cbab ; < UBBHY8Wa011Vu94P2JXZd8z72wI2866250gh1acVTR98vvUK08irumg97U8b904d > > // < PUTS 38,6344811951432 ; quote ; 2,59778671163235 ; 2,54583097739971 ; 0,0204081632653061 ; -4,2 ; 2,38996377470176 ; 2,80560964856294 ; -1,1 ; 4daA8dd8a28eABbBcf1BAaEffB11d1aFCEb34b36E7EBfABA5acCaa6dCF6beC5D ; < tWfg4FYoa6Nh0YdT3Qpti2XWyAp87Vmx7NN8cncdxL3XuAVYYyhj6FQz1K9t9NdL > > // < PUTS 41,6063643640004 ; quote ; 3,4535646496964 ; 3,38449335670247 ; 0,0204081632653061 ; 6 ; 3,17727947772069 ; 3,72984982167212 ; -6,2 ; EBC9aFa2Ff0FFE58Aec4551d8f8bF0f1ddf4Dd98DAc61bCE9ffA33f3f2BbEBb3 ; < O3MBWAIdw51ou3AH46k8xWSj67LNX2jdHAGZztG9SEvqf6KVm5ac4na2xr7EIMt2 > > // < PUTS 44,5782475328576 ; quote ; 4,45614598276285 ; 4,36702306310759 ; 0,0204081632653061 ; -7,1 ; 4,09965430414182 ; 4,81263766138388 ; -4 ; 2CafEcd0Ec760fEaEFcfBe01eaCAbFA0E0aFECa3cafcDeCFCaEec0F6D39BFD1a ; < tQTfwGzNVXwEQiQZdX8sGoNu07Ey2ZtI0USJk5CCtiK4TCkeq733Z9t5UCPokbxe > > // < PUTS 47,5501307017148 ; quote ; 5,60679485480114 ; 5,49465895770511 ; 0,0204081632653061 ; -8,3 ; 5,15825126641705 ; 6,05533844318523 ; -4,3 ; FAe5baC1eFFCaE10BB49f3EFBBFEDFDb7aaFA6EF6d27AeC5daAad2BBF8EdBc64 ; < CT8kntwL96vUKvR6414yo8N787S7F0rge22Y5DG63s1Y01v1M1YBM12w0JIxZEu9 > > // < PUTS 50,5220138705719 ; quote ; 6,90485922137916 ; 6,76676203695157 ; 0,0204081632653061 ; 8,7 ; 6,35247048366882 ; 7,45724795908949 ; 4,3 ; 6C5abcf4fa1C9daAEabBDab1BFCEf9daBAdFfdd8ACdAbCBEdd0BfeCaA0D335DB ; < xS1W8q0gVh7b41GCYY5wxRhGxqIqgNK9WU7p77sq3C2k75bE580TgEChqJlyVkso > > // < PUTS 53,4938970394291 ; quote ; 8,34813023598858 ; 8,18116763126881 ; 0,0204081632653061 ; 3,5 ; 7,68027981710949 ; 9,01598065486767 ; -6,2 ; 9aE8efBdEcf0DEBaEdbEF5Cf20Ca0EECc91fEDf5f54d1De29ae8Dafbab9CeC2F ; < Q3W8EBPj7h4l18yb4pdD5e6f5Np6v1AYq5eoEysblVmm1yFVr71Fw9SA1KlRN2oY > > // < PUTS 56,4657802082863 ; quote ; 9,93317119154237 ; 9,73450776771152 ; 0,0204081632653061 ; -1,8 ; 9,13851749621898 ; 10,7278248868658 ; -8,7 ; a5F6aFDE9dc40075FaeedD7CEFaA703EDb0EEc14CEFAf9A0aFde6cEBB840df8A ; < ySWfR3y631Vb2S803mMUftz2g8L5haHAp69jFak8wo13zg6v4mfKN8kOrLzJe94H > > // < PUTS 59,4376633771434 ; quote ; 11,6556081008674 ; 11,4224959388501 ; 0,0204081632653061 ; -9,4 ; 10,723159452798 ; 12,5880567489368 ; -6,6 ; 872CCeeaC2F11e6fBAadcEc6FfdCb6DCCe73CB37C8e8331eCaaBEEEF99fc5B4f ; < 7Sxc4v02I5Le27Hymq65gFQx9dzYAEvCZn6K2802E09931X2E0VE64762rl90ntY > > // < PUTS 62,4095465460006 ; quote ; 13,5103796279705 ; 13,2401720354111 ; 0,0204081632653061 ; 7,8 ; 12,4295492577329 ; 14,5912099982081 ; -1,5 ; EcCdfDBDD2ca5b5Bb10C6cce52bccBFeC1fe5d6dA0A0DdE0Fe6c2F49dEAaE231 ; < 2wA7Ca1J50OFM7MU3AeunRR79Nx76R7X3mCUo23QEy87n8qK7G530281CA920CZS > > // < PUTS 65,3814297148578 ; quote ; 15,491947488788 ; 15,1821085390123 ; 0,0204081632653061 ; -3,3 ; 14,252591689685 ; 16,7313032878911 ; 0,2 ; F9a4bFdcD2caC3DFd230dfAa97BAE8dF1bF8ceC85D1cdbdEE0B0Dbe6ED8CFF48 ; < oU9qRHXoJglp45t5E48nF50543NbVHrwZyPI204a2f8Si3Hxr5NhPc6yeQ0Y793N > > // < PUTS 68,353312883715 ; quote ; 17,5944703389458 ; 17,2425809321669 ; 0,0204081632653061 ; -0,5 ; 16,1869127118302 ; 19,0020279660615 ; 3,1 ; 5Bb03b43FBf8EBF535ECe17Ecbf5c3CecCeeEB2ed3BB8ACfc7D25c85dbfDe8ED ; < 5GN7QO1i7eHI8k2rOGbRhQTk37my74EUbEoN7Bl2eFP6sf9WnHXB42BCnPgDmb5H > > // < PUTS 71,3251960525721 ; quote ; 19,8119450773191 ; 19,4157061757727 ; 0,0204081632653061 ; -4,9 ; 18,2269894711336 ; 21,3969006835046 ; 2,5 ; F76Baf89c4Bd2Fb2FdeE48C4ffcACBFeFeca9DD56bCedB83ac0bfbFb6bdac9ED ; < NbPmmN3EMY6aVXP4vRES8M1Xr09IoCGDkKuu55doARV9hz5n32ef2o008R5DvWl2 > > // < PUTS 74,2970792214293 ; quote ; 22,1383197835413 ; 21,6955533878705 ; 0,0204081632653061 ; 3,4 ; 20,367254200858 ; 23,9093853662246 ; 5,6 ; E5Bfa4eaB42DbFCCCA0c7dC72aaBeeba6cfEEaA3Def71AfcD1bA92eecbeb84D8 ; < 01q739057pE1MjbHn58E650ipQTlSu7tvAjzmH95ubkEebnz62CE67Q192DZ1wKe > > // < PUTS 77,2689623902865 ; quote ; 24,5675824242378 ; 24,076230775753 ; 0,0204081632653061 ; 6,1 ; 22,6021758302988 ; 26,5329890181768 ; -3,3 ; E6bD76bfA0B9CdC83395b7B4D2f532Fe8CDCefFFCae1f5BFbdA8cbb633dC077A ; < ZqVr11Y067GN5r8vnJzbZ28B202MQq2WLa1LkxQRX5zH2hm224Y2Ah05yMMQu579 > > // < PUTS 80,2408455591437 ; quote ; 27,0938291719162 ; 26,5519525884778 ; 0,0204081632653061 ; 4,8 ; 24,9263228381629 ; 29,2613355056694 ; 5,2 ; DF4dBF2baC43D9AAFdAcCAe9CAE0Ab4feBB28BE42cCaf6AebbAf771A0dafDFeE ; < n33cLZ22HOP9aWa9KB7sjmq2Eh59t8H5t314gD7Sx0lu05aUl02xN8JrMhtD9Sym > > // < PUTS 83,2127287280008 ; quote ; 29,7113157887105 ; 29,1170894729363 ; 0,0204081632653061 ; -8,5 ; 27,3344105256137 ; 32,0882210518074 ; 2,9 ; Ef1410CFebFe24FFF6EFCc2DFA23a42802C5431A4b2BbaA32bFFA5f8Bd1aAa1a ; < Ora8t7B96X9Evg20Vv4Lndq8w9Cbia1hbx9NLphM67tU3NErcF2Y5p3S6xZ3xcuU > > // < PUTS 86,184611896858 ; quote ; 32,4144951010629 ; 31,7662051990416 ; 0,0204081632653061 ; -5,8 ; 29,8213354929778 ; 35,0076547091479 ; -1,4 ; cEFBa9BB8A1B3b4ad3Ece82bc1AbF3B2e2A90aa373cb9dce07ad2B3bBDdBd6aE ; < dti3Y112QBf93ZGgw8W1b9XrS4pv2M9cX5KT6rKDb2ctsb6WHb41dOUbEgSMJIZs > > // < PUTS 89,1564950657152 ; quote ; 35,1980431706479 ; 34,4940823072349 ; 0,0204081632653061 ; 8,1 ; 32,3821997169961 ; 38,0138866242997 ; 1,6 ; bFCE6cB9a4aFfCfEa9FCE8cBDFe3d1aC556AD38c0A5AFfF5B4eFcC2E88bd8cEb ; < i7o6o854mB830GCY7GtHsmKoF5wX48xy56f0VT3M38c0xo018ch9C7GFd8I1B896 > > // Futures_Eurosibenergo_OJSC // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 45,759312 ; 1,14 ; 39,139747368421 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; AB9CCC1F4374F3f8354EecaDA1DBb5EC4DF552Cc9F0376c3E9EaffcfEE3aefCA ; < dhZZvf0L571c01a7t6d069KLZUw9HWI7D19kizRBKsjfF77zeuBMr2H5oQU2s1gJ > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 45,7595117944225 ; 1,1400057 ; 39,1397219280767 ; 45,7592617944225 ; 45,7597617944225 ; 0,6 ; -7,5 ; -3,7 ; -6,7 ; 9,6 ; 9 ; 0,96 ; Future47AP19 ; 56DD5f4f6CBaa83E3ae5aBea0de9fE8fF2BCbdB1c767ef58f9ab8B7f55BdfEfC ; < jLwe0Fc70P2rGvTr8N21Wga0pnnwzwG3qIJ3qH1m8Mvf4Wz669P0CNZa3kySoVvu > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 46,2648465541608 ; 1,1539244617613 ; 39,0934793283992 ; 46,2645965541608 ; 46,2650965541608 ; -3,1 ; 9,5 ; 8,7 ; 1,9 ; 7,4 ; 4,3 ; -0,74 ; FutureJU1990 ; 5B538FeBC64dcCB7Fed2cCcBafFcAACA3fBf9feA3fd7DE9dBe3A081bFEf319C9 ; < dh06ZdWgln4KuvcSl7ew44KJeV0Rw19NF5T2682r1QKX49Trq21gf5k7Y7HA6C6c > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 46,7752491865243 ; 1,18199922150755 ; 38,5729949186143 ; 46,7749991865243 ; 46,7754991865243 ; -6,7 ; -7,2 ; 8,2 ; -6,8 ; 8,2 ; 8 ; -0,35 ; FutureAU1934 ; CB7CAb1ceE0Bc0fd4d44DFBEfEEaB6CFdBe3A21B15C6dD9feEFbC4a4A676a1dd ; < LNjyJEfMdCs9b416LsP6DgY6Zb8fWGGOSEWv1ToJX2f06cJbH6Ddy6mFV5k6S8eP > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 47,3492614701451 ; 1,22550278283675 ; 37,636600531043 ; 47,3490114701451 ; 47,3495114701451 ; -9,8 ; 9,5 ; -5,7 ; 9,5 ; 9 ; -2 ; 0,91 ; FutureOC1974 ; B4EDb04DfdaDf3ECeED7a75deDCDC4fEe0c9fdAaEFbf6fAaC0c2aEEbcbCCEc8f ; < C0d0XDpqr348PI7YEXumRthXm2Yc6F7qE0S3w6twO5Ug0TmFDpRnrtR04pjtPy7I > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 47,9402903426262 ; 1,28606708760987 ; 36,2766637172266 ; 47,9400403426262 ; 47,9405403426262 ; 9,3 ; -6,5 ; -3,1 ; -7,5 ; -8 ; -6,1 ; 0,91 ; FutureDE1976 ; ffd8Ac9CE9ccbE2dFe1FFfa04c6B35D4b4BB0F1B4b3cFc66af0cb78eeCDABA57 ; < 4F5ICm27O60CaJ6195YNbYnPwh6NP6gKe6o66HMqt9PbAMfjkhc74pRJmXt8jg2c > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 48,5228945842474 ; 1,36599914885628 ; 34,5219068949454 ; 48,5226445842474 ; 48,5231445842474 ; -2,1 ; 1,3 ; 9,5 ; 3,4 ; 1,2 ; -3 ; -0,2 ; FutureFE2076 ; 1AcabABABA3ACbE8Ee67c573ABAAc19AfAeb28A4e5E27c6ff0fc8cf7BEEe3C11 ; < f1JnAZgyMb65qk3Cpa38sNW13yNJD38eMY83qzr6Fswu8AmKRinhPk1TIdVvKXZf > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 49,189063953024 ; 1,46838351706136 ; 32,4987851480824 ; 49,188813953024 ; 49,189313953024 ; 7,5 ; 3,2 ; 5,1 ; -1,1 ; -0,6 ; -9,5 ; -0,09 ; FutureAP2088 ; faaFEafdaBE98D7DDEDF8BCBDeAed6CEEBdabBf26FB84D6af0Ed13ebfa28fF2a ; < 34PI7F081grEcumGyFwi8mnCtYY0op0m9uSjW9jEC26Ezkq9riEuW2LR3pMVtKTH > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 49,8792802202895 ; 1,59760105735729 ; 30,2213615474181 ; 49,8790302202895 ; 49,8795302202895 ; -1 ; 9,1 ; 5,2 ; -4,4 ; 2,7 ; 7,2 ; 0,25 ; FutureJU2031 ; ce78e3Eed2EB0dcEB0f1FdCbeBc1e8fdc3BfCbEb7cA5cAee8bfbc2BebdD3Bd2F ; < vTesYuY7PyIW8aVMelxAvpel3nbbv1Yi7RuI8suu0Ho2aG2cT1NwXCf52u04YQ02 > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 50,5763634795173 ; 1,7592523917277 ; 27,7487819924736 ; 50,5761134795173 ; 50,5766134795173 ; 7,3 ; 4,3 ; 5,5 ; 4,1 ; 4,4 ; -5,2 ; 0,15 ; FutureAU2048 ; E17a4d3dff8Ca49fcBadE521E0aeeEEfE9A6BeAF68aBBdBed4E19bAeFFd6bfDd ; < nQ5P45F13A0M2c4x77UwDOw7YXI49xrR3XK9f80Him9Kv95IMq4pLrVTd9Gg4aEM > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 51,360721530577 ; 1,96085870954699 ; 25,1929741702005 ; 51,360471530577 ; 51,360971530577 ; -6,3 ; -3,3 ; -5,3 ; 9,7 ; 8,4 ; 8,9 ; 0,23 ; FutureOC2031 ; C49BC0C4dC7c9b125a00DF37aaf83fba50d43aBb0Bc7c9FEB69d85b51EeEdd7F ; < CKg5w7f9EO4mjy5m0c2lxKLT3nMg6u8H71yWGBXVER5QzyX9x9cBX02RTZWu1k7Q > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 52,088035377962 ; 2,21214586603078 ; 22,5463837072475 ; 52,087785377962 ; 52,088285377962 ; 0,7 ; 9,6 ; -9,2 ; -6,6 ; 7,5 ; 5,5 ; 0,94 ; FutureDE2088 ; ebF8fF3d2cC20C7A3aCb8Ebb7F2D78CEFDdbAbAdFFdcfAE8C1d7eCDe9a0D0D5C ; < nmBxXJWxH2a13c2kDM942IS2U90S9R9vGvxXVu8H9R78dyZt2lF5Pg35SN0zfZnM > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 52,8654573668434 ; 2,52591962372554 ; 19,929192231727 ; 52,8652073668434 ; 52,8657073668434 ; 1,7 ; -1,6 ; 0,5 ; -6,9 ; -6,6 ; 7,9 ; 0,12 ; FutureFE2175 ; Ac8Fb0E9caEDf3D420fce4DCD2EB12d0b61F5AfC9efACF365ea7A809ccC2FEc6 ; < W00690c9Z56aO6uJpQW2wUFxYyeM6uZkQ5I0w7Lxr3rji20rGhme91A16lp5eGUp > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 53,7722233355309 ; 2,91910679827428 ; 17,4207797286896 ; 53,7719733355309 ; 53,7724733355309 ; -7,8 ; -2,1 ; 8,7 ; 0,1 ; -4,4 ; 7,9 ; 0,14 ; FutureAP2158 ; 7Da181CCaAeAaebCEF4aDAf59Ceec18a6ce2C0DA08607BC6C6EBaEBCFbd9560c ; < mitI41Ne3Xi98871Tz3v9b3WhLsO481DCF37GZUJ3ErOKl94Wh0gbmHkXNH68N5M > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 54,6266189290596 ; 3,4140779814911 ; 15,0004016385125 ; 54,6263689290596 ; 54,6268689290596 ; -6,8 ; 4,3 ; -5,6 ; 5 ; 0,2 ; 0,1 ; 0,63 ; FutureJU2141 ; 8f37bffCeFD2cE912a88d789e6aDD6ecbEbfB2cc06AA0B9eCadAd0Bfa73E3b2F ; < 6vQ298I2hAU0et6SO1id26BTr7ed1z54QYrnJnCK1F0w02GQMM3rtO05ntoJ8mcq > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 55,4405143473106 ; 4,04175289739112 ; 12,7169480061724 ; 55,4402643473106 ; 55,4407643473106 ; 2,4 ; 0,1 ; -4,4 ; 4,5 ; -4 ; 1,3 ; 0,23 ; FutureAU2124 ; 7cfb143456409c57290B7B0b9e007CdDCdfaD8E8F6cBFb879Eeeee72cbd5FaF2 ; < 3uWAxI20GAqH7c0DvZq8B790pdqR2wu9D07DAF7L9Abwbtw7yYT817Y4yC1Lx6c4 > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 56,4031083676518 ; 4,84242213335702 ; 10,647705799773 ; 56,4028583676518 ; 56,4033583676518 ; 6 ; -1,7 ; -8,5 ; 5,7 ; -4,7 ; 1,4 ; -0,9 ; FutureOC2116 ; 896adA09E4dC6406C4Ed233BaDdf6DF3D30E8AEACEfa3aCf1adb4DCAAbbbadbF ; < 738fE7u9wwcEm7W9S9NyA9g1XCNrxQ64kqD4PUym0PNMSf46jggsL549Qm4abMAy > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 57,5092633922582 ; 5,87290920690256 ; 8,79229566918323 ; 57,5090133922582 ; 57,5095133922582 ; 9,1 ; -4,6 ; -8,1 ; 5,7 ; -8,4 ; 6,4 ; -0,74 ; FutureDE2151 ; EF2BAe32BBDFEd7142daBcCf8c31d185fCB5A20ea28F6FcFABeb36Bb2e4177bC ; < 08fpjf8KmwR57S10pa8roMx1Qrv9v703TYClvGG6vETpu4mnUAPiDeM0Ub832c3Q > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 58,5543156365361 ; 7,20899488896988 ; 7,12239660845468 ; 58,5540656365361 ; 58,5545656365361 ; 0,7 ; -2,3 ; -9 ; -4,2 ; -7,5 ; -8,8 ; -0,13 ; FutureFE2249 ; Eb2e2DbDBc2F1cf50aBBcbF9C4A6CfFafFd9675EADc2ceb8eaCDE2cCcbeDe5fF ; < X6L0JykH355qsdpjzRerO1UsNr2ginrg11mX1iU2prAHuB855OX7D36dxuk654cA > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 59,4376633771434 ; 8,95530811874447 ; 5,63714331087433 ; 59,4374133771434 ; 59,4379133771434 ; -9,6 ; -6,5 ; -7,1 ; -0,8 ; 1,9 ; 6,8 ; -0,26 ; FutureAP2268 ; fbBaC6E0CdfB37aEc5a7acCAFd65FEbEAfb3E1FBEc6EcbfDB3a1adeceCEBDECB ; < 2JNYz68q3E0c996DiN2GIQ4pf4xa0h14cndNfrJnwJjdOZp10dsZJw0W98T21578 > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 60,655856332567 ; 11,2603814837049 ; 4,38666087115637 ; 60,655606332567 ; 60,656106332567 ; 9 ; -7,7 ; 5,3 ; -4,3 ; -7,9 ; 9,3 ; -0,74 ; FutureJU2219 ; 4F0aA8fF7CfB9Dbc73fe4Fafb71DcAaaB9adC4EAABbFEef1fAebb926DCfeE5CE ; < MOYB95Q2t5p9cVu1BV06cUerB5WA4do57T8Q59exNa68iPvaC1OINZeaNqr8YGod > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 61,626383455219 ; 14,3305096237484 ; 3,30036230903418 ; 61,626133455219 ; 61,626633455219 ; -5,6 ; -0,1 ; 6,2 ; -4,9 ; 1,2 ; 4,7 ; -0,34 ; FutureAU2266 ; eEaEC2ff3761b17eD5B0Fa5D2eCfbcFAabA60d4A710E795DfbaBEBb541Bf7ACA ; < Fs0qO1yxrfEm36FkH1anu9s49e7CG56TVSn395zXqNMv4YtaBRP6MYASjnJJ81LP > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 63,052746256575 ; 18,4589404927482 ; 2,41583777689439 ; 63,052496256575 ; 63,052996256575 ; 4,3 ; 3,5 ; 8,6 ; -8,5 ; -0,4 ; -9,2 ; 0,27 ; FutureOC2223 ; abBf1EDfb8a84C3bAfEdfFd71d4C4E932B1caab3d1D3fe8126F6Eadf3BdF7Fef ; < mKCnm46QDZay8AZs8i6M91264c735tD0B6e609o7abHns8IR8mGSfsN4z5F091F8 > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 64,3656892307944 ; 24,063537883637 ; 1,67482236161801 ; 64,3654392307944 ; 64,3659392307944 ; -2,5 ; 0,8 ; 1,2 ; -6,4 ; 2,7 ; 7,5 ; -0,83 ; FutureDE2236 ; 23Cf8DFFeEE879cF104dD4221D5D39fc9b93bf821D7CCdDB9b9cf64Dc1EB0ceA ; < hV4s3E89Z4V74sl4CvtjC6d9EG2UO9f5v1j6mCpG45EX3LJ4992nMRy12q927tnI > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 65,6048616975017 ; 31,7506052749813 ; 1,06625546597679 ; 65,6046116975017 ; 65,6051116975016 ; -8,8 ; -5,4 ; -2,8 ; 9,6 ; -4,6 ; 5,8 ; 0,08 ; FutureFE2310 ; EE1efDc61FBF3dD0DE6b04FDBb5CDaC525ebd8bC0477e5B62aDAbBaBAdcd2A4F ; < G82TB6165xDa1CLgtaL6BCn1Ch5g4UI3a57JoUxmJl8sIG39sB1DxzJ836G8YVSU > > // < CALLS ; 5Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 26,8861116677654 ; quote ; 68,7696516082759 ; 67,3942585761104 ; 0,0204081632653061 ; -7,7 ; 62,9242312215724 ; 74,6150719949793 ; -3 ; 6b7B429d4eCEEfCcB55D37A5dDFB0E045C744e0AdCC9F7c0dEe5F0fDdacbe9cd ; < U5fxvCYGWQxncEBz66ATJI4E45PWGwyc5RqmEZ3V2kFRcldJS0IR68z32G3AzE5I > > // < CALLS 29,574722834542 ; quote ; 66,0394899014161 ; 64,7187001033877 ; 0,0204081632653061 ; -2,5 ; 60,4261332597957 ; 71,6528465430364 ; 0,6 ; afDDF8Dec5cCf61DaACBeD1A8FcCd8Adb19878ca98494Cdbd49Fe91dDefEC9dF ; < vesRlMyKFTl2FDOmYT0LlFDAp9Vd7pnI0tVk5ESEc9IMt5yQJtaO5BCHkII1Vo95 > > // < CALLS 32,2633340013185 ; quote ; 63,4088182749812 ; 62,1406419094816 ; 0,0204081632653061 ; -6 ; 58,0190687216078 ; 68,7985678283546 ; -2,6 ; 42d3056c5F84bAE72e5fcC47bBaCb0be5500cBBDdCAEdFce8dDdA3BCc0BeefdE ; < uXnCKnjW3evyTT3NA5aWDxj87GgzGm2IRfPZ3Jrx9i61cUX7fy966xkoCXl7dA9n > > // < CALLS 34,9519451680951 ; quote ; 60,8785228676813 ; 59,6609524103277 ; 0,0204081632653061 ; -6,9 ; 55,7038484239284 ; 66,0531973114342 ; 7,5 ; FCBddeD66ee61C72FCdEC47b0A92B8FB7d7daDBc9cBE45Ba0d3fDd5E37EDafCa ; < 8mdk105Y8ovkYgY268u6xyc231z0RFTHW1dn27l0t1r01qAFcPr7ax8C4G9Ni47g > > // < CALLS 37,6405563348716 ; quote ; 58,4483243190617 ; 57,2793578326805 ; 0,0204081632653061 ; -3,9 ; 53,4802167519415 ; 63,416431886182 ; 9,6 ; dEdceBDCBEdaDfABbbb80DdbB0DBf9a46D95fcd1D3BcafECA0ABAa7e0EACACAB ; < wy6TtnCGZ5lfF1z1378OKd8R6eMXO37DJ5H80LXFJPcAU18zne85dpdiSIfldQ5d > > // < CALLS 40,3291675016481 ; quote ; 56,1170355544163 ; 54,994694843328 ; 0,0204081632653061 ; 8,9 ; 51,347087532291 ; 60,8869835765417 ; 9,5 ; e5D6FFf2CFcBbA2bbEB8fBEB45e3279EA5bf6FacFaCeeeFB3ceE7529438b7FaD ; < TTI0UR1JSBv4dwG3c3drCJD096MtcSO8Is8JVY1vV9a5VNzLsd7jbCJEbGT98dF0 > > // < CALLS 43,0177786684247 ; quote ; 53,8827769498618 ; 52,8051214108646 ; 0,0204081632653061 ; -2,7 ; 49,3027409091236 ; 58,4628129906001 ; -5,6 ; AAd43cCa3a07fbB5BDBCedcaD3A5F8DF1AbBdf9AAEbfBAbAd1DdACf989A0abA5 ; < 7zNoir7qOi4sCFD95cI1wplJ9oz0Z0348mHWu4Wv43cyUDDe5NVk1RZ2mPvB8fKW > > // < CALLS 45,7063898352012 ; quote ; 51,7431529046748 ; 50,7082898465813 ; 0,0204081632653061 ; -9,6 ; 47,3449849077774 ; 56,1413209015721 ; 4,7 ; Adb4e30Aa2B8b8B8dF2e2cbbe94f5C9cc3DEFfB33BbeEbA1bf26d7bdb61DF10B ; < 8AdCftan3855o4f9D77PnbtT5YY0xEqK7cuU7A2BoDtJrZLBl01y2zmfu083c3x5 > > // < CALLS 48,3950010019778 ; quote ; 49,6953949372565 ; 48,7014870385113 ; 0,0204081632653061 ; -3,2 ; 45,4712863675897 ; 53,9195035069233 ; -0,4 ; A76abAfcd4Becf0ce6cCD1bbF8aDc2ae5Dff118AFf641faE88c83AbE7A0ae01F ; < 5ju0kXf2fLEx7U68evF1DVjnniH3J7i3j2FVt75VRa8iX0lGtAUC0BCF784Y0Y7E > > // < CALLS 51,0836121687543 ; quote ; 47,7364764920315 ; 46,7817469621909 ; 0,0204081632653061 ; 6,3 ; 43,6788759902088 ; 51,7940769938542 ; -2,5 ; CEC13cA6dBDe8622aD3Afd6FF7F6d3DCfcCc7bCCcFeCcA4bfFbcccd7b1EEe5cE ; < 3S1E727rCMZ8IN5LwNc41kSAM4PaNv0pCWDpjT5e3R5f121Fn0jhG9bcAuz7wTBW > > // < CALLS 53,7722233355309 ; quote ; 45,8632042431598 ; 44,9459401582966 ; 0,0204081632653061 ; -7,1 ; 41,9648318824912 ; 49,7615766038284 ; 8 ; aaCa77aac14ceEE4D8CeFAfE7cE1d0933b25DbFfcCBf9B1DcbCDAfDA0CB5B6ED ; < shlL9wubc6r07GchBJ85JZp85QEeqqR247j1oLL3dFG2l0imy1n72V5S3zeH6FJd > > // < CALLS 56,4608345023074 ; quote ; 44,0722900961976 ; 43,1908442942737 ; 0,0204081632653061 ; -5,6 ; 40,3261454380208 ; 47,8184347543744 ; -7,8 ; ACed0Fabeb13AFabE7bFd903caFABbdEDF0EeDcBbc71d2FBDaf92e0091aFF7Dc ; < FxkKuCejKPnZ1HDvK9Knxz9tj6Mwvs5FCRq9jZtec66J3IX4x01xEHhfZ1B1CbS9 > > // < CALLS 59,1494456690839 ; quote ; 42,3604074685174 ; 41,5131993191471 ; 0,0204081632653061 ; 5,6 ; 38,7597728336934 ; 45,9610421033414 ; -6,3 ; eC5ffEDB222aBd02c1B47bBCA19CA4110df9bf2d7fDD37BCD7bdfE1FdF2c7AEC ; < 4MFuMrD6So758CkL5qP7BUkhWGtsSMBa92Fr3043jiFyYg9VyRx64eDQ9ACaVoQ6 > > // < CALLS 61,8380568358605 ; quote ; 40,7242348442273 ; 39,9097501473428 ; 0,0204081632653061 ; 2 ; 37,262674882468 ; 44,1857948059867 ; -0,1 ; daa46c1daadF8cBEeAfCdf0e36CeDea8FF5c5aC3b96245aaD9e7cddAb9BB3A45 ; < q0C7831e0gT2vaerH0Mvf0O2fG19nWOcUealpIAofktHG6QDvqCJT1H6894AwDi9 > > // < CALLS 64,526668002637 ; quote ; 39,1604890792011 ; 38,3772792976171 ; 0,0204081632653061 ; 7,8 ; 35,831847507469 ; 42,4891306509332 ; -2,7 ; AEFedEbBfE0CC5caBFEFf6fD8bbbF7CfBECDbEAdb3dFFadCaD717dCF6eff9eAA ; < 08B5466QwpUswH6SFiD82bj27KqqefMqU0367YaHlOTGvHbt8Sy5ThOKF2aa2d56 > > // < CALLS 67,2152791694136 ; quote ; 37,6659504849378 ; 36,912631475239 ; 0,0204081632653061 ; 5,3 ; 34,4643446937181 ; 40,8675562761575 ; 9,4 ; dcc5E7FbaFfA63179EF3840ce9c1901a4ccfCeDCA1cCBFBfBaeAebe5f8EeCd80 ; < 24TWX29m4kz9QBesfSJus3QY3Vwqj0O2pNYJtQ3582Yv5bV9JpnDSS6j83vqTR25 > > // < CALLS 69,9038903361901 ; quote ; 36,2374813440611 ; 35,5127317171799 ; 0,0204081632653061 ; 5,2 ; 33,1572954298159 ; 39,3176672583063 ; 0,1 ; d8d9f62cE09dEFDF329758FADbddd9807dE2eEDBb5D3cAF7aBC03fB955f2af0b ; < 5Wdxi121ptLhsJ39BVIsyP1Zf2NY1FNAWxO2506ZA9NGog43mOsmb2pq0454kuca > > // < CALLS 72,5925015029667 ; quote ; 34,8720391984027 ; 34,1745984144347 ; 0,0204081632653061 ; -1,5 ; 31,9079158665385 ; 37,836162530267 ; 5,6 ; 86b2e82D0DDD30Bbb27f1CBACbADfDD022FFccEDdB7ea1B7eBA2DCf82dACbd20 ; < 43WW6iSdc94dZrplx3TV4kpdvSE9x6n6zs1F910puE6zqlIOqmF817p6kK48xFyA > > // < CALLS 75,2811126697432 ; quote ; 33,5666859942514 ; 32,8953522743664 ; 0,0204081632653061 ; 4,7 ; 30,71351768474 ; 36,4198543037628 ; 4,2 ; 1bcAAaDD4AFfC2c2B9e3aFED8C00EB0980Afd8cd7FB8c369baadECD3A8f3Bd7b ; < lLwPFL34o1g17EX7p3Y1Z7myI1jn320zL1Km0zP1B06z2BPj8Y8d4Tq9wWXfkozZ > > // < CALLS 77,9697238365197 ; quote ; 32,3185939599338 ; 31,6722220807351 ; 0,0204081632653061 ; 0,8 ; 29,5715134733394 ; 35,0656744465281 ; -5,8 ; FBC51C6CE7D8aAbBEFe5dB89B886bE4Ce3AEF32aE6cBa0eAAc12fC4549FFCAdF ; < DF0kwlKEHkF1yVlMR50Gdqib8Ov3W3O1H32zPngD07997KS4CDLpJ76n8PE95y4H > > // < CALLS 80,6583350032963 ; quote ; 31,1250489205501 ; 30,5025479421391 ; 0,0204081632653061 ; 6,7 ; 28,4794197623033 ; 33,7706780787968 ; 8,4 ; 0eedcA4a6C6FfEaaC5711c7aF7EFeeFFED2cAaDadeAbBedf5Ddb46aAddBfdbC3 ; < 579840nFBMaU8UYfp4Z75xXzQo4J9l9Z17eog6ec8yekH16J02poYn7499mwAM3T > > // // < PUTS ; 5Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 26,8861116677654 ; quote ; 1,45814086476824 ; 1,42897804747287 ; 0,0204081632653061 ; -8 ; 1,33419889126294 ; 1,58208283827354 ; -5,9 ; 7Beb6f63C7A65ffeeC9ee4f6C3b26dAaEb3def2464d9dcDbFAC0d7CA7Ad201a6 ; < U0OQJt71614DTLR4h8Kg0vUqZP8DXjo1Inu39a7ei0I1r30AzMW4C3eL3xAxzffZ > > // < PUTS 29,574722834542 ; quote ; 1,99682808355766 ; 1,95689152188651 ; 0,0204081632653061 ; 4,8 ; 1,82709769645526 ; 2,16655847066006 ; -1 ; DBAaAAeB6e9F94ccfa5cBDcdC7f541AefcDfEE4Fa1C35a8F24ECb5fbc1A5a87F ; < lno664zv5t4bFV3jZNzHF18a51j1io8InNNv0zNhiuWGS0Fp0Agbi9z10UP775B8 > > // < PUTS 32,2633340013185 ; quote ; 2,63500538277204 ; 2,5823052751166 ; 0,0204081632653061 ; 7 ; 2,41102992523641 ; 2,85898084030766 ; -8,5 ; AF06cCAFE1bbf39fBA7FE9E67A439Db1FcEaE460695a8DEC988f3aE2DA0AFbEB ; < OQ587L1MjAB1hZy6c3e6Q1GOhc4K7y6N8iCgUPfjP17KMfe9z05sApmBJOeD0HX7 > > // < PUTS 34,9519451680951 ; quote ; 3,37355890112138 ; 3,30608772309896 ; 0,0204081632653061 ; 9,5 ; 3,08680639452607 ; 3,6603114077167 ; -0,1 ; 805bEC9Fe4e5abFABf51F4E69a76dbeB39AeD7FcD3Af1DdAEF17fcFA2AD4B1e8 ; < 025K9xWOnDeTVblLAQIneAGDcSCO80tMrxDDBqe9f55h5kqeiJkfa5nz6xlY1tOx > > // < PUTS 37,6405563348716 ; quote ; 4,21220927815105 ; 4,12796509258803 ; 0,0204081632653061 ; -6,5 ; 3,85417148950821 ; 4,57024706679389 ; 0,5 ; f9dEaE5FA1a73adCeA7Adb5CeDfAbCc7cfb6bCD88dAd1AcbeCaE0ccAdFD5C18F ; < O8nyVsnf46Z6WyBI5Z7Fi13JHv3WXE2QmCl4mWAB581D3qc5Td4gFg3WX6W6VjzP > > // < PUTS 40,3291675016481 ; quote ; 5,1497694391549 ; 5,0467740503718 ; 0,0204081632653061 ; -8,1 ; 4,71203903682673 ; 5,58749984148306 ; -2,7 ; 4C142F2C4dEec6EDFEa20Ac05EbbFbd4dac73aAfCc2F86eDe0fbaa0BB3dC35EB ; < 3n01nP6ijsEDJWNS6z063o30m2Tsgb4RaGr51e5a42Vio8FeV80Pz6O5FY6odHYl > > // < PUTS 43,0177786684247 ; quote ; 6,18435976024961 ; 6,06067256504461 ; 0,0204081632653061 ; 3,7 ; 5,65868918062839 ; 6,71003033987082 ; 6,3 ; Db8CbbEF2Fcb4Bd1DC8CABfd7DE032FFe1C28c9Fcc26ECeDc8B4E2578dD8303a ; < 45II9ksa5B93fjj72FgB981EItoob9SCpIZc1bE7750bKPK07T8biS8CAj7PDLLA > > // < PUTS 45,7063898352012 ; quote ; 7,31358464071178 ; 7,16731294789755 ; 0,0204081632653061 ; 4,1 ; 6,69192994625128 ; 7,93523933517228 ; 5,4 ; AD2bB468BaA6EBeBEe3B75Fc9672dBEAbdDCbEf81E8eAADcfCbec2eba2AcfB6e ; < i3BM8411Oi2x8DBbhM1PjpkB1N05gPFPo1n4dMbLB0A0vObg3fEAxyDEZ405J8T4 > > // < PUTS 48,3950010019778 ; quote ; 8,53467559894273 ; 8,36398208696387 ; 0,0204081632653061 ; -4,5 ; 7,8092281730326 ; 9,26012302485286 ; 2,3 ; fBEc6AabaaABfc44B73DFDC7c89dcBdDD4FBfe9c9eD4a64Cfacc4EAD537ddcBE ; < F7N1np2yAzuM9Hd9a73ptqhBCPr5L7Rs5PauM435szS87EPn1Mropy31ywnPUrmP > > // < PUTS 51,0836121687543 ; quote ; 9,84460607936701 ; 9,64771395777967 ; 0,0204081632653061 ; -2,4 ; 9,00781456262082 ; 10,6813975961132 ; 8,2 ; aDd6eCcFbfE16eFdBF19dbFecAbE66B3EEabD006c9EDeF4EaFc6DFFF1bb1FaE1 ; < 3c63P5oLiq3uTANLL7OW474B9N4F25X70Jp3F8z5jP9od7Z4PUf6tq66W0zq4W1N > > // < PUTS 53,7722233355309 ; quote ; 11,2401827561445 ; 11,0153791010216 ; 0,0204081632653061 ; -1,1 ; 10,2847672218722 ; 12,1955982904168 ; -7,2 ; BdAcfF191fEf3Bd128bed8F0FDEEeccced8FF1d6a0a1FF8B29Ac1c0CDbEaAae2 ; < JHUWmW3dSbqW06q98pkbjdqSVlqhJq0uz9u7btm578cpN2xxyU320D59E1ep1Eey > > // < PUTS 56,4608345023074 ; quote ; 12,7181175348316 ; 12,4637551841349 ; 0,0204081632653061 ; -1,7 ; 11,6370775443709 ; 13,7991575252923 ; -0,6 ; 3Fd9Ffc7eCdDC92CCdD52CdB6cfc9edaf5EcFFa97Eb2693CCb3Edba9cAA0fa4D ; < 3e276z1n99HxM5s2md3AKIlN5AO99wF1I6MYGo3dfGmHtyP7u8AOmTtw1W7VB8M4 > > // < PUTS 59,1494456690839 ; quote ; 14,2750838328006 ; 13,9895821561446 ; 0,0204081632653061 ; -9,9 ; 13,0617017070126 ; 15,4884659585887 ; -0,4 ; 1dD2f0a0DCDDDa7eE0a3ECbaEE6bD6cfAFaA42f2aDbcAdAa3ddbEBd6CaDcAbd5 ; < XJUa27JA3CA3GQ2pqTxbh4ac7p7dq2YhO4Xf3VDEP8l0ON87g5xz3o9PYe6mixh7 > > // < PUTS 61,8380568358605 ; quote ; 15,9077601341598 ; 15,5896049314766 ; 0,0204081632653061 ; -1,9 ; 14,5556005227562 ; 17,2599197455634 ; 7,7 ; f1BAce0ae6aA39B6ebEce62C0Fe0CdA21C2ba91Acd6Aadccefd2a79F1dEBdBE0 ; < 0vS816Qp7sIqr04UY146Ui6GM28FtB2NwqB6Fi0UkzS4PL63B9W80WFY95u18sDy > > // < PUTS 64,526668002637 ; quote ; 17,6128632947828 ; 17,2606060288872 ; 0,0204081632653061 ; -6,6 ; 16,1157699147263 ; 19,1099566748394 ; -4,2 ; fc7D0eEF98aa853CD4B2FbAEBCb5Cb5f04aCaa70A9efcEDFAA94da9F94aFDefF ; < 4pRRTPV4gnytP71Y6l1n6mSL8s2S4vk5OYzPQeCeJ08RS64ur7cT9k484oL1Qxdz > > // < PUTS 67,2152791694136 ; quote ; 19,3871736261687 ; 18,9994301536453 ; 0,0204081632653061 ; -2,5 ; 17,7392638679444 ; 21,035083384393 ; -2,6 ; 0096EBdA1bCaFfF59bACCF20d1df1bBd2acdFfb4DdDcACBc741dde37E5Fbb9CC ; < 29Fm1X552lfEb42U2dnx7w1NV35H6MCSQ41Qe6S6406YHT4DPuWSf9Yx520mbID6 > > // < PUTS 69,9038903361901 ; quote ; 21,2275534109413 ; 20,8030023427224 ; 0,0204081632653061 ; 4,2 ; 19,4232113710113 ; 23,0318954508713 ; 6,4 ; aa0Bb0ba0ce129fF01efeEEc39fC9Ee2219dc0f6b7bDEF8C1a37BFabCFcce4dE ; < L2OkvjB4lZP0B18r7pCKxw02L763s28hj5E9MUIln3x2MNI6ZRD64tTC1sA38zn6 > > // < PUTS 72,5925015029667 ; quote ; 23,1309601909321 ; 22,6683409871135 ; 0,0204081632653061 ; 7,2 ; 21,1648285747029 ; 25,0970918071614 ; -1,8 ; bFe4D0EbAe7EcDEF2FDe5fF1C6AC34BdCfff5AF75ACeA4DDdEE76BaFbBc99dBA ; < BkUGl5yUKlZ0w19l687HDx5oSGb7v3Xj1cD15b8VWgE5D101j3Bj8GHLWhFbokc6 > > // < PUTS 75,2811126697432 ; quote ; 25,09445591243 ; 24,5925667941814 ; 0,0204081632653061 ; -4,5 ; 22,9614271598735 ; 27,2274846649866 ; 9,8 ; 4CEFCf7c9D6EEBA8e6aA99BE8adaa7dAcC5B0D4cD9D9aDb80bcF0a8fde3ed6ea ; < 5BOkdeGm26fcb35GZiimHjDgW95rSceJGR84t1B41T8UMh9OM8j9VXXy08qvM6Ve > > // < PUTS 77,9697238365197 ; quote ; 27,1152128037616 ; 26,5729085476864 ; 0,0204081632653061 ; 2,6 ; 24,8104197154419 ; 29,4200058920813 ; 8 ; C11cd8F9AecEbfAe107b4D3fC1ec633F96D6ACabb55dBBEFCc24Fd8D6F8c54A5 ; < PC9RRUB9mzh7EcFpgGkD9AlUZgST7lKvLz27xTYKl688QNOdJ3U4YdN69k0474ya > > // < PUTS 80,6583350032963 ; quote ; 29,1905166900272 ; 28,6067063562267 ; 0,0204081632653061 ; -7 ; 26,7093227713749 ; 31,6717106086795 ; -5,4 ; 9b84cf8FfA2fAcebD31aFf3dBEaEead8cCF3f9E7EEb032bdC0E516D9cF4D7A6a ; < u55zI7n8c00OQW3DHyDuiOo051NWIZC3O61wE9tsL499Z95047qL2bT55913R7fx > > // Futures_Eurosibenergo_OJSC // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 45,759312 ; 1,14 ; 39,139747368421 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; AB9CCC1F4374F3f8354EecaDA1DBb5EC4DF552Cc9F0376c3E9EaffcfEE3aefCA ; < dhZZvf0L571c01a7t6d069KLZUw9HWI7D19kizRBKsjfF77zeuBMr2H5oQU2s1gJ > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 45,7595117944225 ; 1,1400057 ; 39,1397219280767 ; 45,7592617944225 ; 45,7597617944225 ; 0,6 ; -7,5 ; -3,7 ; -6,7 ; 9,6 ; 9 ; 0,96 ; Future47AP19 ; 56DD5f4f6CBaa83E3ae5aBea0de9fE8fF2BCbdB1c767ef58f9ab8B7f55BdfEfC ; < jLwe0Fc70P2rGvTr8N21Wga0pnnwzwG3qIJ3qH1m8Mvf4Wz669P0CNZa3kySoVvu > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 46,2648465541608 ; 1,1539244617613 ; 39,0934793283992 ; 46,2645965541608 ; 46,2650965541608 ; -3,1 ; 9,5 ; 8,7 ; 1,9 ; 7,4 ; 4,3 ; -0,74 ; FutureJU1990 ; 5B538FeBC64dcCB7Fed2cCcBafFcAACA3fBf9feA3fd7DE9dBe3A081bFEf319C9 ; < dh06ZdWgln4KuvcSl7ew44KJeV0Rw19NF5T2682r1QKX49Trq21gf5k7Y7HA6C6c > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 46,7752491865243 ; 1,18199922150755 ; 38,5729949186143 ; 46,7749991865243 ; 46,7754991865243 ; -6,7 ; -7,2 ; 8,2 ; -6,8 ; 8,2 ; 8 ; -0,35 ; FutureAU1934 ; CB7CAb1ceE0Bc0fd4d44DFBEfEEaB6CFdBe3A21B15C6dD9feEFbC4a4A676a1dd ; < LNjyJEfMdCs9b416LsP6DgY6Zb8fWGGOSEWv1ToJX2f06cJbH6Ddy6mFV5k6S8eP > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 47,3492614701451 ; 1,22550278283675 ; 37,636600531043 ; 47,3490114701451 ; 47,3495114701451 ; -9,8 ; 9,5 ; -5,7 ; 9,5 ; 9 ; -2 ; 0,91 ; FutureOC1974 ; B4EDb04DfdaDf3ECeED7a75deDCDC4fEe0c9fdAaEFbf6fAaC0c2aEEbcbCCEc8f ; < C0d0XDpqr348PI7YEXumRthXm2Yc6F7qE0S3w6twO5Ug0TmFDpRnrtR04pjtPy7I > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 47,9402903426262 ; 1,28606708760987 ; 36,2766637172266 ; 47,9400403426262 ; 47,9405403426262 ; 9,3 ; -6,5 ; -3,1 ; -7,5 ; -8 ; -6,1 ; 0,91 ; FutureDE1976 ; ffd8Ac9CE9ccbE2dFe1FFfa04c6B35D4b4BB0F1B4b3cFc66af0cb78eeCDABA57 ; < 4F5ICm27O60CaJ6195YNbYnPwh6NP6gKe6o66HMqt9PbAMfjkhc74pRJmXt8jg2c > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 48,5228945842474 ; 1,36599914885628 ; 34,5219068949454 ; 48,5226445842474 ; 48,5231445842474 ; -2,1 ; 1,3 ; 9,5 ; 3,4 ; 1,2 ; -3 ; -0,2 ; FutureFE2076 ; 1AcabABABA3ACbE8Ee67c573ABAAc19AfAeb28A4e5E27c6ff0fc8cf7BEEe3C11 ; < f1JnAZgyMb65qk3Cpa38sNW13yNJD38eMY83qzr6Fswu8AmKRinhPk1TIdVvKXZf > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 49,189063953024 ; 1,46838351706136 ; 32,4987851480824 ; 49,188813953024 ; 49,189313953024 ; 7,5 ; 3,2 ; 5,1 ; -1,1 ; -0,6 ; -9,5 ; -0,09 ; FutureAP2088 ; faaFEafdaBE98D7DDEDF8BCBDeAed6CEEBdabBf26FB84D6af0Ed13ebfa28fF2a ; < 34PI7F081grEcumGyFwi8mnCtYY0op0m9uSjW9jEC26Ezkq9riEuW2LR3pMVtKTH > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 49,8792802202895 ; 1,59760105735729 ; 30,2213615474181 ; 49,8790302202895 ; 49,8795302202895 ; -1 ; 9,1 ; 5,2 ; -4,4 ; 2,7 ; 7,2 ; 0,25 ; FutureJU2031 ; ce78e3Eed2EB0dcEB0f1FdCbeBc1e8fdc3BfCbEb7cA5cAee8bfbc2BebdD3Bd2F ; < vTesYuY7PyIW8aVMelxAvpel3nbbv1Yi7RuI8suu0Ho2aG2cT1NwXCf52u04YQ02 > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 50,5763634795173 ; 1,7592523917277 ; 27,7487819924736 ; 50,5761134795173 ; 50,5766134795173 ; 7,3 ; 4,3 ; 5,5 ; 4,1 ; 4,4 ; -5,2 ; 0,15 ; FutureAU2048 ; E17a4d3dff8Ca49fcBadE521E0aeeEEfE9A6BeAF68aBBdBed4E19bAeFFd6bfDd ; < nQ5P45F13A0M2c4x77UwDOw7YXI49xrR3XK9f80Him9Kv95IMq4pLrVTd9Gg4aEM > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 51,360721530577 ; 1,96085870954699 ; 25,1929741702005 ; 51,360471530577 ; 51,360971530577 ; -6,3 ; -3,3 ; -5,3 ; 9,7 ; 8,4 ; 8,9 ; 0,23 ; FutureOC2031 ; C49BC0C4dC7c9b125a00DF37aaf83fba50d43aBb0Bc7c9FEB69d85b51EeEdd7F ; < CKg5w7f9EO4mjy5m0c2lxKLT3nMg6u8H71yWGBXVER5QzyX9x9cBX02RTZWu1k7Q > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 52,088035377962 ; 2,21214586603078 ; 22,5463837072475 ; 52,087785377962 ; 52,088285377962 ; 0,7 ; 9,6 ; -9,2 ; -6,6 ; 7,5 ; 5,5 ; 0,94 ; FutureDE2088 ; ebF8fF3d2cC20C7A3aCb8Ebb7F2D78CEFDdbAbAdFFdcfAE8C1d7eCDe9a0D0D5C ; < nmBxXJWxH2a13c2kDM942IS2U90S9R9vGvxXVu8H9R78dyZt2lF5Pg35SN0zfZnM > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 52,8654573668434 ; 2,52591962372554 ; 19,929192231727 ; 52,8652073668434 ; 52,8657073668434 ; 1,7 ; -1,6 ; 0,5 ; -6,9 ; -6,6 ; 7,9 ; 0,12 ; FutureFE2175 ; Ac8Fb0E9caEDf3D420fce4DCD2EB12d0b61F5AfC9efACF365ea7A809ccC2FEc6 ; < W00690c9Z56aO6uJpQW2wUFxYyeM6uZkQ5I0w7Lxr3rji20rGhme91A16lp5eGUp > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 53,7722233355309 ; 2,91910679827428 ; 17,4207797286896 ; 53,7719733355309 ; 53,7724733355309 ; -7,8 ; -2,1 ; 8,7 ; 0,1 ; -4,4 ; 7,9 ; 0,14 ; FutureAP2158 ; 7Da181CCaAeAaebCEF4aDAf59Ceec18a6ce2C0DA08607BC6C6EBaEBCFbd9560c ; < mitI41Ne3Xi98871Tz3v9b3WhLsO481DCF37GZUJ3ErOKl94Wh0gbmHkXNH68N5M > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 54,6266189290596 ; 3,4140779814911 ; 15,0004016385125 ; 54,6263689290596 ; 54,6268689290596 ; -6,8 ; 4,3 ; -5,6 ; 5 ; 0,2 ; 0,1 ; 0,63 ; FutureJU2141 ; 8f37bffCeFD2cE912a88d789e6aDD6ecbEbfB2cc06AA0B9eCadAd0Bfa73E3b2F ; < 6vQ298I2hAU0et6SO1id26BTr7ed1z54QYrnJnCK1F0w02GQMM3rtO05ntoJ8mcq > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 55,4405143473106 ; 4,04175289739112 ; 12,7169480061724 ; 55,4402643473106 ; 55,4407643473106 ; 2,4 ; 0,1 ; -4,4 ; 4,5 ; -4 ; 1,3 ; 0,23 ; FutureAU2124 ; 7cfb143456409c57290B7B0b9e007CdDCdfaD8E8F6cBFb879Eeeee72cbd5FaF2 ; < 3uWAxI20GAqH7c0DvZq8B790pdqR2wu9D07DAF7L9Abwbtw7yYT817Y4yC1Lx6c4 > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 56,4031083676518 ; 4,84242213335702 ; 10,647705799773 ; 56,4028583676518 ; 56,4033583676518 ; 6 ; -1,7 ; -8,5 ; 5,7 ; -4,7 ; 1,4 ; -0,9 ; FutureOC2116 ; 896adA09E4dC6406C4Ed233BaDdf6DF3D30E8AEACEfa3aCf1adb4DCAAbbbadbF ; < 738fE7u9wwcEm7W9S9NyA9g1XCNrxQ64kqD4PUym0PNMSf46jggsL549Qm4abMAy > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 57,5092633922582 ; 5,87290920690256 ; 8,79229566918323 ; 57,5090133922582 ; 57,5095133922582 ; 9,1 ; -4,6 ; -8,1 ; 5,7 ; -8,4 ; 6,4 ; -0,74 ; FutureDE2151 ; EF2BAe32BBDFEd7142daBcCf8c31d185fCB5A20ea28F6FcFABeb36Bb2e4177bC ; < 08fpjf8KmwR57S10pa8roMx1Qrv9v703TYClvGG6vETpu4mnUAPiDeM0Ub832c3Q > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 58,5543156365361 ; 7,20899488896988 ; 7,12239660845468 ; 58,5540656365361 ; 58,5545656365361 ; 0,7 ; -2,3 ; -9 ; -4,2 ; -7,5 ; -8,8 ; -0,13 ; FutureFE2249 ; Eb2e2DbDBc2F1cf50aBBcbF9C4A6CfFafFd9675EADc2ceb8eaCDE2cCcbeDe5fF ; < X6L0JykH355qsdpjzRerO1UsNr2ginrg11mX1iU2prAHuB855OX7D36dxuk654cA > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 59,4376633771434 ; 8,95530811874447 ; 5,63714331087433 ; 59,4374133771434 ; 59,4379133771434 ; -9,6 ; -6,5 ; -7,1 ; -0,8 ; 1,9 ; 6,8 ; -0,26 ; FutureAP2268 ; fbBaC6E0CdfB37aEc5a7acCAFd65FEbEAfb3E1FBEc6EcbfDB3a1adeceCEBDECB ; < 2JNYz68q3E0c996DiN2GIQ4pf4xa0h14cndNfrJnwJjdOZp10dsZJw0W98T21578 > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 60,655856332567 ; 11,2603814837049 ; 4,38666087115637 ; 60,655606332567 ; 60,656106332567 ; 9 ; -7,7 ; 5,3 ; -4,3 ; -7,9 ; 9,3 ; -0,74 ; FutureJU2219 ; 4F0aA8fF7CfB9Dbc73fe4Fafb71DcAaaB9adC4EAABbFEef1fAebb926DCfeE5CE ; < MOYB95Q2t5p9cVu1BV06cUerB5WA4do57T8Q59exNa68iPvaC1OINZeaNqr8YGod > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 61,626383455219 ; 14,3305096237484 ; 3,30036230903418 ; 61,626133455219 ; 61,626633455219 ; -5,6 ; -0,1 ; 6,2 ; -4,9 ; 1,2 ; 4,7 ; -0,34 ; FutureAU2266 ; eEaEC2ff3761b17eD5B0Fa5D2eCfbcFAabA60d4A710E795DfbaBEBb541Bf7ACA ; < Fs0qO1yxrfEm36FkH1anu9s49e7CG56TVSn395zXqNMv4YtaBRP6MYASjnJJ81LP > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 63,052746256575 ; 18,4589404927482 ; 2,41583777689439 ; 63,052496256575 ; 63,052996256575 ; 4,3 ; 3,5 ; 8,6 ; -8,5 ; -0,4 ; -9,2 ; 0,27 ; FutureOC2223 ; abBf1EDfb8a84C3bAfEdfFd71d4C4E932B1caab3d1D3fe8126F6Eadf3BdF7Fef ; < mKCnm46QDZay8AZs8i6M91264c735tD0B6e609o7abHns8IR8mGSfsN4z5F091F8 > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 64,3656892307944 ; 24,063537883637 ; 1,67482236161801 ; 64,3654392307944 ; 64,3659392307944 ; -2,5 ; 0,8 ; 1,2 ; -6,4 ; 2,7 ; 7,5 ; -0,83 ; FutureDE2236 ; 23Cf8DFFeEE879cF104dD4221D5D39fc9b93bf821D7CCdDB9b9cf64Dc1EB0ceA ; < hV4s3E89Z4V74sl4CvtjC6d9EG2UO9f5v1j6mCpG45EX3LJ4992nMRy12q927tnI > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 65,6048616975017 ; 31,7506052749813 ; 1,06625546597679 ; 65,6046116975017 ; 65,6051116975016 ; -8,8 ; -5,4 ; -2,8 ; 9,6 ; -4,6 ; 5,8 ; 0,08 ; FutureFE2310 ; EE1efDc61FBF3dD0DE6b04FDBb5CDaC525ebd8bC0477e5B62aDAbBaBAdcd2A4F ; < G82TB6165xDa1CLgtaL6BCn1Ch5g4UI3a57JoUxmJl8sIG39sB1DxzJ836G8YVSU > > // < CALLS ; 7Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 29,7188316885717 ; quote ; 75,8293220185812 ; 74,3127355782095 ; 0,0204081632653061 ; -5,9 ; 68,6255364268159 ; 83,0331076103464 ; -4,1 ; edCfcAbDFcFA2D9d33Ac9bDfD4Ccc7bfb7B6cF4ecfD8f8D8EDC72B0EdcAcFd3f ; < W2I2upm9TG9X7efPgwQFWg8zOYW2wT17KT4HaD9amhcI33Few5g8a6AL1FLlICuq > > // < CALLS 32,6907148574289 ; quote ; 73,7322794357713 ; 72,2576338470558 ; 0,0204081632653061 ; 3,8 ; 66,727712889373 ; 80,7368459821695 ; 8,5 ; 71c432C96cAfCddF53d17d4fcaABcfdbbadACdDdCE1B7aff7d3cbfdDeF3FDDab ; < je6fO0O4rylBwBR3TzZ6rj4Oo9c2aTP5O4v0wk0xhVd90RkK3fYI6qoK0Ta2T3x4 > > // < CALLS 35,6625980262861 ; quote ; 71,703437256091 ; 70,2693685109692 ; 0,0204081632653061 ; 5,1 ; 64,8916107167623 ; 78,5152637954196 ; -1 ; BF3bbEdaad23e27fBDBCEEcBDc6fCD2Cb9FcBCCbadf9EfAcdCcd37eBdaCecCdC ; < Xv6G4cefL0oDv79Ii1z1n5SMFmno60563M4qnLbU61nVMIeT8vp3fE98Y5zZ6EaP > > // < CALLS 38,6344811951432 ; quote ; 69,7418885557811 ; 68,3470507846655 ; 0,0204081632653061 ; 2,9 ; 63,1164091429819 ; 76,3673679685803 ; 5,2 ; D2eCaffEdb4Bd219fa0AAD30545A5d3C33d95CCaae1c6c7e8F37D5Fc09CFBBD6 ; < Y6JS2qZ1ZWe3tgjiTd75pbp38tfOOR8Gb4acm6FPu28xn1RcjTA3kUPQ0Haw4WuZ > > // < CALLS 41,6063643640004 ; quote ; 67,8463197897546 ; 66,4893933939595 ; 0,0204081632653061 ; 2,2 ; 61,400919409728 ; 74,2917201697813 ; 2,8 ; C4BdB5E1ADBF3EcF0cAE5aFCFdacbFBbDCfb3ca89fFF9A47aAb2B3Acb0c7fFcF ; < nbDKQU85dWX8gaSLp6UQuycOAzS9KM3eafoI1cOUK89yjk1X38npyg6pPNk16810 > > // < CALLS 44,5782475328576 ; quote ; 66,015129686744 ; 64,6948270930091 ; 0,0204081632653061 ; 5,2 ; 59,7436923665033 ; 72,2865670069847 ; 1,6 ; DD58D4E53FBB86a2Fb8Eea4f134abFbCCadcDdFA8aa2AedCDAcaDEf80bEeec2c ; < 04an88P0eylkJwMzmukC3MGABIW7x0mLC4d5iPpc36o3yc0vm3NSptEQr2UPm6AT > > // < CALLS 47,5501307017148 ; quote ; 64,2465199791314 ; 62,9615895795487 ; 0,0204081632653061 ; 3,8 ; 58,1431005811139 ; 70,3499393771488 ; 5,2 ; EfaDdEfbbdfD9fDD07df6b6FfeEa1AEcBbFE843Bc8bD9fd754E02AdcbE5eb1af ; < 9Fl5J8sO61O2f13XRfShV103E7UA2Lp0KR3kc1UqY8121a9SmP52hd52mL8nH55q > > // < CALLS 50,5220138705719 ; quote ; 62,5385644631442 ; 61,2877931738814 ; 0,0204081632653061 ; -6,7 ; 56,5974008391455 ; 68,4797280871429 ; 8,3 ; bB70DEFdddCec98CacEdf7EfF76Eb8b051dCec77E04cC823FFCBeCd4a2A0cDBa ; < g6Xog1J5l9bLfy183T3h63ht7254FZQbb0l825o1fSKKi4qlAAY2d07897645uvy > > // < CALLS 53,4938970394291 ; quote ; 60,889261411245 ; 59,6714761830201 ; 0,0204081632653061 ; -8,8 ; 55,1047815771767 ; 66,6737412453133 ; -2,5 ; BfdadB5087B5A79CDEdc9Fc84Ec8e264EB72D5EBadBFcFEDBbB1cfF410AECEcC ; < hOVpyXtmz45fsMr2p6HSv149yZq83G9FgZX435JNc0E235FSI7CgNg404Z686kLR > > // < CALLS 56,4657802082863 ; quote ; 59,2965731937061 ; 58,1106417298319 ; 0,0204081632653061 ; 7,5 ; 53,663398740304 ; 64,9297476471081 ; 5,2 ; bFc2D8dcC533aA96A2e4afdaDBF226feaD0BfC5Da8BBCD4AB1AcCCe41E2CBe77 ; < 68WhY6V9ghm584WJSORtVo1ag4s3XI88k70tX56Ue8m3vaXh6JqE2Mj968TMhRkq > > // < CALLS 59,4376633771434 ; quote ; 57,7584560648362 ; 56,6032869435395 ; 0,0204081632653061 ; -4,1 ; 52,2714027386768 ; 63,2455093909956 ; -4,2 ; CcFAF926Eb75131deacCd6be223BeC9cACC1D4fb8edbbe856E9fDeDF0d13CFD3 ; < 8jUMYO1C79QtF39tpfdtA262fgqu4nv1d6Q31NARkA67O9135gSjq3Iq7uIRzrpJ > > // < CALLS 62,4095465460006 ; quote ; 56,2728823786395 ; 55,1474247310667 ; 0,0204081632653061 ; -5,5 ; 50,9269585526687 ; 61,6188062046102 ; -5,6 ; E22bdA02b1F0F81bBbE194AcFFf4DFdb78f6FC230Ecc5Baea46aAdEdE0Be2619 ; < 684UP3OW87140TGy91780kChAo8TR507iVazD62181yv1izw0FGy6Y3x6JgJcaRL > > // < CALLS 65,3814297148578 ; quote ; 54,8378569718335 ; 53,7410998323968 ; 0,0204081632653061 ; 2,5 ; 49,6282605595093 ; 60,0474533841577 ; -9,9 ; ab41dddCAC2c521E7CEEfb4bCD5f3AC2Cbc0Bb2AdAddbeeea2cBb3Fed209ebEc ; < TIq47bK6Dmf5nr3w7iXMczoqdkWO50OMC8jyxHFD7seXlj30XcIoI57d57bc1Ba5 > > // < CALLS 68,353312883715 ; quote ; 53,4514290506786 ; 52,3824004696651 ; 0,0204081632653061 ; 3,3 ; 48,3735432908642 ; 58,5293148104931 ; 3,5 ; 92476BBbf84FaAC8ace0Ed0EEE7fFaef1EC45bF05BfCCCb2fa69E4BaFBdbBEbE ; < s4VPz1VP3vwlGdIFlBP7NvwJic9Cc4S9gNtpFU58McfqgyWql3p1DM445WCwEvjX > > // < CALLS 71,3251960525721 ; quote ; 52,1117006118506 ; 51,0694665996136 ; 0,0204081632653061 ; 3,1 ; 47,1610890537248 ; 57,0623121699764 ; 4,9 ; ea2add1F4e8Dce0dee17BDFBa0Ac09ABba3AD35dE8Dc4fDBe6ffFe51afBaaC2B ; < 2c9fuZZ0kCl7Fz4uk64J1T0xz3Z8esENK0pLLe7qQEUN3P4W251DBz1hZn0Grq65 > > // < CALLS 74,2970792214293 ; quote ; 50,816832193542 ; 49,8004955496712 ; 0,0204081632653061 ; -9,1 ; 45,9892331351556 ; 55,6444312519285 ; 5,2 ; BA73ee18ABC9C3fd8aFa09F4dDEe5FCfFb8a1dFB60AE25A721F9D8cAfDc8D1F8 ; < QDmD3234C1MsWo7x76igZlrM01cblIH1HkKyUXvCXczhLAPwx8kel3x6VoqUHDaZ > > // < CALLS 77,2689623902865 ; quote ; 49,5650465736045 ; 48,5737456421324 ; 0,0204081632653061 ; -9,1 ; 44,856367149112 ; 54,2737259980969 ; 9,2 ; cfB710Ab8fBC7DDcfE6bfcebcaf8586fbdc2aaee9aeda43aEAFA4F6Abb0e4E1A ; < z0qUAX5k3rxIqB2YVDUktD7VoJGTjtVcRsW2j6W22QMN2M2rZ4DbVu5w36VYAS3b > > // < CALLS 80,2408455591437 ; quote ; 48,354630893647 ; 47,387538275774 ; 0,0204081632653061 ; -0,9 ; 43,7609409587505 ; 52,9483208285434 ; -6,4 ; 8Fa4dCC91aeC9fAaab3ae27CC8f00D9AAfcaFB6B117Fd2bC8DdeFfEE73f14159 ; < 956ojBetYfFyS40ivv187wC74St4z882JA88E0579Iw9vZaRz54nxF09BF4Ry50w > > // < CALLS 83,2127287280008 ; quote ; 47,1839375816582 ; 46,240258830025 ; 0,0204081632653061 ; 0,8 ; 42,7014635114007 ; 51,6664116519157 ; -1,7 ; B8c1C7E5d322bEdAaF4d4eE26c6abF736c1b9CCB70Ccf9BabAB3E3CcaEbdAffa ; < 341jh3u3A8xhcKMbxr1ar54X3h545nz1e2UPn0Eul5kSnp92XXW20jNtl6ZIrAGP > > // < CALLS 86,184611896858 ; quote ; 46,0513843634353 ; 45,1303566761666 ; 0,0204081632653061 ; -6,5 ; 41,6765028489089 ; 50,4262658779616 ; 4,5 ; 1d177395DDca5ADB0bdfCCafEdde0a92B9caeAaEAEbc262894DCAac5bFef8Dcd ; < F39CBmihM5Jxgc80ditYp6N3ti6LZ7XCpH6rrh4yiSO62ZvJnpPkESKnhzAqZgYx > > // < CALLS 89,1564950657152 ; quote ; 44,9554535892403 ; 44,0563445174555 ; 0,0204081632653061 ; -1,4 ; 40,6846854982624 ; 49,2262216802181 ; -2,5 ; 8293E3dd0bBfCcaBCadAcdcbF8C698E25Aef6CfEC6d0fee24cddC3dFbccF4B0C ; < 0C88c4BteE1a53QkbZTTJBi4N9lWG1i9Y6cS05xqBTBBkw3lG8SIFBbE8P1w6u7z > > // // < PUTS ; 7Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 29,7188316885717 ; quote ; 1,54299840391275 ; 1,51213843583449 ; 0,0204081632653061 ; -6,7 ; 1,39641355554104 ; 1,68958325228446 ; -2 ; 4Af25CA39e4edE739feb1aafdCD44BbBb0BBDd17DAd0f47b43A8ADEe90aBddDD ; < M3LDmt42kZjy3Fn6KYN568i28knNn9siQhtRJngq5xf4YdEW7ZM3Ah3JJ1D8WJRO > > // < PUTS 32,6907148574289 ; quote ; 2,017323459636 ; 1,97697699044328 ; 0,0204081632653061 ; 1,5 ; 1,82567773097058 ; 2,20896918830142 ; -0,8 ; efCc0FBEbbdc17aA37affFEEbCACAEeCfef279DcDA2D559Dfd3C5d7EE9CC4000 ; < H2uY3pUwft8WgrKV1Hc701Fvqv76bk8TYCR4i617owI4tO6oG9Z61LEiezf7W2D8 > > // < PUTS 35,6625980262861 ; quote ; 2,5598489184889 ; 2,50865194011912 ; 0,0204081632653061 ; -4,3 ; 2,31666327123245 ; 2,80303456574534 ; 4,8 ; 9Aa8c7EaBcbEdFcbbB3a551FaDfBEEe10B1Aaae5e6Ec8cC506cD8fB8fD7BABe5 ; < q3n0jEc0dF8cTOIUTyJb7xy8Z116I2n6990ukrYFUf8x48z8oRud3f4Uq6oaBSHG > > // < PUTS 38,6344811951432 ; quote ; 3,16966785671218 ; 3,10627449957794 ; 0,0204081632653061 ; 3,8 ; 2,86854941032452 ; 3,47078630309984 ; 4,6 ; ad1E54fbDD1BcaFB6ADbEEADfEcaFb3AE3f1a7Cab9BB72EecdBCCEaEf4254BAE ; < Ib6iuk689ERd2OVG3Z69x0n2Ww4JO613hQZ5177S1X0NC6IAJf4qH8x52IQUv7a7 > > // < PUTS 41,6063643640004 ; quote ; 3,84546672921888 ; 3,76855739463451 ; 0,0204081632653061 ; 1,3 ; 3,48014738994309 ; 4,21078606849468 ; 0,7 ; cF0CfCfFC21CFf7277e70028daFDcBcabB8EECc300cCdbFceAd9FE4CDEdcC9C2 ; < 4zbEuU9UeQKweDy65LC8CfNl2XCF4Jr0Dd81EjABe3J9MpeOduyBT3449F2Yr2DP > > // < PUTS 44,5782475328576 ; quote ; 4,5856442647414 ; 4,49393137944658 ; 0,0204081632653061 ; 3,5 ; 4,15000805959097 ; 5,02128046989184 ; 9,6 ; B7a6ec3C06298ACBF3ec3aFbc9dCAcBCDFcdD8cBc6cdEfb39a7C70Fb8CdC5C9A ; < dvps11U9C1p30i4K8pltI6nakKww9M2tVUMcE8V8FRvw766dvb7rZCSx6fxZ0Po2 > > // < PUTS 47,5501307017148 ; quote ; 5,38840219566191 ; 5,28063415174867 ; 0,0204081632653061 ; 6,8 ; 4,87650398707403 ; 5,90030040424979 ; 3,9 ; 105ddEf1ca2a5D3Fbd65E66Dcf4AbA9af8418FEcb834bccdbAaa5B1abbbC3C18 ; < 8gHU17RWGRj59ckx12HIIKB27pE5D9h9IzJWJeD24d1vsRuKXv4qQCdTAo450VQW > > // < PUTS 50,5220138705719 ; quote ; 6,25181431820796 ; 6,1267780318438 ; 0,0204081632653061 ; -9,9 ; 5,65789195797821 ; 6,84573667843772 ; -1,1 ; bb8DfDBB5CE22DbdE8EbED3cb6EaCf0f095AfB44fc1A258FC4B9ab9B29ABBe3E ; < qWqP3k7J232soGy476g5Z8C0g2XkiBNg174f9T6IySWLlSae4V7QhB4Ez72lDI8u > > // < PUTS 53,4938970394291 ; quote ; 7,17387890484187 ; 7,03040132674503 ; 0,0204081632653061 ; -9,8 ; 6,49236040888189 ; 7,85539740080185 ; 5,8 ; E8a5FACaDf7f68bF0CAeaB4D1FC3bbC8e0bef2eaFEd01aBEDaCEA54fC4ECBFfB ; < QFpREM45PyMIl05jknUPejQbthg9b6zyqNo5M4LWRuWA515003P390ezJ5D06xKy > > // < PUTS 56,4657802082863 ; quote ; 8,15255832583608 ; 7,98950715931936 ; 0,0204081632653061 ; 6 ; 7,37806528488165 ; 8,92705136679051 ; -1,3 ; B6Af2b7b25aEAFFDFf4CbDAcAb9C48522BEbBE3bF5F4d0c0D8BCFa7bAc61BDff ; < NR3hJp3Zo9p56041G0ngoguMaVNwr9eArj16650F768JB5YSJ5ff38xxcYlj2359 > > // < PUTS 59,4376633771434 ; quote ; 9,18580883549939 ; 9,0020926587894 ; 0,0204081632653061 ; 3,7 ; 8,31315699612695 ; 10,0584606748718 ; -4,3 ; DB59A5a461cC9bc94F67fbBDaE11AB61a9aF0e37DeaCF5E7aC8eB0FAD3d464BA ; < Ti98m83210lTt8B66NF6dheu52TWdgBU1HyAo1v6yBhHAs8Z0iqh9V3Fap18v32O > > // < PUTS 62,4095465460006 ; quote ; 10,2716027878358 ; 10,0661707320791 ; 0,0204081632653061 ; -4,7 ; 9,29580052299143 ; 11,2474050526802 ; -2,8 ; 80aEdf95FcDB6AE9EC0ce3E0e1b6fDFF85Dd5B2cC9E2De0B7CAF2eaae68AdA7B ; < 54ICxQt0qC57VLYedfjVwKtk0aBFy76FcF2Ee8Ki2YZggmo278p352w3nt4VjQk6 > > // < PUTS 65,3814297148578 ; quote ; 11,407945019563 ; 11,1797861191718 ; 0,0204081632653061 ; 6,4 ; 10,3241902427045 ; 12,4916997964215 ; 0,7 ; 922DBCEEF2bfdACEF12aeaDaDa903CfC5D12b4fdF82ED44Aa00041FED9cBaFEe ; < Uj1P26246zg5yNq2Z1pg213U8LbYfe307DLE6yfTPE2ktLM8D20YNB8gA51Z0522 > > // < PUTS 68,353312883715 ; quote ; 12,5928847369413 ; 12,3410270422025 ; 0,0204081632653061 ; 8 ; 11,3965606869319 ; 13,7892087869507 ; 9,6 ; dFFC1FfEdBFB3ad4e0CcEcadF15686Fd7D2CFa01Fc1ebABABfFCcad2fffDfCd4 ; < upEDa08UCAfRxkC33CogLcsY81IMOwx0cT7bXQGuPX782n22qRlJQ0D78NeRAE89 > > // < PUTS 71,3251960525721 ; quote ; 13,8245239366464 ; 13,5480334579135 ; 0,0204081632653061 ; 4,9 ; 12,511194162665 ; 15,1378537106279 ; 5,2 ; 7C4dF9afD7fEf0C431eFB5EBbaC7e380CF4C09D7D09Ad4B2bCcD5CCEa5b451E3 ; < AuV44s6qG68M9xO8ZU96PZG0A6u0unZhJ7FnVpT3bhq2iq6JvcIXpo94835rlNdn > > // < PUTS 74,2970792214293 ; quote ; 15,101023156871 ; 14,7990026937336 ; 0,0204081632653061 ; -6,5 ; 13,6664259569683 ; 16,5356203567738 ; 8 ; bB88Fb6eEcbCaA7Be084AB79CbdACFfC3FCfeDFd1b19E596AcD8E75F3c54E7AC ; < OV28CgWg8P4TToqqN5emj44w1LLY4doV2Sr654Nt16sFy054EP40tqdwoM0iUI5S > > // < PUTS 77,2689623902865 ; quote ; 16,4206051754666 ; 16,0921930719573 ; 0,0204081632653061 ; -4,9 ; 14,8606476837973 ; 17,9805626671359 ; 7,8 ; 5ee7c8DC4F0E75CcEeDff8Ca8abD8aD9AC0ADd0eBB4CbdEcdFbEaE7BceC8fFcB ; < fmt17OlBE6s92Lv8OrxpPFQPQh1Aum3rTmom6B698xdHRuI9JIG8912D4cBziXpY > > // < PUTS 80,2408455591437 ; quote ; 17,7815571340423 ; 17,4259259913614 ; 0,0204081632653061 ; -7,4 ; 16,0923092063083 ; 19,4708050617763 ; 5,8 ; C2EdDbbd3D8d630D41fFcB04EfCC9B13CD60e3c1afbfFE8ABf88730BAcbBBDcE ; < ENv4yb177Micvg54uORJ5Y779j1XxI2si1OrP4524671yZhx9U19m1Wm9QXP2Mky > > // < PUTS 83,2127287280008 ; quote ; 19,1822314605867 ; 18,7985868313749 ; 0,0204081632653061 ; 3,9 ; 17,3599194718309 ; 21,0045434493424 ; 4,3 ; fBdC5aD4ddcbE1Fe9EdACDD9cC6D6EEabccd50d1eC1acCEcBEbCc64dcD283fcc ; < IXj4S1Px9R97CXa0J1k2X8gT8So9lW2ydTn7J4AfGO0c12Q090fK6M0x25WTLy1i > > // < PUTS 86,184611896858 ; quote ; 20,6210458808969 ; 20,208624963279 ; 0,0204081632653061 ; 8,7 ; 18,6620465222117 ; 22,5800452395821 ; 8,8 ; 4ccA73BFdcFBDcad4eDCBBC6d25ecfCC6ea3C88CBebf99EdfcAA6Ab1DDeFce7A ; < m6H4DFV1SRwkuxxZtUd4c62e2kTUS8oCxN3SCTnPfOyUL9Vmu6v07c4JU08dSmBE > > // < PUTS 89,1564950657152 ; quote ; 22,096482745235 ; 21,6545530903303 ; 0,0204081632653061 ; 2,6 ; 19,9973168844377 ; 24,1956486060324 ; -4,9 ; D5EadAC809BbbB2C90F6cbFFFB8E4D2DFbAd72dD91482AcFF8cfdcfDDAADaafC ; < SsvC9W1YpcPi5d9UPItJ06ZHG0kH0Zx9gpYtCw044m7c5rkr4h3zoe9BH4U5W1A6 > > // Futures_Teploseti_LLC // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 25,994915 ; 1,14 ; 21,8025570175439 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; a6F803Dd23bDAE78dccAd3aA73eC8Ccc8A68A8fd2c7EBB9CA56D68bfDEcbB2dd ; < wg3lWlODG00cay8bxTw951Afy49NApOW3ovKQYF9lp9RvQgw27Cm5L1t8c88Ga9c > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 25,995648944215 ; 1,14003648 ; 21,802471149182 ; 25,995398944215 ; 25,995898944215 ; -0,3 ; -7,5 ; 8,9 ; -3,9 ; -6 ; 2,7 ; -0,34 ; Future47AP19 ; 7938bc5D4ADC23df07A47ac60FDcF15da521bbd2A96DD52D8eA6fFDD6210BEeC ; < Dr8zvEBe73ubUs3qBcyOcxE6FG546OFH2KdM3DAys101O59dgKK67423eitwEn56 > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 26,2753419638376 ; 1,15382109326135 ; 21,7724576342843 ; 26,2750919638376 ; 26,2755919638376 ; -0,8 ; 7,9 ; -3,8 ; 9,1 ; -4,8 ; 1,3 ; -0,07 ; FutureJU1969 ; f4cc9A0a7CC61ABdbC99BbB1BbB2AFfAb2ed1F4aA94be4Db931BaEcFDaD8cAf1 ; < 4S14vTq52ky39Com1xaLZI21E6v5TvGb2x2OP71GH793cMiK18T3ry2d7kU9IEf2 > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 26,5796677629975 ; 1,1818956457141 ; 21,4890140338389 ; 26,5794177629975 ; 26,5799177629975 ; -5 ; 7,1 ; -3,4 ; -8,1 ; -8 ; 5,9 ; 0,51 ; FutureAU1924 ; 74eCDaeBF7CD3aAAb93C2f6b7d14A2BCCdAAc9C8a9cB111fa3cAC3F6a2cb454B ; < 6Rkzj0RoKgzYmUCxZ8e5s1nbjtwe1DGw2q8oQyPkh3YGEd49U71jC2Y205z6sKgv > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 26,8908505283184 ; 1,22552067586766 ; 20,9423882908216 ; 26,8906005283184 ; 26,8911005283184 ; -1,1 ; 3,1 ; 6 ; 2,7 ; 9,4 ; -7,6 ; -0,8 ; FutureOC1929 ; 7cBf9E9b865de6b20bD45fe5ed55C2BCd9FaDcBA0BfCd1d3bEF66Fd7d494C7Aa ; < rBi5RNA4iQY0b47K0aX22PX87X1tmV9fBXt2AXX2kdslV015W3GRlJwsZxkA25M6 > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 27,236863510922 ; 1,28597434253225 ; 20,1799431840056 ; 27,236613510922 ; 27,237113510922 ; 0,5 ; 9,1 ; -3,4 ; -0,7 ; 4,8 ; 4,3 ; -0,87 ; FutureDE1986 ; dfdCFEda0CbAb2DebCa3c9Ad5cA72C8b1C9DCBb21B8aDcBe0B46DDFEbFd24c8d ; < 4U3Wg0awLQrv1Yv3W8AWbNbq4qr305s93WjEQbAI7YVXVAl06GvGJ3bAVI539rw0 > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 27,564312651388 ; 1,36580804930367 ; 19,181688536278 ; 27,564062651388 ; 27,564562651388 ; -2,3 ; 8,9 ; 0,5 ; -7,4 ; 3,8 ; 2,7 ; 0,37 ; FutureFE2083 ; DD8aAD9BcafEFCEdD9CCeCB4fdDD31C7dd0CdEe3b1ddf8F1efd2d8AEC7aDfDDF ; < ge89HqeF07O9iih1N5Jop8vXkFVetEQr9Cdna094LXOuWkAxDfBJHDborrSC8gAl > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 27,94286995044 ; 1,46815624128629 ; 18,0326268857861 ; 27,94261995044 ; 27,94311995044 ; -3,9 ; 3 ; -3,8 ; 4,7 ; -7 ; -6,7 ; 0,42 ; FutureAP2091 ; bDBDbECbfECc409A08840E0F321CCFEb1A5cdfbFb1Bc6dB449C2ffE39eFbbf8E ; < t6s1QPn4FaHleVNam4Ik9Q06Rc82HGW29m47m3Vpj384V3y36Y42RNS7d3aOG7uN > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 28,3151312833803 ; 1,59746536122074 ; 16,7250361546135 ; 28,3148812833803 ; 28,3153812833803 ; -9,1 ; 1,4 ; 0,3 ; 1,8 ; -6,7 ; 8,5 ; 0,03 ; FutureJU2069 ; aeef3AE57eEEC175fd7fC775ccE14f6bF4Fdeac8DddadaDaaebBC1C2fB3ba17A ; < tT20E3Jsn3soyhuFWpvUvNl5UxvJYVVq3ZH2z0UoWLzbhIA07isK7Mod11Wa2mrA > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 28,7253444532562 ; 1,75923236003563 ; 15,3283401930342 ; 28,7250944532562 ; 28,7255944532562 ; -8,4 ; 0,4 ; -4,6 ; -6,3 ; -7,1 ; 9 ; 0,06 ; FutureAU2028 ; A0D73AeCDE22dca02c4f6c3e92e4FBEbb81BaC42EDCF8F9B04Bc4eC36Ad93eC0 ; < f3o8PU3UE54JbN6O17gQHdo30rBw8VYtJNWt79u6Vy6Vk91K3gqt18GxSBPX0uB1 > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 29,1618824142211 ; 1,96077129067131 ; 13,8726588118479 ; 29,1616324142211 ; 29,1621324142211 ; -1,7 ; 0,9 ; -4,2 ; -1,1 ; 4,1 ; 0,6 ; 0,97 ; FutureOC2044 ; B1aDECfB0edAbd06331bCCdBEB87BD9abABe2fBcE473fcada5FBfdEF7bF7bAaB ; < 2B0SIT9oUT9FhrzmBJLtv59DKWuujxT2JjHO9JJNxAwJ49O2VzgLK7aqdG4B5XXX > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 29,6174705191772 ; 2,21212567513903 ; 12,3886925376949 ; 29,6172205191772 ; 29,6177205191772 ; -4,7 ; -8,4 ; 5,6 ; -8,4 ; -9,3 ; 6,9 ; -0,77 ; FutureDE2026 ; 4cfc1CfAe1E7D4C22aab29BAFf86a8AfdB6A795dfea5fbFE2add75d785bD5FC3 ; < d372vy9u2657OM3DMkEZnRyJwvI05JI5MzRH5ev4k49clGzf8ZP0A8FcxoZo0F3q > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 30,0268142636263 ; 2,52583462941153 ; 10,8878781350076 ; 30,0265642636263 ; 30,0270642636263 ; 3,4 ; -5,1 ; -5,5 ; 6,2 ; -9 ; -8,6 ; 0,34 ; FutureFE2174 ; 9ea7F967c9BCaaCCfAF3Aed3ab3ED6cC5FBCd7eBAbddd1CE335Ce9bbdEE2fcD6 ; < AUTcl1EY24LC8yVD192c5NRShpi537c4Exe2Z6y7GoR09510fH4focSFM241WwbX > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 30,5048040887795 ; 2,91893785029074 ; 9,45065213901046 ; 30,5045540887795 ; 30,5050540887795 ; 3,9 ; -4,6 ; 0,7 ; 1,7 ; 9,1 ; -7,2 ; 0,93 ; FutureAP2191 ; 23EFBf89f1F5cd0Eef6ae2f24fd307cEd30FBff1CA1b14eabb1BD02f8BcEAAF6 ; < h2q97g1T40au10L0e7724HTkHy6SVp68bxdEo3D3F1b5W5feY8L9mstWbDj56FXS > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 31,0329719390179 ; 3,41431822693473 ; 8,08906841026309 ; 31,0327219390179 ; 31,0332219390179 ; 5,4 ; 7,8 ; -5,8 ; -8,5 ; 6,5 ; 0,3 ; -0,99 ; FutureJU2161 ; 24519adaCCf46b61Fd2c4DDE638FBBEE2Df6dc4dECc17c9E7F8cAAd2488cABe6 ; < 0N241m86X0z9rg4nB4TzNy7YN434LQrub8klm0lh6F00yz1CW9Ibfe0cv0NXn204 > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 31,5484678916045 ; 4,04188025308742 ; 6,80539400381936 ; 31,5482178916045 ; 31,5487178916045 ; 8,9 ; 9,6 ; -6,5 ; 8 ; 6,8 ; -5,2 ; 0,16 ; FutureAU2142 ; 267fcD77cc4BE169d2e8c3dd3bBcFCdcCba9cbDC3C54BADB19Df56D351EBDBDF ; < 4pss5H4k83ofGVHdMvO8pWTmRn6M64qV9Z5lknL7644Dm8CzpIzSatRxYgc6y0di > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 32,0572505487755 ; 4,8432658796766 ; 5,6189326262873 ; 32,0570005487755 ; 32,0575005487755 ; -8,2 ; -6,4 ; 6,1 ; 6 ; -7,4 ; 3 ; 0,16 ; FutureOC2180 ; DB7bbAA1BcdD7CdfBF3aBAfeF95F5cDdC424eD7Ece3F77C684a91D0BD8dEB79E ; < FdH8x2bpv7y2wH5s0OyIgWjIk81opGBY3b990O58Fe4ya20WZIc7Xh9YOH9EP64H > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 32,6596697766435 ; 5,87329803803142 ; 4,56070363961816 ; 32,6594197766435 ; 32,6599197766435 ; 7,8 ; 9,8 ; 5,5 ; -9,4 ; -8,7 ; 9,1 ; -0,58 ; FutureDE2129 ; edFf2d2DEb46A15A55fACBd5fD3ECcA32F60E92bb0Cbc921Ffb8bC2c13CDf1Fe ; < hlz263b8bIvv45TwjEbzr6nA55Zmgss73D8Aljc2u4rCdD1DpLPe0S10wC9Xbpk8 > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 33,1598876010461 ; 7,20845609854301 ; 3,60013727596239 ; 33,1596376010461 ; 33,1601376010461 ; 3,1 ; 3,5 ; 3,3 ; 2,2 ; -0,9 ; -0,4 ; 0,88 ; FutureFE2276 ; 1d8afCfc4b8DCeaCf682F29dBEbB5C47C9dC5afb4BBEfBbEcdCe65e0dD9AE3d1 ; < Bb34vL80gJ7Q5bscVk15A8191UCm2xgDR7KWPia97D3P7YjpRFxM6HNt89z40G6L > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 33,8376937315093 ; 8,95461718588486 ; 2,77879847112253 ; 33,8374437315093 ; 33,8379437315093 ; 6,8 ; 5,6 ; -9,1 ; 9,4 ; -0,3 ; -3,4 ; 0,77 ; FutureAP2248 ; b9AFF8B7cCDA3cF3D9eff2fFa893cF6F5CE4d39DB4Fdddbd4CCfaFfbFe6FD129 ; < 3oGVRt4z7Pc4GM4ggU43NM3kJ0rvZxsrmwHR9TL88Lt6lq8CzSLBok5vsw88Q2yL > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 34,4805753685878 ; 11,2597813450131 ; 2,06227752671761 ; 34,4803253685878 ; 34,4808253685878 ; -6,7 ; 1,2 ; -2,4 ; -9,5 ; 7,4 ; -4,1 ; 0,25 ; FutureJU2252 ; bcC578CeF84eFAE6b6ccabADaEdFcDbF84D1d6B8dBB51AAaF4afafe6e01DCbDb ; < 7DvkRiy0okcLgE5858Fxt9qbwRWS5M0H7xjrS4K8P2ZHpcg0daCK3eyAL2Qr1h5K > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 35,0058940089548 ; 14,3293517656877 ; 1,44295028703099 ; 35,0056440089548 ; 35,0061440089548 ; 1,5 ; 5,4 ; 2,7 ; 0 ; 9,3 ; 5,8 ; 0,95 ; FutureAU2230 ; a6CACfEFbbFBAA706331C8C7815eB5a26b6bAD1cDaA8B8Fc1BbbbaFB63Ab3bAc ; < vp24Ij0qDI60t664429wyOh7kUi1di2Lp99E6a0144mFXQ84RSo88Tt195bdywT5 > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 35,8409622066643 ; 18,4577499874342 ; 0,941783924425475 ; 35,8407122066643 ; 35,8412122066643 ; -6,5 ; 8 ; 9,7 ; -2 ; -7,7 ; -8,2 ; 0,11 ; FutureOC2293 ; 0AEbfaeacC9C7ccDe81033Aa5cFabBCaDb4808DdEa1CEF74FfB6C68dCAFB5cbb ; < Ss6Sy8ahoIn6SR1sPTeak2o94jR39UCl7jqLKoLMd7691nQ0Pvx2h2u44D7UKf4h > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 36,5181543060978 ; 24,0642562142933 ; 0,517526824053979 ; 36,5179043060978 ; 36,5184043060978 ; 4,4 ; 9 ; 6 ; -8,4 ; 5,3 ; 5,4 ; 0,81 ; FutureDE2298 ; Ee6a64e2AeCa2cCc5C54DddbBdDdBE10FE76EFA6ccA6DeAcdEFeFf52cb610372 ; < 4rNb9vXfWGbi9vdznZ7WaOpq173kgV3SpmQOXPCFUb16fn47h1xYtOSE1UbTr28Z > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 37,2368729556471 ; 31,7539835653543 ; 0,172667765573671 ; 37,2366229556471 ; 37,2371229556471 ; 2,5 ; 9,2 ; -6,4 ; -7 ; 6,2 ; -4,5 ; -0,58 ; FutureFE2332 ; F4b30A3A78efcbDdbDcdEf3F7d7b8c0BACEccfceec1A6EC0bbf5CFb24aDB50Ca ; < 9fxtIPni1kx8y1C2RkV9V2qwIk15t87QU6p9i0Mwm7HMHZ5bhe7YweP6IK7K34D8 > > // < CALLS ; 1Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 13,97143497522 ; quote ; 53,6714134246759 ; 52,5979851561824 ; 0,0204081632653061 ; 9,2 ; 49,6460574178253 ; 57,6967694315266 ; -3,8 ; 53DaBA26eDf2f78Ba0c6E4fc5fABa8B5edBc88DdB2aD8eEaEaD9D13a6e2ddC01 ; < Z0n1qO5WZ27PueD5dbuR2I307y9hHkpOKH8zZ2pLEVBrb22KtNv3ApmvwfIdxMsa > > // < CALLS 15,368578472742 ; quote ; 49,1194092921563 ; 48,1370211063132 ; 0,0204081632653061 ; 5,9 ; 45,4354535952446 ; 52,803364989068 ; -9,1 ; 2Edb556546bFCa20EB94e81f61e04DEe65ead998766e14c72b9CEEdAcADCA5Ea ; < F2323zy3tQeA3Y6h3g3Lm9YiEwi9c026wM6PE7W5FuLMLWaXF0oAQPE0bDv67Wgv > > // < CALLS 16,765721970264 ; quote ; 44,6476691224842 ; 43,7547157400345 ; 0,0204081632653061 ; -9,2 ; 41,2990939382979 ; 47,9962443066705 ; 8 ; de942ADb12cBbAdf6Fd208BfD6Fd27ed39FCd8a2AB5c8bDd4efFDD0aBFf0E6DE ; < mihG587JdqJEtgMFzc0k1lPDmay76Ns1Ob2fw22epfpoFZsxmf339Xiro2B51TRC > > // < CALLS 18,162865467786 ; quote ; 40,2955533564589 ; 39,4896422893297 ; 0,0204081632653061 ; 1,2 ; 37,2733868547244 ; 43,3177198581933 ; -3,7 ; EcC4600fDd8D8fC15d5c6B9aeC218FD3CfA42BcD9ABb5Cfb6eE3F55CE95baC9a ; < y7tQKpFo0c20wZ60gkhI0h559sINTQcPwJDtZ2xxNkGM1JFuJD4U6m3WnCbNEdD5 > > // < CALLS 19,560008965308 ; quote ; 36,1055124059439 ; 35,383402157825 ; 0,0204081632653061 ; -1,4 ; 33,3975989754981 ; 38,8134258363897 ; 9,6 ; 3Af03b81DAaaFCD6FA4fdcEdc7dfb7d0CeAacd6b6051296dBdcbC1A3fcD6FBbD ; < TH6PB1g4sXCLhPaMLIgEbX97YLcXn8vN669196rUBCRL4RI80qk694kG54nsinwG > > // < CALLS 20,95715246283 ; quote ; 32,1187612069275 ; 31,4763859827889 ; 0,0204081632653061 ; -9,2 ; 29,7098541164079 ; 34,527668297447 ; 3,2 ; bbEAfdbcEEd4BBaAD1FaCaEDCD8Cafa50C307Eb3Daa1C1bBDca4abE38eb09C4c ; < SJn4Pn7d7b1CVlhLx1VwpMV198CR64pQCXl505XY7PAy32Bwaufj2mfFTOPKo3oX > > // < CALLS 22,354295960352 ; quote ; 28,37139808825 ; 27,803970126485 ; 0,0204081632653061 ; -5,2 ; 26,2435432316312 ; 30,4992529448687 ; 6,6 ; CfeacFA91DD0EEcE7ae05eeD9CFCBcAeDEf1cfF9c6DaAb71dBe5B8eEA09fFDbB ; < 6MB67AwooXg19rVR35Oe8usaZzAKuFiVQN39u2l01m08b9z2R2xNMIWdj5eC35T1 > > // < CALLS 23,751439457874 ; quote ; 24,8915992243272 ; 24,3937672398406 ; 0,0204081632653061 ; -6,9 ; 23,0247292825026 ; 26,7584691661517 ; -2 ; Ee7AAc6AFc286f5dA19FecBFECAA4ddBD8cFF5cEcc0C5A136fbebEb094ddF3ce ; < a33Cp3yMxLm9u7sp5cGzzX2fS5VeEkk3bjAKBuDH2fQYW638A34As5doADT94mSN > > // < CALLS 25,148582955396 ; quote ; 21,6981222819644 ; 21,2641598363251 ; 0,0204081632653061 ; 4,2 ; 20,0707631108171 ; 23,3254814531117 ; -6,4 ; E6db7b6Be6bF7bEB5CdAbFF03ECCB0bDCacb85acAD212E21eafAe3EAf24e4De1 ; < rHq1d3nRWFP95sUtzHWh22G675qy8YT6gQ6k8QqB8g92f0wdPpKD7A0n8xF2uT4f > > // < CALLS 26,545726452918 ; quote ; 18,8000367010218 ; 18,4240359670014 ; 0,0204081632653061 ; 9,4 ; 17,3900339484452 ; 20,2100394535985 ; -6,7 ; 7A9cEaDd4a198bF3E473b4eB11C6d5cDFCBacEEd754d8CD0b4da0AaDCE8d8cf5 ; < 9xDdKqcZO9DUM1cI35IE8UrJ721TxX3380ytZIJTD06ZXTF9teLfU2tUhgMMAmGt > > // < CALLS 27,94286995044 ; quote ; 16,1974130106331 ; 15,8734647504204 ; 0,0204081632653061 ; -5,9 ; 14,9826070348356 ; 17,4122189864306 ; -5,9 ; 34c1EAefAdBe82d6fabDaCBE60dee1d0eDE2AdD8a9Ea5BdECcaE51d189D2Dd86 ; < Hb2zeF3H1HV6ND7j5K1wHd86rIiZ7gJSv92lbSHRJ8IzZ0d4YfNv14A2apY8t4j7 > > // < CALLS 29,340013447962 ; quote ; 13,8826388518815 ; 13,6049860748439 ; 0,0204081632653061 ; -0,3 ; 12,8414409379904 ; 14,9238367657727 ; 0,8 ; a0EAae1963EBFd6bffe9f90150C85d02efEeabC7EDdCea9edCebba3cDEE0D9A6 ; < Q22h8792Aqk5RKf52gdP2oY07sS3y6wZ5e14f169fD29jve92S3sE1ECMFxpK6W4 > > // < CALLS 30,737156945484 ; quote ; 11,8420480713358 ; 11,605207109909 ; 0,0204081632653061 ; 1,9 ; 10,9538944659856 ; 12,7302016766859 ; 3,7 ; e1fDCD5CFEDbDECb1eA3C07eFFF4f6B9aE2c1E0cDDAcFF5a8bC4A6fadd54F55D ; < 1ke6EyK8Zao5Z13XzJcCupXho9Tb2q7KwQZGRzWCZ856DssgZL6mKh877QM7Yu2t > > // < CALLS 32,134300443006 ; quote ; 10,0576120973883 ; 9,85645985544054 ; 0,0204081632653061 ; -7,3 ; 9,30329119008418 ; 10,8119330046924 ; 8,4 ; 51D06B87EAcEbcbf7cfDcfAf8ddDC49C5deAFEa27B7afbeeEa2Adf0bF7582aaA ; < 3oE56jMm08OW7PP2k3l9eRiOOS87gXR0W55Rfi25TWh6W34eyF93Zp0xu1fd98CD > > // < CALLS 33,531443940528 ; quote ; 8,50851942129926 ; 8,33834903287327 ; 0,0204081632653061 ; -4,8 ; 7,87038046470181 ; 9,1466583778967 ; -6,8 ; b412accBC4bb7ffCDfedEbfbe311d76e4EAf68EC683CCDC5B5Ccaa6eadACcc80 ; < 23V76whG4P5PtN3D18xjWZtBWfpl4Mfc0X04C2f7BvD91Owab1uqT1Nwgr9ymUhu > > // < CALLS 34,92858743805 ; quote ; 7,17254050243703 ; 7,02908969238829 ; 0,0204081632653061 ; -9,3 ; 6,63459996475425 ; 7,71048104011981 ; 3,3 ; 2A5bFC2de7F1adb57EFFD28DE9CF2FfAa8eebF6DCbBDDAAE3990cC0C6E64B7Ed ; < 0ii45L2ne3nD367ExkPf723rvSoOx05A9y12P1zdZ53Tgzf2KO1SemL5dt662fat > > // < CALLS 36,325730935572 ; quote ; 6,02713272602194 ; 5,9065900715015 ; 0,0204081632653061 ; 8,1 ; 5,57509777157029 ; 6,47916768047358 ; 5,6 ; E9e85CF9eFcDBfbBCCdD6DFa08cd8fAcAFDa3BED24cf4DdCBEf6f2ddeC6A297B ; < 6DIM8BB337TFq4v8OJ9wzcPqdW4Sx7gs0WobbCp1Rcm5AbiG9V7JxeR69x76Ts0P > > // < CALLS 37,722874433094 ; quote ; 5,05028078983101 ; 4,94927517403439 ; 0,0204081632653061 ; -6 ; 4,67150973059368 ; 5,42905184906834 ; 2,7 ; EcdCfaDd3caB7ebbC7dbD73E61CDF02eeA1C3AADAdbAdED8BBcdEaddE6C2F0Ad ; < B5Xr4M7OETy9P8L8SSrwy44GFVJ5OTlK2hPIwducIzxegYh0Zdd47Vh1jkZTJ313 > > // < CALLS 39,120017930616 ; quote ; 4,22109351113971 ; 4,13667164091692 ; 0,0204081632653061 ; 3 ; 3,90451149780423 ; 4,53767552447519 ; -5,2 ; 0fDbf8FFed6c6CF1BEe510ccD2B8Bb2CDbAeFbCc0fdFa80ABAA9bDbdc0a41a2A ; < lnbb1aHaf7fo8u6jSgPGEoJ7vxXxbZ0Incln7sb9vd63epxZ0xxy7JW0Jq0PfcFw > > // < CALLS 40,517161428138 ; quote ; 3,52019161191621 ; 3,44978777967789 ; 0,0204081632653061 ; 5,6 ; 3,2561772410225 ; 3,78420598280993 ; -6 ; F9C2bdfcBD87fFDFBe3d0be9AcfEBba9E7Bc4d1bbA03d2E61FFD517ecAE793Ed ; < 8T8A6bwV8RfscwFov0b55zjUg8Lz469rvil9U62GFR49lq4vu5Pq70HMWXNr6hq2 > > // < CALLS 41,91430492566 ; quote ; 2,92992596859076 ; 2,87132744921894 ; 0,0204081632653061 ; 4,7 ; 2,71018152094645 ; 3,14967041623507 ; -2,9 ; eed009aa5AE3DB4FDFBa82d934DFF3eCEf4D0818a7AB81ceF5D6FD590eCcaddD ; < 890yH1bCba8VJ7Ef560Y65M5g9Z5i0OdF935HtxO4yqOuIsZ2dmqHh7V3WlaRIf8 > > // // < PUTS ; 1Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 13,97143497522 ; quote ; 0,0585877411035796 ; 0,057415986281508 ; 0,0204081632653061 ; 2,1 ; 0,0541936605208111 ; 0,062981821686348 ; -1,5 ; 05bf219Cbbd77bFDFdFc0a8cB6D4Cd5ebf62F1CaCDF6817FFcacFBeCDafdBc64 ; < dYTz3RbaWgXOFo4y633Knq5C5J73pPtjt43mNt76nyP828FNJL0C5XpzzjbfsCt4 > > // < PUTS 15,368578472742 ; quote ; 0,145301040226713 ; 0,142395019422178 ; 0,0204081632653061 ; -5,9 ; 0,134403462209709 ; 0,156198618243716 ; 2 ; 6DECACD2FE1ce513Ce7Ff7dC0bea81CBEb16EcE6dBCcDcb081B01b7CAcaaBf6f ; < C239K1GIcOH90fcjApeW1N5feL3w41fZ2smzSPeT4gaZKod0Fq44HEd3vK8RFb96 > > // < PUTS 16,765721970264 ; quote ; 0,312278302197384 ; 0,306032736153437 ; 0,0204081632653061 ; -1,3 ; 0,288857429532581 ; 0,335699174862188 ; 1,6 ; fB31FfD0F11aDaDEB03d4ddEfcbD6DaA1Bb9FCCCBBA1Ab0EBBBDe9e4F3ccE0Cc ; < fmx89mC7JMIw018bd9x5c1KJJO824Xv6aG326kpDFVP9A7ay512iMwHV2JwFm2jy > > // < PUTS 18,162865467786 ; quote ; 0,598879967814781 ; 0,586902368458486 ; 0,0204081632653061 ; -3,6 ; 0,553963970228673 ; 0,64379596540089 ; 6,1 ; dF80c3B95F83F3603Ad66FDbf8DD99BaaFaEfcaBf60C4B1Afa7CAD665EdA0925 ; < y9RSNXZpEFnjli709152412lnenTqS4QLM25Q3L02M5BHpy37PDd973h9soIca8o > > // < PUTS 19,560008965308 ; quote ; 1,0475564489426 ; 1,02660531996375 ; 0,0204081632653061 ; 2,2 ; 0,968989715271906 ; 1,1261231826133 ; -8,3 ; df8c910AC6e9D1ea0CaabBde224C6ABADcDcaadeed1c0CdAABefadBeD8A8FC5E ; < DnFeX8l2cmedk6g8y4Lw66ccaox2060J23313GH6juESueHclgcpKzEpFH59si9T > > // < PUTS 20,95715246283 ; quote ; 1,69952268156894 ; 1,66553222793756 ; 0,0204081632653061 ; 4,3 ; 1,57205848045127 ; 1,82698688268661 ; 8 ; 7d42fbc4BE1c1a5fd887cA31EdcfAeec938c169DA96efFBF42Df0f7eEFfFd684 ; < 9MFyNrm2Jx9Rj8y8OeR3l6DDsyNM4UA62Jo7B71e0I5gpm4f37I4wu52pa6pIPFX > > // < PUTS 22,354295960352 ; quote ; 2,5908769945342 ; 2,53905945464351 ; 0,0204081632653061 ; -4,8 ; 2,39656121994413 ; 2,78519276912426 ; -6,2 ; 5ebC4c9e8AeBb3EE6eDE2A6bf4B3fAD579decD9348bd3c9cFcD738FEdeCEacb6 ; < uqso7LkeD180AJK4zX6lqZjaP1WBkP2N0a4G64Uup8xz7seW9kYEkfBf76c0Z575 > > // < PUTS 23,751439457874 ; quote ; 3,74979556225415 ; 3,67479965100907 ; 0,0204081632653061 ; 7,6 ; 3,46856089508509 ; 4,03103022942321 ; 8,3 ; 0aac6FDBfeBdb5bfC9EFc758e5A744307dDFFD9B863BdBC04AC0b89BBD089fBC ; < 0n4t1Z6v3IYq8mYrZ9Og6ZECvgH2XGZHzq730W30zeOF4xY5mPo3r63xB01e6Ak7 > > // < PUTS 25,148582955396 ; quote ; 5,19503605153417 ; 5,09113533050349 ; 0,0204081632653061 ; 1,4 ; 4,80540834766911 ; 5,58466375539924 ; -4,6 ; 6a4Aa6f9F9F3aDe54bAbBDCF61abBbfC7a3D41bfA5eaBafaAe4A9CD0C44ca8aa ; < 3XY0xnSztQN4eU72gYH3TopOdZDOHfopQKBHxEcQSbthU7nTJpf32HnTEO47bVVf > > // < PUTS 26,545726452918 ; quote ; 6,93566790223434 ; 6,79695454418966 ; 0,0204081632653061 ; 1,1 ; 6,41549280956677 ; 7,45584299490192 ; -0,5 ; b4c0BBF8bdE7aA0BA6Ccd4f20ABDddFAD02AaBBA6DbBcF97591Ede6C8f7fD7FA ; < T8CjC28IyX45fcua5WujMSYHGiE1Mllz3HKD8B858c8ogf66s0y31eYpn6C2mweZ > > // < PUTS 27,94286995044 ; quote ; 8,97176164348836 ; 8,7923264106186 ; 0,0204081632653061 ; -0,4 ; 8,29887952022674 ; 9,64464376674999 ; -9,3 ; 56Ae6CCddDA51D87AAcCe2FEB803aad3A0B6d4acCD56E2b1fE9E187c76D81Cfd ; < mdz82js0mlGPFzw81p2g4fib9jHAZj6XwygjThlJJj6cdU5DEK3rI51bE0mrxdTY > > // < PUTS 29,340013447962 ; quote ; 11,2957049163796 ; 11,069790818052 ; 0,0204081632653061 ; -2,1 ; 10,4485270476511 ; 12,1428827851081 ; 5 ; 65DE89FcbbEEFDDf4ec55dA2c2b6843D8dA3FbEfab339FCb2F9F5aAFF810fAbe ; < 10ZcVz3FaEF2732X51655BLO9YNCdk9F5WDSS1up9544792p879oxg34JAem1ZUt > > // < PUTS 30,737156945484 ; quote ; 13,8938315674766 ; 13,6159549361271 ; 0,0204081632653061 ; 2 ; 12,8517941999158 ; 14,9358689350373 ; 7,9 ; fafDb45Cbe2B6D611edEAC25261Daddecb3c4Df1Dfe6BB8E5dD063Ae4a5DdbC4 ; < KXHvkSLlZDo61UhG7D24CpC26Q9ZmdyJrQ2ZsfKsX9IMBKuH5Tzq1DEm7X169cvo > > // < PUTS 32,134300443006 ; quote ; 16,7481130251719 ; 16,4131507646684 ; 0,0204081632653061 ; -9,2 ; 15,492004548284 ; 18,0042215020598 ; 5,8 ; DaAB9D89c7bef5AF5d2bC74Cf7aeD9c21b9cFf83F9bC2b3Be8CFEc0A9Aa3A8fC ; < Y2470177Aq82qxKG3E1544MViHvqjpVYS10fmQdQuXde9NkNyLwLaY60DVnTDL1F > > // < PUTS 33,531443940528 ; quote ; 19,8377377807256 ; 19,4409830251111 ; 0,0204081632653061 ; -3,7 ; 18,3499074471712 ; 21,32556811428 ; 8,8 ; c59B9fDFC6B66FAF1AA1Ffc5a9eE4dbB0eadCfE062E30EfC869dDbB6D9a5dC4F ; < bbocO7Yi76aeE1gbqPLY14L5ca1bG8jHcrm3Gy7JH33wfpb5Tnfd0wb3DrwR71sZ > > // < PUTS 34,92858743805 ; quote ; 23,1404762935061 ; 22,677666767636 ; 0,0204081632653061 ; -0,5 ; 21,4049405714932 ; 24,8760120155191 ; 9,1 ; 42D535BAa505daD81df6a695FC7CDbDBC9b2F7bd0daa53fCcB4e0CB3b0a3dB16 ; < iHwuF2dJNFM6qVJsgIr91u92ybYa5633qPr4hkKMfg4N53whB7mB2e1127rt6qd0 > > // < PUTS 36,325730935572 ; quote ; 26,6337859487338 ; 26,1011102297591 ; 0,0204081632653061 ; -2,7 ; 24,6362520025788 ; 28,6313198948888 ; -3,4 ; 90BEbae4BFCF9fACFf0b4bdaae6C7C2bFCeBbbDcFcC7BCeF8affcaB5FFb8fBDB ; < 9J1Q3AI1BY1G5ecInPeAw5CuSEgTN5V6Vzo68jA650D1u86igB44dAK6J7e2fLfr > > // < PUTS 37,722874433094 ; quote ; 30,2956514441856 ; 29,6897384153019 ; 0,0204081632653061 ; 3,4 ; 28,0234775858717 ; 32,5678253024996 ; 1,4 ; 0AA5bB34695649cBECf5aF8ddBF5dbCa4E5a0Af5DCbe7d9d93cEeeED367aE84c ; < fI09Z5HVZ7i8CXVaYbLOK616SgzWwaCv3D3F8ZFC4kg8y1eNSt8ICbzpmoeh135I > > // < PUTS 39,120017930616 ; quote ; 34,1051815971371 ; 33,4230779651944 ; 0,0204081632653061 ; 0,4 ; 31,5472929773518 ; 36,6630702169224 ; 4 ; a5AcC04976fC337dEB6c28dd3F6aBffFD2FD9CbDbD3cEEeeEf7AdB74AfFad66c ; < jc4DH098yeRUZE0l7551Z9X4wfW3s7tC9x54UM2YUguKN5MWWPy5o744oZc5h0ji > > // < PUTS 40,517161428138 ; quote ; 38,0429971295564 ; 37,2821371869652 ; 0,0204081632653061 ; 7 ; 35,1897723448396 ; 40,8962219142731 ; -5,1 ; 8BEdBC4e80CEFa403EebD2BD5ABF9624EDfcEcDfe7B6b8bcFf6Db8F1c9cB5DAD ; < 45Wcw2iAD42eEm3KqV059DR5r0yXwIo97MeFoY36xL019UXInU7326JxJkBXZ5B8 > > // < PUTS 41,91430492566 ; quote ; 42,0914489178737 ; 41,2496199395162 ; 0,0204081632653061 ; -9,1 ; 38,9345902490332 ; 45,2483075867142 ; -3,6 ; Caeebe810DE9e1DA7F9cE93F0d13a0Fe0A8aA3Beca8b9BDA1F4B73aB9AfeBBd3 ; < LYmz6vgzmmkfey51E394kRE9HrkmI189w7rmBY9iYeMFZ73l77N66B4SnG5K8m31 > > // Futures_Teploseti_LLC // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 25,994915 ; 1,14 ; 21,8025570175439 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; a6F803Dd23bDAE78dccAd3aA73eC8Ccc8A68A8fd2c7EBB9CA56D68bfDEcbB2dd ; < wg3lWlODG00cay8bxTw951Afy49NApOW3ovKQYF9lp9RvQgw27Cm5L1t8c88Ga9c > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 25,995648944215 ; 1,14003648 ; 21,802471149182 ; 25,995398944215 ; 25,995898944215 ; -0,3 ; -7,5 ; 8,9 ; -3,9 ; -6 ; 2,7 ; -0,34 ; Future47AP19 ; 7938bc5D4ADC23df07A47ac60FDcF15da521bbd2A96DD52D8eA6fFDD6210BEeC ; < Dr8zvEBe73ubUs3qBcyOcxE6FG546OFH2KdM3DAys101O59dgKK67423eitwEn56 > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 26,2753419638376 ; 1,15382109326135 ; 21,7724576342843 ; 26,2750919638376 ; 26,2755919638376 ; -0,8 ; 7,9 ; -3,8 ; 9,1 ; -4,8 ; 1,3 ; -0,07 ; FutureJU1969 ; f4cc9A0a7CC61ABdbC99BbB1BbB2AFfAb2ed1F4aA94be4Db931BaEcFDaD8cAf1 ; < 4S14vTq52ky39Com1xaLZI21E6v5TvGb2x2OP71GH793cMiK18T3ry2d7kU9IEf2 > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 26,5796677629975 ; 1,1818956457141 ; 21,4890140338389 ; 26,5794177629975 ; 26,5799177629975 ; -5 ; 7,1 ; -3,4 ; -8,1 ; -8 ; 5,9 ; 0,51 ; FutureAU1924 ; 74eCDaeBF7CD3aAAb93C2f6b7d14A2BCCdAAc9C8a9cB111fa3cAC3F6a2cb454B ; < 6Rkzj0RoKgzYmUCxZ8e5s1nbjtwe1DGw2q8oQyPkh3YGEd49U71jC2Y205z6sKgv > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 26,8908505283184 ; 1,22552067586766 ; 20,9423882908216 ; 26,8906005283184 ; 26,8911005283184 ; -1,1 ; 3,1 ; 6 ; 2,7 ; 9,4 ; -7,6 ; -0,8 ; FutureOC1929 ; 7cBf9E9b865de6b20bD45fe5ed55C2BCd9FaDcBA0BfCd1d3bEF66Fd7d494C7Aa ; < rBi5RNA4iQY0b47K0aX22PX87X1tmV9fBXt2AXX2kdslV015W3GRlJwsZxkA25M6 > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 27,236863510922 ; 1,28597434253225 ; 20,1799431840056 ; 27,236613510922 ; 27,237113510922 ; 0,5 ; 9,1 ; -3,4 ; -0,7 ; 4,8 ; 4,3 ; -0,87 ; FutureDE1986 ; dfdCFEda0CbAb2DebCa3c9Ad5cA72C8b1C9DCBb21B8aDcBe0B46DDFEbFd24c8d ; < 4U3Wg0awLQrv1Yv3W8AWbNbq4qr305s93WjEQbAI7YVXVAl06GvGJ3bAVI539rw0 > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 27,564312651388 ; 1,36580804930367 ; 19,181688536278 ; 27,564062651388 ; 27,564562651388 ; -2,3 ; 8,9 ; 0,5 ; -7,4 ; 3,8 ; 2,7 ; 0,37 ; FutureFE2083 ; DD8aAD9BcafEFCEdD9CCeCB4fdDD31C7dd0CdEe3b1ddf8F1efd2d8AEC7aDfDDF ; < ge89HqeF07O9iih1N5Jop8vXkFVetEQr9Cdna094LXOuWkAxDfBJHDborrSC8gAl > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 27,94286995044 ; 1,46815624128629 ; 18,0326268857861 ; 27,94261995044 ; 27,94311995044 ; -3,9 ; 3 ; -3,8 ; 4,7 ; -7 ; -6,7 ; 0,42 ; FutureAP2091 ; bDBDbECbfECc409A08840E0F321CCFEb1A5cdfbFb1Bc6dB449C2ffE39eFbbf8E ; < t6s1QPn4FaHleVNam4Ik9Q06Rc82HGW29m47m3Vpj384V3y36Y42RNS7d3aOG7uN > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 28,3151312833803 ; 1,59746536122074 ; 16,7250361546135 ; 28,3148812833803 ; 28,3153812833803 ; -9,1 ; 1,4 ; 0,3 ; 1,8 ; -6,7 ; 8,5 ; 0,03 ; FutureJU2069 ; aeef3AE57eEEC175fd7fC775ccE14f6bF4Fdeac8DddadaDaaebBC1C2fB3ba17A ; < tT20E3Jsn3soyhuFWpvUvNl5UxvJYVVq3ZH2z0UoWLzbhIA07isK7Mod11Wa2mrA > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 28,7253444532562 ; 1,75923236003563 ; 15,3283401930342 ; 28,7250944532562 ; 28,7255944532562 ; -8,4 ; 0,4 ; -4,6 ; -6,3 ; -7,1 ; 9 ; 0,06 ; FutureAU2028 ; A0D73AeCDE22dca02c4f6c3e92e4FBEbb81BaC42EDCF8F9B04Bc4eC36Ad93eC0 ; < f3o8PU3UE54JbN6O17gQHdo30rBw8VYtJNWt79u6Vy6Vk91K3gqt18GxSBPX0uB1 > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 29,1618824142211 ; 1,96077129067131 ; 13,8726588118479 ; 29,1616324142211 ; 29,1621324142211 ; -1,7 ; 0,9 ; -4,2 ; -1,1 ; 4,1 ; 0,6 ; 0,97 ; FutureOC2044 ; B1aDECfB0edAbd06331bCCdBEB87BD9abABe2fBcE473fcada5FBfdEF7bF7bAaB ; < 2B0SIT9oUT9FhrzmBJLtv59DKWuujxT2JjHO9JJNxAwJ49O2VzgLK7aqdG4B5XXX > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 29,6174705191772 ; 2,21212567513903 ; 12,3886925376949 ; 29,6172205191772 ; 29,6177205191772 ; -4,7 ; -8,4 ; 5,6 ; -8,4 ; -9,3 ; 6,9 ; -0,77 ; FutureDE2026 ; 4cfc1CfAe1E7D4C22aab29BAFf86a8AfdB6A795dfea5fbFE2add75d785bD5FC3 ; < d372vy9u2657OM3DMkEZnRyJwvI05JI5MzRH5ev4k49clGzf8ZP0A8FcxoZo0F3q > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 30,0268142636263 ; 2,52583462941153 ; 10,8878781350076 ; 30,0265642636263 ; 30,0270642636263 ; 3,4 ; -5,1 ; -5,5 ; 6,2 ; -9 ; -8,6 ; 0,34 ; FutureFE2174 ; 9ea7F967c9BCaaCCfAF3Aed3ab3ED6cC5FBCd7eBAbddd1CE335Ce9bbdEE2fcD6 ; < AUTcl1EY24LC8yVD192c5NRShpi537c4Exe2Z6y7GoR09510fH4focSFM241WwbX > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 30,5048040887795 ; 2,91893785029074 ; 9,45065213901046 ; 30,5045540887795 ; 30,5050540887795 ; 3,9 ; -4,6 ; 0,7 ; 1,7 ; 9,1 ; -7,2 ; 0,93 ; FutureAP2191 ; 23EFBf89f1F5cd0Eef6ae2f24fd307cEd30FBff1CA1b14eabb1BD02f8BcEAAF6 ; < h2q97g1T40au10L0e7724HTkHy6SVp68bxdEo3D3F1b5W5feY8L9mstWbDj56FXS > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 31,0329719390179 ; 3,41431822693473 ; 8,08906841026309 ; 31,0327219390179 ; 31,0332219390179 ; 5,4 ; 7,8 ; -5,8 ; -8,5 ; 6,5 ; 0,3 ; -0,99 ; FutureJU2161 ; 24519adaCCf46b61Fd2c4DDE638FBBEE2Df6dc4dECc17c9E7F8cAAd2488cABe6 ; < 0N241m86X0z9rg4nB4TzNy7YN434LQrub8klm0lh6F00yz1CW9Ibfe0cv0NXn204 > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 31,5484678916045 ; 4,04188025308742 ; 6,80539400381936 ; 31,5482178916045 ; 31,5487178916045 ; 8,9 ; 9,6 ; -6,5 ; 8 ; 6,8 ; -5,2 ; 0,16 ; FutureAU2142 ; 267fcD77cc4BE169d2e8c3dd3bBcFCdcCba9cbDC3C54BADB19Df56D351EBDBDF ; < 4pss5H4k83ofGVHdMvO8pWTmRn6M64qV9Z5lknL7644Dm8CzpIzSatRxYgc6y0di > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 32,0572505487755 ; 4,8432658796766 ; 5,6189326262873 ; 32,0570005487755 ; 32,0575005487755 ; -8,2 ; -6,4 ; 6,1 ; 6 ; -7,4 ; 3 ; 0,16 ; FutureOC2180 ; DB7bbAA1BcdD7CdfBF3aBAfeF95F5cDdC424eD7Ece3F77C684a91D0BD8dEB79E ; < FdH8x2bpv7y2wH5s0OyIgWjIk81opGBY3b990O58Fe4ya20WZIc7Xh9YOH9EP64H > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 32,6596697766435 ; 5,87329803803142 ; 4,56070363961816 ; 32,6594197766435 ; 32,6599197766435 ; 7,8 ; 9,8 ; 5,5 ; -9,4 ; -8,7 ; 9,1 ; -0,58 ; FutureDE2129 ; edFf2d2DEb46A15A55fACBd5fD3ECcA32F60E92bb0Cbc921Ffb8bC2c13CDf1Fe ; < hlz263b8bIvv45TwjEbzr6nA55Zmgss73D8Aljc2u4rCdD1DpLPe0S10wC9Xbpk8 > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 33,1598876010461 ; 7,20845609854301 ; 3,60013727596239 ; 33,1596376010461 ; 33,1601376010461 ; 3,1 ; 3,5 ; 3,3 ; 2,2 ; -0,9 ; -0,4 ; 0,88 ; FutureFE2276 ; 1d8afCfc4b8DCeaCf682F29dBEbB5C47C9dC5afb4BBEfBbEcdCe65e0dD9AE3d1 ; < Bb34vL80gJ7Q5bscVk15A8191UCm2xgDR7KWPia97D3P7YjpRFxM6HNt89z40G6L > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 33,8376937315093 ; 8,95461718588486 ; 2,77879847112253 ; 33,8374437315093 ; 33,8379437315093 ; 6,8 ; 5,6 ; -9,1 ; 9,4 ; -0,3 ; -3,4 ; 0,77 ; FutureAP2248 ; b9AFF8B7cCDA3cF3D9eff2fFa893cF6F5CE4d39DB4Fdddbd4CCfaFfbFe6FD129 ; < 3oGVRt4z7Pc4GM4ggU43NM3kJ0rvZxsrmwHR9TL88Lt6lq8CzSLBok5vsw88Q2yL > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 34,4805753685878 ; 11,2597813450131 ; 2,06227752671761 ; 34,4803253685878 ; 34,4808253685878 ; -6,7 ; 1,2 ; -2,4 ; -9,5 ; 7,4 ; -4,1 ; 0,25 ; FutureJU2252 ; bcC578CeF84eFAE6b6ccabADaEdFcDbF84D1d6B8dBB51AAaF4afafe6e01DCbDb ; < 7DvkRiy0okcLgE5858Fxt9qbwRWS5M0H7xjrS4K8P2ZHpcg0daCK3eyAL2Qr1h5K > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 35,0058940089548 ; 14,3293517656877 ; 1,44295028703099 ; 35,0056440089548 ; 35,0061440089548 ; 1,5 ; 5,4 ; 2,7 ; 0 ; 9,3 ; 5,8 ; 0,95 ; FutureAU2230 ; a6CACfEFbbFBAA706331C8C7815eB5a26b6bAD1cDaA8B8Fc1BbbbaFB63Ab3bAc ; < vp24Ij0qDI60t664429wyOh7kUi1di2Lp99E6a0144mFXQ84RSo88Tt195bdywT5 > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 35,8409622066643 ; 18,4577499874342 ; 0,941783924425475 ; 35,8407122066643 ; 35,8412122066643 ; -6,5 ; 8 ; 9,7 ; -2 ; -7,7 ; -8,2 ; 0,11 ; FutureOC2293 ; 0AEbfaeacC9C7ccDe81033Aa5cFabBCaDb4808DdEa1CEF74FfB6C68dCAFB5cbb ; < Ss6Sy8ahoIn6SR1sPTeak2o94jR39UCl7jqLKoLMd7691nQ0Pvx2h2u44D7UKf4h > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 36,5181543060978 ; 24,0642562142933 ; 0,517526824053979 ; 36,5179043060978 ; 36,5184043060978 ; 4,4 ; 9 ; 6 ; -8,4 ; 5,3 ; 5,4 ; 0,81 ; FutureDE2298 ; Ee6a64e2AeCa2cCc5C54DddbBdDdBE10FE76EFA6ccA6DeAcdEFeFf52cb610372 ; < 4rNb9vXfWGbi9vdznZ7WaOpq173kgV3SpmQOXPCFUb16fn47h1xYtOSE1UbTr28Z > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 37,2368729556471 ; 31,7539835653543 ; 0,172667765573671 ; 37,2366229556471 ; 37,2371229556471 ; 2,5 ; 9,2 ; -6,4 ; -7 ; 6,2 ; -4,5 ; -0,58 ; FutureFE2332 ; F4b30A3A78efcbDdbDcdEf3F7d7b8c0BACEccfceec1A6EC0bbf5CFb24aDB50Ca ; < 9fxtIPni1kx8y1C2RkV9V2qwIk15t87QU6p9i0Mwm7HMHZ5bhe7YweP6IK7K34D8 > > // < CALLS ; 2Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 15,2524020443897 ; quote ; 57,5879066477486 ; 56,4361485147936 ; 0,0204081632653061 ; -3,2 ; 53,124843882548 ; 62,0509694129491 ; -5,9 ; 9679BcEEdbcE2C8Beada55bcEbF69BcBb1Ed54BAD7Fc88afB972eAcC8EBfCdb1 ; < 4rah7t15Z8P02k3KIeCX8LFcvpCpM8mdC6s4qbeKHp6zaBuAbbJVgZAX1J1mZ1se > > // < CALLS 16,7776422488287 ; quote ; 53,6044676860604 ; 52,5323783323391 ; 0,0204081632653061 ; -5,8 ; 49,4501214403907 ; 57,75881393173 ; -3,9 ; Ec8aa2fdcADfD0e4bc7aa2B0dcbbeDFA331c12f3f0AEfaa47c2e6BFf1Db9cC0D ; < XG5JABi7bnly5yZ8g7Kvidwc85Qn6mBr9QBSc6H69CYWf1hnN9fWN3furLsu4diF > > // < CALLS 18,3028824532677 ; quote ; 49,749238783706 ; 48,7542540080319 ; 0,0204081632653061 ; -3,4 ; 45,8936727779688 ; 53,6048047894432 ; -4,3 ; efa0FA7EFbb4ccaADEdBbdbA7FF40daB67aECE2F860A4fcaBD9f3EB8f3Bb95BE ; < 4z46YpXoZw7HXNScZtZuhVgtAv91VHNu404IvHzmBqoBJjNNl9TvPiOlRYc5dcx0 > > // < CALLS 19,8281226577067 ; quote ; 46,043352958261 ; 45,1224858990958 ; 0,0204081632653061 ; 5 ; 42,4749931039958 ; 49,6117128125262 ; 4,9 ; F95B4aa17efefd27AFdfa0ffA68AF6e80B2bBaA5e92bdCc1fABb28DC1c78c6c6 ; < CqP7lsqZRvQ30QeiMpWhRG34Z73R0FtYyctbxaMaZrzi1cJ360SLW8KRxmtr2672 > > // < CALLS 21,3533628621456 ; quote ; 42,5041624904487 ; 41,6540792406398 ; 0,0204081632653061 ; 6,2 ; 39,2100898974389 ; 45,7982350834585 ; 8,1 ; 3cECDf05b39Bf16eAAb5DC466DD1f7beBcD285277bbdDadbEc87E08EbEebc7E7 ; < bhh9YUR9gnWFiGC70ZuU2B429a26u18196if6457Zw68P65j75gHuOE51g60S00q > > // < CALLS 22,8786030665846 ; quote ; 39,1447745021317 ; 38,3618790120891 ; 0,0204081632653061 ; 8,9 ; 36,1110544782165 ; 42,1784945260469 ; 0,9 ; e9D82d5C54FFecBeac63BEcc14BAfbE5DB7AAdcdCEbFfDE6e61FC9Af6bcdfcDf ; < GOiTe4ORxCjwTVonxm3q8XqxK05ERFG5K389x1I0Pe44vj1FlTyqlzMy1a5301ug > > // < CALLS 24,4038432710236 ; quote ; 35,9740072988448 ; 35,2545271528679 ; 0,0204081632653061 ; 0 ; 33,1860217331843 ; 38,7619928645052 ; 3,2 ; B56DBd0aC0fd0951fD7CDC6cDAa60bDAF71EcD9C0e544edBE0AD3aEA34b1cd33 ; < bKd1033GD1RLG92w55L2X48Jg031kI3Ac6Qw2jLO1btEczdbdJ7T7YS72jt0Icv4 > > // < CALLS 25,9290834754626 ; quote ; 32,9966443893104 ; 32,3367115015242 ; 0,0204081632653061 ; -5,8 ; 30,4394044491389 ; 35,553884329482 ; 4,2 ; D68AA6232aBbcABDf8b0CcFdD0bCdff1cbeEF771EC1A47aE5DfeF24EfbBFF02B ; < i7iu5oTLXZu1FKsF1iScZo32TM7V2KhAPNvp04btO78C2hK15yjLPDJfFmP9dt36 > > // < CALLS 27,4543236799015 ; quote ; 30,2138736853229 ; 29,6095962116165 ; 0,0204081632653061 ; 6,8 ; 27,8722984747104 ; 32,5554488959355 ; -2,8 ; B42e5aBE4be6deCe81fdE7FdFD4f00A3eF4AeeaAf83E49a5Fb3CEfe1eEeaBD6E ; < 0oHuiVXpz04h31ViJtKDB95s8O7irjfLfcK4F1XnX1UFs4ASz4pZU3y2VwfZ8c5x > > // < CALLS 28,9795638843405 ; quote ; 27,623821116272 ; 27,0713446939466 ; 0,0204081632653061 ; -9,7 ; 25,4829749797609 ; 29,7646672527831 ; -1 ; 5C68dAaf88b1A5cDFFCa7fa06FD77aED7FF4AD770AdCeAeeDE97DcFcd4a0BdE9 ; < R62xFYL7Z9arx96FbpZ22o5W1TqWb661Y1B6B66Q3Poop6uVbc8O976H4nK4JYJV > > // < CALLS 30,5048040887795 ; quote ; 25,2221118387227 ; 24,7176696019483 ; 0,0204081632653061 ; -4,4 ; 23,2673981712217 ; 27,1768255062238 ; 7,3 ; dADd7cCeDeeBea9CaA9ccEfF08Bc59ccD7AAFd10Beb3ACDbfFeA68ffCA5Dc1cd ; < C4r3b8qZjUd5GCEE180DKp9nJ5J9KXmPo35k5M807Yh3DGhRONphQnEi1T6gPFos > > // < CALLS 32,0300442932185 ; quote ; 23,0024138329086 ; 22,5423655562505 ; 0,0204081632653061 ; -7 ; 21,2197267608582 ; 24,7851009049591 ; -9,7 ; ceDad7Aa79E1EFc5Aba3F23bDd1d79BE4BCDABafeF2cDacaC5dcdEbCFd3e1FBA ; < 3h8Q8cYjvR13EYBM61U87M9H3J2A43M6zf2ja8ay77pvKzIsUFZ1us5RtKJ7rxu7 > > // < CALLS 33,5552844976574 ; quote ; 20,9569361662668 ; 20,5377974429415 ; 0,0204081632653061 ; 9,1 ; 19,3327736133811 ; 22,5810987191525 ; 1 ; FDa425ec55369dADbdAE0FfB1DcB5bec1EB32D7Cf7afebCFB59c12dE4EebBE26 ; < cm4yrQTbB56s708E62QPH8WVhs6qzAB4XMp6J92OkkDn5i3ppYF9V4ay5D9ex1pf > > // < CALLS 35,0805247020964 ; quote ; 19,0768673163296 ; 18,695329970003 ; 0,0204081632653061 ; 6,7 ; 17,598410099314 ; 20,5553245333451 ; -4,4 ; 89baCAeC3F4bd1eEaFCE29DDEFdbEA99AdcF9bDbFF4Bc5845fECfBa0C305c6AB ; < 6TD6B52beOI77F3l01IQD33x8kES23cR2sq9byuMl5iOV90h522nax7AhxhP2ENe > > // < CALLS 36,6057649065354 ; quote ; 17,3527481632677 ; 17,0056932000023 ; 0,0204081632653061 ; -3,7 ; 16,0079101806144 ; 18,6975861459209 ; 9,6 ; Ec2FdbA8Fbdac0BEca9Adca77dfF6ABb12d671Bf6C3BE8ab8BcE01f0F1745dB6 ; < 00KacSaWc4K893SGWUm9wXCJKlxKsYsAeUcjP9xF6p82N065UZ42I9Z6E4b13Ndr > > // < CALLS 38,1310051109744 ; quote ; 15,7747803335794 ; 15,4592847269078 ; 0,0204081632653061 ; 0,4 ; 14,552234857727 ; 16,9973258094318 ; 7,8 ; dACD3BeC9ada5325fF40eCfAd37ceBC1DbBF29dBC2dAd14DbF5E02f2BFd3da4d ; < exLgSD0SwVk5Jkv5FBD6LC486n90dZ1i2Q0vcNT41VIL175XYmmPttIy57lQYJH0 > > // < CALLS 39,6562453154133 ; quote ; 14,3330742666231 ; 14,0464127812907 ; 0,0204081632653061 ; -8,1 ; 13,2222610109598 ; 15,4438875222864 ; 6,1 ; f17abE88aBfDF1BFc9AFB5fFaB5378CCCa2e7f5aDbfe6FaaaFBE7fBcD6fb1e01 ; < 36V873i5zctZS3uh6aF2L0166m0Na920Mpk1505Oe4e056QbfHIVCOYRKqKYOSJU > > // < CALLS 41,1814855198523 ; quote ; 13,0178433568744 ; 12,7574864897369 ; 0,0204081632653061 ; -2 ; 12,0089604967166 ; 14,0267262170321 ; 2,3 ; 3baFEa4cFfe1BDD2eFEF5Ed4960DBaEab3a6A8D3fAE2fBAc1AaA3ef4EabF4Bc5 ; < PZv8DDvzDuq1YT2CeF6C6j90v55440He0AMijBABLyYb243rN31C38Hbn5iHBUAq > > // < CALLS 42,7067257242913 ; quote ; 11,8195513380887 ; 11,5831603113269 ; 0,0204081632653061 ; -2,9 ; 10,9035361093868 ; 12,7355665667906 ; -9,9 ; CB7aec14ec0302b5ffAA6bca9Ef56E96fD64902C26ccFEe39b9Da80bbC4C1d2b ; < 86ugIaaRh7FxoS57So4684EuIU67OTRJgO0I72vv2SE1wy5VR0m0d6zZFw6wzs1j > > // < CALLS 44,2319659287303 ; quote ; 10,729020132261 ; 10,5144397296158 ; 0,0204081632653061 ; 9,4 ; 9,89752107201076 ; 11,5605191925112 ; 6,8 ; FDF0aDbCc1cdD4EfBAD619cBbAc9ADE3F6fcE3dB4Ff6fBfdEdd5a5210dcb3d14 ; < 1Pr5xVFy6o198bE39Epzxkqj4kg1qKJ6Q69aq994163dYs51y40rNE80hkZO7mp6 > > // < CALLS 45,7572061331692 ; quote ; 9,7375049852526 ; 9,54275488554755 ; 0,0204081632653061 ; -0,6 ; 8,98284834889553 ; 10,4921616216097 ; 1,6 ; 4C5a19EA26BdEFF2fFcBCDCed2cCeE816BbDBDD187A8D12FCeA9cba8dC45dFdD ; < NeJF1I8072AgoiusUmAi9QBNtyJfv4ME86FHf7n1017zPQ9bpVb7nDqx07DK35am > > // // < PUTS ; 2Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 15,2524020443897 ; quote ; 0,408665521929223 ; 0,400492211490638 ; 0,0204081632653061 ; -9,2 ; 0,376993943979708 ; 0,440337099878737 ; 2,3 ; 73Ec61Ab11a13f1acd94776dbA05e3BBAACda4FDcaFFbCe2e4Dc6d33BFDFcBba ; < hAf9Oizmp8hM1g5kBEc39yucoX59usn617iydN5U0700FeYvgM7o8gNU1BKmHbuA > > // < PUTS 16,7776422488287 ; quote ; 0,707302447659103 ; 0,693156398705921 ; 0,0204081632653061 ; 0,7 ; 0,652486507965523 ; 0,762118387352683 ; 5 ; f0Fa6F7275BbBd3FcEED9CaA28a1a0eDfcfFa0FCE9bdAB7C0bEd5345eaD0a64C ; < Z22Die8FHRv50Ohba87S5ki8OcDTkZNqcMByHNEpb3OBM53j2mqk9ca8bP34gMZm > > // < PUTS 18,3028824532677 ; quote ; 1,13414943272281 ; 1,11146644406835 ; 0,0204081632653061 ; -5,7 ; 1,04625285168679 ; 1,22204601375883 ; -5 ; aCcEabfbBCDf6dad9C4BEE2cd1F0BDDCbdFDfCdDCAEFD1ddbf3cEf3ADfB5c6dc ; < b05w60ZKnxCGnZp1KFo80E3e2tVBgU5t2228yqdF541f7zv58Q7Nu3q6ANArfeKa > > // < PUTS 19,8281226577067 ; quote ; 1,71033949469589 ; 1,67613270480197 ; 0,0204081632653061 ; -7,9 ; 1,57778818385696 ; 1,84289080553482 ; 9,4 ; acBDf8fE88B715ba8a2bcdF1B3D7A1BbCB804bdDA3fbD3Ba7f9e1ACc5B2Ee7cC ; < 2Ptev60oSCzo6586Db5x9t43n6Z2WpLtN7y25fdh12T4a57S2AGDOu83A8620qg5 > > // < PUTS 21,3533628621456 ; quote ; 2,45322491430167 ; 2,40416041601564 ; 0,0204081632653061 ; 5,3 ; 2,26309998344329 ; 2,64334984516005 ; 6,7 ; 00c6Ea5eDAcCEadb49921BD8D2E4DD26eca2D2eDEbdEa7B95f9C8a537B2B6f8b ; < Wj7q6e94nJfWgJ7F4x1yM0It5lEyz05h77Ba11BSj3C8nA9p5w0564I1YG1HRy4t > > // < PUTS 22,8786030665846 ; quote ; 3,37591281340273 ; 3,30839455713468 ; 0,0204081632653061 ; -1,7 ; 3,11427957036402 ; 3,63754605644145 ; 7,8 ; 9CeaeFD3c3FfEc59c98DA8FeeebDeeA4C4FaBEBEDCF4BB0df3AB916c6CbB4daC ; < quJZUfPDWj5QInZH0a7sj5C1LS8DGv8K84tq7Z1jBbG35JuVpsv16K153UG4G9yS > > // < PUTS 24,4038432710236 ; quote ; 4,48722149753384 ; 4,39747706758316 ; 0,0204081632653061 ; 7,5 ; 4,13946183147497 ; 4,83498116359271 ; 5,1 ; 7Ada5EBeCdcB7A4bdA3Ff2aFb1fdf0DC3eCceA3DFB6aF29fFBCca3FEd1bf27EB ; < 368G8lPy29mmDS2IYKy6v05h5wZ88sPYFZ3WYL55N82r36VeS22Da1i74L1AUQ52 > > // < PUTS 25,9290834754626 ; quote ; 5,79193447541758 ; 5,67609578590923 ; 0,0204081632653061 ; 2,2 ; 5,34305955357271 ; 6,24080939726244 ; -4,7 ; 5d9a78A04af6991ac0f9CdD362Ab5edc5ef77dE6EC28BAc8ffEfdDECA0AeCe13 ; < 7RdZImYMFO92GYF0CT4ANfHi9o66p03S48vOaWTj06c1j049NR3OrLe6C43948sw > > // < PUTS 27,4543236799015 ; quote ; 7,29123965884816 ; 7,14541486567119 ; 0,0204081632653061 ; 2,3 ; 6,72616858528742 ; 7,85631073240889 ; 8,2 ; 8AdCCEDbF934eC8BbeE7fEB057Fff7Fabc5D02A2bda20F2dCAfaDEF5b7bef2AE ; < zRGlcYJ0GArdY50cNX9CDdQtb8jP4FbY17s9pEu4V2crqx2AKYcM349q3E7ebsE6 > > // < PUTS 28,9795638843405 ; quote ; 8,98326297721528 ; 8,80359771767097 ; 0,0204081632653061 ; -2,1 ; 8,28706009648109 ; 9,67946585794946 ; 7,1 ; 5CDbca0c8eC2ddd787AAD3aDD4fF15bdA4cF3beb050C40aCF3d2B1Fa7bbFADAC ; < S3h75U5Z1F6J76oa3DZ02ijE3yc794lfhToFmZYPJ9J1rdTaM5Aj1nfiiVmPq2zu > > // < PUTS 30,5048040887795 ; quote ; 10,8636295870841 ; 10,6463569953425 ; 0,0204081632653061 ; 6,9 ; 10,0216982940851 ; 11,7055608800832 ; 9,5 ; 230a6C328CD8c0f9Ab7aCfE06CFaDE8DFa8CeCD5BCb4e1A14FcF1dBEae0B2C76 ; < 1oMOyNKFsgXjJ3U869s4EgR27ts6sTkKzuTe80Uq6gYICADrB5ZX15oVNf1ALOUX > > // < PUTS 32,0300442932185 ; quote ; 12,9260074686881 ; 12,6674873193143 ; 0,0204081632653061 ; 8 ; 11,9242418898647 ; 13,9277730475114 ; 6,8 ; 6F294ecdA89dEFdd18fedBBce1bA6bA2E6Eb1eabeD6e6ef69Db01358C1bf5E62 ; < ir6K05B6J5quL7P5Qhq6V2L5n6bc7Cqky7m0EdOAw2LPa9z2N30TPtaWjSPJ9CN0 > > // < PUTS 33,5552844976574 ; quote ; 15,1626056894643 ; 14,859353575675 ; 0,0204081632653061 ; 2,6 ; 13,9875037485308 ; 16,3377076303978 ; 9,7 ; 6E31FCacDBDBCcadd4aF0Fd938dd42cEe96082B4c48e96962B3BfAFbCfE47b9e ; < 4GuDsZq7Ptm5F3Gi167Sj0V48103VMpolk66qyNxkQyhVRn6ID8zp29me4bmo14B > > // < PUTS 35,0805247020964 ; quote ; 17,5646127269451 ; 17,2133204724062 ; 0,0204081632653061 ; 6,6 ; 16,2033552406069 ; 18,9258702132834 ; -3,5 ; 45Ae4aAf01FEd0de2ECA7BDdcAAc40b0eBcdBB1FfEAF5C73EF4aCbeEA58CD1DC ; < OtDHTFO5YHzIEdAWrHmtby0p247nn7056dZa3Zz3QFV2csf4CoE4WUjwbKW0t0ni > > // < PUTS 36,6057649065354 ; quote ; 20,1225694613013 ; 19,7201180720753 ; 0,0204081632653061 ; 1,8 ; 18,5630703280505 ; 21,6820685945522 ; -6,3 ; bBabeE08AE204edCCCbb8EebbdBFBAbbb4Ac4EA2fB73dCdEFAF2cD1CDAad9dEF ; < oPNZ6376Gu67Nnf9XO5EYr5kG7BJA5weK86p30VKvvrR95NdGS3Ecb5vRIUj28KC > > // < PUTS 38,1310051109744 ; quote ; 22,8266775190311 ; 22,3701439686505 ; 0,0204081632653061 ; 5,8 ; 21,0576100113062 ; 24,595745026756 ; 4,4 ; Ccb710cbDeCEDFfAA7bFbA142edead25aBEAECABDCCEFBC70059280BFbBC1ae4 ; < Qnju8JVc9wdCU229EyjHZI1hiMkW9z1i3b3Yu91M4YzD4Xcf076VyFTn56aO467c > > // < PUTS 39,6562453154133 ; quote ; 25,6670473394929 ; 25,153706392703 ; 0,0204081632653061 ; -0,7 ; 23,6778511706822 ; 27,6562435083036 ; 0,4 ; 8ed5870dACdABA1ec5dEfdfAa4Ade6a593BBa1cc4d66cDbBC44EBfE9C7ECe6fE ; < QgCyK121hHP81wd9cRl852WBMzWvd932s4Mp8CNK0qnm0ikNoaxZPO236z2uC9H1 > > // < PUTS 41,1814855198523 ; quote ; 28,6338923171622 ; 28,0612144708189 ; 0,0204081632653061 ; 3,3 ; 26,4147656625821 ; 30,8530189717422 ; -0,4 ; F7BAfADcf2E26AfeB4Ff6fbdFe4626dbbc15D5dFfA8eCCe01bEbcDAa3aC34BeE ; < skz6dk9SNk0q161cZ9F6l72Q9Vuelx9WQQJgVgqg7174kE7TVVY48JrqZDv49F8E > > // < PUTS 42,7067257242913 ; quote ; 31,7176761857946 ; 31,0833226620787 ; 0,0204081632653061 ; 9,7 ; 29,2595562813955 ; 34,1757960901936 ; -5 ; baA57A2aBf485bfefc9eBB64f533d8DCD3eC29ac67D8FafAcdBAcCC3A2Ff2Beb ; < U2AVo4Ki4CcV0EoBQek9PO32Uv5113EYtbqQX03lsUAbd77f30imo463ym5jDNyg > > // < PUTS 44,2319659287303 ; quote ; 34,909220867385 ; 34,2110364500373 ; 0,0204081632653061 ; 6,3 ; 32,2037562501626 ; 37,6146854846073 ; 4,2 ; ccC4bF25b7a636F95Db56eC52aBFcDDA78b8bBccd3f0bbF10afFf7ffdD0C7ee8 ; < xEn3w6fjJrBj5D8LPtVMJlhyXw891WtU7ecCVtSgd96Wwi7MWJxt1WPn1PD4R5k3 > > // < PUTS 45,7572061331692 ; quote ; 38,1997816077946 ; 37,4357859756388 ; 0,0204081632653061 ; -7,8 ; 35,2392985331906 ; 41,1602646823987 ; -9,9 ; eeAe0BfBc5746ef5c7b1a1C8c03A91e7Ccfe97dE992bABc37BDADf2aC8Ec77c3 ; < 73N01696L4Mfo5833C2bmh0y4Hs20BJtU9He7V8673I3Ph35U29t9i1p1xK6q8Ie > > // Futures_Teploseti_LLC // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 25,994915 ; 1,14 ; 21,8025570175439 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; a6F803Dd23bDAE78dccAd3aA73eC8Ccc8A68A8fd2c7EBB9CA56D68bfDEcbB2dd ; < wg3lWlODG00cay8bxTw951Afy49NApOW3ovKQYF9lp9RvQgw27Cm5L1t8c88Ga9c > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 25,995648944215 ; 1,14003648 ; 21,802471149182 ; 25,995398944215 ; 25,995898944215 ; -0,3 ; -7,5 ; 8,9 ; -3,9 ; -6 ; 2,7 ; -0,34 ; Future47AP19 ; 7938bc5D4ADC23df07A47ac60FDcF15da521bbd2A96DD52D8eA6fFDD6210BEeC ; < Dr8zvEBe73ubUs3qBcyOcxE6FG546OFH2KdM3DAys101O59dgKK67423eitwEn56 > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 26,2753419638376 ; 1,15382109326135 ; 21,7724576342843 ; 26,2750919638376 ; 26,2755919638376 ; -0,8 ; 7,9 ; -3,8 ; 9,1 ; -4,8 ; 1,3 ; -0,07 ; FutureJU1969 ; f4cc9A0a7CC61ABdbC99BbB1BbB2AFfAb2ed1F4aA94be4Db931BaEcFDaD8cAf1 ; < 4S14vTq52ky39Com1xaLZI21E6v5TvGb2x2OP71GH793cMiK18T3ry2d7kU9IEf2 > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 26,5796677629975 ; 1,1818956457141 ; 21,4890140338389 ; 26,5794177629975 ; 26,5799177629975 ; -5 ; 7,1 ; -3,4 ; -8,1 ; -8 ; 5,9 ; 0,51 ; FutureAU1924 ; 74eCDaeBF7CD3aAAb93C2f6b7d14A2BCCdAAc9C8a9cB111fa3cAC3F6a2cb454B ; < 6Rkzj0RoKgzYmUCxZ8e5s1nbjtwe1DGw2q8oQyPkh3YGEd49U71jC2Y205z6sKgv > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 26,8908505283184 ; 1,22552067586766 ; 20,9423882908216 ; 26,8906005283184 ; 26,8911005283184 ; -1,1 ; 3,1 ; 6 ; 2,7 ; 9,4 ; -7,6 ; -0,8 ; FutureOC1929 ; 7cBf9E9b865de6b20bD45fe5ed55C2BCd9FaDcBA0BfCd1d3bEF66Fd7d494C7Aa ; < rBi5RNA4iQY0b47K0aX22PX87X1tmV9fBXt2AXX2kdslV015W3GRlJwsZxkA25M6 > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 27,236863510922 ; 1,28597434253225 ; 20,1799431840056 ; 27,236613510922 ; 27,237113510922 ; 0,5 ; 9,1 ; -3,4 ; -0,7 ; 4,8 ; 4,3 ; -0,87 ; FutureDE1986 ; dfdCFEda0CbAb2DebCa3c9Ad5cA72C8b1C9DCBb21B8aDcBe0B46DDFEbFd24c8d ; < 4U3Wg0awLQrv1Yv3W8AWbNbq4qr305s93WjEQbAI7YVXVAl06GvGJ3bAVI539rw0 > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 27,564312651388 ; 1,36580804930367 ; 19,181688536278 ; 27,564062651388 ; 27,564562651388 ; -2,3 ; 8,9 ; 0,5 ; -7,4 ; 3,8 ; 2,7 ; 0,37 ; FutureFE2083 ; DD8aAD9BcafEFCEdD9CCeCB4fdDD31C7dd0CdEe3b1ddf8F1efd2d8AEC7aDfDDF ; < ge89HqeF07O9iih1N5Jop8vXkFVetEQr9Cdna094LXOuWkAxDfBJHDborrSC8gAl > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 27,94286995044 ; 1,46815624128629 ; 18,0326268857861 ; 27,94261995044 ; 27,94311995044 ; -3,9 ; 3 ; -3,8 ; 4,7 ; -7 ; -6,7 ; 0,42 ; FutureAP2091 ; bDBDbECbfECc409A08840E0F321CCFEb1A5cdfbFb1Bc6dB449C2ffE39eFbbf8E ; < t6s1QPn4FaHleVNam4Ik9Q06Rc82HGW29m47m3Vpj384V3y36Y42RNS7d3aOG7uN > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 28,3151312833803 ; 1,59746536122074 ; 16,7250361546135 ; 28,3148812833803 ; 28,3153812833803 ; -9,1 ; 1,4 ; 0,3 ; 1,8 ; -6,7 ; 8,5 ; 0,03 ; FutureJU2069 ; aeef3AE57eEEC175fd7fC775ccE14f6bF4Fdeac8DddadaDaaebBC1C2fB3ba17A ; < tT20E3Jsn3soyhuFWpvUvNl5UxvJYVVq3ZH2z0UoWLzbhIA07isK7Mod11Wa2mrA > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 28,7253444532562 ; 1,75923236003563 ; 15,3283401930342 ; 28,7250944532562 ; 28,7255944532562 ; -8,4 ; 0,4 ; -4,6 ; -6,3 ; -7,1 ; 9 ; 0,06 ; FutureAU2028 ; A0D73AeCDE22dca02c4f6c3e92e4FBEbb81BaC42EDCF8F9B04Bc4eC36Ad93eC0 ; < f3o8PU3UE54JbN6O17gQHdo30rBw8VYtJNWt79u6Vy6Vk91K3gqt18GxSBPX0uB1 > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 29,1618824142211 ; 1,96077129067131 ; 13,8726588118479 ; 29,1616324142211 ; 29,1621324142211 ; -1,7 ; 0,9 ; -4,2 ; -1,1 ; 4,1 ; 0,6 ; 0,97 ; FutureOC2044 ; B1aDECfB0edAbd06331bCCdBEB87BD9abABe2fBcE473fcada5FBfdEF7bF7bAaB ; < 2B0SIT9oUT9FhrzmBJLtv59DKWuujxT2JjHO9JJNxAwJ49O2VzgLK7aqdG4B5XXX > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 29,6174705191772 ; 2,21212567513903 ; 12,3886925376949 ; 29,6172205191772 ; 29,6177205191772 ; -4,7 ; -8,4 ; 5,6 ; -8,4 ; -9,3 ; 6,9 ; -0,77 ; FutureDE2026 ; 4cfc1CfAe1E7D4C22aab29BAFf86a8AfdB6A795dfea5fbFE2add75d785bD5FC3 ; < d372vy9u2657OM3DMkEZnRyJwvI05JI5MzRH5ev4k49clGzf8ZP0A8FcxoZo0F3q > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 30,0268142636263 ; 2,52583462941153 ; 10,8878781350076 ; 30,0265642636263 ; 30,0270642636263 ; 3,4 ; -5,1 ; -5,5 ; 6,2 ; -9 ; -8,6 ; 0,34 ; FutureFE2174 ; 9ea7F967c9BCaaCCfAF3Aed3ab3ED6cC5FBCd7eBAbddd1CE335Ce9bbdEE2fcD6 ; < AUTcl1EY24LC8yVD192c5NRShpi537c4Exe2Z6y7GoR09510fH4focSFM241WwbX > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 30,5048040887795 ; 2,91893785029074 ; 9,45065213901046 ; 30,5045540887795 ; 30,5050540887795 ; 3,9 ; -4,6 ; 0,7 ; 1,7 ; 9,1 ; -7,2 ; 0,93 ; FutureAP2191 ; 23EFBf89f1F5cd0Eef6ae2f24fd307cEd30FBff1CA1b14eabb1BD02f8BcEAAF6 ; < h2q97g1T40au10L0e7724HTkHy6SVp68bxdEo3D3F1b5W5feY8L9mstWbDj56FXS > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 31,0329719390179 ; 3,41431822693473 ; 8,08906841026309 ; 31,0327219390179 ; 31,0332219390179 ; 5,4 ; 7,8 ; -5,8 ; -8,5 ; 6,5 ; 0,3 ; -0,99 ; FutureJU2161 ; 24519adaCCf46b61Fd2c4DDE638FBBEE2Df6dc4dECc17c9E7F8cAAd2488cABe6 ; < 0N241m86X0z9rg4nB4TzNy7YN434LQrub8klm0lh6F00yz1CW9Ibfe0cv0NXn204 > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 31,5484678916045 ; 4,04188025308742 ; 6,80539400381936 ; 31,5482178916045 ; 31,5487178916045 ; 8,9 ; 9,6 ; -6,5 ; 8 ; 6,8 ; -5,2 ; 0,16 ; FutureAU2142 ; 267fcD77cc4BE169d2e8c3dd3bBcFCdcCba9cbDC3C54BADB19Df56D351EBDBDF ; < 4pss5H4k83ofGVHdMvO8pWTmRn6M64qV9Z5lknL7644Dm8CzpIzSatRxYgc6y0di > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 32,0572505487755 ; 4,8432658796766 ; 5,6189326262873 ; 32,0570005487755 ; 32,0575005487755 ; -8,2 ; -6,4 ; 6,1 ; 6 ; -7,4 ; 3 ; 0,16 ; FutureOC2180 ; DB7bbAA1BcdD7CdfBF3aBAfeF95F5cDdC424eD7Ece3F77C684a91D0BD8dEB79E ; < FdH8x2bpv7y2wH5s0OyIgWjIk81opGBY3b990O58Fe4ya20WZIc7Xh9YOH9EP64H > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 32,6596697766435 ; 5,87329803803142 ; 4,56070363961816 ; 32,6594197766435 ; 32,6599197766435 ; 7,8 ; 9,8 ; 5,5 ; -9,4 ; -8,7 ; 9,1 ; -0,58 ; FutureDE2129 ; edFf2d2DEb46A15A55fACBd5fD3ECcA32F60E92bb0Cbc921Ffb8bC2c13CDf1Fe ; < hlz263b8bIvv45TwjEbzr6nA55Zmgss73D8Aljc2u4rCdD1DpLPe0S10wC9Xbpk8 > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 33,1598876010461 ; 7,20845609854301 ; 3,60013727596239 ; 33,1596376010461 ; 33,1601376010461 ; 3,1 ; 3,5 ; 3,3 ; 2,2 ; -0,9 ; -0,4 ; 0,88 ; FutureFE2276 ; 1d8afCfc4b8DCeaCf682F29dBEbB5C47C9dC5afb4BBEfBbEcdCe65e0dD9AE3d1 ; < Bb34vL80gJ7Q5bscVk15A8191UCm2xgDR7KWPia97D3P7YjpRFxM6HNt89z40G6L > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 33,8376937315093 ; 8,95461718588486 ; 2,77879847112253 ; 33,8374437315093 ; 33,8379437315093 ; 6,8 ; 5,6 ; -9,1 ; 9,4 ; -0,3 ; -3,4 ; 0,77 ; FutureAP2248 ; b9AFF8B7cCDA3cF3D9eff2fFa893cF6F5CE4d39DB4Fdddbd4CCfaFfbFe6FD129 ; < 3oGVRt4z7Pc4GM4ggU43NM3kJ0rvZxsrmwHR9TL88Lt6lq8CzSLBok5vsw88Q2yL > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 34,4805753685878 ; 11,2597813450131 ; 2,06227752671761 ; 34,4803253685878 ; 34,4808253685878 ; -6,7 ; 1,2 ; -2,4 ; -9,5 ; 7,4 ; -4,1 ; 0,25 ; FutureJU2252 ; bcC578CeF84eFAE6b6ccabADaEdFcDbF84D1d6B8dBB51AAaF4afafe6e01DCbDb ; < 7DvkRiy0okcLgE5858Fxt9qbwRWS5M0H7xjrS4K8P2ZHpcg0daCK3eyAL2Qr1h5K > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 35,0058940089548 ; 14,3293517656877 ; 1,44295028703099 ; 35,0056440089548 ; 35,0061440089548 ; 1,5 ; 5,4 ; 2,7 ; 0 ; 9,3 ; 5,8 ; 0,95 ; FutureAU2230 ; a6CACfEFbbFBAA706331C8C7815eB5a26b6bAD1cDaA8B8Fc1BbbbaFB63Ab3bAc ; < vp24Ij0qDI60t664429wyOh7kUi1di2Lp99E6a0144mFXQ84RSo88Tt195bdywT5 > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 35,8409622066643 ; 18,4577499874342 ; 0,941783924425475 ; 35,8407122066643 ; 35,8412122066643 ; -6,5 ; 8 ; 9,7 ; -2 ; -7,7 ; -8,2 ; 0,11 ; FutureOC2293 ; 0AEbfaeacC9C7ccDe81033Aa5cFabBCaDb4808DdEa1CEF74FfB6C68dCAFB5cbb ; < Ss6Sy8ahoIn6SR1sPTeak2o94jR39UCl7jqLKoLMd7691nQ0Pvx2h2u44D7UKf4h > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 36,5181543060978 ; 24,0642562142933 ; 0,517526824053979 ; 36,5179043060978 ; 36,5184043060978 ; 4,4 ; 9 ; 6 ; -8,4 ; 5,3 ; 5,4 ; 0,81 ; FutureDE2298 ; Ee6a64e2AeCa2cCc5C54DddbBdDdBE10FE76EFA6ccA6DeAcdEFeFf52cb610372 ; < 4rNb9vXfWGbi9vdznZ7WaOpq173kgV3SpmQOXPCFUb16fn47h1xYtOSE1UbTr28Z > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 37,2368729556471 ; 31,7539835653543 ; 0,172667765573671 ; 37,2366229556471 ; 37,2371229556471 ; 2,5 ; 9,2 ; -6,4 ; -7 ; 6,2 ; -4,5 ; -0,58 ; FutureFE2332 ; F4b30A3A78efcbDdbDcdEf3F7d7b8c0BACEccfceec1A6EC0bbf5CFb24aDB50Ca ; < 9fxtIPni1kx8y1C2RkV9V2qwIk15t87QU6p9i0Mwm7HMHZ5bhe7YweP6IK7K34D8 > > // < CALLS ; 3Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 16,9188468657546 ; quote ; 61,5308193640129 ; 60,3002029767326 ; 0,0204081632653061 ; 5,6 ; 56,6083538148919 ; 66,4532849131339 ; 7,5 ; 7Afd4d8acA4BCdfDbc4B4A57aFD38cbC94b9E4bC570fBdAb9eACdFd2AfCb9C98 ; < TQf10uzmN7z3SqxS25374Bli11wO99lOJ14o3W1fGXXDTr875lB8JTFfQhTeBMh1 > > // < CALLS 18,6107315523301 ; quote ; 58,045248210132 ; 56,8843432459294 ; 0,0204081632653061 ; -1,8 ; 53,4016283533215 ; 62,6888680669426 ; 3,2 ; 73b34bFfBAA0B4BAdE50A2c6Ac3cbA8E6Ded3B0e9dEe87b09fb035e6C197BaeD ; < Hd9M3997F9BBha8i8CPEv0MrDIGcM9AkRL3nrm5p81vFZ2q22B58S6m5Qu1mvgvQ > > // < CALLS 20,3026162389056 ; quote ; 54,6875870286012 ; 53,5938352880292 ; 0,0204081632653061 ; -0,9 ; 50,3125800663131 ; 59,0625939908893 ; 6,6 ; 0CBEBAfF201A887B86676DAd5cFDEfA0AcDF9bA7f6F2a47b0cb2f4C9AEdfda3a ; < 2CzHX6z5iHg5H31ib4uQ2Mfr5302u6oo6tuzZ7v5Zz0BIwX2bPuEi715b37958G2 > > // < CALLS 21,994500925481 ; quote ; 51,4669757423064 ; 50,4376362274602 ; 0,0204081632653061 ; 6,6 ; 47,3496176829219 ; 55,5843338016909 ; -2,1 ; acA42efb7aEae1F8bfAaeBEaC7eBbFFFDCCdAaCf9FDa3C4AB8cabDA3d6DdDCFd ; < jhdf1G1mNH1T1BCgOBezA15bczrU1Krm2FvrM56WNXbT0703DhH6Kud0XRvC7vFa > > // < CALLS 23,6863856120565 ; quote ; 48,3896143750377 ; 47,4218220875369 ; 0,0204081632653061 ; 8,4 ; 44,5184452250347 ; 52,2607835250407 ; -9,2 ; fEFdaA76DcBaCA1bdcaC8bBCC27f5d5eACEe8E73DbCbeDB1Dc4b60Aac04FC7d1 ; < eq29R317joCtj7cgUAZYhg0o8462BI7S013Mmy4I6rfT5s1aq0nV5zednZs2J21l > > // < CALLS 25,378270298632 ; quote ; 45,4590564027714 ; 44,5498752747159 ; 0,0204081632653061 ; -0,7 ; 41,8223318905496 ; 49,0957809149931 ; -5,6 ; d3AbC3f47C3c5cb226e7fEcB7CcFAC0Deceb49f63B1e4b1fBDecca6ec7FAC34b ; < n9A61vp4JpxGqdo417ejMIk3424X20HNWk6haFbRf6G99PbZoY7I0TuJWMjz85uA > > // < CALLS 27,0701549852074 ; quote ; 42,6765659694769 ; 41,8230346500873 ; 0,0204081632653061 ; -7,4 ; 39,2624406919187 ; 46,090691247035 ; 7,4 ; 3FBC816A7FEabf2Ca69efc69AdCe0fEfD1aE632AeCDA19Db9Dc1bAEabDAaCbe4 ; < b70P8zDD37446490C9h8U7Z4g12B7Qzj3K2VB4023j1y0S1r1Y065j4gXXgVvjjR > > // < CALLS 28,7620396717829 ; quote ; 40,0414910307221 ; 39,2406612101077 ; 0,0204081632653061 ; 0,7 ; 36,8381717482643 ; 43,2448103131799 ; -0,5 ; BdaBFBcc35D15CC7CdFFE0B575CdAFDBb6F7d5ecBfFbe79762Aa2f7B74DA4bF2 ; < PQ4HN6S3s7RlXY55CV0ozImhQuND1w3U006MW4bwQh0y12RA9mdQSM01t3ld445l > > // < CALLS 30,4539243583584 ; quote ; 37,5516227399988 ; 36,8005902851988 ; 0,0204081632653061 ; -8,4 ; 34,5474929207989 ; 40,5557525591987 ; -0,3 ; eb6Ed7bCF2abD3abDD63Cdd5F6dBbEA2f62a98D44Ab3Bcef69EAC4Eaea300a5d ; < bd1dI4GRvw7s5e1jwx3XWqRAcv7waz8kl9xWML9qL6886n5Zp27l7zXVoZLvf210 > > // < CALLS 32,1458090449338 ; quote ; 35,2035243902198 ; 34,4994539024154 ; 0,0204081632653061 ; 7,3 ; 32,3872424390022 ; 38,0198063414374 ; 3,4 ; 477DAe8ad7d3d16cafc08EafddeEBADEe10FF8fA1aCFBD6dC514E8a3a67FA427 ; < R1lgr3vfkL0gUt5SIz9vx7X8rpGTMn8ixA277j1N5qP0R8ilS4r5jjXQcRYt4s6g > > // < CALLS 33,8376937315093 ; quote ; 32,9928219942121 ; 32,3329655543278 ; 0,0204081632653061 ; 6,6 ; 30,3533962346751 ; 35,6322477537491 ; 5,6 ; e909BDb72ebA94f040ec1bE45E69EaDedfCEDeb8b4aEBeFE6f70ABEc9Aa5b5Cf ; < 6isB30xUTA7B6ylw1MTMv91Q5FO6lWr26vv3q1nxju8Q97AScA0R0ToG23Np8lj0 > > // < CALLS 35,5295784180847 ; quote ; 30,9144542159824 ; 30,2961651316627 ; 0,0204081632653061 ; -5 ; 28,4412978787038 ; 33,387610553261 ; 8,7 ; 0BCB695DaFa2AEE0B8536Af1aeCF8EAEFf7C0392Bd75AdbD357CBFb78bbC65b9 ; < 94wqiK1Jw0d22NdyorGfa74zzX6FRKArh586K8PgOetf5DGG00GCUKuHt8Oo5J1w > > // < CALLS 37,2214631046602 ; quote ; 28,9628827714671 ; 28,3836251160378 ; 0,0204081632653061 ; -9,5 ; 26,6458521497498 ; 31,2799133931845 ; 1 ; BefF7Df2FbfbFfAad0d6AbEDdAfEAcdd2Bfc4EfBD5c7D15F61Bc3aeD98eaa6D5 ; < R7o9i3juSk57b260j89n81ODQUIf7D2r4l936fhcEzaFdg20TCwv3rlmFrwV41LD > > // < CALLS 38,9133477912357 ; quote ; 27,1322663162922 ; 26,5896209899663 ; 0,0204081632653061 ; 9,2 ; 24,9616850109888 ; 29,3028476215956 ; -7,7 ; 239DBFE4aC8aAFe6Af00BBef0efe9e55EBFcA3f9CdEEa3c03e82fCFbfE8edf88 ; < 9Oj6Oe1A1vJiYnJPMsj70Vtk7Au79arIzyPN21QXiU332aDu7q07q2lU06D41z5s > > // < CALLS 40,6052324778111 ; quote ; 25,4166017493327 ; 24,908269714346 ; 0,0204081632653061 ; -9,6 ; 23,3832736093861 ; 27,4499298892793 ; 1 ; b6ccAe7dbeA4DeB2088bBfF501FDb56CCdDc9Dd03fCEBBaF8a199Af4c3446cfA ; < NfqO1P553N5clAmWnxWMme2Nr6fX2w1e94I4VKLDQemfc0K9blsl5c21yu4QpSTl > > // < CALLS 42,2971171643866 ; quote ; 23,8098371502222 ; 23,3336404072177 ; 0,0204081632653061 ; 0,4 ; 21,9050501782044 ; 25,7146241222399 ; 5,4 ; eaced49D3E94Bae1FafdB0cCefc7CeCB8F450F87b7fcE8F2Bc97f2Eebf4D2C1D ; < c0H187RfvylUXFwNHmFY8Vmgt92nWjegGnP5s5iJ2xL2zg3Aoj7Mi1t9036ulKz6 > > // < CALLS 43,9890018509621 ; quote ; 22,3059604855858 ; 21,8598412758741 ; 0,0204081632653061 ; 8,3 ; 20,521483646739 ; 24,0904373244327 ; -9,2 ; 7f7Cc3a30AB40FebdA3bC5BbCcD8d2bCAAb7181d2e7EbbC2BF2384aF2EE9BcE4 ; < gOYFx60DEC1sWsI6Yo096KE2vb7d2439jtz7Jz2yzf74E265u95Fgunss6bLKVvK > > // < CALLS 45,6808865375375 ; quote ; 20,8990679279314 ; 20,4810865693728 ; 0,0204081632653061 ; -9 ; 19,2271424936969 ; 22,570993362166 ; 4,3 ; D41f996aFbAf0ED9cFfcCaddA87bb4C32dEBbC2EaF844aaD37Bac3Dfe1c6CaD0 ; < cDeMoLuxy6z7Y9c5JKeu1sgh9S86htek2250jKrZjkZ83n2RCV7452laMQ8H2M2B > > // < CALLS 47,372771224113 ; quote ; 19,583415239393 ; 19,1917469346052 ; 0,0204081632653061 ; 4,7 ; 18,0167420202416 ; 21,1500884585445 ; 2,5 ; 3Ea8f5c1DE40d5cfbbCB1dC7c20AEf2902FB1c1AfCeBEaCf3c1cBefBA2B5c27F ; < M2HwWbxHOWNB7N5JM5ECo7qX1OkNE1c7vDf2Hd9tr2V2NIe5zI6K2fsR01c0MG3O > > // < CALLS 49,0646559106885 ; quote ; 18,3534552464126 ; 17,9863861414844 ; 0,0204081632653061 ; 1,4 ; 16,8851788266996 ; 19,8217316661256 ; 2,3 ; aAE1Cf46b6AB6ffEd9BBeDffa453c7ADd2FF6A1d6Bfc04AaA1FfeEb479BA0e5b ; < fPW6cYP5BLxn0Brw08QIG2QDz0eBg8pXZV29YZ4S590OJmmrD9u910dd868QIbET > > // < CALLS 50,7565405972639 ; quote ; 17,2038640106649 ; 16,8597867304516 ; 0,0204081632653061 ; -2 ; 15,8275548898117 ; 18,5801731315181 ; 6,1 ; CaA6f6Da9AfA0F6Fe2fAabE3cfCC6608fBd7bdafdC62afb9fDEAc2FE2E6eFFEC ; < trWRHPUjf44CI2qkd3FgXRg5234IOXe85Xsb7cYk0cs0355tOrSnynZqxJLsdvnm > > // // < PUTS ; 3Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 16,9188468657546 ; quote ; 0,862212417340544 ; 0,844968168993733 ; 0,0204081632653061 ; 2,4 ; 0,7932354239533 ; 0,931189410727787 ; -5,9 ; d79cdE8eb6fA0f3CeeacDEdDF8cbbccd3d08CDd1bF2e8CbC7dB5cE680ED1AF7A ; < 3lTXH3TUbh9Zg42UyEqx7CRPiD9p1JCL27wG8tQM8A2Nr512EtIiy90aWXLs28Mj > > // < PUTS 18,6107315523301 ; quote ; 1,30978056879249 ; 1,28358495741664 ; 0,0204081632653061 ; 0,1 ; 1,20499812328909 ; 1,41456301429589 ; -9,3 ; C3e65b2e56Cb20ddbF2BE44B9BD7BD4a5CFe04f3E1C0d8d5bA26FFBaAFB58518 ; < wW0K0tZs3wxQ208J8u0Z7PE9D8o09cqZS92u4DsHn775EcSjH88mScaBL5F90E29 > > // < PUTS 20,3026162389056 ; quote ; 1,88525869259442 ; 1,84755351874253 ; 0,0204081632653061 ; -2,2 ; 1,73443799718687 ; 2,03607938800197 ; 3,2 ; ECb90eBCEe6082Bf65dC7EBc2Cdb77eEDABb7eEEdD227aDeCcbd4addBCEC93d0 ; < G6HHd8vEK9i6ec12I47P6hqG3T7m9lGbmE9wDlGT8RuCaHJU6RL02373pYlfDL7X > > // < PUTS 21,994500925481 ; quote ; 2,59778671163235 ; 2,54583097739971 ; 0,0204081632653061 ; -1,4 ; 2,38996377470176 ; 2,80560964856294 ; -1,8 ; dd9fB54AD6bFc523A3bCeCdcd0bcbBF0Dc4A4cdFabce4FAEC0dc3e2dEdb58E4E ; < agrfVyX4gaH1M4BA0ES3Ff5Lr4T50aJ0IYi134p0FUkj9CE3MKsjz2ry4wBEYxk7 > > // < PUTS 23,6863856120565 ; quote ; 3,4535646496964 ; 3,38449335670247 ; 0,0204081632653061 ; 9,6 ; 3,17727947772069 ; 3,72984982167212 ; -3,8 ; adAee6DCAE50ae0bCafAa8FEb5285D38dBF0bA8ffE4c8Ade0f4aBfee37D4f946 ; < 338Z2utCUPh5lf76W2pM2a8FNVggFsSdgyR4r4k2G903k65va2f44B7KeD5nfY0Q > > // < PUTS 25,378270298632 ; quote ; 4,45614598276286 ; 4,36702306310761 ; 0,0204081632653061 ; -8,7 ; 4,09965430414183 ; 4,81263766138389 ; 1,2 ; Fd5fc5AbdAa1C2FBaDB7BCEE9ECbD17Ad5c0BcF4d0E4cb4ebE0dBBbcFeAC4Bed ; < TnSBzhAg1QzN2HQMZse33F0k5m7v1E8KkSikPi822WPq4cv3jZ13vipsl4z338vT > > // < PUTS 27,0701549852074 ; quote ; 5,60679485480114 ; 5,49465895770511 ; 0,0204081632653061 ; 0,3 ; 5,15825126641705 ; 6,05533844318523 ; 2 ; 1A38Ec21ADB7A73C6FeE8CC3EdAB3CeCD60BbF8bBB12dFB8F79efDaC7D8c4EE8 ; < 7O03idJWF42nM2Nbf164ld14KR8DMVUmI8iqo92J54fQ5oJtm7L5yGP1JEGs22T7 > > // < PUTS 28,7620396717829 ; quote ; 6,90485922137916 ; 6,76676203695157 ; 0,0204081632653061 ; -6,9 ; 6,35247048366882 ; 7,45724795908949 ; 6 ; 5CDF9A9FbEeD21dDde8D1A18C5Da7C7CB20ceDf7c2Ac3A6aBaCafdC5c16B62fA ; < 8Y1kp4NxQyPTqCJ2Ut9sr4xrVKdvWp68mU202795do8QTB03UJyI4wjjnq4AIWIc > > // < PUTS 30,4539243583584 ; quote ; 8,34813023598858 ; 8,18116763126881 ; 0,0204081632653061 ; -1,9 ; 7,68027981710949 ; 9,01598065486767 ; -4,6 ; 4CCCe86BfdF3cd39c73EbD0BC3A27cB2CEEa46Bc5DAb6fcbA16ecA439BF59A32 ; < taAo0c9a11DHOxG0E9R52qaZW7jA34c1Hd0qau7AelDk896784xZsqt6V39Dn7Ph > > // < PUTS 32,1458090449338 ; quote ; 9,93317119154237 ; 9,73450776771152 ; 0,0204081632653061 ; 4,9 ; 9,13851749621898 ; 10,7278248868658 ; 5,9 ; EBB42d2A24124bcA4ec8Fbfe6Ae5db2b61fAeB4fC6dF7E9cf4D5Bdb6CCA43A1a ; < zGbEoB36l9m42rg2F34lY91c88d4a12M6g0O341bft140LRHuBxpZclId93Unx6E > > // < PUTS 33,8376937315093 ; quote ; 11,6556081008674 ; 11,4224959388501 ; 0,0204081632653061 ; -5,2 ; 10,723159452798 ; 12,5880567489368 ; 6,2 ; CdCDDDFfe540ad0faCaCADEbDd8DEc11Cdd9CaF3aeB5544CAbbfFEF4b000ECDb ; < 5coMc9QQDPFYA42Ql2vuSX1ZU0cGD4dJ2D9Kk0KEI7FIgEFH0gOWeL30esLx6d3c > > // < PUTS 35,5295784180847 ; quote ; 13,5103796279705 ; 13,2401720354111 ; 0,0204081632653061 ; 9,8 ; 12,4295492577329 ; 14,5912099982081 ; -1,1 ; b8BF7e72dB408FBdbfd04CDa00336fdFfBBd95E5baDB8bB7AdBfACE5Fa9dfDCa ; < VS7orYHpn5Anz7QnFsKEV4rCX9599LTNBA8zK1EW0D6K5XbyeIsz5V26y0XCGXWP > > // < PUTS 37,2214631046602 ; quote ; 15,491947488788 ; 15,1821085390123 ; 0,0204081632653061 ; -4,4 ; 14,252591689685 ; 16,7313032878911 ; 5,7 ; C8F8C1b8ba3BDF6EeBee1c87B8cC46b9DEf0f0ef81a8BB5F6bB115feCEe159ac ; < 6lqqvBk86fGHlBioW8brIIxfv8ndjX37JdOD48xloX530zJFCIIKA21hu1dBsjjS > > // < PUTS 38,9133477912357 ; quote ; 17,5944703389458 ; 17,2425809321669 ; 0,0204081632653061 ; 1,9 ; 16,1869127118302 ; 19,0020279660615 ; -4,7 ; 8bdfAbFFCD850eE6eFDeaD4A7BaEecCbDb7AeBE6cFCb01842CA4B6eb717c26DD ; < agxo3HQdb9QoFG9eHq9u1avJ7VR611OnzzU8b8uqG3Jf8J0Hvueb8yN7G4fD0IW9 > > // < PUTS 40,6052324778111 ; quote ; 19,8119450773191 ; 19,4157061757727 ; 0,0204081632653061 ; 2,5 ; 18,2269894711336 ; 21,3969006835046 ; -8,9 ; fCc9B0A8fcDa83f3d7EC7DCaFedeb8f8DC8CAC4eaAcadDDb1a99435C47EEa1E4 ; < yPW1afMJgJ648OCZuvp5K8JVch08Ov7RSreHN95gotzyK27775e151l4b2gY6p6V > > // < PUTS 42,2971171643866 ; quote ; 22,1383197835413 ; 21,6955533878705 ; 0,0204081632653061 ; 4,8 ; 20,367254200858 ; 23,9093853662246 ; -9,9 ; dC7CE8cbf2EA4efAd6ACd06c41CEe71e4a77C4CcA0cFeD0EBA9eCb44f30CB584 ; < FDT1GXTbD8IQZe7440yxi4K6QlIUA4Frc6q74VHU73Nc81JUoY6bN02p24Vz77vy > > // < PUTS 43,9890018509621 ; quote ; 24,5675824242378 ; 24,076230775753 ; 0,0204081632653061 ; 4,6 ; 22,6021758302988 ; 26,5329890181768 ; 8,5 ; 7ea8abBB6E656EE7fE611bB74d1C6f0E21A37eBb34aF6ddfFCD13adda39BDcdd ; < 63865z7Mt2592OGuPpPf45U2sP6iIRK1rEFU3NMnQ74pwo0SA07537j9r72MCrp4 > > // < PUTS 45,6808865375375 ; quote ; 27,0938291719162 ; 26,5519525884778 ; 0,0204081632653061 ; 1,8 ; 24,9263228381629 ; 29,2613355056694 ; -5,4 ; f7dad9fFAD0eBD0Ef4EDAbeBAFacfAAf39aC7Ad582Db8eA3De3B8EBa0D51FCeD ; < n0375tA572q4Nnz9sKCaNs7bV3Qd76u7yGKp1L30L2kE53JgvJ016g3kej9S22BK > > // < PUTS 47,372771224113 ; quote ; 29,7113157887105 ; 29,1170894729363 ; 0,0204081632653061 ; 1,4 ; 27,3344105256137 ; 32,0882210518074 ; -8 ; 9ee5bBB0fbbAD9f0c5E9aaa4cBBD34B50ADdCd76e31EefFB4cB02FDb158e5D2b ; < l13FSJD8P4m37y727s824TWe4ruF2ZO34nI74C1LY6Cc3S7o3POGE56A71xbE8dt > > // < PUTS 49,0646559106885 ; quote ; 32,4144951010629 ; 31,7662051990416 ; 0,0204081632653061 ; 6 ; 29,8213354929778 ; 35,0076547091479 ; 4,4 ; 8badcd5CdA17dE7EfcCbb4eD44ACD3F3EBfEafaaAb8E8CdcEBCdbEcd1afA0DDc ; < 6517h5P1n5Hf37NrGLrWKvrq5xu7mE15VV643fuvmB37z1P9d0Oc83Fe02E40lAe > > // < PUTS 50,7565405972639 ; quote ; 35,1980431706479 ; 34,4940823072349 ; 0,0204081632653061 ; 3 ; 32,3821997169961 ; 38,0138866242997 ; 5,8 ; cAD0cbdCBe4fd1FA25Fcb5dbD0e3D6Eb0ac80cbDD14F9aDca5608D3Ee0daD2f8 ; < bKNcPQVR81S0KF33I3k9YPyBq0MggwO9L0i6DGx1C6qLqVPidtJP9mKb0muYIN7x > > // Futures_Teploseti_LLC // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 25,994915 ; 1,14 ; 21,8025570175439 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; a6F803Dd23bDAE78dccAd3aA73eC8Ccc8A68A8fd2c7EBB9CA56D68bfDEcbB2dd ; < wg3lWlODG00cay8bxTw951Afy49NApOW3ovKQYF9lp9RvQgw27Cm5L1t8c88Ga9c > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 25,995648944215 ; 1,14003648 ; 21,802471149182 ; 25,995398944215 ; 25,995898944215 ; -0,3 ; -7,5 ; 8,9 ; -3,9 ; -6 ; 2,7 ; -0,34 ; Future47AP19 ; 7938bc5D4ADC23df07A47ac60FDcF15da521bbd2A96DD52D8eA6fFDD6210BEeC ; < Dr8zvEBe73ubUs3qBcyOcxE6FG546OFH2KdM3DAys101O59dgKK67423eitwEn56 > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 26,2753419638376 ; 1,15382109326135 ; 21,7724576342843 ; 26,2750919638376 ; 26,2755919638376 ; -0,8 ; 7,9 ; -3,8 ; 9,1 ; -4,8 ; 1,3 ; -0,07 ; FutureJU1969 ; f4cc9A0a7CC61ABdbC99BbB1BbB2AFfAb2ed1F4aA94be4Db931BaEcFDaD8cAf1 ; < 4S14vTq52ky39Com1xaLZI21E6v5TvGb2x2OP71GH793cMiK18T3ry2d7kU9IEf2 > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 26,5796677629975 ; 1,1818956457141 ; 21,4890140338389 ; 26,5794177629975 ; 26,5799177629975 ; -5 ; 7,1 ; -3,4 ; -8,1 ; -8 ; 5,9 ; 0,51 ; FutureAU1924 ; 74eCDaeBF7CD3aAAb93C2f6b7d14A2BCCdAAc9C8a9cB111fa3cAC3F6a2cb454B ; < 6Rkzj0RoKgzYmUCxZ8e5s1nbjtwe1DGw2q8oQyPkh3YGEd49U71jC2Y205z6sKgv > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 26,8908505283184 ; 1,22552067586766 ; 20,9423882908216 ; 26,8906005283184 ; 26,8911005283184 ; -1,1 ; 3,1 ; 6 ; 2,7 ; 9,4 ; -7,6 ; -0,8 ; FutureOC1929 ; 7cBf9E9b865de6b20bD45fe5ed55C2BCd9FaDcBA0BfCd1d3bEF66Fd7d494C7Aa ; < rBi5RNA4iQY0b47K0aX22PX87X1tmV9fBXt2AXX2kdslV015W3GRlJwsZxkA25M6 > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 27,236863510922 ; 1,28597434253225 ; 20,1799431840056 ; 27,236613510922 ; 27,237113510922 ; 0,5 ; 9,1 ; -3,4 ; -0,7 ; 4,8 ; 4,3 ; -0,87 ; FutureDE1986 ; dfdCFEda0CbAb2DebCa3c9Ad5cA72C8b1C9DCBb21B8aDcBe0B46DDFEbFd24c8d ; < 4U3Wg0awLQrv1Yv3W8AWbNbq4qr305s93WjEQbAI7YVXVAl06GvGJ3bAVI539rw0 > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 27,564312651388 ; 1,36580804930367 ; 19,181688536278 ; 27,564062651388 ; 27,564562651388 ; -2,3 ; 8,9 ; 0,5 ; -7,4 ; 3,8 ; 2,7 ; 0,37 ; FutureFE2083 ; DD8aAD9BcafEFCEdD9CCeCB4fdDD31C7dd0CdEe3b1ddf8F1efd2d8AEC7aDfDDF ; < ge89HqeF07O9iih1N5Jop8vXkFVetEQr9Cdna094LXOuWkAxDfBJHDborrSC8gAl > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 27,94286995044 ; 1,46815624128629 ; 18,0326268857861 ; 27,94261995044 ; 27,94311995044 ; -3,9 ; 3 ; -3,8 ; 4,7 ; -7 ; -6,7 ; 0,42 ; FutureAP2091 ; bDBDbECbfECc409A08840E0F321CCFEb1A5cdfbFb1Bc6dB449C2ffE39eFbbf8E ; < t6s1QPn4FaHleVNam4Ik9Q06Rc82HGW29m47m3Vpj384V3y36Y42RNS7d3aOG7uN > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 28,3151312833803 ; 1,59746536122074 ; 16,7250361546135 ; 28,3148812833803 ; 28,3153812833803 ; -9,1 ; 1,4 ; 0,3 ; 1,8 ; -6,7 ; 8,5 ; 0,03 ; FutureJU2069 ; aeef3AE57eEEC175fd7fC775ccE14f6bF4Fdeac8DddadaDaaebBC1C2fB3ba17A ; < tT20E3Jsn3soyhuFWpvUvNl5UxvJYVVq3ZH2z0UoWLzbhIA07isK7Mod11Wa2mrA > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 28,7253444532562 ; 1,75923236003563 ; 15,3283401930342 ; 28,7250944532562 ; 28,7255944532562 ; -8,4 ; 0,4 ; -4,6 ; -6,3 ; -7,1 ; 9 ; 0,06 ; FutureAU2028 ; A0D73AeCDE22dca02c4f6c3e92e4FBEbb81BaC42EDCF8F9B04Bc4eC36Ad93eC0 ; < f3o8PU3UE54JbN6O17gQHdo30rBw8VYtJNWt79u6Vy6Vk91K3gqt18GxSBPX0uB1 > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 29,1618824142211 ; 1,96077129067131 ; 13,8726588118479 ; 29,1616324142211 ; 29,1621324142211 ; -1,7 ; 0,9 ; -4,2 ; -1,1 ; 4,1 ; 0,6 ; 0,97 ; FutureOC2044 ; B1aDECfB0edAbd06331bCCdBEB87BD9abABe2fBcE473fcada5FBfdEF7bF7bAaB ; < 2B0SIT9oUT9FhrzmBJLtv59DKWuujxT2JjHO9JJNxAwJ49O2VzgLK7aqdG4B5XXX > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 29,6174705191772 ; 2,21212567513903 ; 12,3886925376949 ; 29,6172205191772 ; 29,6177205191772 ; -4,7 ; -8,4 ; 5,6 ; -8,4 ; -9,3 ; 6,9 ; -0,77 ; FutureDE2026 ; 4cfc1CfAe1E7D4C22aab29BAFf86a8AfdB6A795dfea5fbFE2add75d785bD5FC3 ; < d372vy9u2657OM3DMkEZnRyJwvI05JI5MzRH5ev4k49clGzf8ZP0A8FcxoZo0F3q > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 30,0268142636263 ; 2,52583462941153 ; 10,8878781350076 ; 30,0265642636263 ; 30,0270642636263 ; 3,4 ; -5,1 ; -5,5 ; 6,2 ; -9 ; -8,6 ; 0,34 ; FutureFE2174 ; 9ea7F967c9BCaaCCfAF3Aed3ab3ED6cC5FBCd7eBAbddd1CE335Ce9bbdEE2fcD6 ; < AUTcl1EY24LC8yVD192c5NRShpi537c4Exe2Z6y7GoR09510fH4focSFM241WwbX > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 30,5048040887795 ; 2,91893785029074 ; 9,45065213901046 ; 30,5045540887795 ; 30,5050540887795 ; 3,9 ; -4,6 ; 0,7 ; 1,7 ; 9,1 ; -7,2 ; 0,93 ; FutureAP2191 ; 23EFBf89f1F5cd0Eef6ae2f24fd307cEd30FBff1CA1b14eabb1BD02f8BcEAAF6 ; < h2q97g1T40au10L0e7724HTkHy6SVp68bxdEo3D3F1b5W5feY8L9mstWbDj56FXS > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 31,0329719390179 ; 3,41431822693473 ; 8,08906841026309 ; 31,0327219390179 ; 31,0332219390179 ; 5,4 ; 7,8 ; -5,8 ; -8,5 ; 6,5 ; 0,3 ; -0,99 ; FutureJU2161 ; 24519adaCCf46b61Fd2c4DDE638FBBEE2Df6dc4dECc17c9E7F8cAAd2488cABe6 ; < 0N241m86X0z9rg4nB4TzNy7YN434LQrub8klm0lh6F00yz1CW9Ibfe0cv0NXn204 > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 31,5484678916045 ; 4,04188025308742 ; 6,80539400381936 ; 31,5482178916045 ; 31,5487178916045 ; 8,9 ; 9,6 ; -6,5 ; 8 ; 6,8 ; -5,2 ; 0,16 ; FutureAU2142 ; 267fcD77cc4BE169d2e8c3dd3bBcFCdcCba9cbDC3C54BADB19Df56D351EBDBDF ; < 4pss5H4k83ofGVHdMvO8pWTmRn6M64qV9Z5lknL7644Dm8CzpIzSatRxYgc6y0di > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 32,0572505487755 ; 4,8432658796766 ; 5,6189326262873 ; 32,0570005487755 ; 32,0575005487755 ; -8,2 ; -6,4 ; 6,1 ; 6 ; -7,4 ; 3 ; 0,16 ; FutureOC2180 ; DB7bbAA1BcdD7CdfBF3aBAfeF95F5cDdC424eD7Ece3F77C684a91D0BD8dEB79E ; < FdH8x2bpv7y2wH5s0OyIgWjIk81opGBY3b990O58Fe4ya20WZIc7Xh9YOH9EP64H > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 32,6596697766435 ; 5,87329803803142 ; 4,56070363961816 ; 32,6594197766435 ; 32,6599197766435 ; 7,8 ; 9,8 ; 5,5 ; -9,4 ; -8,7 ; 9,1 ; -0,58 ; FutureDE2129 ; edFf2d2DEb46A15A55fACBd5fD3ECcA32F60E92bb0Cbc921Ffb8bC2c13CDf1Fe ; < hlz263b8bIvv45TwjEbzr6nA55Zmgss73D8Aljc2u4rCdD1DpLPe0S10wC9Xbpk8 > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 33,1598876010461 ; 7,20845609854301 ; 3,60013727596239 ; 33,1596376010461 ; 33,1601376010461 ; 3,1 ; 3,5 ; 3,3 ; 2,2 ; -0,9 ; -0,4 ; 0,88 ; FutureFE2276 ; 1d8afCfc4b8DCeaCf682F29dBEbB5C47C9dC5afb4BBEfBbEcdCe65e0dD9AE3d1 ; < Bb34vL80gJ7Q5bscVk15A8191UCm2xgDR7KWPia97D3P7YjpRFxM6HNt89z40G6L > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 33,8376937315093 ; 8,95461718588486 ; 2,77879847112253 ; 33,8374437315093 ; 33,8379437315093 ; 6,8 ; 5,6 ; -9,1 ; 9,4 ; -0,3 ; -3,4 ; 0,77 ; FutureAP2248 ; b9AFF8B7cCDA3cF3D9eff2fFa893cF6F5CE4d39DB4Fdddbd4CCfaFfbFe6FD129 ; < 3oGVRt4z7Pc4GM4ggU43NM3kJ0rvZxsrmwHR9TL88Lt6lq8CzSLBok5vsw88Q2yL > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 34,4805753685878 ; 11,2597813450131 ; 2,06227752671761 ; 34,4803253685878 ; 34,4808253685878 ; -6,7 ; 1,2 ; -2,4 ; -9,5 ; 7,4 ; -4,1 ; 0,25 ; FutureJU2252 ; bcC578CeF84eFAE6b6ccabADaEdFcDbF84D1d6B8dBB51AAaF4afafe6e01DCbDb ; < 7DvkRiy0okcLgE5858Fxt9qbwRWS5M0H7xjrS4K8P2ZHpcg0daCK3eyAL2Qr1h5K > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 35,0058940089548 ; 14,3293517656877 ; 1,44295028703099 ; 35,0056440089548 ; 35,0061440089548 ; 1,5 ; 5,4 ; 2,7 ; 0 ; 9,3 ; 5,8 ; 0,95 ; FutureAU2230 ; a6CACfEFbbFBAA706331C8C7815eB5a26b6bAD1cDaA8B8Fc1BbbbaFB63Ab3bAc ; < vp24Ij0qDI60t664429wyOh7kUi1di2Lp99E6a0144mFXQ84RSo88Tt195bdywT5 > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 35,8409622066643 ; 18,4577499874342 ; 0,941783924425475 ; 35,8407122066643 ; 35,8412122066643 ; -6,5 ; 8 ; 9,7 ; -2 ; -7,7 ; -8,2 ; 0,11 ; FutureOC2293 ; 0AEbfaeacC9C7ccDe81033Aa5cFabBCaDb4808DdEa1CEF74FfB6C68dCAFB5cbb ; < Ss6Sy8ahoIn6SR1sPTeak2o94jR39UCl7jqLKoLMd7691nQ0Pvx2h2u44D7UKf4h > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 36,5181543060978 ; 24,0642562142933 ; 0,517526824053979 ; 36,5179043060978 ; 36,5184043060978 ; 4,4 ; 9 ; 6 ; -8,4 ; 5,3 ; 5,4 ; 0,81 ; FutureDE2298 ; Ee6a64e2AeCa2cCc5C54DddbBdDdBE10FE76EFA6ccA6DeAcdEFeFf52cb610372 ; < 4rNb9vXfWGbi9vdznZ7WaOpq173kgV3SpmQOXPCFUb16fn47h1xYtOSE1UbTr28Z > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 37,2368729556471 ; 31,7539835653543 ; 0,172667765573671 ; 37,2366229556471 ; 37,2371229556471 ; 2,5 ; 9,2 ; -6,4 ; -7 ; 6,2 ; -4,5 ; -0,58 ; FutureFE2332 ; F4b30A3A78efcbDdbDcdEf3F7d7b8c0BACEccfceec1A6EC0bbf5CFb24aDB50Ca ; < 9fxtIPni1kx8y1C2RkV9V2qwIk15t87QU6p9i0Mwm7HMHZ5bhe7YweP6IK7K34D8 > > // < CALLS ; 5Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 15,2524020443897 ; quote ; 68,7696516082759 ; 67,3942585761104 ; 0,0204081632653061 ; -8,2 ; 62,9242312215724 ; 74,6150719949793 ; 7,9 ; Dcfda3f5a58Fa8fE8bBcF8BAdCEcb6DC7B53ab0495cDAfcfDbDa3aE5Fcd9BEDf ; < bhD0RrkL30aYy5wDe9TzJl54uV4lwD02DfCakrXjZ0eLTeKDR14JOkONz3tTzi8k > > // < CALLS 16,7776422488287 ; quote ; 66,0394899014161 ; 64,7187001033877 ; 0,0204081632653061 ; 3,7 ; 60,4261332597957 ; 71,6528465430364 ; -5 ; DEdfC2ABE8e48ffA26cBff324E4C1eAE960C815f7ea58568CcB2Aa330BdBbcDC ; < lhA9o3AYLInMZZKxN6KcYq72NYsik1RMV12Z8nl1fqDo3D5YjzYfO4L2fHmsxW8m > > // < CALLS 18,3028824532677 ; quote ; 63,4088182749812 ; 62,1406419094816 ; 0,0204081632653061 ; 9,6 ; 58,0190687216078 ; 68,7985678283546 ; 1,4 ; fd461Fab3EDA19A6a23DFaA9cDDDfE2daccdCAdFA3b96aDD003f13Bcc5aeEF00 ; < DDPVB26320ejYU6KByZdzC2bdO13AW2NPdbk7W074N0qso1WVs7EjzloH27N7IBI > > // < CALLS 19,8281226577067 ; quote ; 60,8785228676813 ; 59,6609524103277 ; 0,0204081632653061 ; -6,8 ; 55,7038484239284 ; 66,0531973114342 ; 8,7 ; D4801a5fbC6dCAaE3cEc151bD1CdFDcaabdEDdF8f1E39C4d3fAAA885dfC7FAD2 ; < S28fT3FD88pjA5DNVwbYgBX9ysW065671cURPtQWZ4I2c3d72n876oNpyvqZx89d > > // < CALLS 21,3533628621456 ; quote ; 58,4483243190617 ; 57,2793578326805 ; 0,0204081632653061 ; -3,5 ; 53,4802167519415 ; 63,416431886182 ; 6 ; 81aDA6CAB585b7dFf03879E1A7d1BB6DCcbcAEBcCDC3F3cce40bcEDfBda8b441 ; < JJTLyP9oeR8a4BCh91J8mgy4u2H8Qe8yRYW8LcAv4Klr6IGGuHm5m7VtBV81JW1B > > // < CALLS 22,8786030665846 ; quote ; 56,1170355544163 ; 54,994694843328 ; 0,0204081632653061 ; 9 ; 51,347087532291 ; 60,8869835765417 ; 1,7 ; EC01aCC5c8EB5ADD66cE5eCffEFdfFbe7a23d79684a113ddEcd7bcbfbc78e8bb ; < O89Dzsg4PD2afA69ZqMgZ25Ct9C4t6gQh5Fv95X23Op09JieTGK3l9fY0o2wE5Y2 > > // < CALLS 24,4038432710236 ; quote ; 53,8827769498618 ; 52,8051214108646 ; 0,0204081632653061 ; -2,7 ; 49,3027409091236 ; 58,4628129906001 ; -7,9 ; 0cB0eb3EC26aCBF0a1D08FAa9E2aFABf2b2cC8AE5CFdAd6AF1F1EECf487BFC9f ; < 57lY01x31p16Y783X6LjdRw9HC4iPYr5I5I7ATTBM3fFxuk65L0L5lZfwj3F36fA > > // < CALLS 25,9290834754626 ; quote ; 51,7431529046748 ; 50,7082898465813 ; 0,0204081632653061 ; -7,4 ; 47,3449849077774 ; 56,1413209015721 ; -0,4 ; db9139Bdfbd8cE7fc8c5Ec8cdcc1947e7CC5C8BFb9B2a57E0Fca2FeB6fd9aDAC ; < 2bd82Qh5zICIZ68vJw85nbi8oJQsx5ZGCcdvo7DXSkv8iPOML79L0b22L3n9f535 > > // < CALLS 27,4543236799015 ; quote ; 49,6953949372565 ; 48,7014870385113 ; 0,0204081632653061 ; 2,8 ; 45,4712863675897 ; 53,9195035069233 ; 5 ; 2fDF6cC3bD7Ca5A8BcaF7D7f2f755e3BFdDCe03CFdEAFf36b0dFD5c4ffdFe7a5 ; < vCc12smNQPckwQzk5P5mC4nLSJFT9s246pciP7CDvYvu7n794SyUaAfCUTrEKFPJ > > // < CALLS 28,9795638843405 ; quote ; 47,7364764920315 ; 46,7817469621909 ; 0,0204081632653061 ; -8,9 ; 43,6788759902088 ; 51,7940769938542 ; -1,7 ; 6fbdA44b76bCB5Cd1dBAC71Aa61DDbEdB06c34AB18F28BdbBEdA0DfaE338efF7 ; < 1Y1l3m16fSzBPt7y6t3tzcVFD69S04XX34eys808U249JHMxqlcDP2yJcn2vkzfu > > // < CALLS 30,5048040887795 ; quote ; 45,8632042431598 ; 44,9459401582966 ; 0,0204081632653061 ; 2,1 ; 41,9648318824912 ; 49,7615766038284 ; -3,3 ; d1C8dE7e2CBbCAe9f67Ae3dCAABaAeeCcB798B2BBeFDEaa37d8e2F444DCaEbba ; < Qk6190VmN06ex82wcoY3dxEASo24yYmAtQrO4lm1e1hq4kz3CMoL43vJ5m27YR9G > > // < CALLS 32,0300442932185 ; quote ; 44,0722900961976 ; 43,1908442942737 ; 0,0204081632653061 ; 9,7 ; 40,3261454380208 ; 47,8184347543744 ; -0,7 ; aDFAeFD6eB212DcfC8Da6fdAbB8a9DFdaCA71552EdDabfFAc4e6ADDF84f2ADec ; < TK4b2kmP8x0HQ7X9p7xYU4aX0UcZGI094B3593Gi8Wu1ZxY1E9C5FxQrnU8YZOWy > > // < CALLS 33,5552844976574 ; quote ; 42,3604074685174 ; 41,5131993191471 ; 0,0204081632653061 ; 9,7 ; 38,7597728336934 ; 45,9610421033414 ; 2,8 ; FB0E0e44A5eD1c497Dbb8230A2bCeE79d50af1BbAedbEFA3Ebe9BbBe60c098A0 ; < da9k4RLyz0ZSf759wdf9oX063sX45Ha63Bqww29kmmpsMx8fxX6VpTm5R8uwVP9Y > > // < CALLS 35,0805247020964 ; quote ; 40,7242348442273 ; 39,9097501473428 ; 0,0204081632653061 ; -3,2 ; 37,262674882468 ; 44,1857948059867 ; -6,1 ; fFaCCDC994b7bae2cBAec906EE370Afda98fa35D2EaaA2f71eeD82abcFbb1C22 ; < csQJ35yA1AL7zZMmut4ERr3QGNdvFgliUkTDC3Z91jSQNNqlHB54NqnF1VHHM1yW > > // < CALLS 36,6057649065354 ; quote ; 39,1604890792011 ; 38,3772792976171 ; 0,0204081632653061 ; 3,4 ; 35,831847507469 ; 42,4891306509332 ; 6,5 ; bB2EAF8c896E76cDDbF463c4B4EcD1AAcdec6d4E60DC5c3bFDcf3B5eA1bfdb5f ; < hh0r00a27WyjL9G57m74DX68QMyzY6Y6M78a6Obl6sB1m1wyHqMLG0165DjIpf3d > > // < CALLS 38,1310051109744 ; quote ; 37,6659504849378 ; 36,912631475239 ; 0,0204081632653061 ; -6 ; 34,4643446937181 ; 40,8675562761575 ; -3,9 ; BaAcbE8C6D6c6bEb7FfbAD7C4AA956fDFD9DBfdd341AfA5Fbec2D0baCF1C1dCB ; < Fptw47iKPnBbPjawjCtuB0KR0J8514lVUTfr2HmrhBrZqyl6zlgsf5648jAJM2T5 > > // < CALLS 39,6562453154133 ; quote ; 36,2374813440611 ; 35,5127317171799 ; 0,0204081632653061 ; 2,2 ; 33,1572954298159 ; 39,3176672583063 ; -9,6 ; baDcE0099D4FBd1F44cf4bBa4adD5d15e1dbDE3Fb4AEad9b4fccAc36c1EbF6cb ; < 60K5tWY842t8v89E9Ww71a69s9T1XYVd61N5d6QssR1ml5HsSc0QhLY4nSw31EUv > > // < CALLS 41,1814855198523 ; quote ; 34,8720391984027 ; 34,1745984144347 ; 0,0204081632653061 ; 1,2 ; 31,9079158665385 ; 37,836162530267 ; -1 ; cddbfeBc0c2CeF24DA8ACFFe3B9FBf5DecB36Cf07Dffda6Eb98aB1Ae3D4DbEfe ; < cOvm7or9vqme75HxTNOp638G3CF4vPvh512Sb0yYDb585KzU5Ucxv8PiNR82JFpC > > // < CALLS 42,7067257242913 ; quote ; 33,5666859942514 ; 32,8953522743664 ; 0,0204081632653061 ; 6,3 ; 30,71351768474 ; 36,4198543037628 ; -8,2 ; D5cfbEFdd6dF5BCFaee35DA8a6A61e2dCDf1fEeFBEEEDf4BA670F0AE1b8afeEC ; < 6LHB859eXx1nz7E577qpkND84kf5M6TE43fx5DxWmUA7wjXJ9dN1N4631enP8z01 > > // < CALLS 44,2319659287303 ; quote ; 32,3185939599338 ; 31,6722220807351 ; 0,0204081632653061 ; -0,1 ; 29,5715134733394 ; 35,0656744465281 ; 4,5 ; ebEbDCd8E968AFB1fD773BE4FC8b5f5d330FEeAc71eFbeeB25bc2FFc74FAA4eD ; < uU10v97U0BT5Pa5H5kTmHtZmG8TG1jZ3H3LBE608u5joni12kQiF07qB9F8K161b > > // < CALLS 45,7572061331692 ; quote ; 31,1250489205501 ; 30,5025479421391 ; 0,0204081632653061 ; 9,8 ; 28,4794197623033 ; 33,7706780787968 ; 0 ; fDeaeAA6bc0A3ab3afA331ab3438D90ECff0Effe7Db9c0c8e0fB1e021e41fabE ; < 5b00827CW4WxM1kgPa4R0iN47wC96X57Nc4808193tP2z22n7R95UmKxW87akhQN > > // // < PUTS ; 5Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 15,2524020443897 ; quote ; 1,45814086476824 ; 1,42897804747287 ; 0,0204081632653061 ; -6 ; 1,33419889126294 ; 1,58208283827354 ; -9,7 ; EdDDace6CFaAE9AFDFe7E793285F9dBedcF2dAd068AC4FA8DC89bF7bcDCACFd6 ; < 0012EnwdBe4NV8X4AUPBmSMSo3F1CqvGWPw6luJso42SV1h589Gs5AS4iZXpcjM5 > > // < PUTS 16,7776422488287 ; quote ; 1,99682808355766 ; 1,95689152188651 ; 0,0204081632653061 ; -3,6 ; 1,82709769645526 ; 2,16655847066006 ; 6,8 ; 9fedADF5602de8eaFfbfECeaeADCDaF7BB28fCDcBca7CBbE0BcacCeAf90ddBd6 ; < LE1pXKf4iWb9BWsnugWEfQZRZYePShwCOx0fa446jPA4iCyVy1a25laI2a8E2j0i > > // < PUTS 18,3028824532677 ; quote ; 2,63500538277204 ; 2,5823052751166 ; 0,0204081632653061 ; -3,8 ; 2,41102992523641 ; 2,85898084030766 ; -2,1 ; 6FB74ebc953Fed8A4dEB7AbFCAE8CA1BfCAFcdfE72ED6aDcaebce4dB2e2EC3ce ; < pc9sClatw7hOMV18ryN6Ij8PBF4W76O178N136jRaNNoHfFbp4jTO1f15mQgi9j5 > > // < PUTS 19,8281226577067 ; quote ; 3,37355890112138 ; 3,30608772309896 ; 0,0204081632653061 ; -8,1 ; 3,08680639452607 ; 3,6603114077167 ; -4,6 ; dDacbbDa8EF5f66E59C740045FAE8Df9EAECae1EdbeaEFeC41abfc5C0CBC0A1D ; < jLh4H07Rl3FrG7Ps95HxqL3eCsRKx3vfNeWm9CYE4Huzlo5eCubs056n71tIv2Ad > > // < PUTS 21,3533628621456 ; quote ; 4,21220927815102 ; 4,127965092588 ; 0,0204081632653061 ; 2,1 ; 3,85417148950818 ; 4,57024706679386 ; -4,6 ; 446D9Aae68bF27ae1ec0F5cDe5Fb9C3C6BE2EAFfd2a7babFa7aa20eaBfbCcb2A ; < ETlTR784b1Y9sL6W2CfL7tqbY6d2Vj6902SxxVJU18vNs7Rb7vI5F50C9JpK83Jd > > // < PUTS 22,8786030665846 ; quote ; 5,1497694391549 ; 5,0467740503718 ; 0,0204081632653061 ; -8 ; 4,71203903682673 ; 5,58749984148306 ; -1,5 ; 9a9a82Ab0BDFAc1daa481FB6eA0DAcDfB2AAA7c812aeA56efad0Ae5Db49B2bdB ; < 2x4398NE3uP8z8fcHZh1D07wj7sut5b8vPd7VC9Neyt3s1gM84ZbKrh425L3oMr1 > > // < PUTS 24,4038432710236 ; quote ; 6,18435976024961 ; 6,06067256504461 ; 0,0204081632653061 ; -1 ; 5,65868918062839 ; 6,71003033987082 ; 4,4 ; f7dBeF245b10e9DcC32A1B6a7dA68fFA5EF4aBEDEEAdD6c14c0dcfAfa616FC7f ; < 4og4535v1sB79w8KY65SFOpRu723kO799gAvx2Mcs6p6BFFa3q6FqQtymwrl1Q5N > > // < PUTS 25,9290834754626 ; quote ; 7,31358464071178 ; 7,16731294789755 ; 0,0204081632653061 ; -8,9 ; 6,69192994625128 ; 7,93523933517228 ; 2 ; f2b7DdFDD0a3e5e3c8c1F190CcFE1B965Eaa49Eba5dA6DFFefafC0C1D9b3aAfB ; < lkm025ESQEnZ05oLdEXrm9W08cr520h4frM8CaN5Bhvmjno046o48LIPL8aW2W5k > > // < PUTS 27,4543236799015 ; quote ; 8,53467559894273 ; 8,36398208696387 ; 0,0204081632653061 ; -7,3 ; 7,8092281730326 ; 9,26012302485286 ; -7,7 ; ffaDB0AFCFEfeA3CC4d2EAe91dDCc2bAfD1cccA2abbdF74BEfec454d43c6DCaE ; < xNN3iv7c2H2Y9Sln2hDd09PO5ItA2Rl4cjCrG2SC3P4zpz7WWiz0WDHJHca6xF15 > > // < PUTS 28,9795638843405 ; quote ; 9,84460607936701 ; 9,64771395777967 ; 0,0204081632653061 ; -8,6 ; 9,00781456262082 ; 10,6813975961132 ; 5,6 ; f8C9Dc7abFFee3f2D6bE9CA8aC3B4C20f9c5dCbeDD17DA0bE9e4DbcECabEedE1 ; < a80q4b0pbB3U2EN9o985LSHN8gG983CFDjBsSKU7427N34HXOaXDiCvA82Dx4lfG > > // < PUTS 30,5048040887795 ; quote ; 11,2401827561445 ; 11,0153791010216 ; 0,0204081632653061 ; 5,5 ; 10,2847672218722 ; 12,1955982904168 ; -6,1 ; 9eDAA87610EC7eAFe4eCd2Bfcd8D0B3da49c4AcC340b7d8bDe8dCeec3F5EEFBA ; < eE2RZqw19F2nvd37MVq40O4JiLw4bzFoLf87a5fsEIzH68dNs42PSW3eAhmQV9d5 > > // < PUTS 32,0300442932185 ; quote ; 12,7181175348316 ; 12,4637551841349 ; 0,0204081632653061 ; 9,9 ; 11,6370775443709 ; 13,7991575252923 ; -5,4 ; Dbf8F34FaC0dddeaEFd3fDbBCE4ab2366C1d3DebA201BbCfa7b7F16aDd062Ce3 ; < i9TSb0Lw5NAo99p2RgG0XWJUU4LIjpvA4LAg30LD5s42bN28kj6rPwqKAV8z3TnP > > // < PUTS 33,5552844976574 ; quote ; 14,2750838328006 ; 13,9895821561446 ; 0,0204081632653061 ; 7 ; 13,0617017070126 ; 15,4884659585887 ; -8,1 ; 5eB6e6F8570f5DB5E7BcBa9F23FF593d5e7ddDCADFD3BD64aFF26bfFaBDEB7Ae ; < cP7ZA33ZVa3Y2brsk6wg4a3x6hdj9vD7829B6n2azcc0P1Vyd54Zho32o442374q > > // < PUTS 35,0805247020964 ; quote ; 15,9077601341598 ; 15,5896049314766 ; 0,0204081632653061 ; -4,6 ; 14,5556005227562 ; 17,2599197455634 ; -2,3 ; da1AEC5FAF25c9BCaf3FcfDaBaA5aBbf23cca11bfFCdb76fBFe0CBCFe20eEAAD ; < 3Kohq3lKbL1dNU05iE006rMBx67D5OKn1FmBV05pOK5ty7JE1o788h1gr4obbPVA > > // < PUTS 36,6057649065354 ; quote ; 17,6128632947828 ; 17,2606060288872 ; 0,0204081632653061 ; -4,9 ; 16,1157699147263 ; 19,1099566748394 ; -1,2 ; 80caE3BF64E0bD6CE02BCFDfC9baF4BaBeB1EDaB68Cbb233a58AfC0bBddE60AF ; < 79tqHVp9wA6T8X1FWx0qnHRqK86682D0r8z2xrhx5v1iV1sR35d8NC994S8L7RHF > > // < PUTS 38,1310051109744 ; quote ; 19,3871736261687 ; 18,9994301536453 ; 0,0204081632653061 ; -7,1 ; 17,7392638679444 ; 21,035083384393 ; 3,7 ; Ef361Fe17BaFDC0aBCBf6FADDbbC8c2524F50F7abBcaAC7cdEBcAb9D7a79Badf ; < WmBj4GppB3bhiB5V5gbG239CL557gIzcnvdlc5ylh5127G0OoWmJayFY08lfB8J5 > > // < PUTS 39,6562453154133 ; quote ; 21,2275534109413 ; 20,8030023427224 ; 0,0204081632653061 ; 4,2 ; 19,4232113710113 ; 23,0318954508713 ; 1,2 ; Bcfc6001626453DDCb8bB95efe1cc2D1f06D6E0eDEE00e9cdcCAcD5DC0DF8cE2 ; < 4Hdeh2cA9UUtDR2bTPO32FX5F46P0UP78B16t58tK5Luo1UqFW352zQx3HR79zS5 > > // < PUTS 41,1814855198523 ; quote ; 23,1309601909321 ; 22,6683409871135 ; 0,0204081632653061 ; 2,7 ; 21,1648285747029 ; 25,0970918071614 ; -4,6 ; e8AeBD886bB00AcB5acbec8c373ECdddEcBD1ECBdC1B9c3f72A2eBeAa92eBc9F ; < 97QRt41bK4I63iVP70Q6986YhL9scV13vD6rk0gXF2DI29a38TS03SBiEW2dK122 > > // < PUTS 42,7067257242913 ; quote ; 25,09445591243 ; 24,5925667941814 ; 0,0204081632653061 ; -2,3 ; 22,9614271598735 ; 27,2274846649866 ; -3,6 ; ae1b22ECCecdAd3EF5caAaADC34faCDA8ed57DacCE72ecCcefDD9b6ADe72D0Bc ; < J24SKmxHF4hAEdOwf8XmwfkI786vYJ9Q8HMtSv31y2V6ngMlFBa085O9a3eBVAg9 > > // < PUTS 44,2319659287303 ; quote ; 27,1152128037616 ; 26,5729085476864 ; 0,0204081632653061 ; -7,6 ; 24,8104197154419 ; 29,4200058920813 ; 0,9 ; 9C4BDD09f377BeBced79AbeA16A1cfe1FcaCc6ACCE6aF9dAF0913bEFe9cfFFF5 ; < Wipp4sAUQG7JG5E7305cUQSqpD191P1T4q186n0N0oYtX3Ij0BJBHoLCNs93O5s7 > > // < PUTS 45,7572061331692 ; quote ; 29,1905166900272 ; 28,6067063562267 ; 0,0204081632653061 ; 0 ; 26,7093227713749 ; 31,6717106086795 ; -5,2 ; 47c0bFE6CEbd6cfd0fbDa1cd8EEE837f38cec9BAbd8aD2bCbb3C3caBD0BEb42F ; < NjAb7rN1rahwLa2Z4172w6zEaazR192i5a9J5FFrfXuT7d72MMzU6JOb0A9l288H > > // Futures_Teploseti_LLC // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 25,994915 ; 1,14 ; 21,8025570175439 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; a6F803Dd23bDAE78dccAd3aA73eC8Ccc8A68A8fd2c7EBB9CA56D68bfDEcbB2dd ; < wg3lWlODG00cay8bxTw951Afy49NApOW3ovKQYF9lp9RvQgw27Cm5L1t8c88Ga9c > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 25,995648944215 ; 1,14003648 ; 21,802471149182 ; 25,995398944215 ; 25,995898944215 ; -0,3 ; -7,5 ; 8,9 ; -3,9 ; -6 ; 2,7 ; -0,34 ; Future47AP19 ; 7938bc5D4ADC23df07A47ac60FDcF15da521bbd2A96DD52D8eA6fFDD6210BEeC ; < Dr8zvEBe73ubUs3qBcyOcxE6FG546OFH2KdM3DAys101O59dgKK67423eitwEn56 > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 26,2753419638376 ; 1,15382109326135 ; 21,7724576342843 ; 26,2750919638376 ; 26,2755919638376 ; -0,8 ; 7,9 ; -3,8 ; 9,1 ; -4,8 ; 1,3 ; -0,07 ; FutureJU1969 ; f4cc9A0a7CC61ABdbC99BbB1BbB2AFfAb2ed1F4aA94be4Db931BaEcFDaD8cAf1 ; < 4S14vTq52ky39Com1xaLZI21E6v5TvGb2x2OP71GH793cMiK18T3ry2d7kU9IEf2 > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 26,5796677629975 ; 1,1818956457141 ; 21,4890140338389 ; 26,5794177629975 ; 26,5799177629975 ; -5 ; 7,1 ; -3,4 ; -8,1 ; -8 ; 5,9 ; 0,51 ; FutureAU1924 ; 74eCDaeBF7CD3aAAb93C2f6b7d14A2BCCdAAc9C8a9cB111fa3cAC3F6a2cb454B ; < 6Rkzj0RoKgzYmUCxZ8e5s1nbjtwe1DGw2q8oQyPkh3YGEd49U71jC2Y205z6sKgv > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 26,8908505283184 ; 1,22552067586766 ; 20,9423882908216 ; 26,8906005283184 ; 26,8911005283184 ; -1,1 ; 3,1 ; 6 ; 2,7 ; 9,4 ; -7,6 ; -0,8 ; FutureOC1929 ; 7cBf9E9b865de6b20bD45fe5ed55C2BCd9FaDcBA0BfCd1d3bEF66Fd7d494C7Aa ; < rBi5RNA4iQY0b47K0aX22PX87X1tmV9fBXt2AXX2kdslV015W3GRlJwsZxkA25M6 > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 27,236863510922 ; 1,28597434253225 ; 20,1799431840056 ; 27,236613510922 ; 27,237113510922 ; 0,5 ; 9,1 ; -3,4 ; -0,7 ; 4,8 ; 4,3 ; -0,87 ; FutureDE1986 ; dfdCFEda0CbAb2DebCa3c9Ad5cA72C8b1C9DCBb21B8aDcBe0B46DDFEbFd24c8d ; < 4U3Wg0awLQrv1Yv3W8AWbNbq4qr305s93WjEQbAI7YVXVAl06GvGJ3bAVI539rw0 > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 27,564312651388 ; 1,36580804930367 ; 19,181688536278 ; 27,564062651388 ; 27,564562651388 ; -2,3 ; 8,9 ; 0,5 ; -7,4 ; 3,8 ; 2,7 ; 0,37 ; FutureFE2083 ; DD8aAD9BcafEFCEdD9CCeCB4fdDD31C7dd0CdEe3b1ddf8F1efd2d8AEC7aDfDDF ; < ge89HqeF07O9iih1N5Jop8vXkFVetEQr9Cdna094LXOuWkAxDfBJHDborrSC8gAl > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 27,94286995044 ; 1,46815624128629 ; 18,0326268857861 ; 27,94261995044 ; 27,94311995044 ; -3,9 ; 3 ; -3,8 ; 4,7 ; -7 ; -6,7 ; 0,42 ; FutureAP2091 ; bDBDbECbfECc409A08840E0F321CCFEb1A5cdfbFb1Bc6dB449C2ffE39eFbbf8E ; < t6s1QPn4FaHleVNam4Ik9Q06Rc82HGW29m47m3Vpj384V3y36Y42RNS7d3aOG7uN > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 28,3151312833803 ; 1,59746536122074 ; 16,7250361546135 ; 28,3148812833803 ; 28,3153812833803 ; -9,1 ; 1,4 ; 0,3 ; 1,8 ; -6,7 ; 8,5 ; 0,03 ; FutureJU2069 ; aeef3AE57eEEC175fd7fC775ccE14f6bF4Fdeac8DddadaDaaebBC1C2fB3ba17A ; < tT20E3Jsn3soyhuFWpvUvNl5UxvJYVVq3ZH2z0UoWLzbhIA07isK7Mod11Wa2mrA > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 28,7253444532562 ; 1,75923236003563 ; 15,3283401930342 ; 28,7250944532562 ; 28,7255944532562 ; -8,4 ; 0,4 ; -4,6 ; -6,3 ; -7,1 ; 9 ; 0,06 ; FutureAU2028 ; A0D73AeCDE22dca02c4f6c3e92e4FBEbb81BaC42EDCF8F9B04Bc4eC36Ad93eC0 ; < f3o8PU3UE54JbN6O17gQHdo30rBw8VYtJNWt79u6Vy6Vk91K3gqt18GxSBPX0uB1 > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 29,1618824142211 ; 1,96077129067131 ; 13,8726588118479 ; 29,1616324142211 ; 29,1621324142211 ; -1,7 ; 0,9 ; -4,2 ; -1,1 ; 4,1 ; 0,6 ; 0,97 ; FutureOC2044 ; B1aDECfB0edAbd06331bCCdBEB87BD9abABe2fBcE473fcada5FBfdEF7bF7bAaB ; < 2B0SIT9oUT9FhrzmBJLtv59DKWuujxT2JjHO9JJNxAwJ49O2VzgLK7aqdG4B5XXX > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 29,6174705191772 ; 2,21212567513903 ; 12,3886925376949 ; 29,6172205191772 ; 29,6177205191772 ; -4,7 ; -8,4 ; 5,6 ; -8,4 ; -9,3 ; 6,9 ; -0,77 ; FutureDE2026 ; 4cfc1CfAe1E7D4C22aab29BAFf86a8AfdB6A795dfea5fbFE2add75d785bD5FC3 ; < d372vy9u2657OM3DMkEZnRyJwvI05JI5MzRH5ev4k49clGzf8ZP0A8FcxoZo0F3q > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 30,0268142636263 ; 2,52583462941153 ; 10,8878781350076 ; 30,0265642636263 ; 30,0270642636263 ; 3,4 ; -5,1 ; -5,5 ; 6,2 ; -9 ; -8,6 ; 0,34 ; FutureFE2174 ; 9ea7F967c9BCaaCCfAF3Aed3ab3ED6cC5FBCd7eBAbddd1CE335Ce9bbdEE2fcD6 ; < AUTcl1EY24LC8yVD192c5NRShpi537c4Exe2Z6y7GoR09510fH4focSFM241WwbX > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 30,5048040887795 ; 2,91893785029074 ; 9,45065213901046 ; 30,5045540887795 ; 30,5050540887795 ; 3,9 ; -4,6 ; 0,7 ; 1,7 ; 9,1 ; -7,2 ; 0,93 ; FutureAP2191 ; 23EFBf89f1F5cd0Eef6ae2f24fd307cEd30FBff1CA1b14eabb1BD02f8BcEAAF6 ; < h2q97g1T40au10L0e7724HTkHy6SVp68bxdEo3D3F1b5W5feY8L9mstWbDj56FXS > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 31,0329719390179 ; 3,41431822693473 ; 8,08906841026309 ; 31,0327219390179 ; 31,0332219390179 ; 5,4 ; 7,8 ; -5,8 ; -8,5 ; 6,5 ; 0,3 ; -0,99 ; FutureJU2161 ; 24519adaCCf46b61Fd2c4DDE638FBBEE2Df6dc4dECc17c9E7F8cAAd2488cABe6 ; < 0N241m86X0z9rg4nB4TzNy7YN434LQrub8klm0lh6F00yz1CW9Ibfe0cv0NXn204 > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 31,5484678916045 ; 4,04188025308742 ; 6,80539400381936 ; 31,5482178916045 ; 31,5487178916045 ; 8,9 ; 9,6 ; -6,5 ; 8 ; 6,8 ; -5,2 ; 0,16 ; FutureAU2142 ; 267fcD77cc4BE169d2e8c3dd3bBcFCdcCba9cbDC3C54BADB19Df56D351EBDBDF ; < 4pss5H4k83ofGVHdMvO8pWTmRn6M64qV9Z5lknL7644Dm8CzpIzSatRxYgc6y0di > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 32,0572505487755 ; 4,8432658796766 ; 5,6189326262873 ; 32,0570005487755 ; 32,0575005487755 ; -8,2 ; -6,4 ; 6,1 ; 6 ; -7,4 ; 3 ; 0,16 ; FutureOC2180 ; DB7bbAA1BcdD7CdfBF3aBAfeF95F5cDdC424eD7Ece3F77C684a91D0BD8dEB79E ; < FdH8x2bpv7y2wH5s0OyIgWjIk81opGBY3b990O58Fe4ya20WZIc7Xh9YOH9EP64H > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 32,6596697766435 ; 5,87329803803142 ; 4,56070363961816 ; 32,6594197766435 ; 32,6599197766435 ; 7,8 ; 9,8 ; 5,5 ; -9,4 ; -8,7 ; 9,1 ; -0,58 ; FutureDE2129 ; edFf2d2DEb46A15A55fACBd5fD3ECcA32F60E92bb0Cbc921Ffb8bC2c13CDf1Fe ; < hlz263b8bIvv45TwjEbzr6nA55Zmgss73D8Aljc2u4rCdD1DpLPe0S10wC9Xbpk8 > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 33,1598876010461 ; 7,20845609854301 ; 3,60013727596239 ; 33,1596376010461 ; 33,1601376010461 ; 3,1 ; 3,5 ; 3,3 ; 2,2 ; -0,9 ; -0,4 ; 0,88 ; FutureFE2276 ; 1d8afCfc4b8DCeaCf682F29dBEbB5C47C9dC5afb4BBEfBbEcdCe65e0dD9AE3d1 ; < Bb34vL80gJ7Q5bscVk15A8191UCm2xgDR7KWPia97D3P7YjpRFxM6HNt89z40G6L > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 33,8376937315093 ; 8,95461718588486 ; 2,77879847112253 ; 33,8374437315093 ; 33,8379437315093 ; 6,8 ; 5,6 ; -9,1 ; 9,4 ; -0,3 ; -3,4 ; 0,77 ; FutureAP2248 ; b9AFF8B7cCDA3cF3D9eff2fFa893cF6F5CE4d39DB4Fdddbd4CCfaFfbFe6FD129 ; < 3oGVRt4z7Pc4GM4ggU43NM3kJ0rvZxsrmwHR9TL88Lt6lq8CzSLBok5vsw88Q2yL > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 34,4805753685878 ; 11,2597813450131 ; 2,06227752671761 ; 34,4803253685878 ; 34,4808253685878 ; -6,7 ; 1,2 ; -2,4 ; -9,5 ; 7,4 ; -4,1 ; 0,25 ; FutureJU2252 ; bcC578CeF84eFAE6b6ccabADaEdFcDbF84D1d6B8dBB51AAaF4afafe6e01DCbDb ; < 7DvkRiy0okcLgE5858Fxt9qbwRWS5M0H7xjrS4K8P2ZHpcg0daCK3eyAL2Qr1h5K > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 35,0058940089548 ; 14,3293517656877 ; 1,44295028703099 ; 35,0056440089548 ; 35,0061440089548 ; 1,5 ; 5,4 ; 2,7 ; 0 ; 9,3 ; 5,8 ; 0,95 ; FutureAU2230 ; a6CACfEFbbFBAA706331C8C7815eB5a26b6bAD1cDaA8B8Fc1BbbbaFB63Ab3bAc ; < vp24Ij0qDI60t664429wyOh7kUi1di2Lp99E6a0144mFXQ84RSo88Tt195bdywT5 > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 35,8409622066643 ; 18,4577499874342 ; 0,941783924425475 ; 35,8407122066643 ; 35,8412122066643 ; -6,5 ; 8 ; 9,7 ; -2 ; -7,7 ; -8,2 ; 0,11 ; FutureOC2293 ; 0AEbfaeacC9C7ccDe81033Aa5cFabBCaDb4808DdEa1CEF74FfB6C68dCAFB5cbb ; < Ss6Sy8ahoIn6SR1sPTeak2o94jR39UCl7jqLKoLMd7691nQ0Pvx2h2u44D7UKf4h > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 36,5181543060978 ; 24,0642562142933 ; 0,517526824053979 ; 36,5179043060978 ; 36,5184043060978 ; 4,4 ; 9 ; 6 ; -8,4 ; 5,3 ; 5,4 ; 0,81 ; FutureDE2298 ; Ee6a64e2AeCa2cCc5C54DddbBdDdBE10FE76EFA6ccA6DeAcdEFeFf52cb610372 ; < 4rNb9vXfWGbi9vdznZ7WaOpq173kgV3SpmQOXPCFUb16fn47h1xYtOSE1UbTr28Z > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 37,2368729556471 ; 31,7539835653543 ; 0,172667765573671 ; 37,2366229556471 ; 37,2371229556471 ; 2,5 ; 9,2 ; -6,4 ; -7 ; 6,2 ; -4,5 ; -0,58 ; FutureFE2332 ; F4b30A3A78efcbDdbDcdEf3F7d7b8c0BACEccfceec1A6EC0bbf5CFb24aDB50Ca ; < 9fxtIPni1kx8y1C2RkV9V2qwIk15t87QU6p9i0Mwm7HMHZ5bhe7YweP6IK7K34D8 > > // < CALLS ; 7Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 16,9188468657546 ; quote ; 75,8293220185812 ; 74,3127355782095 ; 0,0204081632653061 ; 9,2 ; 68,6255364268159 ; 83,0331076103464 ; -4,4 ; d88eB8b92B3C0C0aDD5e4BdD976e9DfDCBF42c56f0b53DD12DBbeE3C588CadEA ; < FOc015NqQaz7b6Tl5sLgZ9HeHg3dj35T37IChY9cK3A71r6edu8Eh4901gXkWFzK > > // < CALLS 18,6107315523301 ; quote ; 73,7322794357713 ; 72,2576338470558 ; 0,0204081632653061 ; -2,1 ; 66,727712889373 ; 80,7368459821695 ; 7,2 ; ee7A2cf342CEdA0fbaA9Cc4cB5aED9ACFeFdF5A7a9F09bFDE9dC2Ea883B0AfEA ; < dq0Ygb4mYVHt7q5Hghj7pxYDv33G6TyejS03h4L7l33HpbE246F54cOKj12hDx09 > > // < CALLS 20,3026162389056 ; quote ; 71,703437256091 ; 70,2693685109692 ; 0,0204081632653061 ; -4,6 ; 64,8916107167623 ; 78,5152637954196 ; 4,9 ; 5bE16Ff78DFff5cA19E9Ebf2bA7Dcc2Cf1EedBE94FDEeeFe5BafE1AAAa9BF8bf ; < J1WT3enoO8VPGOFiIKt52XdY5XLSEEs8kJ7RY19FE9dXieV38dlXEP0XyR0kC9I3 > > // < CALLS 21,994500925481 ; quote ; 69,7418885557811 ; 68,3470507846655 ; 0,0204081632653061 ; -4,8 ; 63,1164091429819 ; 76,3673679685803 ; 2,3 ; 7AfE9B99fD0e3cbe5FBB84dc0D2FB7ceCFcE754da41d43155aa626fa20ea8BE8 ; < M6MoNy4FdM2u4X4TeU85fT5vGdu566Q7Y7101x63kR6stE7CZWH4Ddt88Lp6o4Jy > > // < CALLS 23,6863856120565 ; quote ; 67,8463197897546 ; 66,4893933939595 ; 0,0204081632653061 ; 0,3 ; 61,400919409728 ; 74,2917201697813 ; -7,3 ; ee6Cd8bDDFe4FDBeE63cCEDe5ECa1CDAb15DeeD35e0f6dfffCCCB89a0B9d9BaA ; < 5xVXdN05eQ7P1T431FzE3zK5QIF1xTa9r42r8bMK8darB6KyojIwHaw3a4l3e8r8 > > // < CALLS 25,378270298632 ; quote ; 66,015129686744 ; 64,6948270930091 ; 0,0204081632653061 ; 3,4 ; 59,7436923665033 ; 72,2865670069847 ; -1,1 ; 5BFEdEAdaEFb347C0FE1bEAEE6dAfabdFbdBd4cf5a64eaFDBaCcBFB3ADCC9a3f ; < l4u6cfuE0cW6RB4vQAFOkFkRepM80clZ8n24r662mVZqtcwAo96U99DI49iOp7B8 > > // < CALLS 27,0701549852074 ; quote ; 64,2465199791314 ; 62,9615895795487 ; 0,0204081632653061 ; -8 ; 58,1431005811139 ; 70,3499393771488 ; -1,9 ; 54a6BCA7c9A9De1A8Bd1c898B0C8dC0F8C28cFded7DDdBaEFfEadCEAA0a5F2Fc ; < Y38jm23Os8B6vS58eCqKU7YM8Uz5Z6OxIFlBATPU845XnOH9LW72N6BR1h74aBg2 > > // < CALLS 28,7620396717829 ; quote ; 62,5385644631442 ; 61,2877931738814 ; 0,0204081632653061 ; 5,6 ; 56,5974008391455 ; 68,4797280871429 ; -1,8 ; 14B063fed0380AFEaC014eb4bCd2fCFa3b685FDDdD2d3dEBa5A010D47ce5c23e ; < 2H85D9ZP6ecjglr6dI31a93gRDOyx1jYL67c60NPH34T230htNfguPCuY8yjK6Ds > > // < CALLS 30,4539243583584 ; quote ; 60,889261411245 ; 59,6714761830201 ; 0,0204081632653061 ; -2,9 ; 55,1047815771767 ; 66,6737412453133 ; -2,6 ; A3BEaE63FbbD11dFF8e39dDFEB246fFfEaDB868ceAa830aa0D7cBD6Bc3daec2c ; < 19Ct99I53ZA15Hhx9IsFYo8CJUb4G0X0X5I7AuJfrt13405J1j6WxEd48ROaW8F7 > > // < CALLS 32,1458090449338 ; quote ; 59,2965731937061 ; 58,1106417298319 ; 0,0204081632653061 ; -8,3 ; 53,663398740304 ; 64,9297476471081 ; -8,5 ; 5aB8c009DCfa9e1dccbE5A75CaaA480Bbc1eCE65CDC8CCDAeafBC53AaCEE897d ; < d875wO3Ry8S67LV3Q0530oCs27LRN042uh0FRi3V9kQawU2Icz88S3La09S62nLi > > // < CALLS 33,8376937315093 ; quote ; 57,7584560648362 ; 56,6032869435395 ; 0,0204081632653061 ; -4,6 ; 52,2714027386768 ; 63,2455093909956 ; 2,9 ; cc46F7ff962bDfBeEC9D9CECEd59aD7e3e26cfeeDBC5DcBCC32edFD74fFCf7e5 ; < 86WUD1djP061mc5RCF1pH0fbvk8uupY0oR7779K4DyaLjO99p87LWdKB8zq7NG7z > > // < CALLS 35,5295784180847 ; quote ; 56,2728823786395 ; 55,1474247310667 ; 0,0204081632653061 ; -3,9 ; 50,9269585526687 ; 61,6188062046102 ; -1,3 ; 3ECe25bEB705cD19BcFdcEeADb4ad9cB0dCbCDfD5cfdb9eBc1DFd7D4cE28F9bD ; < xWcZjg8964wAx89E5dSG7EkxT5badjCOEZKzv9YJvJuIlW2zvA2iZSaZ80f37GlL > > // < CALLS 37,2214631046602 ; quote ; 54,8378569718335 ; 53,7410998323968 ; 0,0204081632653061 ; 5,6 ; 49,6282605595093 ; 60,0474533841577 ; -7,8 ; a2F229Ae37cFAEbDAcCfEfcFd32eE43b59c9Fe23C94411Ee5Cd92E57d2717fbE ; < 1t3j2hXBU43i094925vXgQ63r5P2T9ds5Ele8vIp03PanBpIpQozBdXtwF7iiUFe > > // < CALLS 38,9133477912357 ; quote ; 53,4514290506786 ; 52,3824004696651 ; 0,0204081632653061 ; -3,1 ; 48,3735432908642 ; 58,5293148104931 ; 5,8 ; 9b6dCD33FEB9CCd92dfcFb49d5d2cbeCbFC9E9acFF76E3FAD3e0A027dEBEfBc9 ; < t06XEJzxAj9WYAo3Q50q8U937Af0LL9v9f4t5tI53J8bYw8Y1r0m3k9vRCUf68y1 > > // < CALLS 40,6052324778111 ; quote ; 52,1117006118506 ; 51,0694665996136 ; 0,0204081632653061 ; -4,8 ; 47,1610890537248 ; 57,0623121699764 ; -6,4 ; Ba4e7e2Ac18eda940adcceAfD9CD5a8dC719ead3b247AeACDdfBaa69Bd3d9Def ; < p738VHhmb3T9jC70z72DY2myO1Xvu303F9onuT62v2GcmD0wBy50iqxyRk65CwF1 > > // < CALLS 42,2971171643866 ; quote ; 50,816832193542 ; 49,8004955496712 ; 0,0204081632653061 ; -4,7 ; 45,9892331351556 ; 55,6444312519285 ; 7,2 ; DAcCC4EfAf4D38feb6dB7BCE2CeBC88A6D6dc9a14E42EEbfE70CcDDF3ba7DfCf ; < 5867UgTxAlrl9v0mFHNFxGW0l4slfFyf3BS83MJ9eM8eERgM5k0ZXG1Yp5HijR9x > > // < CALLS 43,9890018509621 ; quote ; 49,5650465736045 ; 48,5737456421324 ; 0,0204081632653061 ; -2,3 ; 44,856367149112 ; 54,2737259980969 ; 2,6 ; dAcBB8A70E7DBfcCE8FfA71E84C4db7bfcDfea78AEE9Fec037C5a5b4eAB7fd46 ; < CPEAj6bphnM7Vga6PACXhxNmWsy3AwlTBBF87Exch9dwBm6lsI101Sh04pM816oq > > // < CALLS 45,6808865375375 ; quote ; 48,354630893647 ; 47,387538275774 ; 0,0204081632653061 ; -1,7 ; 43,7609409587505 ; 52,9483208285434 ; -2,7 ; E3F6FEdcCeDbEEF66DADFBB6924Dafbc9F19f7AceDD6905cF6AdCAfB7130A1B6 ; < Q1QDxQd34QGpq2LO1HRBq8Yxig3aEs6GDP9L5CYRp7gH8gofE7AfJoMLmMSTyzWd > > // < CALLS 47,372771224113 ; quote ; 47,1839375816582 ; 46,240258830025 ; 0,0204081632653061 ; -1,5 ; 42,7014635114007 ; 51,6664116519157 ; 9,6 ; d78De1F73Acf9f4E45a4501cCcEFEcb8Ea9A4238158cdf495cABCeCebD8f9a40 ; < km0BD1cObr7S0bQa35nZfz45ED4607WgAj3tDcOFM456iPcwj560ezH3bOo4Z3SE > > // < CALLS 49,0646559106885 ; quote ; 46,0513843634353 ; 45,1303566761666 ; 0,0204081632653061 ; -8,4 ; 41,6765028489089 ; 50,4262658779616 ; -7,9 ; 7AcEdb3ddCcB7534d67dAEed4FAA2eebD5b0D8da4CBFaEbbdb6De51cacE1Fd1C ; < q0sJZR0SoVTerIuyc3kXiSsi6y614ZFm8Gb1dapuiTPpSJgS1Px7ISSt86PF6R61 > > // < CALLS 50,7565405972639 ; quote ; 44,9554535892403 ; 44,0563445174555 ; 0,0204081632653061 ; -3,4 ; 40,6846854982624 ; 49,2262216802181 ; 0,4 ; D8DCd9baEF56eeeBB4FAaDe8b9B42E06bAEBdB9CDF7f7FeF116af9Fb152fFadd ; < LTlmy9BBm8GljJ7ZN0yA0637P5LTb3ivFChF3Q706FqtJh3SKfXP1j9pR81fw36f > > // // < PUTS ; 7Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 16,9188468657546 ; quote ; 1,54299840391275 ; 1,51213843583449 ; 0,0204081632653061 ; -2,9 ; 1,39641355554104 ; 1,68958325228446 ; -9,8 ; BC29cA7afeFDffdAB08ffB0eFE00a4d7EBbdAD41A0e10deaf8b5c4bAeaCf6eED ; < 36L1lRpaG61rKF90cwz2zty1wR2gE7Qm86xauw1R1oZgg6NCANuJoj9v9al4o113 > > // < PUTS 18,6107315523301 ; quote ; 2,017323459636 ; 1,97697699044328 ; 0,0204081632653061 ; -5,6 ; 1,82567773097058 ; 2,20896918830142 ; -6,6 ; 11eD2B4A2ba27aC4c1bd68EcACec695Dd817E72DF5D17cAdAcb18eDecCC9c5aF ; < o5GUG5K33sYEv8q47ZshQTIl9ysg17MMfzpCfwJfh6cjFp7bnbtZFMH8fzU81yjt > > // < PUTS 20,3026162389056 ; quote ; 2,5598489184889 ; 2,50865194011912 ; 0,0204081632653061 ; -9,9 ; 2,31666327123245 ; 2,80303456574534 ; -6,4 ; DaB5e3bFFD3fC8c0F8facc6fBFE2d4Deaecd11C432c4E9Bb0822fb67ad8cE1e4 ; < wuSWQp2vB7i41gpidS4EqGC7Qv92a5R29KvByxR4EZ29647sW9G5uQ0LO0bq9U6S > > // < PUTS 21,994500925481 ; quote ; 3,16966785671218 ; 3,10627449957794 ; 0,0204081632653061 ; 7,7 ; 2,86854941032452 ; 3,47078630309984 ; -6 ; f9E9F3c9f0A9ade19BC17FEfDF6Dba8f0fD3bfd59cF1Df600fDbBaf57DBfbdda ; < C753mTlL7O53xUH19KMb56n49N14410vB1883f61J4Mo34KEu3Dm5l0hH4r89OnF > > // < PUTS 23,6863856120565 ; quote ; 3,84546672921888 ; 3,76855739463451 ; 0,0204081632653061 ; 7,3 ; 3,48014738994309 ; 4,21078606849468 ; 8,6 ; d5c7a082bDE80ee5DBF361A1Ee2EC4aE2A6bF0D1bE5Bc949DfabE5bCaeAACbC8 ; < 3tAOoyaJauBCrczrELJ2b4d0kWLKlGDAM8UA1xdP7wk6tKkCP3BB6wqBhABzmAtg > > // < PUTS 25,378270298632 ; quote ; 4,5856442647414 ; 4,49393137944658 ; 0,0204081632653061 ; 1,8 ; 4,15000805959097 ; 5,02128046989184 ; -1,5 ; 9cFD2F4DEc3b7daED3AaceCcd3Fe6cDAD40fAdeBb2DBDDf93bBBb2f9405F92Ef ; < J4gIo55O4276940XLjwj30612nD0KQa6I70o50N22vsw8tS7Lw8jHJ5GzWYdX207 > > // < PUTS 27,0701549852074 ; quote ; 5,38840219566191 ; 5,28063415174867 ; 0,0204081632653061 ; 5,7 ; 4,87650398707403 ; 5,90030040424979 ; 6,4 ; CD3BfCA87ca92f17CE1C4Af5fF057a1662bc85cD5acB3C6ffeBFC75f8bdD57fd ; < 31ETRB58ejoN85AP42lhm29ZomtgE1kAZcVI2274Ut6d9TcSqfrCbOG33VgY4m0h > > // < PUTS 28,7620396717829 ; quote ; 6,25181431820796 ; 6,1267780318438 ; 0,0204081632653061 ; 3,1 ; 5,65789195797821 ; 6,84573667843772 ; 6,5 ; F4863cC5DceDE8aDd6b8E2D6AFcaB0823f3E1baFb00c5C34aa2bBBec5cAcAc34 ; < 2G40yud15A06Tg7pN7kPM4j6LV5m3VdgR1j6iEY8ecJ0LwGg7tR7Z1rLAbP03u55 > > // < PUTS 30,4539243583584 ; quote ; 7,17387890484187 ; 7,03040132674503 ; 0,0204081632653061 ; -8,6 ; 6,49236040888189 ; 7,85539740080185 ; 4,8 ; 9f94Ebd7DeeEc3c355c5ebeca8f0ccDAEeAaDC8A02CA0FD33f6498ee84240fDB ; < ecPi8a7H9YM4VQa62B4w0iAaf0JHciZ81iLWRGG2CHn5b92pN7OZ77PXlbwk81Fu > > // < PUTS 32,1458090449338 ; quote ; 8,15255832583608 ; 7,98950715931936 ; 0,0204081632653061 ; 1,1 ; 7,37806528488165 ; 8,92705136679051 ; -6,7 ; Aa92DF28111edEc3bea1c1Ad0A3A6CA2fE6F06FACA9DC3CbFAecfCb6d3A1aeE8 ; < Sbg0j92tIwErNJIrxDW1H9LaLz9BcW5Ajq8mRVsZlrQOEDU0L40K884PMEze7qBY > > // < PUTS 33,8376937315093 ; quote ; 9,18580883549939 ; 9,0020926587894 ; 0,0204081632653061 ; 2,5 ; 8,31315699612695 ; 10,0584606748718 ; -3,6 ; 4feb63c6de67E76facB44a8CbCFa0Dd2202A9dEDFAcbF2eb98c6a3f1cACAae30 ; < qyCi4HW6o37eigIF5Ga637D1HQA8QG2i9qmG44CYGjE4wrxje7w8hDvEiRvpcHTv > > // < PUTS 35,5295784180847 ; quote ; 10,2716027878358 ; 10,0661707320791 ; 0,0204081632653061 ; -6,7 ; 9,29580052299143 ; 11,2474050526802 ; 2,4 ; be214ADbA5Ca8C28bADc7Add6dfbb4194cE6ea5E37aD42FdB37e2321CD1abB3e ; < 1f609EuYvscgpSOWEK6228Y6x931xKsSYKnzM2jKgkd1z5v96I78eKDK6oYNyE30 > > // < PUTS 37,2214631046602 ; quote ; 11,407945019563 ; 11,1797861191718 ; 0,0204081632653061 ; 2 ; 10,3241902427045 ; 12,4916997964215 ; 2,8 ; BfdF5F826b54C09f634B801BC5cC9A5BAbDEed6FfFd353FDDF123F7ED288B1f4 ; < R7W0gC0pWH3GPxqn67JaG0N4DI9mfepPhP747zzyR7P8r5Y2exwUoldmjJhE3mv8 > > // < PUTS 38,9133477912357 ; quote ; 12,5928847369413 ; 12,3410270422025 ; 0,0204081632653061 ; -3,2 ; 11,3965606869319 ; 13,7892087869507 ; -5,7 ; c212DdE1Dafe3E7FBee6A6d1ECF554ABEB252ecea6cBbEcFe2233AdadA9b21Ca ; < l7Sw5sg4Q41XHpi1n77IT15vr01jTu4UTYy97qJ4sXKrU33113AV1Na1rQHqyhC2 > > // < PUTS 40,6052324778111 ; quote ; 13,8245239366464 ; 13,5480334579135 ; 0,0204081632653061 ; 3,7 ; 12,511194162665 ; 15,1378537106279 ; -3,2 ; 0a9DcfE7cFcCBd7ECfc42Ed21ff1dF492a013BAd95ECFfbacF04784ff9ee6857 ; < k2Au56m5yOXdK746AN49SOwF0r7ScdZ9w64H6a85Y2831dyxN706xUZYu6BVA76e > > // < PUTS 42,2971171643866 ; quote ; 15,101023156871 ; 14,7990026937336 ; 0,0204081632653061 ; 7,6 ; 13,6664259569683 ; 16,5356203567738 ; 7,5 ; 071eba9DEdDfC18A1df7D7ebF4E980b9B6A59EFECF6B4238d277d32eAEc4dac2 ; < 6szX2oet3p7RUrx2aMkz680mbsyrZMrt4u1971yA9m31COZ82LVHla61j6DQZb8h > > // < PUTS 43,9890018509621 ; quote ; 16,4206051754666 ; 16,0921930719573 ; 0,0204081632653061 ; 3 ; 14,8606476837973 ; 17,9805626671359 ; 8,8 ; Dde17a7C02fdfEb3Ae6DB3DBED9EDFb6EeEaaAb3DCBC4CFcF808AdaD9DFc0EDC ; < SQ7eQtUuZ8gwyEWvib2WkMhS7Qvdqg01d8dW8u45i809SO6lw7ryhOdQeNV4P35B > > // < PUTS 45,6808865375375 ; quote ; 17,7815571340423 ; 17,4259259913614 ; 0,0204081632653061 ; 3,8 ; 16,0923092063083 ; 19,4708050617763 ; -0,8 ; CdBcFDB9BbB2ecEfDE0ecCbaaDA29c03dD8426179e7B6C542Cbe7Aec10bAabeC ; < K5A0m1ez8uDS3ehcdo3049QiHUID5aG7Ku1h54LjQG5xK0YhIFsrvoOv5qQwlvx7 > > // < PUTS 47,372771224113 ; quote ; 19,1822314605867 ; 18,7985868313749 ; 0,0204081632653061 ; 7,7 ; 17,3599194718309 ; 21,0045434493424 ; 1,9 ; CBAa1E1BA0b04dfbA5Da9cFbFEeF9eED8FDCA6cdAcBf4faCF3BaFfad00cD8c0c ; < swMk1Pq303nT15fpYDvJKaSz06k56flMzKxzONibNK8qyBzWff0U6MF6ihi4iYhl > > // < PUTS 49,0646559106885 ; quote ; 20,6210458808969 ; 20,208624963279 ; 0,0204081632653061 ; -3,7 ; 18,6620465222117 ; 22,5800452395821 ; -0,4 ; F0cdd38fEaFaC2b5fDdd26fbAb5AE9e275F6f4Dc7F9a2Ad169F3BeBacEF01bd2 ; < ny2I4YAfd06jH4Z3b9JSCxtpU5glo5CCqGbZu5bGnZqW0g3AUwycv4InkHfp5oVM > > // < PUTS 50,7565405972639 ; quote ; 22,096482745235 ; 21,6545530903303 ; 0,0204081632653061 ; 0,4 ; 19,9973168844377 ; 24,1956486060324 ; -4 ; c0D2CDDd9CAFfCFa0a87c9beabFDaDf0D3FEE3eC25ffdfBd873baDcBfADcCD2E ; < lyVVMqPPD4RROqCKs4X1gNxs7zH1AWqx236Dk5bgQrK9eKnuJW0Txy1cqs0WxC1u > > // Futures_Eurosibenergo_Engineering_LLC // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 56,013199 ; 1,14 ; 48,1343850877193 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; 5B0BfAe25CfeA3bebcB726b7f677cCBBe440F58421ADC5eF3ea2e0ac540DAb8c ; < xA81vJ17bZoX4ynr8LS9dqi4RYAVOGH6EWj883Vw4tS8Gg0fY4nvm7Z1heURz9sY > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 56,0142756738532 ; 1,14002508 ; 48,1342485849988 ; 56,0140256738532 ; 56,0145256738532 ; -4,7 ; -7 ; 7,6 ; 6 ; -1,5 ; 5,4 ; 0,16 ; Future69AP19 ; aB3EB8B06CBFCaCe5CcE202d10D7bDAeaF8EbCB7BCcead0f9Bf56A3F7ccdfdFC ; < ot42W1dd2UmuZHeZf8PD12FiZR6bi9Kv44q42NnjYKCTw5H13NB9Fccf0jsaKJUa > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 56,6207834187429 ; 1,15383235592122 ; 48,0719324416385 ; 56,6205334187429 ; 56,6210334187429 ; 1,8 ; -4,3 ; -1,3 ; 7,6 ; -6 ; -7,2 ; 0,68 ; FutureJU1916 ; Cad63B8bAa1fEC0deFacAfD2aCFAAE4F913F836fc3Cb5bB2dcde2DA46fb2daAf ; < uTw1H3eANwYaeXvCTru25t94h91qfq6ZxE2BaPJ7k081jZ2ItBH3iI8waX6K4KFj > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 57,2813462028584 ; 1,18203756547107 ; 47,4598356906114 ; 57,2810962028584 ; 57,2815962028584 ; -9 ; -2 ; -1,6 ; -2,2 ; -0,7 ; 5,4 ; 0,05 ; FutureAU1992 ; 50bE1CADadCbede9fdDDAc0e027F37ffDBbC93f1C2E3ad96AE6eacAeFEaaAd8B ; < OY3a2e47PyNBs6qMoAC2D6UkvR27C2x8D94uh97u91l67av8zzixroY6aa94fZ4O > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 57,9605451626703 ; 1,22544797504721 ; 46,2974343610447 ; 57,9602951626703 ; 57,9607951626703 ; 1,9 ; 0,8 ; -4,2 ; 2,2 ; 6 ; -6,6 ; -0,54 ; FutureOC1924 ; Ca0EdBF9cdDaEBE63Cd2d7bBe1dCd8F153bA8eCbCCddfBaAaa7Ec8CFb43D02Fd ; < FsDfN85Jo8Z8BIB6RLCBbS6qv812L265fwi4k85dxIE694OC36wEvdTUds497V6P > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 58,6734376270658 ; 1,2859152117272 ; 44,627765417175 ; 58,6731876270658 ; 58,6736876270658 ; 6,8 ; -2,7 ; 8,7 ; -6,5 ; -4,9 ; 8,8 ; -0,38 ; FutureDE1995 ; DB04BaeaAFE1Bbedaeac0baF90FdE6D1706FeccEdbBCC38d27Bf5bCd5Cf38ae1 ; < r1UbuKOsqBJ7HygpDfVGzBewPB63e4RAgO1wr11G5zai3WH08FT7p1bNCBbK8Jgg > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 59,4381293097846 ; 1,36575682087586 ; 42,5202873610157 ; 59,4378793097846 ; 59,4383793097846 ; 5,8 ; 0,5 ; -3,9 ; -6,8 ; -6,5 ; 4,2 ; -0,77 ; FutureFE2094 ; CBCeb98d4CD69dBAC27EfEFd4cC23dbD015eF0E7bfE3A31dFA6cAeDD7BfC23BB ; < 2v29HM24w5Z5Vm29Q2CZ2Q6SQ491B3YIMG3KQ3Z0Cv2Y936Jx36pjG50H920U4Q6 > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 60,216541479358 ; 1,46824594422802 ; 40,0125713039301 ; 60,216291479358 ; 60,216791479358 ; 9,2 ; 1,9 ; -0,4 ; 9,6 ; 9,9 ; -6,6 ; 0,67 ; FutureAP2023 ; DdeF91E89cdD82cc4c5fBcF07EeF9090C2c7b5d46E8da01dF6FAc2cb8DeECb6d ; < qs8Z7GaA7EHRV4t46hW68PNWgq6um9A831p6m4UOu0Zj6183R6Bk8TRIasxM2475 > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 61,0159387067991 ; 1,59751157621794 ; 37,1943640441419 ; 61,0156887067991 ; 61,0161887067991 ; -4,7 ; -6,5 ; 6,2 ; -5,7 ; -2,9 ; -1,2 ; -0,24 ; FutureJU2061 ; EbFabBAa1F1eFbCE4085cCFd5cDBB0D8EaeAEFaB8EE696bbBCfc0cfec85C7EbD ; < 38qOm1Rj00SX0I8370eYnOyd6fG0KTfGhG5130Lb33Q393c9v7n5Yn89W38ANkDb > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 61,9238665771775 ; 1,75915545405886 ; 34,2009064544592 ; 61,9236165771775 ; 61,9241165771775 ; -5,6 ; -8,1 ; -8,5 ; -6,6 ; 6,3 ; 9,6 ; 0,53 ; FutureAU2034 ; bdAccBBAaAF1ADFfABDd3BcfD9EC3AcaFc33AD0BDfDEBD64aEADcde6ABBBb5e9 ; < yv0zP552gx110qQLtlVcmqmAK6111ycltPZ8WBNcS4Jnw4HDkdYyY2KvO1qkgB4U > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 62,78621593597 ; 1,96058882074028 ; 31,024162981947 ; 62,78596593597 ; 62,78646593597 ; 0,3 ; -5,6 ; -8,2 ; -6,9 ; 7,8 ; -7 ; 0,3 ; FutureOC2017 ; 58EE675E1dDCBAEFAacb04cABddBd9b6977DFfB0fE7EEf8FA0FCeAbD0fE6fFFA ; < jSD5Sqh5l5zsR86st8rAaliQ3jfhudac8x8iEJE3iQo0n0J1gSd18tB7Cc928sch > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 63,7030891371721 ; 2,21189628703202 ; 27,8002152319043 ; 63,7028391371721 ; 63,7033391371721 ; 5,5 ; -2 ; 9,6 ; -5,7 ; -8,1 ; -3 ; 0,89 ; FutureDE2097 ; DFb9FA0Ba3dB2c728EAcFf3E16bCEe75FBedFac75AfD36CC05cAFEAeAA05E31D ; < 9De8Q7ph95F309yV7G7UY801jCVR195wRm26guuuoMty0084bt06llawqcO27Y3h > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 64,7915207025541 ; 2,52553289687528 ; 24,6545938414493 ; 64,7912707025541 ; 64,7917707025541 ; -2,9 ; 7,1 ; -3,7 ; -4 ; 3,3 ; -1,3 ; -0,29 ; FutureFE2115 ; bFFA1Db6DFABFda5fCe5e9B66Aa7EbdDDCFDF4aD6a4FE4911E2D27BFDEBccBEA ; < 8gNsS29seNm1LLR3Re07u6X1uLR80VZa7iwg9v69JRy11P1WUp2qk26MGf1Khn8L > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 65,7548585984965 ; 2,91831892619471 ; 21,5317589548845 ; 65,7546085984965 ; 65,7551085984965 ; -6,2 ; 9,2 ; 2,9 ; -3,5 ; -7,1 ; -7,4 ; 0,24 ; FutureAP2173 ; fbb7e08dBD49fbEd0CcDecd59bD1a6b4E7aa84bAF1FC9F4EAD7E8c47BEEfD907 ; < 25ju9HPEgKUHu09M84cZ7MpIs4C8T3749c6zY1z9ZFJvWK9AMW4YSrb6JUA57dL6 > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 66,9115817811158 ; 3,4131419242205 ; 18,6041018119683 ; 66,9113317811158 ; 66,9118317811158 ; 5,2 ; 1,5 ; -7,1 ; 0,9 ; -7,9 ; 3,4 ; 0,22 ; FutureJU2129 ; aB0F6D6FC3feF0FCCdED34AdEABAAEcAcffdcDbd3EB7d50AEB8362Fe38Cec3df ; < qxiJYNpFmCOjjw13nE8X55h026lZ7URORW4hibE8E6s0qaoFZod05Gp5EdbcV1R1 > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 67,9016434280286 ; 4,04031708527713 ; 15,8060184373799 ; 67,9013934280286 ; 67,9018934280286 ; -0,7 ; 7 ; -2,9 ; -1,7 ; 4,5 ; 9,5 ; 0,62 ; FutureAU2184 ; efD0efBFBBC66dd4BfB2edebC1A33DBDFBe66fFbbdb81FFcee8fA0faCeecb4F7 ; < zuJ2EsMlzkEfKdtttURqj307wkvEF5s740iy2640Hnj7Oe78omZ0Fk6imOzy2HYj > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 69,0396912554752 ; 4,84108167738436 ; 13,2612118233827 ; 69,0394412554752 ; 69,0399412554752 ; -7,7 ; -5,2 ; 3,3 ; -5,7 ; 4,2 ; -5 ; 0,71 ; FutureOC2145 ; e83D32EB95b37F6f7EfbCCacDFA2E5cA5D88FA7e008C545DFf5D5b2eCF09bBDE ; < lN9oPpMHwvb6V51TCrLhk0WQZ0603ktKvCKPg1Ss1FoaghLo7t4EHh5Bj866oiCL > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 70,3518564677732 ; 5,87046535365781 ; 10,9840340125571 ; 70,3516064677733 ; 70,3521064677732 ; 1,7 ; 5,7 ; -5,7 ; -5,4 ; 5,3 ; 8,3 ; 0,12 ; FutureDE2157 ; C609dB9cDCfD5923Bdc1f5EfFbCBA8A450CaAb8CAdCBefBe8E0CececBEEa9Ad6 ; < BcHlQ9Q67jp75Hwpx4CUa2SxGwR6eb3Hg7U1r7n74tMrWhHN13tjpR8BvEU3ceaF > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 71,5621121169179 ; 7,20557825655558 ; 8,93148774032274 ; 71,5618621169179 ; 71,5623621169179 ; 9 ; -9,3 ; 9,4 ; -6,5 ; 8,1 ; -4 ; -0,31 ; FutureFE2244 ; B7ca61eBd55ee19bCeeCDE230C2ab3fAFC5EeCad6A3Dcdac44CADABFDAaa0F45 ; < 2w686sLl2Ca2h2eGB8tc3cNXf52ByH4TSntvs7X5MLuLGgH16c0sa1Mf6LzA62lp > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 72,8001434569046 ; 8,95140250048264 ; 7,13281979589001 ; 72,7998934569046 ; 72,8003934569046 ; -9 ; -1,6 ; -8,1 ; -1,2 ; 7 ; 4 ; 0,85 ; FutureAP2246 ; E6CBebFcddAbbB5dBBE9Ffd3DC20Eaf7ccD3487D7cfCcAe8DCEE9cfbb0c7ce23 ; < MUTLY91dg2EUYUB5wns9typUH6bVgUA9w02dy73fDCWDOuYatH6z7CL8X32q6l47 > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 74,1837445948671 ; 11,2550946104042 ; 5,59112581126519 ; 74,1834945948671 ; 74,1839945948671 ; 0,1 ; -4,7 ; -1 ; 8,5 ; 4,1 ; 8,6 ; -0,3 ; FutureJU2229 ; 1d0CCE55888D5dC8ffe4caF8BFFF9eaA05AABFfCBdAD7BEEaedebbdE8fF42ecd ; < 3T0oSj5uSxd2Sm3GgB4EmS5H0w9TMyHi6mdN25SP4OD4HyHCiF8Q2W0J1iW3lJgY > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 75,8870005898446 ; 14,3239501178437 ; 4,2979101410937 ; 75,8867505898446 ; 75,8872505898446 ; -1,2 ; 4,9 ; -8,4 ; -3,1 ; 8,1 ; -2,8 ; 0,24 ; FutureAU2240 ; DfDf7Ba5EA0a9C4ab238EF389a02Ca1DC23BEDbFbbE20ECEEbdfDeE62fbd16B8 ; < 88Ia4h5W7vVFdGRrQr7imiMjCQbMey57m0ko26s5kKT84dH6LcsQWm9njmRwFF7m > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 77,2705322507099 ; 18,4509209981858 ; 3,18789567514314 ; 77,2702822507099 ; 77,2707822507099 ; -4 ; -4,9 ; -1,8 ; -2,5 ; -8,6 ; -5,6 ; 0,9 ; FutureOC2238 ; D3cEc0bfCEE1E65CAbbDfF8bFdE2fC55bADcfBB5e4dbFF6eBaebBcdCB9DE0DD2 ; < 7gE182877W1k2ku9WyQvU9vSjv2whMARUo3VXvRgx5VLL9N7X50XZaatlU2a0h75 > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 78,8466753143467 ; 24,0540429172418 ; 2,27789700823348 ; 78,8464253143467 ; 78,8469253143467 ; 6,6 ; 6 ; -7 ; -0,5 ; -5,1 ; -9,5 ; 0,03 ; FutureDE2299 ; a71E0Fa6f8E5aDf0Bc8E0D1cBFBa6aEada3CC7ffb095Fcff5bDA1BFCf08079d9 ; < kX771lgr0Kew5t6uzI846s61fF8tz5mO0e935D1k2Xh8I4xRcKsr4ygc842B5k16 > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 80,2775306779822 ; 31,7368503971352 ; 1,52947377176497 ; 80,2772806779822 ; 80,2777806779822 ; 4,4 ; -0,5 ; 3,4 ; -2,5 ; -4,3 ; -8,7 ; -0,23 ; FutureFE2334 ; 621eAeb64EDDfA19a988Bac5BEEfFcd2cFCCFcEaEE8C3f1BBBB3ecA4bEae25F3 ; < opbEO62FRw4ang18s138h0MCrKW2C2VVa0RMLM8stL9G0Y2yF65Zq72DD68DPiHm > > // < CALLS ; 1Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 30,108270739679 ; quote ; 53,6714134246759 ; 52,5979851561824 ; 0,0204081632653061 ; -3,9 ; 49,6460574178253 ; 57,6967694315266 ; -4,2 ; 1cE3E64AccBF761762708DbBfBAfAdd3aDcc66DbdE2cAdcFfdFbaFdBAef10e5A ; < qDs5A35Jb4D5XOK4JMVWaRAh1neikZI923lpbEtp97T5Xros41B2449owCMVIS5o > > // < CALLS 33,1190978136469 ; quote ; 49,1194092921563 ; 48,1370211063132 ; 0,0204081632653061 ; 4,5 ; 45,4354535952446 ; 52,803364989068 ; 5,5 ; 5bBd8dad2Fabfa9Ea9bDf7BBCfaFD7fb9Fb84Cff57dC2F4B5e4d364dFAA53DEC ; < 1VM8OCv5Pze4C9cGJdU31w0VEWK80hrNPnV79o8IRlqntY4Lr6e54WXd4P1iL0oO > > // < CALLS 36,1299248876148 ; quote ; 44,6476691224842 ; 43,7547157400345 ; 0,0204081632653061 ; -7,6 ; 41,2990939382979 ; 47,9962443066705 ; -6,2 ; B8FEAdCAbFD6adecEeECb5f22bA6FeFfE5bE94fAB4bf128cDe3DBC73DefBBab0 ; < 97oTfZBsD5A22L7NX2b9KT23ZJ9g6kkSwvrzry24ua5pMD9ZuG6Db9Up9J8Q715j > > // < CALLS 39,1407519615827 ; quote ; 40,2955533564589 ; 39,4896422893297 ; 0,0204081632653061 ; 5,6 ; 37,2733868547244 ; 43,3177198581933 ; -4,4 ; DA77EfacFC85aC5E09c7AccDaabD3a6ABBc0Bca28F7cD7A84d69cB7ccAFcAc1e ; < 7gp49r8vHXlGDAN606v5o36fhlwkPX43Tsq4bo4Z4DJiSOmr5QEOCAPb24UiDYsS > > // < CALLS 42,1515790355506 ; quote ; 36,1055124059439 ; 35,383402157825 ; 0,0204081632653061 ; 2,6 ; 33,3975989754981 ; 38,8134258363897 ; -1,8 ; 219bAaBEBBbf3F2Ad60C7DCDD4fedFDC397bd6DfdFcCdf1fBd2bf8FCb32E8FCD ; < 6i5cp222934u1d577mX3p7yCU3uM67M088N2n76Su7cKh580pzCbz48EQbB8gWM7 > > // < CALLS 45,1624061095185 ; quote ; 32,1187612069275 ; 31,4763859827889 ; 0,0204081632653061 ; 4,6 ; 29,7098541164079 ; 34,527668297447 ; 6,2 ; Bbeb9D099EA032eBBA5E1dd6bBC0e05bA8b54dbDc3fEFbBBA9dFDBf3caEcaDB4 ; < 2P0uszc31l3K2ytD0YM6r5dH1ah8VdD90b6zE834VKfh37W46WhpRrg09GsC39aa > > // < CALLS 48,1732331834864 ; quote ; 28,37139808825 ; 27,803970126485 ; 0,0204081632653061 ; -2,7 ; 26,2435432316312 ; 30,4992529448687 ; 5,6 ; EaFD4CC0edBAC40E86aAFD5b0bcdc2BAd7e397Befa8E4e65aD9CEE7E0BD6D3aa ; < GvBv6hFZ842VmBdjYu662YR7hVAXi2R60pz8A84b6B7SR7UGwK3P2ReVto9GXK8V > > // < CALLS 51,1840602574543 ; quote ; 24,8915992243272 ; 24,3937672398406 ; 0,0204081632653061 ; -6,1 ; 23,0247292825026 ; 26,7584691661517 ; 9,6 ; baDd059166ADaDC5FA6FAbFD5d8CdCbE2c5026b1BD6EFAeFE7Ef0Ff3c1aDDeaE ; < QQie1M6l8Tw46n0EqVpf5VFCnUKZc6cYk6poy49EoMdytquL5VI6dnkLrOcnUCup > > // < CALLS 54,1948873314222 ; quote ; 21,6981222819644 ; 21,2641598363251 ; 0,0204081632653061 ; 0,3 ; 20,0707631108171 ; 23,3254814531117 ; -3,6 ; 4f5deB80EA988feFbD0abF1A7dEAecbdbfecF521dfBFedBa5ABBdD2Ef2F0aBF5 ; < 78a1T3N6u0AqIG2N3FizX3M8O8rD4MCFw32yuvsB2zq6BacL5dH5QQ9Za8IPz528 > > // < CALLS 57,2057144053901 ; quote ; 18,8000367010218 ; 18,4240359670014 ; 0,0204081632653061 ; 4,4 ; 17,3900339484452 ; 20,2100394535985 ; 5,6 ; d1bf9D3BEDEddFAbd61f4fbAbDF1edEab4DA1c8d96afdd1FaCfE47CB0eEAA1ec ; < YBY09WUpNq5qBs1VpN1sCK6019W6jw02gdSrxcrxOnL3y0QD93P6v6vl628T3S57 > > // < CALLS 60,216541479358 ; quote ; 16,1974130106331 ; 15,8734647504204 ; 0,0204081632653061 ; -5,8 ; 14,9826070348356 ; 17,4122189864306 ; -0,9 ; 7cDEfD2e03e97beb2d736cfDDEebF414AC7eCFdDeCaEd8eD6a8faEeE427e71CC ; < 929yL21qm0i35x5WUg3SySA1q1SkATbGb6or7x0YMf28D1yCEAhijmGfGRlz7bUj > > // < CALLS 63,2273685533259 ; quote ; 13,8826388518815 ; 13,6049860748439 ; 0,0204081632653061 ; 7,4 ; 12,8414409379904 ; 14,9238367657727 ; -0,9 ; CCbe6FfEcf3dBa943Ced318EE6eaea2Cabad7fcfDcDCed6DFb15CE4eAafE834e ; < 4b92g2kRZRA2JPSSbio8Pd0wZXVXy39EGDnVVtjP3OvUk9a1A9T4Ir3V3ZPK3NTh > > // < CALLS 66,2381956272938 ; quote ; 11,8420480713358 ; 11,605207109909 ; 0,0204081632653061 ; -3,3 ; 10,9538944659856 ; 12,7302016766859 ; -4,6 ; 48D1431DD07DacD2EEeFc9A8E7Cecf26fba056E585a0BaEd7490EcFC3a22Fc5e ; < pTK1ZIMlvVrZ5pQ8sAF5LWS9IHv0n9qBktPDNQ8y6K9USsF856Q63eX2w52c6rtp > > // < CALLS 69,2490227012617 ; quote ; 10,0576120973883 ; 9,85645985544054 ; 0,0204081632653061 ; 2,8 ; 9,30329119008418 ; 10,8119330046924 ; 4,2 ; ddFfCAC4fF1A2CFdCFBF5E7bEDaB28eaEAD7BfC37e9cFc38421Bd7A396DbDFef ; < uKhx6m38hniLHLdUC66ZScneo3c428GKWkft931UZ58pcf7411K515D48jWR9KXM > > // < CALLS 72,2598497752296 ; quote ; 8,50851942129926 ; 8,33834903287327 ; 0,0204081632653061 ; -5,7 ; 7,87038046470181 ; 9,1466583778967 ; 5,1 ; 41ad9661F1eF6ebc8eaAe468B4E64Ce3f7FAAefBeacfbc9b7a11C872b068A1d1 ; < 0L7qLpS9t46odUYz19M3H6UELgC9jnz8Cesv7Sr5Xm50Wdk1Wjy6s8w7Swc6ci7z > > // < CALLS 75,2706768491975 ; quote ; 7,17254050243703 ; 7,02908969238829 ; 0,0204081632653061 ; -6,9 ; 6,63459996475425 ; 7,71048104011981 ; -6,1 ; 06bBBAAC4bB0cdAd94cd2A17beEbCDa2dFadFda2ca62AFfCceD734b8ECbfBB1A ; < QcsFcoAsdBjM1f1FCoR4npVr7moNrxKfAMZ29V597ZwL4a50PNBYO5GNcf6iI708 > > // < CALLS 78,2815039231654 ; quote ; 6,02713272602194 ; 5,9065900715015 ; 0,0204081632653061 ; -0,4 ; 5,57509777157029 ; 6,47916768047358 ; 0,1 ; 5FDBdEf2F9efEaefaDc9d64AeCDbAAd4ccCF4a69bb49A6aDEDDff2A7BC3ac1D8 ; < N1ILJ4QNhL8LwDDIgry268FlZB4KCjw7N9HF7nxL3oanTfZH44IRiN5atu414qy7 > > // < CALLS 81,2923309971333 ; quote ; 5,05028078983101 ; 4,94927517403439 ; 0,0204081632653061 ; 8,2 ; 4,67150973059368 ; 5,42905184906834 ; -6,2 ; 8E293AEBfbAB21DAEbdBdfdADAa4Ca5CB5bB96fb066e32efCB3d8502265bdeE7 ; < 400El3I2nOnS0iBXF1bmSDbOD69YQ8zuL1SGI7isSPOn42m8Tm7At6mkG4lbb2Is > > // < CALLS 84,3031580711012 ; quote ; 4,22109351113971 ; 4,13667164091692 ; 0,0204081632653061 ; -6,3 ; 3,90451149780423 ; 4,53767552447519 ; -8,7 ; bF103Adfd75c4f4bCaEDBAdb7Bd890b1ccA6fF4a357bdcDeFB5F42adBa6f3DA5 ; < k8Ri5T26g9N0vL94z5tEGaSko2EEx691YV1N7n4r3bB43p0jeb906qzKf36XEHBD > > // < CALLS 87,3139851450691 ; quote ; 3,52019161191621 ; 3,44978777967789 ; 0,0204081632653061 ; -8,7 ; 3,2561772410225 ; 3,78420598280993 ; 3,9 ; FeFBaaAe0E770CeEbfced8ef5CDBa06CdC0EDa0bfe208dEDcbecEAfF38884A1E ; < 942w1wr1T6lEv7hwg63578a20nzhDdW4VtpEe63NzP3KiwzjmUdfAa0z8x6zS6Qk > > // < CALLS 90,324812219037 ; quote ; 2,92992596859076 ; 2,87132744921894 ; 0,0204081632653061 ; -5,1 ; 2,71018152094645 ; 3,14967041623507 ; -9,2 ; b5BFbBca96bbcBb1aa1D8fEbBdc0BFFebf2abDCb5BA24Db919eEB8DcdBEac9Ed ; < W7d44bKD8X5d5H9NWDZ376GzzRrqj1rq67C9a3T3xEOF2Hj7RLeUFbxnr0NCofmq > > // // < PUTS ; 1Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 30,108270739679 ; quote ; 0,0585877411035796 ; 0,057415986281508 ; 0,0204081632653061 ; 7,9 ; 0,0541936605208111 ; 0,062981821686348 ; -9,7 ; FBfdeB5f7dA255fE1fc0BeD4E7Cba7BcD7f1DaDAD40c2F1E9aea4d7DB275DDE8 ; < qNM9Qx53kKIt5efvBOe57mCB2z90a3p9T7M2T1cs2Gh9d3p3LNHa80E5eMLSCom2 > > // < PUTS 33,1190978136469 ; quote ; 0,145301040226713 ; 0,142395019422178 ; 0,0204081632653061 ; -4,7 ; 0,134403462209709 ; 0,156198618243716 ; -8,3 ; E37AFbFff84BdCDFbF69a19715BEb36A1cDE0842D0AC4E2A8e3FA0Dbeb7bA0E8 ; < 0PHWD5tHd73QTwA7W28363T0iS80e0rhQqZ3E90C466hiRCo702894c2WPYUAQ0t > > // < PUTS 36,1299248876148 ; quote ; 0,312278302197384 ; 0,306032736153437 ; 0,0204081632653061 ; -1,9 ; 0,288857429532581 ; 0,335699174862188 ; 2,8 ; fc6aB0E16eAedeFdb1CDdD9ead786baAEEcB7F6baD5A24Ad80afAA319EC6DCef ; < F697Yg22VKcnBG05FH2Emi0TQC1r11qKe378gsUcMPT8ga7E86VV284aEU09Bcbd > > // < PUTS 39,1407519615827 ; quote ; 0,598879967814781 ; 0,586902368458486 ; 0,0204081632653061 ; 1,8 ; 0,553963970228673 ; 0,64379596540089 ; -6,2 ; bfe3fc6C8ED1d5acd5dfCadDacDccEaeADaCADDADFfBce2E2Bb1cE83ECfAfa7b ; < BlP28Nn00X9wswEW9K9gv967xR2RAhm1LGowOpKmfLZVeO7w3y7VUwmx0dO28Jp9 > > // < PUTS 42,1515790355506 ; quote ; 1,0475564489426 ; 1,02660531996375 ; 0,0204081632653061 ; 2,1 ; 0,968989715271906 ; 1,1261231826133 ; -0,8 ; d2FfAeBc5fb5f6dDe2cb5Fc6c9545DE8FbCfbcfdd9B3AbeEBCbA042EaAfBdacf ; < 1TnnlUYsudWt94uB288rcszWh6654LD8Vzq25YA7xT9b64dk2Q4jRWHIgln74V43 > > // < PUTS 45,1624061095185 ; quote ; 1,69952268156894 ; 1,66553222793756 ; 0,0204081632653061 ; -4,6 ; 1,57205848045127 ; 1,82698688268661 ; 8,6 ; aacBa6315a6CF3bE2c0B7f9EbBBd8b4CfDdAb455a10dFE461aC703c86Abf9ae4 ; < 2b9kF7GOHo8mS9g96LpQHd9n47DjoIheedV2kuQ5a5z1AfS9ANUkRG5335sh3sY4 > > // < PUTS 48,1732331834864 ; quote ; 2,59087699453423 ; 2,53905945464354 ; 0,0204081632653061 ; -0,6 ; 2,39656121994416 ; 2,78519276912429 ; 6,4 ; 81CDa0a3A2c9E9bBB4F3da2b88aE2fdcCFD6a4Cffff1aF9C1Ffb4BaEFEBce9Ef ; < ye0zOXtl4Y3BxJjuSzrio8Fg5uV2qEEmn4qK7YufyHylmn5m5C5ThEv49m3s1ZYB > > // < PUTS 51,1840602574543 ; quote ; 3,74979556225416 ; 3,67479965100908 ; 0,0204081632653061 ; -9,5 ; 3,4685608950851 ; 4,03103022942323 ; 3 ; ED90DCeEd3EA91f9FacdbCEc2DEeeDD2d0f7Ef42aDFCBF2eD4dcEF6AB5DCbD0A ; < Yuwwgoc4f80enEM1R7fT1G2lr7yD0Z41UWwP6x73pSqSU39Xt0791Z03QsB8mdMS > > // < PUTS 54,1948873314222 ; quote ; 5,19503605153417 ; 5,09113533050349 ; 0,0204081632653061 ; 5,9 ; 4,80540834766911 ; 5,58466375539924 ; 1,9 ; f5fF21Ef4DfABDb7aEeeFf38956eAa6ce5Fd1d569BbF9ff5cfC00fEAcCAe22Ce ; < M6y1MWNPk692pBoM2ejZWHXF48xk7Kj0H84FF6R4DXzzeRCtD5N8dHFN8db8qvOY > > // < PUTS 57,2057144053901 ; quote ; 6,93566790223434 ; 6,79695454418966 ; 0,0204081632653061 ; 0,2 ; 6,41549280956677 ; 7,45584299490192 ; -7,2 ; FA5b9aFc98Fca1dD0Dc1C2BfbEE821dbCCcFe4EA2EDfcAE2bDdee61C1C16eEeb ; < gps2394NYM3PjOHgzs7gxuHnV0n3afcHLRd951LL42854W7lW640X58f5haN80j1 > > // < PUTS 60,216541479358 ; quote ; 8,97176164348836 ; 8,7923264106186 ; 0,0204081632653061 ; 1,3 ; 8,29887952022674 ; 9,64464376674999 ; -5,9 ; da356d2d7e85DCEBD0FAcfA35dEeff5CBdFcdd4F8EAaDc7E6BFaf2FD32bdDb08 ; < 5Ct57K2QGkB7iZ8ch1ebFy3lImodn56m3Ej82E9e0g96Rs4rvc3Y378z1RC42A08 > > // < PUTS 63,2273685533259 ; quote ; 11,2957049163796 ; 11,069790818052 ; 0,0204081632653061 ; -1,4 ; 10,4485270476511 ; 12,1428827851081 ; -3,5 ; d1457EEbDDD78AcAFa69CCaDF70d5DDAFE5027FDd919DedEBdfF3ECCfab62d65 ; < rfdtYS9NC0XEnuBjjRhu55cfKV7fhUoC8LQxwwzJ9oI854w9oz7a8msDl0bjyPuJ > > // < PUTS 66,2381956272938 ; quote ; 13,8938315674766 ; 13,6159549361271 ; 0,0204081632653061 ; 4,1 ; 12,8517941999158 ; 14,9358689350373 ; -6,3 ; 254Ea8DDEDA2dFcDAfFBc5F6dE6c5ea5E2a151Cef0B0A4C9EBdD8dDcE32eEb55 ; < 2E014GIJd920cC0xFfGck0E4g6K19NQNtvIJ3P0Be1o16e3oUv905FTFZCU2SNgB > > // < PUTS 69,2490227012617 ; quote ; 16,7481130251719 ; 16,4131507646684 ; 0,0204081632653061 ; 9,7 ; 15,492004548284 ; 18,0042215020598 ; -6 ; 3Dc8ebAFEdc25BAa5A5adefF6a916EDCBcFcA75fc461bF4b5Be4EB68BaDAdadA ; < U58p82mojWqbeS51gw1r7n671d3kHB1pkKFNNx5pPcK05XJy555pE98NM4dt5QiX > > // < PUTS 72,2598497752296 ; quote ; 19,8377377807256 ; 19,4409830251111 ; 0,0204081632653061 ; 5,8 ; 18,3499074471712 ; 21,32556811428 ; 4,8 ; cA9ad48e1Ca7eCA2aCD5Be9d4AAbcFC3FAbb8Ceab1BFCB211eDEB3Bc4B6bc47F ; < RU41PhsT8157ohBcgw6h52YowiOd4yD4bMzstrqG89ts6I33044GJc4f12gKxts2 > > // < PUTS 75,2706768491975 ; quote ; 23,1404762935061 ; 22,677666767636 ; 0,0204081632653061 ; 8,4 ; 21,4049405714932 ; 24,8760120155191 ; -8,3 ; BBaaBe3855db18eE9b8B06Ffe2dE1D7C6FEB2dFBccDbf98CCAcEF3CC0EFB6bBb ; < 2jE6DAx9Rj6VNwt39Y9lUPN0NU3kP21jDD3hstiQEXT9Fo7TBDfOoHwyM09bGK8A > > // < PUTS 78,2815039231654 ; quote ; 26,6337859487338 ; 26,1011102297591 ; 0,0204081632653061 ; 6,1 ; 24,6362520025788 ; 28,6313198948888 ; 3,4 ; f8D2B2a9f62De85e6E2CdcFD7dBaadAeA2BDDD89d7DDFFFEDD77Fb1071c7Dae3 ; < APdl48jE2tD7qS6B56khhOSM5l9bUq97EAP5e4y88RIrMVW1K8geoMxbuGPvhdm0 > > // < PUTS 81,2923309971333 ; quote ; 30,2956514441856 ; 29,6897384153019 ; 0,0204081632653061 ; 7,1 ; 28,0234775858717 ; 32,5678253024996 ; 5,8 ; CdabB9eFebBc85aADcAbD358BedAbeEDf06b2DcbDAdfA38BD1fA5ACc4E5D7aaa ; < Vt40V4wC29l01CI3C41ZUpl3KlDmE05rJWBuFCn777J819ZUff281asah5j3V4et > > // < PUTS 84,3031580711012 ; quote ; 34,1051815971371 ; 33,4230779651944 ; 0,0204081632653061 ; -1,5 ; 31,5472929773518 ; 36,6630702169224 ; -7,1 ; EfA6d9A2d1deEA6EbB3CA2Fb92aE7cebDbf02cbAfBEa1Cb3D4fFeffDcC5AAd07 ; < 61F0P7FR9G9i25KzU1dk482M5QiH0xvpmoNPd0Af0N8a5LczQcswbowLZbT6UUTr > > // < PUTS 87,3139851450691 ; quote ; 38,0429971295564 ; 37,2821371869652 ; 0,0204081632653061 ; -1,1 ; 35,1897723448396 ; 40,8962219142731 ; -5,3 ; ec9BFAC1A688cDb0CBaeB60eBBEAD3CDA9bD3Bb5dc409BBcDFFE2ABBFDED7E2b ; < v7LY2Zgbsl7qiJ8qy7W40GmZnv742IrPzyKvHsk6EH4dv4dpUyouI25g5s265KA5 > > // < PUTS 90,324812219037 ; quote ; 42,0914489178737 ; 41,2496199395162 ; 0,0204081632653061 ; -1,8 ; 38,9345902490332 ; 45,2483075867143 ; -2,3 ; eed69fCfe1f7dF2EB7e9a224fBDCfaBdAAbFFf8ea448D1EDBC7edDA8eAAdeaAE ; < T9YvHymaNVtJokvv1RM5HZpogePCnxX7FZyY6U5WuRc2tCr396h7SO8Ww78fc1fz > > // Futures_Eurosibenergo_Engineering_LLC // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 56,013199 ; 1,14 ; 48,1343850877193 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; 5B0BfAe25CfeA3bebcB726b7f677cCBBe440F58421ADC5eF3ea2e0ac540DAb8c ; < xA81vJ17bZoX4ynr8LS9dqi4RYAVOGH6EWj883Vw4tS8Gg0fY4nvm7Z1heURz9sY > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 56,0142756738532 ; 1,14002508 ; 48,1342485849988 ; 56,0140256738532 ; 56,0145256738532 ; -4,7 ; -7 ; 7,6 ; 6 ; -1,5 ; 5,4 ; 0,16 ; Future69AP19 ; aB3EB8B06CBFCaCe5CcE202d10D7bDAeaF8EbCB7BCcead0f9Bf56A3F7ccdfdFC ; < ot42W1dd2UmuZHeZf8PD12FiZR6bi9Kv44q42NnjYKCTw5H13NB9Fccf0jsaKJUa > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 56,6207834187429 ; 1,15383235592122 ; 48,0719324416385 ; 56,6205334187429 ; 56,6210334187429 ; 1,8 ; -4,3 ; -1,3 ; 7,6 ; -6 ; -7,2 ; 0,68 ; FutureJU1916 ; Cad63B8bAa1fEC0deFacAfD2aCFAAE4F913F836fc3Cb5bB2dcde2DA46fb2daAf ; < uTw1H3eANwYaeXvCTru25t94h91qfq6ZxE2BaPJ7k081jZ2ItBH3iI8waX6K4KFj > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 57,2813462028584 ; 1,18203756547107 ; 47,4598356906114 ; 57,2810962028584 ; 57,2815962028584 ; -9 ; -2 ; -1,6 ; -2,2 ; -0,7 ; 5,4 ; 0,05 ; FutureAU1992 ; 50bE1CADadCbede9fdDDAc0e027F37ffDBbC93f1C2E3ad96AE6eacAeFEaaAd8B ; < OY3a2e47PyNBs6qMoAC2D6UkvR27C2x8D94uh97u91l67av8zzixroY6aa94fZ4O > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 57,9605451626703 ; 1,22544797504721 ; 46,2974343610447 ; 57,9602951626703 ; 57,9607951626703 ; 1,9 ; 0,8 ; -4,2 ; 2,2 ; 6 ; -6,6 ; -0,54 ; FutureOC1924 ; Ca0EdBF9cdDaEBE63Cd2d7bBe1dCd8F153bA8eCbCCddfBaAaa7Ec8CFb43D02Fd ; < FsDfN85Jo8Z8BIB6RLCBbS6qv812L265fwi4k85dxIE694OC36wEvdTUds497V6P > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 58,6734376270658 ; 1,2859152117272 ; 44,627765417175 ; 58,6731876270658 ; 58,6736876270658 ; 6,8 ; -2,7 ; 8,7 ; -6,5 ; -4,9 ; 8,8 ; -0,38 ; FutureDE1995 ; DB04BaeaAFE1Bbedaeac0baF90FdE6D1706FeccEdbBCC38d27Bf5bCd5Cf38ae1 ; < r1UbuKOsqBJ7HygpDfVGzBewPB63e4RAgO1wr11G5zai3WH08FT7p1bNCBbK8Jgg > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 59,4381293097846 ; 1,36575682087586 ; 42,5202873610157 ; 59,4378793097846 ; 59,4383793097846 ; 5,8 ; 0,5 ; -3,9 ; -6,8 ; -6,5 ; 4,2 ; -0,77 ; FutureFE2094 ; CBCeb98d4CD69dBAC27EfEFd4cC23dbD015eF0E7bfE3A31dFA6cAeDD7BfC23BB ; < 2v29HM24w5Z5Vm29Q2CZ2Q6SQ491B3YIMG3KQ3Z0Cv2Y936Jx36pjG50H920U4Q6 > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 60,216541479358 ; 1,46824594422802 ; 40,0125713039301 ; 60,216291479358 ; 60,216791479358 ; 9,2 ; 1,9 ; -0,4 ; 9,6 ; 9,9 ; -6,6 ; 0,67 ; FutureAP2023 ; DdeF91E89cdD82cc4c5fBcF07EeF9090C2c7b5d46E8da01dF6FAc2cb8DeECb6d ; < qs8Z7GaA7EHRV4t46hW68PNWgq6um9A831p6m4UOu0Zj6183R6Bk8TRIasxM2475 > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 61,0159387067991 ; 1,59751157621794 ; 37,1943640441419 ; 61,0156887067991 ; 61,0161887067991 ; -4,7 ; -6,5 ; 6,2 ; -5,7 ; -2,9 ; -1,2 ; -0,24 ; FutureJU2061 ; EbFabBAa1F1eFbCE4085cCFd5cDBB0D8EaeAEFaB8EE696bbBCfc0cfec85C7EbD ; < 38qOm1Rj00SX0I8370eYnOyd6fG0KTfGhG5130Lb33Q393c9v7n5Yn89W38ANkDb > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 61,9238665771775 ; 1,75915545405886 ; 34,2009064544592 ; 61,9236165771775 ; 61,9241165771775 ; -5,6 ; -8,1 ; -8,5 ; -6,6 ; 6,3 ; 9,6 ; 0,53 ; FutureAU2034 ; bdAccBBAaAF1ADFfABDd3BcfD9EC3AcaFc33AD0BDfDEBD64aEADcde6ABBBb5e9 ; < yv0zP552gx110qQLtlVcmqmAK6111ycltPZ8WBNcS4Jnw4HDkdYyY2KvO1qkgB4U > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 62,78621593597 ; 1,96058882074028 ; 31,024162981947 ; 62,78596593597 ; 62,78646593597 ; 0,3 ; -5,6 ; -8,2 ; -6,9 ; 7,8 ; -7 ; 0,3 ; FutureOC2017 ; 58EE675E1dDCBAEFAacb04cABddBd9b6977DFfB0fE7EEf8FA0FCeAbD0fE6fFFA ; < jSD5Sqh5l5zsR86st8rAaliQ3jfhudac8x8iEJE3iQo0n0J1gSd18tB7Cc928sch > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 63,7030891371721 ; 2,21189628703202 ; 27,8002152319043 ; 63,7028391371721 ; 63,7033391371721 ; 5,5 ; -2 ; 9,6 ; -5,7 ; -8,1 ; -3 ; 0,89 ; FutureDE2097 ; DFb9FA0Ba3dB2c728EAcFf3E16bCEe75FBedFac75AfD36CC05cAFEAeAA05E31D ; < 9De8Q7ph95F309yV7G7UY801jCVR195wRm26guuuoMty0084bt06llawqcO27Y3h > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 64,7915207025541 ; 2,52553289687528 ; 24,6545938414493 ; 64,7912707025541 ; 64,7917707025541 ; -2,9 ; 7,1 ; -3,7 ; -4 ; 3,3 ; -1,3 ; -0,29 ; FutureFE2115 ; bFFA1Db6DFABFda5fCe5e9B66Aa7EbdDDCFDF4aD6a4FE4911E2D27BFDEBccBEA ; < 8gNsS29seNm1LLR3Re07u6X1uLR80VZa7iwg9v69JRy11P1WUp2qk26MGf1Khn8L > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 65,7548585984965 ; 2,91831892619471 ; 21,5317589548845 ; 65,7546085984965 ; 65,7551085984965 ; -6,2 ; 9,2 ; 2,9 ; -3,5 ; -7,1 ; -7,4 ; 0,24 ; FutureAP2173 ; fbb7e08dBD49fbEd0CcDecd59bD1a6b4E7aa84bAF1FC9F4EAD7E8c47BEEfD907 ; < 25ju9HPEgKUHu09M84cZ7MpIs4C8T3749c6zY1z9ZFJvWK9AMW4YSrb6JUA57dL6 > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 66,9115817811158 ; 3,4131419242205 ; 18,6041018119683 ; 66,9113317811158 ; 66,9118317811158 ; 5,2 ; 1,5 ; -7,1 ; 0,9 ; -7,9 ; 3,4 ; 0,22 ; FutureJU2129 ; aB0F6D6FC3feF0FCCdED34AdEABAAEcAcffdcDbd3EB7d50AEB8362Fe38Cec3df ; < qxiJYNpFmCOjjw13nE8X55h026lZ7URORW4hibE8E6s0qaoFZod05Gp5EdbcV1R1 > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 67,9016434280286 ; 4,04031708527713 ; 15,8060184373799 ; 67,9013934280286 ; 67,9018934280286 ; -0,7 ; 7 ; -2,9 ; -1,7 ; 4,5 ; 9,5 ; 0,62 ; FutureAU2184 ; efD0efBFBBC66dd4BfB2edebC1A33DBDFBe66fFbbdb81FFcee8fA0faCeecb4F7 ; < zuJ2EsMlzkEfKdtttURqj307wkvEF5s740iy2640Hnj7Oe78omZ0Fk6imOzy2HYj > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 69,0396912554752 ; 4,84108167738436 ; 13,2612118233827 ; 69,0394412554752 ; 69,0399412554752 ; -7,7 ; -5,2 ; 3,3 ; -5,7 ; 4,2 ; -5 ; 0,71 ; FutureOC2145 ; e83D32EB95b37F6f7EfbCCacDFA2E5cA5D88FA7e008C545DFf5D5b2eCF09bBDE ; < lN9oPpMHwvb6V51TCrLhk0WQZ0603ktKvCKPg1Ss1FoaghLo7t4EHh5Bj866oiCL > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 70,3518564677732 ; 5,87046535365781 ; 10,9840340125571 ; 70,3516064677733 ; 70,3521064677732 ; 1,7 ; 5,7 ; -5,7 ; -5,4 ; 5,3 ; 8,3 ; 0,12 ; FutureDE2157 ; C609dB9cDCfD5923Bdc1f5EfFbCBA8A450CaAb8CAdCBefBe8E0CececBEEa9Ad6 ; < BcHlQ9Q67jp75Hwpx4CUa2SxGwR6eb3Hg7U1r7n74tMrWhHN13tjpR8BvEU3ceaF > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 71,5621121169179 ; 7,20557825655558 ; 8,93148774032274 ; 71,5618621169179 ; 71,5623621169179 ; 9 ; -9,3 ; 9,4 ; -6,5 ; 8,1 ; -4 ; -0,31 ; FutureFE2244 ; B7ca61eBd55ee19bCeeCDE230C2ab3fAFC5EeCad6A3Dcdac44CADABFDAaa0F45 ; < 2w686sLl2Ca2h2eGB8tc3cNXf52ByH4TSntvs7X5MLuLGgH16c0sa1Mf6LzA62lp > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 72,8001434569046 ; 8,95140250048264 ; 7,13281979589001 ; 72,7998934569046 ; 72,8003934569046 ; -9 ; -1,6 ; -8,1 ; -1,2 ; 7 ; 4 ; 0,85 ; FutureAP2246 ; E6CBebFcddAbbB5dBBE9Ffd3DC20Eaf7ccD3487D7cfCcAe8DCEE9cfbb0c7ce23 ; < MUTLY91dg2EUYUB5wns9typUH6bVgUA9w02dy73fDCWDOuYatH6z7CL8X32q6l47 > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 74,1837445948671 ; 11,2550946104042 ; 5,59112581126519 ; 74,1834945948671 ; 74,1839945948671 ; 0,1 ; -4,7 ; -1 ; 8,5 ; 4,1 ; 8,6 ; -0,3 ; FutureJU2229 ; 1d0CCE55888D5dC8ffe4caF8BFFF9eaA05AABFfCBdAD7BEEaedebbdE8fF42ecd ; < 3T0oSj5uSxd2Sm3GgB4EmS5H0w9TMyHi6mdN25SP4OD4HyHCiF8Q2W0J1iW3lJgY > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 75,8870005898446 ; 14,3239501178437 ; 4,2979101410937 ; 75,8867505898446 ; 75,8872505898446 ; -1,2 ; 4,9 ; -8,4 ; -3,1 ; 8,1 ; -2,8 ; 0,24 ; FutureAU2240 ; DfDf7Ba5EA0a9C4ab238EF389a02Ca1DC23BEDbFbbE20ECEEbdfDeE62fbd16B8 ; < 88Ia4h5W7vVFdGRrQr7imiMjCQbMey57m0ko26s5kKT84dH6LcsQWm9njmRwFF7m > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 77,2705322507099 ; 18,4509209981858 ; 3,18789567514314 ; 77,2702822507099 ; 77,2707822507099 ; -4 ; -4,9 ; -1,8 ; -2,5 ; -8,6 ; -5,6 ; 0,9 ; FutureOC2238 ; D3cEc0bfCEE1E65CAbbDfF8bFdE2fC55bADcfBB5e4dbFF6eBaebBcdCB9DE0DD2 ; < 7gE182877W1k2ku9WyQvU9vSjv2whMARUo3VXvRgx5VLL9N7X50XZaatlU2a0h75 > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 78,8466753143467 ; 24,0540429172418 ; 2,27789700823348 ; 78,8464253143467 ; 78,8469253143467 ; 6,6 ; 6 ; -7 ; -0,5 ; -5,1 ; -9,5 ; 0,03 ; FutureDE2299 ; a71E0Fa6f8E5aDf0Bc8E0D1cBFBa6aEada3CC7ffb095Fcff5bDA1BFCf08079d9 ; < kX771lgr0Kew5t6uzI846s61fF8tz5mO0e935D1k2Xh8I4xRcKsr4ygc842B5k16 > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 80,2775306779822 ; 31,7368503971352 ; 1,52947377176497 ; 80,2772806779822 ; 80,2777806779822 ; 4,4 ; -0,5 ; 3,4 ; -2,5 ; -4,3 ; -8,7 ; -0,23 ; FutureFE2334 ; 621eAeb64EDDfA19a988Bac5BEEfFcd2cFCCFcEaEE8C3f1BBBB3ecA4bEae25F3 ; < opbEO62FRw4ang18s138h0MCrKW2C2VVa0RMLM8stL9G0Y2yF65Zq72DD68DPiHm > > // < CALLS ; 2Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 32,8774292992482 ; quote ; 57,5879066477486 ; 56,4361485147936 ; 0,0204081632653061 ; 8,3 ; 53,124843882548 ; 62,0509694129491 ; -8 ; 74dfFcEAcea00Fe43EDecdE0502dEbd4017ddBd8BfefB4ce5eAEA591A8Ad2dbb ; < VmfT537Iw89Z6e0I1Kl2QvTlcpaW10Z205JCAjwtW44QUL5gW628lZCPfQz40A9O > > // < CALLS 36,1651722291731 ; quote ; 53,6044676860604 ; 52,5323783323391 ; 0,0204081632653061 ; 5,6 ; 49,4501214403907 ; 57,75881393173 ; 5,2 ; dd6ddF4ba22d0BAadd7EEecDE66d132db31A9BFDB4F205Ce7E70AD8051ADdcDA ; < zIr05BrnhX1822rpd8Czhwngq66A8R1jeKM211Q92TFIO4MlRe9hrRxG0cbWNnDL > > // < CALLS 39,4529151590979 ; quote ; 49,749238783706 ; 48,7542540080319 ; 0,0204081632653061 ; -8,7 ; 45,8936727779688 ; 53,6048047894432 ; -5,6 ; 96d7cDd63cF505b5ddf1afFdbc9c2FedaceceDaCdc4BeBafe1e3EFedcB5ae9DB ; < orwO1vm0d512lj28jo71Hn5XvJ4Hm5QZ6M1oH1P5tY08lN9m34roX3UBwFaYDp9y > > // < CALLS 42,7406580890227 ; quote ; 46,043352958261 ; 45,1224858990958 ; 0,0204081632653061 ; 7,5 ; 42,4749931039958 ; 49,6117128125262 ; -3,4 ; FDBD42eace5AA8CCdDDD08F0EBa95a68CEEAdfDB8cBf26dDAdCD8DCabA5FFB4b ; < 0oi3CBswug5tnaQxxlU6yVFHaU0zi0jM9GSRvuqR97b9oP13P231XxNbD5xJZhA5 > > // < CALLS 46,0284010189476 ; quote ; 42,5041624904487 ; 41,6540792406398 ; 0,0204081632653061 ; 1,6 ; 39,2100898974389 ; 45,7982350834585 ; 4,7 ; EeE8edb6febF571B1CBfAf343EfFaf8e61BAfDafFfD3aAe5bF4EceDf4EDE8a4c ; < M71MrJ61mCu6375Z8EU0A57iNsIa8CN5lZ05Jaa2K41YTN6n4sWn1mQW8SOb92CX > > // < CALLS 49,3161439488724 ; quote ; 39,1447745021317 ; 38,3618790120891 ; 0,0204081632653061 ; -3,2 ; 36,1110544782165 ; 42,1784945260469 ; -5,6 ; e9Cc5Dbc42eaCdb5CBFa43D5F0e9Dad1DacBEBc3ace1CDFbBBd3EaEEcbAF8D8d ; < 09Z9Z73fHuigcuPKe4r7HYw23BlOySVEU048aKM4vthqd3vF1327L1lZZG7omCFR > > // < CALLS 52,6038868787972 ; quote ; 35,9740072988448 ; 35,2545271528679 ; 0,0204081632653061 ; 0,7 ; 33,1860217331843 ; 38,7619928645052 ; 2,3 ; fb4De199FbB12e0ceECcB0fdBcAA0Cd9bccBB9dEAec9b5bf3Ab8caf8efA6CF9b ; < 5mR4GrM8LfIm8u5BJY4dU8HFs9cnlOOCfCZ6smCNOFJ7kNZEz6poG1IrGaWmK0qw > > // < CALLS 55,891629808722 ; quote ; 32,9966443893104 ; 32,3367115015242 ; 0,0204081632653061 ; 9,1 ; 30,4394044491389 ; 35,553884329482 ; -9,3 ; cB7AcEEaAfCDfdBd97dEDe0bbfdaf9ADc5FDadf7BfBb6B14f60ACDC4FaDfeeCd ; < 92Z2RE3O5A2KXmbP9Wsg6w8Uh9y2i6o3y3rbtL47W0hLCWTihNef9vdV8Sh3823R > > // < CALLS 59,1793727386469 ; quote ; 30,2138736853229 ; 29,6095962116165 ; 0,0204081632653061 ; 6,2 ; 27,8722984747104 ; 32,5554488959355 ; 7,1 ; 56C0cc0BFEACFdeaFAc6fc3cbdD5b602dEceE5F5c9CaBD1Cc1E807df0fC761EB ; < MNsq6SuuLQPC75892Q0H6R87c963b3quaS1pV41H3349pP2Xq7X39LpR55Bp6LYy > > // < CALLS 62,4671156685717 ; quote ; 27,623821116272 ; 27,0713446939466 ; 0,0204081632653061 ; 9,8 ; 25,4829749797609 ; 29,7646672527831 ; -2,1 ; A541A945DcDbCD3bAd1cC00FAC6Cda3C65ABBE8EaEbfA62Bef3CFe0efdccD7Ed ; < 2LTFpTWcl1161KBsJcd2YMtxEXIgEr309a6r7rl9fsNxm2789m41B8WbsE1VHa7q > > // < CALLS 65,7548585984965 ; quote ; 25,2221118387227 ; 24,7176696019483 ; 0,0204081632653061 ; 8,1 ; 23,2673981712217 ; 27,1768255062238 ; -3,4 ; FCCaC0d294c7C2AAEE6D584dCaD21a4fd2b2c331F7DaDAD3EB3c5cbbF7bB4Da7 ; < av5xSHcY12k5Y7PDO0vJFl18bP6k2e6hT36wdzOzQyNDQ9NiCA5QeyykiCfy6t9s > > // < CALLS 69,0426015284213 ; quote ; 23,0024138329086 ; 22,5423655562505 ; 0,0204081632653061 ; -9,4 ; 21,2197267608582 ; 24,7851009049591 ; -9,9 ; c62BE2446C4E1DcBCCD92CedD193C8c2df4bF92cbEe4EaEAE5eb88CEAFCfCdA6 ; < KP5WQJ52E9uZeo3V704a5tFyoov22hkzG9680Oir9Y7W1j7YspmnhcliOna7AyBN > > // < CALLS 72,3303444583461 ; quote ; 20,9569361662668 ; 20,5377974429415 ; 0,0204081632653061 ; 6,4 ; 19,3327736133811 ; 22,5810987191525 ; -9,4 ; bBffcDBcfCaE9CaFAbACAe7EbEfF3Eef3D3ea03Acbfeb4d30DfCB4E5DAa0dfB7 ; < N1LYNndPVHrIMhf4Zj7K43m14NEbj7Wao27RzgP8oYBkL7OpM3Mo4Oe21uzKjfTW > > // < CALLS 75,618087388271 ; quote ; 19,0768673163296 ; 18,695329970003 ; 0,0204081632653061 ; 1,6 ; 17,598410099314 ; 20,5553245333451 ; -7,5 ; 6A8bada1b58EbceeFC04Ff5A90e4bABA9BaDE56e340F0d2985dbcf4bf3aC310f ; < gAjv5hHFZgqQP9jNFVwN6yby92hawapY7jC1snaAb0801XYW21bHfo03VfL0wCrx > > // < CALLS 78,9058303181958 ; quote ; 17,3527481632677 ; 17,0056932000023 ; 0,0204081632653061 ; -1,1 ; 16,0079101806144 ; 18,6975861459209 ; -8,5 ; cF6Cb1BC6Df9A50376Aee8fEee61DCCaB49D2A1ae938b59CBB0C7Cc9ca9cD7F8 ; < U599JkZVx99SIgBm0Qwiwss24Kypjy3MUy1CILZ2QuHLVQ9LYfIG0E5u8967IqBd > > // < CALLS 82,1935732481206 ; quote ; 15,7747803335794 ; 15,4592847269078 ; 0,0204081632653061 ; 5,7 ; 14,552234857727 ; 16,9973258094318 ; -8,8 ; f7F47FEcfeb79E17D7ba4a5Ba3902cd9Adb21AaAEc6EA4D9aad61eD8Ba7ebDD2 ; < 1pB0F1i9c1e5O40QTOs83Er19alecV7DKlMLb6fS7e60ISxDAyZ6825BOiot071v > > // < CALLS 85,4813161780455 ; quote ; 14,3330742666231 ; 14,0464127812907 ; 0,0204081632653061 ; -1,6 ; 13,2222610109598 ; 15,4438875222864 ; -8 ; 4eBCEc9A8fCC9A611cFC3fbbCd4AE8A05Bed2fBe31fD76bDdBfFa958d9aACCf5 ; < l6bpD4to7fku5J371G4ISGb6qB7pK458eQD0IB4bYeX8moa2F7SB7eX9xO1i4p6Q > > // < CALLS 88,7690591079703 ; quote ; 13,0178433568744 ; 12,7574864897369 ; 0,0204081632653061 ; -2,4 ; 12,0089604967166 ; 14,0267262170321 ; -7,9 ; CafBc7Fff7BA0a74AFdDCE5EfA27e40aCc1ddBBEdcd700Ee8adECbbA3FbBEeFd ; < koj7HrKnDHV9EgKreeymUe8rxNCqQR7dQ351vVp4RQydfp4Ro7H23mqzBxa8wOGW > > // < CALLS 92,0568020378951 ; quote ; 11,8195513380887 ; 11,5831603113269 ; 0,0204081632653061 ; -8,3 ; 10,9035361093868 ; 12,7355665667906 ; 2,8 ; 9d5D6ce956CEaBe3c219bfCcAcC08AECabbC2b8cF0FfCd8ab4a52f8C7d96bdfA ; < 58B8r1p1YI4ud5RXGVRHg6x4dV313QOD3VI9W10m2IMvq19azwVVq8rz77pXpuB4 > > // < CALLS 95,3445449678199 ; quote ; 10,729020132261 ; 10,5144397296158 ; 0,0204081632653061 ; 7,5 ; 9,89752107201076 ; 11,5605191925112 ; -1,3 ; 1E1A8cdBCb9D42eFa6D3dD2FdB9d3FbBae9e81eeC6EB8A157bAE2eDc48a5d22F ; < 3vr7Ms3Z73vhKsQb1M19W617s2I5h9S79WJQ1g1jd44FB1zdr6C1DwzfYIzf8w47 > > // < CALLS 98,6322878977447 ; quote ; 9,73750498525262 ; 9,54275488554756 ; 0,0204081632653061 ; 8,9 ; 8,98284834889554 ; 10,4921616216097 ; 1 ; 3FB07f4ca2Be8cA1baD765Df577ba16AA5b3D3dA4F9dE0Cf0fE3eF5Ac53cE0B8 ; < Do3AMxlRJHz3G852goeS14RjA3PZVudK66RUH2d6YMVL7VJ5lrrAwS54Ydk764V1 > > // // < PUTS ; 2Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 32,8774292992482 ; quote ; 0,408665521929223 ; 0,400492211490638 ; 0,0204081632653061 ; -7,4 ; 0,376993943979708 ; 0,440337099878737 ; -6,3 ; C8C2eeCfd48EFc67E0aAF2cD6fBbecbD2B2eDFe8aEdA11bfaBA3aBaf6A0AFDAa ; < 1cIKG28NDJhO19Qvn832JWl2fzbLT1OC0G5HxQSj5bS062cZj4IKmLB7F0eiyj1g > > // < PUTS 36,1651722291731 ; quote ; 0,707302447659103 ; 0,693156398705921 ; 0,0204081632653061 ; -1 ; 0,652486507965523 ; 0,762118387352683 ; 9,3 ; 7F6CD36ddC6abDDe8bF2ABEAA365D0ca273FeFAc0be4Cc80cCE0fc1512ECfc3E ; < 8Kg0k67f33vvYCIHXhs4zvYaQXIN0t6L1IuH1INHFMSWW7Y78PqOTNwgr7Ys1hXe > > // < PUTS 39,4529151590979 ; quote ; 1,13414943272281 ; 1,11146644406835 ; 0,0204081632653061 ; -0,7 ; 1,04625285168679 ; 1,22204601375883 ; 1,4 ; 6Eb51fff49Ef1ae9a4E64d7dEBda8bA9Ee4a86f804e8bfbcEcff06E0DaaE0AcF ; < d1d3cHGWm6C19xCC7nm2u4L65X5axoav01LH8u2z72tDd2u9Z4dq53aHuq0TYm67 > > // < PUTS 42,7406580890227 ; quote ; 1,71033949469589 ; 1,67613270480197 ; 0,0204081632653061 ; -4 ; 1,57778818385696 ; 1,84289080553482 ; -1,9 ; 72F58FFFC07e80040B1afea5Ebec75Ed0d59fB6DDa2bfF6E9F0f1abc92caDDfA ; < U8NEBZ0l05qvO1L66n980rKCPR39Y91zCVuh461Y5Edi1qmFhwndmQx70n0y6989 > > // < PUTS 46,0284010189476 ; quote ; 2,45322491430167 ; 2,40416041601564 ; 0,0204081632653061 ; -1,3 ; 2,26309998344329 ; 2,64334984516005 ; 4,8 ; A7DB5FBEf1542CF617A1e23Dff0dFAbE8a5AD1E4E0DF49dD6623fDB6edAcBdfb ; < v20lOOTYo2N55d8E19F9nDO9osps36KHMcG65X8crWJw1UjS84Nrfzw9vE0Bp3WL > > // < PUTS 49,3161439488724 ; quote ; 3,37591281340272 ; 3,30839455713467 ; 0,0204081632653061 ; -5,4 ; 3,11427957036401 ; 3,63754605644143 ; -8,7 ; C7DCEaF4c8Ae5eA8dCEEdD1E60CBFCEcC64c0aBbeF840F61CeBcC2dF3d4A2ad5 ; < QKhoT8028MZ47436xb1t30X5lx1F77CKB1r7FTiNmcv8MwR0h1EYBsK20M552gud > > // < PUTS 52,6038868787972 ; quote ; 4,48722149753384 ; 4,39747706758316 ; 0,0204081632653061 ; 3,9 ; 4,13946183147497 ; 4,83498116359271 ; -1,6 ; DBEaBeeBeedc83Da3adBD9acCec0F6F2e22B8beFD8B9dECEaDbc9CAb2Eb1eDBA ; < 77uQM2F8v1917aCKm1DZLe299et6P5rut90rXdT14Z0NiBFTk2V9u6HhCsotq2Nr > > // < PUTS 55,891629808722 ; quote ; 5,79193447541758 ; 5,67609578590923 ; 0,0204081632653061 ; -7,7 ; 5,34305955357271 ; 6,24080939726244 ; 7,5 ; e4D62bf5bEa7B5FfEeB5CEeCdbBcc50aca9BBE20cfbdbBaeFCCCCaCB7Ff9E456 ; < UA0zv2o6Y78pFmXp9cyVj9D0nt5t6k2Hv6NU3LoUw2TrmNPavPx4T88Ox3UdHPZH > > // < PUTS 59,1793727386469 ; quote ; 7,29123965884816 ; 7,14541486567119 ; 0,0204081632653061 ; 7,7 ; 6,72616858528742 ; 7,85631073240889 ; -1,1 ; eA5bbb0bcaaED0AAD4256A6cDF784FAD5eE49D457FbF0EeB0DEDba6f29A418ce ; < 5LNX1k5y0l3Cul02R65lVpwnxqKfojJzyF8m5d8Uoa2yJ0YdajfaFMqI49U499ZQ > > // < PUTS 62,4671156685717 ; quote ; 8,98326297721528 ; 8,80359771767097 ; 0,0204081632653061 ; 0,6 ; 8,28706009648109 ; 9,67946585794946 ; -1,1 ; 0c4b11edF4Dad15abbcb1Ea99Caaf8796d46BFd59Aa1bbeAC57008cf882DAb8E ; < Me48l009p237xMJsm82i38LJZUqI2biu5smTXpClWuju4VS2A0ad19mP4h93g7MC > > // < PUTS 65,7548585984965 ; quote ; 10,8636295870841 ; 10,6463569953425 ; 0,0204081632653061 ; 8 ; 10,0216982940851 ; 11,7055608800832 ; 9 ; BAbcecdF525Ba073eEc8AC4bbdaC59b3AF2c1399d7dA2d4aeE0AABedb16b54B4 ; < hOQrY2lg2nwBBqU4VmYx27BUF1tQ9k7LPxTYlw04851VXNTm65VQZ9u74k1k2LBI > > // < PUTS 69,0426015284213 ; quote ; 12,9260074686881 ; 12,6674873193143 ; 0,0204081632653061 ; 5,9 ; 11,9242418898647 ; 13,9277730475114 ; 9,7 ; aBe9a3D6d436B6Bcb5BAfbeceACBd6398dC58fdc5Df8efDF6e4adDC0F6BEFfC5 ; < zT1r4q89vbqj7lr3k3i2tb53G15NYaXVvRFV0PL1IhimeRZhsYc7mrVeSzBjVtfS > > // < PUTS 72,3303444583461 ; quote ; 15,1626056894643 ; 14,859353575675 ; 0,0204081632653061 ; 8,9 ; 13,9875037485308 ; 16,3377076303978 ; 3,6 ; E9Ef6a6f93AE3f34EfF8cAC12C1CEbC18C59C0f6880D727adaDD22d2Fa7BDBeE ; < tKK4QQSOCHA2B4zKZV6Ad07oCct6bgz9yQNszphYt2nqrmNvmJ759e1Zkubox720 > > // < PUTS 75,618087388271 ; quote ; 17,5646127269451 ; 17,2133204724062 ; 0,0204081632653061 ; 0,2 ; 16,2033552406069 ; 18,9258702132834 ; 9,8 ; c3D662AFdbf3aDB87EAcCc8086e5b31AFDA1Fb2f00fFADdDfFfaC31ccacFE073 ; < 6EKaVGsmbr9ckhf92J30eyhJulx3W4LT1u7LnqiO77VM57ile9gpk0O9OdcGZEOp > > // < PUTS 78,9058303181958 ; quote ; 20,1225694613013 ; 19,7201180720753 ; 0,0204081632653061 ; 0,9 ; 18,5630703280505 ; 21,6820685945522 ; -6,4 ; 8Acc9BB1Ecd85DAECBFEfBDEcbBBcf1D9B1eb0eE3BFCEeBDa0B5BcBB8dCCF355 ; < 6QG6oCaiaBoF78712HJ6J15945X2uXFtj4DxO37p9r1614n57G5d37522iU92972 > > // < PUTS 82,1935732481206 ; quote ; 22,8266775190311 ; 22,3701439686505 ; 0,0204081632653061 ; 0,1 ; 21,0576100113062 ; 24,595745026756 ; -3,1 ; 9fB6aAdB5Ffffd9f3965F7Ead7bCDFcbFA1Dbbde4Df7bE9E1bbAD1D0eBdbf3ac ; < h1fmJqlapsmZhd1BYVex2Y4VK8y3yF35kuzp7X1Z1Nx2piPeUjC0938fi2E2OqLX > > // < PUTS 85,4813161780455 ; quote ; 25,6670473394929 ; 25,153706392703 ; 0,0204081632653061 ; -2,1 ; 23,6778511706822 ; 27,6562435083036 ; -8,3 ; aafb3E4a743F1BDe01cE25EcFBEEd83dB4B13e4AdDB1dbaEbeFcA1F6C2dafe3A ; < QbTHBj1pOKXU53DwBBq2ZlBM26Xyd3ZX126333z6bu11Zsz8LEv6ea9Y9gB0It6H > > // < PUTS 88,7690591079703 ; quote ; 28,6338923171622 ; 28,0612144708189 ; 0,0204081632653061 ; 7,8 ; 26,4147656625821 ; 30,8530189717422 ; -3,9 ; eCEDEcffd24a2A564bfaef4Ca2ddfecB56f7f0CBBcA7e030EAFBdAB57AD0FbBe ; < sSlrpu63Cn0kE3eWqsSGjHKdlK0EpjTfW9RTq2kJHXM2Fv0pHQxq19H47ba8LM89 > > // < PUTS 92,0568020378951 ; quote ; 31,7176761857946 ; 31,0833226620787 ; 0,0204081632653061 ; 9,4 ; 29,2595562813955 ; 34,1757960901936 ; 3,7 ; Ab6fCfabEc0d5ddAeBb623f84d62ADD14F7E9FBd3aa9ceFfcdEf25ca41bAcedE ; < 4EgBf3X1Mg55RxgTXA4uL6tM00MA5K8ouWE3R7U6P57L4ql38MqtQ1iayf0qn7I9 > > // < PUTS 95,3445449678199 ; quote ; 34,909220867385 ; 34,2110364500373 ; 0,0204081632653061 ; -2,3 ; 32,2037562501626 ; 37,6146854846073 ; 4,5 ; CB8Adc4e3dd908e3f1bC6cA34DBc313b05Ffa5f002bbA0aFfDdC0fbeE5ca32bE ; < ooVpmmB2hZ59QhF89Im6eerv20Z0aTiWRGSDJPvfx78G442z651uHqoHgUC7pvC8 > > // < PUTS 98,6322878977447 ; quote ; 38,1997816077946 ; 37,4357859756388 ; 0,0204081632653061 ; 2,1 ; 35,2392985331906 ; 41,1602646823987 ; 5,4 ; FBAfBFF0cC6cedB838cb0ECeac1bdCCF5c46AECBe1fCCc7b3DCBFC4CD92fadAE ; < OZJkXj9xVyBAPU1P4Ok8PHD0rRv1jZ59o6aW07vkcpGZGTJ7AqhcBszc3X10mvO6 > > // Futures_Eurosibenergo_Engineering_LLC // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 56,013199 ; 1,14 ; 48,1343850877193 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; 5B0BfAe25CfeA3bebcB726b7f677cCBBe440F58421ADC5eF3ea2e0ac540DAb8c ; < xA81vJ17bZoX4ynr8LS9dqi4RYAVOGH6EWj883Vw4tS8Gg0fY4nvm7Z1heURz9sY > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 56,0142756738532 ; 1,14002508 ; 48,1342485849988 ; 56,0140256738532 ; 56,0145256738532 ; -4,7 ; -7 ; 7,6 ; 6 ; -1,5 ; 5,4 ; 0,16 ; Future69AP19 ; aB3EB8B06CBFCaCe5CcE202d10D7bDAeaF8EbCB7BCcead0f9Bf56A3F7ccdfdFC ; < ot42W1dd2UmuZHeZf8PD12FiZR6bi9Kv44q42NnjYKCTw5H13NB9Fccf0jsaKJUa > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 56,6207834187429 ; 1,15383235592122 ; 48,0719324416385 ; 56,6205334187429 ; 56,6210334187429 ; 1,8 ; -4,3 ; -1,3 ; 7,6 ; -6 ; -7,2 ; 0,68 ; FutureJU1916 ; Cad63B8bAa1fEC0deFacAfD2aCFAAE4F913F836fc3Cb5bB2dcde2DA46fb2daAf ; < uTw1H3eANwYaeXvCTru25t94h91qfq6ZxE2BaPJ7k081jZ2ItBH3iI8waX6K4KFj > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 57,2813462028584 ; 1,18203756547107 ; 47,4598356906114 ; 57,2810962028584 ; 57,2815962028584 ; -9 ; -2 ; -1,6 ; -2,2 ; -0,7 ; 5,4 ; 0,05 ; FutureAU1992 ; 50bE1CADadCbede9fdDDAc0e027F37ffDBbC93f1C2E3ad96AE6eacAeFEaaAd8B ; < OY3a2e47PyNBs6qMoAC2D6UkvR27C2x8D94uh97u91l67av8zzixroY6aa94fZ4O > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 57,9605451626703 ; 1,22544797504721 ; 46,2974343610447 ; 57,9602951626703 ; 57,9607951626703 ; 1,9 ; 0,8 ; -4,2 ; 2,2 ; 6 ; -6,6 ; -0,54 ; FutureOC1924 ; Ca0EdBF9cdDaEBE63Cd2d7bBe1dCd8F153bA8eCbCCddfBaAaa7Ec8CFb43D02Fd ; < FsDfN85Jo8Z8BIB6RLCBbS6qv812L265fwi4k85dxIE694OC36wEvdTUds497V6P > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 58,6734376270658 ; 1,2859152117272 ; 44,627765417175 ; 58,6731876270658 ; 58,6736876270658 ; 6,8 ; -2,7 ; 8,7 ; -6,5 ; -4,9 ; 8,8 ; -0,38 ; FutureDE1995 ; DB04BaeaAFE1Bbedaeac0baF90FdE6D1706FeccEdbBCC38d27Bf5bCd5Cf38ae1 ; < r1UbuKOsqBJ7HygpDfVGzBewPB63e4RAgO1wr11G5zai3WH08FT7p1bNCBbK8Jgg > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 59,4381293097846 ; 1,36575682087586 ; 42,5202873610157 ; 59,4378793097846 ; 59,4383793097846 ; 5,8 ; 0,5 ; -3,9 ; -6,8 ; -6,5 ; 4,2 ; -0,77 ; FutureFE2094 ; CBCeb98d4CD69dBAC27EfEFd4cC23dbD015eF0E7bfE3A31dFA6cAeDD7BfC23BB ; < 2v29HM24w5Z5Vm29Q2CZ2Q6SQ491B3YIMG3KQ3Z0Cv2Y936Jx36pjG50H920U4Q6 > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 60,216541479358 ; 1,46824594422802 ; 40,0125713039301 ; 60,216291479358 ; 60,216791479358 ; 9,2 ; 1,9 ; -0,4 ; 9,6 ; 9,9 ; -6,6 ; 0,67 ; FutureAP2023 ; DdeF91E89cdD82cc4c5fBcF07EeF9090C2c7b5d46E8da01dF6FAc2cb8DeECb6d ; < qs8Z7GaA7EHRV4t46hW68PNWgq6um9A831p6m4UOu0Zj6183R6Bk8TRIasxM2475 > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 61,0159387067991 ; 1,59751157621794 ; 37,1943640441419 ; 61,0156887067991 ; 61,0161887067991 ; -4,7 ; -6,5 ; 6,2 ; -5,7 ; -2,9 ; -1,2 ; -0,24 ; FutureJU2061 ; EbFabBAa1F1eFbCE4085cCFd5cDBB0D8EaeAEFaB8EE696bbBCfc0cfec85C7EbD ; < 38qOm1Rj00SX0I8370eYnOyd6fG0KTfGhG5130Lb33Q393c9v7n5Yn89W38ANkDb > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 61,9238665771775 ; 1,75915545405886 ; 34,2009064544592 ; 61,9236165771775 ; 61,9241165771775 ; -5,6 ; -8,1 ; -8,5 ; -6,6 ; 6,3 ; 9,6 ; 0,53 ; FutureAU2034 ; bdAccBBAaAF1ADFfABDd3BcfD9EC3AcaFc33AD0BDfDEBD64aEADcde6ABBBb5e9 ; < yv0zP552gx110qQLtlVcmqmAK6111ycltPZ8WBNcS4Jnw4HDkdYyY2KvO1qkgB4U > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 62,78621593597 ; 1,96058882074028 ; 31,024162981947 ; 62,78596593597 ; 62,78646593597 ; 0,3 ; -5,6 ; -8,2 ; -6,9 ; 7,8 ; -7 ; 0,3 ; FutureOC2017 ; 58EE675E1dDCBAEFAacb04cABddBd9b6977DFfB0fE7EEf8FA0FCeAbD0fE6fFFA ; < jSD5Sqh5l5zsR86st8rAaliQ3jfhudac8x8iEJE3iQo0n0J1gSd18tB7Cc928sch > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 63,7030891371721 ; 2,21189628703202 ; 27,8002152319043 ; 63,7028391371721 ; 63,7033391371721 ; 5,5 ; -2 ; 9,6 ; -5,7 ; -8,1 ; -3 ; 0,89 ; FutureDE2097 ; DFb9FA0Ba3dB2c728EAcFf3E16bCEe75FBedFac75AfD36CC05cAFEAeAA05E31D ; < 9De8Q7ph95F309yV7G7UY801jCVR195wRm26guuuoMty0084bt06llawqcO27Y3h > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 64,7915207025541 ; 2,52553289687528 ; 24,6545938414493 ; 64,7912707025541 ; 64,7917707025541 ; -2,9 ; 7,1 ; -3,7 ; -4 ; 3,3 ; -1,3 ; -0,29 ; FutureFE2115 ; bFFA1Db6DFABFda5fCe5e9B66Aa7EbdDDCFDF4aD6a4FE4911E2D27BFDEBccBEA ; < 8gNsS29seNm1LLR3Re07u6X1uLR80VZa7iwg9v69JRy11P1WUp2qk26MGf1Khn8L > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 65,7548585984965 ; 2,91831892619471 ; 21,5317589548845 ; 65,7546085984965 ; 65,7551085984965 ; -6,2 ; 9,2 ; 2,9 ; -3,5 ; -7,1 ; -7,4 ; 0,24 ; FutureAP2173 ; fbb7e08dBD49fbEd0CcDecd59bD1a6b4E7aa84bAF1FC9F4EAD7E8c47BEEfD907 ; < 25ju9HPEgKUHu09M84cZ7MpIs4C8T3749c6zY1z9ZFJvWK9AMW4YSrb6JUA57dL6 > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 66,9115817811158 ; 3,4131419242205 ; 18,6041018119683 ; 66,9113317811158 ; 66,9118317811158 ; 5,2 ; 1,5 ; -7,1 ; 0,9 ; -7,9 ; 3,4 ; 0,22 ; FutureJU2129 ; aB0F6D6FC3feF0FCCdED34AdEABAAEcAcffdcDbd3EB7d50AEB8362Fe38Cec3df ; < qxiJYNpFmCOjjw13nE8X55h026lZ7URORW4hibE8E6s0qaoFZod05Gp5EdbcV1R1 > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 67,9016434280286 ; 4,04031708527713 ; 15,8060184373799 ; 67,9013934280286 ; 67,9018934280286 ; -0,7 ; 7 ; -2,9 ; -1,7 ; 4,5 ; 9,5 ; 0,62 ; FutureAU2184 ; efD0efBFBBC66dd4BfB2edebC1A33DBDFBe66fFbbdb81FFcee8fA0faCeecb4F7 ; < zuJ2EsMlzkEfKdtttURqj307wkvEF5s740iy2640Hnj7Oe78omZ0Fk6imOzy2HYj > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 69,0396912554752 ; 4,84108167738436 ; 13,2612118233827 ; 69,0394412554752 ; 69,0399412554752 ; -7,7 ; -5,2 ; 3,3 ; -5,7 ; 4,2 ; -5 ; 0,71 ; FutureOC2145 ; e83D32EB95b37F6f7EfbCCacDFA2E5cA5D88FA7e008C545DFf5D5b2eCF09bBDE ; < lN9oPpMHwvb6V51TCrLhk0WQZ0603ktKvCKPg1Ss1FoaghLo7t4EHh5Bj866oiCL > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 70,3518564677732 ; 5,87046535365781 ; 10,9840340125571 ; 70,3516064677733 ; 70,3521064677732 ; 1,7 ; 5,7 ; -5,7 ; -5,4 ; 5,3 ; 8,3 ; 0,12 ; FutureDE2157 ; C609dB9cDCfD5923Bdc1f5EfFbCBA8A450CaAb8CAdCBefBe8E0CececBEEa9Ad6 ; < BcHlQ9Q67jp75Hwpx4CUa2SxGwR6eb3Hg7U1r7n74tMrWhHN13tjpR8BvEU3ceaF > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 71,5621121169179 ; 7,20557825655558 ; 8,93148774032274 ; 71,5618621169179 ; 71,5623621169179 ; 9 ; -9,3 ; 9,4 ; -6,5 ; 8,1 ; -4 ; -0,31 ; FutureFE2244 ; B7ca61eBd55ee19bCeeCDE230C2ab3fAFC5EeCad6A3Dcdac44CADABFDAaa0F45 ; < 2w686sLl2Ca2h2eGB8tc3cNXf52ByH4TSntvs7X5MLuLGgH16c0sa1Mf6LzA62lp > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 72,8001434569046 ; 8,95140250048264 ; 7,13281979589001 ; 72,7998934569046 ; 72,8003934569046 ; -9 ; -1,6 ; -8,1 ; -1,2 ; 7 ; 4 ; 0,85 ; FutureAP2246 ; E6CBebFcddAbbB5dBBE9Ffd3DC20Eaf7ccD3487D7cfCcAe8DCEE9cfbb0c7ce23 ; < MUTLY91dg2EUYUB5wns9typUH6bVgUA9w02dy73fDCWDOuYatH6z7CL8X32q6l47 > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 74,1837445948671 ; 11,2550946104042 ; 5,59112581126519 ; 74,1834945948671 ; 74,1839945948671 ; 0,1 ; -4,7 ; -1 ; 8,5 ; 4,1 ; 8,6 ; -0,3 ; FutureJU2229 ; 1d0CCE55888D5dC8ffe4caF8BFFF9eaA05AABFfCBdAD7BEEaedebbdE8fF42ecd ; < 3T0oSj5uSxd2Sm3GgB4EmS5H0w9TMyHi6mdN25SP4OD4HyHCiF8Q2W0J1iW3lJgY > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 75,8870005898446 ; 14,3239501178437 ; 4,2979101410937 ; 75,8867505898446 ; 75,8872505898446 ; -1,2 ; 4,9 ; -8,4 ; -3,1 ; 8,1 ; -2,8 ; 0,24 ; FutureAU2240 ; DfDf7Ba5EA0a9C4ab238EF389a02Ca1DC23BEDbFbbE20ECEEbdfDeE62fbd16B8 ; < 88Ia4h5W7vVFdGRrQr7imiMjCQbMey57m0ko26s5kKT84dH6LcsQWm9njmRwFF7m > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 77,2705322507099 ; 18,4509209981858 ; 3,18789567514314 ; 77,2702822507099 ; 77,2707822507099 ; -4 ; -4,9 ; -1,8 ; -2,5 ; -8,6 ; -5,6 ; 0,9 ; FutureOC2238 ; D3cEc0bfCEE1E65CAbbDfF8bFdE2fC55bADcfBB5e4dbFF6eBaebBcdCB9DE0DD2 ; < 7gE182877W1k2ku9WyQvU9vSjv2whMARUo3VXvRgx5VLL9N7X50XZaatlU2a0h75 > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 78,8466753143467 ; 24,0540429172418 ; 2,27789700823348 ; 78,8464253143467 ; 78,8469253143467 ; 6,6 ; 6 ; -7 ; -0,5 ; -5,1 ; -9,5 ; 0,03 ; FutureDE2299 ; a71E0Fa6f8E5aDf0Bc8E0D1cBFBa6aEada3CC7ffb095Fcff5bDA1BFCf08079d9 ; < kX771lgr0Kew5t6uzI846s61fF8tz5mO0e935D1k2Xh8I4xRcKsr4ygc842B5k16 > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 80,2775306779822 ; 31,7368503971352 ; 1,52947377176497 ; 80,2772806779822 ; 80,2777806779822 ; 4,4 ; -0,5 ; 3,4 ; -2,5 ; -4,3 ; -8,7 ; -0,23 ; FutureFE2334 ; 621eAeb64EDDfA19a988Bac5BEEfFcd2cFCCFcEaEE8C3f1BBBB3ecA4bEae25F3 ; < opbEO62FRw4ang18s138h0MCrKW2C2VVa0RMLM8stL9G0Y2yF65Zq72DD68DPiHm > > // < CALLS ; 3Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 36,4000717284523 ; quote ; 61,5308193640129 ; 60,3002029767326 ; 0,0204081632653061 ; -0,3 ; 56,6083538148919 ; 66,4532849131339 ; -2,6 ; c6Dd1FE4fCa3fbcFbD0ACEf6CA6e12b3c0eCF3d3DbeeAaa2CD4d1DABD5a0d3e9 ; < 48EW95G4ex329T7579Qd7Qc10Cl769k85A511wKIPZM99x7X7OyF8rLMlb0Fp2lG > > // < CALLS 40,0400789012975 ; quote ; 58,045248210132 ; 56,8843432459294 ; 0,0204081632653061 ; -9,5 ; 53,4016283533215 ; 62,6888680669426 ; 9,5 ; B16adc51bAEFdCA8ce2ce3a5E0dedA01cCce8c1c84e4Cd1aAEC4D31FCd5fbBCA ; < 90ciNR3xZC5IytA9tE7Fk8XZ029vwEEt659r4l5V5f2MKstKQxB4QMDJf431X9CA > > // < CALLS 43,6800860741428 ; quote ; 54,6875870286012 ; 53,5938352880292 ; 0,0204081632653061 ; 0,1 ; 50,3125800663131 ; 59,0625939908893 ; -6,4 ; 4Ae7A67C34eBff6dD0cFD6cA763EB5f5afaEf2AAEcABcdf0dc1fdc7baD3aed0e ; < Hw6o1o186YWvZFu01HFOQPx9il37G5EKigPIt1qY9I3f6I3r9uM162uzkv90X9D2 > > // < CALLS 47,320093246988 ; quote ; 51,4669757423064 ; 50,4376362274602 ; 0,0204081632653061 ; 9,1 ; 47,3496176829219 ; 55,5843338016909 ; -2,2 ; eeBA59C7eEc4FECEEE17DceA0bfAcb7ccdFbe4CEb483B45F023FCe96f00ABa9f ; < tVZIfo9gEEMzMfF9Xphuc81zi4j3Fb4Js258NXgA9c62211sK9z2ly8YC2wKE6t8 > > // < CALLS 50,9601004198332 ; quote ; 48,3896143750377 ; 47,4218220875369 ; 0,0204081632653061 ; -1,2 ; 44,5184452250347 ; 52,2607835250407 ; 6,7 ; b98dBed2DdAC3FabceaF2FAE69CCA4cECD1Ff294FfCbaA0eCBB4BFA4a9200965 ; < 2x4Q6gj7Zh0A5AwD5FsO1DuhHNP035E92C8bv976n8jOOh2BV9Q79F3JwwRU2me7 > > // < CALLS 54,6001075926784 ; quote ; 45,4590564027714 ; 44,5498752747159 ; 0,0204081632653061 ; 4,6 ; 41,8223318905496 ; 49,0957809149931 ; -4,2 ; 1D6ccD5D4C4aabcdbB1Bc3Ed0A990C86E1EfadA8a24ee2AACaEE8e2dCdc8bffa ; < G77QVG5fWV4TOzGki2i170HfOTLpUzCcHigE3m6oYXO0MozwbqmU4lL9YkGKAI8W > > // < CALLS 58,2401147655237 ; quote ; 42,6765659694769 ; 41,8230346500873 ; 0,0204081632653061 ; 1,9 ; 39,2624406919187 ; 46,090691247035 ; -3,7 ; BdaB3ceEbDCaD1dd2af0aCfB1679eE5Ccf1D57c2aBacecD418BE62c8c32ccc7D ; < nS0C9az537v3k0w3R11yQGd8FFFjCL5P05N835C8GV8T7G0mw83Mv1jC8dLR7A3D > > // < CALLS 61,8801219383689 ; quote ; 40,0414910307221 ; 39,2406612101077 ; 0,0204081632653061 ; -7,4 ; 36,8381717482643 ; 43,2448103131799 ; 6,8 ; ACBFEdf68DdED2F33Ea6aCAdEAd396AB17a9Db6c23B49DB566D01eD54eFe3c7f ; < T64UDl72V1JW2OPyeQMktAX0XI1fmzGy3Owo8aph5Z0TGd9aK1O27q11o5FnFaC7 > > // < CALLS 65,5201291112141 ; quote ; 37,5516227399988 ; 36,8005902851988 ; 0,0204081632653061 ; -6,7 ; 34,5474929207989 ; 40,5557525591987 ; 5,8 ; 09934DcCA8343BfF76B3aFBe4B1cfea34a8C7fB51AfdDDbBB08D1fCfb8AFAAcd ; < noT03JP0twgp39S826513i4EZ7k3ksTFm4XWQeSS9m4R87jgC6mXdrn9c8743637 > > // < CALLS 69,1601362840594 ; quote ; 35,2035243902198 ; 34,4994539024154 ; 0,0204081632653061 ; 8,3 ; 32,3872424390022 ; 38,0198063414374 ; 2,1 ; cCd67Efc8fbAB0f1c1F2eDbc8DDBdF3dd436fCBecA0bDdC0BACBcbB6cbE6c14a ; < 6k71X2G5PES15FnrAz6y27DN257f2m5R5yK267qx74ODLyMX6H6resfwcdf40210 > > // < CALLS 72,8001434569046 ; quote ; 32,9928219942121 ; 32,3329655543278 ; 0,0204081632653061 ; 4,3 ; 30,3533962346751 ; 35,6322477537491 ; 8,6 ; F3fF0d6e9D5c6A437AFfAc09ffeee2Ca9E8Fc4CEdbbCD5CCfCde08397E8E6daf ; < 5IRHUby78j3M5a9jioP07xQz39823YX2xs6T3ACor7hM32ez93Dv3j33Ro26564w > > // < CALLS 76,4401506297498 ; quote ; 30,9144542159824 ; 30,2961651316627 ; 0,0204081632653061 ; -3,6 ; 28,4412978787038 ; 33,387610553261 ; -7,3 ; 8d1e8aCfAd8bf406deaAe8cfD5F6aeCBb9bAEdCBBA7FeFcD1cafFb3BAfBBa8bB ; < G7wBkBdhFZBmg1Dd0lU2y1O9O96qRv4C567110hg93sTCLmqFDar5j0sEh67eK4G > > // < CALLS 80,080157802595 ; quote ; 28,9628827714671 ; 28,3836251160378 ; 0,0204081632653061 ; 4,3 ; 26,6458521497498 ; 31,2799133931845 ; 4,1 ; eAAd0ea2Ed55B2020075179deDdC8CCafCfb48FFE8be1eEd5A1A1FBe603153dF ; < O989f02iwWD6C23cJA7hclu08MXcWMRB6XFa9Y015jB4Xj8Akk81Gr10832ySE64 > > // < CALLS 83,7201649754403 ; quote ; 27,1322663162922 ; 26,5896209899663 ; 0,0204081632653061 ; 2,3 ; 24,9616850109888 ; 29,3028476215956 ; 2,8 ; ACe1bB8fD2fA9fdcadCffBEd6Fe6aea870bDba7eDeefA4adE2BdC59B28b8Dd4b ; < 2GS37EF1MEso9CrAn4pX667JMSWTBNnuz442zoodZFZJ2Yqwg9Gkm9qxVN3hV52H > > // < CALLS 87,3601721482855 ; quote ; 25,4166017493327 ; 24,908269714346 ; 0,0204081632653061 ; -1,1 ; 23,3832736093861 ; 27,4499298892793 ; 3,4 ; dEEA6eEB9A4F4cAEa3Fdb1B6c7DDCee6FC85FCD8Dc7747506Dc14C7fa67De06F ; < 8Z7ih9VL96XsFuIaVHK4BS87s9D1cBdRwldsNjjumgld5Ig0dH08AeVX0Fwls8e2 > > // < CALLS 91,0001793211307 ; quote ; 23,8098371502222 ; 23,3336404072177 ; 0,0204081632653061 ; 6,7 ; 21,9050501782044 ; 25,7146241222399 ; -7 ; BcFCbf6edDF4f3fea65B689F8fB66e23FAF6CCfE9EAE19Fa6BcCCDBcDDd04cDf ; < P7O1PH7o2pz2Zj7o6BR6r2112BLkL1O83eq8BU0nmNei0WTe0O1daqJlL3d3KuSl > > // < CALLS 94,640186493976 ; quote ; 22,3059604855858 ; 21,8598412758741 ; 0,0204081632653061 ; 6,2 ; 20,521483646739 ; 24,0904373244327 ; -1,5 ; a3e757a0AC8a0b0acfD2ccB0DC1432d8b34B55E0cFAddBDDb444acEDd8DDE2cB ; < 4eApA653Qs7cUN7TJ9TO039h4C5oJE25bk5yvzW9v07RMWXiBA8C7J4C672zbXkn > > // < CALLS 98,2801936668212 ; quote ; 20,8990679279314 ; 20,4810865693728 ; 0,0204081632653061 ; 7,9 ; 19,2271424936969 ; 22,570993362166 ; -4,1 ; dE8DaaBbBB28A52ab178FCA22CBBDBff14eDdFDB3acbff25E1AabA2bFc4Aa97C ; < g5S25zeY2LA9W6P6A22cOlBRbY460HFSKI0cw2e5sKZa1SHDDg8xK13mqKw8ZrNq > > // < CALLS 101,920200839666 ; quote ; 19,583415239393 ; 19,1917469346052 ; 0,0204081632653061 ; -8,5 ; 18,0167420202416 ; 21,1500884585445 ; 5,7 ; bfd8da3B7C5cCD8c71eB89ab3eb0fEeedCaACfcC8fDDfC8FbbB4faCcffFfDfbc ; < S3Irza3kEFPV941g0c8T05bX4o7r9hi9zDJ21K5aiJiM136Wf4Q60VBYI7A40md9 > > // < CALLS 105,560208012512 ; quote ; 18,3534552464126 ; 17,9863861414844 ; 0,0204081632653061 ; 1,2 ; 16,8851788266996 ; 19,8217316661256 ; 0,8 ; 6aEadbBe434DfF2C7a12aCce14CebFEA8eeEE0f745Bcc3bDcA1ceC2a180E08b8 ; < Ep7JO6x1K3y2El7R9PGYLL7XBX3TFYy60qTDY1uM742Ef7riZwHPC8nPScziJAs1 > > // < CALLS 109,200215185357 ; quote ; 17,2038640106649 ; 16,8597867304516 ; 0,0204081632653061 ; -8,3 ; 15,8275548898117 ; 18,5801731315181 ; -7,2 ; 1Ca95d0c3fD0Abcaa469bAfbfeAEdEdFAaDDE6Ca90E1F6Fa5C78cee9F4bC3ce3 ; < e06s3P50o9k2K4c61tZAVjkw576d3FDa01Oryc92Juh5q4pM72NISePH8160XR9r > > // // < PUTS ; 3Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 36,4000717284523 ; quote ; 0,862212417340544 ; 0,844968168993733 ; 0,0204081632653061 ; -6,4 ; 0,7932354239533 ; 0,931189410727787 ; -1,8 ; FD6d3dC1fcdcf41e6daBD8fA16C7daCe0D5efd21BedEc3AC006CaDdc8bb9BFc5 ; < oSKf6aZxC5WdjK80Oz3bv63e1ruozFl6grV4XBjx3lh7J81L4j1G2z50W9vn3Uiv > > // < PUTS 40,0400789012975 ; quote ; 1,30978056879249 ; 1,28358495741664 ; 0,0204081632653061 ; 8,6 ; 1,20499812328909 ; 1,41456301429589 ; -5,9 ; 38e4CE46fe1CE1bbdFDEb3FeDaccAdfFd5D170E77B2B88CdAFEBEFFccbfEefdA ; < rhOPqfs9io4158f4pSuIKfFi6rCmF0AvO875p9G2i76JIuixurVYWHNSa8x1U7z3 > > // < PUTS 43,6800860741428 ; quote ; 1,88525869259442 ; 1,84755351874253 ; 0,0204081632653061 ; 0,8 ; 1,73443799718687 ; 2,03607938800197 ; 5,3 ; BAef329eee978eaDEDc2CEEF86B5ecDBee38d2FcAe92F7b32cCCFCDa045f459D ; < m16ucFqjR2uID1eCNaC6k2TrGxu9QwkieRkV828Efre8uRNCS7ES37WffZ6T5AYD > > // < PUTS 47,320093246988 ; quote ; 2,59778671163235 ; 2,54583097739971 ; 0,0204081632653061 ; 7,3 ; 2,38996377470176 ; 2,80560964856294 ; -0,5 ; F41Ad313c65Cd84CaFfE5ABC703c6a7E9EafEcdd0CA3BBE06aabA6cA5BaE1be5 ; < h4E65271L8946SDRSjPurSEb5d7cv2Ond8xZ4MA0rQcnCAC26ar6PLMiZ7pMgQF7 > > // < PUTS 50,9601004198332 ; quote ; 3,4535646496964 ; 3,38449335670247 ; 0,0204081632653061 ; 6,8 ; 3,17727947772069 ; 3,72984982167212 ; 2,4 ; 56dD17E1ABEb1DD3eea6Dc2eeeB0Bea228ecD28EE4cf5a3D87eE9aDfEEe0f17A ; < 6pcRNQ1c5B2x8b3hGJvA915ON0ff1U3bE0z1b6J3r98r8825UyAr58jx1y1Ul8Vj > > // < PUTS 54,6001075926784 ; quote ; 4,45614598276286 ; 4,36702306310761 ; 0,0204081632653061 ; 5,6 ; 4,09965430414183 ; 4,81263766138389 ; -8,3 ; EfBFbFC5Ced69dD2CbBaAb22ebF0CEf9495FDfCB484FDB385C1acea6aCFDAdbc ; < wciA5zWI47t84h0723LTc61EmITx1Z1fXS0W35n7SQH2kZ81hP4632XQn0WyIGDW > > // < PUTS 58,2401147655237 ; quote ; 5,60679485480114 ; 5,49465895770511 ; 0,0204081632653061 ; -5,4 ; 5,15825126641705 ; 6,05533844318523 ; 2 ; 9B33Bf7dfdeBD1Cb4c8fA0dEfEDFA93AFdaBC7Bcc0AcfCa3f04E3cCF0fbbedEC ; < Q675p4zuWMJlwy4o10p7qRF6jUT4UI3IDbsGdBZ0Mo3xJV1mKtluh88QZ23gt4h6 > > // < PUTS 61,8801219383689 ; quote ; 6,90485922137916 ; 6,76676203695157 ; 0,0204081632653061 ; -7 ; 6,35247048366882 ; 7,45724795908949 ; -5,9 ; 834765e3cEdBb9275CEE7bffccfDeeaAF2b3d2ceF4C3eA4e5eDA3D4711c03AEC ; < 1h1epC7XWs0GLlDiyXZ27HPo3P36GVIPl7EYZ908c08I1lJ58dK3nRhevF0kwg6G > > // < PUTS 65,5201291112141 ; quote ; 8,34813023598856 ; 8,18116763126879 ; 0,0204081632653061 ; -0,8 ; 7,68027981710948 ; 9,01598065486765 ; -8,3 ; 03160F74758bcC8464afa4DFeFaaFdca2f7DacCABbefdCEe9AA713C6b84Fdb75 ; < wj9xF06V32HukES68K326a361dJeNbB55c9v5f4t84owhWP4oT30NQd63ID5rJi0 > > // < PUTS 69,1601362840594 ; quote ; 9,93317119154237 ; 9,73450776771152 ; 0,0204081632653061 ; 5,4 ; 9,13851749621898 ; 10,7278248868658 ; -0,2 ; dFDbeddE4DEBeB4f1AA85B0824d2ABd0ACC59e1D0EdEfd3DafEBBa374a71Edcf ; < 2H7lu7y60k7hLHg7EuHl5Q4fin5332uni7A7TRb642oI6oND84C1l75ja7E3dGRs > > // < PUTS 72,8001434569046 ; quote ; 11,6556081008674 ; 11,4224959388501 ; 0,0204081632653061 ; 7,8 ; 10,723159452798 ; 12,5880567489368 ; 1 ; 171e0E2cd90d4bcbf3ECae3DcBF1Ecc157ECDbda5E9dCEE7Fa4dbadF0cefaF5E ; < 6rSo5yW7H7Vx3uP7hG9D3DyAYFDUhC37E3l67X0M8Pqn6gvXx36XL8H3N6EcQV53 > > // < PUTS 76,4401506297498 ; quote ; 13,5103796279705 ; 13,2401720354111 ; 0,0204081632653061 ; -3,8 ; 12,4295492577329 ; 14,5912099982081 ; -9 ; A2FdCDe1fe6e4FcecF442ec03Cfb0d9ce6cc62aEaBACDDf08bbf2dBBB467d64F ; < 9I82V3LKz738iZ32ylphtn6nK2KJA5IaV9Wu4KFlSW2D2uux173M9gxYdU8WLUOD > > // < PUTS 80,080157802595 ; quote ; 15,491947488788 ; 15,1821085390123 ; 0,0204081632653061 ; -9,6 ; 14,252591689685 ; 16,7313032878911 ; -2,3 ; CCeAE85ea6ea3236182D3cC3DdB8eAFC2A224CA404A4fb1adAEA14C316f22Dae ; < 8yVQCa7kB1315T4U3Ca2hhj1i6GXf48FQrfsOnl9JJjcRXmzzWeaeR6KTf73IYf7 > > // < PUTS 83,7201649754403 ; quote ; 17,5944703389458 ; 17,2425809321669 ; 0,0204081632653061 ; -3,4 ; 16,1869127118302 ; 19,0020279660615 ; 2,2 ; b85ecCAE5Afb9fcEA4F9CACc5Af93aCDDaAcD4DD75aceeDff5Ed2bBDeFEAe2b5 ; < XSdGg3ZKR9BjwuyJ73o57646HXBT73cF6Nzjk9TkDLlE0p5m33KkaDbqNRrj0eVN > > // < PUTS 87,3601721482855 ; quote ; 19,8119450773191 ; 19,4157061757727 ; 0,0204081632653061 ; 5,5 ; 18,2269894711336 ; 21,3969006835046 ; 8,5 ; fb3CF2fCb5CEAEF74aEbA7BA2bf9c6ac0bCaeB8bEBabBad6DCdBaEC82CF3Ecc7 ; < kDLOs145EJO896muh032Ht6N7S650a3mu76g96wX4324qqJwW92T6I4Y98eNS34O > > // < PUTS 91,0001793211307 ; quote ; 22,1383197835413 ; 21,6955533878705 ; 0,0204081632653061 ; -4,8 ; 20,367254200858 ; 23,9093853662246 ; 0,9 ; 5Cd3d00c321fE97EFbCc9CC56e44D4f55cE6AD6db2c7Df4a705edc13B4AaFACf ; < 3i4R2YV14FG1s9x0b4bjq94SPZh51N4XCY1CkLSlWUB7mMC7q1U1QX7UBc4KAU28 > > // < PUTS 94,640186493976 ; quote ; 24,5675824242378 ; 24,076230775753 ; 0,0204081632653061 ; 5,1 ; 22,6021758302988 ; 26,5329890181768 ; 4,9 ; BdDcCFA9aFbb79F4EB06E28Cb384DfbEffFc8c9eE90Bf8a31af0AcdD201fedd7 ; < sGiZ0Ly0vyn72Qo7m122qCBJywZ3a94LU698Kes7kEu6o3Njr201t9Da0jZ1hh40 > > // < PUTS 98,2801936668212 ; quote ; 27,0938291719162 ; 26,5519525884778 ; 0,0204081632653061 ; -2,1 ; 24,9263228381629 ; 29,2613355056694 ; 6,8 ; bAFB4e80eEe28cD13d6BC8b2AA1473bADbceaD8d9dD40Fa4a6Dc35Ac91eae6bc ; < QBI8deev6Khk6l8DCbd4y59PwzJ51My6S4fNy3G9TvQ85d0X8JE7TvNNW6VahO1T > > // < PUTS 101,920200839666 ; quote ; 29,7113157887105 ; 29,1170894729363 ; 0,0204081632653061 ; 9,7 ; 27,3344105256137 ; 32,0882210518074 ; 0,5 ; eCaccB81F4cf263497c2B03591a4aeBc1c5D0DA79f0A4BEFBe2d0C3AafF7fdF1 ; < 3ifss4XqDaS9nBM5qvkk8L1xCbR50OX2lI0And0N3Xzr3v4x0NGtS59dSXyoJ3ur > > // < PUTS 105,560208012512 ; quote ; 32,4144951010629 ; 31,7662051990416 ; 0,0204081632653061 ; -0,8 ; 29,8213354929778 ; 35,0076547091479 ; -9,2 ; EB18ECcbF2C8FCa4eAdCdfFad1f6daCcfFDBDD5da5deAd6D7c1bEcDc6e1CBbcc ; < wo9y90W5Ms9NY71o1N9m7BHJ604Y33Krk2cq18tW8H6kxQV2Ykc0Zi75g9YXHYp7 > > // < PUTS 109,200215185357 ; quote ; 35,1980431706479 ; 34,4940823072349 ; 0,0204081632653061 ; 3,9 ; 32,3821997169961 ; 38,0138866242997 ; -2,2 ; 5bc5D6eDB2B45ECa9C9f7ecE1bcB0FcdE7acD60D5BC29CEc8deAdcAdEDF2c6Fa ; < 8cP995pNXXVA7ZZ6ioXd09B1531h8K2aPoRx4lDuqUT8EBLDTt7u0VR5YxUOpE9t > > // Futures_Eurosibenergo_Engineering_LLC // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 56,013199 ; 1,14 ; 48,1343850877193 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; 5B0BfAe25CfeA3bebcB726b7f677cCBBe440F58421ADC5eF3ea2e0ac540DAb8c ; < xA81vJ17bZoX4ynr8LS9dqi4RYAVOGH6EWj883Vw4tS8Gg0fY4nvm7Z1heURz9sY > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 56,0142756738532 ; 1,14002508 ; 48,1342485849988 ; 56,0140256738532 ; 56,0145256738532 ; -4,7 ; -7 ; 7,6 ; 6 ; -1,5 ; 5,4 ; 0,16 ; Future69AP19 ; aB3EB8B06CBFCaCe5CcE202d10D7bDAeaF8EbCB7BCcead0f9Bf56A3F7ccdfdFC ; < ot42W1dd2UmuZHeZf8PD12FiZR6bi9Kv44q42NnjYKCTw5H13NB9Fccf0jsaKJUa > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 56,6207834187429 ; 1,15383235592122 ; 48,0719324416385 ; 56,6205334187429 ; 56,6210334187429 ; 1,8 ; -4,3 ; -1,3 ; 7,6 ; -6 ; -7,2 ; 0,68 ; FutureJU1916 ; Cad63B8bAa1fEC0deFacAfD2aCFAAE4F913F836fc3Cb5bB2dcde2DA46fb2daAf ; < uTw1H3eANwYaeXvCTru25t94h91qfq6ZxE2BaPJ7k081jZ2ItBH3iI8waX6K4KFj > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 57,2813462028584 ; 1,18203756547107 ; 47,4598356906114 ; 57,2810962028584 ; 57,2815962028584 ; -9 ; -2 ; -1,6 ; -2,2 ; -0,7 ; 5,4 ; 0,05 ; FutureAU1992 ; 50bE1CADadCbede9fdDDAc0e027F37ffDBbC93f1C2E3ad96AE6eacAeFEaaAd8B ; < OY3a2e47PyNBs6qMoAC2D6UkvR27C2x8D94uh97u91l67av8zzixroY6aa94fZ4O > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 57,9605451626703 ; 1,22544797504721 ; 46,2974343610447 ; 57,9602951626703 ; 57,9607951626703 ; 1,9 ; 0,8 ; -4,2 ; 2,2 ; 6 ; -6,6 ; -0,54 ; FutureOC1924 ; Ca0EdBF9cdDaEBE63Cd2d7bBe1dCd8F153bA8eCbCCddfBaAaa7Ec8CFb43D02Fd ; < FsDfN85Jo8Z8BIB6RLCBbS6qv812L265fwi4k85dxIE694OC36wEvdTUds497V6P > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 58,6734376270658 ; 1,2859152117272 ; 44,627765417175 ; 58,6731876270658 ; 58,6736876270658 ; 6,8 ; -2,7 ; 8,7 ; -6,5 ; -4,9 ; 8,8 ; -0,38 ; FutureDE1995 ; DB04BaeaAFE1Bbedaeac0baF90FdE6D1706FeccEdbBCC38d27Bf5bCd5Cf38ae1 ; < r1UbuKOsqBJ7HygpDfVGzBewPB63e4RAgO1wr11G5zai3WH08FT7p1bNCBbK8Jgg > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 59,4381293097846 ; 1,36575682087586 ; 42,5202873610157 ; 59,4378793097846 ; 59,4383793097846 ; 5,8 ; 0,5 ; -3,9 ; -6,8 ; -6,5 ; 4,2 ; -0,77 ; FutureFE2094 ; CBCeb98d4CD69dBAC27EfEFd4cC23dbD015eF0E7bfE3A31dFA6cAeDD7BfC23BB ; < 2v29HM24w5Z5Vm29Q2CZ2Q6SQ491B3YIMG3KQ3Z0Cv2Y936Jx36pjG50H920U4Q6 > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 60,216541479358 ; 1,46824594422802 ; 40,0125713039301 ; 60,216291479358 ; 60,216791479358 ; 9,2 ; 1,9 ; -0,4 ; 9,6 ; 9,9 ; -6,6 ; 0,67 ; FutureAP2023 ; DdeF91E89cdD82cc4c5fBcF07EeF9090C2c7b5d46E8da01dF6FAc2cb8DeECb6d ; < qs8Z7GaA7EHRV4t46hW68PNWgq6um9A831p6m4UOu0Zj6183R6Bk8TRIasxM2475 > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 61,0159387067991 ; 1,59751157621794 ; 37,1943640441419 ; 61,0156887067991 ; 61,0161887067991 ; -4,7 ; -6,5 ; 6,2 ; -5,7 ; -2,9 ; -1,2 ; -0,24 ; FutureJU2061 ; EbFabBAa1F1eFbCE4085cCFd5cDBB0D8EaeAEFaB8EE696bbBCfc0cfec85C7EbD ; < 38qOm1Rj00SX0I8370eYnOyd6fG0KTfGhG5130Lb33Q393c9v7n5Yn89W38ANkDb > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 61,9238665771775 ; 1,75915545405886 ; 34,2009064544592 ; 61,9236165771775 ; 61,9241165771775 ; -5,6 ; -8,1 ; -8,5 ; -6,6 ; 6,3 ; 9,6 ; 0,53 ; FutureAU2034 ; bdAccBBAaAF1ADFfABDd3BcfD9EC3AcaFc33AD0BDfDEBD64aEADcde6ABBBb5e9 ; < yv0zP552gx110qQLtlVcmqmAK6111ycltPZ8WBNcS4Jnw4HDkdYyY2KvO1qkgB4U > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 62,78621593597 ; 1,96058882074028 ; 31,024162981947 ; 62,78596593597 ; 62,78646593597 ; 0,3 ; -5,6 ; -8,2 ; -6,9 ; 7,8 ; -7 ; 0,3 ; FutureOC2017 ; 58EE675E1dDCBAEFAacb04cABddBd9b6977DFfB0fE7EEf8FA0FCeAbD0fE6fFFA ; < jSD5Sqh5l5zsR86st8rAaliQ3jfhudac8x8iEJE3iQo0n0J1gSd18tB7Cc928sch > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 63,7030891371721 ; 2,21189628703202 ; 27,8002152319043 ; 63,7028391371721 ; 63,7033391371721 ; 5,5 ; -2 ; 9,6 ; -5,7 ; -8,1 ; -3 ; 0,89 ; FutureDE2097 ; DFb9FA0Ba3dB2c728EAcFf3E16bCEe75FBedFac75AfD36CC05cAFEAeAA05E31D ; < 9De8Q7ph95F309yV7G7UY801jCVR195wRm26guuuoMty0084bt06llawqcO27Y3h > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 64,7915207025541 ; 2,52553289687528 ; 24,6545938414493 ; 64,7912707025541 ; 64,7917707025541 ; -2,9 ; 7,1 ; -3,7 ; -4 ; 3,3 ; -1,3 ; -0,29 ; FutureFE2115 ; bFFA1Db6DFABFda5fCe5e9B66Aa7EbdDDCFDF4aD6a4FE4911E2D27BFDEBccBEA ; < 8gNsS29seNm1LLR3Re07u6X1uLR80VZa7iwg9v69JRy11P1WUp2qk26MGf1Khn8L > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 65,7548585984965 ; 2,91831892619471 ; 21,5317589548845 ; 65,7546085984965 ; 65,7551085984965 ; -6,2 ; 9,2 ; 2,9 ; -3,5 ; -7,1 ; -7,4 ; 0,24 ; FutureAP2173 ; fbb7e08dBD49fbEd0CcDecd59bD1a6b4E7aa84bAF1FC9F4EAD7E8c47BEEfD907 ; < 25ju9HPEgKUHu09M84cZ7MpIs4C8T3749c6zY1z9ZFJvWK9AMW4YSrb6JUA57dL6 > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 66,9115817811158 ; 3,4131419242205 ; 18,6041018119683 ; 66,9113317811158 ; 66,9118317811158 ; 5,2 ; 1,5 ; -7,1 ; 0,9 ; -7,9 ; 3,4 ; 0,22 ; FutureJU2129 ; aB0F6D6FC3feF0FCCdED34AdEABAAEcAcffdcDbd3EB7d50AEB8362Fe38Cec3df ; < qxiJYNpFmCOjjw13nE8X55h026lZ7URORW4hibE8E6s0qaoFZod05Gp5EdbcV1R1 > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 67,9016434280286 ; 4,04031708527713 ; 15,8060184373799 ; 67,9013934280286 ; 67,9018934280286 ; -0,7 ; 7 ; -2,9 ; -1,7 ; 4,5 ; 9,5 ; 0,62 ; FutureAU2184 ; efD0efBFBBC66dd4BfB2edebC1A33DBDFBe66fFbbdb81FFcee8fA0faCeecb4F7 ; < zuJ2EsMlzkEfKdtttURqj307wkvEF5s740iy2640Hnj7Oe78omZ0Fk6imOzy2HYj > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 69,0396912554752 ; 4,84108167738436 ; 13,2612118233827 ; 69,0394412554752 ; 69,0399412554752 ; -7,7 ; -5,2 ; 3,3 ; -5,7 ; 4,2 ; -5 ; 0,71 ; FutureOC2145 ; e83D32EB95b37F6f7EfbCCacDFA2E5cA5D88FA7e008C545DFf5D5b2eCF09bBDE ; < lN9oPpMHwvb6V51TCrLhk0WQZ0603ktKvCKPg1Ss1FoaghLo7t4EHh5Bj866oiCL > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 70,3518564677732 ; 5,87046535365781 ; 10,9840340125571 ; 70,3516064677733 ; 70,3521064677732 ; 1,7 ; 5,7 ; -5,7 ; -5,4 ; 5,3 ; 8,3 ; 0,12 ; FutureDE2157 ; C609dB9cDCfD5923Bdc1f5EfFbCBA8A450CaAb8CAdCBefBe8E0CececBEEa9Ad6 ; < BcHlQ9Q67jp75Hwpx4CUa2SxGwR6eb3Hg7U1r7n74tMrWhHN13tjpR8BvEU3ceaF > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 71,5621121169179 ; 7,20557825655558 ; 8,93148774032274 ; 71,5618621169179 ; 71,5623621169179 ; 9 ; -9,3 ; 9,4 ; -6,5 ; 8,1 ; -4 ; -0,31 ; FutureFE2244 ; B7ca61eBd55ee19bCeeCDE230C2ab3fAFC5EeCad6A3Dcdac44CADABFDAaa0F45 ; < 2w686sLl2Ca2h2eGB8tc3cNXf52ByH4TSntvs7X5MLuLGgH16c0sa1Mf6LzA62lp > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 72,8001434569046 ; 8,95140250048264 ; 7,13281979589001 ; 72,7998934569046 ; 72,8003934569046 ; -9 ; -1,6 ; -8,1 ; -1,2 ; 7 ; 4 ; 0,85 ; FutureAP2246 ; E6CBebFcddAbbB5dBBE9Ffd3DC20Eaf7ccD3487D7cfCcAe8DCEE9cfbb0c7ce23 ; < MUTLY91dg2EUYUB5wns9typUH6bVgUA9w02dy73fDCWDOuYatH6z7CL8X32q6l47 > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 74,1837445948671 ; 11,2550946104042 ; 5,59112581126519 ; 74,1834945948671 ; 74,1839945948671 ; 0,1 ; -4,7 ; -1 ; 8,5 ; 4,1 ; 8,6 ; -0,3 ; FutureJU2229 ; 1d0CCE55888D5dC8ffe4caF8BFFF9eaA05AABFfCBdAD7BEEaedebbdE8fF42ecd ; < 3T0oSj5uSxd2Sm3GgB4EmS5H0w9TMyHi6mdN25SP4OD4HyHCiF8Q2W0J1iW3lJgY > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 75,8870005898446 ; 14,3239501178437 ; 4,2979101410937 ; 75,8867505898446 ; 75,8872505898446 ; -1,2 ; 4,9 ; -8,4 ; -3,1 ; 8,1 ; -2,8 ; 0,24 ; FutureAU2240 ; DfDf7Ba5EA0a9C4ab238EF389a02Ca1DC23BEDbFbbE20ECEEbdfDeE62fbd16B8 ; < 88Ia4h5W7vVFdGRrQr7imiMjCQbMey57m0ko26s5kKT84dH6LcsQWm9njmRwFF7m > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 77,2705322507099 ; 18,4509209981858 ; 3,18789567514314 ; 77,2702822507099 ; 77,2707822507099 ; -4 ; -4,9 ; -1,8 ; -2,5 ; -8,6 ; -5,6 ; 0,9 ; FutureOC2238 ; D3cEc0bfCEE1E65CAbbDfF8bFdE2fC55bADcfBB5e4dbFF6eBaebBcdCB9DE0DD2 ; < 7gE182877W1k2ku9WyQvU9vSjv2whMARUo3VXvRgx5VLL9N7X50XZaatlU2a0h75 > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 78,8466753143467 ; 24,0540429172418 ; 2,27789700823348 ; 78,8464253143467 ; 78,8469253143467 ; 6,6 ; 6 ; -7 ; -0,5 ; -5,1 ; -9,5 ; 0,03 ; FutureDE2299 ; a71E0Fa6f8E5aDf0Bc8E0D1cBFBa6aEada3CC7ffb095Fcff5bDA1BFCf08079d9 ; < kX771lgr0Kew5t6uzI846s61fF8tz5mO0e935D1k2Xh8I4xRcKsr4ygc842B5k16 > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 80,2775306779822 ; 31,7368503971352 ; 1,52947377176497 ; 80,2772806779822 ; 80,2777806779822 ; 4,4 ; -0,5 ; 3,4 ; -2,5 ; -4,3 ; -8,7 ; -0,23 ; FutureFE2334 ; 621eAeb64EDDfA19a988Bac5BEEfFcd2cFCCFcEaEE8C3f1BBBB3ecA4bEae25F3 ; < opbEO62FRw4ang18s138h0MCrKW2C2VVa0RMLM8stL9G0Y2yF65Zq72DD68DPiHm > > // < CALLS ; 5Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 32,8774292992482 ; quote ; 68,7696516082759 ; 67,3942585761104 ; 0,0204081632653061 ; -5,7 ; 62,9242312215724 ; 74,6150719949793 ; -6,3 ; dfcCfb1cf1EdAe9AFea8cBDeecEC483cEFEDDD9D5E7AD446bDc7Eef1bcfDFDEe ; < UyGk5wa2uy99gjHngwjUL36J0AcSvHF9VE0sCSCDP30z7H2Lwt6u1eNv8rTvmy0f > > // < CALLS 36,1651722291731 ; quote ; 66,0394899014161 ; 64,7187001033877 ; 0,0204081632653061 ; 3 ; 60,4261332597957 ; 71,6528465430364 ; -9,5 ; 496Acaa5a85eCfCc67d1b4bC2b8Acb453fDfd66175Ebced117dbaEcc9D2ebAFb ; < NK225msRH53R7Psi6ZPJqSh9rKBc7KfmLKh0Bl3k76p65niIL717kimsN6DF9KCi > > // < CALLS 39,4529151590979 ; quote ; 63,4088182749812 ; 62,1406419094816 ; 0,0204081632653061 ; 3,7 ; 58,0190687216078 ; 68,7985678283546 ; -3,3 ; 4f1F9EdAa6CDDd4f888C4EEB1DF962BaD55D9BF4D0Cd55aF9d28DAEcCAFeb3ED ; < V2tD9u04YK5N95DDNb06lB1n9qj7XRCwM3ZkdIm1lTBB6HhGx7M7NqF7or7sU4n4 > > // < CALLS 42,7406580890227 ; quote ; 60,8785228676813 ; 59,6609524103277 ; 0,0204081632653061 ; -6,8 ; 55,7038484239284 ; 66,0531973114342 ; 4,8 ; Bd2dFa6Eba0c8ea7Baf3E3F2efe13d76FCf5CcFDbc255FCEFE7f6E6e8aaA2fFC ; < NdAXb185Ejn6sbg6ApQhEL4Vd8nHxa01TwWwddXDKcKRCG9u0x6u7Yefl5yNX4mz > > // < CALLS 46,0284010189476 ; quote ; 58,4483243190617 ; 57,2793578326805 ; 0,0204081632653061 ; -5,7 ; 53,4802167519415 ; 63,416431886182 ; -5,8 ; ACEfdeaedaaaEE4dabfACAC6154c7cfFfEE33ec6B9bE23C9Bb3055ede83eaBBc ; < i19369yDI0diTCNsHV7NWQhBSpA8A0l9I4W9v5CShrExUT30NJSHCT7343VgiiSc > > // < CALLS 49,3161439488724 ; quote ; 56,1170355544163 ; 54,994694843328 ; 0,0204081632653061 ; -2,3 ; 51,3470875322909 ; 60,8869835765417 ; -7,4 ; ADcCeCF61aE35EF65fCbfdB110D920e5bC2eFe6ba4BbfC276Bd4Fb7ffCDF40A2 ; < Eu14a0KCqJHz7Y4F5oK6v1D06SK8UOmF2NmOSv2u8Foq2h1nF8EJV7a3zJdJ6OTO > > // < CALLS 52,6038868787972 ; quote ; 53,8827769498618 ; 52,8051214108646 ; 0,0204081632653061 ; 7,1 ; 49,3027409091236 ; 58,4628129906001 ; 4,3 ; 882FBd98fEd6aAaC01BaF47c9D6c1a1C61e1EA9eA8faAe4be38D3bdb0fCbe0A4 ; < 11uo84P15471j9oE3D3KBn8m72MpLi6TEPd5lvkw35sDYMTswBrc842GAe520J7D > > // < CALLS 55,891629808722 ; quote ; 51,7431529046748 ; 50,7082898465813 ; 0,0204081632653061 ; 4,3 ; 47,3449849077774 ; 56,1413209015721 ; 8,4 ; 877AeF8BfceBEb7Fb24edEacABb5AEbeAd7cEec01F5C31EfC7AC0Bb4FbfC0e4c ; < 7n1629Y2T0em67n272XJt33gKWOiMQp8FCI5xS59qi3cEPyTMe9nsoUhIXZ6o2z0 > > // < CALLS 59,1793727386469 ; quote ; 49,6953949372565 ; 48,7014870385113 ; 0,0204081632653061 ; 2,3 ; 45,4712863675897 ; 53,9195035069233 ; 1,1 ; 9Fcbf5CbADcebAfBbdbfBecA6dBEB184Ff2fFfeDEB7beAec5ADc943F2feb2eF9 ; < WI437d7NFKBNFv5ql0Cs4wCmNQm97B9BXQ7AajjMQ128mOj6q65x23kms7NwC3xf > > // < CALLS 62,4671156685717 ; quote ; 47,7364764920315 ; 46,7817469621909 ; 0,0204081632653061 ; -8 ; 43,6788759902088 ; 51,7940769938542 ; -3,4 ; C96bFeFDC8Ba919BfFd26FeCAbFcDffEc47D83bFC3D7BEbBA27adBDA8cd87FDA ; < Y7fNaLEw0jJv1EsSNCk0jxuNyM92x4x47getwoFjJPydP7m4Lqt6OkJ38968BnlT > > // < CALLS 65,7548585984965 ; quote ; 45,8632042431598 ; 44,9459401582966 ; 0,0204081632653061 ; -6,8 ; 41,9648318824912 ; 49,7615766038284 ; -0,9 ; 64faDbA53E663febFEe659Ef1aFfFfAaECfffcbdAfB7Dde39Cb74a99fd7fe5BE ; < 9zWk2eGkn5r741QIlFxT40L8IX6ABAwZYY0lZeDbRFSc1329JCxut4O9Sgg8Zk5v > > // < CALLS 69,0426015284213 ; quote ; 44,0722900961976 ; 43,1908442942737 ; 0,0204081632653061 ; -6,4 ; 40,3261454380208 ; 47,8184347543744 ; -4,6 ; 8D136eCaFCAC0FbEECc18fDbe9f4DEa5ede24F9bdFeCFDb6AAAc8f9Aa7A1ffEa ; < 0220b7J0FTESBU4q17o2X52tQ1946IBBj7yPy0ISc3fU6XXdx2729mTvH9i2HLud > > // < CALLS 72,3303444583461 ; quote ; 42,3604074685174 ; 41,5131993191471 ; 0,0204081632653061 ; 0,3 ; 38,7597728336934 ; 45,9610421033414 ; 6,7 ; 7a8dBbDAa2fd90DCB175a1dE2eCcf5a7d754CF2EFe8ECFCDD84809720F5BfFde ; < Wvw0PW014p790uWxXhGAdewr25PS3uXpVc88fHzvfb6m1vAxOTokJB1JcdAOiBWQ > > // < CALLS 75,618087388271 ; quote ; 40,7242348442273 ; 39,9097501473428 ; 0,0204081632653061 ; 7,7 ; 37,262674882468 ; 44,1857948059867 ; -6 ; 5BAc9feEeE8abe7fcFf38D5efdFfdaA2bC554d8c0afA4DFBF17fdB7ADBd09eD6 ; < k5VtxGbSWA5cp7k5R3EIb4tkZ4900PzlaQD050S5C31CS3yVLFxVh8CtIlA24876 > > // < CALLS 78,9058303181958 ; quote ; 39,1604890792011 ; 38,3772792976171 ; 0,0204081632653061 ; 8,2 ; 35,831847507469 ; 42,4891306509332 ; 3,9 ; Cc4ccAAE20EcFEACB3DCDcFb2E1fC43A095fD667E80ffdf80cdFadf5bAb7ab0E ; < 5uF3GQ4Y96tUH7G7uxmEkM11IJFLRTr8IM647rn1E13O3KKDyC36p63Tp5n6Bo49 > > // < CALLS 82,1935732481206 ; quote ; 37,6659504849378 ; 36,912631475239 ; 0,0204081632653061 ; -0,7 ; 34,4643446937181 ; 40,8675562761575 ; -6,4 ; Ab82e8eEAd6C3B8bc83418EADF5d7dFdbaEB7C2fffBDf9AEBC6F2e7A4FCbAbBb ; < IUK4e5p07aM19XWYLac53F69H3Ijf1ul8J8M0T2uaUa4X8786x15lOUoYT7Yp55o > > // < CALLS 85,4813161780455 ; quote ; 36,2374813440611 ; 35,5127317171799 ; 0,0204081632653061 ; 8,2 ; 33,1572954298159 ; 39,3176672583063 ; 5,4 ; BBb2AD6cF3CeC6c6EacE5BEd9FEB908CcD8C6baDDa2b7Bbeb7ACADD1fffE8Fd3 ; < 8HIB1Hd7pbDYHxZ2U7rJ1r1ri1380XsUXJvlHiuHfb648uShLJo5GU1w60bWr6hL > > // < CALLS 88,7690591079703 ; quote ; 34,8720391984027 ; 34,1745984144347 ; 0,0204081632653061 ; -5,2 ; 31,9079158665385 ; 37,836162530267 ; -0,5 ; d06f4f0B7D576C1B4CedBBfdF78DDa1dDE6Ae2BEa35bc1D18ed9De145B1AFB2B ; < 3TH9P3t5YqzdN8iolIW21Njks3Jf1Nn9zrm60lq2KPvoYDL9h4Wo3QtZAY9EVPs3 > > // < CALLS 92,0568020378951 ; quote ; 33,5666859942514 ; 32,8953522743664 ; 0,0204081632653061 ; -3,4 ; 30,71351768474 ; 36,4198543037628 ; 0,2 ; e679c00FB4e95C2f0EbB7e0Ca9E67dfFeD9BF6Ebc703Bbe3AcaC5E8BBb5FbE14 ; < 3Iy0C1gC8ZVlX9I3ZHZvIV1VNC5B9CqT1II6Eqp50Oy2S5vcKZDj1mB7ZSXuvJS4 > > // < CALLS 95,3445449678199 ; quote ; 32,3185939599338 ; 31,6722220807351 ; 0,0204081632653061 ; -2 ; 29,5715134733394 ; 35,0656744465281 ; -3,5 ; c503ebEDCA1aC1De613E36470C32FFACCf4bBE17AC20DcEFAeae4EECFfCDfced ; < 696B0Wr5hN0OOen3QqN4ZS1h3w60Uv0tbvqykTOOI2uQmbvU75h1XdTaI0PVL3u5 > > // < CALLS 98,6322878977447 ; quote ; 31,1250489205501 ; 30,5025479421391 ; 0,0204081632653061 ; -3,5 ; 28,4794197623033 ; 33,7706780787969 ; -4,5 ; e7aeA5c8edCbDE4A4acb7fE9dACCdf6BC1Cd2aDcF8dcDdBD0c1c13B2d3AdE33E ; < mXNLJX60QGNJ5bUHj7S1j65wmSF3199jp5C0jhD91FwUdHYY2HyMemRFvJf24AbV > > // // < PUTS ; 5Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 32,8774292992482 ; quote ; 1,45814086476824 ; 1,42897804747287 ; 0,0204081632653061 ; 6,6 ; 1,33419889126294 ; 1,58208283827354 ; -9 ; 2773DCafe51cfAf9ED1AAD36DE4dCEFCBac8EAdb6a4B4d83dbfd1ffEAA4ecD35 ; < 8zu1xayYu70rl25TO742H07UnCsE3OF7y806ZJf12I8hLk84lVTi43bcPPMIG6ng > > // < PUTS 36,1651722291731 ; quote ; 1,99682808355766 ; 1,95689152188651 ; 0,0204081632653061 ; 5,7 ; 1,82709769645526 ; 2,16655847066006 ; 3,1 ; 9FAC163fc9aEBd07EafDdCDc7AF4aCc7fA7cfeF4cF1e5CbEFcFEa07b3aAE7AfD ; < 2tUvJpiXFtK5rRZ8qZ9cERd275W2uMGy9iH7zxP825GU59vtI954ms7FW9S8idQI > > // < PUTS 39,4529151590979 ; quote ; 2,63500538277204 ; 2,5823052751166 ; 0,0204081632653061 ; -2,2 ; 2,41102992523641 ; 2,85898084030766 ; 0,2 ; C3A5CBCCcBEb7bec8F23f0B3C280bcc0cCaBfb84Ea6E4e5Ea4D2923DC4fdda5f ; < 7c17da4SLXCESn3195xZch9FUGX37h643729wrnUJeb20204Pl43IU3u04z1V0u0 > > // < PUTS 42,7406580890227 ; quote ; 3,37355890112138 ; 3,30608772309896 ; 0,0204081632653061 ; -1,4 ; 3,08680639452607 ; 3,6603114077167 ; -9,3 ; 991dBedB95afbCDEdeCb434d168ae3AceEAC1eFe7ef1bdaCB9aD5bd608bFAafD ; < Ke9aSvOE872iesjXnKY40c60n4UeiMOJ98JHDW00c7o9lnD1DyJzHFbBa1J2hhMH > > // < PUTS 46,0284010189476 ; quote ; 4,21220927815102 ; 4,127965092588 ; 0,0204081632653061 ; 1 ; 3,85417148950818 ; 4,57024706679386 ; 0,1 ; Ada9c1BFA29cB8a4aED83FCFfF7DAc7AC2F7B5eaBfB4FeCac30Ea6AaDeDACDbf ; < 1M1B8D7urS7POc4N1Z8c7NaUnR1CkQPEFRwb651YRO41fNcF7n97WmB24T6ysy37 > > // < PUTS 49,3161439488724 ; quote ; 5,14976943915488 ; 5,04677405037178 ; 0,0204081632653061 ; 8,9 ; 4,71203903682672 ; 5,58749984148305 ; -2,4 ; 65CABdebfEE0D7decF3b96BBFeDA45f16cf3EcdF2fbBaebFafEAaa8bdfEeFCF3 ; < Zuo79eRuK9i36KlkZxR550Isc9VawkEY4F8uaLwxssmjZoh97XywMxf4K1r5MKjX > > // < PUTS 52,6038868787972 ; quote ; 6,18435976024961 ; 6,06067256504461 ; 0,0204081632653061 ; -3,7 ; 5,65868918062839 ; 6,71003033987082 ; -5,4 ; F0cb7d0EcAcEE4EbCF3c04E9dAe9ebDa47bbBddaF88CBF4AC3aFB0828dCeFAfE ; < GLtpzghMGb4cug7oWt9CJX699kvk2k4P07GegRP6lZQ9Lk5pzfPK716353F00muM > > // < PUTS 55,891629808722 ; quote ; 7,31358464071178 ; 7,16731294789755 ; 0,0204081632653061 ; -9,7 ; 6,69192994625128 ; 7,93523933517228 ; 9,4 ; CAD8ce1eEfed4ad3fDCBCED79Afc1f9cBdE7E8F32AeDD57fB2e2d3e7Ef73EEbF ; < M1lr48C9kiT8HEhFezTwsTdd7GWNiM3f3t39t6Ecga1LI4vph8PsE7HM36dW5a9I > > // < PUTS 59,1793727386469 ; quote ; 8,53467559894273 ; 8,36398208696387 ; 0,0204081632653061 ; 9,2 ; 7,8092281730326 ; 9,26012302485286 ; 6,6 ; ce1b57dEDd2e24b8b15baDa1DDA2DDE5b8bBB53bA5cBDb1Cc054B4549e3BaaDc ; < 6ST0l83CIffBs44GF1VVJQHh3n7U0vg20MG3Ds2lEkK9zy0PimaeQp8xrQg7MoDU > > // < PUTS 62,4671156685717 ; quote ; 9,84460607936701 ; 9,64771395777967 ; 0,0204081632653061 ; 8,5 ; 9,00781456262082 ; 10,6813975961132 ; 7,3 ; BAFEF1beA4bDacAbf96D06A9E4C5499F78199de7BaACcA0af9bdfE7CF2aBcdeA ; < 0fNm1Z2Pw57wy4h914L6h0Pku72Wmd20YS661yZT2Ybpe29o7S75PeVtPam4w306 > > // < PUTS 65,7548585984965 ; quote ; 11,2401827561445 ; 11,0153791010216 ; 0,0204081632653061 ; 5,1 ; 10,2847672218722 ; 12,1955982904168 ; -6,1 ; 5F4547Beee11eb46EaBDc1abc01EFC8eA589DF8BeFeE6839FDf2DeBBc3dECEeF ; < b41u9nZF32Z20lu4x78aS37t03L5C8sCMklO2a055g443S8k0v2nt6y6TzTQMKql > > // < PUTS 69,0426015284213 ; quote ; 12,7181175348316 ; 12,4637551841349 ; 0,0204081632653061 ; -9,8 ; 11,6370775443709 ; 13,7991575252923 ; -3,5 ; C0cbaB16BCD8cbEBAF9C76fcC3aBDD3f1AbEbDeAc6Cb8BaCCABcafbDe4Fd44Ff ; < wtvd86Fb6LWeaK2u80ZeClNHs7635WrqlS1855ED7OrcfD5DZV3Lly7fc5687eSn > > // < PUTS 72,3303444583461 ; quote ; 14,2750838328006 ; 13,9895821561446 ; 0,0204081632653061 ; 1,6 ; 13,0617017070126 ; 15,4884659585887 ; 3,9 ; 1dece4FCDaeAECDBCb8feEfb9A91CCFbbb97cFadD28FbFcF9D0e0DebfdA7eDef ; < beR51l172RJ4MNZvzck6NX5z49kTLwY7pKKG8MJ5B4954n2wQD3Mr6vPT8Kw8hh9 > > // < PUTS 75,618087388271 ; quote ; 15,9077601341598 ; 15,5896049314766 ; 0,0204081632653061 ; 1,9 ; 14,5556005227562 ; 17,2599197455634 ; -7,6 ; 1EeBAcaF2De5efe32b1DcEAf3c2FAFedeC0d4AFD6BabAedB46DECd549e5D3cDD ; < 9i69TfN609ewNt5iOxy3oDHicJtmxkTNSv05iY79ntEEZ3wV1gmL1ZyPiXK2yz0Q > > // < PUTS 78,9058303181958 ; quote ; 17,6128632947828 ; 17,2606060288872 ; 0,0204081632653061 ; -2,3 ; 16,1157699147263 ; 19,1099566748394 ; 0,5 ; 70C57fdCB2a9Ebfc3daFcA4fefabE84eDEAacafA5dA3B5fBD5DcBABC4D83cAe8 ; < 9X64bA1H3k0FUy9qPJ6d9LXywQ7EfgJY75ziY5Jw2E187nJP9YDSX4DJ9j9iGHqN > > // < PUTS 82,1935732481206 ; quote ; 19,3871736261687 ; 18,9994301536453 ; 0,0204081632653061 ; 4,8 ; 17,7392638679444 ; 21,035083384393 ; 0,1 ; ecB1fE08EB75a3f6cBdD50efEf38eD0A5E6C82C3DDdF95be4aFf70BDfEE11a08 ; < RoMBEO22Yt25A5fmaCw72SBQvW0tDmP7DEmy80z9CuygZS47LBz3r0lRqP3WiD1c > > // < PUTS 85,4813161780455 ; quote ; 21,2275534109413 ; 20,8030023427224 ; 0,0204081632653061 ; -8,4 ; 19,4232113710113 ; 23,0318954508713 ; -0,7 ; cFEa3AcDbe1aDd6D7d85A12Ddc75d4c0D5acFaF2Cf2FEfDDB603DBEDCd21c22b ; < 6QoPq6td1Z9d86Tt3P1qW7P0fb7o70gWTLFR03plkE17M5NiqPpj76z7EQUKhfkZ > > // < PUTS 88,7690591079703 ; quote ; 23,1309601909321 ; 22,6683409871135 ; 0,0204081632653061 ; 4,6 ; 21,1648285747029 ; 25,0970918071614 ; 4 ; B4BDe2E08BE4BFFcAb5Aa4edEedcacFA67E65f4AaF7c9CebBA5eC6fD5bF24Ad3 ; < Rkj2vrfGJN5691lY91z2JVMqAIOc8gpwK7VeH1yF8M9y0A805N4nJCFV9JxW3Mtu > > // < PUTS 92,0568020378951 ; quote ; 25,09445591243 ; 24,5925667941814 ; 0,0204081632653061 ; 6,7 ; 22,9614271598735 ; 27,2274846649866 ; -5,4 ; b3bc47b43dcECAe71BfCB4c2AD74eeCAA0EADac8bDf20Ce1eEC51fBBbcaCf1fd ; < A35RAC8cODD53424oBC1YOD4Tq9Rf96N592R71V36Sy8LTk2hg1zvAez4eDzF1LX > > // < PUTS 95,3445449678199 ; quote ; 27,1152128037616 ; 26,5729085476864 ; 0,0204081632653061 ; -5,8 ; 24,8104197154419 ; 29,4200058920813 ; -2 ; DBE4CeaD98edd1FcAD2dE65E38EfB5Bf7c8A24ba27F4E0AEBd7BbDEE88Ac7E01 ; < Y6Km2QpA9Dd8yhWc7m36JL8QPn4vQEG0d3xw67mV3bh2a1h1vBV6tT3p9aiEdODU > > // < PUTS 98,6322878977447 ; quote ; 29,1905166900272 ; 28,6067063562267 ; 0,0204081632653061 ; 8,5 ; 26,7093227713749 ; 31,6717106086795 ; -5,8 ; a7DF9ccFec3F25be210aFC3e3bcDca073C5eBD5F3b4Ad9a46cCf5A7Fcfc938Ca ; < KvNMs135ui33eSLLY101FJxH75imbI0O3nwL88D5i4Ho61U5O5a68hlmKXws489r > > // Futures_Eurosibenergo_Engineering_LLC // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 56,013199 ; 1,14 ; 48,1343850877193 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; 5B0BfAe25CfeA3bebcB726b7f677cCBBe440F58421ADC5eF3ea2e0ac540DAb8c ; < xA81vJ17bZoX4ynr8LS9dqi4RYAVOGH6EWj883Vw4tS8Gg0fY4nvm7Z1heURz9sY > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 56,0142756738532 ; 1,14002508 ; 48,1342485849988 ; 56,0140256738532 ; 56,0145256738532 ; -4,7 ; -7 ; 7,6 ; 6 ; -1,5 ; 5,4 ; 0,16 ; Future69AP19 ; aB3EB8B06CBFCaCe5CcE202d10D7bDAeaF8EbCB7BCcead0f9Bf56A3F7ccdfdFC ; < ot42W1dd2UmuZHeZf8PD12FiZR6bi9Kv44q42NnjYKCTw5H13NB9Fccf0jsaKJUa > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 56,6207834187429 ; 1,15383235592122 ; 48,0719324416385 ; 56,6205334187429 ; 56,6210334187429 ; 1,8 ; -4,3 ; -1,3 ; 7,6 ; -6 ; -7,2 ; 0,68 ; FutureJU1916 ; Cad63B8bAa1fEC0deFacAfD2aCFAAE4F913F836fc3Cb5bB2dcde2DA46fb2daAf ; < uTw1H3eANwYaeXvCTru25t94h91qfq6ZxE2BaPJ7k081jZ2ItBH3iI8waX6K4KFj > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 57,2813462028584 ; 1,18203756547107 ; 47,4598356906114 ; 57,2810962028584 ; 57,2815962028584 ; -9 ; -2 ; -1,6 ; -2,2 ; -0,7 ; 5,4 ; 0,05 ; FutureAU1992 ; 50bE1CADadCbede9fdDDAc0e027F37ffDBbC93f1C2E3ad96AE6eacAeFEaaAd8B ; < OY3a2e47PyNBs6qMoAC2D6UkvR27C2x8D94uh97u91l67av8zzixroY6aa94fZ4O > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 57,9605451626703 ; 1,22544797504721 ; 46,2974343610447 ; 57,9602951626703 ; 57,9607951626703 ; 1,9 ; 0,8 ; -4,2 ; 2,2 ; 6 ; -6,6 ; -0,54 ; FutureOC1924 ; Ca0EdBF9cdDaEBE63Cd2d7bBe1dCd8F153bA8eCbCCddfBaAaa7Ec8CFb43D02Fd ; < FsDfN85Jo8Z8BIB6RLCBbS6qv812L265fwi4k85dxIE694OC36wEvdTUds497V6P > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 58,6734376270658 ; 1,2859152117272 ; 44,627765417175 ; 58,6731876270658 ; 58,6736876270658 ; 6,8 ; -2,7 ; 8,7 ; -6,5 ; -4,9 ; 8,8 ; -0,38 ; FutureDE1995 ; DB04BaeaAFE1Bbedaeac0baF90FdE6D1706FeccEdbBCC38d27Bf5bCd5Cf38ae1 ; < r1UbuKOsqBJ7HygpDfVGzBewPB63e4RAgO1wr11G5zai3WH08FT7p1bNCBbK8Jgg > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 59,4381293097846 ; 1,36575682087586 ; 42,5202873610157 ; 59,4378793097846 ; 59,4383793097846 ; 5,8 ; 0,5 ; -3,9 ; -6,8 ; -6,5 ; 4,2 ; -0,77 ; FutureFE2094 ; CBCeb98d4CD69dBAC27EfEFd4cC23dbD015eF0E7bfE3A31dFA6cAeDD7BfC23BB ; < 2v29HM24w5Z5Vm29Q2CZ2Q6SQ491B3YIMG3KQ3Z0Cv2Y936Jx36pjG50H920U4Q6 > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 60,216541479358 ; 1,46824594422802 ; 40,0125713039301 ; 60,216291479358 ; 60,216791479358 ; 9,2 ; 1,9 ; -0,4 ; 9,6 ; 9,9 ; -6,6 ; 0,67 ; FutureAP2023 ; DdeF91E89cdD82cc4c5fBcF07EeF9090C2c7b5d46E8da01dF6FAc2cb8DeECb6d ; < qs8Z7GaA7EHRV4t46hW68PNWgq6um9A831p6m4UOu0Zj6183R6Bk8TRIasxM2475 > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 61,0159387067991 ; 1,59751157621794 ; 37,1943640441419 ; 61,0156887067991 ; 61,0161887067991 ; -4,7 ; -6,5 ; 6,2 ; -5,7 ; -2,9 ; -1,2 ; -0,24 ; FutureJU2061 ; EbFabBAa1F1eFbCE4085cCFd5cDBB0D8EaeAEFaB8EE696bbBCfc0cfec85C7EbD ; < 38qOm1Rj00SX0I8370eYnOyd6fG0KTfGhG5130Lb33Q393c9v7n5Yn89W38ANkDb > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 61,9238665771775 ; 1,75915545405886 ; 34,2009064544592 ; 61,9236165771775 ; 61,9241165771775 ; -5,6 ; -8,1 ; -8,5 ; -6,6 ; 6,3 ; 9,6 ; 0,53 ; FutureAU2034 ; bdAccBBAaAF1ADFfABDd3BcfD9EC3AcaFc33AD0BDfDEBD64aEADcde6ABBBb5e9 ; < yv0zP552gx110qQLtlVcmqmAK6111ycltPZ8WBNcS4Jnw4HDkdYyY2KvO1qkgB4U > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 62,78621593597 ; 1,96058882074028 ; 31,024162981947 ; 62,78596593597 ; 62,78646593597 ; 0,3 ; -5,6 ; -8,2 ; -6,9 ; 7,8 ; -7 ; 0,3 ; FutureOC2017 ; 58EE675E1dDCBAEFAacb04cABddBd9b6977DFfB0fE7EEf8FA0FCeAbD0fE6fFFA ; < jSD5Sqh5l5zsR86st8rAaliQ3jfhudac8x8iEJE3iQo0n0J1gSd18tB7Cc928sch > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 63,7030891371721 ; 2,21189628703202 ; 27,8002152319043 ; 63,7028391371721 ; 63,7033391371721 ; 5,5 ; -2 ; 9,6 ; -5,7 ; -8,1 ; -3 ; 0,89 ; FutureDE2097 ; DFb9FA0Ba3dB2c728EAcFf3E16bCEe75FBedFac75AfD36CC05cAFEAeAA05E31D ; < 9De8Q7ph95F309yV7G7UY801jCVR195wRm26guuuoMty0084bt06llawqcO27Y3h > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 64,7915207025541 ; 2,52553289687528 ; 24,6545938414493 ; 64,7912707025541 ; 64,7917707025541 ; -2,9 ; 7,1 ; -3,7 ; -4 ; 3,3 ; -1,3 ; -0,29 ; FutureFE2115 ; bFFA1Db6DFABFda5fCe5e9B66Aa7EbdDDCFDF4aD6a4FE4911E2D27BFDEBccBEA ; < 8gNsS29seNm1LLR3Re07u6X1uLR80VZa7iwg9v69JRy11P1WUp2qk26MGf1Khn8L > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 65,7548585984965 ; 2,91831892619471 ; 21,5317589548845 ; 65,7546085984965 ; 65,7551085984965 ; -6,2 ; 9,2 ; 2,9 ; -3,5 ; -7,1 ; -7,4 ; 0,24 ; FutureAP2173 ; fbb7e08dBD49fbEd0CcDecd59bD1a6b4E7aa84bAF1FC9F4EAD7E8c47BEEfD907 ; < 25ju9HPEgKUHu09M84cZ7MpIs4C8T3749c6zY1z9ZFJvWK9AMW4YSrb6JUA57dL6 > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 66,9115817811158 ; 3,4131419242205 ; 18,6041018119683 ; 66,9113317811158 ; 66,9118317811158 ; 5,2 ; 1,5 ; -7,1 ; 0,9 ; -7,9 ; 3,4 ; 0,22 ; FutureJU2129 ; aB0F6D6FC3feF0FCCdED34AdEABAAEcAcffdcDbd3EB7d50AEB8362Fe38Cec3df ; < qxiJYNpFmCOjjw13nE8X55h026lZ7URORW4hibE8E6s0qaoFZod05Gp5EdbcV1R1 > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 67,9016434280286 ; 4,04031708527713 ; 15,8060184373799 ; 67,9013934280286 ; 67,9018934280286 ; -0,7 ; 7 ; -2,9 ; -1,7 ; 4,5 ; 9,5 ; 0,62 ; FutureAU2184 ; efD0efBFBBC66dd4BfB2edebC1A33DBDFBe66fFbbdb81FFcee8fA0faCeecb4F7 ; < zuJ2EsMlzkEfKdtttURqj307wkvEF5s740iy2640Hnj7Oe78omZ0Fk6imOzy2HYj > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 69,0396912554752 ; 4,84108167738436 ; 13,2612118233827 ; 69,0394412554752 ; 69,0399412554752 ; -7,7 ; -5,2 ; 3,3 ; -5,7 ; 4,2 ; -5 ; 0,71 ; FutureOC2145 ; e83D32EB95b37F6f7EfbCCacDFA2E5cA5D88FA7e008C545DFf5D5b2eCF09bBDE ; < lN9oPpMHwvb6V51TCrLhk0WQZ0603ktKvCKPg1Ss1FoaghLo7t4EHh5Bj866oiCL > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 70,3518564677732 ; 5,87046535365781 ; 10,9840340125571 ; 70,3516064677733 ; 70,3521064677732 ; 1,7 ; 5,7 ; -5,7 ; -5,4 ; 5,3 ; 8,3 ; 0,12 ; FutureDE2157 ; C609dB9cDCfD5923Bdc1f5EfFbCBA8A450CaAb8CAdCBefBe8E0CececBEEa9Ad6 ; < BcHlQ9Q67jp75Hwpx4CUa2SxGwR6eb3Hg7U1r7n74tMrWhHN13tjpR8BvEU3ceaF > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 71,5621121169179 ; 7,20557825655558 ; 8,93148774032274 ; 71,5618621169179 ; 71,5623621169179 ; 9 ; -9,3 ; 9,4 ; -6,5 ; 8,1 ; -4 ; -0,31 ; FutureFE2244 ; B7ca61eBd55ee19bCeeCDE230C2ab3fAFC5EeCad6A3Dcdac44CADABFDAaa0F45 ; < 2w686sLl2Ca2h2eGB8tc3cNXf52ByH4TSntvs7X5MLuLGgH16c0sa1Mf6LzA62lp > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 72,8001434569046 ; 8,95140250048264 ; 7,13281979589001 ; 72,7998934569046 ; 72,8003934569046 ; -9 ; -1,6 ; -8,1 ; -1,2 ; 7 ; 4 ; 0,85 ; FutureAP2246 ; E6CBebFcddAbbB5dBBE9Ffd3DC20Eaf7ccD3487D7cfCcAe8DCEE9cfbb0c7ce23 ; < MUTLY91dg2EUYUB5wns9typUH6bVgUA9w02dy73fDCWDOuYatH6z7CL8X32q6l47 > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 74,1837445948671 ; 11,2550946104042 ; 5,59112581126519 ; 74,1834945948671 ; 74,1839945948671 ; 0,1 ; -4,7 ; -1 ; 8,5 ; 4,1 ; 8,6 ; -0,3 ; FutureJU2229 ; 1d0CCE55888D5dC8ffe4caF8BFFF9eaA05AABFfCBdAD7BEEaedebbdE8fF42ecd ; < 3T0oSj5uSxd2Sm3GgB4EmS5H0w9TMyHi6mdN25SP4OD4HyHCiF8Q2W0J1iW3lJgY > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 75,8870005898446 ; 14,3239501178437 ; 4,2979101410937 ; 75,8867505898446 ; 75,8872505898446 ; -1,2 ; 4,9 ; -8,4 ; -3,1 ; 8,1 ; -2,8 ; 0,24 ; FutureAU2240 ; DfDf7Ba5EA0a9C4ab238EF389a02Ca1DC23BEDbFbbE20ECEEbdfDeE62fbd16B8 ; < 88Ia4h5W7vVFdGRrQr7imiMjCQbMey57m0ko26s5kKT84dH6LcsQWm9njmRwFF7m > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 77,2705322507099 ; 18,4509209981858 ; 3,18789567514314 ; 77,2702822507099 ; 77,2707822507099 ; -4 ; -4,9 ; -1,8 ; -2,5 ; -8,6 ; -5,6 ; 0,9 ; FutureOC2238 ; D3cEc0bfCEE1E65CAbbDfF8bFdE2fC55bADcfBB5e4dbFF6eBaebBcdCB9DE0DD2 ; < 7gE182877W1k2ku9WyQvU9vSjv2whMARUo3VXvRgx5VLL9N7X50XZaatlU2a0h75 > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 78,8466753143467 ; 24,0540429172418 ; 2,27789700823348 ; 78,8464253143467 ; 78,8469253143467 ; 6,6 ; 6 ; -7 ; -0,5 ; -5,1 ; -9,5 ; 0,03 ; FutureDE2299 ; a71E0Fa6f8E5aDf0Bc8E0D1cBFBa6aEada3CC7ffb095Fcff5bDA1BFCf08079d9 ; < kX771lgr0Kew5t6uzI846s61fF8tz5mO0e935D1k2Xh8I4xRcKsr4ygc842B5k16 > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 80,2775306779822 ; 31,7368503971352 ; 1,52947377176497 ; 80,2772806779822 ; 80,2777806779822 ; 4,4 ; -0,5 ; 3,4 ; -2,5 ; -4,3 ; -8,7 ; -0,23 ; FutureFE2334 ; 621eAeb64EDDfA19a988Bac5BEEfFcd2cFCCFcEaEE8C3f1BBBB3ecA4bEae25F3 ; < opbEO62FRw4ang18s138h0MCrKW2C2VVa0RMLM8stL9G0Y2yF65Zq72DD68DPiHm > > // < CALLS ; 7Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 36,4000717284523 ; quote ; 75,8293220185812 ; 74,3127355782095 ; 0,0204081632653061 ; 6,3 ; 68,6255364268159 ; 83,0331076103464 ; 0,9 ; A4df73C44E3BEC1e0e4d19FcFaA0316BcbfEAFafb8BaDDaC4BfEdbC62dAC1A4b ; < UQ6Ro5KBV70s5Pg5XOaf7QAW0Mol3cH9S480J8a617va3q643LNjoRHH951zG4h2 > > // < CALLS 40,0400789012975 ; quote ; 73,7322794357713 ; 72,2576338470558 ; 0,0204081632653061 ; -7,3 ; 66,727712889373 ; 80,7368459821695 ; -8,4 ; a0cfc3E00fCA9cA8F5Dc4bBeEdA7A27edaeAca1cEBee1baFbAe2329FEd9bfFb6 ; < 7p82F0YEj9eNo3o1li6mPJK4G1qV07s5geYxwxH7Hf76pO5CAN31WJAuwypfh77W > > // < CALLS 43,6800860741428 ; quote ; 71,703437256091 ; 70,2693685109692 ; 0,0204081632653061 ; -4,6 ; 64,8916107167623 ; 78,5152637954196 ; 3,2 ; c0e83c3Fe5e3ddfaEebc5b6dbaC9fde560E5ebbfa5C7B8C9619EdE0f9FEc51dA ; < h7oj94730h3b74143c5r6db42l3T493aGhgOBa7Suf4QBEKv2o7cnlmo4Q3dZ7YW > > // < CALLS 47,320093246988 ; quote ; 69,7418885557811 ; 68,3470507846655 ; 0,0204081632653061 ; 1,6 ; 63,1164091429819 ; 76,3673679685803 ; 1 ; BCacE6431dbb46C3DaaFEcCF49Cca1db65fD2A2b3123EF0c87aE69aDeABe08c8 ; < iUyw5oXnygLJ993HbBl9I6n8NTWGDw6bhyAX9c8D6y64WiR14b3c17bnP5C87Pay > > // < CALLS 50,9601004198332 ; quote ; 67,8463197897546 ; 66,4893933939595 ; 0,0204081632653061 ; 7,9 ; 61,400919409728 ; 74,2917201697813 ; 1,7 ; C9A9dcFA2aF0BeEfdec0CEebdc8C878AA3D4E8Ed432D9c4d8BA5bFFE40A7296A ; < h8OJ8EB777uS3Jg7HUe0MBG9olsziI23lhMg6Bzd9ra8bQ0K2mQDX23tt1upMwv9 > > // < CALLS 54,6001075926784 ; quote ; 66,015129686744 ; 64,6948270930091 ; 0,0204081632653061 ; 7,7 ; 59,7436923665033 ; 72,2865670069847 ; 5 ; CCf0aa1D5f6295dCffE99CDa65c2CBafbccaC0Baa0cC0FceBeA0bfe6a21EBdcd ; < Vp8B4E2sl3S097DtYvhtTTj5w2Q794q1cSeH28Dt3y4rw2555l8SUqXfVSVwE0Gy > > // < CALLS 58,2401147655237 ; quote ; 64,2465199791314 ; 62,9615895795487 ; 0,0204081632653061 ; -0,2 ; 58,1431005811139 ; 70,3499393771488 ; -0,1 ; af46aBCFFfE3cee4935cDBd7fFb7dDB6c7DfCdedEeCa051d0AC26BFdfFe85CA9 ; < f42Vuk7OTs772pUm7770m5B50S7TgmQ06zEm350F7W14xsBh7NQWu4op415gtR43 > > // < CALLS 61,8801219383689 ; quote ; 62,5385644631442 ; 61,2877931738814 ; 0,0204081632653061 ; 1,9 ; 56,5974008391455 ; 68,4797280871429 ; 2,3 ; 70E603dBcd7ebaEcc5BEB9eCc0bFa2e5ec4AEc0dF1cA38f0BCADdcFcFAECBdAA ; < aQ5Q4pGYSNL887s69di2PTwU0RP114NS1DG3vT69yjZ5PF5AwTOYy8K0tQO31sS4 > > // < CALLS 65,5201291112141 ; quote ; 60,889261411245 ; 59,6714761830201 ; 0,0204081632653061 ; -0,2 ; 55,1047815771767 ; 66,6737412453133 ; -5,7 ; FfCa0Dcd2ACCcd3BbbfcbafeDEcCCEfBf9bb5dB3ED70C2AAAD2b13ABCc0f04F7 ; < Qcc24itctDr13tY121903mSHYx2ZB6Gzq9iL36qLeH87Qn1Hu74887Q76K9krQ8P > > // < CALLS 69,1601362840594 ; quote ; 59,2965731937061 ; 58,1106417298319 ; 0,0204081632653061 ; -8,3 ; 53,663398740304 ; 64,9297476471081 ; 0,4 ; 7AD77abB3DFdDbaE8df4BE2c1fdDcA7cdDbBf232A770bC0a9cd267CfBc36FAD1 ; < FyepFAFjJqM16sN1RuD1LCB8bFc8Zy1779V5kfou0eENN0VDs5n4Xg39lXAjd5wp > > // < CALLS 72,8001434569046 ; quote ; 57,7584560648362 ; 56,6032869435395 ; 0,0204081632653061 ; -4,7 ; 52,2714027386768 ; 63,2455093909956 ; -9,7 ; 41cb0c848Dc7dBeAE11dB72cF364CEfFE3A7d7f7befA2AeC4FBad781C1cBd8ac ; < p2T2bpy6xNT27fbFv7j9e00LFA7FoBIafNYV6gsD5NedT7vsVArI5824NvG1M683 > > // < CALLS 76,4401506297498 ; quote ; 56,2728823786395 ; 55,1474247310667 ; 0,0204081632653061 ; -5,8 ; 50,9269585526687 ; 61,6188062046102 ; -2,4 ; 6DbdC7b3d019cF4FAaeD6EabCeBeCeAbdedFDdc2A93b84100FAdaC568b4AF79f ; < Pnq0LvUN1185603n2ofGz2L31llSce4yYO04cL5X2U7eAwGgBEnFHSEN97Qmy0Gd > > // < CALLS 80,080157802595 ; quote ; 54,8378569718335 ; 53,7410998323968 ; 0,0204081632653061 ; 1,7 ; 49,6282605595093 ; 60,0474533841577 ; -1,5 ; 7d8bEc4A3eCDccbcbdB3C3eDbB8fFC65DbaaA7Ec02E36FfEaFDBF1dCdddcaa84 ; < BWy8EvF99csQ9iGa7C2Q64uB0WO5v929h2Za2dMFE0gu1bKBv0Wtd2757kQha4gr > > // < CALLS 83,7201649754403 ; quote ; 53,4514290506786 ; 52,3824004696651 ; 0,0204081632653061 ; 6,3 ; 48,3735432908642 ; 58,5293148104931 ; -7,3 ; 07f439B82D4B9BEBf05D3aDEfDBC6eB50970cfc4Aed8dEf05CDb638d2257DecD ; < J48nUl4iVC2W17cbu9VsyDfDDp22b9bPJjoJm0521502sDVnz1DvyjQ8hKWkmxv4 > > // < CALLS 87,3601721482855 ; quote ; 52,1117006118506 ; 51,0694665996136 ; 0,0204081632653061 ; -5,5 ; 47,1610890537248 ; 57,0623121699764 ; 7,9 ; BC5C9d4a3DD2D7E54c0AA50Bec2aAa2Ee12f3F8D4dE94EfcBad2f56eE22EaCC4 ; < 6qu3o0i01iMc9B8JjcNp8MNp5dVcYVTO0BM1c6W9L3J808Y4lJqEd72T5j9O3x54 > > // < CALLS 91,0001793211307 ; quote ; 50,816832193542 ; 49,8004955496712 ; 0,0204081632653061 ; -5,8 ; 45,9892331351556 ; 55,6444312519285 ; 6,3 ; 0A3EdbeEDFAaEB9Ba3EEEBFcB9c3dDFCDCC17EDcaAabd62f994eAbbEaB4E74db ; < Me7Kz9aRY5yGngfHoCn0r3Pp053k27472n5VZ8VP4KCuTG8VpIviLBE72iw78QfP > > // < CALLS 94,640186493976 ; quote ; 49,5650465736045 ; 48,5737456421324 ; 0,0204081632653061 ; -7 ; 44,856367149112 ; 54,2737259980969 ; -7 ; 4Ae7EDfAeA1BCcC4daD5EB1c7f2Be8befB4eb1F5Ecd3Cf4dDDb2AfBBbdf8ea3E ; < 2S7TP9o52jNb04wyw2X69oDjQya9uN7z66O6OLL08VVSbgWC5Ux4bkH2ouY4xN0x > > // < CALLS 98,2801936668212 ; quote ; 48,354630893647 ; 47,387538275774 ; 0,0204081632653061 ; -0,2 ; 43,7609409587505 ; 52,9483208285434 ; 0,5 ; d1DA01eCfaBfBAf7ceF72EaADA447CC4fcB66dFAf5B1dcfab4ba8EddCDfBeAda ; < dli8qxdO7EQAifpPf8VS7ZO1IuLyZf0lyAZjk2MBqjI9GYPvkLw8DdaN9HuhadfJ > > // < CALLS 101,920200839666 ; quote ; 47,1839375816582 ; 46,240258830025 ; 0,0204081632653061 ; -8,8 ; 42,7014635114007 ; 51,6664116519157 ; 0,3 ; 21dCcfcd389efa2fFe7f1bcAb4fc9A03Beedff5bDaFe81B2D4Ad5c6bFa9bBdB7 ; < 18ZEL64i9z2FOv091k41sV73vAGN52Pyi5KI5aTCM2hsfXagk8w5p2dG32T79cTp > > // < CALLS 105,560208012512 ; quote ; 46,0513843634353 ; 45,1303566761666 ; 0,0204081632653061 ; -9,7 ; 41,6765028489089 ; 50,4262658779616 ; -1 ; ae1Ce6C64d2fe0aa9F723AdaFB3128f5fB3c96FeEA48Bda2Eb6d02a8D4e6A6Ed ; < gEf1NLBx4W0LMkLv22S8c1KnKoO95O2srA43W3JKGX4B3Z58hWkw0iCzT6y7g3l8 > > // < CALLS 109,200215185357 ; quote ; 44,9554535892403 ; 44,0563445174555 ; 0,0204081632653061 ; -5,2 ; 40,6846854982624 ; 49,2262216802181 ; -6,3 ; 6d8aaBd5eDDcF1fDED72FB33acB3aCfE0BBD5DbCc0CE61FffA4AeCE5ADd2DdA8 ; < GhF19Mz8d79DE371ic8sjRF12RxaVc894peDSuenRRO575mA7g0Bw291oTr5UbsH > > // // < PUTS ; 7Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 36,4000717284523 ; quote ; 1,54299840391275 ; 1,51213843583449 ; 0,0204081632653061 ; 5,3 ; 1,39641355554104 ; 1,68958325228446 ; -1,2 ; fbB20D492bd92BC405aD4AF3Bf47cc5FB194282B0CEeecaFf5ab637fD5Cd82eB ; < 1d7449L1e977EJ8304301VgjRq1HhUj8a66Qt317hU0Yfsci8hg0pP6jQUgxb7vI > > // < PUTS 40,0400789012975 ; quote ; 2,017323459636 ; 1,97697699044328 ; 0,0204081632653061 ; 5,5 ; 1,82567773097058 ; 2,20896918830142 ; 9,7 ; f2DdC30bD372AfBcE131EBa1CeB6a6dCca23A1EFABFe1EFB4a0bE1C9DFbFa7C5 ; < 9U03eD73uiV5Dq808qfrn3n9DFz6E6noP24lkA82266ttBBf32I94ReyC920f7Wg > > // < PUTS 43,6800860741428 ; quote ; 2,5598489184889 ; 2,50865194011912 ; 0,0204081632653061 ; 6,2 ; 2,31666327123245 ; 2,80303456574534 ; -4 ; 4dAcF71fdcAE6fcbD2dc51FAfEfEDa9a15f99dffecffbbfFDab5E8145B4dC5af ; < oH9jlNpUFOm8AffY27JENW8o4wMkwUT01xcMqAbOO9PVk08V78uKSalv705k7e3Z > > // < PUTS 47,320093246988 ; quote ; 3,16966785671218 ; 3,10627449957794 ; 0,0204081632653061 ; 3,6 ; 2,86854941032452 ; 3,47078630309984 ; 2,9 ; dA5D31dDdff1afcCdbDCFBBeAfC152F1a4dFD0b5CfdaAadDDBCE6F28B2ED7cd8 ; < 5jen56hyEyRa5bI3d14fb4YrcaLGnFg8chWf1QCtgaklgiWrcZ7Deas7Nt05xFXX > > // < PUTS 50,9601004198332 ; quote ; 3,84546672921888 ; 3,76855739463451 ; 0,0204081632653061 ; -9,6 ; 3,48014738994309 ; 4,21078606849468 ; 4,8 ; 49339beCDb232BDCaD4fa8a95b7caAee292c80870Fb652f9aDE2c7bBFD3b3Dd9 ; < 1fDH4VXU4J2S6JHlg9yqy38ZGw3744XB3dFyqzN5h4i958p4o43kx4Z666B6k2DC > > // < PUTS 54,6001075926784 ; quote ; 4,5856442647414 ; 4,49393137944658 ; 0,0204081632653061 ; -0,9 ; 4,15000805959097 ; 5,02128046989184 ; -3,6 ; E1edaa73c4e7c44fF03791F83EA2E32cfAaE0BAAC0B9db957d0A60Ab3Ddc6AdF ; < 80409k26aliQ2cyk6fGno47U8221JH369E897V78iCTO5148sm4PYAWIeeJx9WlQ > > // < PUTS 58,2401147655237 ; quote ; 5,38840219566191 ; 5,28063415174867 ; 0,0204081632653061 ; 9,9 ; 4,87650398707403 ; 5,90030040424979 ; 1,7 ; Fda7B1d3b0dfB2Db6f49A0D4FcEEcBE86b2EFA49eD9d14bbB6320C6cd43090DC ; < 1O50fesQ05tcjA74f55Z2zOW4uhsMZ10p551aQErW8X308G2SBSFjn5L7MiU9REr > > // < PUTS 61,8801219383689 ; quote ; 6,25181431820796 ; 6,1267780318438 ; 0,0204081632653061 ; 4,5 ; 5,65789195797821 ; 6,84573667843772 ; 8,9 ; bE72fbBd8caCDdfdaf5Dfa8aedaBb66b2fDfE52A9caB616acC97DF5d01DBa795 ; < BDJjvU2RXOGmh44QV87XW0T8Fpj43Tr7HsRDgP8yZKTJ5R92bBu0vkFzI2jF2Lfs > > // < PUTS 65,5201291112141 ; quote ; 7,17387890484187 ; 7,03040132674503 ; 0,0204081632653061 ; -2,1 ; 6,49236040888189 ; 7,85539740080185 ; -1,6 ; 3fcC7eDEC4C7e8B7FC5dEbe1B2F34fFBAB5dc3CBaABBCdeF8cffd29ADbf9BC03 ; < 56nb911gLt2o1rt8QIsZWG8du4ND0NrfUc378f28u5XU39S6F50EyFa2v0YrTGa5 > > // < PUTS 69,1601362840594 ; quote ; 8,15255832583608 ; 7,98950715931936 ; 0,0204081632653061 ; -2,8 ; 7,37806528488165 ; 8,92705136679051 ; -1,5 ; ac1BB9FdC221aBE4FEDAe8Ef9e651aeAaAE295Df647aF4F129EFE0Bd3e9BfFdF ; < i1qqpQVlu0gBPQc8hIQOFfeONeq2eIPr2V342ytCWTRwl5y82SM1Kc9B23vKpBQa > > // < PUTS 72,8001434569046 ; quote ; 9,18580883549939 ; 9,0020926587894 ; 0,0204081632653061 ; 2,4 ; 8,31315699612695 ; 10,0584606748718 ; 1,3 ; 1EcDe910f8dBcB5F7fadED65EDaaAeaaf88f2beDbCf8CfC55cb33f4ECAbaA3f3 ; < 3QyTq5SBffy8uyzyOC0W652vGu5L5prgt0p633xc4zTimm6tC62162Pfy6e7zpOX > > // < PUTS 76,4401506297498 ; quote ; 10,2716027878358 ; 10,0661707320791 ; 0,0204081632653061 ; -8,2 ; 9,29580052299143 ; 11,2474050526802 ; -1,9 ; BfBAdcEbdbfe7F19DDe98cCB0fCBFDe15dDADBCc0ad74AA97D1cA53a82CC5AdD ; < iIw0jBVp4T7Qi06RVh1u0Kzg847w9eeElgUqp8Z7rmWy39Nuoaevk49i0u7cUK97 > > // < PUTS 80,080157802595 ; quote ; 11,407945019563 ; 11,1797861191718 ; 0,0204081632653061 ; 5,7 ; 10,3241902427045 ; 12,4916997964215 ; -2,3 ; cd9cC4A5eFdaBA6faBB17f1fC7Eff1F8eC8CccfA7BcedbAcfD9C3FaCe3Ac15CA ; < BR7Fvjjp7S9Rl5OC5DC0cqF4gIVJp0948G1Np1Z11I3pK13U6jN3mj31ySvxZ89Y > > // < PUTS 83,7201649754403 ; quote ; 12,5928847369413 ; 12,3410270422025 ; 0,0204081632653061 ; 6,1 ; 11,3965606869319 ; 13,7892087869507 ; -9,9 ; 146f5fdbDadeEA9ec7BAf6EBbbdEDcAC99e417dAbaA5FAB242d4AFeaF6302fed ; < Exv74B68OmzV1X0gsmeC2U40MbH8P7N09bErkp9oZX26I0kZQ20B8be8NSXhg0TA > > // < PUTS 87,3601721482855 ; quote ; 13,8245239366464 ; 13,5480334579135 ; 0,0204081632653061 ; -6,5 ; 12,511194162665 ; 15,1378537106279 ; 9,1 ; 1eDcCffDCB2D2ccFbccA60Add1A615d0691DEfe8FaeF3C2F6aDa5DA7dDAABE52 ; < KfuV6UiRX9M011Cxn8o55Ii6ji3Sj55ZoLB7K672OP0M5U738KNAhdmBMJqnb7D5 > > // < PUTS 91,0001793211307 ; quote ; 15,101023156871 ; 14,7990026937336 ; 0,0204081632653061 ; -9,3 ; 13,6664259569683 ; 16,5356203567738 ; 8,9 ; ffCf1CdfaBaD88fCE2C71BEDA85Bbd39FAFfBe61dFCA5BfC816CdBfF3d49aA17 ; < nMA0VGTzkc5Z7iOe8FIGM8kQKLli4S7Cfr74prUd5fp14yzO8taPTm5r5ci0583e > > // < PUTS 94,640186493976 ; quote ; 16,4206051754666 ; 16,0921930719573 ; 0,0204081632653061 ; -2 ; 14,8606476837973 ; 17,9805626671359 ; 7,6 ; 771beB18bf59CB8fe39Bd7FAfB0BABfEdDd4A9EEb4Fe94aC4FC184edeFccDf1F ; < TmnQks4gA42nHKkKMnFTZJmTP2NaSR2BMOvanSAO53WM687WfphT50wpFveUdFXj > > // < PUTS 98,2801936668212 ; quote ; 17,7815571340423 ; 17,4259259913614 ; 0,0204081632653061 ; 9,1 ; 16,0923092063083 ; 19,4708050617763 ; -4 ; EbE2A931E3F2b8f8Addf38cadEd76a83eFadbEbeddacBcD2Bf8E05dd7a7aba00 ; < ZO45I6uYP2FHq74cULqs8RTsn9i88PFa75GlcwC44381q4VVR2WikK08WN6Y3027 > > // < PUTS 101,920200839666 ; quote ; 19,1822314605867 ; 18,7985868313749 ; 0,0204081632653061 ; 5,9 ; 17,3599194718309 ; 21,0045434493424 ; 2,8 ; CdDefEc6dF0BA480be3a9bEcb8cdD76B1FeaacB46Dcc33fEFeC1bB2bD7ACD6Ad ; < nZ8TlaMfzdx8QneTdBpHsj6Wpiq4rKY5l8d0cY2f0C1kL55j2P67cwve5I6NI737 > > // < PUTS 105,560208012512 ; quote ; 20,6210458808969 ; 20,208624963279 ; 0,0204081632653061 ; 6,2 ; 18,6620465222117 ; 22,5800452395821 ; -4,4 ; bFC8dCB0FD3Fcf727F0DFBBB75fd9aef3bCBb77ABC8DC1E00fbAdfAc3246EF8a ; < SrsphK95Cx2EJLmQo44KmWsO0Z65SW5J3cRz2hFA6SbNb4qqc61n0lHlhRL2L7R8 > > // < PUTS 109,200215185357 ; quote ; 22,096482745235 ; 21,6545530903303 ; 0,0204081632653061 ; -2,9 ; 19,9973168844377 ; 24,1956486060324 ; -1,4 ; cCdC0CcCEfD524ced3daBa5EDDF1daffdcCEDAa65Da1C5899FCB10C5deca8B1F ; < eBNlHuC9iz0726V0TUyH7VLE36QBV9WiEHmx3HD55oF4GT9yzECK50aN8BJ6aA0z > > // Futures_EurosibPower_Engineering // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 80,467707 ; 1,14 ; 69,5857078947368 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; E5C3FFbeEDBcAEc3afB9Ff7F0FC0b15ACD4af30FbBaBDcFD45Fb8eD45fe5c2Cb ; < T6skmd83RU84dIcA5Q55jV8lSB3rOSlLl7eGIGR86PfOQ1OfMmEtIzDny104E78w > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 80,4633818792096 ; 1,13993046 ; 69,5862196885323 ; 80,4631318792097 ; 80,4636318792096 ; 3 ; 5,7 ; 6,6 ; -9,9 ; -8,6 ; -3,2 ; -0,31 ; Future96AP19 ; dB5fDde8137EEEEC4c3CDbF5fc081b5E2CAFFbD7bDACD9cbfDb5dabdC0bacc75 ; < N6gNDT1aFNGUxAdPzR0ynb9Nsl86cy627hYcfQDo7A1RMLsSRCYdT7o060yP7B50 > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 81,3462394335325 ; 1,15380498577013 ; 69,5025896375686 ; 81,3459894335326 ; 81,3464894335325 ; 9,6 ; -1,1 ; -5,1 ; -3,7 ; -6,6 ; -9,7 ; -0,27 ; FutureJU1932 ; a3274Ffc64bcC95E8aAF8BDcfCdd4B8887eD6aBFb147caC6E88EBF4DDECAcaEf ; < cKiFW074oY6K9wSvg86o6W9zRG7OIuuO7b1gH5eSahatdCrbE14CPq5D8VOgJi94 > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 82,295704370818 ; 1,18200375723698 ; 68,6238940586703 ; 82,295454370818 ; 82,295954370818 ; -7,2 ; -3,9 ; 3,1 ; -1,2 ; 1,8 ; 6,9 ; -0,62 ; FutureAU1938 ; BF3a4cFaDD4fd67C5Dcf1AeaDE7d1cBaf6ADEDe0ffC6e18F3DF754a5B529FC3E ; < 4mR6b8p7VXQ69CV62TV208qgDfB5gg0JB0uYEaVxd3F5rEU1DKPp03B1o9Um89Pp > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 83,2297698616958 ; 1,2255216695491 ; 66,913748022357 ; 83,2295198616958 ; 83,2300198616958 ; 3,2 ; -5,3 ; -9,9 ; -9,6 ; -4,2 ; -2,3 ; -0,67 ; FutureOC1952 ; ceac67FB057D3FdF5fbb1FFbB4BbC4fCffC4e8eDFAFb7b36BE25eecd8bEe297E ; < L0pWAQddhU99FOBWgjmSBft16mV3F70688zUE0vAS10msD0RxsO345wzy7H8z47t > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 84,2418127736471 ; 1,28593494301587 ; 64,5101669265455 ; 84,2415627736471 ; 84,2420627736471 ; -8,6 ; -4,5 ; 0,7 ; 7,1 ; 0 ; 7 ; 0 ; FutureDE1990 ; ABE8fbFfCb4bAF7dEce33b55Cda18CFd9a6Bdf2F94CcbF9BcFf8646a289ef03b ; < D4O06o6T98bl67T59RG54utp5v8lz4dv23K3pI0d3LMY6o1Tc61mOwZ7u907lert > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 85,4174393131844 ; 1,36592565978539 ; 61,5344715514058 ; 85,4171893131844 ; 85,4176893131844 ; 5,7 ; -8,4 ; 0,2 ; 4,4 ; -1,6 ; -8,4 ; 0,88 ; FutureFE2084 ; 7bEfEe7cfb9d97fCbE26BffdFEDeeeD3fcDFB9d353AC9fceeB92C7e7fDcAF1da ; < 4xW6WC7x2KrZbw5id2Bx33zZ9vrdrJfaPl4m9kmmJWXt6Q3h3AW0yOzHsOSEY1X4 > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 86,498600704236 ; 1,46829905613498 ; 57,9107514186702 ; 86,498350704236 ; 86,498850704236 ; 3,8 ; 2,2 ; -9,1 ; 1,9 ; 3,6 ; -6,6 ; 0,3 ; FutureAP2094 ; eBEFDCDF5ddAAaB8E4ad5ceD868cD1A6BEAb43DCeF82Dc5FC111CAdcA0e1E083 ; < 1EQe9KzCmUQBS8aSH65TU5l863Ux2e787OipsjUnN84zXA973O8c9nUr6I6n88NW > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 87,6884455281873 ; 1,59757817393707 ; 53,8883597427274 ; 87,6881955281873 ; 87,6886955281873 ; -5,6 ; -2,4 ; -4,8 ; 1,2 ; -9,7 ; 4,5 ; 0,02 ; FutureJU2055 ; cBDdCdD6FD4eD2FA9D6fbd4D872FF0Fdcdddf2Bfc5f333D8f861DDE6AC5D12BC ; < CRZ9sGivY4EOR34M2W32cvl0B85CkWo75lYIR37SNcxM3mHRjXu1jL5CSKpBfca2 > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 88,99671737479 ; 1,75919843646909 ; 49,5893567944595 ; 88,99646737479 ; 88,99696737479 ; -6,8 ; -1,3 ; 0,5 ; -4,7 ; -0,8 ; -1,9 ; 0,78 ; FutureAU2087 ; F0acEEcFAAAcdFaEECEcfD5c960beDa19dADAFD0AEc0cb232eAe3cCac9CfC6C9 ; < W7jLLhh17v91Ld3YaxaAlPaa1V7KoPx6ZmOcsY6OW1eCs6eBw6L1C3M54Ggo0k1s > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 90,1915609257977 ; 1,96086893907608 ; 44,995710946543 ; 90,1913109257977 ; 90,1918109257977 ; 0,1 ; -0,5 ; 0,8 ; 0,9 ; 3,4 ; -7 ; 0,13 ; FutureOC2011 ; Dc9DaF2b4abaDf0F6A7d3DD8F39Ade4A350f477f1fE967Eeb1ba5AC0fFCffd43 ; < enrEk2S8903Kj16MIMYaYgv7hJP1GmVPA97kzR6WzP9EWwVOdMul57KI86W701Du > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 91,6572769146718 ; 2,21221623255843 ; 40,4323317791906 ; 91,6570269146718 ; 91,6575269146718 ; 1 ; -7 ; 3,6 ; -7,1 ; 9,9 ; 6,2 ; 0,88 ; FutureDE2092 ; c21A529C4EebCf2b25fEdd1dE4802EDeA7efA1Fd5cCeBDEF89a4ffABe62CEEBd ; < y5U37Mt1yq5dc5tP2e5p0fikV32v2ChFlLkZtNVzMquLvU8g7EL9JECi0TSImj1q > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 93,107199253132 ; 2,52580972054052 ; 35,8623172584858 ; 93,1069492531321 ; 93,1074492531321 ; 5 ; -0,7 ; 5 ; 2,3 ; 1,2 ; -4,7 ; -0,93 ; FutureFE2123 ; afaC6eFea1dEab11F80DDb94fdBeEeFEaEe296E149FCcD9c2fD9d91E1f14E00B ; < PyrJ967xNHs0dZ70sT77w2gU0UiAsmmHQlrP9e4K4qlLea7O9V8NR73PIwjv61pG > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 94,424815202361 ; 2,91912375860365 ; 31,3469722460581 ; 94,424565202361 ; 94,425065202361 ; 7,8 ; 9,1 ; 6,8 ; -2,4 ; 5,9 ; 4 ; -0,81 ; FutureAP2142 ; 4aA2C5dabCfdbFdFf4080FDBAefcB7dC03ecDdfe7E84D17dcc40fE0cA5aFe6Fb ; < BH63AA365Uc3yqFYZd43FDKbYS5FR8J7OhQL7875Xdm841Lw5PEZ1yqmFz46D2HZ > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 96,1326600819787 ; 3,41426712683511 ; 27,156162511833 ; 96,1324100819788 ; 96,1329100819787 ; 0,1 ; -9,2 ; -4,7 ; 3,9 ; 0,1 ; -9,5 ; -0,31 ; FutureJU2136 ; dB6a20bC0ffdbaC7e2A2fA94aa1eb96d8CDdb68c4FEfa3bfcdCfaBCbF1fb3E76 ; < vo7GLA6fx3D2TVBkHbOX07wcuh80BLl9pWFrWSaF8HI5wjN99at0935157Muxer7 > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 97,5701650582074 ; 4,04164221874421 ; 23,1412177964936 ; 97,5699150582074 ; 97,5704150582074 ; 2 ; 5,5 ; 5,1 ; 9,3 ; 2,5 ; -7,3 ; 0,6 ; FutureAU2162 ; 59cECBCcD13BbFEc9856dDf4DbBa58FebEAB9D4dDA32EfcadE6fD3d06Db35Cbc ; < qVIQ5zm5eU1UGn3cb6CW3A0v8NLXkt2HTFu1tR6BsrsynV898HpKR4VtUe1Mp2QW > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 99,4263596679447 ; 4,84265327712496 ; 19,531381038077 ; 99,4261096679447 ; 99,4266096679447 ; -6,1 ; -3,6 ; -5,9 ; -3,2 ; 7,6 ; 4,5 ; 0,48 ; FutureOC2178 ; BdeAB2af0afE10d2bAdc7Bf984BBf7Eb8aF1DfaAAd9aDc506CCcc407420351D5 ; < w3Nlvgw59A85vz2tB61BL4lp1jV3A7Wr5mRMCzXOWMV4RMUS829LCd9vhf977741 > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 101,020451602344 ; 5,87285539592585 ; 16,2012496123137 ; 101,020201602344 ; 101,020701602344 ; -7 ; -1,3 ; 5 ; -2,2 ; 4 ; -1,5 ; -0,38 ; FutureDE2123 ; 2d9EB3EBD4FcaE7CDcF5BcCDF4cffb54ECA39e840A9Ba36979fe1f20bDCEe4Ec ; < 36o64fM71awOM3rJMUT6XB24vBkK5985AK55OTgj0510rTZMghjR5fLTE7zFT7fP > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 102,73184745168 ; 7,20841202473178 ; 13,2516614060367 ; 102,73159745168 ; 102,73209745168 ; -5,7 ; -3,4 ; -9,1 ; 8,4 ; 5,6 ; 9,9 ; -0,35 ; FutureFE2289 ; 0c277cFd3c061df8EEf465Af1Ae7f24da8Fed1aBF9bEcabd1f0Fc8d68c8ce2Ea ; < 5En744687iU0xniBV3y98L1S75P8msDk1TtER9tlqeqLPy9326UAWo53vDyGhAyK > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 104,687398465502 ; 8,9545768525513 ; 10,6909375160117 ; 104,687148465502 ; 104,687648465502 ; -2,5 ; 0,5 ; 0,2 ; 4,2 ; 1,2 ; 2,3 ; -0,23 ; FutureAP2224 ; 8DAa5beEcBECecFEFFd127b655EbfE9FE2A0cd5ccA8B5bb4aa662eC44deBcCEB ; < jcd5osF3Pd536W54Xm2s6ZF2tOWKtm360UV5Cq6C63D4FGD4iDQiOTf3z80jbq29 > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 106,404921573641 ; 11,259900765733 ; 8,44989869692815 ; 106,404671573641 ; 106,405171573641 ; -2,7 ; 3,2 ; -3,5 ; -0,6 ; -8,5 ; -5,6 ; 0,33 ; FutureJU2239 ; fedAddfeDe7dcA69fEeADdFe73fAfCCfBaE76BEaDB3d45bA239F6Fffa2cfe2C6 ; < hnHE16fDYj0qE34MXWWv3UCo6ws3E2F8wzt1CtgVZDpOS3enadr8S5nCv2aqdVRN > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 108,562671947789 ; 14,3299541381601 ; 6,57592598699884 ; 108,562421947789 ; 108,562921947789 ; -5,8 ; 3,2 ; 0,5 ; 1,1 ; 5,8 ; -1,8 ; -0,52 ; FutureAU2240 ; Bb6df50B0F7E6acBE6d7CBCA4FeC9DAEDcAe5d6eF8CFabEF5DE93dFfae0B0Bb7 ; < 78FV6B9DN3YH2oatEcRJe49wEwtALYMM9z8ia50He6tyoatg6JkwaV6q60ER2ZZ1 > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 110,914151844365 ; 18,4582822989029 ; 5,0089097158817 ; 110,913901844365 ; 110,914401844365 ; 3,8 ; 3,3 ; 3,6 ; -2,4 ; 5,1 ; 8,7 ; 0,64 ; FutureOC2273 ; ECfC4f7ae6b2529Fbd6fF60acAaE1B3Ece3cE422BCddbad5025A1ddcfBfF0BB3 ; < mbNiRG3e3VsS1G8IchSzui7N6Kiy075iC7U8Ra3amyzA497tA3Z689lf8V0Y7dt8 > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 113,051941169835 ; 24,0621076388776 ; 3,69833910090133 ; 113,051691169835 ; 113,052191169835 ; 4,8 ; 3,9 ; -8,9 ; 5,4 ; 9,7 ; 6,2 ; 0,72 ; FutureDE2235 ; Fc1fEbCFd9CC2EC7c98F3DA81cfD7a0DfaCb9dd2EDA8a3Afb3c5C6AB4eCBeE31 ; < K35xwfCnE8cWvPd7PIv7dCg3bc8tmj1m26PM6fmIr4bXolCkW65K4yNN9U3kWn0L > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 115,405995687366 ; 31,7509559163143 ; 2,63472507698794 ; 115,405745687366 ; 115,406245687366 ; 7,9 ; -4,1 ; 1,7 ; -6,3 ; 7,2 ; -5,2 ; -0,79 ; FutureFE2340 ; Ee12b4c514AC936a2cdB2eA26aFadEcbfafcFEBE2A8E9EbCFe9ccFffeCF3aBAE ; < Rr6A4j5V53WyTl1opn7qZpE9Bj1Qs9103Eg9vvozL0f8i82pR6v8Tnof7FAgxKg8 > > // < CALLS ; 1Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 43,249300352118 ; quote ; 53,6714134246759 ; 52,5979851561824 ; 0,0204081632653061 ; -4,7 ; 49,6460574178253 ; 57,6967694315266 ; 7 ; fb5B0Efbe2B2d7Aa4A4c7AcC17eD8ef7BcB46b3bd9cdBCFFbFF8eEA26f3c5bAc ; < coZCces18152N5IP904z8sIYGQw3ySOimtyXfXt9w3O74qvmVf7ajZZ8wmMCpF56 > > // < CALLS 47,5742303873298 ; quote ; 49,1194092921563 ; 48,1370211063132 ; 0,0204081632653061 ; 7,3 ; 45,4354535952446 ; 52,803364989068 ; -5,2 ; aDc53bb15D201a6db3ff0FFDfB959e21af4Fb2c29BD2E8e5FBdc9fb3B0c4CCbb ; < bbnd9tbV4gh69S6VaKb5b5ic9vnJG3yCn96S8J9i5jYL9TR12bC4AF0YM2zns138 > > // < CALLS 51,8991604225416 ; quote ; 44,6476691224842 ; 43,7547157400345 ; 0,0204081632653061 ; -7,5 ; 41,2990939382979 ; 47,9962443066705 ; 1,7 ; 1f8DBdEBDEad12B7eec50dE31b2fAD0Cedff7EB0d4A1fafFD58FA3e4C6FFbce2 ; < VR3qoGvH7X0PD03OLT574D6k2drum9J781HO5mdA34926NKJ14qwkU3RTr8jZ0wn > > // < CALLS 56,2240904577534 ; quote ; 40,2955533564589 ; 39,4896422893297 ; 0,0204081632653061 ; 4 ; 37,2733868547244 ; 43,3177198581933 ; -5,4 ; 6FF7BbbB6C9ED6cB8Cf56bfFf4c18DAdb3d9Cb12BBb1eACD0c1A2f38cC82BfCD ; < O9AI7Hh8Y1Cy80u51a74N4DF8vp0CSjvR7OWe7xI0r7G478GKY80922MYr5KY0C6 > > // < CALLS 60,5490204929652 ; quote ; 36,1055124059439 ; 35,383402157825 ; 0,0204081632653061 ; 6,6 ; 33,3975989754981 ; 38,8134258363897 ; -9,1 ; FAF4Cfd4fcb05bb5D16b2f678e55cdEBf5f644eaCedd49D6AFeCdE9FeCf1eCAf ; < 11ugFA5O0w4S2S713375aq6zp8037rx3A6M4sMhBsVZa21FknR37oNPexvmA7eE6 > > // < CALLS 64,873950528177 ; quote ; 32,1187612069275 ; 31,4763859827889 ; 0,0204081632653061 ; 7,1 ; 29,7098541164079 ; 34,527668297447 ; -1,2 ; e3eCEaD0Aa690912D60B72E0F8f5FE9D8ab3EDe3ED53aC2FB7fbAE9BFcfFAeFE ; < 7iNaj63gywDiSwGZW831c2Hly709ciSp1o982g86mFE82xvLq9i5kdH3nD9s830X > > // < CALLS 69,1988805633888 ; quote ; 28,37139808825 ; 27,803970126485 ; 0,0204081632653061 ; -2,5 ; 26,2435432316312 ; 30,4992529448687 ; 3,1 ; BAaaD5eebcE9Ace7cF1fae00E2Ee805fBCa9F7BfE41e37dCc1C8FE74Cde9DaA8 ; < ZVOf8h6jNx4w3ECriIwS5Z5Su1x6op759SJjgBIZeADUxhD8V7e2ib19r05rQKNn > > // < CALLS 73,5238105986006 ; quote ; 24,8915992243272 ; 24,3937672398406 ; 0,0204081632653061 ; 5,6 ; 23,0247292825026 ; 26,7584691661517 ; -3,2 ; D5b6Cd3F1AeF59EEB8bBcEBFB2f9cbbAa89bCB78FfdaDd4FdCB459d7DDe6Adde ; < X2aP4M6J73Kr2DUwin7xc8BW502g8zPVI4fQU7MBc0ahw1t45Q769z96mL5lD31V > > // < CALLS 77,8487406338124 ; quote ; 21,6981222819644 ; 21,2641598363251 ; 0,0204081632653061 ; -8,9 ; 20,0707631108171 ; 23,3254814531117 ; -4,7 ; 7e0eEeB71BDFeAb69FB86a1c3c3e4144ffC0cdAEd1BAC05ED646ABd897067CBB ; < HNG4PR69n0796UP43NL719020t1z0mtNbEH9MSIFj6TGe16247aqSNA7f2mbr85z > > // < CALLS 82,1736706690242 ; quote ; 18,8000367010218 ; 18,4240359670014 ; 0,0204081632653061 ; -6,3 ; 17,3900339484452 ; 20,2100394535985 ; -8,9 ; Dd5c39F0fdd7FC7D7dc3c787eDDE034A0f1729BABecADBaccAb65Cf4B8fFCfA1 ; < 2z1d8pVAr73YB8lE0NUXK1G7Wc518GPb2mSjwXT43055l03F2QNBUBuq0pI672pP > > // < CALLS 86,498600704236 ; quote ; 16,1974130106331 ; 15,8734647504204 ; 0,0204081632653061 ; 1,6 ; 14,9826070348356 ; 17,4122189864306 ; -1,9 ; f105cDbE67EfDBBeeDa1Cbaceff7eBdAD0BEfDe673DFFD1Cb79bffE62F1EF5fF ; < ZHCWnbB14nrl9p0UdEHi4oStIs9hxR664v19Z058a7mxiQ45BVIv2yU6a0x08liJ > > // < CALLS 90,8235307394478 ; quote ; 13,8826388518815 ; 13,6049860748439 ; 0,0204081632653061 ; -6 ; 12,8414409379904 ; 14,9238367657727 ; 8,9 ; b2635baE8dAeEEcBAE00c3eCDfeeEBcC72262EeCAd7cBf06ebdB5cFdCfa09ecF ; < T7utLN7n50x6UgnLB08WnBZc8qX864ZlQGw40gv4c8Ex1LF9y0n9kK1lDW1ufORB > > // < CALLS 95,1484607746596 ; quote ; 11,8420480713358 ; 11,605207109909 ; 0,0204081632653061 ; -9,4 ; 10,9538944659856 ; 12,7302016766859 ; -1,8 ; 3Ad5ceecB6b2aBC2CFEC0FD474cA1CF848E9DB7DfD7afA2b0a04ACe4a7ccBca9 ; < 9iT52aA8prtA99khzB4o67c0yZ6kaH5M0S1g0h03JMTNrKgQu759ahH0S3tO1025 > > // < CALLS 99,4733908098714 ; quote ; 10,0576120973883 ; 9,85645985544054 ; 0,0204081632653061 ; 3 ; 9,30329119008418 ; 10,8119330046924 ; -4,8 ; 3C1b42B3b2A5aFC69d4d4F4be9fFDdC7B6cB2DbabAFFD0Bd76D3E04378FBf33d ; < L3dc8prf39K636ilw47xQC0B1XlTZnc5cM7sP5ul1Y6zwbS4D08Gq4hn7utDCZQ7 > > // < CALLS 103,798320845083 ; quote ; 8,50851942129926 ; 8,33834903287327 ; 0,0204081632653061 ; -7,7 ; 7,87038046470181 ; 9,1466583778967 ; 7,4 ; E2Ef89cE1f8fbaa4dc9Efd654dd10Acddf21Fe4AFAfefFae8613FFCAccbe07cd ; < 3yS4kgMqY512Vs8vUJyKyq3Z0MbTBCUXY43i11d9NZbhcJUl6dg10eL738UXwTCX > > // < CALLS 108,123250880295 ; quote ; 7,17254050243703 ; 7,02908969238829 ; 0,0204081632653061 ; 3,1 ; 6,63459996475425 ; 7,71048104011981 ; 7,3 ; 4d8EEbdFfaCEeFcbffcbc2FC84b8aDf4860DEfebc15c9f37bdFE09cC6081CeB6 ; < YMCcvG902uv1iJ8v85Xp8OdtQu7vjc2tMT4957pFC2Pd1lY3p51Rxy5JEDU6nnF3 > > // < CALLS 112,448180915507 ; quote ; 6,02713272602194 ; 5,9065900715015 ; 0,0204081632653061 ; -4,6 ; 5,57509777157029 ; 6,47916768047358 ; -1,4 ; D0aB2FBcEA7Ac09Fd2A9AbD6D7fd09c47DFd413BbcdBC6bFf2aDAef9Bc7Fe0b8 ; < d2WiLJLU9Ij4Y3d3VGllLv5qIbApZonIxA3828e8349DKD43i5FLM6fSizkUVj7P > > // < CALLS 116,773110950719 ; quote ; 5,05028078983101 ; 4,94927517403439 ; 0,0204081632653061 ; -6,3 ; 4,67150973059368 ; 5,42905184906834 ; -5,3 ; CFCDA44cAfB55Ce7Af9C1C75Cdc7dfEd0Db5E9cE23fff44edBbf169BdeC8e92A ; < Pc4i8GYjdM7xV94V61e9pv3SFK2dcbj83Qo1gk1NOLI9gfPs5MqFlE2dl9KMHr04 > > // < CALLS 121,09804098593 ; quote ; 4,22109351113971 ; 4,13667164091692 ; 0,0204081632653061 ; 0,8 ; 3,90451149780423 ; 4,53767552447519 ; -7,3 ; 45EccadEBFdD83cD3E2c8E71bBF07e6ac4cF19eBEEdEdeFc9aa61Fd68DC13a5A ; < aw8LYd0SE09W4aD8HsI40w3EgF0B133nnuN2nsh3KxuPbgzva45F5mM3E2GwSr61 > > // < CALLS 125,422971021142 ; quote ; 3,52019161191621 ; 3,44978777967789 ; 0,0204081632653061 ; 5,1 ; 3,2561772410225 ; 3,78420598280993 ; -8,7 ; C99aaF540dAddeCfbdF417cE90E5433EA7aDf1a7a70cBF3DB4ceEBcbaa10Fb4D ; < N8U8Kn9aw5241666N242iI5d4LZK7ZCQF2tIkHrszG3tisYyqDSYKDJNMH93C3hs > > // < CALLS 129,747901056354 ; quote ; 2,92992596859076 ; 2,87132744921894 ; 0,0204081632653061 ; 7,8 ; 2,71018152094645 ; 3,14967041623507 ; -9,3 ; 7aCd55FcBa7A7835CEBDbFe1FDfbF02dbdddeA5fae12Da7ADcCC0C2EB3Cd3a6E ; < Yec0g0cr0i5c3qXJt0alCTvyYIogLZENTO3y63ijZ0l97S4zhg8DfW78xW51C43O > > // // < PUTS ; 1Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 43,249300352118 ; quote ; 0,0585877411035796 ; 0,057415986281508 ; 0,0204081632653061 ; 1,7 ; 0,0541936605208111 ; 0,062981821686348 ; -7,8 ; caDE5e7d2dE2Af2BecaE3c20bE0ea78Cccbfae24EBEDaAAdDF69dfe34AeE921A ; < S427pro25vjYQCAU71Rlew3UePalZO5m5Sgi516Dbr6O275gxcQ9tp8Uh4LMVJ6O > > // < PUTS 47,5742303873298 ; quote ; 0,145301040226713 ; 0,142395019422178 ; 0,0204081632653061 ; -9,8 ; 0,134403462209709 ; 0,156198618243716 ; 3,6 ; AAaCEf5BcAee1c567FF9fff76e44AA3EAaeaECd7fabBcFE23DfA56f0AA7487d3 ; < MAH2Tr5302yj11388rL0n2y74AkANVOu5xSUtthL63tH8jXPGsJLu77pBbOTCO46 > > // < PUTS 51,8991604225416 ; quote ; 0,312278302197384 ; 0,306032736153437 ; 0,0204081632653061 ; -3,7 ; 0,288857429532581 ; 0,335699174862188 ; 4,9 ; 7ECa8d9aAac60D50B6A4AecFC4C27eB5C0AaaaB6daD4a48c31baEfAC8dABc4Af ; < O8O3183O7i472F6j0b7KjWCYvfCfOodE25lCd9h12GsXO127p85tAlyaTc1Y3582 > > // < PUTS 56,2240904577534 ; quote ; 0,598879967814781 ; 0,586902368458486 ; 0,0204081632653061 ; 2 ; 0,553963970228673 ; 0,64379596540089 ; -5 ; d8cB70bCC1DAEd91E06bBB4FCd3BE7fE3b6dE2dE5DC29c6fBfb6181Fd486EBcb ; < Fr8fAKuSA7ol4xGBm54TPJcQCXL5P87A0pF61wh7Z5WE0YjP5FQfLDlEjD5692im > > // < PUTS 60,5490204929652 ; quote ; 1,0475564489426 ; 1,02660531996375 ; 0,0204081632653061 ; -0,8 ; 0,968989715271906 ; 1,1261231826133 ; -1,8 ; dBbbAcafd2B83EEbAa3C9c39e0aEaF4aDe0DC6dadAed59a2Dc3AdB6fdBA03Bd0 ; < 8x0zduot895PzuVGReV3P9B5IUF310vz34E4OeBG4nF7uxLp9Q0u4c5ngze2Frtr > > // < PUTS 64,873950528177 ; quote ; 1,69952268156894 ; 1,66553222793756 ; 0,0204081632653061 ; -8 ; 1,57205848045127 ; 1,82698688268661 ; -6,8 ; 19B0BcE3D97fB57B6b3e0fC3A2d1fffE29E0Eed9ACAEba63defACa4FdBCAAadB ; < 7t94AA4gUW4B4ujJmV0mJ2c6tA1Sk851vlWo5K4OOw9u85L5I9e1t5YAxv5B9xoz > > // < PUTS 69,1988805633888 ; quote ; 2,59087699453423 ; 2,53905945464354 ; 0,0204081632653061 ; 5,7 ; 2,39656121994416 ; 2,78519276912429 ; 5,5 ; fa7Bfc68Ba40a00ABceCE1132cFa8AFBd3BCE7CBEDfBCA53dcF5ba86FbAcFBDB ; < SN4x32143N9u8fOxzImh900UU8liz9ekWbOy7Z54maL15xLwQzf6LbPNZysXC7fq > > // < PUTS 73,5238105986006 ; quote ; 3,74979556225416 ; 3,67479965100908 ; 0,0204081632653061 ; 7,8 ; 3,4685608950851 ; 4,03103022942323 ; 8,5 ; BFBaA8EF63FDd88d2Cda3DeBcC1E1EAfEeeC5AaA0D6E9FDFCdEbfdB2BBFEcEee ; < 8Eqy0RO13e3fk6hj6YNpmCgJU0TQ7FCUdh9bTPBTqawkFv4RRzvBbVKeP379a2Cv > > // < PUTS 77,8487406338124 ; quote ; 5,19503605153417 ; 5,09113533050349 ; 0,0204081632653061 ; -0,2 ; 4,80540834766911 ; 5,58466375539924 ; -8,4 ; FF645faafaeF89D2FfE328C1dAdCccFd7fa7a322efbfeaD1F59DEc00dBd1c6bc ; < cUqbLOEU89zN8s6HHA3MN43HQvqIIEfRRjMvW9RkPEupPAp0X5e5PJMzhRQx274D > > // < PUTS 82,1736706690242 ; quote ; 6,93566790223434 ; 6,79695454418966 ; 0,0204081632653061 ; 1,1 ; 6,41549280956677 ; 7,45584299490192 ; -1,9 ; Be9FEFcDcAc7baCBa654ffacCAeb6aAaAbed8dAaab35caAf5aeCb1d0AbD1C9e4 ; < wXcH7X3v1sC4fJcQBBmgr202oUkZfSqAFAeB83VWg1Q1yWEV1zgSTM36RcslpwI7 > > // < PUTS 86,498600704236 ; quote ; 8,97176164348836 ; 8,7923264106186 ; 0,0204081632653061 ; 2,8 ; 8,29887952022674 ; 9,64464376674999 ; 9,2 ; bAca1acB3A4FFBDbccFe13cF4fdDfceeEEbdDDFdA9fCBa8abcfFeBd0c9CbDDA1 ; < rZ3SVJNdBbK5X3D4xm45wM5j83GJi4J4Dy8y9b604y7HWaC107vP19edXAh5kk6G > > // < PUTS 90,8235307394478 ; quote ; 11,2957049163796 ; 11,069790818052 ; 0,0204081632653061 ; -8,1 ; 10,4485270476511 ; 12,1428827851081 ; -0,4 ; fabF7Fcc0df8bDBceeDf7C0bdDdB2fafC9369Cd03f1fBAeDf763e146090447c2 ; < BzWe25U9z64qFb9Jyv4W6H109ECc6x8Oqnmr27fBFL6z0BaC7Yc443w3PJ8XEx51 > > // < PUTS 95,1484607746596 ; quote ; 13,8938315674766 ; 13,6159549361271 ; 0,0204081632653061 ; -6,8 ; 12,8517941999158 ; 14,9358689350373 ; 9 ; 283E9badCFbEc1EdeFEcA22dd0AFd5fFb66a2C38fAB749FaCBEeA66DAfDa51dD ; < 66oxW7g2RuxHglzD0MNtO0zYBOLSk9MaCRW74f2xUg8APTLr0fAMu38k49KUkBii > > // < PUTS 99,4733908098714 ; quote ; 16,7481130251719 ; 16,4131507646684 ; 0,0204081632653061 ; 1,6 ; 15,492004548284 ; 18,0042215020598 ; 3,6 ; b18DD8eAB00aaBDBD984d12BCf0cAbc4af155bf2Daac36FDcfaFBb1cFCaD58aA ; < X3vwzujChLSEYf4A5mJU408S5CT3023cI4Q84mrv7t556el3WjG3H453No582fAC > > // < PUTS 103,798320845083 ; quote ; 19,8377377807256 ; 19,4409830251111 ; 0,0204081632653061 ; -8,1 ; 18,3499074471712 ; 21,32556811428 ; -6,8 ; 38CE6Ac0CfAcFb8eC4FA7Cc9d94EACF0bF7FBeFCCBF089C9BF17E0FBfDDf62Ca ; < eMqw673raK38yo636fmA1XX28t44Y7oATTe4LW160BawDj1oA7LPI2OgH89EgIP5 > > // < PUTS 108,123250880295 ; quote ; 23,1404762935061 ; 22,677666767636 ; 0,0204081632653061 ; 3,2 ; 21,4049405714932 ; 24,8760120155191 ; -5,3 ; f1a171Ae4A7eedf07eeFAFeB7b88aD8cABBfafADaf805eeBaCa3bcbda87FA1CD ; < ELnn9048jHpr1b7DNQL027Dd0LoEttgtYvkmsY4v5Er09uX4fqOmryTjkFx2vWX4 > > // < PUTS 112,448180915507 ; quote ; 26,6337859487338 ; 26,1011102297591 ; 0,0204081632653061 ; -5,6 ; 24,6362520025788 ; 28,6313198948888 ; 6,8 ; Fb9f9bAECAcd9Cc0ab9a7Ea06dCAB6EB2ab84CACce0d8ef3E6A785CCF2bA0E3E ; < 1GAn12dV94WU8u9hPu4k9E8u4sAAeuqj9MVGz0uSTo940n3Y23129wqbYLu5thf5 > > // < PUTS 116,773110950719 ; quote ; 30,2956514441856 ; 29,6897384153019 ; 0,0204081632653061 ; -4,5 ; 28,0234775858717 ; 32,5678253024996 ; 6,7 ; C35Ef0Cac97C5Caf5f57CDCAc76362def48Ec73d109faFBc3E8eaDBEcbD228A2 ; < hwRD21UFqAB77F46K6iivvMzmg83Uf0GixK3gtl6BsjkhuEmhX3sh155zqPhgUtD > > // < PUTS 121,09804098593 ; quote ; 34,1051815971371 ; 33,4230779651944 ; 0,0204081632653061 ; 5,6 ; 31,5472929773518 ; 36,6630702169224 ; 5 ; 78Dbad43cBbb6ddDcF9FcacADA7ca461b30Cd0ed1f02d9B914FdD64Cc1E8d2Dd ; < 5iZw8X1x4xog92Cgk252uU6N1h63A0D3rp14KszQYJ69aLg7KL6D7pC943Mid69d > > // < PUTS 125,422971021142 ; quote ; 38,0429971295564 ; 37,2821371869652 ; 0,0204081632653061 ; 4,2 ; 35,1897723448396 ; 40,8962219142731 ; -1,1 ; 6dD93baC6CDBCE1d9FdBAFbeD42bbD68aDee3AeCEECfd9cfb2ac7cB6b7fAD34c ; < o9vFKK64rc6SDGniWP3QQk3cA54d4LsB03SST41KY2Xc9q0W44q0uOqSEvhy6SeL > > // < PUTS 129,747901056354 ; quote ; 42,0914489178737 ; 41,2496199395162 ; 0,0204081632653061 ; 4 ; 38,9345902490332 ; 45,2483075867142 ; 1,8 ; CbA9777037eCac9CDEF9Fe8E7DAf98d6DCcDDFbAB3AcF2dFbCde05BF47a73421 ; < z23bH526m3ckJO2r18CCm16rrL3vX526S92bLQb6YvloeY4X6p3Ze1zq56RW6X78 > > // Futures_EurosibPower_Engineering // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 80,467707 ; 1,14 ; 69,5857078947368 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; E5C3FFbeEDBcAEc3afB9Ff7F0FC0b15ACD4af30FbBaBDcFD45Fb8eD45fe5c2Cb ; < T6skmd83RU84dIcA5Q55jV8lSB3rOSlLl7eGIGR86PfOQ1OfMmEtIzDny104E78w > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 80,4633818792096 ; 1,13993046 ; 69,5862196885323 ; 80,4631318792097 ; 80,4636318792096 ; 3 ; 5,7 ; 6,6 ; -9,9 ; -8,6 ; -3,2 ; -0,31 ; Future96AP19 ; dB5fDde8137EEEEC4c3CDbF5fc081b5E2CAFFbD7bDACD9cbfDb5dabdC0bacc75 ; < N6gNDT1aFNGUxAdPzR0ynb9Nsl86cy627hYcfQDo7A1RMLsSRCYdT7o060yP7B50 > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 81,3462394335325 ; 1,15380498577013 ; 69,5025896375686 ; 81,3459894335326 ; 81,3464894335325 ; 9,6 ; -1,1 ; -5,1 ; -3,7 ; -6,6 ; -9,7 ; -0,27 ; FutureJU1932 ; a3274Ffc64bcC95E8aAF8BDcfCdd4B8887eD6aBFb147caC6E88EBF4DDECAcaEf ; < cKiFW074oY6K9wSvg86o6W9zRG7OIuuO7b1gH5eSahatdCrbE14CPq5D8VOgJi94 > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 82,295704370818 ; 1,18200375723698 ; 68,6238940586703 ; 82,295454370818 ; 82,295954370818 ; -7,2 ; -3,9 ; 3,1 ; -1,2 ; 1,8 ; 6,9 ; -0,62 ; FutureAU1938 ; BF3a4cFaDD4fd67C5Dcf1AeaDE7d1cBaf6ADEDe0ffC6e18F3DF754a5B529FC3E ; < 4mR6b8p7VXQ69CV62TV208qgDfB5gg0JB0uYEaVxd3F5rEU1DKPp03B1o9Um89Pp > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 83,2297698616958 ; 1,2255216695491 ; 66,913748022357 ; 83,2295198616958 ; 83,2300198616958 ; 3,2 ; -5,3 ; -9,9 ; -9,6 ; -4,2 ; -2,3 ; -0,67 ; FutureOC1952 ; ceac67FB057D3FdF5fbb1FFbB4BbC4fCffC4e8eDFAFb7b36BE25eecd8bEe297E ; < L0pWAQddhU99FOBWgjmSBft16mV3F70688zUE0vAS10msD0RxsO345wzy7H8z47t > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 84,2418127736471 ; 1,28593494301587 ; 64,5101669265455 ; 84,2415627736471 ; 84,2420627736471 ; -8,6 ; -4,5 ; 0,7 ; 7,1 ; 0 ; 7 ; 0 ; FutureDE1990 ; ABE8fbFfCb4bAF7dEce33b55Cda18CFd9a6Bdf2F94CcbF9BcFf8646a289ef03b ; < D4O06o6T98bl67T59RG54utp5v8lz4dv23K3pI0d3LMY6o1Tc61mOwZ7u907lert > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 85,4174393131844 ; 1,36592565978539 ; 61,5344715514058 ; 85,4171893131844 ; 85,4176893131844 ; 5,7 ; -8,4 ; 0,2 ; 4,4 ; -1,6 ; -8,4 ; 0,88 ; FutureFE2084 ; 7bEfEe7cfb9d97fCbE26BffdFEDeeeD3fcDFB9d353AC9fceeB92C7e7fDcAF1da ; < 4xW6WC7x2KrZbw5id2Bx33zZ9vrdrJfaPl4m9kmmJWXt6Q3h3AW0yOzHsOSEY1X4 > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 86,498600704236 ; 1,46829905613498 ; 57,9107514186702 ; 86,498350704236 ; 86,498850704236 ; 3,8 ; 2,2 ; -9,1 ; 1,9 ; 3,6 ; -6,6 ; 0,3 ; FutureAP2094 ; eBEFDCDF5ddAAaB8E4ad5ceD868cD1A6BEAb43DCeF82Dc5FC111CAdcA0e1E083 ; < 1EQe9KzCmUQBS8aSH65TU5l863Ux2e787OipsjUnN84zXA973O8c9nUr6I6n88NW > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 87,6884455281873 ; 1,59757817393707 ; 53,8883597427274 ; 87,6881955281873 ; 87,6886955281873 ; -5,6 ; -2,4 ; -4,8 ; 1,2 ; -9,7 ; 4,5 ; 0,02 ; FutureJU2055 ; cBDdCdD6FD4eD2FA9D6fbd4D872FF0Fdcdddf2Bfc5f333D8f861DDE6AC5D12BC ; < CRZ9sGivY4EOR34M2W32cvl0B85CkWo75lYIR37SNcxM3mHRjXu1jL5CSKpBfca2 > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 88,99671737479 ; 1,75919843646909 ; 49,5893567944595 ; 88,99646737479 ; 88,99696737479 ; -6,8 ; -1,3 ; 0,5 ; -4,7 ; -0,8 ; -1,9 ; 0,78 ; FutureAU2087 ; F0acEEcFAAAcdFaEECEcfD5c960beDa19dADAFD0AEc0cb232eAe3cCac9CfC6C9 ; < W7jLLhh17v91Ld3YaxaAlPaa1V7KoPx6ZmOcsY6OW1eCs6eBw6L1C3M54Ggo0k1s > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 90,1915609257977 ; 1,96086893907608 ; 44,995710946543 ; 90,1913109257977 ; 90,1918109257977 ; 0,1 ; -0,5 ; 0,8 ; 0,9 ; 3,4 ; -7 ; 0,13 ; FutureOC2011 ; Dc9DaF2b4abaDf0F6A7d3DD8F39Ade4A350f477f1fE967Eeb1ba5AC0fFCffd43 ; < enrEk2S8903Kj16MIMYaYgv7hJP1GmVPA97kzR6WzP9EWwVOdMul57KI86W701Du > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 91,6572769146718 ; 2,21221623255843 ; 40,4323317791906 ; 91,6570269146718 ; 91,6575269146718 ; 1 ; -7 ; 3,6 ; -7,1 ; 9,9 ; 6,2 ; 0,88 ; FutureDE2092 ; c21A529C4EebCf2b25fEdd1dE4802EDeA7efA1Fd5cCeBDEF89a4ffABe62CEEBd ; < y5U37Mt1yq5dc5tP2e5p0fikV32v2ChFlLkZtNVzMquLvU8g7EL9JECi0TSImj1q > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 93,107199253132 ; 2,52580972054052 ; 35,8623172584858 ; 93,1069492531321 ; 93,1074492531321 ; 5 ; -0,7 ; 5 ; 2,3 ; 1,2 ; -4,7 ; -0,93 ; FutureFE2123 ; afaC6eFea1dEab11F80DDb94fdBeEeFEaEe296E149FCcD9c2fD9d91E1f14E00B ; < PyrJ967xNHs0dZ70sT77w2gU0UiAsmmHQlrP9e4K4qlLea7O9V8NR73PIwjv61pG > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 94,424815202361 ; 2,91912375860365 ; 31,3469722460581 ; 94,424565202361 ; 94,425065202361 ; 7,8 ; 9,1 ; 6,8 ; -2,4 ; 5,9 ; 4 ; -0,81 ; FutureAP2142 ; 4aA2C5dabCfdbFdFf4080FDBAefcB7dC03ecDdfe7E84D17dcc40fE0cA5aFe6Fb ; < BH63AA365Uc3yqFYZd43FDKbYS5FR8J7OhQL7875Xdm841Lw5PEZ1yqmFz46D2HZ > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 96,1326600819787 ; 3,41426712683511 ; 27,156162511833 ; 96,1324100819788 ; 96,1329100819787 ; 0,1 ; -9,2 ; -4,7 ; 3,9 ; 0,1 ; -9,5 ; -0,31 ; FutureJU2136 ; dB6a20bC0ffdbaC7e2A2fA94aa1eb96d8CDdb68c4FEfa3bfcdCfaBCbF1fb3E76 ; < vo7GLA6fx3D2TVBkHbOX07wcuh80BLl9pWFrWSaF8HI5wjN99at0935157Muxer7 > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 97,5701650582074 ; 4,04164221874421 ; 23,1412177964936 ; 97,5699150582074 ; 97,5704150582074 ; 2 ; 5,5 ; 5,1 ; 9,3 ; 2,5 ; -7,3 ; 0,6 ; FutureAU2162 ; 59cECBCcD13BbFEc9856dDf4DbBa58FebEAB9D4dDA32EfcadE6fD3d06Db35Cbc ; < qVIQ5zm5eU1UGn3cb6CW3A0v8NLXkt2HTFu1tR6BsrsynV898HpKR4VtUe1Mp2QW > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 99,4263596679447 ; 4,84265327712496 ; 19,531381038077 ; 99,4261096679447 ; 99,4266096679447 ; -6,1 ; -3,6 ; -5,9 ; -3,2 ; 7,6 ; 4,5 ; 0,48 ; FutureOC2178 ; BdeAB2af0afE10d2bAdc7Bf984BBf7Eb8aF1DfaAAd9aDc506CCcc407420351D5 ; < w3Nlvgw59A85vz2tB61BL4lp1jV3A7Wr5mRMCzXOWMV4RMUS829LCd9vhf977741 > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 101,020451602344 ; 5,87285539592585 ; 16,2012496123137 ; 101,020201602344 ; 101,020701602344 ; -7 ; -1,3 ; 5 ; -2,2 ; 4 ; -1,5 ; -0,38 ; FutureDE2123 ; 2d9EB3EBD4FcaE7CDcF5BcCDF4cffb54ECA39e840A9Ba36979fe1f20bDCEe4Ec ; < 36o64fM71awOM3rJMUT6XB24vBkK5985AK55OTgj0510rTZMghjR5fLTE7zFT7fP > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 102,73184745168 ; 7,20841202473178 ; 13,2516614060367 ; 102,73159745168 ; 102,73209745168 ; -5,7 ; -3,4 ; -9,1 ; 8,4 ; 5,6 ; 9,9 ; -0,35 ; FutureFE2289 ; 0c277cFd3c061df8EEf465Af1Ae7f24da8Fed1aBF9bEcabd1f0Fc8d68c8ce2Ea ; < 5En744687iU0xniBV3y98L1S75P8msDk1TtER9tlqeqLPy9326UAWo53vDyGhAyK > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 104,687398465502 ; 8,9545768525513 ; 10,6909375160117 ; 104,687148465502 ; 104,687648465502 ; -2,5 ; 0,5 ; 0,2 ; 4,2 ; 1,2 ; 2,3 ; -0,23 ; FutureAP2224 ; 8DAa5beEcBECecFEFFd127b655EbfE9FE2A0cd5ccA8B5bb4aa662eC44deBcCEB ; < jcd5osF3Pd536W54Xm2s6ZF2tOWKtm360UV5Cq6C63D4FGD4iDQiOTf3z80jbq29 > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 106,404921573641 ; 11,259900765733 ; 8,44989869692815 ; 106,404671573641 ; 106,405171573641 ; -2,7 ; 3,2 ; -3,5 ; -0,6 ; -8,5 ; -5,6 ; 0,33 ; FutureJU2239 ; fedAddfeDe7dcA69fEeADdFe73fAfCCfBaE76BEaDB3d45bA239F6Fffa2cfe2C6 ; < hnHE16fDYj0qE34MXWWv3UCo6ws3E2F8wzt1CtgVZDpOS3enadr8S5nCv2aqdVRN > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 108,562671947789 ; 14,3299541381601 ; 6,57592598699884 ; 108,562421947789 ; 108,562921947789 ; -5,8 ; 3,2 ; 0,5 ; 1,1 ; 5,8 ; -1,8 ; -0,52 ; FutureAU2240 ; Bb6df50B0F7E6acBE6d7CBCA4FeC9DAEDcAe5d6eF8CFabEF5DE93dFfae0B0Bb7 ; < 78FV6B9DN3YH2oatEcRJe49wEwtALYMM9z8ia50He6tyoatg6JkwaV6q60ER2ZZ1 > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 110,914151844365 ; 18,4582822989029 ; 5,0089097158817 ; 110,913901844365 ; 110,914401844365 ; 3,8 ; 3,3 ; 3,6 ; -2,4 ; 5,1 ; 8,7 ; 0,64 ; FutureOC2273 ; ECfC4f7ae6b2529Fbd6fF60acAaE1B3Ece3cE422BCddbad5025A1ddcfBfF0BB3 ; < mbNiRG3e3VsS1G8IchSzui7N6Kiy075iC7U8Ra3amyzA497tA3Z689lf8V0Y7dt8 > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 113,051941169835 ; 24,0621076388776 ; 3,69833910090133 ; 113,051691169835 ; 113,052191169835 ; 4,8 ; 3,9 ; -8,9 ; 5,4 ; 9,7 ; 6,2 ; 0,72 ; FutureDE2235 ; Fc1fEbCFd9CC2EC7c98F3DA81cfD7a0DfaCb9dd2EDA8a3Afb3c5C6AB4eCBeE31 ; < K35xwfCnE8cWvPd7PIv7dCg3bc8tmj1m26PM6fmIr4bXolCkW65K4yNN9U3kWn0L > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 115,405995687366 ; 31,7509559163143 ; 2,63472507698794 ; 115,405745687366 ; 115,406245687366 ; 7,9 ; -4,1 ; 1,7 ; -6,3 ; 7,2 ; -5,2 ; -0,79 ; FutureFE2340 ; Ee12b4c514AC936a2cdB2eA26aFadEcbfafcFEBE2A8E9EbCFe9ccFffeCF3aBAE ; < Rr6A4j5V53WyTl1opn7qZpE9Bj1Qs9103Eg9vvozL0f8i82pR6v8Tnof7FAgxKg8 > > // < CALLS ; 2Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 47,2124076011805 ; quote ; 57,5879066477486 ; 56,4361485147936 ; 0,0204081632653061 ; 5,2 ; 53,124843882548 ; 62,0509694129491 ; 5,8 ; D7ece4D4F8fdab9B7DBECdea5d99AAFAf4Db122ADFF82cC82ccEAdeD0aFCaEaC ; < EB9voJ5xqU2vGPw65JsU4ANXAq8ZYEUz821jRM4W82UO6L5e06Vrs2xrJ0ydKgcq > > // < CALLS 51,9336483612985 ; quote ; 53,6044676860604 ; 52,5323783323391 ; 0,0204081632653061 ; 2,8 ; 49,4501214403907 ; 57,75881393173 ; -6,8 ; FA023b0cEeEC79CF9413F6E35e67CfBe3cc4dACBaa75fdEE5daB4eFe1fFD7aeb ; < 744n6JIRAgf4ns0Ld85oYCcb8MYR25b29vd442Y775PJpWOs54lG5LmCu80e9j9V > > // < CALLS 56,6548891214166 ; quote ; 49,749238783706 ; 48,7542540080319 ; 0,0204081632653061 ; 0,5 ; 45,8936727779688 ; 53,6048047894432 ; -0,9 ; 7Ff57BD31Dbbadb00AfaB10bD6bdf2D7AFeDeB6BebEbACaE32c6dC91DfCFbDcD ; < 2mP49Uc53xG88635eo57kc0DRq1oWj27km0I8lfGEd7KK2L8sHy76s4W16W6Y740 > > // < CALLS 61,3761298815347 ; quote ; 46,043352958261 ; 45,1224858990958 ; 0,0204081632653061 ; 2,4 ; 42,4749931039958 ; 49,6117128125262 ; -1,3 ; c2dEcfDD8d251bfC9BF8F0d11AAe90abDdC6bdAF10aF1Ecc51efFBfCe89bAdfd ; < ZXk9rbCs4r6l01016CZtW3x04O5H2H9Xp66LXv1469ULl0f16koHGa867Abc4PLP > > // < CALLS 66,0973706416527 ; quote ; 42,5041624904487 ; 41,6540792406398 ; 0,0204081632653061 ; 6,2 ; 39,2100898974389 ; 45,7982350834585 ; -3,3 ; adbdDAd4A03dbdF54F82BeEFe9f3fBeEAc3B0D5fFACcAa92e92ecDAa8AEb48B3 ; < 4G9lCNETeaihQDY390tP1HU1OY3q3633c4Fe43o5s7h3XS72SSwm1cjx3z2LO362 > > // < CALLS 70,8186114017707 ; quote ; 39,1447745021317 ; 38,3618790120891 ; 0,0204081632653061 ; 3,7 ; 36,1110544782165 ; 42,1784945260469 ; -2 ; EAEbadccbe59dbFEEb4bE29B3aAFa040cbd1B6CeB469aBC049Ecc8d5aFd71B2C ; < 639iL1Ur6BeogGnh17FF77TGHBuD4k0Q8Peyp9q6a3WLDI4Pqtn7tjNC0808A0qn > > // < CALLS 75,5398521618888 ; quote ; 35,9740072988448 ; 35,2545271528679 ; 0,0204081632653061 ; 8,4 ; 33,1860217331843 ; 38,7619928645052 ; -6,4 ; FBFDc89EAbAAD508cDd9EfEcAB0cfA25c9Bfb5A4BfEDa2c81Fd8FfBD0fD1ecE2 ; < 6157cm9M31L2uj5pb3196b1eIx95DHoGj5lSpY293a2m243G0Ghh02Kqjy073776 > > // < CALLS 80,2610929220068 ; quote ; 32,9966443893104 ; 32,3367115015242 ; 0,0204081632653061 ; 8,1 ; 30,4394044491389 ; 35,553884329482 ; -2,3 ; deeCabFFF61feabb2e4fff073e67e2D15B7C1F8dc41eD0cdAcAfC1f73Db0bcdD ; < Cx3iyjSlG4Q8iBkM19Dcw9ICTJaQfGAvoDGYqqOxFzRJe388mXj5HjNIt5Dd08A3 > > // < CALLS 84,9823336821249 ; quote ; 30,2138736853229 ; 29,6095962116165 ; 0,0204081632653061 ; 8,2 ; 27,8722984747104 ; 32,5554488959355 ; -4,7 ; beC1b7E69E5987fcADd2d2D57DCBbaE5a3C4dbebC4Fb07e9F0027bAb6E248D41 ; < u5ttS5LqFDf1nAK13zr7cQWH7KLt9Iu51wbu3b1835ogN2X00Z24elnqmLEXlu1j > > // < CALLS 89,7035744422429 ; quote ; 27,623821116272 ; 27,0713446939466 ; 0,0204081632653061 ; 3,9 ; 25,4829749797609 ; 29,7646672527831 ; 0,7 ; Cbe3F8baC3CC865ACeB32faA77ff109BebAaE1a3Bcc7b5bddC18FfD0b3486e3B ; < SEB747YNL0KY1ojuA5yn375DH4TNofB7pDgYpEGPULAyMz8bW82k8SisrbalF8bV > > // < CALLS 94,424815202361 ; quote ; 25,2221118387227 ; 24,7176696019483 ; 0,0204081632653061 ; -3 ; 23,2673981712217 ; 27,1768255062238 ; -5,3 ; AE3FAaCEFb796B5AF4DF09fa1dbDdbF3B1EeAb0efdb4FF1FEc717fFEda2DedF7 ; < h9Ezh76734g4cDxb6iH66QLXO1851Ri15X7G3TX6F5gIanomGZ09k1YlGG01R0nX > > // < CALLS 99,146055962479 ; quote ; 23,0024138329086 ; 22,5423655562505 ; 0,0204081632653061 ; -6,4 ; 21,2197267608582 ; 24,7851009049591 ; -0,1 ; bdC6dEDEb8bEBff2E4ff9aEeDcfCFa1Ead817DcB42fb606cBF4A2fFD6af3E90F ; < p3Xilydw4b49np397CI6Y864M27hu3if00ukZjK9uC03pg2DZ9UY78nPHY0ZF99G > > // < CALLS 103,867296722597 ; quote ; 20,9569361662668 ; 20,5377974429415 ; 0,0204081632653061 ; -7,7 ; 19,3327736133811 ; 22,5810987191525 ; 4,3 ; cddDAFCA3b8d121aABcbdbeAEbcfeFFd9CDEf5Ab5eaDcEFfDF9EcFbE95Be6cc7 ; < L6NAFR3iG9z80YcG3Lf1Nnrib015wgHW935R24sHUDjQ919dY953Y0t8FZ970p32 > > // < CALLS 108,588537482715 ; quote ; 19,0768673163296 ; 18,695329970003 ; 0,0204081632653061 ; -2,3 ; 17,598410099314 ; 20,5553245333451 ; 4,3 ; 219Ac1ddfaE60832b5FEbA8bfc0B15bDD5C0cDf8c07FA64EfD7CBd18Ffea965A ; < 45r0p856r8CzVNF11Rvc2z5ZM3r3dFTT5JFd580T13VjkE2MpnLfx7JfIlr2992a > > // < CALLS 113,309778242833 ; quote ; 17,3527481632677 ; 17,0056932000023 ; 0,0204081632653061 ; -5,7 ; 16,0079101806144 ; 18,6975861459209 ; 1,8 ; 0d2D59CCAD7D450d0B7Ad6FdcF06Bbdf828A6Be8Feb9De0601c9DCb5A1ED4eCB ; < 9M1wEEHa8dMiWoRGQjwc34v8jHY5QXq844Z3l9q872nj914cd1bmaurQ0FCbGB5a > > // < CALLS 118,031019002951 ; quote ; 15,7747803335794 ; 15,4592847269078 ; 0,0204081632653061 ; 8,9 ; 14,552234857727 ; 16,9973258094318 ; 8,6 ; 3A2cA8ac7FFe1BF5a0682e1bbdAA0ffb5b9b3FcE4abCBe38eeDacDEfBABFDCe2 ; < 36V5Y09F215NOX4MjpG6xdU07uTCi9XS6zSb4ecGqSVd7YtLVobBwHTRixL8es8U > > // < CALLS 122,752259763069 ; quote ; 14,3330742666231 ; 14,0464127812907 ; 0,0204081632653061 ; 1,9 ; 13,2222610109598 ; 15,4438875222864 ; -0,2 ; e9AdCbeA91A7e286cb4E2dfcEDB234edFbCcB91Cb0FAfc1b6cbe3dBC89D1CD0e ; < ZNk6EM3t6WohLTGg2lOuiQih4qY7ZT69VsEbDP122tPJGk64wE40AeHN0e59L7B6 > > // < CALLS 127,473500523187 ; quote ; 13,0178433568744 ; 12,7574864897369 ; 0,0204081632653061 ; 5,4 ; 12,0089604967166 ; 14,0267262170321 ; -9,8 ; 2CFF2f8BCFaaC2C7dCE97aF8d2B2dbfBb1Ac99C8C6B7babcAccAbE6c2F69D7C3 ; < FnC875sMO6Fo3SvGb9268106g054M7R26QMMt92Q50KsNUUNc2nZ866f01xL4068 > > // < CALLS 132,194741283305 ; quote ; 11,8195513380887 ; 11,5831603113269 ; 0,0204081632653061 ; -6,9 ; 10,9035361093868 ; 12,7355665667906 ; 6 ; f6BD0f1aEFcb2D84BA48FEEBA5DcFEdC63B6a22ABCcEED15aae1a9496CC4Ef8f ; < a4lD9dn0mEDf2K7ZaOuojy5kkvS41G6DOY489FefMa52QGU295aB1AbDkLbDt8VX > > // < CALLS 136,915982043423 ; quote ; 10,729020132261 ; 10,5144397296158 ; 0,0204081632653061 ; 5,8 ; 9,89752107201076 ; 11,5605191925112 ; -9,6 ; Bc5990Bab8BFC1fcaaBcAccBda4ab0D8CEABfca76fe4aDfb4F1e3FBDcfFffeB5 ; < 5DQF4mto1awEWzhkxOZms73ImWRaOngm9wC326zwJy96piUB640hPwb1m71vDA6Q > > // < CALLS 141,637222803541 ; quote ; 9,73750498525262 ; 9,54275488554756 ; 0,0204081632653061 ; 7,8 ; 8,98284834889554 ; 10,4921616216097 ; -5 ; Ff58fbc5DebBBeCbedDdc5F4813CB24a5084dFeD6abEeEcc6bCBE14AD2e13dd4 ; < py5BU3oGxvxQYF6hH50wuZ52638yyD2z90oWezQd6XIILuk4IQ1v8v81Y9ZTezR2 > > // // < PUTS ; 2Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 47,2124076011805 ; quote ; 0,408665521929223 ; 0,400492211490638 ; 0,0204081632653061 ; 2 ; 0,376993943979708 ; 0,440337099878737 ; 1,5 ; 6d38ADeAcD7E8ec12bcEDa6FDc4E5fB6b5ECEC95CEaa8BECF1e6fdAb3f5fDa46 ; < n51wPNJ21AsW97BVXjY87T9s05i4Erpoc46sP03GQdSE3y46krAU3gY918B290v1 > > // < PUTS 51,9336483612985 ; quote ; 0,707302447659103 ; 0,693156398705921 ; 0,0204081632653061 ; 9,5 ; 0,652486507965523 ; 0,762118387352683 ; 9,8 ; aDE2fB4e80CDaCC8FfDdFB03faBE2FBe180A2a7b39DAbC45a428C3C1626DFD3B ; < 2w4vofy7ZKCg9W13vam2IVFtKE09w8hgy7ujtHa1K6F25YoCCSQRJGcD0R5RyipP > > // < PUTS 56,6548891214166 ; quote ; 1,13414943272281 ; 1,11146644406835 ; 0,0204081632653061 ; 1,3 ; 1,04625285168679 ; 1,22204601375883 ; -2,3 ; 31EaAbBECe5fDdAaEd4f2cC63effBEcD5EFd5Ec43e8abF41fBf3Ea9bd50Ed510 ; < oI96EkAqKfMPj7vzDyVAOWfETT748aPpf2XEB183c12b0zPwO5aYGLeyC18stgez > > // < PUTS 61,3761298815347 ; quote ; 1,71033949469589 ; 1,67613270480197 ; 0,0204081632653061 ; 9,5 ; 1,57778818385696 ; 1,84289080553482 ; 6,4 ; EAa90dA4beBcaBF09acc18ABCFaFd6C1d8dE05bdAE1f83FB76bDcDE9E8EE7Fef ; < PKU01jE6fQz7Ifi0sWKbZbrV8hSPHYAIh9x9Eg501Bd5cMA3j5Ul0BuV96r4ZzoN > > // < PUTS 66,0973706416527 ; quote ; 2,45322491430167 ; 2,40416041601564 ; 0,0204081632653061 ; 3,9 ; 2,26309998344329 ; 2,64334984516005 ; 5,8 ; 32Cf17a0B06bDc027bA96Ac4bfcAB2f929f9cAcDCCBA54A1E0DDE9afdd0fEd56 ; < 0hi53asTeUhOksnD9Jj1WSx2gvM4hNzqI55N42168TG8IjClA62PQ3G6QbTOdI8L > > // < PUTS 70,8186114017707 ; quote ; 3,37591281340272 ; 3,30839455713467 ; 0,0204081632653061 ; -9,9 ; 3,11427957036401 ; 3,63754605644143 ; -5,4 ; 46FD3d79bdeBEFfCEaddcBDfc4dCeB59BFE24BcDaf38b7CEefCeF1cBbbE6237c ; < 66ROA3oXxNjY9id77X5iZvpD893K7E99J64chxEGTv5F4bw3XrU06HyLY7l3uwys > > // < PUTS 75,5398521618888 ; quote ; 4,48722149753384 ; 4,39747706758316 ; 0,0204081632653061 ; -0,2 ; 4,13946183147497 ; 4,83498116359271 ; -9,3 ; 65C9FCd4dFadCfafbf8E6eDEeaBcBB1efb68Be6d44a8e5f4EdeFd6D2D4B0fDe8 ; < O6ZK9fdGtcpO08LoiSE4377X45yzOm5Q3qJLI344D3P75SQJBRD2rN9qIA3zf6D6 > > // < PUTS 80,2610929220068 ; quote ; 5,79193447541758 ; 5,67609578590923 ; 0,0204081632653061 ; 7,6 ; 5,34305955357271 ; 6,24080939726244 ; 8,2 ; AfCEa2B9ea6CfFBbcd9Fe6dc9BD2fC5dDEca3E7Bf76Ba2D35E358Cf0D86cB00C ; < 306j62mNpxYj532iR4i47i8Q54Zc51P9tKXz1o61KjOX023lu4BH8vYykKZ9VMUN > > // < PUTS 84,9823336821249 ; quote ; 7,29123965884816 ; 7,14541486567119 ; 0,0204081632653061 ; 7,2 ; 6,72616858528742 ; 7,85631073240889 ; -9,2 ; 62eEcAdF49f1bb6CC8bB48AfE7bEde5b7aC36FBC9aAFE7FBdDd2AEEB825fEBfB ; < d1lGh275r199Ob79z7lVt1DB767c8QYI98IG4tTQj21XfFhy0df9s3VMc5IiAMeo > > // < PUTS 89,7035744422429 ; quote ; 8,98326297721528 ; 8,80359771767097 ; 0,0204081632653061 ; 0,9 ; 8,28706009648109 ; 9,67946585794946 ; 7,9 ; ba40aF4D7bE526f1b93Ec164DCDB8ECA8C196E5EeA3dfBbF1adee581CAFc96bC ; < 129IK8T9Rj7M733YUQW4V81Py16AJW2L6pGXZjdqV0lD3M59ouh2Ezmi3VhsI9AK > > // < PUTS 94,424815202361 ; quote ; 10,8636295870841 ; 10,6463569953425 ; 0,0204081632653061 ; -2,2 ; 10,0216982940851 ; 11,7055608800832 ; 4,6 ; c85c73DaB5E8DBfACcE0Bd6DCa9509eD4EbffF2CdFeD9D8bebD8cdF5Fbe5e5cd ; < xaAH14T71b0JfZ5Jk295Z9SO4bg602gOMGSjmJncm5zvQ4pDA61Ynex0LzBl1K31 > > // < PUTS 99,146055962479 ; quote ; 12,9260074686881 ; 12,6674873193143 ; 0,0204081632653061 ; 6,7 ; 11,9242418898647 ; 13,9277730475114 ; 8,2 ; 8c74f5FEEceFfBF2C9AEBECEd454E45fbBfFDaFEDADB7a5bEFcDA94e7d20bc8F ; < eJunwMs130rjm2T65Jiq2mdpNDxI0E6krrWX6gHSij38YQuR6QR9vk3N7i081z7x > > // < PUTS 103,867296722597 ; quote ; 15,1626056894643 ; 14,859353575675 ; 0,0204081632653061 ; -9,9 ; 13,9875037485308 ; 16,3377076303978 ; -6,1 ; edDFdfeBa89A96D6CF1D2CfC5B8Bb8E2Fca1b3342CA4A6CFC28BAcbE0285FDD5 ; < QfUFy6rpVdl8mI0Ut9leqQiCYai75q5Zt2GtHez15CQz91d4MqiQOn89KD7L23Wq > > // < PUTS 108,588537482715 ; quote ; 17,5646127269451 ; 17,2133204724062 ; 0,0204081632653061 ; -6,7 ; 16,2033552406069 ; 18,9258702132834 ; -5,2 ; AfA25b8df6588DEbEC56B7d23EEF3EFFd1edd9CAa7F115412aCdEdfB7FdE88a3 ; < A7r2VRAC070M1sOo9yIFbmn41YGE2x3H1GQ9q0V7W0On5051ySNkT73k5K2Xu3wT > > // < PUTS 113,309778242833 ; quote ; 20,1225694613013 ; 19,7201180720753 ; 0,0204081632653061 ; 3,6 ; 18,5630703280505 ; 21,6820685945522 ; 3,7 ; BE2EDceDbAaD4fe3B952A1c2DBF2DFc576feC9Cc2F9Edf0fDc1abc42f7e56CE4 ; < 7ksl6Am4uZOJ2q9mT6qtqBeJXu8X1VK0AUAJG5hP8NfdAOO9qSCn36d5n9Tg2dH7 > > // < PUTS 118,031019002951 ; quote ; 22,8266775190311 ; 22,3701439686505 ; 0,0204081632653061 ; 9,3 ; 21,0576100113062 ; 24,595745026756 ; -9,6 ; 4c0DefD0BBa9faD84490bfEcef4f2B8dD93b8a4F4c4b530A8bEdb6DB32BcBDCF ; < 6MtvPUd0tJDtjQqT701svYy4fEJL5Y76H98Px1Zi1CgErKxC039W5EosRPhkQDL4 > > // < PUTS 122,752259763069 ; quote ; 25,6670473394929 ; 25,153706392703 ; 0,0204081632653061 ; 6,5 ; 23,6778511706822 ; 27,6562435083036 ; -5,8 ; Dea0c706eefB10F54bBdEDB072C4b80dBcCFFfae40cBA6dDE57ff8cFDf4e67fb ; < VMum6eDAqfQ5r6NaV0Cu8nBz90Dib28M46aFZR630212iws2jO9E84AZY8qDmQN0 > > // < PUTS 127,473500523187 ; quote ; 28,6338923171622 ; 28,0612144708189 ; 0,0204081632653061 ; 9,4 ; 26,4147656625821 ; 30,8530189717422 ; -2,4 ; 2aAa71D676aF2eD1FcCFC4DAbbbbe1adEd8cFd51BE153EF7f81cC75aeca38b0a ; < UkF6X6MD83gVX138fpth9quv070H2Y5Al07j1Y7nEj83X351kn8PdU6771p2Qhzm > > // < PUTS 132,194741283305 ; quote ; 31,7176761857946 ; 31,0833226620787 ; 0,0204081632653061 ; 7 ; 29,2595562813955 ; 34,1757960901936 ; 2,2 ; FcDA8c2CCAeaE5C1c0BF5A02fefBBa79dFEbDF0ba2FFAaeEaCdb2eCA13BA1Ef4 ; < Sp8i1U7eNaIu1tKYS9lf17l1bSfBsOfAqfh9h9b4A0EUmlRIM5D9FNMcdLb2uJGT > > // < PUTS 136,915982043423 ; quote ; 34,909220867385 ; 34,2110364500373 ; 0,0204081632653061 ; -7,7 ; 32,2037562501626 ; 37,6146854846073 ; -9,4 ; D02fBe9d871D2EC30faEDBad7fdEedd7423fBaDbBe1fbbcbd6DcfC10EDca8aCD ; < CKP8VKsf1wV25uKMA7SKzx8Gh5oC74FX0HiDiOZ285yUS8PYwPa02y57aP10S3PQ > > // < PUTS 141,637222803541 ; quote ; 38,1997816077946 ; 37,4357859756388 ; 0,0204081632653061 ; -2,1 ; 35,2392985331906 ; 41,1602646823987 ; -9 ; 9d89fcBf2Ad4EDab2bAf58AfbdFa7fEDa5a2d1F8dD7eb82cfBC6eec4369e3f92 ; < lf594g8s0H5NCh1Nf8se2Rq586z9ocw87TY774l5ib636wFOxg7qIa93C723BuuL > > // Futures_EurosibPower_Engineering // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 80,467707 ; 1,14 ; 69,5857078947368 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; E5C3FFbeEDBcAEc3afB9Ff7F0FC0b15ACD4af30FbBaBDcFD45Fb8eD45fe5c2Cb ; < T6skmd83RU84dIcA5Q55jV8lSB3rOSlLl7eGIGR86PfOQ1OfMmEtIzDny104E78w > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 80,4633818792096 ; 1,13993046 ; 69,5862196885323 ; 80,4631318792097 ; 80,4636318792096 ; 3 ; 5,7 ; 6,6 ; -9,9 ; -8,6 ; -3,2 ; -0,31 ; Future96AP19 ; dB5fDde8137EEEEC4c3CDbF5fc081b5E2CAFFbD7bDACD9cbfDb5dabdC0bacc75 ; < N6gNDT1aFNGUxAdPzR0ynb9Nsl86cy627hYcfQDo7A1RMLsSRCYdT7o060yP7B50 > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 81,3462394335325 ; 1,15380498577013 ; 69,5025896375686 ; 81,3459894335326 ; 81,3464894335325 ; 9,6 ; -1,1 ; -5,1 ; -3,7 ; -6,6 ; -9,7 ; -0,27 ; FutureJU1932 ; a3274Ffc64bcC95E8aAF8BDcfCdd4B8887eD6aBFb147caC6E88EBF4DDECAcaEf ; < cKiFW074oY6K9wSvg86o6W9zRG7OIuuO7b1gH5eSahatdCrbE14CPq5D8VOgJi94 > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 82,295704370818 ; 1,18200375723698 ; 68,6238940586703 ; 82,295454370818 ; 82,295954370818 ; -7,2 ; -3,9 ; 3,1 ; -1,2 ; 1,8 ; 6,9 ; -0,62 ; FutureAU1938 ; BF3a4cFaDD4fd67C5Dcf1AeaDE7d1cBaf6ADEDe0ffC6e18F3DF754a5B529FC3E ; < 4mR6b8p7VXQ69CV62TV208qgDfB5gg0JB0uYEaVxd3F5rEU1DKPp03B1o9Um89Pp > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 83,2297698616958 ; 1,2255216695491 ; 66,913748022357 ; 83,2295198616958 ; 83,2300198616958 ; 3,2 ; -5,3 ; -9,9 ; -9,6 ; -4,2 ; -2,3 ; -0,67 ; FutureOC1952 ; ceac67FB057D3FdF5fbb1FFbB4BbC4fCffC4e8eDFAFb7b36BE25eecd8bEe297E ; < L0pWAQddhU99FOBWgjmSBft16mV3F70688zUE0vAS10msD0RxsO345wzy7H8z47t > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 84,2418127736471 ; 1,28593494301587 ; 64,5101669265455 ; 84,2415627736471 ; 84,2420627736471 ; -8,6 ; -4,5 ; 0,7 ; 7,1 ; 0 ; 7 ; 0 ; FutureDE1990 ; ABE8fbFfCb4bAF7dEce33b55Cda18CFd9a6Bdf2F94CcbF9BcFf8646a289ef03b ; < D4O06o6T98bl67T59RG54utp5v8lz4dv23K3pI0d3LMY6o1Tc61mOwZ7u907lert > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 85,4174393131844 ; 1,36592565978539 ; 61,5344715514058 ; 85,4171893131844 ; 85,4176893131844 ; 5,7 ; -8,4 ; 0,2 ; 4,4 ; -1,6 ; -8,4 ; 0,88 ; FutureFE2084 ; 7bEfEe7cfb9d97fCbE26BffdFEDeeeD3fcDFB9d353AC9fceeB92C7e7fDcAF1da ; < 4xW6WC7x2KrZbw5id2Bx33zZ9vrdrJfaPl4m9kmmJWXt6Q3h3AW0yOzHsOSEY1X4 > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 86,498600704236 ; 1,46829905613498 ; 57,9107514186702 ; 86,498350704236 ; 86,498850704236 ; 3,8 ; 2,2 ; -9,1 ; 1,9 ; 3,6 ; -6,6 ; 0,3 ; FutureAP2094 ; eBEFDCDF5ddAAaB8E4ad5ceD868cD1A6BEAb43DCeF82Dc5FC111CAdcA0e1E083 ; < 1EQe9KzCmUQBS8aSH65TU5l863Ux2e787OipsjUnN84zXA973O8c9nUr6I6n88NW > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 87,6884455281873 ; 1,59757817393707 ; 53,8883597427274 ; 87,6881955281873 ; 87,6886955281873 ; -5,6 ; -2,4 ; -4,8 ; 1,2 ; -9,7 ; 4,5 ; 0,02 ; FutureJU2055 ; cBDdCdD6FD4eD2FA9D6fbd4D872FF0Fdcdddf2Bfc5f333D8f861DDE6AC5D12BC ; < CRZ9sGivY4EOR34M2W32cvl0B85CkWo75lYIR37SNcxM3mHRjXu1jL5CSKpBfca2 > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 88,99671737479 ; 1,75919843646909 ; 49,5893567944595 ; 88,99646737479 ; 88,99696737479 ; -6,8 ; -1,3 ; 0,5 ; -4,7 ; -0,8 ; -1,9 ; 0,78 ; FutureAU2087 ; F0acEEcFAAAcdFaEECEcfD5c960beDa19dADAFD0AEc0cb232eAe3cCac9CfC6C9 ; < W7jLLhh17v91Ld3YaxaAlPaa1V7KoPx6ZmOcsY6OW1eCs6eBw6L1C3M54Ggo0k1s > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 90,1915609257977 ; 1,96086893907608 ; 44,995710946543 ; 90,1913109257977 ; 90,1918109257977 ; 0,1 ; -0,5 ; 0,8 ; 0,9 ; 3,4 ; -7 ; 0,13 ; FutureOC2011 ; Dc9DaF2b4abaDf0F6A7d3DD8F39Ade4A350f477f1fE967Eeb1ba5AC0fFCffd43 ; < enrEk2S8903Kj16MIMYaYgv7hJP1GmVPA97kzR6WzP9EWwVOdMul57KI86W701Du > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 91,6572769146718 ; 2,21221623255843 ; 40,4323317791906 ; 91,6570269146718 ; 91,6575269146718 ; 1 ; -7 ; 3,6 ; -7,1 ; 9,9 ; 6,2 ; 0,88 ; FutureDE2092 ; c21A529C4EebCf2b25fEdd1dE4802EDeA7efA1Fd5cCeBDEF89a4ffABe62CEEBd ; < y5U37Mt1yq5dc5tP2e5p0fikV32v2ChFlLkZtNVzMquLvU8g7EL9JECi0TSImj1q > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 93,107199253132 ; 2,52580972054052 ; 35,8623172584858 ; 93,1069492531321 ; 93,1074492531321 ; 5 ; -0,7 ; 5 ; 2,3 ; 1,2 ; -4,7 ; -0,93 ; FutureFE2123 ; afaC6eFea1dEab11F80DDb94fdBeEeFEaEe296E149FCcD9c2fD9d91E1f14E00B ; < PyrJ967xNHs0dZ70sT77w2gU0UiAsmmHQlrP9e4K4qlLea7O9V8NR73PIwjv61pG > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 94,424815202361 ; 2,91912375860365 ; 31,3469722460581 ; 94,424565202361 ; 94,425065202361 ; 7,8 ; 9,1 ; 6,8 ; -2,4 ; 5,9 ; 4 ; -0,81 ; FutureAP2142 ; 4aA2C5dabCfdbFdFf4080FDBAefcB7dC03ecDdfe7E84D17dcc40fE0cA5aFe6Fb ; < BH63AA365Uc3yqFYZd43FDKbYS5FR8J7OhQL7875Xdm841Lw5PEZ1yqmFz46D2HZ > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 96,1326600819787 ; 3,41426712683511 ; 27,156162511833 ; 96,1324100819788 ; 96,1329100819787 ; 0,1 ; -9,2 ; -4,7 ; 3,9 ; 0,1 ; -9,5 ; -0,31 ; FutureJU2136 ; dB6a20bC0ffdbaC7e2A2fA94aa1eb96d8CDdb68c4FEfa3bfcdCfaBCbF1fb3E76 ; < vo7GLA6fx3D2TVBkHbOX07wcuh80BLl9pWFrWSaF8HI5wjN99at0935157Muxer7 > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 97,5701650582074 ; 4,04164221874421 ; 23,1412177964936 ; 97,5699150582074 ; 97,5704150582074 ; 2 ; 5,5 ; 5,1 ; 9,3 ; 2,5 ; -7,3 ; 0,6 ; FutureAU2162 ; 59cECBCcD13BbFEc9856dDf4DbBa58FebEAB9D4dDA32EfcadE6fD3d06Db35Cbc ; < qVIQ5zm5eU1UGn3cb6CW3A0v8NLXkt2HTFu1tR6BsrsynV898HpKR4VtUe1Mp2QW > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 99,4263596679447 ; 4,84265327712496 ; 19,531381038077 ; 99,4261096679447 ; 99,4266096679447 ; -6,1 ; -3,6 ; -5,9 ; -3,2 ; 7,6 ; 4,5 ; 0,48 ; FutureOC2178 ; BdeAB2af0afE10d2bAdc7Bf984BBf7Eb8aF1DfaAAd9aDc506CCcc407420351D5 ; < w3Nlvgw59A85vz2tB61BL4lp1jV3A7Wr5mRMCzXOWMV4RMUS829LCd9vhf977741 > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 101,020451602344 ; 5,87285539592585 ; 16,2012496123137 ; 101,020201602344 ; 101,020701602344 ; -7 ; -1,3 ; 5 ; -2,2 ; 4 ; -1,5 ; -0,38 ; FutureDE2123 ; 2d9EB3EBD4FcaE7CDcF5BcCDF4cffb54ECA39e840A9Ba36979fe1f20bDCEe4Ec ; < 36o64fM71awOM3rJMUT6XB24vBkK5985AK55OTgj0510rTZMghjR5fLTE7zFT7fP > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 102,73184745168 ; 7,20841202473178 ; 13,2516614060367 ; 102,73159745168 ; 102,73209745168 ; -5,7 ; -3,4 ; -9,1 ; 8,4 ; 5,6 ; 9,9 ; -0,35 ; FutureFE2289 ; 0c277cFd3c061df8EEf465Af1Ae7f24da8Fed1aBF9bEcabd1f0Fc8d68c8ce2Ea ; < 5En744687iU0xniBV3y98L1S75P8msDk1TtER9tlqeqLPy9326UAWo53vDyGhAyK > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 104,687398465502 ; 8,9545768525513 ; 10,6909375160117 ; 104,687148465502 ; 104,687648465502 ; -2,5 ; 0,5 ; 0,2 ; 4,2 ; 1,2 ; 2,3 ; -0,23 ; FutureAP2224 ; 8DAa5beEcBECecFEFFd127b655EbfE9FE2A0cd5ccA8B5bb4aa662eC44deBcCEB ; < jcd5osF3Pd536W54Xm2s6ZF2tOWKtm360UV5Cq6C63D4FGD4iDQiOTf3z80jbq29 > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 106,404921573641 ; 11,259900765733 ; 8,44989869692815 ; 106,404671573641 ; 106,405171573641 ; -2,7 ; 3,2 ; -3,5 ; -0,6 ; -8,5 ; -5,6 ; 0,33 ; FutureJU2239 ; fedAddfeDe7dcA69fEeADdFe73fAfCCfBaE76BEaDB3d45bA239F6Fffa2cfe2C6 ; < hnHE16fDYj0qE34MXWWv3UCo6ws3E2F8wzt1CtgVZDpOS3enadr8S5nCv2aqdVRN > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 108,562671947789 ; 14,3299541381601 ; 6,57592598699884 ; 108,562421947789 ; 108,562921947789 ; -5,8 ; 3,2 ; 0,5 ; 1,1 ; 5,8 ; -1,8 ; -0,52 ; FutureAU2240 ; Bb6df50B0F7E6acBE6d7CBCA4FeC9DAEDcAe5d6eF8CFabEF5DE93dFfae0B0Bb7 ; < 78FV6B9DN3YH2oatEcRJe49wEwtALYMM9z8ia50He6tyoatg6JkwaV6q60ER2ZZ1 > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 110,914151844365 ; 18,4582822989029 ; 5,0089097158817 ; 110,913901844365 ; 110,914401844365 ; 3,8 ; 3,3 ; 3,6 ; -2,4 ; 5,1 ; 8,7 ; 0,64 ; FutureOC2273 ; ECfC4f7ae6b2529Fbd6fF60acAaE1B3Ece3cE422BCddbad5025A1ddcfBfF0BB3 ; < mbNiRG3e3VsS1G8IchSzui7N6Kiy075iC7U8Ra3amyzA497tA3Z689lf8V0Y7dt8 > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 113,051941169835 ; 24,0621076388776 ; 3,69833910090133 ; 113,051691169835 ; 113,052191169835 ; 4,8 ; 3,9 ; -8,9 ; 5,4 ; 9,7 ; 6,2 ; 0,72 ; FutureDE2235 ; Fc1fEbCFd9CC2EC7c98F3DA81cfD7a0DfaCb9dd2EDA8a3Afb3c5C6AB4eCBeE31 ; < K35xwfCnE8cWvPd7PIv7dCg3bc8tmj1m26PM6fmIr4bXolCkW65K4yNN9U3kWn0L > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 115,405995687366 ; 31,7509559163143 ; 2,63472507698794 ; 115,405745687366 ; 115,406245687366 ; 7,9 ; -4,1 ; 1,7 ; -6,3 ; 7,2 ; -5,2 ; -0,79 ; FutureFE2340 ; Ee12b4c514AC936a2cdB2eA26aFadEcbfafcFEBE2A8E9EbCFe9ccFffeCF3aBAE ; < Rr6A4j5V53WyTl1opn7qZpE9Bj1Qs9103Eg9vvozL0f8i82pR6v8Tnof7FAgxKg8 > > // < CALLS ; 3Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 52,3436992327508 ; quote ; 61,5308193640129 ; 60,3002029767326 ; 0,0204081632653061 ; 6,1 ; 56,6083538148919 ; 66,4532849131339 ; -6,9 ; BcCACFAECe0bCdfb7a8AF5FBFE8Bde2Cd2bBA9Cbf2AbE5b2a29CA4042A0BEAdE ; < 8sa35fI70F5ys9ftsA30745zOAa6o1CGqn3l4V5zAAzW8fxswa3oF91aB85MfL10 > > // < CALLS 57,5780691560259 ; quote ; 58,045248210132 ; 56,8843432459294 ; 0,0204081632653061 ; 1,4 ; 53,4016283533215 ; 62,6888680669426 ; 8,8 ; CcD9DdfdCd56416E86bDdfA2Ab72fDeB4d32DfFf01eAd582E5CeA6d3Da2ccaED ; < Q2jOacWe9f09XVxmbiUS7M3gaDy4Pc2LN4Ku3r8tLP6prpXP2qRPeBHZ4r4HtIGe > > // < CALLS 62,812439079301 ; quote ; 54,6875870286012 ; 53,5938352880292 ; 0,0204081632653061 ; -4,3 ; 50,3125800663131 ; 59,0625939908893 ; -4,2 ; D60AA2acffFCEbe26FE3fF28eCFaaEF48CFd8d3fEBfcBbc1c4D0C7Ad3FBc437d ; < F4ciP3Zx9RoiDDO9DMN0m5S7a52pZaGN7V1Wb8f3f3a62RTl41zKWeC673gh44M8 > > // < CALLS 68,0468090025761 ; quote ; 51,4669757423064 ; 50,4376362274603 ; 0,0204081632653061 ; -0,9 ; 47,3496176829219 ; 55,5843338016909 ; 0,3 ; 5Ef8e94BcaE0BeEfaE444d4183FDD20f3C31DFba8Ecdb66CA4eedaB02BB6aCdd ; < tzJWBB9uN2ddKDRDKG70O2ws9KWlyaza2QArmFY8ZS5W16l6vLX95DO3r6K9393Y > > // < CALLS 73,2811789258512 ; quote ; 48,3896143750377 ; 47,4218220875369 ; 0,0204081632653061 ; 4,7 ; 44,5184452250347 ; 52,2607835250407 ; -0,6 ; 6D4952aacEBCBCFFeC8281bf7BA5dA6E9B29eA9efA40bef7B0121Da1F7c8F3Ae ; < 5YT0y27XNwA8JONh21y6zVNk8604Z8l871WFGdD824hhj1MfQVpyxFI12gzn42gW > > // < CALLS 78,5155488491263 ; quote ; 45,4590564027714 ; 44,5498752747159 ; 0,0204081632653061 ; -9,1 ; 41,8223318905496 ; 49,0957809149931 ; 5,6 ; 66FD4BcE7c5fbDFa0df8b986b79c475AEABBbd06aF0D3ebdEF4aCF4AcDae74ba ; < WZ9A9ttyaJD3Me40qg0Ep8f8hD570hwJiIj69M6z2AqZ7fK6e93RGDO5FVU8091X > > // < CALLS 83,7499187724013 ; quote ; 42,6765659694769 ; 41,8230346500873 ; 0,0204081632653061 ; -9 ; 39,2624406919187 ; 46,090691247035 ; 9,6 ; 2C0dDc3DaacEa1DDf94DBdE4dA98DAdBcF4e9Bb1ee9aADBEca66a071DFDcAdf7 ; < 8yRPQv9nQoZlPWubI29Vaj42dsI6GcLlTQb93sHk2jU1WK5LU85ITwWu8D7uLLMf > > // < CALLS 88,9842886956764 ; quote ; 40,0414910307221 ; 39,2406612101077 ; 0,0204081632653061 ; -5 ; 36,8381717482643 ; 43,2448103131799 ; -2,8 ; aDCecCbC35BB9Deb2DE6D15306Adc2b9CcebFDF1ab6B02654dAc964aDAcb6BcB ; < 56108kOdP62LMGOB2b6DaZG528chuA937r60GmQs7D4A5tsQSXG8HdzJUXlsZs54 > > // < CALLS 94,2186586189515 ; quote ; 37,5516227399988 ; 36,8005902851988 ; 0,0204081632653061 ; -7,7 ; 34,5474929207989 ; 40,5557525591987 ; -7,2 ; aECdb3dAaEDDAb5a14BF3D8605bDd6aa94CE0DdeD39fa4DBb7dE64Bea2fFfBDF ; < rn87YwV625Q9mz0Fv7MOvc4VxptKc87JP2WE58by16oswEZHHd7I47d12FUCZeQ3 > > // < CALLS 99,4530285422266 ; quote ; 35,2035243902198 ; 34,4994539024154 ; 0,0204081632653061 ; -6,9 ; 32,3872424390022 ; 38,0198063414374 ; -1,3 ; Aa4Fe7a33c9AFe2ECD7cdE35F3deaDcbfF6ACa55B4a5F4F4B280eD1E2bAfAFfd ; < vynE42E6RC3v1F1d8tDCMQF3FaSR2Psz2CmZ7hn6B5P163ha3A7Ow55jO3Ua23tM > > // < CALLS 104,687398465502 ; quote ; 32,9928219942121 ; 32,3329655543278 ; 0,0204081632653061 ; -2,4 ; 30,3533962346751 ; 35,6322477537491 ; 9,3 ; FaBCDCb745a6cdBaaCc466178dbcC6cB0F11DAbbb20692e5FC8de3255d87E2be ; < 969aPYK8d1uyn8f34T709NPj032U0Z0o1jlO4287d1a73cX4W0bblX6d9Vc11EN6 > > // < CALLS 109,921768388777 ; quote ; 30,9144542159824 ; 30,2961651316627 ; 0,0204081632653061 ; -7,8 ; 28,4412978787038 ; 33,387610553261 ; -8,4 ; Bfa6EF9f95FE4CF95BeC9CaCdAD9d9cecbCa54fdC2a56a0ada261ddcfE8Dba8a ; < OKzuytuqm17s96q4Aocw6OKq6Cb5YbAv46AZDE8U1LVnA6v2ZzipQOkKq6DU6GSc > > // < CALLS 115,156138312052 ; quote ; 28,9628827714671 ; 28,3836251160378 ; 0,0204081632653061 ; 5,2 ; 26,6458521497498 ; 31,2799133931845 ; -7,4 ; f2EC1aFeeAfeF35aAe93B0c741f22e2c8FefAa9dBDeFac6deea6d34B3800fcA5 ; < 5eXrzp5HHdghFKjj0OE5vQy2wamJdM0ln74R4fWB20Bd81EP20prjo78pf8jyco1 > > // < CALLS 120,390508235327 ; quote ; 27,1322663162922 ; 26,5896209899663 ; 0,0204081632653061 ; -6,9 ; 24,9616850109888 ; 29,3028476215956 ; 7,2 ; 4dA9e2dfBFf61BF224c4eb9ccB9efa163ebDbDfCB0CfBd6AbF2Aa5A6eeA04Ebc ; < 1LXnZ61r6gxaePb4655u427on5047864Ar66txSqvB3Xi8XF49d50JjEA6iDonms > > // < CALLS 125,624878158602 ; quote ; 25,4166017493327 ; 24,908269714346 ; 0,0204081632653061 ; -6,4 ; 23,3832736093861 ; 27,4499298892793 ; -4,2 ; aF6CeC2dBCC37AD4B9188c9EeA52EBde0adecae7FAE1c8e1D9Fdcf0bAbFC53Aa ; < gAUWG1G2L2R0S4e2F3tUL7b2B708J2TKrJ31u1O0Ahyf4I0cVxDw088Su9K5G61R > > // < CALLS 130,859248081877 ; quote ; 23,8098371502222 ; 23,3336404072177 ; 0,0204081632653061 ; 0,6 ; 21,9050501782044 ; 25,7146241222399 ; -0,2 ; dDbB1fCf2DdcBFCfDD09FC5aeADEE8adfdBffBeba57eF698DDEF6cf2fA7cDd9b ; < Yi8XDZ2RoQr009pmNph8Wj17fhWEiQJKExYRKAvSB8KEE8H70pfOxlTS82Nyy6ad > > // < CALLS 136,093618005152 ; quote ; 22,3059604855859 ; 21,8598412758741 ; 0,0204081632653061 ; 8,3 ; 20,521483646739 ; 24,0904373244327 ; -4,2 ; bdd8FAfeF4da7bfeDF0aE4D8caD14fE1A6DcfA8De61CeD3c02e6aecD5FC2eBfe ; < mru2fPm9YppwnFsu73o5iH6WBNBrsLRz36NbGr95dI9mRUcL93bqZmp7YWGDQt3K > > // < CALLS 141,327987928427 ; quote ; 20,8990679279314 ; 20,4810865693728 ; 0,0204081632653061 ; -6,2 ; 19,2271424936969 ; 22,570993362166 ; 5,5 ; 7A3c92ccBdD9DECDafbfa63Ad3Ed73dA2a821CD6B2EddbfFd2AAEE3DCDBAE85F ; < n9vy4177l6jUNIn32f9o3V044RXUt5y5PqK5G7YIrVZ7S22tkhgJwf8J2i13r85h > > // < CALLS 146,562357851702 ; quote ; 19,583415239393 ; 19,1917469346052 ; 0,0204081632653061 ; -1,5 ; 18,0167420202416 ; 21,1500884585445 ; 9,8 ; 76fF3be41c072EA20D35AFD00EcaB8C14c5f90dBfEfDdDb6A5C58FEb24CC0ED7 ; < 6f7nLxW034GZ5B13o1ktU06SBk6l8FMDI7kxmm69k3Z1ISQvCIXFxf9rcUgzfQPf > > // < CALLS 151,796727774977 ; quote ; 18,3534552464126 ; 17,9863861414844 ; 0,0204081632653061 ; -2,6 ; 16,8851788266996 ; 19,8217316661256 ; 9,6 ; FdF6eBad9Bee9eCdca6bb72Ebf5bC8dCBe8DfEcF03EA7fec0d3a3Edc7731B8cb ; < tQz14c5l8K0Ks8zU8mt46b8t9K6DwF40Ocmsuev0Uv4UBJA780Ri5Lt26Ru79m8d > > // < CALLS 157,031097698253 ; quote ; 17,2038640106649 ; 16,8597867304516 ; 0,0204081632653061 ; 3,8 ; 15,8275548898117 ; 18,5801731315181 ; -5,4 ; caeF1fDDA8f9f4BDb09acBFF0F5EdeeAB1C9Ce36bcF7AA112CB5F8BaEFa9FBc1 ; < op0589p08mPRl8n5hET5jbDryl9ZK3RDX6Y5bc4hyyjWgyzO8ED7AKI6QP42VJ4g > > // // < PUTS ; 3Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 52,3436992327508 ; quote ; 0,862212417340544 ; 0,844968168993733 ; 0,0204081632653061 ; 7,1 ; 0,7932354239533 ; 0,931189410727787 ; -9,7 ; bEaCCA39DcFdDA3Ddb9AA8D9F0DfbA33E3Dda2d341cE0Ca0aaD09aBA2FAaDA28 ; < SVfh8PGgRw57p230EQWn8bkkyZ6eVOn4ZnD9M8T3naVAK01hC1w95x67V53X2wEa > > // < PUTS 57,5780691560259 ; quote ; 1,30978056879249 ; 1,28358495741664 ; 0,0204081632653061 ; -7,2 ; 1,20499812328909 ; 1,41456301429589 ; -6,7 ; 81bff8E9Ce4CCfBe987d8BFb116759CbABfb0b429DDbFaA7Af9Be6Bbf77DE9E5 ; < xS814O23SSe7u15741Ew827KG4pv19L8dOX894uUlHs7Jj4to0nSp94PmMHC4yy5 > > // < PUTS 62,812439079301 ; quote ; 1,88525869259442 ; 1,84755351874253 ; 0,0204081632653061 ; 1,1 ; 1,73443799718687 ; 2,03607938800197 ; -1,1 ; d8F18b3f3bc11a6FAcf6DadFAA0a1EEC0Ea3cE73bE063d0F69dDe9BECBF16Ffe ; < Jw8a08D53OaTig5s9MJKKt2s3c01jBnK0Re93d1v33eq0VE5X5FD47fCXcUOGcRJ > > // < PUTS 68,0468090025761 ; quote ; 2,59778671163234 ; 2,54583097739969 ; 0,0204081632653061 ; 8,1 ; 2,38996377470175 ; 2,80560964856293 ; 4,7 ; 8ac11CA6e0AC4CADaCa6dbB0d78be3770f2eaafd2efaDd5FD9A6AdbB850Ccf30 ; < Z271W2Nq7m82vjX7j6tWVQnLe0322EEC5w465AU0d287Lq0cva2lT3u051w28hm8 > > // < PUTS 73,2811789258512 ; quote ; 3,4535646496964 ; 3,38449335670247 ; 0,0204081632653061 ; 3,6 ; 3,17727947772069 ; 3,72984982167212 ; -1,5 ; BB3fBCcb8dfB5252ECC7EFB2daBAE187afFCDAA2ac9cD8FA3ecffedD1C5f39DF ; < 26MNMdCmv1T1JXIS7GP27H183A29lnN2cumVZQBt4Sam873S3wS81DNu69j596No > > // < PUTS 78,5155488491263 ; quote ; 4,45614598276285 ; 4,36702306310759 ; 0,0204081632653061 ; -9,7 ; 4,09965430414182 ; 4,81263766138388 ; -0,5 ; fE83Adf6abC2ccCEB15Adc0CBA56Feacbc48ca5DdFaCA6DAe2FcEaBDdFCddC8B ; < 9HTw718v95CL3GafsRku6vPeDC6YcJ0GyUvD2N6ydrBmPP4wzAr1CmaWz8cIDf99 > > // < PUTS 83,7499187724013 ; quote ; 5,60679485480114 ; 5,49465895770511 ; 0,0204081632653061 ; -5,7 ; 5,15825126641705 ; 6,05533844318523 ; -9,3 ; DCD6C5aACAe3Cc76FBDF183aAFCC4B5fFFac8cf728faaA95ED63D26fffFf61F5 ; < n8y0gvtBt8s2LpiS3MJ3DVR1x7jZxt3iBTWFbdd4CBlmvg71gh9I11a5xg7gZ6Lr > > // < PUTS 88,9842886956764 ; quote ; 6,90485922137916 ; 6,76676203695157 ; 0,0204081632653061 ; -4,8 ; 6,35247048366882 ; 7,45724795908949 ; 5,8 ; 1becc2ccAB6bEb41CBdaB2f28DbdEc98eFCdb7FF19aABF2960De3E26aBe5cdea ; < Dcz9kj1SCi1D2STMzx0wzux9eH365zWtJecV1u5dq4XPlPmbhaXo29389E9xJoRO > > // < PUTS 94,2186586189515 ; quote ; 8,34813023598858 ; 8,18116763126881 ; 0,0204081632653061 ; 4,5 ; 7,68027981710949 ; 9,01598065486767 ; -5,4 ; fd84Fb070deb135dB3EBA0eD9DD3da1de5CeaCdABCDCDBc7a884FF656af21bfF ; < 99VY3pv14L7fA0CJs7LhOVb3dg9mU6ElODD3qVtUjH3sOgPYw9wWo57xe3f924GI > > // < PUTS 99,4530285422266 ; quote ; 9,93317119154237 ; 9,73450776771152 ; 0,0204081632653061 ; 9,9 ; 9,13851749621898 ; 10,7278248868658 ; -7,8 ; eBD83Ee4dcEe7d52b2CFd6DBde7aBeaaFddCbb5C66cEdFDfCDDEAfFFF4FAa53b ; < AB5V21Y23u75BLf5085h24IFI4x31G601CMQ20h4fyL532pHNwJfRIh3YdKPKrPg > > // < PUTS 104,687398465502 ; quote ; 11,6556081008674 ; 11,4224959388501 ; 0,0204081632653061 ; 0,6 ; 10,723159452798 ; 12,5880567489368 ; -5,2 ; ac7adbFe5EB2fc2255a8Ed08EAdE2eA1A9D7a044e5ac7F34A4f9eD1fC2DAB0cf ; < X321mboeaQ8a83f83147u4xEwBvWfXAQFfZ2Wpq3vH97D99W6jQRdVcjr9612TnI > > // < PUTS 109,921768388777 ; quote ; 13,5103796279705 ; 13,2401720354111 ; 0,0204081632653061 ; 9,2 ; 12,4295492577329 ; 14,5912099982081 ; 5,3 ; FCeEE5D2DEFF9FcbeD910bb5AdBBBf1e8088DcddCeEAA62C0cCAe3df9872ce4a ; < 3cq123Crs4R6ccgG38rjwiZ3xO9ZxrvdY1VcAN7Zc3ptjC0HHEe9G5Zl4Nl6ouDu > > // < PUTS 115,156138312052 ; quote ; 15,491947488788 ; 15,1821085390123 ; 0,0204081632653061 ; 7,2 ; 14,252591689685 ; 16,7313032878911 ; 4,3 ; BCff0fBD2Bccc8b9B9FCAeDd4aabaFeFE8D8c953ABA55Bd0bCacad6edEe1FDbF ; < 0aIRKmLTBw48OP593l78naZdQ72tA33n1ARp2WuRRiaSY5U66O0sVmP4k2hYS57r > > // < PUTS 120,390508235327 ; quote ; 17,5944703389458 ; 17,2425809321669 ; 0,0204081632653061 ; -3,9 ; 16,1869127118302 ; 19,0020279660615 ; -8,3 ; B292BbeB4bfbed7DbCf208Dd2c82DB7C0D3A0AdDD4C4AffA3fffc525Bb4dB8Ed ; < ksJSV3de5QQ27R248ekO66JX1ZxWoLP36b86Bem3YRW8bOCsP39AmeX5dAt5C0j2 > > // < PUTS 125,624878158602 ; quote ; 19,8119450773191 ; 19,4157061757727 ; 0,0204081632653061 ; -3 ; 18,2269894711336 ; 21,3969006835046 ; -3,2 ; Ed9abcCe48Dbd2F9AEbedee0fDbA59aFBaAFfAEd41e8EFDbdEE6efD1Dd8804c5 ; < P10fM51K7ds7DaY3pC9t2w5rgwEIgwJ597Uj4GqaP8X8hhf22KIJ4I1zRQ24FsqT > > // < PUTS 130,859248081877 ; quote ; 22,1383197835413 ; 21,6955533878705 ; 0,0204081632653061 ; 1,8 ; 20,367254200858 ; 23,9093853662246 ; 9,1 ; dBD0cbdaF6Fe8e1DB8ebEA1a0EECccFe385dFdEEEAc9D1ebBEC5Ee62cfe9ddEc ; < L3654aYJx48I64x2n64N6sLIzxx9M5u6gnx25a3mLP1cXtttU97Tnnlw4R6GedV2 > > // < PUTS 136,093618005152 ; quote ; 24,5675824242378 ; 24,076230775753 ; 0,0204081632653061 ; 1,8 ; 22,6021758302988 ; 26,5329890181768 ; -7,2 ; bB7CABdecf17cd3d7ddAdac7a49AeA213Cc0Da9cffe5F2A321FeCea546eB3ACE ; < 0o467r7o9415EQaZ6ipDT677KXMU2ALvGfRusoNW8fnG2zyNi5J9w5X72Ko9jTOf > > // < PUTS 141,327987928427 ; quote ; 27,0938291719162 ; 26,5519525884778 ; 0,0204081632653061 ; -1,1 ; 24,9263228381629 ; 29,2613355056694 ; -0,2 ; 25A8cdA7FD0211be3A90Fe4BCCFA9E4AAFabED2e00fd94BCecCfA029B7dEB417 ; < SI8QYk5JnLLHh3CsCB0dat8ADuGHnQu1nDOH6n7jbo3j1lYXJUS5Z5g4y16EWwPC > > // < PUTS 146,562357851702 ; quote ; 29,7113157887105 ; 29,1170894729363 ; 0,0204081632653061 ; 6,5 ; 27,3344105256137 ; 32,0882210518074 ; -4,9 ; 7CEc9c6F7DFCCd65c60Cd1b4E66c30Fba4f8c17BDc52983b8fEeCfBf1a6AEeFb ; < 797lqIb0RWVrp0BjA6qxM3R7716em1x599qlRkA4D4a7714Hx1zPyKJbut5tbCkI > > // < PUTS 151,796727774977 ; quote ; 32,4144951010629 ; 31,7662051990416 ; 0,0204081632653061 ; -3,8 ; 29,8213354929778 ; 35,0076547091479 ; -5 ; EBF0bCb327FcC1b5eD5E8caf0b98D5aFaF55bC22cBc3Cdf2fcF6AEFd83AacEF0 ; < Pv2K1ivuQtS5d7P5v7r092XZvJKrFbOWDX64Sa39QIyvCeCXzgpoUT9xrVsB4bU3 > > // < PUTS 157,031097698253 ; quote ; 35,1980431706479 ; 34,4940823072349 ; 0,0204081632653061 ; 4,4 ; 32,3821997169961 ; 38,0138866242997 ; 2,5 ; FAbBdeEDdec4fEdFCAe5b97DaEfEEEcC52BaFE80ed015BefceE1f1EEcB0aa516 ; < BL3wgisEi9k0uqVqJ6l954aLfplryl0R7hOdfAFoA0L9f5WD9jC1Qp4cTt0rVza9 > > // Futures_EurosibPower_Engineering // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 80,467707 ; 1,14 ; 69,5857078947368 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; E5C3FFbeEDBcAEc3afB9Ff7F0FC0b15ACD4af30FbBaBDcFD45Fb8eD45fe5c2Cb ; < T6skmd83RU84dIcA5Q55jV8lSB3rOSlLl7eGIGR86PfOQ1OfMmEtIzDny104E78w > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 80,4633818792096 ; 1,13993046 ; 69,5862196885323 ; 80,4631318792097 ; 80,4636318792096 ; 3 ; 5,7 ; 6,6 ; -9,9 ; -8,6 ; -3,2 ; -0,31 ; Future96AP19 ; dB5fDde8137EEEEC4c3CDbF5fc081b5E2CAFFbD7bDACD9cbfDb5dabdC0bacc75 ; < N6gNDT1aFNGUxAdPzR0ynb9Nsl86cy627hYcfQDo7A1RMLsSRCYdT7o060yP7B50 > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 81,3462394335325 ; 1,15380498577013 ; 69,5025896375686 ; 81,3459894335326 ; 81,3464894335325 ; 9,6 ; -1,1 ; -5,1 ; -3,7 ; -6,6 ; -9,7 ; -0,27 ; FutureJU1932 ; a3274Ffc64bcC95E8aAF8BDcfCdd4B8887eD6aBFb147caC6E88EBF4DDECAcaEf ; < cKiFW074oY6K9wSvg86o6W9zRG7OIuuO7b1gH5eSahatdCrbE14CPq5D8VOgJi94 > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 82,295704370818 ; 1,18200375723698 ; 68,6238940586703 ; 82,295454370818 ; 82,295954370818 ; -7,2 ; -3,9 ; 3,1 ; -1,2 ; 1,8 ; 6,9 ; -0,62 ; FutureAU1938 ; BF3a4cFaDD4fd67C5Dcf1AeaDE7d1cBaf6ADEDe0ffC6e18F3DF754a5B529FC3E ; < 4mR6b8p7VXQ69CV62TV208qgDfB5gg0JB0uYEaVxd3F5rEU1DKPp03B1o9Um89Pp > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 83,2297698616958 ; 1,2255216695491 ; 66,913748022357 ; 83,2295198616958 ; 83,2300198616958 ; 3,2 ; -5,3 ; -9,9 ; -9,6 ; -4,2 ; -2,3 ; -0,67 ; FutureOC1952 ; ceac67FB057D3FdF5fbb1FFbB4BbC4fCffC4e8eDFAFb7b36BE25eecd8bEe297E ; < L0pWAQddhU99FOBWgjmSBft16mV3F70688zUE0vAS10msD0RxsO345wzy7H8z47t > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 84,2418127736471 ; 1,28593494301587 ; 64,5101669265455 ; 84,2415627736471 ; 84,2420627736471 ; -8,6 ; -4,5 ; 0,7 ; 7,1 ; 0 ; 7 ; 0 ; FutureDE1990 ; ABE8fbFfCb4bAF7dEce33b55Cda18CFd9a6Bdf2F94CcbF9BcFf8646a289ef03b ; < D4O06o6T98bl67T59RG54utp5v8lz4dv23K3pI0d3LMY6o1Tc61mOwZ7u907lert > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 85,4174393131844 ; 1,36592565978539 ; 61,5344715514058 ; 85,4171893131844 ; 85,4176893131844 ; 5,7 ; -8,4 ; 0,2 ; 4,4 ; -1,6 ; -8,4 ; 0,88 ; FutureFE2084 ; 7bEfEe7cfb9d97fCbE26BffdFEDeeeD3fcDFB9d353AC9fceeB92C7e7fDcAF1da ; < 4xW6WC7x2KrZbw5id2Bx33zZ9vrdrJfaPl4m9kmmJWXt6Q3h3AW0yOzHsOSEY1X4 > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 86,498600704236 ; 1,46829905613498 ; 57,9107514186702 ; 86,498350704236 ; 86,498850704236 ; 3,8 ; 2,2 ; -9,1 ; 1,9 ; 3,6 ; -6,6 ; 0,3 ; FutureAP2094 ; eBEFDCDF5ddAAaB8E4ad5ceD868cD1A6BEAb43DCeF82Dc5FC111CAdcA0e1E083 ; < 1EQe9KzCmUQBS8aSH65TU5l863Ux2e787OipsjUnN84zXA973O8c9nUr6I6n88NW > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 87,6884455281873 ; 1,59757817393707 ; 53,8883597427274 ; 87,6881955281873 ; 87,6886955281873 ; -5,6 ; -2,4 ; -4,8 ; 1,2 ; -9,7 ; 4,5 ; 0,02 ; FutureJU2055 ; cBDdCdD6FD4eD2FA9D6fbd4D872FF0Fdcdddf2Bfc5f333D8f861DDE6AC5D12BC ; < CRZ9sGivY4EOR34M2W32cvl0B85CkWo75lYIR37SNcxM3mHRjXu1jL5CSKpBfca2 > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 88,99671737479 ; 1,75919843646909 ; 49,5893567944595 ; 88,99646737479 ; 88,99696737479 ; -6,8 ; -1,3 ; 0,5 ; -4,7 ; -0,8 ; -1,9 ; 0,78 ; FutureAU2087 ; F0acEEcFAAAcdFaEECEcfD5c960beDa19dADAFD0AEc0cb232eAe3cCac9CfC6C9 ; < W7jLLhh17v91Ld3YaxaAlPaa1V7KoPx6ZmOcsY6OW1eCs6eBw6L1C3M54Ggo0k1s > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 90,1915609257977 ; 1,96086893907608 ; 44,995710946543 ; 90,1913109257977 ; 90,1918109257977 ; 0,1 ; -0,5 ; 0,8 ; 0,9 ; 3,4 ; -7 ; 0,13 ; FutureOC2011 ; Dc9DaF2b4abaDf0F6A7d3DD8F39Ade4A350f477f1fE967Eeb1ba5AC0fFCffd43 ; < enrEk2S8903Kj16MIMYaYgv7hJP1GmVPA97kzR6WzP9EWwVOdMul57KI86W701Du > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 91,6572769146718 ; 2,21221623255843 ; 40,4323317791906 ; 91,6570269146718 ; 91,6575269146718 ; 1 ; -7 ; 3,6 ; -7,1 ; 9,9 ; 6,2 ; 0,88 ; FutureDE2092 ; c21A529C4EebCf2b25fEdd1dE4802EDeA7efA1Fd5cCeBDEF89a4ffABe62CEEBd ; < y5U37Mt1yq5dc5tP2e5p0fikV32v2ChFlLkZtNVzMquLvU8g7EL9JECi0TSImj1q > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 93,107199253132 ; 2,52580972054052 ; 35,8623172584858 ; 93,1069492531321 ; 93,1074492531321 ; 5 ; -0,7 ; 5 ; 2,3 ; 1,2 ; -4,7 ; -0,93 ; FutureFE2123 ; afaC6eFea1dEab11F80DDb94fdBeEeFEaEe296E149FCcD9c2fD9d91E1f14E00B ; < PyrJ967xNHs0dZ70sT77w2gU0UiAsmmHQlrP9e4K4qlLea7O9V8NR73PIwjv61pG > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 94,424815202361 ; 2,91912375860365 ; 31,3469722460581 ; 94,424565202361 ; 94,425065202361 ; 7,8 ; 9,1 ; 6,8 ; -2,4 ; 5,9 ; 4 ; -0,81 ; FutureAP2142 ; 4aA2C5dabCfdbFdFf4080FDBAefcB7dC03ecDdfe7E84D17dcc40fE0cA5aFe6Fb ; < BH63AA365Uc3yqFYZd43FDKbYS5FR8J7OhQL7875Xdm841Lw5PEZ1yqmFz46D2HZ > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 96,1326600819787 ; 3,41426712683511 ; 27,156162511833 ; 96,1324100819788 ; 96,1329100819787 ; 0,1 ; -9,2 ; -4,7 ; 3,9 ; 0,1 ; -9,5 ; -0,31 ; FutureJU2136 ; dB6a20bC0ffdbaC7e2A2fA94aa1eb96d8CDdb68c4FEfa3bfcdCfaBCbF1fb3E76 ; < vo7GLA6fx3D2TVBkHbOX07wcuh80BLl9pWFrWSaF8HI5wjN99at0935157Muxer7 > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 97,5701650582074 ; 4,04164221874421 ; 23,1412177964936 ; 97,5699150582074 ; 97,5704150582074 ; 2 ; 5,5 ; 5,1 ; 9,3 ; 2,5 ; -7,3 ; 0,6 ; FutureAU2162 ; 59cECBCcD13BbFEc9856dDf4DbBa58FebEAB9D4dDA32EfcadE6fD3d06Db35Cbc ; < qVIQ5zm5eU1UGn3cb6CW3A0v8NLXkt2HTFu1tR6BsrsynV898HpKR4VtUe1Mp2QW > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 99,4263596679447 ; 4,84265327712496 ; 19,531381038077 ; 99,4261096679447 ; 99,4266096679447 ; -6,1 ; -3,6 ; -5,9 ; -3,2 ; 7,6 ; 4,5 ; 0,48 ; FutureOC2178 ; BdeAB2af0afE10d2bAdc7Bf984BBf7Eb8aF1DfaAAd9aDc506CCcc407420351D5 ; < w3Nlvgw59A85vz2tB61BL4lp1jV3A7Wr5mRMCzXOWMV4RMUS829LCd9vhf977741 > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 101,020451602344 ; 5,87285539592585 ; 16,2012496123137 ; 101,020201602344 ; 101,020701602344 ; -7 ; -1,3 ; 5 ; -2,2 ; 4 ; -1,5 ; -0,38 ; FutureDE2123 ; 2d9EB3EBD4FcaE7CDcF5BcCDF4cffb54ECA39e840A9Ba36979fe1f20bDCEe4Ec ; < 36o64fM71awOM3rJMUT6XB24vBkK5985AK55OTgj0510rTZMghjR5fLTE7zFT7fP > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 102,73184745168 ; 7,20841202473178 ; 13,2516614060367 ; 102,73159745168 ; 102,73209745168 ; -5,7 ; -3,4 ; -9,1 ; 8,4 ; 5,6 ; 9,9 ; -0,35 ; FutureFE2289 ; 0c277cFd3c061df8EEf465Af1Ae7f24da8Fed1aBF9bEcabd1f0Fc8d68c8ce2Ea ; < 5En744687iU0xniBV3y98L1S75P8msDk1TtER9tlqeqLPy9326UAWo53vDyGhAyK > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 104,687398465502 ; 8,9545768525513 ; 10,6909375160117 ; 104,687148465502 ; 104,687648465502 ; -2,5 ; 0,5 ; 0,2 ; 4,2 ; 1,2 ; 2,3 ; -0,23 ; FutureAP2224 ; 8DAa5beEcBECecFEFFd127b655EbfE9FE2A0cd5ccA8B5bb4aa662eC44deBcCEB ; < jcd5osF3Pd536W54Xm2s6ZF2tOWKtm360UV5Cq6C63D4FGD4iDQiOTf3z80jbq29 > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 106,404921573641 ; 11,259900765733 ; 8,44989869692815 ; 106,404671573641 ; 106,405171573641 ; -2,7 ; 3,2 ; -3,5 ; -0,6 ; -8,5 ; -5,6 ; 0,33 ; FutureJU2239 ; fedAddfeDe7dcA69fEeADdFe73fAfCCfBaE76BEaDB3d45bA239F6Fffa2cfe2C6 ; < hnHE16fDYj0qE34MXWWv3UCo6ws3E2F8wzt1CtgVZDpOS3enadr8S5nCv2aqdVRN > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 108,562671947789 ; 14,3299541381601 ; 6,57592598699884 ; 108,562421947789 ; 108,562921947789 ; -5,8 ; 3,2 ; 0,5 ; 1,1 ; 5,8 ; -1,8 ; -0,52 ; FutureAU2240 ; Bb6df50B0F7E6acBE6d7CBCA4FeC9DAEDcAe5d6eF8CFabEF5DE93dFfae0B0Bb7 ; < 78FV6B9DN3YH2oatEcRJe49wEwtALYMM9z8ia50He6tyoatg6JkwaV6q60ER2ZZ1 > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 110,914151844365 ; 18,4582822989029 ; 5,0089097158817 ; 110,913901844365 ; 110,914401844365 ; 3,8 ; 3,3 ; 3,6 ; -2,4 ; 5,1 ; 8,7 ; 0,64 ; FutureOC2273 ; ECfC4f7ae6b2529Fbd6fF60acAaE1B3Ece3cE422BCddbad5025A1ddcfBfF0BB3 ; < mbNiRG3e3VsS1G8IchSzui7N6Kiy075iC7U8Ra3amyzA497tA3Z689lf8V0Y7dt8 > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 113,051941169835 ; 24,0621076388776 ; 3,69833910090133 ; 113,051691169835 ; 113,052191169835 ; 4,8 ; 3,9 ; -8,9 ; 5,4 ; 9,7 ; 6,2 ; 0,72 ; FutureDE2235 ; Fc1fEbCFd9CC2EC7c98F3DA81cfD7a0DfaCb9dd2EDA8a3Afb3c5C6AB4eCBeE31 ; < K35xwfCnE8cWvPd7PIv7dCg3bc8tmj1m26PM6fmIr4bXolCkW65K4yNN9U3kWn0L > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 115,405995687366 ; 31,7509559163143 ; 2,63472507698794 ; 115,405745687366 ; 115,406245687366 ; 7,9 ; -4,1 ; 1,7 ; -6,3 ; 7,2 ; -5,2 ; -0,79 ; FutureFE2340 ; Ee12b4c514AC936a2cdB2eA26aFadEcbfafcFEBE2A8E9EbCFe9ccFffeCF3aBAE ; < Rr6A4j5V53WyTl1opn7qZpE9Bj1Qs9103Eg9vvozL0f8i82pR6v8Tnof7FAgxKg8 > > // < CALLS ; 5Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 47,2124076011805 ; quote ; 68,7696516082759 ; 67,3942585761104 ; 0,0204081632653061 ; -1,2 ; 62,9242312215724 ; 74,6150719949793 ; -9,2 ; 2E4cE4beaacE4dbeA2Edd1dEEeEb2bdEF4c8BCCa16ceCbe48106d8CA0CfE2d6e ; < RpHNXW25703TmtB1QAGPKX8RPP05f1WP5X1GMr26IlL3ZGyKobf4nv3yHML1Lp61 > > // < CALLS 51,9336483612985 ; quote ; 66,0394899014161 ; 64,7187001033877 ; 0,0204081632653061 ; -8,3 ; 60,4261332597957 ; 71,6528465430364 ; -2 ; B94c4e0D5ACD2Fc05dcACCcdDdf4ADF6E4DDadBE93E183ed6DDaFAb8BafDAaF5 ; < ipJzKo6HA6IMqoLjj9HQ39OyGtzGCeCV0eInKIVQy7f9XsNO8yR6jDT4utYt7jbA > > // < CALLS 56,6548891214166 ; quote ; 63,4088182749812 ; 62,1406419094816 ; 0,0204081632653061 ; -9,8 ; 58,0190687216078 ; 68,7985678283546 ; -1,2 ; aBDf3eFdf7AdFcdEb9Aad42BB5eAfBdb9a1BBb823bCCEDE83Bfe8eBf42e2b4c1 ; < D21ZkR6SQ96q71YI0XJBswL9wZ77uISVoByS7SW5Z7fB783M3kq727Z743HzXaP6 > > // < CALLS 61,3761298815347 ; quote ; 60,8785228676813 ; 59,6609524103277 ; 0,0204081632653061 ; -2,1 ; 55,7038484239284 ; 66,0531973114342 ; -1,8 ; AaB693AECDD7FFfe9FFEB7B71aaCe8FA0C0Ad0B0aebCd82B5Ffd9883B1B2b4aD ; < DrnV85Q0W5UWkfTR3dx69M4t8KHxERtF6ah0l7Byt4ZCGm4hd3H4wZ0RvLifyI3Q > > // < CALLS 66,0973706416527 ; quote ; 58,4483243190617 ; 57,2793578326805 ; 0,0204081632653061 ; -2,6 ; 53,4802167519415 ; 63,416431886182 ; 3,4 ; 1dA8C03EdbFa71DfBC6cc0a74df6EbbEBeAFf05A1A5C6a84BfafcfE2C8Fba38F ; < gsB1SaqCaLbI5Iua5lfGfz100eOUn2xPXXGRj60Qxri7569B9n4xNrfHh67O7w29 > > // < CALLS 70,8186114017707 ; quote ; 56,1170355544163 ; 54,994694843328 ; 0,0204081632653061 ; 3,5 ; 51,3470875322909 ; 60,8869835765417 ; -5,3 ; 0a713aE6E56b9fDFcFEBF6acAAbcACEA6D8E3d7eC13c62910EfEbF2ed72A9Bf3 ; < K941QNyp3FdB4d0f8O0xsO6Cf5akq40s0VoSdFFHWg49njqPxyLD7GBqXt0IG6T5 > > // < CALLS 75,5398521618888 ; quote ; 53,8827769498618 ; 52,8051214108646 ; 0,0204081632653061 ; -3,9 ; 49,3027409091236 ; 58,4628129906001 ; 6 ; FAB5DE4a0e9f2CeeEF5cFec624ef805Fc7d1ec6d2FE0EC9aE1aef1ef7AbcA2b0 ; < 4V9c34uJv3UQ1nNQ3hn79j408IWscV8ifoJdJ4HRrP3r2Xbxe3Fq02EFCGbFc657 > > // < CALLS 80,2610929220068 ; quote ; 51,7431529046748 ; 50,7082898465813 ; 0,0204081632653061 ; 2,8 ; 47,3449849077774 ; 56,1413209015721 ; 2,7 ; fF42c5B44aEDcBED0BcEe0db8AaF2D73a1EAcEd8FecdeEB607e6bbced8ad5b1D ; < JNGgg3L72u3J29gutCag380E6nr9y9hW6561k40h9H486s2lK9z2Huh88O5i14f4 > > // < CALLS 84,9823336821249 ; quote ; 49,6953949372565 ; 48,7014870385113 ; 0,0204081632653061 ; -6,9 ; 45,4712863675897 ; 53,9195035069233 ; -5,7 ; A5aa405DccA4A8c4629F0DDbfBB4cf7cB3829D6FaB4eAbA03e9feaBBC81FBa4c ; < 0QqT7Dl9wk3A44EDshFOb5KI9RCx0eSk6ph5riX33FMPq1Jc6p4f18FWTmDTIoi1 > > // < CALLS 89,7035744422429 ; quote ; 47,7364764920315 ; 46,7817469621909 ; 0,0204081632653061 ; 2,5 ; 43,6788759902088 ; 51,7940769938542 ; -8,1 ; 32ceBD0ae5eCadca87FdA255bEAC7f4e2d0A1BCAeBfc9EdcfcdeeDEEDAbECEfc ; < 2krNATRY4lH32J0TeHFlypxR3AN3gwfgYP0v0VU9Gs66918X1prrihRWYGaAP51X > > // < CALLS 94,424815202361 ; quote ; 45,8632042431598 ; 44,9459401582966 ; 0,0204081632653061 ; -0,9 ; 41,9648318824912 ; 49,7615766038284 ; 5,9 ; bB6c8fc3b4cBBb7aDEFffeb8C3DBBDe1eAb30f22BE44CeB26f5F9b62DcEcEB0A ; < 04aK7mqltV9VzxFbs71Ak462oU4BRm7x8bCB9G04YC98F89wP2kM82lKb2uTiZvv > > // < CALLS 99,146055962479 ; quote ; 44,0722900961976 ; 43,1908442942737 ; 0,0204081632653061 ; 1,9 ; 40,3261454380208 ; 47,8184347543744 ; 0,8 ; Dcff0ecea4fE2aDa1CCA1D89AF5A2cbcFdBAF3BBBF9A8BC4cdA5cddFDA5e39c0 ; < GyZy3A6CYcPfSyxc5LAc3pQ3Bt8j0Tw3pSUUJdZR2clzY1YndRE5G39eK37piFI9 > > // < CALLS 103,867296722597 ; quote ; 42,3604074685174 ; 41,5131993191471 ; 0,0204081632653061 ; 6 ; 38,7597728336934 ; 45,9610421033414 ; -5 ; 39cfdBEb25b3d2Ca3c8AABce3c0EfAe0FCf379FB0cE8c8D79f5bFc6fA0Ec80A7 ; < 048MFf13EAqTEeb0akGpyQM6JRbNGfA3gBcZB3HW6o4iRd5AR3GNH5ZEA9BCt62Y > > // < CALLS 108,588537482715 ; quote ; 40,7242348442273 ; 39,9097501473428 ; 0,0204081632653061 ; 2,3 ; 37,262674882468 ; 44,1857948059867 ; -8,9 ; 06Cdd8b35aC9EeBDB1CeA3d7D4745Ec2ECDB59bB2aC10FBfFFf3acDA297dE5aB ; < rjCqsALO67ZU0yGEJKFp01Ud3v4IGYGwoFkf05NH96917Fwef8uZVg0enNUj1Z1Y > > // < CALLS 113,309778242833 ; quote ; 39,1604890792011 ; 38,3772792976171 ; 0,0204081632653061 ; -3,2 ; 35,831847507469 ; 42,4891306509332 ; -6,3 ; 4c6b6d6b7EAAdCCFefa2eeEA2EB7cFeAc2CDc3F5AADbeAFDbE6349E0ac9DFce2 ; < y29Q73Vu8mgGEHGQ3o5Wkp20DSL6WkwG1RFS3uC0L66TYzff2T2yJUa1wn1Z13gX > > // < CALLS 118,031019002951 ; quote ; 37,6659504849378 ; 36,912631475239 ; 0,0204081632653061 ; 6,3 ; 34,4643446937181 ; 40,8675562761575 ; -7,7 ; E94d62Aec4e93EeEB25af06eC745AFa08BD8aEBaDc1Eb696B1Aa43a58B31bda3 ; < Hz27t166tLxRDbn2T8WGQiVJon457NSg223xwqZEA10ei512S6N82OtiNGMS7sTl > > // < CALLS 122,752259763069 ; quote ; 36,2374813440611 ; 35,5127317171799 ; 0,0204081632653061 ; -2 ; 33,1572954298159 ; 39,3176672583063 ; 6,8 ; EC8ad6DB9E5DE597AaafcE2dDDce0cb6cDEFFED9Cb2D02aEc3fbbC7eE17B7b0D ; < u0b49qK99iEZA7l6p1MNAygGm33B5xicp9k9camr6k6115r8GVZ3S9byaKdGWVwr > > // < CALLS 127,473500523187 ; quote ; 34,8720391984027 ; 34,1745984144347 ; 0,0204081632653061 ; -4 ; 31,9079158665385 ; 37,836162530267 ; 0,4 ; df96EaEcDd1eDcfcE5DA2fFe1FB0aeBffD5Ba734bab653Ec1d0a8B58FEdDFceF ; < V8TXiKl4u55wMlmzwR7Ohx2V74p9LHIHy3IIzd0Lm7mbEMx05Z3HpcBMi1j5ROuC > > // < CALLS 132,194741283305 ; quote ; 33,5666859942514 ; 32,8953522743664 ; 0,0204081632653061 ; -1,1 ; 30,71351768474 ; 36,4198543037628 ; 5,4 ; 9F157EAedFECBDBFb6CCDcFC7fD8f6fDAe584c2b4dfeD64CbDcb07AfFDeCfCfB ; < Oqp4Ezl0EVlavAy8zQELECQpI7kjv8n2zi4H4300GrUW0Uq6tfZ06NGg2qNftp5U > > // < CALLS 136,915982043423 ; quote ; 32,3185939599338 ; 31,6722220807351 ; 0,0204081632653061 ; -3,4 ; 29,5715134733394 ; 35,0656744465281 ; -1,3 ; 90Edecf3CB5AdcbC6EddA4ECaDaaAccbd3D301CfA5DcFC72CeedDe8e0e9412Ec ; < 2n9hBkz01A93ik617kkDTp6hQqE4kK2tWQzA45Uwuf8JdYyW0F576db7rR1x8lph > > // < CALLS 141,637222803541 ; quote ; 31,1250489205501 ; 30,5025479421391 ; 0,0204081632653061 ; 2,7 ; 28,4794197623033 ; 33,7706780787969 ; -2,9 ; A30cDF79aCCf020Dc7bB9BfaEAF1B5c20Fce16FFeDfB7A0bdB0C14B0A4F5ece2 ; < 10BT5Y9WaiUZNNPgtm2X4N454XyNup3nr1yB24GK087cw9zsDqzC8Wnn5TU44v7V > > // // < PUTS ; 5Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 47,2124076011805 ; quote ; 1,45814086476824 ; 1,42897804747287 ; 0,0204081632653061 ; -1,6 ; 1,33419889126294 ; 1,58208283827354 ; 5,8 ; 1fdccefAFfb96AcA2eEcEDf6DbBFa5cFb6ddFbdDC30b7FFCBCDeCaaB1Cd4CEC4 ; < f6jS82qWRB18lD2RF2LJA1d3Jk6vS4B8M6DeH9y1P102M4l20i40U1ZyVM2ws975 > > // < PUTS 51,9336483612985 ; quote ; 1,99682808355766 ; 1,95689152188651 ; 0,0204081632653061 ; -0,4 ; 1,82709769645526 ; 2,16655847066006 ; -0,2 ; CAFedcB1aF0168fb479bBabEFc7DF4DAFf65fFF30b9a004A9E700Bdd9ecF0ed5 ; < 5tQPAsA4CkMzI5ATW8AFV636tc5IK48pWqR83KCff0l11jmAa466pq6eC6M9A34l > > // < PUTS 56,6548891214166 ; quote ; 2,63500538277204 ; 2,5823052751166 ; 0,0204081632653061 ; -6,1 ; 2,41102992523641 ; 2,85898084030766 ; -5,2 ; fdb3B7C5C9B9cbFDb07f76FEAB69BB1fBeFc98F4A2C1FB76E5cEEfBEeDc6cB3e ; < 365P5zMlP03ydHrM6AYo8RJvgj3bAoJ8E16EqGfgSxJ2KJQ5hvO2NnAI4I385jIJ > > // < PUTS 61,3761298815347 ; quote ; 3,37355890112138 ; 3,30608772309896 ; 0,0204081632653061 ; 0 ; 3,08680639452607 ; 3,6603114077167 ; -4 ; 7EdD9AEbba65Ec4b5e9e6ea6FadEA6EaE85D6AbEeEb9Cf03CD37DcaBcBca6DBD ; < u4myuq2gEM98DZs16CTHURH0qRPqll761l3ZzBarK9efv6zbGA0vypE3R0i615G8 > > // < PUTS 66,0973706416527 ; quote ; 4,21220927815102 ; 4,127965092588 ; 0,0204081632653061 ; -1,1 ; 3,85417148950818 ; 4,57024706679386 ; 0,1 ; bBEe1cefcD3F9DA9BDEF0cdb866bB0aD6E9EA224fbBedCceC156E53D73effaAc ; < 9ImvchjV8Vp7hZ8w46OtAJbk76VYnUc10B50Z354Q44X3YXeG71W1B04hKaiH1Wu > > // < PUTS 70,8186114017707 ; quote ; 5,14976943915488 ; 5,04677405037178 ; 0,0204081632653061 ; -3,1 ; 4,71203903682672 ; 5,58749984148305 ; 2,3 ; 2ccfe45aeAbf578DEFaAF3dcA2bAfDb9A6cFf7Ff4FC6febdd67CE57108bDbcDd ; < hMuek15Zuro4JOmmxwnoMap979qCIvfjQ7HK02eBMt6YSd2rn286dAELlF95Pfvj > > // < PUTS 75,5398521618888 ; quote ; 6,18435976024961 ; 6,06067256504461 ; 0,0204081632653061 ; 3,5 ; 5,65868918062839 ; 6,71003033987082 ; -5,2 ; 8A296fDF1099DbfAD5Bd0FdfbEFdEede78EAAcEEDEf2Ab7e1E9BabCFD4E50d4B ; < 0t304bZ6MAD99x9PSMpTN48cARjPIY3Tevlh968VRzAT3s3bZYdo0dcCvC0FXXgD > > // < PUTS 80,2610929220068 ; quote ; 7,31358464071178 ; 7,16731294789755 ; 0,0204081632653061 ; -5,3 ; 6,69192994625128 ; 7,93523933517228 ; 2,6 ; Bd65f3d6aF999Cfca9deEbfb7bd9234D39Adc4cFF83C25CdAB9BBC1ECB8F3cbD ; < 14vgwy1TFO7U09L9Dt11cIqndVvn4f03AYpO0b8H116CX2lq4zbZa730e7hib5b3 > > // < PUTS 84,9823336821249 ; quote ; 8,53467559894273 ; 8,36398208696387 ; 0,0204081632653061 ; 2,8 ; 7,8092281730326 ; 9,26012302485286 ; 8,4 ; ca42c2Decc682CeD55D0Bc25cD5DFDFFd5d34AACbA19a0F8eea6a895cdea55bf ; < qvcZE7zu917R3SjBT9XkQ91SnmUD4CyOv3dgcrUl1v9QEOM7Y3NSzlomR5Yn5vEM > > // < PUTS 89,7035744422429 ; quote ; 9,84460607936701 ; 9,64771395777967 ; 0,0204081632653061 ; 1,8 ; 9,00781456262082 ; 10,6813975961132 ; 3,7 ; 86ffcdaA5b2D20de4Fa595F5FC0e09afe5dc50E5add2fEaffBD3C0efE9a6BfAE ; < 1XCZr3O88hc5mk1YnR0A3kVETNo26U0398kIK1PvRdVg2qu82dvAlOgX0J4CFKTm > > // < PUTS 94,424815202361 ; quote ; 11,2401827561445 ; 11,0153791010216 ; 0,0204081632653061 ; -3,7 ; 10,2847672218722 ; 12,1955982904168 ; -5,3 ; 6CDDDCee9EAE14dCE2c51fFf2AaeCFEe8d05f35Ae9Fa29fdc36D0aFdFBdceb4B ; < 11q2Ko104o4wKuwChbOhRG5tdMo0CWEY4Gln9I241156VGCH87PiFY019tQAJc5v > > // < PUTS 99,146055962479 ; quote ; 12,7181175348316 ; 12,4637551841349 ; 0,0204081632653061 ; 2 ; 11,6370775443709 ; 13,7991575252923 ; 7,1 ; C64C8FdfaDcCAdba31fA8C13cfb95B9CddBcDCD7eBcfCAFCDC27bE4bEbdE1cdd ; < DkH3oj257c3Zr9HFzU6zx6Y0xp98CQy9HUc5Ne446oyK1eO24o5aIPTLmSC35I38 > > // < PUTS 103,867296722597 ; quote ; 14,2750838328006 ; 13,9895821561446 ; 0,0204081632653061 ; 6,5 ; 13,0617017070126 ; 15,4884659585887 ; 1,4 ; 9d2ea879BeD03CEfa675ebF62bC280bBc23bBFbEd5B86e2cF37CFFF6AfCa75BE ; < 5eLAxzDi8KkXJ18x0ED2M2346EB7I5wfJ7mpx0Yj6ZHIMj917a1D2V39ousPpA69 > > // < PUTS 108,588537482715 ; quote ; 15,9077601341598 ; 15,5896049314766 ; 0,0204081632653061 ; 5,6 ; 14,5556005227562 ; 17,2599197455634 ; -2,2 ; FeFbbF09cCd8D9cA7CFf1edebFBA7BeB50bEB41c88eEfDDCeADc6CE0fb1FDa45 ; < 6dnGOZ5JHa6G41UomLyp6DClakm1Uz0uNJVxvFo4g9m44T05BViV6eaZiPCqoR18 > > // < PUTS 113,309778242833 ; quote ; 17,6128632947828 ; 17,2606060288872 ; 0,0204081632653061 ; -1,1 ; 16,1157699147263 ; 19,1099566748394 ; 8,4 ; Bcfb187bBCB6b885d57A0aAFBbfF1EfC03aeeCdDFCD8afe80e63Ce0a17fED2a4 ; < aq1X16834V7qO6DK1q79uSx208m48332Nct2QWG3LMwqfbiSselEiK5NKx4IDdrf > > // < PUTS 118,031019002951 ; quote ; 19,3871736261687 ; 18,9994301536453 ; 0,0204081632653061 ; 2,1 ; 17,7392638679444 ; 21,035083384393 ; 7,6 ; F7f49dFcb3F72C48FB7Bf56df47D2dc8a82F67f76afAe3FfCA320fBcdaFFaa73 ; < 4uJXS2s8KE8t1aQb7nlN7Y7e0J4YsX079TLk8P59swkmjcol34c5K6c5uYB60P6Y > > // < PUTS 122,752259763069 ; quote ; 21,2275534109413 ; 20,8030023427224 ; 0,0204081632653061 ; -4,5 ; 19,4232113710113 ; 23,0318954508713 ; 0,2 ; aCDE99C70B848a1a679CeaB6Ad3Ca9cDFc9AfCA3dB9AF4abEd3b8093EdEccfEA ; < HuOnC6Ygn821oYHj7dlKKns75ue41sQh8hFRdN24QFp1enfu7fc99Y53jiD6A51F > > // < PUTS 127,473500523187 ; quote ; 23,1309601909321 ; 22,6683409871135 ; 0,0204081632653061 ; 5,9 ; 21,1648285747029 ; 25,0970918071614 ; 1,8 ; B178eBf4BE5EbC28cCBcCA4bEED6ccbe2eC8C2CB1c11ceEeE7eCEdcfBb08ab9d ; < nrBCv2s640ovRdD5XV5bWYmjU568poxEda5Hx92895BSTxkmSxu7e97u183sV5zS > > // < PUTS 132,194741283305 ; quote ; 25,09445591243 ; 24,5925667941814 ; 0,0204081632653061 ; 9,8 ; 22,9614271598735 ; 27,2274846649866 ; -5,5 ; 72932fcc1da10AAE1EEff8c5B1F01E26EfF31cC4a5091B653ea491CeFcffDFC6 ; < yRrto5c8IohL015iYs91pY10k69V2vg43wUND9eNc4DNT8HaeG19vD806CU9nzpW > > // < PUTS 136,915982043423 ; quote ; 27,1152128037616 ; 26,5729085476864 ; 0,0204081632653061 ; 6,2 ; 24,8104197154419 ; 29,4200058920814 ; -2,4 ; BDBcfd6A5C0f97f91DC2d4AfF54fcfbeCFAbD0e6ecCeFcBEa0da3dfBaEF24Bcb ; < no3c82lli84YCMBfFdly82H33zIaT3DjiEsq8s1ua4k4HeL0bQJmUb07dupx3e8Z > > // < PUTS 141,637222803541 ; quote ; 29,1905166900272 ; 28,6067063562267 ; 0,0204081632653061 ; 9,7 ; 26,7093227713749 ; 31,6717106086795 ; -8,4 ; cEDfeC9a69bBDd7a9FAd9BF01d3C80eAebdB2d9cBecD44E7a4A9FD8645e60aC6 ; < tFUdA097vLkALr4aKRrHulorE82C2n28HOJpr0aAGj1O14CAZQucZy9T7EEGK3QB > > // Futures_EurosibPower_Engineering // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 80,467707 ; 1,14 ; 69,5857078947368 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; E5C3FFbeEDBcAEc3afB9Ff7F0FC0b15ACD4af30FbBaBDcFD45Fb8eD45fe5c2Cb ; < T6skmd83RU84dIcA5Q55jV8lSB3rOSlLl7eGIGR86PfOQ1OfMmEtIzDny104E78w > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 80,4633818792096 ; 1,13993046 ; 69,5862196885323 ; 80,4631318792097 ; 80,4636318792096 ; 3 ; 5,7 ; 6,6 ; -9,9 ; -8,6 ; -3,2 ; -0,31 ; Future96AP19 ; dB5fDde8137EEEEC4c3CDbF5fc081b5E2CAFFbD7bDACD9cbfDb5dabdC0bacc75 ; < N6gNDT1aFNGUxAdPzR0ynb9Nsl86cy627hYcfQDo7A1RMLsSRCYdT7o060yP7B50 > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 81,3462394335325 ; 1,15380498577013 ; 69,5025896375686 ; 81,3459894335326 ; 81,3464894335325 ; 9,6 ; -1,1 ; -5,1 ; -3,7 ; -6,6 ; -9,7 ; -0,27 ; FutureJU1932 ; a3274Ffc64bcC95E8aAF8BDcfCdd4B8887eD6aBFb147caC6E88EBF4DDECAcaEf ; < cKiFW074oY6K9wSvg86o6W9zRG7OIuuO7b1gH5eSahatdCrbE14CPq5D8VOgJi94 > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 82,295704370818 ; 1,18200375723698 ; 68,6238940586703 ; 82,295454370818 ; 82,295954370818 ; -7,2 ; -3,9 ; 3,1 ; -1,2 ; 1,8 ; 6,9 ; -0,62 ; FutureAU1938 ; BF3a4cFaDD4fd67C5Dcf1AeaDE7d1cBaf6ADEDe0ffC6e18F3DF754a5B529FC3E ; < 4mR6b8p7VXQ69CV62TV208qgDfB5gg0JB0uYEaVxd3F5rEU1DKPp03B1o9Um89Pp > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 83,2297698616958 ; 1,2255216695491 ; 66,913748022357 ; 83,2295198616958 ; 83,2300198616958 ; 3,2 ; -5,3 ; -9,9 ; -9,6 ; -4,2 ; -2,3 ; -0,67 ; FutureOC1952 ; ceac67FB057D3FdF5fbb1FFbB4BbC4fCffC4e8eDFAFb7b36BE25eecd8bEe297E ; < L0pWAQddhU99FOBWgjmSBft16mV3F70688zUE0vAS10msD0RxsO345wzy7H8z47t > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 84,2418127736471 ; 1,28593494301587 ; 64,5101669265455 ; 84,2415627736471 ; 84,2420627736471 ; -8,6 ; -4,5 ; 0,7 ; 7,1 ; 0 ; 7 ; 0 ; FutureDE1990 ; ABE8fbFfCb4bAF7dEce33b55Cda18CFd9a6Bdf2F94CcbF9BcFf8646a289ef03b ; < D4O06o6T98bl67T59RG54utp5v8lz4dv23K3pI0d3LMY6o1Tc61mOwZ7u907lert > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 85,4174393131844 ; 1,36592565978539 ; 61,5344715514058 ; 85,4171893131844 ; 85,4176893131844 ; 5,7 ; -8,4 ; 0,2 ; 4,4 ; -1,6 ; -8,4 ; 0,88 ; FutureFE2084 ; 7bEfEe7cfb9d97fCbE26BffdFEDeeeD3fcDFB9d353AC9fceeB92C7e7fDcAF1da ; < 4xW6WC7x2KrZbw5id2Bx33zZ9vrdrJfaPl4m9kmmJWXt6Q3h3AW0yOzHsOSEY1X4 > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 86,498600704236 ; 1,46829905613498 ; 57,9107514186702 ; 86,498350704236 ; 86,498850704236 ; 3,8 ; 2,2 ; -9,1 ; 1,9 ; 3,6 ; -6,6 ; 0,3 ; FutureAP2094 ; eBEFDCDF5ddAAaB8E4ad5ceD868cD1A6BEAb43DCeF82Dc5FC111CAdcA0e1E083 ; < 1EQe9KzCmUQBS8aSH65TU5l863Ux2e787OipsjUnN84zXA973O8c9nUr6I6n88NW > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 87,6884455281873 ; 1,59757817393707 ; 53,8883597427274 ; 87,6881955281873 ; 87,6886955281873 ; -5,6 ; -2,4 ; -4,8 ; 1,2 ; -9,7 ; 4,5 ; 0,02 ; FutureJU2055 ; cBDdCdD6FD4eD2FA9D6fbd4D872FF0Fdcdddf2Bfc5f333D8f861DDE6AC5D12BC ; < CRZ9sGivY4EOR34M2W32cvl0B85CkWo75lYIR37SNcxM3mHRjXu1jL5CSKpBfca2 > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 88,99671737479 ; 1,75919843646909 ; 49,5893567944595 ; 88,99646737479 ; 88,99696737479 ; -6,8 ; -1,3 ; 0,5 ; -4,7 ; -0,8 ; -1,9 ; 0,78 ; FutureAU2087 ; F0acEEcFAAAcdFaEECEcfD5c960beDa19dADAFD0AEc0cb232eAe3cCac9CfC6C9 ; < W7jLLhh17v91Ld3YaxaAlPaa1V7KoPx6ZmOcsY6OW1eCs6eBw6L1C3M54Ggo0k1s > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 90,1915609257977 ; 1,96086893907608 ; 44,995710946543 ; 90,1913109257977 ; 90,1918109257977 ; 0,1 ; -0,5 ; 0,8 ; 0,9 ; 3,4 ; -7 ; 0,13 ; FutureOC2011 ; Dc9DaF2b4abaDf0F6A7d3DD8F39Ade4A350f477f1fE967Eeb1ba5AC0fFCffd43 ; < enrEk2S8903Kj16MIMYaYgv7hJP1GmVPA97kzR6WzP9EWwVOdMul57KI86W701Du > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 91,6572769146718 ; 2,21221623255843 ; 40,4323317791906 ; 91,6570269146718 ; 91,6575269146718 ; 1 ; -7 ; 3,6 ; -7,1 ; 9,9 ; 6,2 ; 0,88 ; FutureDE2092 ; c21A529C4EebCf2b25fEdd1dE4802EDeA7efA1Fd5cCeBDEF89a4ffABe62CEEBd ; < y5U37Mt1yq5dc5tP2e5p0fikV32v2ChFlLkZtNVzMquLvU8g7EL9JECi0TSImj1q > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 93,107199253132 ; 2,52580972054052 ; 35,8623172584858 ; 93,1069492531321 ; 93,1074492531321 ; 5 ; -0,7 ; 5 ; 2,3 ; 1,2 ; -4,7 ; -0,93 ; FutureFE2123 ; afaC6eFea1dEab11F80DDb94fdBeEeFEaEe296E149FCcD9c2fD9d91E1f14E00B ; < PyrJ967xNHs0dZ70sT77w2gU0UiAsmmHQlrP9e4K4qlLea7O9V8NR73PIwjv61pG > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 94,424815202361 ; 2,91912375860365 ; 31,3469722460581 ; 94,424565202361 ; 94,425065202361 ; 7,8 ; 9,1 ; 6,8 ; -2,4 ; 5,9 ; 4 ; -0,81 ; FutureAP2142 ; 4aA2C5dabCfdbFdFf4080FDBAefcB7dC03ecDdfe7E84D17dcc40fE0cA5aFe6Fb ; < BH63AA365Uc3yqFYZd43FDKbYS5FR8J7OhQL7875Xdm841Lw5PEZ1yqmFz46D2HZ > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 96,1326600819787 ; 3,41426712683511 ; 27,156162511833 ; 96,1324100819788 ; 96,1329100819787 ; 0,1 ; -9,2 ; -4,7 ; 3,9 ; 0,1 ; -9,5 ; -0,31 ; FutureJU2136 ; dB6a20bC0ffdbaC7e2A2fA94aa1eb96d8CDdb68c4FEfa3bfcdCfaBCbF1fb3E76 ; < vo7GLA6fx3D2TVBkHbOX07wcuh80BLl9pWFrWSaF8HI5wjN99at0935157Muxer7 > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 97,5701650582074 ; 4,04164221874421 ; 23,1412177964936 ; 97,5699150582074 ; 97,5704150582074 ; 2 ; 5,5 ; 5,1 ; 9,3 ; 2,5 ; -7,3 ; 0,6 ; FutureAU2162 ; 59cECBCcD13BbFEc9856dDf4DbBa58FebEAB9D4dDA32EfcadE6fD3d06Db35Cbc ; < qVIQ5zm5eU1UGn3cb6CW3A0v8NLXkt2HTFu1tR6BsrsynV898HpKR4VtUe1Mp2QW > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 99,4263596679447 ; 4,84265327712496 ; 19,531381038077 ; 99,4261096679447 ; 99,4266096679447 ; -6,1 ; -3,6 ; -5,9 ; -3,2 ; 7,6 ; 4,5 ; 0,48 ; FutureOC2178 ; BdeAB2af0afE10d2bAdc7Bf984BBf7Eb8aF1DfaAAd9aDc506CCcc407420351D5 ; < w3Nlvgw59A85vz2tB61BL4lp1jV3A7Wr5mRMCzXOWMV4RMUS829LCd9vhf977741 > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 101,020451602344 ; 5,87285539592585 ; 16,2012496123137 ; 101,020201602344 ; 101,020701602344 ; -7 ; -1,3 ; 5 ; -2,2 ; 4 ; -1,5 ; -0,38 ; FutureDE2123 ; 2d9EB3EBD4FcaE7CDcF5BcCDF4cffb54ECA39e840A9Ba36979fe1f20bDCEe4Ec ; < 36o64fM71awOM3rJMUT6XB24vBkK5985AK55OTgj0510rTZMghjR5fLTE7zFT7fP > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 102,73184745168 ; 7,20841202473178 ; 13,2516614060367 ; 102,73159745168 ; 102,73209745168 ; -5,7 ; -3,4 ; -9,1 ; 8,4 ; 5,6 ; 9,9 ; -0,35 ; FutureFE2289 ; 0c277cFd3c061df8EEf465Af1Ae7f24da8Fed1aBF9bEcabd1f0Fc8d68c8ce2Ea ; < 5En744687iU0xniBV3y98L1S75P8msDk1TtER9tlqeqLPy9326UAWo53vDyGhAyK > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 104,687398465502 ; 8,9545768525513 ; 10,6909375160117 ; 104,687148465502 ; 104,687648465502 ; -2,5 ; 0,5 ; 0,2 ; 4,2 ; 1,2 ; 2,3 ; -0,23 ; FutureAP2224 ; 8DAa5beEcBECecFEFFd127b655EbfE9FE2A0cd5ccA8B5bb4aa662eC44deBcCEB ; < jcd5osF3Pd536W54Xm2s6ZF2tOWKtm360UV5Cq6C63D4FGD4iDQiOTf3z80jbq29 > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 106,404921573641 ; 11,259900765733 ; 8,44989869692815 ; 106,404671573641 ; 106,405171573641 ; -2,7 ; 3,2 ; -3,5 ; -0,6 ; -8,5 ; -5,6 ; 0,33 ; FutureJU2239 ; fedAddfeDe7dcA69fEeADdFe73fAfCCfBaE76BEaDB3d45bA239F6Fffa2cfe2C6 ; < hnHE16fDYj0qE34MXWWv3UCo6ws3E2F8wzt1CtgVZDpOS3enadr8S5nCv2aqdVRN > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 108,562671947789 ; 14,3299541381601 ; 6,57592598699884 ; 108,562421947789 ; 108,562921947789 ; -5,8 ; 3,2 ; 0,5 ; 1,1 ; 5,8 ; -1,8 ; -0,52 ; FutureAU2240 ; Bb6df50B0F7E6acBE6d7CBCA4FeC9DAEDcAe5d6eF8CFabEF5DE93dFfae0B0Bb7 ; < 78FV6B9DN3YH2oatEcRJe49wEwtALYMM9z8ia50He6tyoatg6JkwaV6q60ER2ZZ1 > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 110,914151844365 ; 18,4582822989029 ; 5,0089097158817 ; 110,913901844365 ; 110,914401844365 ; 3,8 ; 3,3 ; 3,6 ; -2,4 ; 5,1 ; 8,7 ; 0,64 ; FutureOC2273 ; ECfC4f7ae6b2529Fbd6fF60acAaE1B3Ece3cE422BCddbad5025A1ddcfBfF0BB3 ; < mbNiRG3e3VsS1G8IchSzui7N6Kiy075iC7U8Ra3amyzA497tA3Z689lf8V0Y7dt8 > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 113,051941169835 ; 24,0621076388776 ; 3,69833910090133 ; 113,051691169835 ; 113,052191169835 ; 4,8 ; 3,9 ; -8,9 ; 5,4 ; 9,7 ; 6,2 ; 0,72 ; FutureDE2235 ; Fc1fEbCFd9CC2EC7c98F3DA81cfD7a0DfaCb9dd2EDA8a3Afb3c5C6AB4eCBeE31 ; < K35xwfCnE8cWvPd7PIv7dCg3bc8tmj1m26PM6fmIr4bXolCkW65K4yNN9U3kWn0L > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 115,405995687366 ; 31,7509559163143 ; 2,63472507698794 ; 115,405745687366 ; 115,406245687366 ; 7,9 ; -4,1 ; 1,7 ; -6,3 ; 7,2 ; -5,2 ; -0,79 ; FutureFE2340 ; Ee12b4c514AC936a2cdB2eA26aFadEcbfafcFEBE2A8E9EbCFe9ccFffeCF3aBAE ; < Rr6A4j5V53WyTl1opn7qZpE9Bj1Qs9103Eg9vvozL0f8i82pR6v8Tnof7FAgxKg8 > > // < CALLS ; 7Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 52,3436992327508 ; quote ; 75,8293220185812 ; 74,3127355782095 ; 0,0204081632653061 ; 1,7 ; 68,6255364268159 ; 83,0331076103464 ; -3,3 ; F0e9bCecc24EE078a0DBA6220CfDc57F87C9d1f8faC5a2E8BaB6DF78cdfc5DBB ; < oCoA5x5RW5Mb7Y8s29zAXNXUk1cm400j0kDkSVwLyX5Iqa46oyC80lmSNY1n7Oe5 > > // < CALLS 57,5780691560259 ; quote ; 73,7322794357713 ; 72,2576338470558 ; 0,0204081632653061 ; 2,3 ; 66,727712889373 ; 80,7368459821695 ; -5,4 ; f1Cc6FAfCAd9AAA2d2a627EfbEDa2Fbe917E8d8A3bFf1eC7Ad8CEe8ea3A5Dcf5 ; < 1Wu5yI19de42H59q5cDw3NKi93mPg0N09w81GCyx8hLVg71af30ypsO8w3UGGclI > > // < CALLS 62,812439079301 ; quote ; 71,703437256091 ; 70,2693685109692 ; 0,0204081632653061 ; -4,5 ; 64,8916107167623 ; 78,5152637954196 ; -6,1 ; BDcaBbedAeBf0AEb22BA71Ca9F3F21baf4e15cDEEA165d1f1fFeB4eaDdA69Ac8 ; < 6s9EnZ59mV0h6WC68rzV9mDKn1KzdE8eM1m6gkNkn6X4y3PxPZoBB1cMIYSZMocb > > // < CALLS 68,0468090025761 ; quote ; 69,7418885557811 ; 68,3470507846655 ; 0,0204081632653061 ; 3,4 ; 63,1164091429819 ; 76,3673679685803 ; -9,8 ; BDc98f81ebd160e51EbC39B76a6cb1E4fde5DbDCBaa4e96a31BAcaDbaEC4bFea ; < LFq296AuorE5ZY67R62i1sQYDh16ODU4yYR38r93m4oFbSUG896XN47D2CX9VaCY > > // < CALLS 73,2811789258512 ; quote ; 67,8463197897546 ; 66,4893933939595 ; 0,0204081632653061 ; 1,7 ; 61,400919409728 ; 74,2917201697813 ; -0,6 ; bBfDe2E44cfaBF97DD25fFe3AAE77AdbCFAf4c26cbAdbbaCa54D39966dc44Be3 ; < 4exVN4hR2SOw6WLo61e661f06P38n5sVdl9VEaUOXl2p1KW2soE2r3q331Ob1yhz > > // < CALLS 78,5155488491263 ; quote ; 66,015129686744 ; 64,6948270930091 ; 0,0204081632653061 ; 8,9 ; 59,7436923665033 ; 72,2865670069847 ; 1,3 ; 7E43ADE826FA2EBEDB8AFBE731CFeaE8CCAaEE7caC7E2B10b2eA4CfDcfAa8f6F ; < nh06VsEQ4NX20aMwHmgK1cGM5AUJZp9x91m522xb0P200eby5Nk8o6x6c112OSCu > > // < CALLS 83,7499187724013 ; quote ; 64,2465199791314 ; 62,9615895795487 ; 0,0204081632653061 ; 5,2 ; 58,1431005811139 ; 70,3499393771488 ; -2,9 ; A86fC9bfCCb3F7CFFd7acbcff6AB0cE0aBe43F7baBabA601efeab4c4F634d7f3 ; < d3CQIJ1WAz3I9Sxr8fdWkjyZ434Ee5w2gG8EIvof9EAVhfI0S5Yt41G6Mikmtqyh > > // < CALLS 88,9842886956764 ; quote ; 62,5385644631442 ; 61,2877931738814 ; 0,0204081632653061 ; -6,7 ; 56,5974008391455 ; 68,4797280871429 ; 3,3 ; 87f6BECcCab3B953baeD90b0b3aCbDabB29B03bb49afbbCa8faAEDde94dd6E56 ; < 0W1hJ3Ma06LIoaSJES57RF193O0ldVS9P341My8T2qw1wqkawaosMCoxVXLjyQ83 > > // < CALLS 94,2186586189515 ; quote ; 60,889261411245 ; 59,6714761830201 ; 0,0204081632653061 ; -1,5 ; 55,1047815771767 ; 66,6737412453133 ; -2,4 ; C1db69c765DbD0ceAF0B179C3d49b4e06a0eB25fC8dd467ed7dC9Abc4aa5BaEb ; < 7LbatWauXAr6ieCI8pAdPEvIJH7C3Y7ZW368c1MHRz7bndj60Dv5Wsm3P4Y9YUoD > > // < CALLS 99,4530285422266 ; quote ; 59,2965731937061 ; 58,1106417298319 ; 0,0204081632653061 ; -7,3 ; 53,663398740304 ; 64,9297476471081 ; -7,7 ; 4f27dED4ff52Be596BBD9dAC53D8EC09A7d6ebdBAfDaF4eBd7EB1d1ebc4BA5da ; < ZmV6eoLB20Y4g4QxO7728PtzZh9iyFL5BSl378AFgB26B2Laq99MBUt6tDL08THU > > // < CALLS 104,687398465502 ; quote ; 57,7584560648362 ; 56,6032869435395 ; 0,0204081632653061 ; 6,5 ; 52,2714027386768 ; 63,2455093909956 ; -9,7 ; cdAF1ED948FAE28fFABeeEee4D6FDaa3ddDB93fB604e9aCebA8cb9bde13d83ea ; < 483n2fMzY246L2pfXj52Uoad1OYhFk56s8ltipwYS14R5GUpxw33U850xrda4L9O > > // < CALLS 109,921768388777 ; quote ; 56,2728823786395 ; 55,1474247310667 ; 0,0204081632653061 ; -1,3 ; 50,9269585526687 ; 61,6188062046102 ; -1,3 ; 4cECf7EF4AF0c5a9BE6eBFaC4bdBC0ffEF34a16CdE042dbE0fb0B68EfE4FaddC ; < 3OaTxyzqbkr9W8ZYd8CZAK5JZ4HBF05SswgcOJ7S9fpGO6uiDlQcqT90L2n1U72w > > // < CALLS 115,156138312052 ; quote ; 54,8378569718335 ; 53,7410998323968 ; 0,0204081632653061 ; -4,9 ; 49,6282605595093 ; 60,0474533841577 ; 2,7 ; ADAB1efBC946CA7BECE420cb0fF8bcFeb2BbA3B49Fb4CBCfeEAd3F4bcEa447dB ; < 7fgU291XI1eS9vRL4PVPzVv5T6DCZCD0JI0ABc4r5c72g3HWSawmTV12ic9N5uKY > > // < CALLS 120,390508235327 ; quote ; 53,4514290506786 ; 52,3824004696651 ; 0,0204081632653061 ; 8,7 ; 48,3735432908642 ; 58,5293148104931 ; 0,3 ; dE5b5Ceebc7Cd3130a1DB5Ae5315eBd8CC1bd2d321B71DcA6afc4Bca8c4E5eec ; < DPckeyJ43oh3gxF3LD52v25R45M555Oua746r6L1eLxj2fb1aKuD0os9nxNB3Fp9 > > // < CALLS 125,624878158602 ; quote ; 52,1117006118506 ; 51,0694665996136 ; 0,0204081632653061 ; -7,4 ; 47,1610890537248 ; 57,0623121699764 ; 6,6 ; 2EdAFEe7cB83De74F8AbdCceF90CEA2CFaFb6Cbf8F2BCf1ee733f8EBFbaABb51 ; < LqYZM4hIVGJcE1b2Y3x7tQegPl81i9YfY6sNnwZk0rrVnO9AHh76ZHYt8x5dWbIj > > // < CALLS 130,859248081877 ; quote ; 50,816832193542 ; 49,8004955496712 ; 0,0204081632653061 ; 8,5 ; 45,9892331351556 ; 55,6444312519285 ; -3,1 ; BA1908F4e4F4eDBBCe7AAd5eaaB7c4149bBb27eFFB87eDACDA50E3AD9eA7bBa6 ; < U59LdXmY22F2FB5I8RrluWNPX27ic2xlTu7745UmEkb8aKt47U15gwT53D095mH2 > > // < CALLS 136,093618005152 ; quote ; 49,5650465736045 ; 48,5737456421324 ; 0,0204081632653061 ; 0,3 ; 44,856367149112 ; 54,2737259980969 ; -7,8 ; 7FfaAFBb55E3FbA7DDae2CaC1e6C1DDFfABdbdbeED1FDfED1FA624DcfCEa7c8c ; < Mi6k6Gf8eLQgBi4e904e2Xg0Xsfnb3ka3284GPPbRI7YOr6068R5Oq68FF0901ri > > // < CALLS 141,327987928427 ; quote ; 48,354630893647 ; 47,387538275774 ; 0,0204081632653061 ; -5,8 ; 43,7609409587505 ; 52,9483208285434 ; 9,2 ; 565e24EB9BBCca846a0bFb48bdeEfefaaa69B01c9B245Bbd9FDbae62eE97de1F ; < 8XNzJ1wO7jiJH150ey0E5PGM6REhwkTLIjh9S661Mv6TLWUr0KF386g7wgegFgDa > > // < CALLS 146,562357851702 ; quote ; 47,1839375816582 ; 46,240258830025 ; 0,0204081632653061 ; 1,8 ; 42,7014635114007 ; 51,6664116519157 ; 7,4 ; ed5B020C6bDF8e8Cf8acbbAa66faBEcb8aBACfc6Bd81eBEbF9e1ED0409c2dBfE ; < yuG2o9Y5mpcLUQ6O0O5pU7AkVdV6YM50QUhn5ft5tjo1T0ho7F7bXJ0pGZ4qCJ03 > > // < CALLS 151,796727774977 ; quote ; 46,0513843634353 ; 45,1303566761666 ; 0,0204081632653061 ; -5,5 ; 41,6765028489089 ; 50,4262658779616 ; -7,2 ; A0F5B199d86bC6D71BbFAf6BD0b16cDC9caD32Fb11b3b39aA22f7BD0c4624f38 ; < JuTHY2HCLBwGLt9Qif9NF28B87d6lob01Jb97KMJC78Uk7eK2085E6bX0VbsB7Px > > // < CALLS 157,031097698253 ; quote ; 44,9554535892403 ; 44,0563445174555 ; 0,0204081632653061 ; 9,8 ; 40,6846854982624 ; 49,2262216802181 ; 1,8 ; 1CE76EBadcF9DC7dFf6cfCE46bDE8Af20Eb9B38ceaE0db55265eFBCC22bBe6CD ; < U1M48R5KOIgIYV696bx000Ch2S3WKSD80Xs259m33Yle05Wk4qpC87MVsduDM30Y > > // // < PUTS ; 7Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 52,3436992327508 ; quote ; 1,54299840391275 ; 1,51213843583449 ; 0,0204081632653061 ; -5,2 ; 1,39641355554104 ; 1,68958325228446 ; 8,5 ; e52FC29Ba931BB7c9E45FABfaBCceEfCa9C8Fd6Eb5aEfa37bE713c7cdc7e5b9F ; < gmenmRI2xRu0QxlFW8N9zRRH4ZxBd5G3gR9B5np2T904EE3G0UKZFar9TUQCz7X5 > > // < PUTS 57,5780691560259 ; quote ; 2,017323459636 ; 1,97697699044328 ; 0,0204081632653061 ; 1,5 ; 1,82567773097058 ; 2,20896918830142 ; 4,4 ; BaC4C6A1FdB8D4a0fdFC490edd2dcC8BEBAa84c88eDCc8bc4d38A1ab6cfCaeBa ; < aLZn6Y3UcRybdpZz5TpaeV812p3TKYYk1E386UktN4w0jte9l7d4hGax9G69572m > > // < PUTS 62,812439079301 ; quote ; 2,5598489184889 ; 2,50865194011912 ; 0,0204081632653061 ; 2,5 ; 2,31666327123245 ; 2,80303456574534 ; -8,5 ; edc15ABdadcfaF1b9cE1Af3D4b0CfFe3Beb2e0Fc2c3EAe9BD7EE4cbeAEbdaF2B ; < 01K51V88Ya8n3i6h432igNN1L98LX4EdO40SH56tL1oU0k6xvyXeSI3I5i26Oc9V > > // < PUTS 68,0468090025761 ; quote ; 3,16966785671218 ; 3,10627449957794 ; 0,0204081632653061 ; 9,8 ; 2,86854941032452 ; 3,47078630309984 ; -1,9 ; 32AfDfA2E7ab95DBea2cD2F3bBeCa7eEE7E9FD35d7DDba134eadDc5eB0bdc3CC ; < bEgc7Mml9T5622516177CD4cKYAEYYtV19S5Bx2pR9TSm6x0O8fg5YgwJyg2r0Ib > > // < PUTS 73,2811789258512 ; quote ; 3,84546672921888 ; 3,76855739463451 ; 0,0204081632653061 ; -6,3 ; 3,48014738994309 ; 4,21078606849468 ; -1,9 ; ef2f0E0bFB952ab8aeaAB7dA327F1Aa5CeE442Fde4ffB85c88069d4Dddc0e4D5 ; < PByyCVt3j72Tri439YNM40jjSFqd8nkolMe95Os1n6Ef8wN0QT5DuO0SE09inGGl > > // < PUTS 78,5155488491263 ; quote ; 4,5856442647414 ; 4,49393137944658 ; 0,0204081632653061 ; -0,2 ; 4,15000805959097 ; 5,02128046989184 ; -6,3 ; 5d9Ee1fB9b5EE6f4BB9d9d575ac3EdbCFA0A0e0Eaee84caDbaCEEdBAaf4CBDFC ; < 5ShZlS3RN9cFtCIX36OpauI6QOBfxVG4JjbUwq1A7carVZ17Taup27qz3sT7kkO7 > > // < PUTS 83,7499187724013 ; quote ; 5,38840219566191 ; 5,28063415174867 ; 0,0204081632653061 ; -8,5 ; 4,87650398707403 ; 5,90030040424979 ; 8,5 ; C8eC0Bf07FCbfCaF1Abb91bbec1AebAbd05E8c3006830bf0dEeC94BdEc9fA1fB ; < 5OpaSS79vr5r3l6TkQ802kiHgZcA57q9rA654DzsTBHvf36OTwX7ScQ20Bkm08T6 > > // < PUTS 88,9842886956764 ; quote ; 6,25181431820798 ; 6,12677803184382 ; 0,0204081632653061 ; 1,7 ; 5,65789195797822 ; 6,84573667843773 ; -7,3 ; b23CaE0adbb3AD2CcadAb5d6bbbfDaabBbC51CdCD6F8E3bbFD0B56f5aCdcbFBE ; < K4DTy8yVqYw16b0449024k4vM2N5u5ZlaiP65fsfx5ibg59YpAx0DPkJPgfgv37h > > // < PUTS 94,2186586189515 ; quote ; 7,17387890484187 ; 7,03040132674503 ; 0,0204081632653061 ; 6,7 ; 6,49236040888189 ; 7,85539740080185 ; -8,5 ; DBc7b8deFEAcCbd3Ab2A0852DcCfF1BF62a2daD4E4DDD4D81f202BE514Ac2C87 ; < p2ivZLAF8bDxoBx8Hw4AiYKazW4OKESLQB3Yc2a3U18x7VI9c07478243Giz4yDo > > // < PUTS 99,4530285422266 ; quote ; 8,15255832583608 ; 7,98950715931936 ; 0,0204081632653061 ; -5,4 ; 7,37806528488165 ; 8,92705136679051 ; 2,3 ; c38b8b8a9abCDFC5baDf2F496c2EaA4ACB1bEA7c08F1D0D1FBdBeb3aaD1e7AD0 ; < U2pd503mE2ycs5b4D1nED76y35P163Mt2rcyAvAUs4NOdCwY5SXTEc9S52658Zgj > > // < PUTS 104,687398465502 ; quote ; 9,18580883549939 ; 9,0020926587894 ; 0,0204081632653061 ; -7,3 ; 8,31315699612695 ; 10,0584606748718 ; -1 ; Fb08EBdC7EbE26dc6ad5dCbc5c5fC27abAAd8B01A0bAfdACBcfFCc5af3AcC8f3 ; < n5rMz82aVpN8txJK3UK8ffP2WaAMD1KAsF46o1jpHRQ4Hi5yNvA2u9dvEVkxJo6M > > // < PUTS 109,921768388777 ; quote ; 10,2716027878358 ; 10,0661707320791 ; 0,0204081632653061 ; -2,1 ; 9,29580052299143 ; 11,2474050526802 ; -3,6 ; E9A9AB3bdDEA2cBaD000D9AE1bc61E0cbdC0ec6EcD9C2AF72Ddc0C2B0ffFd4fE ; < 258W2zuQpXFYeiXniUopPtq5nxLLkpG18KI29WJbc5YLLXsz8TJ76k28S6Ux8aiT > > // < PUTS 115,156138312052 ; quote ; 11,407945019563 ; 11,1797861191718 ; 0,0204081632653061 ; -5,2 ; 10,3241902427045 ; 12,4916997964215 ; -5,5 ; 499Bd3dD92837Cda29fadE6cb2Ad6bB1baAd6B5bf60Ace6FcdF3fEBaB11E90Dc ; < OyFUv0Jpleb7jS3HHoS2jv3KIDL7e614htgru0clr3Re7d353SmcU5f2JPQ8uZv3 > > // < PUTS 120,390508235327 ; quote ; 12,5928847369413 ; 12,3410270422025 ; 0,0204081632653061 ; -4,1 ; 11,3965606869319 ; 13,7892087869507 ; 3 ; FEedA9cbFeB2EbfFfFBDeEdb1447FB2c7AaceEDcdEAeFbC72dFe9feEDe3f3A83 ; < 4axGEkLNKtRZ8pH5dZbje1sR14TVKg4kD3q3Wc5n43C5E2f3Z9t42Ubpxp492kHA > > // < PUTS 125,624878158602 ; quote ; 13,8245239366464 ; 13,5480334579135 ; 0,0204081632653061 ; 7,3 ; 12,511194162665 ; 15,1378537106279 ; 5,7 ; beE9E9F6aa1d3DBab57CaFaAb0CbB7bBcCbA84FDCFbbb8Fbd6beCfe558FeCbB5 ; < 9YZya9LMSapJgAjEDbH0NCAYf82nG07r7WION27mx5XFP6mSoCWKdfaL81hFw8S5 > > // < PUTS 130,859248081877 ; quote ; 15,101023156871 ; 14,7990026937336 ; 0,0204081632653061 ; 0 ; 13,6664259569683 ; 16,5356203567738 ; 1,1 ; CaFEC3c550E7AAFe4AAEACcBf7daDD37DF18BA09Bef0f4fDfFd24edA8F0EC0Cd ; < C32230SLa5dFDEG114iH1d0Blgx7GOBsrRnjkBPDLibDh9Y26jWr8DiUXFU4z49y > > // < PUTS 136,093618005152 ; quote ; 16,4206051754666 ; 16,0921930719573 ; 0,0204081632653061 ; -9,8 ; 14,8606476837973 ; 17,9805626671359 ; 9 ; FBFA70bf009eAFBABf4fbB44fdd6FDD7CFDbbaEbdA2FfBff37A5cfDfeDACaEba ; < nRvI52Y2Hv57m8K63Hx57ZT77WSN4Mk9RmYqyCbMV78RHZoFOCgoTm3CGf4fb0wl > > // < PUTS 141,327987928427 ; quote ; 17,7815571340423 ; 17,4259259913614 ; 0,0204081632653061 ; -2,7 ; 16,0923092063083 ; 19,4708050617763 ; -6,4 ; e9fcaab4b9Cf78b8b58bDfDf9CBc102eCd0CA95A5beCa2D4CFd88CFDdbeECDBC ; < SabH44f1tAL60c7dx4D1033CdIP97mqGjThs0l7tIF3nx8iG8QYBI2L6Qi3Pkv85 > > // < PUTS 146,562357851702 ; quote ; 19,1822314605867 ; 18,7985868313749 ; 0,0204081632653061 ; 5,3 ; 17,3599194718309 ; 21,0045434493424 ; -7,2 ; DaF1a057Db1Ec3Bb0dDBFDBa3C4047BcBE16ef4962da89c1BFF0ee5EdF9c795e ; < M1iJPDe4gj860n8o148Kk216Y9Lv12vCYC9XVzsZ0b56OCfKF4O0wC57WtY3Jydm > > // < PUTS 151,796727774977 ; quote ; 20,6210458808969 ; 20,208624963279 ; 0,0204081632653061 ; -1,6 ; 18,6620465222117 ; 22,5800452395821 ; 7,9 ; 7f7ACa8Ce6DdECD5aFfdAa8c2dEf3B3b4f34bD52CD74FcEb8312fda3Bafb0Ef5 ; < 2n6Y8X9qJL064QTE2zL5o2Jx6gP6YMqyf4brcck8R8Yv727o905PuBs1X6ax1iWZ > > // < PUTS 157,031097698253 ; quote ; 22,096482745235 ; 21,6545530903303 ; 0,0204081632653061 ; 6,7 ; 19,9973168844377 ; 24,1956486060324 ; -1,8 ; eEFDF73A82adaa9bAeBe08E3F2f9D1e340BE6B96badDeA5DceFDDdeEde4c83Cc ; < e8mp5lw3oxbH8O6At34uVD0VgPIc55m4Ib07r3Uf2mqEAdW0xl5sOUc4li631kXh > > // Futures_Eurosibenergo_hydrogeneration_LLC // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 88,946246 ; 1,14 ; 77,0230228070175 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; a972FB10dDcd5CbBE0AAaBc8C6bdffb28aD4cbd4a8A0de5A4dC25291ff4DaAAB ; < zvClZ3ZQhz6HTnXpEmy2cFJj0w54Y6ElSerqMlzlW4NxBtZk4XskLTtx36x8dAKT > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 88,9523013634878 ; 1,14008778 ; 77,0223268102109 ; 88,9520513634878 ; 88,9525513634878 ; -8,2 ; -2,4 ; 9 ; 5,8 ; -4,3 ; 3,6 ; -0,56 ; Future21AP19 ; 4EDbC43b7AdfCCd4aEbFED011aEEDBabd61ac5d0BCB5a2E6c097f7ECaF1eE6A3 ; < D90d3oT5UNNp139ra66J68G8zW01351TK4GjC16wWpgK8Z5M878kK34pX3EOmB2j > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 89,9145580176993 ; 1,15381372898453 ; 76,9281401832796 ; 89,9143080176993 ; 89,9148080176993 ; 3,9 ; -7,2 ; 9,4 ; 1,1 ; -0,5 ; 8,4 ; -0,29 ; FutureJU1912 ; f76bdF0F58Ac76bB6Ff6F229Fc2Cce9aeeCFBfBC858Ed03aDda3E91CbAb4Ad3E ; < 7M3yKtfh2PfJwyZ6s4xT2082Aqy9kWXU5XietEX3uxuQMnK0ATv8ZPais0Bd8uBL > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 90,9486428007766 ; 1,18185233402553 ; 75,9543200807455 ; 90,9483928007766 ; 90,9488928007766 ; 4 ; -3,4 ; -0,2 ; 2,3 ; -2,5 ; 3,4 ; -0,92 ; FutureAU1974 ; 5D0e9A5ffcBc3fdBf9FEAB8BBc4Eb8eeBacAAAbeA814EFF07bDeEA1FAacCEdfA ; < mb4ELqStLV619lKlA1vB8nG2tGwzvi7O7EJ8wRQL8yI9lVFW1T45f4bG9SHdl5dR > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 92,0052462605474 ; 1,22526894133997 ; 74,0898379582931 ; 92,0049962605474 ; 92,0054962605474 ; 7 ; 2,6 ; 7,8 ; -1 ; 5,6 ; -3,3 ; -0,07 ; FutureOC1958 ; B97ff8Be10ac97FebCc8Ed27bAfcaCAfBE11589EcA753ac4f0c9adAc4DFEFB4B ; < PN86638rM1l3qA59tqp2ID6G7EB4RdQs58m78sNTc1OKm5rz499YqSzr1D2KYUEt > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 93,1659176345358 ; 1,28574572300012 ; 71,4606086319663 ; 93,1656676345359 ; 93,1661676345358 ; 6,1 ; 4 ; -4,1 ; -5,7 ; 8,9 ; 7,5 ; -0,33 ; FutureDE1972 ; Ea5DEBDCdf6E04134c0DccdCdceAdcacd14B0ecfDe3BA9EF6Afff4A62Ffa754B ; < yRjWGicicY220wT04O327dQyu2cQ6etwxSB9fI5fZDWE3159HVHk75l7YQHHX98F > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 94,3571798915937 ; 1,3655883804194 ; 68,0963552740649 ; 94,3569298915937 ; 94,3574298915937 ; 5,7 ; 1,9 ; -6,5 ; -2,4 ; -9 ; -9,2 ; -0,92 ; FutureFE2016 ; beB9cafc5f74c6BcBd2Bfadc7fb6c6B7cd7eDC8a3EC5e5eFdBaD1FA1fCeFcD9F ; < 5Uc8UUc65RI8k57gG7UXT1948H7uN6eT1e4f75dar464AUv3b24FT7nTPziDL497 > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 95,62077229984 ; 1,46806213248607 ; 64,13400910213 ; 95,62052229984 ; 95,62102229984 ; 4,7 ; -7,8 ; 6,5 ; -5,5 ; 7,7 ; 9 ; -0,09 ; FutureAP2078 ; 5Dfc0CA2FD9C8137ECEBAd77Ad8FDAdAa56224Ad891EDb5AbEf1ADA2C3C488E4 ; < ZAuc3uC5okd3a5LfknHNk1Uf60Fc4z1O2fu2z8e8pqa3yt4y587i7N92lE2w0k7V > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 96,9988918684236 ; 1,59740994169548 ; 59,7226043463018 ; 96,9986418684236 ; 96,9991418684236 ; -3,4 ; -2,9 ; -8,5 ; 9,7 ; 4,2 ; 1,4 ; -0,53 ; FutureJU2017 ; a98aEcad4A221C2c7bCafcB19bDabD35cad0ab4aEe1A05C67C72cCDf3f0FFEec ; < 3Y87l2Q0vASLe3Uo82718O7PZ0ea8dSx80A1J7z52KbN498daU23juzZGtC7w1oe > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 98,2776322988409 ; 1,75897165222092 ; 54,8722092961266 ; 98,2773822988409 ; 98,2778822988409 ; -4,4 ; -8,3 ; -2 ; 1,1 ; -9,9 ; 7 ; -0,76 ; FutureAU2010 ; CdBcDe75bbe6F9bA4eaA8EeaCf0daaC10B7aF808aDfBdBE8CF25FD1cD4beCabE ; < FsdBN05U12H1qHrv9Fz9Zpl8aCMll67SB9q99hnmI7nO92QYLHKWRbHxLKuVfwPj > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 99,8040496306464 ; 1,96039628534162 ; 49,9101401471257 ; 99,8037996306464 ; 99,8042996306464 ; -5,8 ; -2,1 ; 4,2 ; -1,5 ; 3,1 ; 0,2 ; -0,65 ; FutureOC2039 ; 8C3eD99eCCa80CeF9E3aAbdcc0DafeaBAbFFdF59DD2dfd3c4fDeae477A867Bcc ; < roSgZ13Ylk7np66DCPvI0lMk8hRX1HGu7Z7i56PvutXDyzQ678mKqy61mQKC0rGk > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 101,147366505294 ; 2,21161437944796 ; 44,7346305238537 ; 101,147116505294 ; 101,147616505294 ; 4,2 ; -7,8 ; 5,1 ; -3,1 ; 7,5 ; -4,6 ; -0,5 ; FutureDE2099 ; f0ff8D7B6B952eeaDECAa1Bd1b36cC1988fAdB0Eb2dCA56aFDbBfEfC24A4DEE1 ; < 6r2R2l8l2ET4j08I53mhe3782ilBs8526a94I88TKp5C4ZiLGNE8vIUxM719OzTZ > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 102,86105953055 ; 2,52500754758355 ; 39,7369315109529 ; 102,86080953055 ; 102,86130953055 ; 8 ; -0,2 ; 7,4 ; -7,2 ; -4,6 ; -1,5 ; -0,81 ; FutureFE2113 ; da3dAcA6Fb18Fb93dCefd7DFFeAf685FBBCdAfea76Ed51f14E8EFBfD37ca1fDD ; < R3C6G960ZI17QiJrw5YWoE1He6z4XA1xmmK625NFdC5NE6Ol40BKERp5vt9izNET > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 104,422691515863 ; 2,91794417212341 ; 34,786391156303 ; 104,422441515863 ; 104,422941515863 ; 8,9 ; -0,9 ; 2,5 ; -7,6 ; -8,7 ; -2,1 ; -0,75 ; FutureAP2121 ; DcCbCCb6FFeC7Dd05abcEd5627cD40BBF20FfDE706F2FB22b4f6ABAc0Dfe2A6f ; < Tv39stX84p8hlKx12oYMkV90zcY9EqJhDUHiKRy3LD2t0Rmdi4G5NcLZ2RNWp0U6 > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 106,284260486919 ; 3,41278533020502 ; 30,1429668740792 ; 106,284010486919 ; 106,284510486919 ; 1,5 ; 3,7 ; 9,6 ; -4,8 ; 9,3 ; 5,4 ; 0,57 ; FutureJU2125 ; DAfcEcEDCffb3cbea32cAE3Aef7aFB84E5c7Bd5aEF8f5056db0788EDEC2CBef4 ; < 00lvY6pM7uqGIkW6p83m5q1xUn32kVLTALMQxn740H2wMdPx5qJ8XgPE791B2qSn > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 108,079311831265 ; 4,04028402355945 ; 25,7504242773626 ; 108,079061831265 ; 108,079561831265 ; -2,6 ; 4,5 ; -2,7 ; -3 ; -4,7 ; -4,8 ; 0,92 ; FutureAU2191 ; eAaDD7b05DC75DF646Ade4DF7940e7477569af4CeBFe4cfBcdFE7adDEF6EcEDF ; < N8boCg09YF07wz3Id4lOIiZRs0UV14YF20Yglxqf8bQVWA02q9D3VOloM2GR06yT > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 109,807288812178 ; 4,84081984742778 ; 21,6836139895859 ; 109,807038812178 ; 109,807538812178 ; -5,4 ; -3,3 ; -3,2 ; 6,5 ; -5,5 ; 5,9 ; -0,34 ; FutureOC2156 ; fEFddeBb822ba9e705c88E8e39F94bE57Acc1FBAeF2B7f58fecAd06a5e7A68aC ; < 9E31Dt0H4487kdgiOi1t4pXfnzlZ242FG288b07252YK0UuK06y6Se4yN8FHYO75 > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 111,828533850049 ; 5,87033664144765 ; 18,0497650612541 ; 111,828283850049 ; 111,828783850049 ; -9,3 ; 9,5 ; 6,4 ; -4,8 ; 2,7 ; -9,8 ; -0,12 ; FutureDE2111 ; aFC2dFB951d025Acc0F6Ca5ba7bDEFFcbB6aCCAfd68ddfBCFb101CD8f5caBA0e ; < Kn2l0pnfrp0RLgSG7zI5cMsoeU2g3Nps57Gz37Q1Hi2BWzsDDyk5QNQS3818s7nE > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 113,661869611334 ; 7,20582532470991 ; 14,7736087803252 ; 113,661619611334 ; 113,662119611334 ; 4,4 ; 6,9 ; 8,9 ; 3 ; -7,4 ; 7,9 ; -0,53 ; FutureFE2244 ; D2fe3fA02eaC63Ff4Cfac7DcE7146a8dBFac2faFbA46Bda0dEFB4Cb06Cc2Af77 ; < 9SXn4NOzTD548UCu2bWAww0dF9tF4K0XG16M1jeJbI2Xp44a3A5Jg5izl939Co73 > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 115,59159550309 ; 8,95142119724208 ; 11,91321153994 ; 115,59134550309 ; 115,59184550309 ; -2,8 ; -1,1 ; -3 ; 0,5 ; 7,9 ; 0,1 ; -0,18 ; FutureAP2257 ; Df7bbaE0EDdbe740caabB0fA2ac89C9c3a5DFB2bA9DE1aacc58bdf1DADbdE3Ab ; < t8U4i9eL675C941p2D40Yn8a302y1R3okaHql2qWw0dSmkB3B86zvMSE1sed1wlP > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 117,975212872977 ; 11,2553508558275 ; 9,48170016058578 ; 117,974962872977 ; 117,975462872977 ; -4,8 ; 9,1 ; 6,4 ; -8,8 ; -7,9 ; 5,5 ; 0,55 ; FutureJU2243 ; ea72Ae8C34Edd6f4c0c5A7f994d2Ed0FcbDF4D354eFd9EfFc40aaaAC7eAEEc21 ; < CbKM25OV7Bpb3wpTz8v0vTYOcu8jLQ9XDphpx98O4I64G1o4vXP5WjXH1p4s3043 > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 120,594055013077 ; 14,3231732077031 ; 7,4195068553818 ; 120,593805013077 ; 120,594305013077 ; -7,9 ; -7,3 ; -1,6 ; 5,4 ; -9,3 ; 4,8 ; -0,62 ; FutureAU2211 ; 1b6152be9054b6f2BcDaEcfdc2B70c8C4F977c06eb3dfaa323FDd1cEB9D8f29c ; < LO3n20Hj0ax1nCr8IRF4148w2dC1Us02Bw01Y61V4J3QqiX27tI2S9060UZe3lJl > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 122,711404124748 ; 18,447771771189 ; 5,65182796311443 ; 122,711154124748 ; 122,711654124748 ; 8,9 ; 1,4 ; -1,9 ; 5,2 ; 7,3 ; 1,9 ; -0,88 ; FutureOC2266 ; 3f1fBcAB2D2FDe0fAb9B74cc2bCAfbfceddDA8a7446C1b41aa3FE17dAeC6CA92 ; < 1ktwsvUnMu1Ds7gEcTDy4g235n73ODyi8EOyCN8zQO2KglRQOf8jpqtC0QY7FW1d > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 125,27840794657 ; 24,0494945956456 ; 4,20919088126088 ; 125,27815794657 ; 125,27865794657 ; 7,5 ; 2,7 ; -8 ; -1,1 ; 2,2 ; 0,7 ; -0,97 ; FutureDE2276 ; aD0F83fBdeeDf8b6BDFBCACE27FBecAF9aFFCFEF33d4B1e73A07BDC62db97ecf ; < 69ColboEkY9IkRA5z2UwDn7gv9udHgumrIFKXSdB5333X9t7K1HK22GpLVT6W1I3 > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 127,359472854299 ; 31,73289355884 ; 3,01348438704921 ; 127,359222854299 ; 127,359722854299 ; -9,1 ; 3,8 ; -2,8 ; 2,6 ; -9,6 ; 9 ; -0,84 ; FutureFE2394 ; AF9dCC8aCAeB1DDbd4EC58eAAF4bAfBc9afdFbdDEb0F0fb6eD022DA7F2a3AFBC ; < m9A3Mg9w8qlj0369vpF5X7Pt64p4mPfqZwXBGi9KE98fMolcppnAKo4C2156eTg0 > > // < CALLS ; 1Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 47,81038614992 ; quote ; 53,6714134246759 ; 52,5979851561824 ; 0,0204081632653061 ; 1 ; 49,6460574178253 ; 57,6967694315266 ; -2,7 ; CE2cFceedDB4C91D6Ace4FEbb85e16d8B1F5ee5fdEF29b41DCca23Bccb2d7EFA ; < qc4KRCarCrvhu5zM432Z0gRIHWSnVeTn0s8h0sdIGJe4BH64h7Ld2u1R5UE10QMl > > // < CALLS 52,591424764912 ; quote ; 49,1194092921563 ; 48,1370211063132 ; 0,0204081632653061 ; 3 ; 45,4354535952446 ; 52,803364989068 ; -2,5 ; 6321b74Dd6eC56cfbE41dFc2df4CDdCb16afC6D4bAE517b3f76bAefFFecd1e3B ; < V31K5oQr2Z45X9mPMV685h76CH8i2416Tg4j2AphHP7lKgDn7e32ZGhijKv5M0Kk > > // < CALLS 57,372463379904 ; quote ; 44,6476691224842 ; 43,7547157400345 ; 0,0204081632653061 ; -2,1 ; 41,2990939382979 ; 47,9962443066705 ; 7,9 ; FABFf7ad2ECdF6C5F0012DC7Dd7ABbfa6ADdA8aE15Bf813cCaC8D2c45cCb1f4B ; < xHBCukHz1fAMm7iS7NO296kSi8p98qr5FC9r8WjMpWedN8MMwJAeYxT38m2v5n0J > > // < CALLS 62,153501994896 ; quote ; 40,2955533564589 ; 39,4896422893297 ; 0,0204081632653061 ; 3,6 ; 37,2733868547244 ; 43,3177198581933 ; -8,4 ; Ce68cd6b5DA12B8aB9CeA51DcFbCEa72C57cc0B3cEBcdbfEfEdBDD3a24FAC7fc ; < YCF2sctlNRBAJkupiCSOX2z5KfNxWpqkdxQ2k0k3X611g9cyO1V0u7v2H7c3u4HF > > // < CALLS 66,934540609888 ; quote ; 36,1055124059439 ; 35,383402157825 ; 0,0204081632653061 ; -7,1 ; 33,3975989754981 ; 38,8134258363896 ; 7,9 ; dF16db7ebb6cfAaC7faAFeDA0bADEF0bD2a4CcD0Eb507cdd1BeEDa1e4FAdB702 ; < hutuOtiuK80184o4SQM1OC0blUO1CDFlWxG4X5wXN1NS7QWrbs281kFKN439BumP > > // < CALLS 71,71557922488 ; quote ; 32,1187612069275 ; 31,4763859827889 ; 0,0204081632653061 ; -8,8 ; 29,7098541164079 ; 34,527668297447 ; 6,2 ; 8ef8f27d07cd8EEDe1C4ebDd3dC76FC36FeFCaCf32aDF77d0F4d9EBb13bDeFCe ; < 8SAy4U7vT12a2em95P0am0l9nbmR2Xg28F5p8MJ2I3zBN07dg7ejw93nV2Ju69SF > > // < CALLS 76,496617839872 ; quote ; 28,37139808825 ; 27,803970126485 ; 0,0204081632653061 ; -1,1 ; 26,2435432316312 ; 30,4992529448687 ; -6,4 ; 27aD947F3F5cAA7ec75dafa71cfbCeECDaf9D1DacACF27Cbaaa2e2C16b5C40E5 ; < 5msxV22FVbY114R9pv200FISlpzjfYHMMdFIv4y19BjkQ01z914b2EBM8tC4JC5T > > // < CALLS 81,277656454864 ; quote ; 24,8915992243272 ; 24,3937672398406 ; 0,0204081632653061 ; -7,7 ; 23,0247292825026 ; 26,7584691661517 ; 2,7 ; DdedFCf1ADaEbAD5aCDD7Df8C7d1BB305D4c5DbCb8e08fdD7eB0b92BF85B9EbD ; < v5M1x26eYAKcI6UJF3pRZBqk4a61V7lx2iLSkd9TMjrWXX7Now553u75cdc7meY7 > > // < CALLS 86,058695069856 ; quote ; 21,6981222819644 ; 21,2641598363251 ; 0,0204081632653061 ; -3,5 ; 20,0707631108171 ; 23,3254814531117 ; -4,9 ; BA136feBdECdcf286Ed3aAF5FaEfCbeDDFb7ad06CfcC9CF0ceBEdbe29DB33EBa ; < q119vfN65efX102fU8PLVctYskLs3M5gaupNRcIcrWbfiZ2NO938TS51rvZIMvPF > > // < CALLS 90,839733684848 ; quote ; 18,8000367010218 ; 18,4240359670014 ; 0,0204081632653061 ; 4,7 ; 17,3900339484452 ; 20,2100394535985 ; -2,7 ; 0d7aB9ABD7C7dbcB9Be10cCF7fD9B2D60c47d2Cebc69d40cC65BA38CBabd13E8 ; < GMM2y9ydSuANgNYI6LszMNtR28zaW55ch9CE6kF9R8mzc3Klid075UNydd99f35l > > // < CALLS 95,62077229984 ; quote ; 16,1974130106331 ; 15,8734647504204 ; 0,0204081632653061 ; 9,2 ; 14,9826070348356 ; 17,4122189864306 ; -3,8 ; 8a0Cf0b4F1a16A1ccD0f4d227b6bcd7E2ecDB9fBe9E4cAD7CDeACBdE9fef20FC ; < eX4X8U5lZxfUB5TTvEs4dXIL7L3sbu1ihHx3d4YuF9bsd6v9QK2Mt480Y9rxtK2J > > // < CALLS 100,401810914832 ; quote ; 13,8826388518815 ; 13,6049860748439 ; 0,0204081632653061 ; 6,4 ; 12,8414409379904 ; 14,9238367657727 ; 4,1 ; 49aF8a2Ce35eEB7b1CBB130C7cDEcFc50DEACd7fc549C33Eb5231bFCDeA2ae9a ; < Q0zr2ifO05wa9Wx8IvN80Dd9X93gQ6326AD9bi7Z7rV5mAM9wBKUd7B3CUC1r452 > > // < CALLS 105,182849529824 ; quote ; 11,8420480713358 ; 11,605207109909 ; 0,0204081632653061 ; -2,9 ; 10,9538944659856 ; 12,7302016766859 ; -7,7 ; A6df75F2AfFDc27eeDFAC7DBb67edEeB102FcBE409DFea1917eE4AAd65738CeC ; < DcF2ssS6n5ye7RS5b86dBsgz0VObnBNTKg13TE1aa9sb4QQ4g4jQ74DgOvFjXhPf > > // < CALLS 109,963888144816 ; quote ; 10,0576120973883 ; 9,85645985544054 ; 0,0204081632653061 ; 8,1 ; 9,30329119008418 ; 10,8119330046924 ; 5,3 ; 7FFbcceE36Ef164ADD06dc8cB238E9EC1DDDfcE0FAE0bd4dAfb4fAeee65faEb0 ; < 6Vr4W88SH09r6E98ypAWTU7jX8Sgff46rXB7uK21AKPS2m9Gs43qsX5UaaPkPV35 > > // < CALLS 114,744926759808 ; quote ; 8,50851942129926 ; 8,33834903287327 ; 0,0204081632653061 ; -7,1 ; 7,87038046470181 ; 9,1466583778967 ; -0,4 ; fdDA3caEbe7CEef350df4c9fD09fcBf4DCA5B30F514FCF283a7B5f2adcCaA846 ; < DnM9Z2x289TkuLh7F8vRs6ImVqMPv0Rq9kDMm06am54915y1R6541P5Aighv7330 > > // < CALLS 119,5259653748 ; quote ; 7,17254050243703 ; 7,02908969238829 ; 0,0204081632653061 ; 1,2 ; 6,63459996475425 ; 7,71048104011981 ; 5,1 ; 4cefD4f7D0bC3F11DceABaA0aEEE98E4E55B8afabd673A41ea53e8AbBedBCe0B ; < QK0X4OD4oYiy2A5p3ESq596wmD5sX9J05YCK5BmU804H9A3s1M6Zod8tHPEEht28 > > // < CALLS 124,307003989792 ; quote ; 6,02713272602194 ; 5,9065900715015 ; 0,0204081632653061 ; -6,3 ; 5,57509777157029 ; 6,47916768047358 ; 8,9 ; 6Be7c8AA9Ce7bB7E1Aeaaaf78D6cC3Dd8a8ad9d5Fdf4D89c3ea5fA6ddeE2E6f7 ; < l6U7r0nwcXwu92U5W17M92c147E7B9o9ygx58IUKC4SP2ZC7YXeKMp6RaEPQbH9Q > > // < CALLS 129,088042604784 ; quote ; 5,05028078983101 ; 4,94927517403439 ; 0,0204081632653061 ; -8,6 ; 4,67150973059368 ; 5,42905184906834 ; 9,1 ; 1D3bA362DbbD4fe92dfe3Cc6EDcfD223eDCFc3fbeCa0CbecFc4178CABaf2e7eE ; < eaxMj4F7C5G39rQO9YUx69D83rBJ6q6cRAfUEvzFo36bS0vw6Y7VJeG0NoD9dzNQ > > // < CALLS 133,869081219776 ; quote ; 4,22109351113971 ; 4,13667164091692 ; 0,0204081632653061 ; 0,7 ; 3,90451149780423 ; 4,53767552447519 ; -6,2 ; F426ae62C075Ee30c2AEcC061BFeD4c3DCFbdC3cfa4ea7eAEEEb2FCCAe1ED853 ; < C9O9KuLNQNc0h6H38BNJZ23g17U9GaiHPX812809q633BVJV84C59CbrH0Tt7z38 > > // < CALLS 138,650119834768 ; quote ; 3,5201916119162 ; 3,44978777967788 ; 0,0204081632653061 ; -4,4 ; 3,25617724102249 ; 3,78420598280992 ; 9,7 ; b4Dc2F5FCF8DBaf73cF96b04eCef9C6BCdea7E55Fe6B2EeCeC3d67B60dDB3FC7 ; < UFqetNIUOa8mt9HD9KUVxRbC4l1503GgZ80Qym6M0qB5eery97zXz3Km80l5q573 > > // < CALLS 143,43115844976 ; quote ; 2,92992596859076 ; 2,87132744921894 ; 0,0204081632653061 ; -9,8 ; 2,71018152094645 ; 3,14967041623507 ; 2,5 ; 0EDafbE8291d8FBDBbcaCf97C8e6CbeaDDCdBe43BC1EC7c8f69dcFe32C941Df3 ; < Ixgg7Q4M260aW3GEBTY8087NZ15XXPw1XQ7a2QJ9ge7027EVm9Hoi4j0OVk3sfrD > > // // < PUTS ; 1Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 47,81038614992 ; quote ; 0,0585877411035796 ; 0,057415986281508 ; 0,0204081632653061 ; -4 ; 0,0541936605208111 ; 0,062981821686348 ; -0,5 ; 3aCED25D3fb671Ff5Ca2cB5207ab7DdBfABfDdCC531b7dEdECCfbC6D5CEE4fDc ; < ta484ar5dQyg309pBf2Hp7E53wNa9MAp3yOgc4O47uVIc9s3255m0b1fJv01oKpK > > // < PUTS 52,591424764912 ; quote ; 0,145301040226713 ; 0,142395019422178 ; 0,0204081632653061 ; -5,3 ; 0,134403462209709 ; 0,156198618243716 ; -5,3 ; 8dE46d3c6EEf9aDfcF4cD2ECeEFa0eeaDbffCd3Bbe2af702866fFAec7B071dDF ; < AKfK9s3490Oj78U4wUbE6r849D1b8DO2o034FaBwkgDy2x28f3a4569tM97F1XO3 > > // < PUTS 57,372463379904 ; quote ; 0,312278302197384 ; 0,306032736153437 ; 0,0204081632653061 ; -1,3 ; 0,288857429532581 ; 0,335699174862188 ; -1,2 ; 58DFCB9Ef3a6E8DF027fdf89FcaB4e79e70541B8c148FC7C4E0cF838DaC397bC ; < 30g7m4V69d7cvJZ9u6TgWRl0Koe5FOk7xqkxoG1eg3j4GhxFuCl159BYA5s9nRGw > > // < PUTS 62,153501994896 ; quote ; 0,598879967814781 ; 0,586902368458486 ; 0,0204081632653061 ; 0,9 ; 0,553963970228673 ; 0,64379596540089 ; -8,9 ; abd0CA59EaF9BDfb246cbd1BCdeffc25cdEbE0F39faD8cCdBd7d573fd59C2E8f ; < y2IiXmEV3J15Xymr6ehBa7CPc4JNCIW2mGs1040a389vMh28vh5vqrm4zLXaPPiN > > // < PUTS 66,934540609888 ; quote ; 1,04755644894257 ; 1,02660531996372 ; 0,0204081632653061 ; 1,4 ; 0,968989715271879 ; 1,12612318261327 ; -3,3 ; efE464cE2aFcDABb5bc6b7F6e97B1D8AF15EAd2fBc510A5CeeCBdea2DDfBB4Dd ; < p0Nc41VXcv2E0Ob7F08yQyQR6uJJ4edd5qPzwwU15PKL8UNXo2F4W0343fm8fP4E > > // < PUTS 71,71557922488 ; quote ; 1,69952268156894 ; 1,66553222793756 ; 0,0204081632653061 ; 1,5 ; 1,57205848045127 ; 1,82698688268661 ; 0,5 ; DA99b7d71Ee493255CDB3caE6ad3cfBecdcaB8acaEDE0aA5ED8FcEDFA4D41dF7 ; < 5d6DAKq2Sv05YTe4VMo4AhQ7grG5iZOZ3Bnl0D6tCWgDBSxl3NwpX5T2bVbV6naC > > // < PUTS 76,496617839872 ; quote ; 2,59087699453423 ; 2,53905945464354 ; 0,0204081632653061 ; 8 ; 2,39656121994416 ; 2,78519276912429 ; -9,8 ; EDBAdA3aBFCF775dEfBfB5Aa2ECBbFADBEd415dEDe7DC663EebbDAFCAeCCeFED ; < tna4GZQFBD2LH00qqn3DUovt46BQ4Ezc99mk9y2w9UM910s3hWUEz96hKtK0uOtM > > // < PUTS 81,277656454864 ; quote ; 3,74979556225415 ; 3,67479965100907 ; 0,0204081632653061 ; -5,7 ; 3,46856089508509 ; 4,03103022942321 ; 6,2 ; a3Cc6AdaAdb1abAAfB4cdAeEbd8C42BD0faFfD38A6B7FaFff62F9EFDae5A7e87 ; < TDdI2Qo0E9gSPXLIY4tV9kw3ALP8UbLgtT9LPlSh0KN4ZHk02m3uJfm5b8RNj90N > > // < PUTS 86,058695069856 ; quote ; 5,19503605153417 ; 5,09113533050349 ; 0,0204081632653061 ; 9,9 ; 4,80540834766911 ; 5,58466375539924 ; 9 ; c6f1Dbd67bDacab75FE24BFbfc9eA3bdD1eeBbC5021ed0bd8f1dFB52AbC5CD0d ; < gI74qOUk5Ci29u10eUzb2qVqIimB9x236xZ878woU0lq4o607N9uKU4AvN0pDN1n > > // < PUTS 90,839733684848 ; quote ; 6,93566790223434 ; 6,79695454418966 ; 0,0204081632653061 ; 3,8 ; 6,41549280956677 ; 7,45584299490192 ; 6,2 ; Dd018e62cFfdb8bb6DDc1DBECD22eBBbE9FFad656bBc6bfCc8acC605beb022Ec ; < 0O2ULZ6Omp7AtHLzzd6YEWT7ri8myQZ6pG7EjQ19J5QZZunAjr36YqgGt8cg5nd8 > > // < PUTS 95,62077229984 ; quote ; 8,97176164348836 ; 8,7923264106186 ; 0,0204081632653061 ; 6 ; 8,29887952022674 ; 9,64464376674999 ; 2,3 ; 680cB9EAc9dCc2aAbDF881b3DEc8ECCFb5ea5b42Bf0fcbd8dDd4ED446bbdA7c5 ; < I3b657vD68JXTiv8c2HLn10JsZPt6m1xO9x8D45sHrVA8pNlFaj49bRLPt95QIcG > > // < PUTS 100,401810914832 ; quote ; 11,2957049163796 ; 11,069790818052 ; 0,0204081632653061 ; -9,1 ; 10,4485270476511 ; 12,1428827851081 ; -8,4 ; 9Ceaaa3bBEeebF6FCcd6ACA62FDC4A3dAaFfFFbfFaafadC4BD800bE4aDA7B0bc ; < LRBn8mrdMmuGFPbfR7aHYWRT824zWyXhH7D34WwxY3bFA41EpI0H64F0vZYU1psE > > // < PUTS 105,182849529824 ; quote ; 13,8938315674766 ; 13,6159549361271 ; 0,0204081632653061 ; 8,4 ; 12,8517941999158 ; 14,9358689350373 ; 4,5 ; 0ddcabC9BC4Ef0Cbd473D29Da4b40FD6c9FEdCA1dc95CAFcFA8E4CDbd30DA6c2 ; < r1Dpe20528g8v2Yh0L50r7eZ1510P33z6zPHVWh48W97vslRpsbbymV4or3ii0kM > > // < PUTS 109,963888144816 ; quote ; 16,7481130251719 ; 16,4131507646684 ; 0,0204081632653061 ; -0,5 ; 15,492004548284 ; 18,0042215020598 ; -3,8 ; FbBEFA9eFaaDF82bEbc3FCdeEA2fb57fbeEada9BdD3A1aC8CbfED8f1a7a71Aad ; < BgiAeWVMNpfXvzUK8KOEiYQd5DVHig5eIRW7iwOFkoHTOd77ods9gKdu7nfu65g3 > > // < PUTS 114,744926759808 ; quote ; 19,8377377807256 ; 19,4409830251111 ; 0,0204081632653061 ; -4,8 ; 18,3499074471712 ; 21,32556811428 ; -6,1 ; 02ca58CaBAa8BaCE09A8d72acd8aFe6eFCEcE674322CCb6EBCcEdbA6df7AcE3c ; < qJeOsu1y1uTo78x6dM2Gx26Gin2r90BB2LhBj1W3U06f3ay5r0P80wWMunMIV58q > > // < PUTS 119,5259653748 ; quote ; 23,1404762935061 ; 22,677666767636 ; 0,0204081632653061 ; -4,2 ; 21,4049405714932 ; 24,8760120155191 ; 5,2 ; da9Db7edCBc4B0c39fc5e9df7ad471aEA1C4bCC620Ad0bdAf64Ffed5ba6DCd9a ; < v31ozE6ic21778ze7t8Y45r8NgEMvc0xxrsGuDsNWVQ6al8aw4Bi348JAz8oO854 > > // < PUTS 124,307003989792 ; quote ; 26,6337859487338 ; 26,1011102297591 ; 0,0204081632653061 ; 0,8 ; 24,6362520025788 ; 28,6313198948888 ; 9,4 ; AEA7DA85DCC4aCEE2EbA41ef6Fce3Baf4aD0bfb6615B99FAeCcEea12cDF1dEd9 ; < 537rT3nn34Pgkf2LG8xgXjzvVBOlA8696ydf105O2y2HLkOA6lMQVVU4iu4T6X58 > > // < PUTS 129,088042604784 ; quote ; 30,2956514441856 ; 29,6897384153019 ; 0,0204081632653061 ; -0,9 ; 28,0234775858717 ; 32,5678253024996 ; -0,9 ; Dc0BF7e709B5E2fa2ccCD2A0FdFA8975eea8f97f3ACFA6Bb76ffC02CC81e2d2e ; < M0qG0G0R9MllqPOGRZ6FgdsN7AENtm81bB2c2oopH2f78YPu4DS3LH4vOr4G5PaM > > // < PUTS 133,869081219776 ; quote ; 34,1051815971371 ; 33,4230779651944 ; 0,0204081632653061 ; 8,5 ; 31,5472929773518 ; 36,6630702169224 ; -3,7 ; 8213bFbAAA96DaaE2D3d00E8c80eEff9fFD2aD8a46Bc5Df8e9dAE7C0911c3e80 ; < 81Ir6CQ5JD5tu74IRL9R8ja8dNj2EYyVjo1Sc1UE7NN97l9VSQezuZAqfBV61w77 > > // < PUTS 138,650119834768 ; quote ; 38,0429971295564 ; 37,2821371869653 ; 0,0204081632653061 ; 8,1 ; 35,1897723448397 ; 40,8962219142731 ; -8,6 ; E5A3cCefabe1ED1Df3815FFcBaBBDcfAAa6F3AfaDbEEE7cb3E88d90f1Af7B5Ab ; < 7n0ND6Gw28Kru07O8Kp69nni9O116d8xhSeD5Se5O7nx8V86PQDk5c229O06c75S > > // < PUTS 143,43115844976 ; quote ; 42,0914489178737 ; 41,2496199395162 ; 0,0204081632653061 ; 2 ; 38,9345902490332 ; 45,2483075867142 ; 3,6 ; 2D8DBbE93DB8EbcbE7EC1FBcCE5558E4d22fEcF444E3EECCcCec738EC6A3CfFC ; < EnsPx917Qc08b5fazeTZFGfo8cnoeqX36RSQW637yFoMg1mk7CW651xTyq8q146Z > > // Futures_Eurosibenergo_hydrogeneration_LLC // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 88,946246 ; 1,14 ; 77,0230228070175 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; a972FB10dDcd5CbBE0AAaBc8C6bdffb28aD4cbd4a8A0de5A4dC25291ff4DaAAB ; < zvClZ3ZQhz6HTnXpEmy2cFJj0w54Y6ElSerqMlzlW4NxBtZk4XskLTtx36x8dAKT > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 88,9523013634878 ; 1,14008778 ; 77,0223268102109 ; 88,9520513634878 ; 88,9525513634878 ; -8,2 ; -2,4 ; 9 ; 5,8 ; -4,3 ; 3,6 ; -0,56 ; Future21AP19 ; 4EDbC43b7AdfCCd4aEbFED011aEEDBabd61ac5d0BCB5a2E6c097f7ECaF1eE6A3 ; < D90d3oT5UNNp139ra66J68G8zW01351TK4GjC16wWpgK8Z5M878kK34pX3EOmB2j > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 89,9145580176993 ; 1,15381372898453 ; 76,9281401832796 ; 89,9143080176993 ; 89,9148080176993 ; 3,9 ; -7,2 ; 9,4 ; 1,1 ; -0,5 ; 8,4 ; -0,29 ; FutureJU1912 ; f76bdF0F58Ac76bB6Ff6F229Fc2Cce9aeeCFBfBC858Ed03aDda3E91CbAb4Ad3E ; < 7M3yKtfh2PfJwyZ6s4xT2082Aqy9kWXU5XietEX3uxuQMnK0ATv8ZPais0Bd8uBL > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 90,9486428007766 ; 1,18185233402553 ; 75,9543200807455 ; 90,9483928007766 ; 90,9488928007766 ; 4 ; -3,4 ; -0,2 ; 2,3 ; -2,5 ; 3,4 ; -0,92 ; FutureAU1974 ; 5D0e9A5ffcBc3fdBf9FEAB8BBc4Eb8eeBacAAAbeA814EFF07bDeEA1FAacCEdfA ; < mb4ELqStLV619lKlA1vB8nG2tGwzvi7O7EJ8wRQL8yI9lVFW1T45f4bG9SHdl5dR > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 92,0052462605474 ; 1,22526894133997 ; 74,0898379582931 ; 92,0049962605474 ; 92,0054962605474 ; 7 ; 2,6 ; 7,8 ; -1 ; 5,6 ; -3,3 ; -0,07 ; FutureOC1958 ; B97ff8Be10ac97FebCc8Ed27bAfcaCAfBE11589EcA753ac4f0c9adAc4DFEFB4B ; < PN86638rM1l3qA59tqp2ID6G7EB4RdQs58m78sNTc1OKm5rz499YqSzr1D2KYUEt > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 93,1659176345358 ; 1,28574572300012 ; 71,4606086319663 ; 93,1656676345359 ; 93,1661676345358 ; 6,1 ; 4 ; -4,1 ; -5,7 ; 8,9 ; 7,5 ; -0,33 ; FutureDE1972 ; Ea5DEBDCdf6E04134c0DccdCdceAdcacd14B0ecfDe3BA9EF6Afff4A62Ffa754B ; < yRjWGicicY220wT04O327dQyu2cQ6etwxSB9fI5fZDWE3159HVHk75l7YQHHX98F > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 94,3571798915937 ; 1,3655883804194 ; 68,0963552740649 ; 94,3569298915937 ; 94,3574298915937 ; 5,7 ; 1,9 ; -6,5 ; -2,4 ; -9 ; -9,2 ; -0,92 ; FutureFE2016 ; beB9cafc5f74c6BcBd2Bfadc7fb6c6B7cd7eDC8a3EC5e5eFdBaD1FA1fCeFcD9F ; < 5Uc8UUc65RI8k57gG7UXT1948H7uN6eT1e4f75dar464AUv3b24FT7nTPziDL497 > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 95,62077229984 ; 1,46806213248607 ; 64,13400910213 ; 95,62052229984 ; 95,62102229984 ; 4,7 ; -7,8 ; 6,5 ; -5,5 ; 7,7 ; 9 ; -0,09 ; FutureAP2078 ; 5Dfc0CA2FD9C8137ECEBAd77Ad8FDAdAa56224Ad891EDb5AbEf1ADA2C3C488E4 ; < ZAuc3uC5okd3a5LfknHNk1Uf60Fc4z1O2fu2z8e8pqa3yt4y587i7N92lE2w0k7V > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 96,9988918684236 ; 1,59740994169548 ; 59,7226043463018 ; 96,9986418684236 ; 96,9991418684236 ; -3,4 ; -2,9 ; -8,5 ; 9,7 ; 4,2 ; 1,4 ; -0,53 ; FutureJU2017 ; a98aEcad4A221C2c7bCafcB19bDabD35cad0ab4aEe1A05C67C72cCDf3f0FFEec ; < 3Y87l2Q0vASLe3Uo82718O7PZ0ea8dSx80A1J7z52KbN498daU23juzZGtC7w1oe > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 98,2776322988409 ; 1,75897165222092 ; 54,8722092961266 ; 98,2773822988409 ; 98,2778822988409 ; -4,4 ; -8,3 ; -2 ; 1,1 ; -9,9 ; 7 ; -0,76 ; FutureAU2010 ; CdBcDe75bbe6F9bA4eaA8EeaCf0daaC10B7aF808aDfBdBE8CF25FD1cD4beCabE ; < FsdBN05U12H1qHrv9Fz9Zpl8aCMll67SB9q99hnmI7nO92QYLHKWRbHxLKuVfwPj > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 99,8040496306464 ; 1,96039628534162 ; 49,9101401471257 ; 99,8037996306464 ; 99,8042996306464 ; -5,8 ; -2,1 ; 4,2 ; -1,5 ; 3,1 ; 0,2 ; -0,65 ; FutureOC2039 ; 8C3eD99eCCa80CeF9E3aAbdcc0DafeaBAbFFdF59DD2dfd3c4fDeae477A867Bcc ; < roSgZ13Ylk7np66DCPvI0lMk8hRX1HGu7Z7i56PvutXDyzQ678mKqy61mQKC0rGk > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 101,147366505294 ; 2,21161437944796 ; 44,7346305238537 ; 101,147116505294 ; 101,147616505294 ; 4,2 ; -7,8 ; 5,1 ; -3,1 ; 7,5 ; -4,6 ; -0,5 ; FutureDE2099 ; f0ff8D7B6B952eeaDECAa1Bd1b36cC1988fAdB0Eb2dCA56aFDbBfEfC24A4DEE1 ; < 6r2R2l8l2ET4j08I53mhe3782ilBs8526a94I88TKp5C4ZiLGNE8vIUxM719OzTZ > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 102,86105953055 ; 2,52500754758355 ; 39,7369315109529 ; 102,86080953055 ; 102,86130953055 ; 8 ; -0,2 ; 7,4 ; -7,2 ; -4,6 ; -1,5 ; -0,81 ; FutureFE2113 ; da3dAcA6Fb18Fb93dCefd7DFFeAf685FBBCdAfea76Ed51f14E8EFBfD37ca1fDD ; < R3C6G960ZI17QiJrw5YWoE1He6z4XA1xmmK625NFdC5NE6Ol40BKERp5vt9izNET > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 104,422691515863 ; 2,91794417212341 ; 34,786391156303 ; 104,422441515863 ; 104,422941515863 ; 8,9 ; -0,9 ; 2,5 ; -7,6 ; -8,7 ; -2,1 ; -0,75 ; FutureAP2121 ; DcCbCCb6FFeC7Dd05abcEd5627cD40BBF20FfDE706F2FB22b4f6ABAc0Dfe2A6f ; < Tv39stX84p8hlKx12oYMkV90zcY9EqJhDUHiKRy3LD2t0Rmdi4G5NcLZ2RNWp0U6 > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 106,284260486919 ; 3,41278533020502 ; 30,1429668740792 ; 106,284010486919 ; 106,284510486919 ; 1,5 ; 3,7 ; 9,6 ; -4,8 ; 9,3 ; 5,4 ; 0,57 ; FutureJU2125 ; DAfcEcEDCffb3cbea32cAE3Aef7aFB84E5c7Bd5aEF8f5056db0788EDEC2CBef4 ; < 00lvY6pM7uqGIkW6p83m5q1xUn32kVLTALMQxn740H2wMdPx5qJ8XgPE791B2qSn > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 108,079311831265 ; 4,04028402355945 ; 25,7504242773626 ; 108,079061831265 ; 108,079561831265 ; -2,6 ; 4,5 ; -2,7 ; -3 ; -4,7 ; -4,8 ; 0,92 ; FutureAU2191 ; eAaDD7b05DC75DF646Ade4DF7940e7477569af4CeBFe4cfBcdFE7adDEF6EcEDF ; < N8boCg09YF07wz3Id4lOIiZRs0UV14YF20Yglxqf8bQVWA02q9D3VOloM2GR06yT > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 109,807288812178 ; 4,84081984742778 ; 21,6836139895859 ; 109,807038812178 ; 109,807538812178 ; -5,4 ; -3,3 ; -3,2 ; 6,5 ; -5,5 ; 5,9 ; -0,34 ; FutureOC2156 ; fEFddeBb822ba9e705c88E8e39F94bE57Acc1FBAeF2B7f58fecAd06a5e7A68aC ; < 9E31Dt0H4487kdgiOi1t4pXfnzlZ242FG288b07252YK0UuK06y6Se4yN8FHYO75 > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 111,828533850049 ; 5,87033664144765 ; 18,0497650612541 ; 111,828283850049 ; 111,828783850049 ; -9,3 ; 9,5 ; 6,4 ; -4,8 ; 2,7 ; -9,8 ; -0,12 ; FutureDE2111 ; aFC2dFB951d025Acc0F6Ca5ba7bDEFFcbB6aCCAfd68ddfBCFb101CD8f5caBA0e ; < Kn2l0pnfrp0RLgSG7zI5cMsoeU2g3Nps57Gz37Q1Hi2BWzsDDyk5QNQS3818s7nE > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 113,661869611334 ; 7,20582532470991 ; 14,7736087803252 ; 113,661619611334 ; 113,662119611334 ; 4,4 ; 6,9 ; 8,9 ; 3 ; -7,4 ; 7,9 ; -0,53 ; FutureFE2244 ; D2fe3fA02eaC63Ff4Cfac7DcE7146a8dBFac2faFbA46Bda0dEFB4Cb06Cc2Af77 ; < 9SXn4NOzTD548UCu2bWAww0dF9tF4K0XG16M1jeJbI2Xp44a3A5Jg5izl939Co73 > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 115,59159550309 ; 8,95142119724208 ; 11,91321153994 ; 115,59134550309 ; 115,59184550309 ; -2,8 ; -1,1 ; -3 ; 0,5 ; 7,9 ; 0,1 ; -0,18 ; FutureAP2257 ; Df7bbaE0EDdbe740caabB0fA2ac89C9c3a5DFB2bA9DE1aacc58bdf1DADbdE3Ab ; < t8U4i9eL675C941p2D40Yn8a302y1R3okaHql2qWw0dSmkB3B86zvMSE1sed1wlP > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 117,975212872977 ; 11,2553508558275 ; 9,48170016058578 ; 117,974962872977 ; 117,975462872977 ; -4,8 ; 9,1 ; 6,4 ; -8,8 ; -7,9 ; 5,5 ; 0,55 ; FutureJU2243 ; ea72Ae8C34Edd6f4c0c5A7f994d2Ed0FcbDF4D354eFd9EfFc40aaaAC7eAEEc21 ; < CbKM25OV7Bpb3wpTz8v0vTYOcu8jLQ9XDphpx98O4I64G1o4vXP5WjXH1p4s3043 > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 120,594055013077 ; 14,3231732077031 ; 7,4195068553818 ; 120,593805013077 ; 120,594305013077 ; -7,9 ; -7,3 ; -1,6 ; 5,4 ; -9,3 ; 4,8 ; -0,62 ; FutureAU2211 ; 1b6152be9054b6f2BcDaEcfdc2B70c8C4F977c06eb3dfaa323FDd1cEB9D8f29c ; < LO3n20Hj0ax1nCr8IRF4148w2dC1Us02Bw01Y61V4J3QqiX27tI2S9060UZe3lJl > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 122,711404124748 ; 18,447771771189 ; 5,65182796311443 ; 122,711154124748 ; 122,711654124748 ; 8,9 ; 1,4 ; -1,9 ; 5,2 ; 7,3 ; 1,9 ; -0,88 ; FutureOC2266 ; 3f1fBcAB2D2FDe0fAb9B74cc2bCAfbfceddDA8a7446C1b41aa3FE17dAeC6CA92 ; < 1ktwsvUnMu1Ds7gEcTDy4g235n73ODyi8EOyCN8zQO2KglRQOf8jpqtC0QY7FW1d > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 125,27840794657 ; 24,0494945956456 ; 4,20919088126088 ; 125,27815794657 ; 125,27865794657 ; 7,5 ; 2,7 ; -8 ; -1,1 ; 2,2 ; 0,7 ; -0,97 ; FutureDE2276 ; aD0F83fBdeeDf8b6BDFBCACE27FBecAF9aFFCFEF33d4B1e73A07BDC62db97ecf ; < 69ColboEkY9IkRA5z2UwDn7gv9udHgumrIFKXSdB5333X9t7K1HK22GpLVT6W1I3 > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 127,359472854299 ; 31,73289355884 ; 3,01348438704921 ; 127,359222854299 ; 127,359722854299 ; -9,1 ; 3,8 ; -2,8 ; 2,6 ; -9,6 ; 9 ; -0,84 ; FutureFE2394 ; AF9dCC8aCAeB1DDbd4EC58eAAF4bAfBc9afdFbdDEb0F0fb6eD022DA7F2a3AFBC ; < m9A3Mg9w8qlj0369vpF5X7Pt64p4mPfqZwXBGi9KE98fMolcppnAKo4C2156eTg0 > > // < CALLS ; 2Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 52,2113457579316 ; quote ; 57,5879066477486 ; 56,4361485147936 ; 0,0204081632653061 ; 4,8 ; 53,124843882548 ; 62,0509694129491 ; -6 ; 9eA12a75DEa9b7C5cDfCdcFD62b5FDbAb6eC0645edcbfe6Cda9fdF4Feb63FbB1 ; < W0OEkMUjF24dLTeze96bjICZfQIO1AHBR5n68PHmKmC4944Ui74F5T86x0Q1768k > > // < CALLS 57,4324803337247 ; quote ; 53,6044676860604 ; 52,5323783323391 ; 0,0204081632653061 ; -1,6 ; 49,4501214403907 ; 57,75881393173 ; 8,6 ; 9F3bC5e6CdbD8FE3D460de26bc8EfCC3Ea4f25b82eab0BE1fdD215f76caadF81 ; < Aq0qO8HbAI535npnFNwa45Lj6tDku0wev4Z6qr3p0zOGG7H14qG8o7wl42IScST1 > > // < CALLS 62,6536149095179 ; quote ; 49,749238783706 ; 48,7542540080319 ; 0,0204081632653061 ; -4,3 ; 45,8936727779688 ; 53,6048047894432 ; 4,8 ; FDeEb9F4AA3CDFaFb0efD86DEbfFaaddBC0f3DCBD7CeAE0AcfFe73eAbFB8d1Ad ; < X1PMN8y6f386Lt8G75wK0r5eXLNq60kIDPHsx23808kbNl0veyt06Zn7TK4uYBQl > > // < CALLS 67,874749485311 ; quote ; 46,043352958261 ; 45,1224858990958 ; 0,0204081632653061 ; -1,2 ; 42,4749931039958 ; 49,6117128125262 ; -2,3 ; D5aEfF8efAe7c1A5cA2A5a9Aead2bAecabBF2D1d45a23fc8cEEeBfcE9698cBEc ; < Ks616KW4u6P9qITpCGuz5O64H391fIErER170HHGEWi3GWC4cKX1yYV7AxPhn89r > > // < CALLS 73,0958840611042 ; quote ; 42,5041624904487 ; 41,6540792406398 ; 0,0204081632653061 ; 6,2 ; 39,2100898974389 ; 45,7982350834585 ; 0,4 ; d76bB5AfDEbFBC0CcFA9B2e2Ba51deDe3DfaF96adCb2B3326b3AEB12C837B00f ; < 7h4QLAp1QEbnKR6zR2UmyB8yP05dlX3nd2PKCXhvj0Cyq61g12VDBH4D4dTuX8KB > > // < CALLS 78,3170186368973 ; quote ; 39,1447745021317 ; 38,3618790120891 ; 0,0204081632653061 ; -8,5 ; 36,1110544782165 ; 42,1784945260469 ; 1,2 ; d1E2Fb35C1CffD7FFBEAAcccbcAf7BFBfe3BbE2fa16BEFCdEbAeCb61177fDCF8 ; < wCL93ENMV7020369fjAslV8C572avydUTdKwxt6xWE80v2sAhP30DFdoHUuiBpbk > > // < CALLS 83,5381532126905 ; quote ; 35,9740072988448 ; 35,2545271528679 ; 0,0204081632653061 ; -1,7 ; 33,1860217331843 ; 38,7619928645052 ; 0,8 ; 4d29cAaFA7C4FA1DDDea0d4BAAF5EFcc4a0AA3AEdf4BcC6eADEd60ab71Fda4f4 ; < pTTgjc6gFxxMHXzYZW8qC3xpJv9kr26Xk5Hs0SsOdfWa3o3M9LA4SUiI1x1uXuIb > > // < CALLS 88,7592877884836 ; quote ; 32,9966443893104 ; 32,3367115015242 ; 0,0204081632653061 ; 1 ; 30,4394044491389 ; 35,553884329482 ; 9,5 ; 5DDcACFFFCed9aaCF4Cc53Eaf5eBB20c9bbDA7ecaddD287CFeca2A5d5e9DFa6E ; < 66s5HOmTY0kN2vKlC04e8XxfCt94T79Hujy9GxraQh2UHQypIONwSs6hBj418P2D > > // < CALLS 93,9804223642768 ; quote ; 30,2138736853229 ; 29,6095962116165 ; 0,0204081632653061 ; 9,6 ; 27,8722984747104 ; 32,5554488959354 ; 2 ; DbDDebDEDaBac5c76ccBeA1F8F147AfDBF0bbcE6ffaa6e97209cC53CC5ACACDA ; < IAXQxHclsRq9488tzwfdov7aYw4YgetFR302rk0252x2e8R7az225CGRI4kpeBf5 > > // < CALLS 99,20155694007 ; quote ; 27,623821116272 ; 27,0713446939466 ; 0,0204081632653061 ; 4 ; 25,4829749797609 ; 29,7646672527831 ; 8,1 ; 46c77DFbD1bBC1BfE9Cb7AD647aEF2FaeE336Ec4f8ddC5eeaac712bbFDfBA4e8 ; < bv22cK6099tkD47gZ7kW5ksvy9etH1SAAQi016Bh7U9Q6SwqwxBIs0iq70oSoFMq > > // < CALLS 104,422691515863 ; quote ; 25,2221118387227 ; 24,7176696019483 ; 0,0204081632653061 ; -6,2 ; 23,2673981712217 ; 27,1768255062238 ; 6,5 ; 2cfb53fFbf20ffFCBf2aF9BD3Ea4F1C53bAAb6ACc95b1caCF99d6EeEBDbe6b6b ; < 973s86tdDG7vus94Uyv4a5y5rsq4G6U525nZn16Q63o23Mi5BM894mqb6lCziY29 > > // < CALLS 109,643826091656 ; quote ; 23,0024138329086 ; 22,5423655562505 ; 0,0204081632653061 ; -1,4 ; 21,2197267608582 ; 24,7851009049591 ; -5,6 ; Fed2aa56426CFbCBFFEBe7dbdED1DaA3B3F9cB0d7b4bf6EC8d1bAAeCeBdA95CA ; < 4banbYihaChD878kEr0ziuFZ3Foj2z95qD80j6ayzvqqLY8OacEO98W8C6Rl0mml > > // < CALLS 114,864960667449 ; quote ; 20,9569361662668 ; 20,5377974429415 ; 0,0204081632653061 ; -9,8 ; 19,3327736133811 ; 22,5810987191525 ; -3,9 ; E3279aCC00Ef9144Cb5c4B3EC9144359Ac6Ea2772b600767AebDdCC6C4E4ACbC ; < N8583KAATSB5OvtQA3LT7MDUXpS0ky8Q1xo7Frj54IxO7VOSWsdf8Zq0qoSJ48nk > > // < CALLS 120,086095243243 ; quote ; 19,0768673163296 ; 18,695329970003 ; 0,0204081632653061 ; 6,4 ; 17,598410099314 ; 20,5553245333451 ; -6,3 ; dE0BEFBc1abFccC50a0Ea1dFde7da83e5B8CaF5228aefbEAEB9bcc2C0CCa843F ; < 1USTI330qe7GTk052N22Iy61DbbsjqmT69FWHSml3FR6779XMLF96dony7wHRB6W > > // < CALLS 125,307229819036 ; quote ; 17,3527481632677 ; 17,0056932000023 ; 0,0204081632653061 ; -4,3 ; 16,0079101806144 ; 18,6975861459209 ; 7,3 ; cBbB8EFA95aAcBbCaDCBE08778ADbDCe1fF9feeAf9eC9CbEcFDEe7CBdbfee99F ; < 2OnkQ168uRjA9y62U31Mbkzvbbw067Qzj2z997RWE42QWvaDSqUgt9ReJd9hI2a9 > > // < CALLS 130,528364394829 ; quote ; 15,7747803335794 ; 15,4592847269078 ; 0,0204081632653061 ; -7,7 ; 14,552234857727 ; 16,9973258094318 ; 9,6 ; fDE2dF8bF0BfebE2ebabAc0F1f8DB2AcC47f3bdC4fDdFDb4ddDBfbe3cBcC1CeE ; < Kqg6rgYa3RI1e91HRg7qy25Z2H49oEniz652uX9zf3N6992A19NH9DyHR16zlrg8 > > // < CALLS 135,749498970622 ; quote ; 14,3330742666231 ; 14,0464127812907 ; 0,0204081632653061 ; -5,9 ; 13,2222610109598 ; 15,4438875222864 ; -2,2 ; 5933ABa0feaE09BbfcAACFFcFB0eCc0acff2d2Fb4281D19afb17cDae1D85F65a ; < gro7M1dr985WmIc7XUgxnc63V1wD7f2pkYy93uo1dI63z2vTu2qPg9D8OUZF8Rqm > > // < CALLS 140,970633546415 ; quote ; 13,0178433568744 ; 12,7574864897369 ; 0,0204081632653061 ; -4,2 ; 12,0089604967166 ; 14,0267262170321 ; 8,6 ; F3Be4Acfebc7F36db2cdf9eD1f5b0CbA350aF2E5f980afdCcA2Ee898CABE0c7E ; < nl590Z2X5Dh5cd5TS44IEl12svd3N3EL9988FodK7nc17w3LIY97939JbkFINBEj > > // < CALLS 146,191768122208 ; quote ; 11,8195513380887 ; 11,5831603113269 ; 0,0204081632653061 ; 5 ; 10,9035361093868 ; 12,7355665667906 ; -1,8 ; 8eCe0bD8f1daBdcEEEEdCEaf7fa3CAAcEcD0eccDeC8aF79aF9BdBcFbc4eBD18d ; < xih273O05BIFbv9V48aUKrET5KX65CRmSQ31LGI0K7vACHKICWK0Q7863VUGXU83 > > // < CALLS 151,412902698002 ; quote ; 10,729020132261 ; 10,5144397296158 ; 0,0204081632653061 ; 9,4 ; 9,89752107201077 ; 11,5605191925112 ; 8 ; E55DC1b7Acd9Dc7d1013Ed2bC4EF1655bBFbC26bC5bdE97A2fd2d57dB9d88C40 ; < wp9hx8h47Q3KoW8UXPkuka7dmS8W4IhdsexraEe569XAdZGNS3M9q7hPlBDE2W6u > > // < CALLS 156,634037273795 ; quote ; 9,73750498525262 ; 9,54275488554756 ; 0,0204081632653061 ; -8 ; 8,98284834889554 ; 10,4921616216097 ; 5,5 ; 6EabA0bBBa9Fe08AB5Fe2E1cc3ee7bfB0dcc5B98AEB02aeB3ABAAcbeE5Df00Df ; < 3lAavvkbA4yyd81BCqD0gxLoAq89JVJmhD446UZ1DOCcWk3ELy3vg2Rx01cmD36r > > // // < PUTS ; 2Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 52,2113457579316 ; quote ; 0,408665521929223 ; 0,400492211490638 ; 0,0204081632653061 ; 6 ; 0,376993943979708 ; 0,440337099878737 ; 1,4 ; Df2F6b8ddfC6E2D9FB67eDFF2bE00859FFAcdDED2Fe3CCFbC61B2Bd0152ff91D ; < Ahpj25k2dUaGxxvORYGCUoR2427C87173lmV9S4W8342jQuXcW7MysUL7X3XRIj7 > > // < PUTS 57,4324803337247 ; quote ; 0,707302447659103 ; 0,693156398705921 ; 0,0204081632653061 ; 9,2 ; 0,652486507965523 ; 0,762118387352683 ; 4,8 ; EaCD5BfA6Be2cD3AF30CB0FafF409dfC2bfCA8731ABf1bbceF47A2ac36c6F55c ; < 2mAq765ISISncHF90BrVN84dO1G5Mo4V0B07u4uL66X4UUTxAo48BiHLqjhOXmqq > > // < PUTS 62,6536149095179 ; quote ; 1,13414943272281 ; 1,11146644406835 ; 0,0204081632653061 ; 7,3 ; 1,04625285168679 ; 1,22204601375883 ; -8,5 ; 0BaBDccbDdDCABaa5A29ECFC5DCA1d4FFCA9F2cB8cf637Fbe1190dcfba1AFE4D ; < gqJI53Eslr7Hc6hOWlab9z0ZQoDv2tPE061Tjg5C3319VUI99H7v4qwflI96Q3C0 > > // < PUTS 67,874749485311 ; quote ; 1,71033949469589 ; 1,67613270480197 ; 0,0204081632653061 ; 0,3 ; 1,57778818385696 ; 1,84289080553482 ; 7,2 ; daAeCEB8eCdcf6a7fFaAFF3C7CdF0DaBCD6cA82f3c6E9a665B0DF7eEdfcb6e96 ; < UAyn8I66IZlhnU661B9ggpL12S25I4n954OIyqBX2xtCrSMwDv9M537024x9by25 > > // < PUTS 73,0958840611042 ; quote ; 2,45322491430167 ; 2,40416041601564 ; 0,0204081632653061 ; -8,3 ; 2,26309998344329 ; 2,64334984516005 ; -9 ; feFFfc49aefD5AeDF7a0CcF497C725C06B4eAdbE11fCD5eBb9bcBAa1b4a45fDe ; < a41zzZDJ4H8hesGErdQvramy8kb0RTfrgn6oW5spbCK10iZGyux7AtYuAuFYeX87 > > // < PUTS 78,3170186368973 ; quote ; 3,37591281340272 ; 3,30839455713467 ; 0,0204081632653061 ; -4,5 ; 3,11427957036401 ; 3,63754605644143 ; 5,1 ; aD0fB160FBd34bb31DaBc2EC2b3d3f54E7737FdBba1d00ACddEaeF7b0AbD16b2 ; < q1Po4X0x42SEru08jgz3FMtj5p0DGs81xiFo289i7M1Pg2V46v9E0Y3g4P95iycH > > // < PUTS 83,5381532126905 ; quote ; 4,48722149753384 ; 4,39747706758316 ; 0,0204081632653061 ; -4,2 ; 4,13946183147497 ; 4,83498116359271 ; 2,1 ; 0dBeBfeDbcD8EE158EffDeB2fEDD62fad29DD7C5fecAA71FE3fCb3530cCEb6cd ; < kOGsG6ti9CIrriM7s5Ge6sF85kZdDIheX8Tm4wyeEJQB9ir42hKt76011tc67ZxU > > // < PUTS 88,7592877884836 ; quote ; 5,79193447541758 ; 5,67609578590923 ; 0,0204081632653061 ; 3,8 ; 5,34305955357271 ; 6,24080939726244 ; -2,8 ; DB0b4a3fD57c5eC52f7eDBddeA4A560bDA38A58aadeC2DefFAAEfE5DCeF2Ee85 ; < 9VYXI0aMbh4118hsr1UEU9790ZUe4PX7sP1kGBK7LHxDK11yPGNxxLz9k3xY7K2A > > // < PUTS 93,9804223642768 ; quote ; 7,29123965884816 ; 7,14541486567119 ; 0,0204081632653061 ; 8 ; 6,72616858528742 ; 7,85631073240889 ; 2,1 ; 9eFAECba5e5C056BDaa7f76c562BCbdfBd4e7C24FE2eeAC67befefEB2Accc9dd ; < BPGZ7i616OMPH5vPLH5Y80gYAo80F2eg7X0tk1p3KA77m3bQ1BFK478q4W5Wbw21 > > // < PUTS 99,20155694007 ; quote ; 8,98326297721528 ; 8,80359771767097 ; 0,0204081632653061 ; 2,1 ; 8,28706009648109 ; 9,67946585794946 ; 4,4 ; A0b51CCF5Ca8cFA1decFBB5DAeF1cFEFEabEFd9CeDA2bd3a171422bEd0BB8cFC ; < i810mUhfa7N1BD68zNssXVq09ok2lM126I30I5d66V084P1lPruPE2prw2raU723 > > // < PUTS 104,422691515863 ; quote ; 10,8636295870841 ; 10,6463569953425 ; 0,0204081632653061 ; -7,3 ; 10,0216982940851 ; 11,7055608800832 ; -6,2 ; DF7A14dD1dcaea31bAbA08ECbCDaCb9aBcbafFb62CaDBeBB30bE9eEbFfE6F1a6 ; < lzslP1zCbx2u8E0kZp9kL4a7KM3Dp4mQo33b77611r83LKs3YGgik03g818u6eGa > > // < PUTS 109,643826091656 ; quote ; 12,9260074686881 ; 12,6674873193143 ; 0,0204081632653061 ; 4,6 ; 11,9242418898647 ; 13,9277730475114 ; -4,2 ; dFDbdfBaBCDdF4F4FfE9CB71d5aFEc4FE84E5Cb5ffcFCfdDeBb6fABf0eBbFFEb ; < 20b3T9s3cE0ODwp529rHhEwk002nv48v6wAGUJs3OwXXIdV4F0V5L6OSUVp8ECVo > > // < PUTS 114,864960667449 ; quote ; 15,1626056894643 ; 14,859353575675 ; 0,0204081632653061 ; -2,5 ; 13,9875037485308 ; 16,3377076303978 ; -6,2 ; cEd9CB7F1aeD0cff86D8FEEEf1D0f65eEcE5e0Ac8EeaAaF4F4bdC1CeaeDECEc5 ; < c5407X0KyrWcJ9jdhopD2c306xZ2pla0W305Fr4M9wyf4Lp7K25pbLo4903fZV34 > > // < PUTS 120,086095243243 ; quote ; 17,5646127269451 ; 17,2133204724062 ; 0,0204081632653061 ; 4,8 ; 16,2033552406069 ; 18,9258702132834 ; 1,7 ; FA3fADfa36F9B8A01EE6Aa1DAcf8DAFaBbe8EF1B6FFdeCBa12AC0EeFb4ABEBFa ; < wTNqT7vHf4G68EMd8F295njQ944sesg7p2n5XbU2HKNYtx300sm36f2I0Rf1Go1X > > // < PUTS 125,307229819036 ; quote ; 20,1225694613013 ; 19,7201180720753 ; 0,0204081632653061 ; -9,2 ; 18,5630703280505 ; 21,6820685945522 ; -3,9 ; DAAefA5CBFEa2D761cF4FaEeD7Ffe1FB1d8f973AA38DfE7CedAc7FbD6fEEd1E2 ; < 79l61A66XB3785282y2u2GyNWPdN4i6410d9v15Vg1ES26fLkGPRc6xQp45N4XRk > > // < PUTS 130,528364394829 ; quote ; 22,8266775190311 ; 22,3701439686505 ; 0,0204081632653061 ; -1,5 ; 21,0576100113062 ; 24,595745026756 ; -7,9 ; BDABaa25dccCAeD54Aa5BD8Fab7B5DdA6E9E759cCBD0C15BB747f3ad27fafFEc ; < 8urlivUSB7T6Sq4T9Vlsr5OsvF1itu1513cOrib8GAaF15B2bqs3WgFaF9Lbd9x8 > > // < PUTS 135,749498970622 ; quote ; 25,6670473394929 ; 25,153706392703 ; 0,0204081632653061 ; 4,4 ; 23,6778511706822 ; 27,6562435083036 ; 3,9 ; 3DeaEc1cC1CBEdf4EDe114D6a58f85aDFC6A650Bd100f62eBCCefB13DAcBd0aA ; < W9iKfhNRDxM36z59Ue9TA2i82V76o01GK87bUX2kpjFu0CQu9641N38JV9Rvy4MO > > // < PUTS 140,970633546415 ; quote ; 28,6338923171622 ; 28,0612144708189 ; 0,0204081632653061 ; -4,4 ; 26,4147656625821 ; 30,8530189717422 ; -6,9 ; f2dFFD73BFD5cE4E8aEdDcC2cEDf8cEE7F9bA31ED59C5aAe20DbcA87FdBc2faA ; < MSiwv682MJ0P0rWj2n3XRu0duUw48ZC0Tx0zmG91lm8x8klGn3Qw3n5t2tB2VXyS > > // < PUTS 146,191768122208 ; quote ; 31,7176761857946 ; 31,0833226620787 ; 0,0204081632653061 ; 4,7 ; 29,2595562813955 ; 34,1757960901936 ; 5,7 ; cAf2cDfDcb8AD6fE6bc3Ee8b06aFFe6C004d91AEbBA4AB4A8Ed57bd3FFABf6Fe ; < r3B23z1875BkemO5aQq2fKGAF2dQ8Aa0S56L02M8Eh673pWE0o0SJna7W0Del8Q6 > > // < PUTS 151,412902698002 ; quote ; 34,9092208673849 ; 34,2110364500372 ; 0,0204081632653061 ; -1,9 ; 32,2037562501626 ; 37,6146854846073 ; -5,6 ; DDc1Cb3e31dBdBE8EbDd44d5Da0B5014fE9CCFaF5cfa951d4CDd3fbceeBBbEa5 ; < s351Ta2IFgPCFKV1b1O35q2NZhD0cqHKJvf4Kb2cc6MkG91UFr9vBruR7lsl9m33 > > // < PUTS 156,634037273795 ; quote ; 38,1997816077946 ; 37,4357859756388 ; 0,0204081632653061 ; -2,4 ; 35,2392985331906 ; 41,1602646823987 ; 6,7 ; b8Ad93b324ddBc1bb261591b6c343c8497Be3FF9DEa3681E2ed69cc3Fb992eEe ; < 4Z6LYt1vm7U8pO7zCF3D7I30sYSL995zuL0sjOgr7Yt6u63Pl1hm6NVCBU2I50bv > > // Futures_Eurosibenergo_hydrogeneration_LLC // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 88,946246 ; 1,14 ; 77,0230228070175 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; a972FB10dDcd5CbBE0AAaBc8C6bdffb28aD4cbd4a8A0de5A4dC25291ff4DaAAB ; < zvClZ3ZQhz6HTnXpEmy2cFJj0w54Y6ElSerqMlzlW4NxBtZk4XskLTtx36x8dAKT > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 88,9523013634878 ; 1,14008778 ; 77,0223268102109 ; 88,9520513634878 ; 88,9525513634878 ; -8,2 ; -2,4 ; 9 ; 5,8 ; -4,3 ; 3,6 ; -0,56 ; Future21AP19 ; 4EDbC43b7AdfCCd4aEbFED011aEEDBabd61ac5d0BCB5a2E6c097f7ECaF1eE6A3 ; < D90d3oT5UNNp139ra66J68G8zW01351TK4GjC16wWpgK8Z5M878kK34pX3EOmB2j > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 89,9145580176993 ; 1,15381372898453 ; 76,9281401832796 ; 89,9143080176993 ; 89,9148080176993 ; 3,9 ; -7,2 ; 9,4 ; 1,1 ; -0,5 ; 8,4 ; -0,29 ; FutureJU1912 ; f76bdF0F58Ac76bB6Ff6F229Fc2Cce9aeeCFBfBC858Ed03aDda3E91CbAb4Ad3E ; < 7M3yKtfh2PfJwyZ6s4xT2082Aqy9kWXU5XietEX3uxuQMnK0ATv8ZPais0Bd8uBL > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 90,9486428007766 ; 1,18185233402553 ; 75,9543200807455 ; 90,9483928007766 ; 90,9488928007766 ; 4 ; -3,4 ; -0,2 ; 2,3 ; -2,5 ; 3,4 ; -0,92 ; FutureAU1974 ; 5D0e9A5ffcBc3fdBf9FEAB8BBc4Eb8eeBacAAAbeA814EFF07bDeEA1FAacCEdfA ; < mb4ELqStLV619lKlA1vB8nG2tGwzvi7O7EJ8wRQL8yI9lVFW1T45f4bG9SHdl5dR > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 92,0052462605474 ; 1,22526894133997 ; 74,0898379582931 ; 92,0049962605474 ; 92,0054962605474 ; 7 ; 2,6 ; 7,8 ; -1 ; 5,6 ; -3,3 ; -0,07 ; FutureOC1958 ; B97ff8Be10ac97FebCc8Ed27bAfcaCAfBE11589EcA753ac4f0c9adAc4DFEFB4B ; < PN86638rM1l3qA59tqp2ID6G7EB4RdQs58m78sNTc1OKm5rz499YqSzr1D2KYUEt > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 93,1659176345358 ; 1,28574572300012 ; 71,4606086319663 ; 93,1656676345359 ; 93,1661676345358 ; 6,1 ; 4 ; -4,1 ; -5,7 ; 8,9 ; 7,5 ; -0,33 ; FutureDE1972 ; Ea5DEBDCdf6E04134c0DccdCdceAdcacd14B0ecfDe3BA9EF6Afff4A62Ffa754B ; < yRjWGicicY220wT04O327dQyu2cQ6etwxSB9fI5fZDWE3159HVHk75l7YQHHX98F > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 94,3571798915937 ; 1,3655883804194 ; 68,0963552740649 ; 94,3569298915937 ; 94,3574298915937 ; 5,7 ; 1,9 ; -6,5 ; -2,4 ; -9 ; -9,2 ; -0,92 ; FutureFE2016 ; beB9cafc5f74c6BcBd2Bfadc7fb6c6B7cd7eDC8a3EC5e5eFdBaD1FA1fCeFcD9F ; < 5Uc8UUc65RI8k57gG7UXT1948H7uN6eT1e4f75dar464AUv3b24FT7nTPziDL497 > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 95,62077229984 ; 1,46806213248607 ; 64,13400910213 ; 95,62052229984 ; 95,62102229984 ; 4,7 ; -7,8 ; 6,5 ; -5,5 ; 7,7 ; 9 ; -0,09 ; FutureAP2078 ; 5Dfc0CA2FD9C8137ECEBAd77Ad8FDAdAa56224Ad891EDb5AbEf1ADA2C3C488E4 ; < ZAuc3uC5okd3a5LfknHNk1Uf60Fc4z1O2fu2z8e8pqa3yt4y587i7N92lE2w0k7V > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 96,9988918684236 ; 1,59740994169548 ; 59,7226043463018 ; 96,9986418684236 ; 96,9991418684236 ; -3,4 ; -2,9 ; -8,5 ; 9,7 ; 4,2 ; 1,4 ; -0,53 ; FutureJU2017 ; a98aEcad4A221C2c7bCafcB19bDabD35cad0ab4aEe1A05C67C72cCDf3f0FFEec ; < 3Y87l2Q0vASLe3Uo82718O7PZ0ea8dSx80A1J7z52KbN498daU23juzZGtC7w1oe > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 98,2776322988409 ; 1,75897165222092 ; 54,8722092961266 ; 98,2773822988409 ; 98,2778822988409 ; -4,4 ; -8,3 ; -2 ; 1,1 ; -9,9 ; 7 ; -0,76 ; FutureAU2010 ; CdBcDe75bbe6F9bA4eaA8EeaCf0daaC10B7aF808aDfBdBE8CF25FD1cD4beCabE ; < FsdBN05U12H1qHrv9Fz9Zpl8aCMll67SB9q99hnmI7nO92QYLHKWRbHxLKuVfwPj > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 99,8040496306464 ; 1,96039628534162 ; 49,9101401471257 ; 99,8037996306464 ; 99,8042996306464 ; -5,8 ; -2,1 ; 4,2 ; -1,5 ; 3,1 ; 0,2 ; -0,65 ; FutureOC2039 ; 8C3eD99eCCa80CeF9E3aAbdcc0DafeaBAbFFdF59DD2dfd3c4fDeae477A867Bcc ; < roSgZ13Ylk7np66DCPvI0lMk8hRX1HGu7Z7i56PvutXDyzQ678mKqy61mQKC0rGk > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 101,147366505294 ; 2,21161437944796 ; 44,7346305238537 ; 101,147116505294 ; 101,147616505294 ; 4,2 ; -7,8 ; 5,1 ; -3,1 ; 7,5 ; -4,6 ; -0,5 ; FutureDE2099 ; f0ff8D7B6B952eeaDECAa1Bd1b36cC1988fAdB0Eb2dCA56aFDbBfEfC24A4DEE1 ; < 6r2R2l8l2ET4j08I53mhe3782ilBs8526a94I88TKp5C4ZiLGNE8vIUxM719OzTZ > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 102,86105953055 ; 2,52500754758355 ; 39,7369315109529 ; 102,86080953055 ; 102,86130953055 ; 8 ; -0,2 ; 7,4 ; -7,2 ; -4,6 ; -1,5 ; -0,81 ; FutureFE2113 ; da3dAcA6Fb18Fb93dCefd7DFFeAf685FBBCdAfea76Ed51f14E8EFBfD37ca1fDD ; < R3C6G960ZI17QiJrw5YWoE1He6z4XA1xmmK625NFdC5NE6Ol40BKERp5vt9izNET > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 104,422691515863 ; 2,91794417212341 ; 34,786391156303 ; 104,422441515863 ; 104,422941515863 ; 8,9 ; -0,9 ; 2,5 ; -7,6 ; -8,7 ; -2,1 ; -0,75 ; FutureAP2121 ; DcCbCCb6FFeC7Dd05abcEd5627cD40BBF20FfDE706F2FB22b4f6ABAc0Dfe2A6f ; < Tv39stX84p8hlKx12oYMkV90zcY9EqJhDUHiKRy3LD2t0Rmdi4G5NcLZ2RNWp0U6 > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 106,284260486919 ; 3,41278533020502 ; 30,1429668740792 ; 106,284010486919 ; 106,284510486919 ; 1,5 ; 3,7 ; 9,6 ; -4,8 ; 9,3 ; 5,4 ; 0,57 ; FutureJU2125 ; DAfcEcEDCffb3cbea32cAE3Aef7aFB84E5c7Bd5aEF8f5056db0788EDEC2CBef4 ; < 00lvY6pM7uqGIkW6p83m5q1xUn32kVLTALMQxn740H2wMdPx5qJ8XgPE791B2qSn > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 108,079311831265 ; 4,04028402355945 ; 25,7504242773626 ; 108,079061831265 ; 108,079561831265 ; -2,6 ; 4,5 ; -2,7 ; -3 ; -4,7 ; -4,8 ; 0,92 ; FutureAU2191 ; eAaDD7b05DC75DF646Ade4DF7940e7477569af4CeBFe4cfBcdFE7adDEF6EcEDF ; < N8boCg09YF07wz3Id4lOIiZRs0UV14YF20Yglxqf8bQVWA02q9D3VOloM2GR06yT > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 109,807288812178 ; 4,84081984742778 ; 21,6836139895859 ; 109,807038812178 ; 109,807538812178 ; -5,4 ; -3,3 ; -3,2 ; 6,5 ; -5,5 ; 5,9 ; -0,34 ; FutureOC2156 ; fEFddeBb822ba9e705c88E8e39F94bE57Acc1FBAeF2B7f58fecAd06a5e7A68aC ; < 9E31Dt0H4487kdgiOi1t4pXfnzlZ242FG288b07252YK0UuK06y6Se4yN8FHYO75 > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 111,828533850049 ; 5,87033664144765 ; 18,0497650612541 ; 111,828283850049 ; 111,828783850049 ; -9,3 ; 9,5 ; 6,4 ; -4,8 ; 2,7 ; -9,8 ; -0,12 ; FutureDE2111 ; aFC2dFB951d025Acc0F6Ca5ba7bDEFFcbB6aCCAfd68ddfBCFb101CD8f5caBA0e ; < Kn2l0pnfrp0RLgSG7zI5cMsoeU2g3Nps57Gz37Q1Hi2BWzsDDyk5QNQS3818s7nE > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 113,661869611334 ; 7,20582532470991 ; 14,7736087803252 ; 113,661619611334 ; 113,662119611334 ; 4,4 ; 6,9 ; 8,9 ; 3 ; -7,4 ; 7,9 ; -0,53 ; FutureFE2244 ; D2fe3fA02eaC63Ff4Cfac7DcE7146a8dBFac2faFbA46Bda0dEFB4Cb06Cc2Af77 ; < 9SXn4NOzTD548UCu2bWAww0dF9tF4K0XG16M1jeJbI2Xp44a3A5Jg5izl939Co73 > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 115,59159550309 ; 8,95142119724208 ; 11,91321153994 ; 115,59134550309 ; 115,59184550309 ; -2,8 ; -1,1 ; -3 ; 0,5 ; 7,9 ; 0,1 ; -0,18 ; FutureAP2257 ; Df7bbaE0EDdbe740caabB0fA2ac89C9c3a5DFB2bA9DE1aacc58bdf1DADbdE3Ab ; < t8U4i9eL675C941p2D40Yn8a302y1R3okaHql2qWw0dSmkB3B86zvMSE1sed1wlP > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 117,975212872977 ; 11,2553508558275 ; 9,48170016058578 ; 117,974962872977 ; 117,975462872977 ; -4,8 ; 9,1 ; 6,4 ; -8,8 ; -7,9 ; 5,5 ; 0,55 ; FutureJU2243 ; ea72Ae8C34Edd6f4c0c5A7f994d2Ed0FcbDF4D354eFd9EfFc40aaaAC7eAEEc21 ; < CbKM25OV7Bpb3wpTz8v0vTYOcu8jLQ9XDphpx98O4I64G1o4vXP5WjXH1p4s3043 > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 120,594055013077 ; 14,3231732077031 ; 7,4195068553818 ; 120,593805013077 ; 120,594305013077 ; -7,9 ; -7,3 ; -1,6 ; 5,4 ; -9,3 ; 4,8 ; -0,62 ; FutureAU2211 ; 1b6152be9054b6f2BcDaEcfdc2B70c8C4F977c06eb3dfaa323FDd1cEB9D8f29c ; < LO3n20Hj0ax1nCr8IRF4148w2dC1Us02Bw01Y61V4J3QqiX27tI2S9060UZe3lJl > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 122,711404124748 ; 18,447771771189 ; 5,65182796311443 ; 122,711154124748 ; 122,711654124748 ; 8,9 ; 1,4 ; -1,9 ; 5,2 ; 7,3 ; 1,9 ; -0,88 ; FutureOC2266 ; 3f1fBcAB2D2FDe0fAb9B74cc2bCAfbfceddDA8a7446C1b41aa3FE17dAeC6CA92 ; < 1ktwsvUnMu1Ds7gEcTDy4g235n73ODyi8EOyCN8zQO2KglRQOf8jpqtC0QY7FW1d > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 125,27840794657 ; 24,0494945956456 ; 4,20919088126088 ; 125,27815794657 ; 125,27865794657 ; 7,5 ; 2,7 ; -8 ; -1,1 ; 2,2 ; 0,7 ; -0,97 ; FutureDE2276 ; aD0F83fBdeeDf8b6BDFBCACE27FBecAF9aFFCFEF33d4B1e73A07BDC62db97ecf ; < 69ColboEkY9IkRA5z2UwDn7gv9udHgumrIFKXSdB5333X9t7K1HK22GpLVT6W1I3 > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 127,359472854299 ; 31,73289355884 ; 3,01348438704921 ; 127,359222854299 ; 127,359722854299 ; -9,1 ; 3,8 ; -2,8 ; 2,6 ; -9,6 ; 9 ; -0,84 ; FutureFE2394 ; AF9dCC8aCAeB1DDbd4EC58eAAF4bAfBc9afdFbdDEb0F0fb6eD022DA7F2a3AFBC ; < m9A3Mg9w8qlj0369vpF5X7Pt64p4mPfqZwXBGi9KE98fMolcppnAKo4C2156eTg0 > > // < CALLS ; 3Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 57,7957977515451 ; quote ; 61,5308193640129 ; 60,3002029767326 ; 0,0204081632653061 ; 0,7 ; 56,6083538148919 ; 66,4532849131339 ; -9,4 ; 7bcbce501deeBC0D9f3dedeba6FFdAE4a73C68B09bAd7FFe89eeefaEAbDbdAB6 ; < 1nh60BBasS1x63VJXqqy26qxeYg3wgE7T670Hoh4bP32K5hjWj8jnLqv8w0P1ylL > > // < CALLS 63,5753775266996 ; quote ; 58,045248210132 ; 56,8843432459294 ; 0,0204081632653061 ; 1,8 ; 53,4016283533215 ; 62,6888680669426 ; 3,5 ; f189EECc8feFeA4B6cad8A43D2cabdca2d022E0ebCCBafd27bA2ef2BDa4BEd2d ; < rCkI5tn7RRKh797N95MySZnps0Hh0AmjC6cTo2oxWfRsmKpBnR25glgFEVUMErj1 > > // < CALLS 69,3549573018541 ; quote ; 54,6875870286012 ; 53,5938352880292 ; 0,0204081632653061 ; 4,2 ; 50,3125800663131 ; 59,0625939908893 ; 0,8 ; C8aA1863Bdbf9FE3dbDd5ade275aAb9dBBAfba4BDEfFcddDbd2366BFBe347aD9 ; < 41CeGkVfLCr2MEzG2lPxA7I2aGKgYOCI2KQhrFLKS2pLk52LlsrJe1PTB11LS17Y > > // < CALLS 75,1345370770086 ; quote ; 51,4669757423064 ; 50,4376362274602 ; 0,0204081632653061 ; -0,1 ; 47,3496176829219 ; 55,5843338016909 ; -9 ; 86f38d6Bc1cAc0BA2EDE9453babbdcfD4Ea3617fC15EEB769a1D006bf6Ac2DcF ; < tiXazGN8Qv5H2GGr5X4Bd4pOn92Uec3SMhNieiH2TVnsnlS71UjW9JRln18hmK6Q > > // < CALLS 80,9141168521632 ; quote ; 48,3896143750377 ; 47,4218220875369 ; 0,0204081632653061 ; 8,6 ; 44,5184452250347 ; 52,2607835250407 ; -0,5 ; CFdE64d736822eAE0589dDBbcbEde8EEBF0edEf4ADcFfA7fc12FCeDbB08E48FF ; < Cbd4B06J7d8tVhXKbTLQk51B3u1kz9pl7mT8d1126mmo2pgb810uz4JRTXvqvz3P > > // < CALLS 86,6936966273177 ; quote ; 45,4590564027714 ; 44,5498752747159 ; 0,0204081632653061 ; 9,8 ; 41,8223318905496 ; 49,0957809149931 ; -6,6 ; c998CCc8Ff1DD60e4Ccc0eaBe2d799Cd5DfEAbA3FD5B09DD2e2bd2c98AFe810E ; < 80TgqU99ccSedA9VHw9bvmwzVb9oMD0u5Q7aDsP60MSm3aw4xTs6u0YHIgXfRhyr > > // < CALLS 92,4732764024722 ; quote ; 42,6765659694769 ; 41,8230346500873 ; 0,0204081632653061 ; -7,4 ; 39,2624406919187 ; 46,090691247035 ; -6 ; 77AdDcbBCabD91DF54d63CbdAFA7ECbeB35eBeFEa57aeeaFF4abf142D8cFF35e ; < qM5A3w2fu0MjC1xx1Hz3SHJ3xR5Ejoat3L7Q8d31bSa63jJj7v7xy0BzGxVQ0Rh9 > > // < CALLS 98,2528561776267 ; quote ; 40,0414910307221 ; 39,2406612101077 ; 0,0204081632653061 ; -2,5 ; 36,8381717482643 ; 43,2448103131799 ; 4,3 ; BEecbFbfac7e69d7Aa2DafB9ceC1eEbcB6AaBc7ffbc1e0fcec1e767BFaeb4CEE ; < C9RR5oov5ANl8RB5npc55Mq0q6B4r83hm8gv2Urg9hB7EHNd8iCK74dXKI2N5V1w > > // < CALLS 104,032435952781 ; quote ; 37,5516227399988 ; 36,8005902851988 ; 0,0204081632653061 ; -0,7 ; 34,5474929207989 ; 40,5557525591987 ; -9,7 ; d5C01C4DfefafAcC660cADbe3cBbddccfeFC4D8CDC754e8ca33bE98fFaC21fac ; < 3Wt5qHED8peHNZZ5qjATw8Y0XbDppN379oj7CY23Tc29WA235Xg0mOeEI3EsF2V9 > > // < CALLS 109,812015727936 ; quote ; 35,2035243902198 ; 34,4994539024154 ; 0,0204081632653061 ; 7 ; 32,3872424390022 ; 38,0198063414374 ; -3,7 ; ADae7Eb24Bf4fBDEfc6CCecd3ABCDDb5DFcE7dA34Afc94ddEbA8DB8fbaF6ebeA ; < B9X0TDyD5Wzht8bQFF5N4cyQ88XGIJtkrtqmx5nsu6b4k1r98Royi71Escdo776z > > // < CALLS 115,59159550309 ; quote ; 32,9928219942121 ; 32,3329655543278 ; 0,0204081632653061 ; -4 ; 30,3533962346751 ; 35,6322477537491 ; -2,6 ; FCd1cAe9254D4b4a6D7fb3fb08138Ebdf2beBC58B09E5aC07CBF529dbCCB50CF ; < 3J1A9GkC6j5C3FX1kj9QE68VYq0wx3k8MeGZdl1d0aTPm3J46ZS8e3sWhYq8p7WW > > // < CALLS 121,371175278245 ; quote ; 30,9144542159824 ; 30,2961651316627 ; 0,0204081632653061 ; -9,5 ; 28,4412978787038 ; 33,387610553261 ; -9,5 ; A1DfEBBbE35AEDEb8FAcbACaa65ad9A0aCecbD40e5f5fba5dF3E1bA9fCFEd8c5 ; < Q19EtJsVBWuLQ2VQnm49XST4VTDfAcZx5c91ivo2rsSKaJ4lmNL0frIAcYTM8cVe > > // < CALLS 127,150755053399 ; quote ; 28,9628827714671 ; 28,3836251160378 ; 0,0204081632653061 ; 4,3 ; 26,6458521497498 ; 31,2799133931845 ; -4,4 ; 1decfdDa4ba04F77b878aEd6fF53D3acEeAdD2EaCe7Bd4CDdb52e459BfDdfdE6 ; < N4Aht35kw1PCedp5Je3v97o4JOqlHSt8y1YabWxi33UZR6U3ftgdsRK9DP3f36Wf > > // < CALLS 132,930334828554 ; quote ; 27,1322663162922 ; 26,5896209899663 ; 0,0204081632653061 ; 8,7 ; 24,9616850109888 ; 29,3028476215955 ; 8,9 ; DDEFf9cbAFa7f61FEBeE9DC1Da57CDD7cfAA8bdEBe0bd5B8ea4fD10D3a6CE1B8 ; < 70t05YOK7S0EYNG3MZkuut9ihUZdLx5jBa8go94ZDW9VkFJLP9Q1266mQW2gXlb2 > > // < CALLS 138,709914603708 ; quote ; 25,4166017493327 ; 24,908269714346 ; 0,0204081632653061 ; -7,1 ; 23,3832736093861 ; 27,4499298892793 ; 2,6 ; 9EBf3eebAFbb0ceefFAabd1eBfCeDde96d3aaC102FEb7fa4AefAE9b4EDDDD5fa ; < h053xihzlvD9A0jfhy8KZmsaB9MNLSMEf0G4HkpUd8Ny6nRuJ8NJj633b83Dgh48 > > // < CALLS 144,489494378863 ; quote ; 23,8098371502222 ; 23,3336404072177 ; 0,0204081632653061 ; -9,3 ; 21,9050501782044 ; 25,7146241222399 ; -3,5 ; B6Ed20Ac4eEC46dfC8eAADB79Fb6ddA8FFa4D6E6FD56CE6dcAaFe3bD2BDfDCFE ; < 7S1c0PYBthWM2B1KrhK6zzCuBXdv249kNy7JZdx5KLIS537a59DMtmUqnw4YM5GZ > > // < CALLS 150,269074154017 ; quote ; 22,3059604855858 ; 21,8598412758741 ; 0,0204081632653061 ; -6,1 ; 20,521483646739 ; 24,0904373244327 ; 7,4 ; bcafbfBA6EC1fdD7bad7dfE8dCfCA115BE601A8ACB1cFCf0D4ecC6CdCB81faef ; < elFI4a9z0ncte1468OFt566ljRtt9bgdx7j999iBTx5O25x75i1mV3EEXSbyL7oR > > // < CALLS 156,048653929172 ; quote ; 20,8990679279314 ; 20,4810865693728 ; 0,0204081632653061 ; 8,7 ; 19,2271424936969 ; 22,570993362166 ; 0,7 ; 06095D5aBdCCFfDB4aDa4aB6BFaE254AacEB814aC131A34CC7ccF4366f096Dcf ; < 09HXto8hpJpKgrd98684VY7kuv5H640K5LaXySim5yfRFC81OdsP73v2gY680noq > > // < CALLS 161,828233704326 ; quote ; 19,583415239393 ; 19,1917469346052 ; 0,0204081632653061 ; 6,9 ; 18,0167420202416 ; 21,1500884585445 ; -6,3 ; Fb8C0acF6c2EcDe4EfcE78BdbE33E6Ea2c1feCbCefdDaBa7ecc055daeBFc0ccE ; < DoX9s1J2lcSIB9bj0E2Sqe4v19KPzI43F09oOnILU0410iby35iR9JrlWiq2pLFh > > // < CALLS 167,607813479481 ; quote ; 18,3534552464126 ; 17,9863861414844 ; 0,0204081632653061 ; -6,5 ; 16,8851788266996 ; 19,8217316661256 ; 0,7 ; BF75BBf9BccF4EADaa1Cf031c3AcEFcFbfA8ED434AC0b3Fa7776E89aa6b5fc5D ; < QB7y46V944beja5QKNmfQhXd8zV3J6HVQ59UY9N85t9PP6209TbkXa3oMLo7jyWQ > > // < CALLS 173,387393254635 ; quote ; 17,2038640106649 ; 16,8597867304516 ; 0,0204081632653061 ; 7,3 ; 15,8275548898117 ; 18,5801731315181 ; 2,3 ; Bf10FaA27fC9Edab3Ba7FAeEDFAEb9EdE5AcADF1da6Bc05BAd1Ce3b26CcFAdd7 ; < 47d7Z62u426cLq1ODkKSUwj1Zln6I60783gr4fK137n3YOJ8Zc3RiP7Zkr6gWq0S > > // // < PUTS ; 3Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 57,7957977515451 ; quote ; 0,862212417340544 ; 0,844968168993733 ; 0,0204081632653061 ; 2,4 ; 0,7932354239533 ; 0,931189410727787 ; -9 ; 7c699cDBf38ee28fEcd56fcf94DC8aFDCfac9C2fee164E0eFf2FCDa6Fe2854f4 ; < yllmUWt2e475658R5uOa0O8sjxtrrYR48s71Omb2967q5h2p38e92nwZZzC9f6Sk > > // < PUTS 63,5753775266996 ; quote ; 1,30978056879249 ; 1,28358495741664 ; 0,0204081632653061 ; -4,8 ; 1,20499812328909 ; 1,41456301429589 ; 4,4 ; 1F55c8aedEf268BAe77FFd0dEEdCCe0BFb1a081DAcB1cCfc0eEbeaDAf20FCBe7 ; < ivZf86471xB1n1472zRo2tY4UZ3L5tXL656bWYCq1bg70N7ZqaMg1zw8FkOyOZEn > > // < PUTS 69,3549573018541 ; quote ; 1,88525869259442 ; 1,84755351874253 ; 0,0204081632653061 ; 2,3 ; 1,73443799718687 ; 2,03607938800197 ; 5,9 ; E7eCc814Db9cAA1fDd77bB19FD6AbCc1C33bc8755bFfDFEB4dcAD658b9DbFCD7 ; < W6z1G1k5Z7BJ92oXSBmjr7051u7Nu1ug0AusqBsWf755I3m0x1KPT68c0W7qIyMp > > // < PUTS 75,1345370770086 ; quote ; 2,59778671163235 ; 2,54583097739971 ; 0,0204081632653061 ; -9 ; 2,38996377470176 ; 2,80560964856294 ; 1,6 ; EeC8eEbd93EDDaE6bFDE3f6d1Fc4CCa16eB19C4517BBFdDe1ec734E5bCFe4A4e ; < IyBFG1a503hOX50O9kc765Hs03Vvn9oHs04gSDzh8sA2QQi4OL3RK660i1G2v7Lt > > // < PUTS 80,9141168521632 ; quote ; 3,4535646496964 ; 3,38449335670247 ; 0,0204081632653061 ; 3,4 ; 3,17727947772069 ; 3,72984982167212 ; -2,6 ; bFeeddAbbfDefAB1DEdAfEb7bdf1CC3BdcEC46dbAfabDEaAECF86Ae5851dEffe ; < XSU0nlQnvF0i001X1OY07cQVMwxH1oFBOd4FL8gf81Lnfo3qCr8J1RO20ezDa8xl > > // < PUTS 86,6936966273177 ; quote ; 4,45614598276286 ; 4,36702306310761 ; 0,0204081632653061 ; 2,8 ; 4,09965430414183 ; 4,81263766138389 ; -4,5 ; be6EeCF7b65CdfADe11A3E3648eAF0eD8cD57Cb4e1ccAC1bC4eae0CdED633cFC ; < ZrU9pWrmVcOSJ73o269e3Uj5n0mw9MIVNte4eyU16IUAgwHB5PW8gjenZ0PIdSrb > > // < PUTS 92,4732764024722 ; quote ; 5,60679485480114 ; 5,49465895770511 ; 0,0204081632653061 ; 3 ; 5,15825126641705 ; 6,05533844318523 ; 8 ; c8fDCBaDCdf1BdD3D7Ee03beafa16Bb039Ce5BAFcAfEcb44d4DB9F5EF8fABAc9 ; < k82Dn9emI16GS7FE8b6J4YYwtzhu8NCu05gErqYV1G87jIxOfTj20dBZo3McIh48 > > // < PUTS 98,2528561776267 ; quote ; 6,90485922137916 ; 6,76676203695157 ; 0,0204081632653061 ; -4,5 ; 6,35247048366882 ; 7,45724795908949 ; -8,6 ; cfaDD0fCCE1ABADFa6F0dC4ae3c9BFCC65FA1b8e7CAAB92Afe32CeC5b5F9834f ; < pcB9YqmVTNhD3Es6H71l1igKADm1Tz2K3fx68nXo7xWxOYZN8470EPwwyIDaqlc1 > > // < PUTS 104,032435952781 ; quote ; 8,34813023598858 ; 8,18116763126881 ; 0,0204081632653061 ; -3,9 ; 7,68027981710949 ; 9,01598065486767 ; 4,4 ; fCB0E8B1d6E5B01E8dbBA6EbAAefe8B057DB50119F9dD5DEDd1f9A3AaE9dBAAa ; < fXotxz8hb2Av4rZ4gbLr23g9y9xqD2V04xUa8Th81hU5sbl9kvlVD3K3b1G02Bss > > // < PUTS 109,812015727936 ; quote ; 9,93317119154237 ; 9,73450776771152 ; 0,0204081632653061 ; -7,9 ; 9,13851749621898 ; 10,7278248868658 ; -1,8 ; 35f8AafE1fB3Cd4eA37eFb5aCD50a88f8d82adDbAEDb4BBf3DeFfC7D3CdDB4af ; < rVdsLRw71Gl5k3Yr2ax23Jgr0J196rJ8VLYEU7N6X327yM10WD97JQ72u6lj4T47 > > // < PUTS 115,59159550309 ; quote ; 11,6556081008674 ; 11,4224959388501 ; 0,0204081632653061 ; 3,4 ; 10,723159452798 ; 12,5880567489368 ; 2,7 ; F54B0EB9ceFd91DC9FFbBDed6eA8fcbac6DefAFa8DCffab2Fadee99dc74c3a4E ; < d53BxrM41Vjz6dgG3dh07y6kRv8pOMODjknHHO8Y5Z1siWguKm1te9o48w65v1D2 > > // < PUTS 121,371175278245 ; quote ; 13,5103796279705 ; 13,2401720354111 ; 0,0204081632653061 ; -3,9 ; 12,4295492577329 ; 14,5912099982081 ; 7,1 ; bf7fca82CDeD3bFCFfFCBF7FdEfeCdcFab7520ccFc0e59e2AeC7f42aD93deb51 ; < 2w22T3SCCkd5L2AR8AqcvTLPFhRAEMIK2wX5yhJj8c2oWx5a2r9WrljpHUB5iN99 > > // < PUTS 127,150755053399 ; quote ; 15,491947488788 ; 15,1821085390123 ; 0,0204081632653061 ; -1,5 ; 14,252591689685 ; 16,7313032878911 ; -5,1 ; BDdd0EAEc2BAb9fE4eF6Ab34D2b388eEea4eD708BFaC9dB5e6DE74cbBfBa0FAd ; < ifjzHh2AC8j9sq9NMhP4qEeY7e6G5p6ds5wy1t19W8L9amcA9w75j5ZI3w3r30P6 > > // < PUTS 132,930334828554 ; quote ; 17,5944703389458 ; 17,2425809321669 ; 0,0204081632653061 ; 1,5 ; 16,1869127118302 ; 19,0020279660615 ; -9,9 ; AFeA2CCd1dde4AceC5dc65ec3CeF4dd4EC0076EbadccCC9f8bD5B81AeAD6FE36 ; < 0sQ00NYlXWHJrMD12yNTRwVo07jH3Gdo23do965pQ33b6oAye8QnBr00746n1N1y > > // < PUTS 138,709914603708 ; quote ; 19,8119450773191 ; 19,4157061757727 ; 0,0204081632653061 ; 7,1 ; 18,2269894711336 ; 21,3969006835046 ; 9,2 ; 10BDB7C9BdfdEf13A6D8dfC8C2d1aEc9Fdc4BdF969DC6CbEa92cfb2EfDea4bDA ; < 315S8ILAGk339r0vr3wsFm0o122r55J4rcEgnK4FHR2NFew1Z0EzFGngIK63C7YD > > // < PUTS 144,489494378863 ; quote ; 22,1383197835414 ; 21,6955533878705 ; 0,0204081632653061 ; 2,5 ; 20,3672542008581 ; 23,9093853662247 ; -6,4 ; 52ABec5092CeEDF30AE1AdF0Bbeea69dcA2eF6a79EfFE4CA7Cac1eBA20BafDba ; < k52NNxnhnDYK91ck7488XWrbiUR74jZm87z2MewEltN3Q0UXOe8clorNgL94l3QA > > // < PUTS 150,269074154017 ; quote ; 24,5675824242378 ; 24,076230775753 ; 0,0204081632653061 ; 4,2 ; 22,6021758302988 ; 26,5329890181768 ; -7,8 ; AC27Bab879eFE76fE348ecA2E749b7AF58FacFeaDec3Dd3Af2cabe6E0F96CddB ; < q3aD1c86y24rh772R6784F977Sr28vo9C6aGCITqtUoU4sjqil7bn4vBD4Zv8orE > > // < PUTS 156,048653929172 ; quote ; 27,0938291719162 ; 26,5519525884778 ; 0,0204081632653061 ; 3 ; 24,9263228381629 ; 29,2613355056694 ; -8,5 ; afAeEb5898dFa1Ae1E70baB5b3F5eFF9eDCB9CDFB1BbaDc5C6ab7C119dCF29ae ; < mYEC67t91ioLxqXW0s698b04ca3mKJHhn6ktowuWoSFrrdndaI7AxTB22W4kon3M > > // < PUTS 161,828233704326 ; quote ; 29,7113157887105 ; 29,1170894729363 ; 0,0204081632653061 ; 8,8 ; 27,3344105256137 ; 32,0882210518074 ; 0,1 ; d5ABF6C5c2FBAFECbBE6C7Df8B1f2Bcff85dcbebD5EBdc8CeF08Bd8b2d9EDFaa ; < U1LsoaX6bjye46l3ekP0typ3glDK5SvmN71s7vC54aVlG41I5ObwlcWTgtM2oNzT > > // < PUTS 167,607813479481 ; quote ; 32,4144951010629 ; 31,7662051990416 ; 0,0204081632653061 ; 3,8 ; 29,8213354929778 ; 35,0076547091479 ; 0,9 ; 3EB68e1AB3e9AfeBd05ddCBb4eAa50A974c7f6bf4aDDE925BDB06feBBBBEBe6C ; < QUv62cxV15CSIasq7iePCUYcL1w5Gh1LXX0q5Hu7L5qm9o4dy63Pi6MyCe46fqpw > > // < PUTS 173,387393254635 ; quote ; 35,1980431706479 ; 34,4940823072349 ; 0,0204081632653061 ; -7,4 ; 32,3821997169961 ; 38,0138866242997 ; -6,4 ; f12bdb7edEfb2bFbE7Fe0E916bcDEa55D23a541CaC3f87fC0f8ce80dF95dA9ae ; < VvcZY1Dun75wP3GHOM9V6vE1t7ka6c4TFdb5BJ5bBk03BWi1Od1Uv4v7x3Zkl6NE > > // Futures_Eurosibenergo_hydrogeneration_LLC // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 88,946246 ; 1,14 ; 77,0230228070175 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; a972FB10dDcd5CbBE0AAaBc8C6bdffb28aD4cbd4a8A0de5A4dC25291ff4DaAAB ; < zvClZ3ZQhz6HTnXpEmy2cFJj0w54Y6ElSerqMlzlW4NxBtZk4XskLTtx36x8dAKT > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 88,9523013634878 ; 1,14008778 ; 77,0223268102109 ; 88,9520513634878 ; 88,9525513634878 ; -8,2 ; -2,4 ; 9 ; 5,8 ; -4,3 ; 3,6 ; -0,56 ; Future21AP19 ; 4EDbC43b7AdfCCd4aEbFED011aEEDBabd61ac5d0BCB5a2E6c097f7ECaF1eE6A3 ; < D90d3oT5UNNp139ra66J68G8zW01351TK4GjC16wWpgK8Z5M878kK34pX3EOmB2j > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 89,9145580176993 ; 1,15381372898453 ; 76,9281401832796 ; 89,9143080176993 ; 89,9148080176993 ; 3,9 ; -7,2 ; 9,4 ; 1,1 ; -0,5 ; 8,4 ; -0,29 ; FutureJU1912 ; f76bdF0F58Ac76bB6Ff6F229Fc2Cce9aeeCFBfBC858Ed03aDda3E91CbAb4Ad3E ; < 7M3yKtfh2PfJwyZ6s4xT2082Aqy9kWXU5XietEX3uxuQMnK0ATv8ZPais0Bd8uBL > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 90,9486428007766 ; 1,18185233402553 ; 75,9543200807455 ; 90,9483928007766 ; 90,9488928007766 ; 4 ; -3,4 ; -0,2 ; 2,3 ; -2,5 ; 3,4 ; -0,92 ; FutureAU1974 ; 5D0e9A5ffcBc3fdBf9FEAB8BBc4Eb8eeBacAAAbeA814EFF07bDeEA1FAacCEdfA ; < mb4ELqStLV619lKlA1vB8nG2tGwzvi7O7EJ8wRQL8yI9lVFW1T45f4bG9SHdl5dR > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 92,0052462605474 ; 1,22526894133997 ; 74,0898379582931 ; 92,0049962605474 ; 92,0054962605474 ; 7 ; 2,6 ; 7,8 ; -1 ; 5,6 ; -3,3 ; -0,07 ; FutureOC1958 ; B97ff8Be10ac97FebCc8Ed27bAfcaCAfBE11589EcA753ac4f0c9adAc4DFEFB4B ; < PN86638rM1l3qA59tqp2ID6G7EB4RdQs58m78sNTc1OKm5rz499YqSzr1D2KYUEt > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 93,1659176345358 ; 1,28574572300012 ; 71,4606086319663 ; 93,1656676345359 ; 93,1661676345358 ; 6,1 ; 4 ; -4,1 ; -5,7 ; 8,9 ; 7,5 ; -0,33 ; FutureDE1972 ; Ea5DEBDCdf6E04134c0DccdCdceAdcacd14B0ecfDe3BA9EF6Afff4A62Ffa754B ; < yRjWGicicY220wT04O327dQyu2cQ6etwxSB9fI5fZDWE3159HVHk75l7YQHHX98F > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 94,3571798915937 ; 1,3655883804194 ; 68,0963552740649 ; 94,3569298915937 ; 94,3574298915937 ; 5,7 ; 1,9 ; -6,5 ; -2,4 ; -9 ; -9,2 ; -0,92 ; FutureFE2016 ; beB9cafc5f74c6BcBd2Bfadc7fb6c6B7cd7eDC8a3EC5e5eFdBaD1FA1fCeFcD9F ; < 5Uc8UUc65RI8k57gG7UXT1948H7uN6eT1e4f75dar464AUv3b24FT7nTPziDL497 > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 95,62077229984 ; 1,46806213248607 ; 64,13400910213 ; 95,62052229984 ; 95,62102229984 ; 4,7 ; -7,8 ; 6,5 ; -5,5 ; 7,7 ; 9 ; -0,09 ; FutureAP2078 ; 5Dfc0CA2FD9C8137ECEBAd77Ad8FDAdAa56224Ad891EDb5AbEf1ADA2C3C488E4 ; < ZAuc3uC5okd3a5LfknHNk1Uf60Fc4z1O2fu2z8e8pqa3yt4y587i7N92lE2w0k7V > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 96,9988918684236 ; 1,59740994169548 ; 59,7226043463018 ; 96,9986418684236 ; 96,9991418684236 ; -3,4 ; -2,9 ; -8,5 ; 9,7 ; 4,2 ; 1,4 ; -0,53 ; FutureJU2017 ; a98aEcad4A221C2c7bCafcB19bDabD35cad0ab4aEe1A05C67C72cCDf3f0FFEec ; < 3Y87l2Q0vASLe3Uo82718O7PZ0ea8dSx80A1J7z52KbN498daU23juzZGtC7w1oe > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 98,2776322988409 ; 1,75897165222092 ; 54,8722092961266 ; 98,2773822988409 ; 98,2778822988409 ; -4,4 ; -8,3 ; -2 ; 1,1 ; -9,9 ; 7 ; -0,76 ; FutureAU2010 ; CdBcDe75bbe6F9bA4eaA8EeaCf0daaC10B7aF808aDfBdBE8CF25FD1cD4beCabE ; < FsdBN05U12H1qHrv9Fz9Zpl8aCMll67SB9q99hnmI7nO92QYLHKWRbHxLKuVfwPj > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 99,8040496306464 ; 1,96039628534162 ; 49,9101401471257 ; 99,8037996306464 ; 99,8042996306464 ; -5,8 ; -2,1 ; 4,2 ; -1,5 ; 3,1 ; 0,2 ; -0,65 ; FutureOC2039 ; 8C3eD99eCCa80CeF9E3aAbdcc0DafeaBAbFFdF59DD2dfd3c4fDeae477A867Bcc ; < roSgZ13Ylk7np66DCPvI0lMk8hRX1HGu7Z7i56PvutXDyzQ678mKqy61mQKC0rGk > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 101,147366505294 ; 2,21161437944796 ; 44,7346305238537 ; 101,147116505294 ; 101,147616505294 ; 4,2 ; -7,8 ; 5,1 ; -3,1 ; 7,5 ; -4,6 ; -0,5 ; FutureDE2099 ; f0ff8D7B6B952eeaDECAa1Bd1b36cC1988fAdB0Eb2dCA56aFDbBfEfC24A4DEE1 ; < 6r2R2l8l2ET4j08I53mhe3782ilBs8526a94I88TKp5C4ZiLGNE8vIUxM719OzTZ > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 102,86105953055 ; 2,52500754758355 ; 39,7369315109529 ; 102,86080953055 ; 102,86130953055 ; 8 ; -0,2 ; 7,4 ; -7,2 ; -4,6 ; -1,5 ; -0,81 ; FutureFE2113 ; da3dAcA6Fb18Fb93dCefd7DFFeAf685FBBCdAfea76Ed51f14E8EFBfD37ca1fDD ; < R3C6G960ZI17QiJrw5YWoE1He6z4XA1xmmK625NFdC5NE6Ol40BKERp5vt9izNET > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 104,422691515863 ; 2,91794417212341 ; 34,786391156303 ; 104,422441515863 ; 104,422941515863 ; 8,9 ; -0,9 ; 2,5 ; -7,6 ; -8,7 ; -2,1 ; -0,75 ; FutureAP2121 ; DcCbCCb6FFeC7Dd05abcEd5627cD40BBF20FfDE706F2FB22b4f6ABAc0Dfe2A6f ; < Tv39stX84p8hlKx12oYMkV90zcY9EqJhDUHiKRy3LD2t0Rmdi4G5NcLZ2RNWp0U6 > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 106,284260486919 ; 3,41278533020502 ; 30,1429668740792 ; 106,284010486919 ; 106,284510486919 ; 1,5 ; 3,7 ; 9,6 ; -4,8 ; 9,3 ; 5,4 ; 0,57 ; FutureJU2125 ; DAfcEcEDCffb3cbea32cAE3Aef7aFB84E5c7Bd5aEF8f5056db0788EDEC2CBef4 ; < 00lvY6pM7uqGIkW6p83m5q1xUn32kVLTALMQxn740H2wMdPx5qJ8XgPE791B2qSn > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 108,079311831265 ; 4,04028402355945 ; 25,7504242773626 ; 108,079061831265 ; 108,079561831265 ; -2,6 ; 4,5 ; -2,7 ; -3 ; -4,7 ; -4,8 ; 0,92 ; FutureAU2191 ; eAaDD7b05DC75DF646Ade4DF7940e7477569af4CeBFe4cfBcdFE7adDEF6EcEDF ; < N8boCg09YF07wz3Id4lOIiZRs0UV14YF20Yglxqf8bQVWA02q9D3VOloM2GR06yT > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 109,807288812178 ; 4,84081984742778 ; 21,6836139895859 ; 109,807038812178 ; 109,807538812178 ; -5,4 ; -3,3 ; -3,2 ; 6,5 ; -5,5 ; 5,9 ; -0,34 ; FutureOC2156 ; fEFddeBb822ba9e705c88E8e39F94bE57Acc1FBAeF2B7f58fecAd06a5e7A68aC ; < 9E31Dt0H4487kdgiOi1t4pXfnzlZ242FG288b07252YK0UuK06y6Se4yN8FHYO75 > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 111,828533850049 ; 5,87033664144765 ; 18,0497650612541 ; 111,828283850049 ; 111,828783850049 ; -9,3 ; 9,5 ; 6,4 ; -4,8 ; 2,7 ; -9,8 ; -0,12 ; FutureDE2111 ; aFC2dFB951d025Acc0F6Ca5ba7bDEFFcbB6aCCAfd68ddfBCFb101CD8f5caBA0e ; < Kn2l0pnfrp0RLgSG7zI5cMsoeU2g3Nps57Gz37Q1Hi2BWzsDDyk5QNQS3818s7nE > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 113,661869611334 ; 7,20582532470991 ; 14,7736087803252 ; 113,661619611334 ; 113,662119611334 ; 4,4 ; 6,9 ; 8,9 ; 3 ; -7,4 ; 7,9 ; -0,53 ; FutureFE2244 ; D2fe3fA02eaC63Ff4Cfac7DcE7146a8dBFac2faFbA46Bda0dEFB4Cb06Cc2Af77 ; < 9SXn4NOzTD548UCu2bWAww0dF9tF4K0XG16M1jeJbI2Xp44a3A5Jg5izl939Co73 > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 115,59159550309 ; 8,95142119724208 ; 11,91321153994 ; 115,59134550309 ; 115,59184550309 ; -2,8 ; -1,1 ; -3 ; 0,5 ; 7,9 ; 0,1 ; -0,18 ; FutureAP2257 ; Df7bbaE0EDdbe740caabB0fA2ac89C9c3a5DFB2bA9DE1aacc58bdf1DADbdE3Ab ; < t8U4i9eL675C941p2D40Yn8a302y1R3okaHql2qWw0dSmkB3B86zvMSE1sed1wlP > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 117,975212872977 ; 11,2553508558275 ; 9,48170016058578 ; 117,974962872977 ; 117,975462872977 ; -4,8 ; 9,1 ; 6,4 ; -8,8 ; -7,9 ; 5,5 ; 0,55 ; FutureJU2243 ; ea72Ae8C34Edd6f4c0c5A7f994d2Ed0FcbDF4D354eFd9EfFc40aaaAC7eAEEc21 ; < CbKM25OV7Bpb3wpTz8v0vTYOcu8jLQ9XDphpx98O4I64G1o4vXP5WjXH1p4s3043 > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 120,594055013077 ; 14,3231732077031 ; 7,4195068553818 ; 120,593805013077 ; 120,594305013077 ; -7,9 ; -7,3 ; -1,6 ; 5,4 ; -9,3 ; 4,8 ; -0,62 ; FutureAU2211 ; 1b6152be9054b6f2BcDaEcfdc2B70c8C4F977c06eb3dfaa323FDd1cEB9D8f29c ; < LO3n20Hj0ax1nCr8IRF4148w2dC1Us02Bw01Y61V4J3QqiX27tI2S9060UZe3lJl > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 122,711404124748 ; 18,447771771189 ; 5,65182796311443 ; 122,711154124748 ; 122,711654124748 ; 8,9 ; 1,4 ; -1,9 ; 5,2 ; 7,3 ; 1,9 ; -0,88 ; FutureOC2266 ; 3f1fBcAB2D2FDe0fAb9B74cc2bCAfbfceddDA8a7446C1b41aa3FE17dAeC6CA92 ; < 1ktwsvUnMu1Ds7gEcTDy4g235n73ODyi8EOyCN8zQO2KglRQOf8jpqtC0QY7FW1d > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 125,27840794657 ; 24,0494945956456 ; 4,20919088126088 ; 125,27815794657 ; 125,27865794657 ; 7,5 ; 2,7 ; -8 ; -1,1 ; 2,2 ; 0,7 ; -0,97 ; FutureDE2276 ; aD0F83fBdeeDf8b6BDFBCACE27FBecAF9aFFCFEF33d4B1e73A07BDC62db97ecf ; < 69ColboEkY9IkRA5z2UwDn7gv9udHgumrIFKXSdB5333X9t7K1HK22GpLVT6W1I3 > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 127,359472854299 ; 31,73289355884 ; 3,01348438704921 ; 127,359222854299 ; 127,359722854299 ; -9,1 ; 3,8 ; -2,8 ; 2,6 ; -9,6 ; 9 ; -0,84 ; FutureFE2394 ; AF9dCC8aCAeB1DDbd4EC58eAAF4bAfBc9afdFbdDEb0F0fb6eD022DA7F2a3AFBC ; < m9A3Mg9w8qlj0369vpF5X7Pt64p4mPfqZwXBGi9KE98fMolcppnAKo4C2156eTg0 > > // < CALLS ; 5Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 52,2113457579316 ; quote ; 68,7696516082759 ; 67,3942585761104 ; 0,0204081632653061 ; -7,3 ; 62,9242312215724 ; 74,6150719949793 ; -8,1 ; 0fAbAB5DF16FaBBE5AFd1cE63f5d6EabfFEBbcFf5d3EfaA970AabD8b91aeDBDD ; < Qt0ev8i2315HQ7F0Sav2X2055Um6R71bQGP45N8Ms5mt6QUy1HLI74cN7tRbcFcJ > > // < CALLS 57,4324803337247 ; quote ; 66,0394899014161 ; 64,7187001033877 ; 0,0204081632653061 ; -5,5 ; 60,4261332597957 ; 71,6528465430364 ; 4 ; cAcE02b611FD7ADAeB669fc4ce89aBBAC7bFcCDf6b1CaBEfAC5a1E2BbFCfa6DA ; < 11yFlecEECWWP8cz4gwEjzDGpIg61J9hBoxoyU3Lmp5GImtv3i32W41weD2H4znv > > // < CALLS 62,6536149095179 ; quote ; 63,4088182749812 ; 62,1406419094816 ; 0,0204081632653061 ; 0,9 ; 58,0190687216078 ; 68,7985678283546 ; 2,9 ; dEdBb4DECe9a8da5fEB6Df77D03ceF0E5193d63f43BbC0DD1eb216B5Ff5fD185 ; < jW73hHi7Mj9x5VCmU40k08pD7OHyPWo5gyG7cVPw1w6y1fRgr1orjo5Xt9RCtODL > > // < CALLS 67,874749485311 ; quote ; 60,8785228676813 ; 59,6609524103277 ; 0,0204081632653061 ; -9,2 ; 55,7038484239284 ; 66,0531973114342 ; 2,2 ; 3BAF3a2Add5b5ff85aFF648d7ECEcab7Aadeb4A546c5Ccc2A566A8A6eA116eDd ; < 47Dof1Z1Jw5kz6p57aFnz8AU7pWeNMPmrOA57428lUkqUQAJRYEaYMOc21d532nu > > // < CALLS 73,0958840611042 ; quote ; 58,4483243190617 ; 57,2793578326805 ; 0,0204081632653061 ; -1,9 ; 53,4802167519415 ; 63,416431886182 ; 2,9 ; DFFB0D4Ae5e59C9BE0d61bb8fcFad6aAf528eC71ADcDfbCeDC4d03D1fC3ef61C ; < ud1Me2T2HGO9Dy1FAC6mSVXz506Ugf5xni5Fcap6wD0o3cs1r14dGLpfi60pjDqz > > // < CALLS 78,3170186368973 ; quote ; 56,1170355544163 ; 54,994694843328 ; 0,0204081632653061 ; 2,7 ; 51,3470875322909 ; 60,8869835765417 ; 7,9 ; aA0fbA308bCEceDEB1ffBdcD8dC9e79EeadDF0A3BfA7DBd24fcFE224598Cc6eD ; < x18nLmn4sRjB1e7R1j3J3L7lWP6ygzIpZc8Wj039NGirh1W99UKXAr65Ek9vA0gF > > // < CALLS 83,5381532126905 ; quote ; 53,8827769498618 ; 52,8051214108646 ; 0,0204081632653061 ; -7,2 ; 49,3027409091236 ; 58,4628129906001 ; -8,4 ; FBaaeB3ABcB0abB2ef8D2efA68a29211DeDc25ed7c0eed6ECb811d4DD33BCE9E ; < V137f6u4JkgtJgN24CgF8717Q8K7b3p1280WNWinBefwTxT1G8xGooBNmp9HLghA > > // < CALLS 88,7592877884836 ; quote ; 51,7431529046748 ; 50,7082898465813 ; 0,0204081632653061 ; -2,8 ; 47,3449849077774 ; 56,1413209015721 ; -8,6 ; 221ec45FafFbceda47fbec0bcaE5ACCfac5A7D43A3af9ce8da0EFf5FFaa8Ceb2 ; < 1YJL0388q092G65i4p8eROL74R2kCtq3x9kuhkWZM8PuQ56B7kP6X1Ve72sWdFtZ > > // < CALLS 93,9804223642768 ; quote ; 49,6953949372565 ; 48,7014870385114 ; 0,0204081632653061 ; 7,3 ; 45,4712863675897 ; 53,9195035069233 ; 0 ; FdaEeBea85e5b08DdEfca5d3E0FdBFDF5d919FA5eB0ECcD4DaeF1Edf2BeDBDFD ; < 5a71hM79i9L50uIgYhiz3STsy1MqPON8PUGdoPcpW3TlD3133rdhCp9084L0nAUK > > // < CALLS 99,20155694007 ; quote ; 47,7364764920315 ; 46,7817469621909 ; 0,0204081632653061 ; -8,5 ; 43,6788759902088 ; 51,7940769938542 ; 4,5 ; a72E9C09Db6cea5FA118CDBd8EC9FeBfB7dAB13a52AE4bfefbBcbdAFA26cDb0E ; < 4M4pu3FE2TA7s3X7THlwteMYyOYA0G8BtR22SgmUE6eT5d6KcIg7O4faKg61FC10 > > // < CALLS 104,422691515863 ; quote ; 45,8632042431598 ; 44,9459401582966 ; 0,0204081632653061 ; 7,9 ; 41,9648318824912 ; 49,7615766038284 ; 3,4 ; EC8CF835bdFfc8DEAd76967ffFDEE444B5dC5DCD32BAcAAf2DFb4A6be21eBDaE ; < 8SA9x2Yq82kgT3eDKv6ZlW8ioiu042AgiuqVjzWZH8M4FNjOqZZrua65c6bEm39x > > // < CALLS 109,643826091656 ; quote ; 44,0722900961976 ; 43,1908442942737 ; 0,0204081632653061 ; -9,1 ; 40,3261454380208 ; 47,8184347543744 ; -9,7 ; a5d8FC3d23B3eAE0AFCC1c92Df1C1aFfBc4D7E7CBdAd22192A4652C9AbfD1155 ; < xN8pgBc87kJ8td2p8tr9vDBw8v5W9lKs1ntV6bokb7y9j30a278Vfbcih5fI9c4a > > // < CALLS 114,864960667449 ; quote ; 42,3604074685174 ; 41,5131993191471 ; 0,0204081632653061 ; -5,2 ; 38,7597728336934 ; 45,9610421033414 ; -9,3 ; AaF7dEb29b55a8eB8B3C8D3Ef2EbFa4fDcFCFDFcdbeAd59eB2487c9B5d93Ee1b ; < x7qxd970TV9XD2Be444Nux7oXl7UWs4Of1uAY8xz1e32mRo1249jZtcCOGy5DQtf > > // < CALLS 120,086095243243 ; quote ; 40,7242348442273 ; 39,9097501473428 ; 0,0204081632653061 ; -1,7 ; 37,262674882468 ; 44,1857948059867 ; 0 ; d7462FDE4BFd1bD4f2dEBAb0Bbd15Ae74dBACc6eEB7eC5e5b2C8dbAbFFc36edC ; < 4DM5cF4gRa67gPraz17GeZeQF6D3D429b9381HLA41w8pa9KhHGY047kq7cOfSwH > > // < CALLS 125,307229819036 ; quote ; 39,1604890792011 ; 38,3772792976171 ; 0,0204081632653061 ; -0,8 ; 35,831847507469 ; 42,4891306509332 ; 2,2 ; c13484EEa0F74bBea5feAE1EeBCCDAEebFaCcE6BdaADEF9a599D13D4FB7B8bbc ; < XSH9sWjT36cXJ0veaBeGCEQ6N7fX4414p5Ohv75LgL4yrIW0zecs0nUD6Ilsub5u > > // < CALLS 130,528364394829 ; quote ; 37,6659504849378 ; 36,912631475239 ; 0,0204081632653061 ; -0,6 ; 34,4643446937181 ; 40,8675562761575 ; -2,6 ; 18CbeDEB2bCfd7e3DBBfC96bafAADA0c9f43fD74acB1cBbcd6FDbeCfE2fCCDeD ; < 62r01r0hCJTl3sfJQVOPGDhI4vi4QwhN4TnK9xkn2X4S6rN7wUQrrrAg9A6CGcjg > > // < CALLS 135,749498970622 ; quote ; 36,2374813440611 ; 35,5127317171799 ; 0,0204081632653061 ; -3,4 ; 33,1572954298159 ; 39,3176672583063 ; -5,7 ; 346AFDABFFdDdBe9Fb93BaCe1Ca45A38BBabFdBe6cCEAEADf0d2a7b33f7FFc9A ; < ElpZ7f3b1mR4eD5QOxwUf82CFz8nO227x3J5784N2YB6VVt16nG56j0H8ewS9S22 > > // < CALLS 140,970633546415 ; quote ; 34,8720391984027 ; 34,1745984144347 ; 0,0204081632653061 ; -8,5 ; 31,9079158665385 ; 37,836162530267 ; -3,5 ; f74ddAFaDEDdee3eeAF3fF0FFaefAa17b5cA6aaE5BD55Dfee5fD8C7E8B70dF03 ; < T2miBGV6A9Hmd0s3NN29pvjccw382jV1kBA3X5CNIcpI605TxC9BOOJ2N69Et7vC > > // < CALLS 146,191768122208 ; quote ; 33,5666859942514 ; 32,8953522743664 ; 0,0204081632653061 ; -5,3 ; 30,71351768474 ; 36,4198543037628 ; 0,9 ; aBdCaFD4e97DEEEEAA79daCBfddD2CF2ADe7bEcB5af07be1aacF3facFEFB3B0b ; < 7CA7pe1lTMd1s2R6G00nR8U8Xu1KJUGgMW13B65LW1rue56jVmHpy7HiWT3hq90M > > // < CALLS 151,412902698002 ; quote ; 32,3185939599338 ; 31,6722220807351 ; 0,0204081632653061 ; 0,2 ; 29,5715134733394 ; 35,0656744465281 ; 6,6 ; EC482D23b42DCcAEeaBcbE95d919Dec48fb5F1C59F7DEC28c3533d08Dd16E474 ; < ZtFjKuK5g01eIcJ5su1013OmGB2ZP7nz6ev7Zukw1vGPKG8pk80U6voifB6eUGy0 > > // < CALLS 156,634037273795 ; quote ; 31,1250489205501 ; 30,5025479421391 ; 0,0204081632653061 ; 4,1 ; 28,4794197623033 ; 33,7706780787969 ; 0,1 ; BA4ac0ae62eFaEd3Dac00aC58ee2fE7FcaDeeEA0DdC51EAd54Ef7ed4F42CF7B8 ; < vqWdMqn86g9gketU3ROCEK0Ri3FusF91Xt2Q308c2C8y84GT13DRgW85AUR08y3p > > // // < PUTS ; 5Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 52,2113457579316 ; quote ; 1,45814086476824 ; 1,42897804747287 ; 0,0204081632653061 ; -4,7 ; 1,33419889126294 ; 1,58208283827354 ; -7,7 ; aaEBc9F8aAC4483bAdCFE69DEb4Aac6fd2BfdaCa82D38e4FA4FCBC4EF8b3b7bD ; < eB280J82x35gu6Uisa2ohF7MZcI88EAYv5mu8y5833fKS1zzZ7PcKftdhHcFWl2G > > // < PUTS 57,4324803337247 ; quote ; 1,99682808355766 ; 1,95689152188651 ; 0,0204081632653061 ; -8,9 ; 1,82709769645526 ; 2,16655847066006 ; -9,8 ; 95658708Ad0bffBA2A1eFd24DDBa20e9d79ae53DbDEb1F2fBad0fdFDBB79a80d ; < 5G72jn9MX4cU76w92MOb30ak9X9Z00FWGE4Px0E05S85Mx3UMmWs3vjgT5fn2tGW > > // < PUTS 62,6536149095179 ; quote ; 2,63500538277204 ; 2,5823052751166 ; 0,0204081632653061 ; -2,3 ; 2,41102992523641 ; 2,85898084030766 ; 1,9 ; 1cBA68E1DCABF0D63Cc1ff819f3BeCeccb4d33CcdFbb73B6ceAeA401e961D5dc ; < 7N124If3EDw5UcmeNM3f2j6t77lLy02ngow85Bb1s05uUQmW3EZejfWbLUnballf > > // < PUTS 67,874749485311 ; quote ; 3,3735589011214 ; 3,30608772309897 ; 0,0204081632653061 ; 7,1 ; 3,08680639452608 ; 3,66031140771672 ; 0,6 ; 43f1fdfdFBBb6accc3dAfCFB6bDAeDFBd5bfFeCfCd1c7ABFEdaCbECabfb1A7f5 ; < 325ZEpbEfN64nqIN1lg18wgIND92X4db19wP6eW47hbo87g32MHSVzWC09741Nz9 > > // < PUTS 73,0958840611042 ; quote ; 4,21220927815102 ; 4,127965092588 ; 0,0204081632653061 ; -0,8 ; 3,85417148950818 ; 4,57024706679386 ; 7 ; 4f1De3E303BE23decE6fe7aCb4Be1dED9eEAfE5EeFB4a4fc4833CB31ccBBd7FC ; < 6s1w7zClhO6erjH0fupPura4hpVTHJIL42hjt2SGw3U6Vl8GA4Ch2Pz6hD28zJ03 > > // < PUTS 78,3170186368973 ; quote ; 5,14976943915488 ; 5,04677405037178 ; 0,0204081632653061 ; -6,8 ; 4,71203903682672 ; 5,58749984148305 ; 8,9 ; 7eFBDe9fDbA78DeD5C7550BE338dAf7CAafcCfDdD4B5e3C27DedbADefb4beA2c ; < cBA9r1VyJ9HNsU1M159gGBNAn1xB17Yee4JLS51z6M78pKQcFK1L4Vfzw8413Wo8 > > // < PUTS 83,5381532126905 ; quote ; 6,18435976024961 ; 6,06067256504461 ; 0,0204081632653061 ; 2,8 ; 5,65868918062839 ; 6,71003033987082 ; -6,8 ; AEdEfeC6F3557e8Cca16BcaDBdBCC11eCd6a7Ec5A6DDB403EaB0b6CDdEDd52bf ; < PEEdH3DYcwCj6H8E946fMT1JA5Hl8z3RhSayi11t3KmMJ274X79i6YhVgjtt37l3 > > // < PUTS 88,7592877884836 ; quote ; 7,31358464071178 ; 7,16731294789755 ; 0,0204081632653061 ; -2,3 ; 6,69192994625128 ; 7,93523933517228 ; 8,7 ; 3Aed0cC6Df895c6ABBbbbf2defbFD4CEc1eAC1fce03C6f03e14dcd17EE32a50f ; < fS94YtFdwyvAyosPQ8DlJ9hVeyhUS1Y7S702fMQPraB0eO8b5Gs6uoTt7pYfTDx8 > > // < PUTS 93,9804223642768 ; quote ; 8,53467559894276 ; 8,3639820869639 ; 0,0204081632653061 ; -7,3 ; 7,80922817303262 ; 9,26012302485289 ; -5,4 ; 2d9bfd8b228ffFBfBdeE4c8A49cf287eB5eBBedCbEEE8FcC8C485bAaa95AbDAB ; < 4R6Pg085usB55LJh9QB1lX97fy9HFPlJ7UHtmey9zt03eV0obYYKRiBlcZ90j1N6 > > // < PUTS 99,20155694007 ; quote ; 9,84460607936701 ; 9,64771395777967 ; 0,0204081632653061 ; -5,9 ; 9,00781456262082 ; 10,6813975961132 ; -9,5 ; fa66fa18Bf270fCdCcDCc6d22af1a6CbEa283Bad5e5B6EFf9C0dAC8d60b01ef0 ; < CJzWK80S8QkMFpu88CsgTRLNutkX2B79gw275dRz41Nj8fBn980bL8lS926t379x > > // < PUTS 104,422691515863 ; quote ; 11,2401827561445 ; 11,0153791010216 ; 0,0204081632653061 ; -0,6 ; 10,2847672218722 ; 12,1955982904168 ; -7,3 ; E09fdb1f7ebca27A775aAADeE5aeABf1E6A8AcfcFAB2cC326BC88aDcf9AD33Fb ; < mx1xCb8MRL9KW56V0w3nt258cTqQK28xv6nUj08S30fNx7IH6Fp3101TH3XZdqIt > > // < PUTS 109,643826091656 ; quote ; 12,7181175348316 ; 12,4637551841349 ; 0,0204081632653061 ; 0,6 ; 11,6370775443709 ; 13,7991575252923 ; 8,4 ; CF15caAEAcA08e8Eab1BecaCa99BadEfD9EBcE7B7bCC4d71dED8F2E1Dae04Bab ; < d861y5htLrnK38I20EzY5vD3e5YR172MrGt36h3qCPOCc2TQnXh5MP04s55e6N0Q > > // < PUTS 114,864960667449 ; quote ; 14,2750838328006 ; 13,9895821561446 ; 0,0204081632653061 ; -5,7 ; 13,0617017070126 ; 15,4884659585887 ; -3,1 ; cFC2a2d9Ed2CbFdcAA0F7187dBe7fCDbfc81BcB6F0fCdfB6EB39BDABbB22AAFC ; < kuNK68V09Fl7K1X7M7aLNp0Fmb7TRDF3Aor9n362d7Rw321EHEPqm8ktBW9AN4OC > > // < PUTS 120,086095243243 ; quote ; 15,9077601341598 ; 15,5896049314766 ; 0,0204081632653061 ; 1,4 ; 14,5556005227562 ; 17,2599197455634 ; 7,4 ; 7f3ebA8E8d09FEaAE86bb3D73feed18C3c82D24A1cEB485E73Fac7Bc6F0fa0aA ; < d6sLRdQLW9G47WfINl9AExW9B9u64O1z3IqF27iA1e9VLC3PIHtpa3qb6H84oKHX > > // < PUTS 125,307229819036 ; quote ; 17,6128632947828 ; 17,2606060288872 ; 0,0204081632653061 ; 8,3 ; 16,1157699147263 ; 19,1099566748394 ; -5,7 ; bE9eedBebFCad1ff1d8EfAfDEfD7cAaDEdC1038fCce0dEADacFCFbCFeb8B1BaA ; < kYAI1hfgRyMZ202dkf09IHnn4UF94lTgK1DP9Li8ozHS2an0E10Hvotp3ZWxGCuw > > // < PUTS 130,528364394829 ; quote ; 19,3871736261687 ; 18,9994301536453 ; 0,0204081632653061 ; 3,1 ; 17,7392638679444 ; 21,035083384393 ; 9,8 ; a1eabbBEFbEb9aCB3AAf672FC0aa9d7FfddDFFdCCc99b3Ac9CBc4e2e79c999bf ; < kZ591l3rffEU7HBUs84w5bedspPM3z0Yc9w24dREVk1w00kn8o4N4LyF2RcnD63m > > // < PUTS 135,749498970622 ; quote ; 21,2275534109413 ; 20,8030023427224 ; 0,0204081632653061 ; -7 ; 19,4232113710113 ; 23,0318954508713 ; 9 ; dc7156bb1d3Ab4fFBAA0dcBdBFaD30A613aCbd49f9A0d1Bd9fd1CD5BdbEBEe34 ; < Cw4ifK1dNXy1G0MIixgzE22uGTz9zZ9OMyRlVHXCDx1SxRzE2HpeEDxK6Mv4pDry > > // < PUTS 140,970633546415 ; quote ; 23,1309601909321 ; 22,6683409871135 ; 0,0204081632653061 ; 7,9 ; 21,1648285747029 ; 25,0970918071614 ; 5,5 ; Fe7F6DBbFAb0F54E3BEf723eFeAA6eadc7FbaDF982AfbDFcFc988fCBA5AAeA4A ; < 4AN31r9CQ1Dgpr8d89Z0f4z7Mu5tmhSnX1LmY08vdgs994P9nFADR05qUJ40wUUD > > // < PUTS 146,191768122208 ; quote ; 25,09445591243 ; 24,5925667941814 ; 0,0204081632653061 ; -4,2 ; 22,9614271598735 ; 27,2274846649866 ; 4,7 ; e73AF2BA9CdaEC01bEC4f9D941CbBE2Db72fCe6caaBAaBeB6eAFBDFfBdFDDb3B ; < H7EE753Oy9XDxA5enYzNpO34zMJQ7k51Vc48brpC19sGvY5r3ox292E2tBq5uXuY > > // < PUTS 151,412902698002 ; quote ; 27,1152128037616 ; 26,5729085476864 ; 0,0204081632653061 ; 5 ; 24,8104197154419 ; 29,4200058920813 ; 0,1 ; d88dcDC5a0C7eC98aACcE6F2AEBfD33d9C9CEABeEb549C0BD0dfB4afFB841B6b ; < 38w769t0mtgWx301DX3r62bbKgkzhCTGqTg2u3k038D4axVoS6d4152h3KAZkFMS > > // < PUTS 156,634037273795 ; quote ; 29,1905166900272 ; 28,6067063562267 ; 0,0204081632653061 ; 9,5 ; 26,7093227713749 ; 31,6717106086795 ; 8,1 ; E2A2CEDcFc5cC697FcC4CFc3FA6E2CD8F135e5F28be0ffB3beEF51B9E03adeFa ; < 2b8b4jS2gUx7X156mCS5hr5yOnLJ7xFO6vvG0P6bvz45Ri6zbrz7s73PZkNNqc1n > > // Futures_Eurosibenergo_hydrogeneration_LLC // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 88,946246 ; 1,14 ; 77,0230228070175 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; a972FB10dDcd5CbBE0AAaBc8C6bdffb28aD4cbd4a8A0de5A4dC25291ff4DaAAB ; < zvClZ3ZQhz6HTnXpEmy2cFJj0w54Y6ElSerqMlzlW4NxBtZk4XskLTtx36x8dAKT > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 88,9523013634878 ; 1,14008778 ; 77,0223268102109 ; 88,9520513634878 ; 88,9525513634878 ; -8,2 ; -2,4 ; 9 ; 5,8 ; -4,3 ; 3,6 ; -0,56 ; Future21AP19 ; 4EDbC43b7AdfCCd4aEbFED011aEEDBabd61ac5d0BCB5a2E6c097f7ECaF1eE6A3 ; < D90d3oT5UNNp139ra66J68G8zW01351TK4GjC16wWpgK8Z5M878kK34pX3EOmB2j > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 89,9145580176993 ; 1,15381372898453 ; 76,9281401832796 ; 89,9143080176993 ; 89,9148080176993 ; 3,9 ; -7,2 ; 9,4 ; 1,1 ; -0,5 ; 8,4 ; -0,29 ; FutureJU1912 ; f76bdF0F58Ac76bB6Ff6F229Fc2Cce9aeeCFBfBC858Ed03aDda3E91CbAb4Ad3E ; < 7M3yKtfh2PfJwyZ6s4xT2082Aqy9kWXU5XietEX3uxuQMnK0ATv8ZPais0Bd8uBL > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 90,9486428007766 ; 1,18185233402553 ; 75,9543200807455 ; 90,9483928007766 ; 90,9488928007766 ; 4 ; -3,4 ; -0,2 ; 2,3 ; -2,5 ; 3,4 ; -0,92 ; FutureAU1974 ; 5D0e9A5ffcBc3fdBf9FEAB8BBc4Eb8eeBacAAAbeA814EFF07bDeEA1FAacCEdfA ; < mb4ELqStLV619lKlA1vB8nG2tGwzvi7O7EJ8wRQL8yI9lVFW1T45f4bG9SHdl5dR > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 92,0052462605474 ; 1,22526894133997 ; 74,0898379582931 ; 92,0049962605474 ; 92,0054962605474 ; 7 ; 2,6 ; 7,8 ; -1 ; 5,6 ; -3,3 ; -0,07 ; FutureOC1958 ; B97ff8Be10ac97FebCc8Ed27bAfcaCAfBE11589EcA753ac4f0c9adAc4DFEFB4B ; < PN86638rM1l3qA59tqp2ID6G7EB4RdQs58m78sNTc1OKm5rz499YqSzr1D2KYUEt > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 93,1659176345358 ; 1,28574572300012 ; 71,4606086319663 ; 93,1656676345359 ; 93,1661676345358 ; 6,1 ; 4 ; -4,1 ; -5,7 ; 8,9 ; 7,5 ; -0,33 ; FutureDE1972 ; Ea5DEBDCdf6E04134c0DccdCdceAdcacd14B0ecfDe3BA9EF6Afff4A62Ffa754B ; < yRjWGicicY220wT04O327dQyu2cQ6etwxSB9fI5fZDWE3159HVHk75l7YQHHX98F > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 94,3571798915937 ; 1,3655883804194 ; 68,0963552740649 ; 94,3569298915937 ; 94,3574298915937 ; 5,7 ; 1,9 ; -6,5 ; -2,4 ; -9 ; -9,2 ; -0,92 ; FutureFE2016 ; beB9cafc5f74c6BcBd2Bfadc7fb6c6B7cd7eDC8a3EC5e5eFdBaD1FA1fCeFcD9F ; < 5Uc8UUc65RI8k57gG7UXT1948H7uN6eT1e4f75dar464AUv3b24FT7nTPziDL497 > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 95,62077229984 ; 1,46806213248607 ; 64,13400910213 ; 95,62052229984 ; 95,62102229984 ; 4,7 ; -7,8 ; 6,5 ; -5,5 ; 7,7 ; 9 ; -0,09 ; FutureAP2078 ; 5Dfc0CA2FD9C8137ECEBAd77Ad8FDAdAa56224Ad891EDb5AbEf1ADA2C3C488E4 ; < ZAuc3uC5okd3a5LfknHNk1Uf60Fc4z1O2fu2z8e8pqa3yt4y587i7N92lE2w0k7V > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 96,9988918684236 ; 1,59740994169548 ; 59,7226043463018 ; 96,9986418684236 ; 96,9991418684236 ; -3,4 ; -2,9 ; -8,5 ; 9,7 ; 4,2 ; 1,4 ; -0,53 ; FutureJU2017 ; a98aEcad4A221C2c7bCafcB19bDabD35cad0ab4aEe1A05C67C72cCDf3f0FFEec ; < 3Y87l2Q0vASLe3Uo82718O7PZ0ea8dSx80A1J7z52KbN498daU23juzZGtC7w1oe > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 98,2776322988409 ; 1,75897165222092 ; 54,8722092961266 ; 98,2773822988409 ; 98,2778822988409 ; -4,4 ; -8,3 ; -2 ; 1,1 ; -9,9 ; 7 ; -0,76 ; FutureAU2010 ; CdBcDe75bbe6F9bA4eaA8EeaCf0daaC10B7aF808aDfBdBE8CF25FD1cD4beCabE ; < FsdBN05U12H1qHrv9Fz9Zpl8aCMll67SB9q99hnmI7nO92QYLHKWRbHxLKuVfwPj > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 99,8040496306464 ; 1,96039628534162 ; 49,9101401471257 ; 99,8037996306464 ; 99,8042996306464 ; -5,8 ; -2,1 ; 4,2 ; -1,5 ; 3,1 ; 0,2 ; -0,65 ; FutureOC2039 ; 8C3eD99eCCa80CeF9E3aAbdcc0DafeaBAbFFdF59DD2dfd3c4fDeae477A867Bcc ; < roSgZ13Ylk7np66DCPvI0lMk8hRX1HGu7Z7i56PvutXDyzQ678mKqy61mQKC0rGk > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 101,147366505294 ; 2,21161437944796 ; 44,7346305238537 ; 101,147116505294 ; 101,147616505294 ; 4,2 ; -7,8 ; 5,1 ; -3,1 ; 7,5 ; -4,6 ; -0,5 ; FutureDE2099 ; f0ff8D7B6B952eeaDECAa1Bd1b36cC1988fAdB0Eb2dCA56aFDbBfEfC24A4DEE1 ; < 6r2R2l8l2ET4j08I53mhe3782ilBs8526a94I88TKp5C4ZiLGNE8vIUxM719OzTZ > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 102,86105953055 ; 2,52500754758355 ; 39,7369315109529 ; 102,86080953055 ; 102,86130953055 ; 8 ; -0,2 ; 7,4 ; -7,2 ; -4,6 ; -1,5 ; -0,81 ; FutureFE2113 ; da3dAcA6Fb18Fb93dCefd7DFFeAf685FBBCdAfea76Ed51f14E8EFBfD37ca1fDD ; < R3C6G960ZI17QiJrw5YWoE1He6z4XA1xmmK625NFdC5NE6Ol40BKERp5vt9izNET > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 104,422691515863 ; 2,91794417212341 ; 34,786391156303 ; 104,422441515863 ; 104,422941515863 ; 8,9 ; -0,9 ; 2,5 ; -7,6 ; -8,7 ; -2,1 ; -0,75 ; FutureAP2121 ; DcCbCCb6FFeC7Dd05abcEd5627cD40BBF20FfDE706F2FB22b4f6ABAc0Dfe2A6f ; < Tv39stX84p8hlKx12oYMkV90zcY9EqJhDUHiKRy3LD2t0Rmdi4G5NcLZ2RNWp0U6 > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 106,284260486919 ; 3,41278533020502 ; 30,1429668740792 ; 106,284010486919 ; 106,284510486919 ; 1,5 ; 3,7 ; 9,6 ; -4,8 ; 9,3 ; 5,4 ; 0,57 ; FutureJU2125 ; DAfcEcEDCffb3cbea32cAE3Aef7aFB84E5c7Bd5aEF8f5056db0788EDEC2CBef4 ; < 00lvY6pM7uqGIkW6p83m5q1xUn32kVLTALMQxn740H2wMdPx5qJ8XgPE791B2qSn > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 108,079311831265 ; 4,04028402355945 ; 25,7504242773626 ; 108,079061831265 ; 108,079561831265 ; -2,6 ; 4,5 ; -2,7 ; -3 ; -4,7 ; -4,8 ; 0,92 ; FutureAU2191 ; eAaDD7b05DC75DF646Ade4DF7940e7477569af4CeBFe4cfBcdFE7adDEF6EcEDF ; < N8boCg09YF07wz3Id4lOIiZRs0UV14YF20Yglxqf8bQVWA02q9D3VOloM2GR06yT > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 109,807288812178 ; 4,84081984742778 ; 21,6836139895859 ; 109,807038812178 ; 109,807538812178 ; -5,4 ; -3,3 ; -3,2 ; 6,5 ; -5,5 ; 5,9 ; -0,34 ; FutureOC2156 ; fEFddeBb822ba9e705c88E8e39F94bE57Acc1FBAeF2B7f58fecAd06a5e7A68aC ; < 9E31Dt0H4487kdgiOi1t4pXfnzlZ242FG288b07252YK0UuK06y6Se4yN8FHYO75 > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 111,828533850049 ; 5,87033664144765 ; 18,0497650612541 ; 111,828283850049 ; 111,828783850049 ; -9,3 ; 9,5 ; 6,4 ; -4,8 ; 2,7 ; -9,8 ; -0,12 ; FutureDE2111 ; aFC2dFB951d025Acc0F6Ca5ba7bDEFFcbB6aCCAfd68ddfBCFb101CD8f5caBA0e ; < Kn2l0pnfrp0RLgSG7zI5cMsoeU2g3Nps57Gz37Q1Hi2BWzsDDyk5QNQS3818s7nE > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 113,661869611334 ; 7,20582532470991 ; 14,7736087803252 ; 113,661619611334 ; 113,662119611334 ; 4,4 ; 6,9 ; 8,9 ; 3 ; -7,4 ; 7,9 ; -0,53 ; FutureFE2244 ; D2fe3fA02eaC63Ff4Cfac7DcE7146a8dBFac2faFbA46Bda0dEFB4Cb06Cc2Af77 ; < 9SXn4NOzTD548UCu2bWAww0dF9tF4K0XG16M1jeJbI2Xp44a3A5Jg5izl939Co73 > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 115,59159550309 ; 8,95142119724208 ; 11,91321153994 ; 115,59134550309 ; 115,59184550309 ; -2,8 ; -1,1 ; -3 ; 0,5 ; 7,9 ; 0,1 ; -0,18 ; FutureAP2257 ; Df7bbaE0EDdbe740caabB0fA2ac89C9c3a5DFB2bA9DE1aacc58bdf1DADbdE3Ab ; < t8U4i9eL675C941p2D40Yn8a302y1R3okaHql2qWw0dSmkB3B86zvMSE1sed1wlP > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 117,975212872977 ; 11,2553508558275 ; 9,48170016058578 ; 117,974962872977 ; 117,975462872977 ; -4,8 ; 9,1 ; 6,4 ; -8,8 ; -7,9 ; 5,5 ; 0,55 ; FutureJU2243 ; ea72Ae8C34Edd6f4c0c5A7f994d2Ed0FcbDF4D354eFd9EfFc40aaaAC7eAEEc21 ; < CbKM25OV7Bpb3wpTz8v0vTYOcu8jLQ9XDphpx98O4I64G1o4vXP5WjXH1p4s3043 > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 120,594055013077 ; 14,3231732077031 ; 7,4195068553818 ; 120,593805013077 ; 120,594305013077 ; -7,9 ; -7,3 ; -1,6 ; 5,4 ; -9,3 ; 4,8 ; -0,62 ; FutureAU2211 ; 1b6152be9054b6f2BcDaEcfdc2B70c8C4F977c06eb3dfaa323FDd1cEB9D8f29c ; < LO3n20Hj0ax1nCr8IRF4148w2dC1Us02Bw01Y61V4J3QqiX27tI2S9060UZe3lJl > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 122,711404124748 ; 18,447771771189 ; 5,65182796311443 ; 122,711154124748 ; 122,711654124748 ; 8,9 ; 1,4 ; -1,9 ; 5,2 ; 7,3 ; 1,9 ; -0,88 ; FutureOC2266 ; 3f1fBcAB2D2FDe0fAb9B74cc2bCAfbfceddDA8a7446C1b41aa3FE17dAeC6CA92 ; < 1ktwsvUnMu1Ds7gEcTDy4g235n73ODyi8EOyCN8zQO2KglRQOf8jpqtC0QY7FW1d > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 125,27840794657 ; 24,0494945956456 ; 4,20919088126088 ; 125,27815794657 ; 125,27865794657 ; 7,5 ; 2,7 ; -8 ; -1,1 ; 2,2 ; 0,7 ; -0,97 ; FutureDE2276 ; aD0F83fBdeeDf8b6BDFBCACE27FBecAF9aFFCFEF33d4B1e73A07BDC62db97ecf ; < 69ColboEkY9IkRA5z2UwDn7gv9udHgumrIFKXSdB5333X9t7K1HK22GpLVT6W1I3 > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 127,359472854299 ; 31,73289355884 ; 3,01348438704921 ; 127,359222854299 ; 127,359722854299 ; -9,1 ; 3,8 ; -2,8 ; 2,6 ; -9,6 ; 9 ; -0,84 ; FutureFE2394 ; AF9dCC8aCAeB1DDbd4EC58eAAF4bAfBc9afdFbdDEb0F0fb6eD022DA7F2a3AFBC ; < m9A3Mg9w8qlj0369vpF5X7Pt64p4mPfqZwXBGi9KE98fMolcppnAKo4C2156eTg0 > > // < CALLS ; 7Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 57,7957977515451 ; quote ; 75,8293220185812 ; 74,3127355782095 ; 0,0204081632653061 ; -2,1 ; 68,6255364268159 ; 83,0331076103464 ; -3,1 ; dF8B7fbbdBcDbFa8c5Ab6bfA78CDbACBc52Cfbbdaab0f7Ce7C21acfCeedBa7eB ; < 044r3y70L16gE6WA1r13z8zd09ENV2H2qE05oHXt6ca5a3ZR1iO8Xwo4i63rjJQ9 > > // < CALLS 63,5753775266996 ; quote ; 73,7322794357713 ; 72,2576338470558 ; 0,0204081632653061 ; -5,6 ; 66,727712889373 ; 80,7368459821695 ; -1,9 ; aAdEfDFc1DAD6E3CcC1f5DA0aAeccEd67afc7f0Ab787B8ba2aD5beDD8EaeA613 ; < 8LgSLbaECLDba7ZR1b4Pb2BdH5Q5SKP6JSKJWvI733HLLDYjyxUdi3368ZrY3Ots > > // < CALLS 69,3549573018541 ; quote ; 71,703437256091 ; 70,2693685109692 ; 0,0204081632653061 ; -2,1 ; 64,8916107167623 ; 78,5152637954196 ; -3,9 ; b8FEFa9CADFAc2aAaDED9fEC56BBbFFCaEdDeA1E231eecbdBbdDaCBF2ce8fCab ; < 8s6WO3YlE40WLoHK4F6086W9ZtH4HC27d23rEl97ht9jSR7VhTyyC8N9c58rm7fm > > // < CALLS 75,1345370770086 ; quote ; 69,7418885557811 ; 68,3470507846655 ; 0,0204081632653061 ; -9,4 ; 63,1164091429819 ; 76,3673679685803 ; 7,7 ; EFA7aA6c74cd8EbA7BC4C6767fABa3CB2Fd1f2BFB0A056712dbDFaaa1FbbDfcE ; < wF71xW52W17cExl605bJrym33K1I0RbS55cQ5fslyIjVRes1N3XpQ2V1l6Q83F2A > > // < CALLS 80,9141168521632 ; quote ; 67,8463197897546 ; 66,4893933939595 ; 0,0204081632653061 ; 1 ; 61,400919409728 ; 74,2917201697813 ; -3,4 ; b0CAE5CAe8Ad9D3DeDeeFdCFd5A9EfBBE2CDDe31CECF3aCEAfDd2Bd84AFad4B2 ; < 192RrnitE3L6fR4FGFdSjapYr5U9ZS2D0Q6c7uMQLYxy6p7A687JkNaBk93GAeu6 > > // < CALLS 86,6936966273177 ; quote ; 66,015129686744 ; 64,6948270930091 ; 0,0204081632653061 ; -6,5 ; 59,7436923665033 ; 72,2865670069847 ; -7,3 ; a6CFA1BDBa61CB0EDf1C26a7fCB6eCD0dCabddceaEDcD4dfCac23Ff03bFBfCbE ; < y3r99yNaO53YganL5lie44acwQ4xV94T83jFhYXrXVP4a01Ppmy9v7FGbAX20U7f > > // < CALLS 92,4732764024722 ; quote ; 64,2465199791314 ; 62,9615895795487 ; 0,0204081632653061 ; 9 ; 58,1431005811139 ; 70,3499393771488 ; -8,5 ; 4AFd3A8Eb8ebcbFb95FaafADf6AD4fFFC20cFAefD4B4aa24Cb8c6EBcCdCc9c18 ; < sGr3Ma5kE078427Oa0bhXHWtAhmVjY7H4v9rdt04frBh5s6xWrHP0R9gv8289sH1 > > // < CALLS 98,2528561776267 ; quote ; 62,5385644631442 ; 61,2877931738814 ; 0,0204081632653061 ; 5,9 ; 56,5974008391455 ; 68,4797280871429 ; -8 ; CEC3D3B00fc2fE01c5F9EF399bc537bd2AcEd5AfA21a2AaBC3BACFEec39bdF80 ; < j01cE15q2G92Y2wGt8E6OUkz5F112z3lGv0HN53Sq6WQ0s7ZLbt20vDgeeOCCoBz > > // < CALLS 104,032435952781 ; quote ; 60,889261411245 ; 59,6714761830201 ; 0,0204081632653061 ; -1,8 ; 55,1047815771767 ; 66,6737412453133 ; -2,2 ; f9e56BDD8ab9f6FAAfFDb3ce6ADFEc9af92b0fF6BB8F40A81baa3aBa26fCbeBA ; < 0dBoGxXx56x5f07XbGbm2rGzZ7HYz7SD0Oz7K6r89b5Xt0Nbf3rr5hU1BHa3e3kS > > // < CALLS 109,812015727936 ; quote ; 59,2965731937061 ; 58,1106417298319 ; 0,0204081632653061 ; -3,3 ; 53,663398740304 ; 64,9297476471081 ; 3,8 ; 78bEe31ac0EdBbEB6BAbFDA5eAa89cc49B2aE5BA8f548dAcEAacFcCfbef4AeFF ; < 0R11FEJ0JjSG3EWc6k6hUFxX3OysoDOcw65rQp1qEY71a8fr9QzM2kMI5P9avWNe > > // < CALLS 115,59159550309 ; quote ; 57,7584560648362 ; 56,6032869435395 ; 0,0204081632653061 ; 7,7 ; 52,2714027386768 ; 63,2455093909956 ; 3,3 ; ddfaABdb097EA9cBfEFCCEABBA2FcdA397C1dAf5A59fcbA6EFcba1B8FdcC3Fb2 ; < Q5s129l2ZDAJV28LxeV1Ty950vr5UOk9m3r5rjGK87md1UaWSKeYT8OOeqo4MW53 > > // < CALLS 121,371175278245 ; quote ; 56,2728823786395 ; 55,1474247310667 ; 0,0204081632653061 ; -9,5 ; 50,9269585526687 ; 61,6188062046102 ; 4,2 ; ec05c4d5A2dbf7200d3F2fe6bB8Bdecb9F9dbbf9Fba307AdBDeeba8EADEaacF0 ; < Lgu8n88dPsiaIg5RLMa0dA139dg1zr7KW36fL7jzb5d180H0N46635Cp91KTuSw2 > > // < CALLS 127,150755053399 ; quote ; 54,8378569718335 ; 53,7410998323968 ; 0,0204081632653061 ; -3,5 ; 49,6282605595093 ; 60,0474533841577 ; 5,1 ; bc49CacaBC5f0FEdC9B06dBEFf4E7cCEc2DABB777BefeaBD6eBeBA15BDf0Ae6e ; < 03rig5rll02VOzvijl3s984Po1DKg1m1fsSGUdBq74ahSkQ8wLpVPD7T6b5Y0KY6 > > // < CALLS 132,930334828554 ; quote ; 53,4514290506786 ; 52,3824004696651 ; 0,0204081632653061 ; -2 ; 48,3735432908642 ; 58,5293148104931 ; -0,1 ; 28AFCbdd9d04Fe6eDC3FbCAD889A6c54FBEFbEa3dbD3c3115DcFaeFddABffD77 ; < 4r179f5kRL15Ocyk3B90gfM6pndEhwCLetPy880WPdA2TUB2Wmyee79LrknbB469 > > // < CALLS 138,709914603708 ; quote ; 52,1117006118506 ; 51,0694665996136 ; 0,0204081632653061 ; -2 ; 47,1610890537248 ; 57,0623121699764 ; 3,5 ; Cfc5ceE81A69F86DCBDdD1Ffba16CfF0a33BcB7Dc1C9AeFBC040829B16c1a54c ; < uHygP55b284OtLVJKpuk695NqbI25PCUzu0yy999t622h5oW56FWZ94Cv7E1TBas > > // < CALLS 144,489494378863 ; quote ; 50,816832193542 ; 49,8004955496712 ; 0,0204081632653061 ; 2,6 ; 45,9892331351555 ; 55,6444312519285 ; 6,3 ; bb71f8dfDd4bD9BD216A6eecFBeefCa7dCE4cB4f92AdBd9e4cCBaDc0b6cCB3fd ; < 74TTt4us08D3NGb0dZU453uIQh7X27TFChYUyp8V2V1SlHVbuvN22UB0LSHHvLVi > > // < CALLS 150,269074154017 ; quote ; 49,5650465736045 ; 48,5737456421324 ; 0,0204081632653061 ; -5,8 ; 44,856367149112 ; 54,2737259980969 ; 7 ; eC01DEB7F4aD5ed0ebDEfbDeD7Cbc74dfbfbd5FFa19adCcf3e4bAB1D5aaab20F ; < x22EDMPwnKC6j2kxvTQmObwK0aS377mxHYu4PTMD94AeEAQH5Lsj01Egtm9rxstU > > // < CALLS 156,048653929172 ; quote ; 48,354630893647 ; 47,387538275774 ; 0,0204081632653061 ; 4 ; 43,7609409587505 ; 52,9483208285434 ; 4,2 ; d5EB6fEDDa62Cea7fd5C2a4AEC1CeBbCaBc186Da852aDC6daBfB7AAD6Ed0569B ; < r9f90VxcIu35NABd3SsX2z8J8LGwi7VO3Oo20HuQI2Zv8g034aFyZYly8P5d7RM0 > > // < CALLS 161,828233704326 ; quote ; 47,1839375816582 ; 46,240258830025 ; 0,0204081632653061 ; -5,8 ; 42,7014635114007 ; 51,6664116519157 ; 2,2 ; e276004F3f06AbDBfcbDeC9f3eFa0fCcF6fc220bFb7Ac885C0aDFDefb8CfeA37 ; < 7NHhitOXPi418NwOOi8FjAtIkc6SNZ6D3xbEE0p3PhnA6cSKlYPXHDYVegcI35P2 > > // < CALLS 167,607813479481 ; quote ; 46,0513843634353 ; 45,1303566761666 ; 0,0204081632653061 ; -4,1 ; 41,6765028489089 ; 50,4262658779616 ; 4 ; ECD38ad7bAbfAfF2D6De4B2DeBdAe3fBbc6e0EEda9d47559C5fb3Fcd4924DABd ; < xvljmq9OUxHhH5Xsa73E3z220821KCOR25m9547OVmjznG4iaaI2RjEXhFZit1g9 > > // < CALLS 173,387393254635 ; quote ; 44,9554535892403 ; 44,0563445174555 ; 0,0204081632653061 ; -9,8 ; 40,6846854982624 ; 49,2262216802181 ; 4,6 ; 3D5bC1E2CcDc5FD2ffA5Ef6fE7d77B1ce0Ca49BACc45D7abd0f7D3ebcB7A34d2 ; < 1i9A6RIPmjqg4kUbm68X93hW51JV0EnO33y8uHy6LkVbTD2li0hvw008yolLMhTp > > // // < PUTS ; 7Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 57,7957977515451 ; quote ; 1,54299840391275 ; 1,51213843583449 ; 0,0204081632653061 ; 5,9 ; 1,39641355554104 ; 1,68958325228446 ; -7,7 ; EcD9A5DecEd72B8d5619EADd42fD2CbE5A8fBcEdB8BBAd2CA2f1BCCea6CCEE1c ; < CsVDpB2I12eV7lLjWmCL0cvRCCkCWKnFAO45B6Y7l5xqg064zX9R6fkmsGWQ4Q2M > > // < PUTS 63,5753775266996 ; quote ; 2,017323459636 ; 1,97697699044328 ; 0,0204081632653061 ; -9,8 ; 1,82567773097058 ; 2,20896918830142 ; -2,8 ; F6ceb694cAdDCCcD4F3f6148eabB4de6dFFcfE8e1EEaAfCBbaD2Ed0a03c20FDf ; < 0afdTIQW37WwEiAuHvW32PAeLN0OjGK9J5TfR85PGjm3VO95D0yIpxCwgjLY9m3t > > // < PUTS 69,3549573018541 ; quote ; 2,5598489184889 ; 2,50865194011912 ; 0,0204081632653061 ; -3 ; 2,31666327123245 ; 2,80303456574534 ; 0,6 ; aDD5dCA56eB4ccdbE2bf81deae2BefFB2CF1Aa8fc0bFcBDcC0afeaAa7f9cDdb1 ; < 59Aaf78Otf2fdt5M10A3O8Pk51UCv3eR6zvT11DNauw7r2LL93BcPcP373ZcI6Xn > > // < PUTS 75,1345370770086 ; quote ; 3,16966785671218 ; 3,10627449957794 ; 0,0204081632653061 ; 5,8 ; 2,86854941032452 ; 3,47078630309984 ; -8,2 ; 76DFC6efAcaBfbDF84bc3Faab3ABfaC3dC80EAB1CAf06bD564B5dAabdCFABAb5 ; < pf46UP7DFw0DWOS7850tT8TA9mJ2U74EjfF5t3WAsMnvL7Qr975Sfyj15MyG7h33 > > // < PUTS 80,9141168521632 ; quote ; 3,84546672921888 ; 3,76855739463451 ; 0,0204081632653061 ; -7 ; 3,48014738994309 ; 4,21078606849468 ; -8,1 ; 74Bc6Ab3b0Ef4AAc00a42aEce3Ef0EAFfFFdDE7E906464CCf7BF9aAcbEfED3cC ; < JhBDO6aH5uIlp1HM8uP7yFXqid2Yng6MZmDd42lGkRo4ceWEcZXQ432eU87xfgfb > > // < PUTS 86,6936966273177 ; quote ; 4,5856442647414 ; 4,49393137944658 ; 0,0204081632653061 ; -4,3 ; 4,15000805959097 ; 5,02128046989184 ; -4,6 ; e6eE6cBa7fFF161eEA3b27b9be628Efd1D6Bf27CA1BCE2aeDF6A8EDcAfbFe4f9 ; < izVXk0a08d5Xn1j0O0t26a6b0eI8ldH6Yd8X2oHHktwA6DeH4PdldiN9Np90iS3t > > // < PUTS 92,4732764024722 ; quote ; 5,38840219566191 ; 5,28063415174867 ; 0,0204081632653061 ; -3,1 ; 4,87650398707403 ; 5,90030040424979 ; 2,5 ; 8BEA27c445Bc0B5dBFD6AAFe64fef0AdFc6fC11dCFA94FEE3EbB7BeFF4DcaeD0 ; < 7B0717lm5V1yj9yvsr1A2PZTYZCQWp17F5e064ByyiO1OP8ZbNywm3cWjXoQt1fm > > // < PUTS 98,2528561776267 ; quote ; 6,25181431820796 ; 6,1267780318438 ; 0,0204081632653061 ; -4,2 ; 5,65789195797821 ; 6,84573667843772 ; 7,3 ; FDa79D17BEC8A2B2A8B0bC0Bd7CdEfAf8a3feCFac8BbadA54C0E7D5670f6c70f ; < N2Pp1x5NY37c68NMxR3zq5r5P72OZmFNYMyhKZ3d57bUxWjh2BP7DvWu573m8tyI > > // < PUTS 104,032435952781 ; quote ; 7,17387890484187 ; 7,03040132674503 ; 0,0204081632653061 ; -7,8 ; 6,49236040888189 ; 7,85539740080185 ; 5 ; 9fc7b4a29deb29CCb76Da2B3cc67b2c90D8BeBb4ef5A6DB9CdDDD3cA6Aa6ad5b ; < Vmu7W7LY71JijYxZw8so08pb9yf2RGm5XYqUjRuiDBYrpQio6yJ1252dgP9u9Zz1 > > // < PUTS 109,812015727936 ; quote ; 8,15255832583608 ; 7,98950715931936 ; 0,0204081632653061 ; 9,1 ; 7,37806528488165 ; 8,92705136679051 ; -7,3 ; dAdE3ea7d173dfe041d0fFD217dabAe88aFdDe6eaFFDCdFcFCfb9608dDEfffeB ; < X49rKF1iZiMO05NVuW769eL733Vg3xon24eZ820I8xo4Pu3z8C69iF0P374R188y > > // < PUTS 115,59159550309 ; quote ; 9,18580883549939 ; 9,0020926587894 ; 0,0204081632653061 ; -1,5 ; 8,31315699612695 ; 10,0584606748718 ; 3,6 ; F507fBD327cdE4ABBBCBFF8CD6DDf21AdC7951D5DF2bc61cAB35aeA02DfACC1b ; < r5G7k7g6S90VhX2JTAhe1W84qRbSTC9OA2x5s51Yf4d4RPuvl0UMF4zC3wuus8dV > > // < PUTS 121,371175278245 ; quote ; 10,2716027878358 ; 10,0661707320791 ; 0,0204081632653061 ; -9,5 ; 9,29580052299143 ; 11,2474050526802 ; 2,4 ; FBe79D48bacc9BCEbfdBEc3CBe6bc134eCBCFaCf02D6F3AacE7eeCfAfCFEebbB ; < 6bLQe1FgdU6Kql33P0wSqz2N61206H5ickJP3Fwu0xxO0OzA8bauiBy0HmJoebUu > > // < PUTS 127,150755053399 ; quote ; 11,407945019563 ; 11,1797861191718 ; 0,0204081632653061 ; 4,8 ; 10,3241902427045 ; 12,4916997964215 ; 1,2 ; aaA2229cACbAafA9Ee74dcbbCeaDFfbAEE9CFef91FFb83d3e8cfE67BcEefbE3C ; < Vod3MLw81bq32Q3I767ZFON82Q9Z0m1Xn6058ZWSr80l1h88EJ0PKTtVBC3gn39E > > // < PUTS 132,930334828554 ; quote ; 12,5928847369413 ; 12,3410270422025 ; 0,0204081632653061 ; -8,7 ; 11,3965606869319 ; 13,7892087869507 ; 5,5 ; d4CfdFE2e9f3AECDceDD582bdE09Db344a9CCA0E474ffaaDb9DD8fCAF39fac9a ; < o64HF5PrJzp7g6MBS8168NgoCFaEQ1x8V9rV7MVE4m0cghOUx7rXWrB85kGm0p2H > > // < PUTS 138,709914603708 ; quote ; 13,8245239366464 ; 13,5480334579135 ; 0,0204081632653061 ; -1 ; 12,511194162665 ; 15,1378537106279 ; 1,4 ; B2CbFdcC28e5C4d61d091D5eAbdd4DBCd5a06a6175e8E81e5d13BbD9DD1aBc54 ; < kbVppqOTLMFN9q2bkljQwrvfx4blXey1j0W7SG43zH6tgPfiG3MxNgwM9N34aYtc > > // < PUTS 144,489494378863 ; quote ; 15,101023156871 ; 14,7990026937336 ; 0,0204081632653061 ; 5,7 ; 13,6664259569683 ; 16,5356203567738 ; 8,1 ; BfcFCC775aedeBD730dC2CbCbcA0A0FF687F441AEdCa3D3A49EaD2CA9DaC41Bc ; < Z4IFi4LpXnfmDD9R6MhYm3QiE0iO3GQbDr0d9291YzcXd4rDYW30j737X9Gn2139 > > // < PUTS 150,269074154017 ; quote ; 16,4206051754666 ; 16,0921930719573 ; 0,0204081632653061 ; 0,3 ; 14,8606476837973 ; 17,9805626671359 ; -9,4 ; EcdCAC9fC0c7FbFfae9aBFcDbaA9FCCfcAAbC7f5DFCdaCdFBb1ef2adE4DAFeFB ; < 18rds8qfs7ot043mEW47uPXlf86rQ6ZIM3R27UoBgvOD7xQVg069AftP2fK294a6 > > // < PUTS 156,048653929172 ; quote ; 17,7815571340423 ; 17,4259259913614 ; 0,0204081632653061 ; -5,5 ; 16,0923092063083 ; 19,4708050617763 ; -4,9 ; abd4BFBF5d3D969eeB04D4ecF4c8ecF8BEbb069A37dCd368dBbACdF8e5ebf5B1 ; < DFu1zzO58Mp9U7WYqX2kZhHyhl4E7BSGorv6GOPnCVAKt5luwWqUxT9m1tQ83l99 > > // < PUTS 161,828233704326 ; quote ; 19,1822314605867 ; 18,7985868313749 ; 0,0204081632653061 ; 7,3 ; 17,3599194718309 ; 21,0045434493424 ; 7,3 ; B3bAdeeeae71f3CeeA5dE8c7AbCb949eeDFaAd28Daaec8ba3AaDECFACae82Fb0 ; < X42h105NFXGb5sey1841VPC88Kv5DoXvj91WVP84fLMa1St0135tw9RZC70Pp53o > > // < PUTS 167,607813479481 ; quote ; 20,6210458808969 ; 20,208624963279 ; 0,0204081632653061 ; 2,9 ; 18,6620465222117 ; 22,5800452395821 ; 4,5 ; 4C695bfbbc3Ac9DfA6daa922bEabCF59Acebe97bBaDA2EB30CAcbeDC5EDE3Fe6 ; < 3E7iM7M5p5f11bS45OjaJKVA70dst5ju15v2nCn1vuHRXGs233Zfw1j0LFwK90yh > > // < PUTS 173,387393254635 ; quote ; 22,096482745235 ; 21,6545530903303 ; 0,0204081632653061 ; 1,1 ; 19,9973168844377 ; 24,1956486060324 ; -9,8 ; fc6A394E9394bc0EfaBfdE8FC5EF8ea9fCE0D7bf8A1BbE7bd74c0EDC5CBDd5e1 ; < 3z1XMGyeh32Q3KZDzolpoIq524m57Y5z2NxBd1lH7U22uF3BST9H416WkGxqU4U7 > > // Futures_Mostootryad_org_spe // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 25,532252 ; 1,14 ; 21,3967122807017 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; EaE1cdcCdBeD9F8FCefEaBdECBB3bedf9df4fc6Fd43AcBcEaAC6cFB7A343dFbd ; < Nou64tvjg520NpCAk4oX2c4g4IY0ErM6nhK2iq5RL9kK6seXJaQeHHjekUcg8m3f > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 25,5308024722927 ; 1,1399259 ; 21,3968965634457 ; 25,5305524722927 ; 25,5310524722927 ; -1,1 ; 2 ; 8,7 ; 1,9 ; -1,3 ; -5 ; 0,86 ; Future52AP19 ; AFc7CD4493fCF25FE7aB1B1e2b6de79b6dECbE4eBae51e2171d4A7Ba05f8fFE1 ; < aKJ64k5LKFwjgMHIeLcGX9jNOICJ3ffmf7165963yO7YXRI6Kstc2lXL22KZ232I > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 25,8113589541883 ; 1,15385052700825 ; 21,3697596439229 ; 25,8111089541883 ; 25,8116089541883 ; 4,5 ; -3,6 ; 0,8 ; 3,7 ; -1,9 ; -3 ; 0,92 ; FutureJU1947 ; aCeaaD22BB5CaAF8c3a4cD4AEdC1bFeFAbfCbadAD4A48a6cEf1FFadca4BAFECa ; < s7dLc81vV6IJtF20onqF2K1z7ZI37Hg8GOUtbia6rGs7007E29hoZDfhjqz8S2f6 > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 26,1001923180004 ; 1,18200079592152 ; 21,0813661108004 ; 26,0999423180004 ; 26,1004423180004 ; 6,7 ; -5 ; 5,2 ; -5,7 ; -9,4 ; 3,3 ; 0,29 ; FutureAU1956 ; fEce5CDC0eBbF4E175fBaBDAbcF2FaBE6ffDe4aEe9dD5faA5Eb4bFd31f3D0ABe ; < 9d3lfS6T9rP4OdEgq2c1bx0fMz2AAoJnwry12n252RwgfEZRUNIF2EJ357mzo83O > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 26,4111035328828 ; 1,22548550318439 ; 20,5515430123442 ; 26,4108535328828 ; 26,4113535328828 ; -6,3 ; -1,6 ; 2,8 ; 9,4 ; -0,1 ; 8,8 ; -0,46 ; FutureOC1985 ; cCd6F759f17b283a0aaE8cbb66C8C06AF8bFCaA32AbCadF42FFDcffC237aEB0C ; < udPb7Zq4KQ9G294GrNb2Z9kSgK0HcNiKF8c7BR23PUZbl78OWM7N3pd46G1RP37k > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 26,7488112860661 ; 1,28599748360657 ; 19,8000494768072 ; 26,7485612860661 ; 26,7490612860661 ; 9,8 ; 5,8 ; -9,3 ; -2,1 ; -6,5 ; -0,3 ; 0,55 ; FutureDE1951 ; CE7eaaBEee41dCBdbbebB437CEFB26cEbBe6E3d5ac9BFaEEabBEdAfFcb096EAD ; < 1yxCIFJf3XPrcJu70iqDm94D71drHn2748ejpAOE591hXJ0zPA3tpC14C6B11IEx > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 27,0857998010053 ; 1,36590207084755 ; 18,8299719863508 ; 27,0855498010053 ; 27,0860498010053 ; 2,2 ; 5 ; -4 ; 8,1 ; -3,5 ; -2,6 ; -0,13 ; FutureFE2046 ; dac9F0E7AAeBfc1cCec8f3Dc4C87Ef1DfeCEC6eE145EDcd3E3daf075aEBd13fD ; < Si9mosnR4WrALM3OW1P35CkS07xth4VE05p3Qa7w8Y4U25p3G0c9g175i02ScKMx > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 27,4484475126 ; 1,46841302126465 ; 17,6925933746899 ; 27,4481975126 ; 27,4486975126 ; -7,8 ; 5,1 ; 6,2 ; 8,2 ; -5,9 ; 1,1 ; 0,41 ; FutureAP2037 ; DA464BDE2CeFfcbee56BB6F1Da5B8f37eaC4Fd54474BddAffb1eAfdfA1fEDB3D ; < JSP8a8f546lA9fjgUT1r8FHiiGFI5v0iOfmxbjnlqAH4AgDvge4eH59eOY4dR2N9 > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 27,8016134648767 ; 1,59759791601377 ; 16,4021342831028 ; 27,8013634648767 ; 27,8018634648767 ; 3,2 ; -0,9 ; 5 ; -9,8 ; 2,1 ; 2,5 ; 0,02 ; FutureJU2083 ; BAC02CBBC3Ba8CEADdbfebeD1Be53ACF5EB6bbCA3ac1fFF29ECffF7BFe3D4E5f ; < W4ErEdX0Ph16if6F49h9OM947ZP12B24N2kZv7HZw5JJd7fwKe7Psw1IU7Fcjc16 > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 28,2222823466999 ; 1,75931283644776 ; 15,0416509002934 ; 28,2220323466999 ; 28,2225323466999 ; 6,2 ; 4 ; 3,1 ; -4,2 ; 5,3 ; -5,7 ; -0,7 ; FutureAU2051 ; 2BBeA6F41feb6Fcbfd866eFe6FDc2Eaa5ca3EB091dB5CacD5f2eD8B9DF5C99dF ; < nJ7ftfHxsLF1k02y7Yf7d314Iue0A1Lv0O78I23M1z3lBFOgcx9n3U81FHfY5Ew4 > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 28,6256762191096 ; 1,96090321002745 ; 13,5982096784414 ; 28,6254262191096 ; 28,6259262191096 ; 0 ; 2,7 ; 2,1 ; 1,6 ; 6 ; 9 ; -0,12 ; FutureOC2014 ; FdafaefFFC3af788EcfcCfBab493D370ECaEeCB29Ac2d6aC3CdD2a9bdd5dFeaC ; < Ike4M7iPysylSnSpkonYLF0w070TH4v25bS5P5Jigu316slel3qQp5ex8NA5RMuQ > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 29,038821971005 ; 2,21198429177177 ; 12,1279512603344 ; 29,038571971005 ; 29,039071971005 ; -0,3 ; -9,5 ; -8,7 ; -5,5 ; -0,7 ; -0,8 ; 0,85 ; FutureDE2069 ; eB6Bf0d2a8dc3bedCaea41919Ce3DdABFfb22623ddaaBfdEeB9Ae3aE44e1B7eF ; < 62zR89249eEi1T5Ke55aW6N47DFAwYpzH7627HbBeFb74bs822Ok2H4rYa17DzEl > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 29,4896977716925 ; 2,5254099698645 ; 10,6771922672321 ; 29,4894477716925 ; 29,4899477716925 ; 9 ; -9,3 ; 3,2 ; 7,2 ; -4,1 ; -3,9 ; 0,28 ; FutureFE2143 ; 7a18D2ebc7aF1BAcF19B1F46DFaBBB2DEbC8e8fCbC09dBeACaeFC4d7CEEB0CDD ; < 8WI2NE4uG1qhrUc435Z1y10Z14471N7Zu4wYvMGpvl3D9AxMM1mt9NG5YPZwJgLx > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 29,9946040022869 ; 2,91851528577361 ; 9,27735031866939 ; 29,9943540022869 ; 29,9948540022869 ; 0,8 ; -6,3 ; -5,5 ; -0,1 ; -7,2 ; 2,6 ; -0,71 ; FutureAP2166 ; Cd62Fe6FACfAb1FE12E7D2d1Cae4BBDe2CeefcDedFFf2C05CFFCeBC1224eDccD ; < By61Td7JKq2obrh6x1z0g5rgD443N9NK1r9M2a9BYfJ11KpGxzdz7deWZI783ZLj > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 30,4848583948223 ; 3,41384729603948 ; 7,92976625820051 ; 30,4846083948223 ; 30,4851083948223 ; -3 ; 7,4 ; 2,5 ; 8,5 ; 0,6 ; 2,3 ; 0,39 ; FutureJU2157 ; DA88BCECba78D3daBf9C0caFea7FbB2ca2Dd2C6cFBcdB1B3c6DBdcF5Fa26Cb9c ; < 152UefMse40fgcu0Joado4ItISSaaQcCG05oHjiHWy981I5eY76tforR1XEqWHes > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 30,9894653608081 ; 4,04125107287478 ; 6,66828509339893 ; 30,9892153608081 ; 30,9897153608081 ; -3,5 ; -5,7 ; -4,6 ; -2,3 ; -1,6 ; 1,8 ; 0,33 ; FutureAU2155 ; BbA5fbF9eef34dDFBFAaDAE0dEcFDDdDFacCEee55AbFDfB85C6c6b6fECbD807A ; < k6KeHI44PaWVBdIzpGEYh8OHS90WRVyBIeYt38YpL37ZT77LR6Ayn8Qi84A8dU75 > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 31,4612656901512 ; 4,84209974397795 ; 5,497442711559 ; 31,4610156901512 ; 31,4615156901512 ; -4,9 ; -3,4 ; 6,5 ; -8,5 ; 1,5 ; 0,9 ; -0,29 ; FutureOC2166 ; bD2f4B659Ea0fC3AABFaefeFDeDeAeCC5596abbebB92ecAe6Ba04CAc33cb0fDd ; < 11jZRTtjHMhGeFT73ix4oy6TV42S7Z1oYZXXaiuChDh2Fz5oy4LGwjOudgSU06ag > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 32,0792449728395 ; 5,87166600220089 ; 4,46339743452969 ; 32,0789949728395 ; 32,0794949728395 ; 9,1 ; -7,5 ; -8,7 ; 9,3 ; 2,5 ; -7,3 ; 0,54 ; FutureDE2199 ; 4abA0ECDCaacACD10faCA2C3CfCeecE3ebcEfbBfCbFD1EE9BdcCEFb56dDc4FFB ; < dQtbuZm2G8oVF87RI6mq15S82a07Bc9mZ95Y5bQA2pVG2M3JEXLM8H3CdSkpWq0e > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 32,5827401162094 ; 7,20669966719837 ; 3,5211735774853 ; 32,5824901162094 ; 32,5829901162094 ; -4,1 ; 4,2 ; -0,7 ; -3,3 ; -4,5 ; -4,1 ; 0,5 ; FutureFE2254 ; Fd8eBFCd4acbcbF9b7A8C160Aaead10201a0Fe9DebD9833EEA5bB1aac7cABBb1 ; < 623F71y2Iw3Q3Au8cIie0hTs80t959A955iH4t45NH99C0ejl89zY8QGM2n9h8G7 > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 33,1898567754601 ; 8,95242807364405 ; 2,70735810468794 ; 33,1896067754601 ; 33,1901067754601 ; -2,2 ; -7 ; -1,1 ; -8,4 ; -8,6 ; 0,7 ; -0,52 ; FutureAP2286 ; 831c053bd9E6f3AB372d8feb6e5C5e1fc1c4AcCB07abD9A61584ACAecB5BBACc ; < dRL9ifJ9lq16y33603PR655982qgA8fd5Pf6CHJ9QY8YjbsoPkO08CHXjoecTYQf > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 33,8403101953302 ; 11,2569749806485 ; 2,00616375656017 ; 33,8400601953302 ; 33,8405601953302 ; -1,1 ; -4,4 ; 2,8 ; 9,9 ; 4,6 ; -7,5 ; 0,84 ; FutureJU2230 ; f0BACE65DEaAcbeE2BAe11F1DfB9C436DEeFE0CFFb627e31C9cAD0B46Eb3D657 ; < J8CXA01l6e69vSS2k332kBCAco8y3i87E63P07XkhU7fMH6Tr3Fi8ydCG7yQH9WL > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 34,601769428976 ; 14,3261293142326 ; 1,4152908765524 ; 34,601519428976 ; 34,602019428976 ; 1,8 ; -4,7 ; -0,7 ; 5,1 ; -9,3 ; 0,2 ; -0,8 ; FutureAU2273 ; ae1f2eCEca3bE9c7beAD6E2DEfA067648cFB4FC82cFE3FE20C51c606Aa3Dbda6 ; < NsuQi2A5z7P80v148XWjGt2slNtdk67H0FgCZD8LtaE6SQ2UaRS82p8xgI4EXc8x > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 35,1700998379458 ; 18,4528828160671 ; 0,905940670003223 ; 35,1698498379458 ; 35,1703498379458 ; -3,8 ; 2,2 ; -5,8 ; 0 ; -2,2 ; -7,9 ; 0,13 ; FutureOC2256 ; aDD1989D27DecDeb7C4efc50ADdBeFfA4c3fBCAa33dFdec4E5e4fAEe4cCEEA6a ; < gtX0v1GKO7UChPZ8j44um29TOLR7VEC4RM09Ep2Gsc1AV30mYamjVw2XJ21Yq1v7 > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 35,9979113231109 ; 24,058021366237 ; 0,496295592023635 ; 35,9976613231109 ; 35,9981613231109 ; 3,8 ; -3,3 ; -1,5 ; -9,7 ; 0,2 ; 1,9 ; -0,77 ; FutureDE2255 ; Bc9eE8Efa5C3beb78B9EACD5aD6ef3afeA449B503be9f9fD29CB2Ce7AC55AD6E ; < oDzs5y688A0zz1a857Gk9T86j7pElssR21o6K2RwAdnh6shKH7fLz32eJBFt1BS7 > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 36,5705504623267 ; 31,7439279634604 ; 0,152048684851546 ; 36,5703004623267 ; 36,5708004623267 ; 4,5 ; -0,9 ; -8,9 ; 8,1 ; 6,7 ; -8,8 ; -0,76 ; FutureFE2370 ; F0cC70Addcd0d7b112c4ED37b7f4Cd5D5D3EFC6a0fd9Caa9aafCDBAaDdEea0Cc ; < bj6v9Uh4wL91xEgaO8JbgE7UD7YZ3384t41yIBzT5CEYpqd6b6aYEhsZkREPzfDy > > // < CALLS ; 1Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 13,7242237563 ; quote ; 53,6714134246759 ; 52,5979851561824 ; 0,0204081632653061 ; 5,6 ; 49,6460574178253 ; 57,6967694315266 ; -6,9 ; 8E9Fa56ACeDde7b3EdBFA93cCc06fDCc0ffAe9a1CFCfFBf2cA7CB37dddf3de5d ; < 93iH82681bsA8Uj61p6vsG9ayM3N3c08khKWSZtNth8TqGE8oC698HZ66wa4X9mC > > // < CALLS 15,09664613193 ; quote ; 49,1194092921563 ; 48,1370211063132 ; 0,0204081632653061 ; 8,6 ; 45,4354535952446 ; 52,803364989068 ; 3,6 ; 5C3acfEBf08F14db704b200efb90cB8CDdFEe089ecBCbAb3EbB6507CB510BEAD ; < 4wOLC9cR6z61H9HwZgs3GPVM7xUdlznbbV3MAtgrC0SU0VOMqM9yG1fn4Ar6ehB6 > > // < CALLS 16,46906850756 ; quote ; 44,6476691224842 ; 43,7547157400345 ; 0,0204081632653061 ; -1,5 ; 41,2990939382979 ; 47,9962443066705 ; 6,8 ; 08961b4aCeB8fDC49Bfbbe8Dd2fA6DBDFccC03fAaaC834fb08d4AaFEc4fCaDd2 ; < gZtfJHBn3z3Ftj4HZZlMa9x3RtJOs3F5BbPOT6bv7r9ctpJU390xQFXKheH7L9fY > > // < CALLS 17,84149088319 ; quote ; 40,2955533564589 ; 39,4896422893297 ; 0,0204081632653061 ; -6,1 ; 37,2733868547244 ; 43,3177198581933 ; -0,7 ; ffbDAf0cF7EdAe5aDFFbcdA8bA70edCACCEd0edAF1a0dD4bEcBD65D0a32fACFc ; < 6DGd35fJtrb7C3i97M3Pyp5j9k9qg49RGO57v7q6i9rJ5LVdw394c2u6e4o57g84 > > // < CALLS 19,21391325882 ; quote ; 36,1055124059439 ; 35,383402157825 ; 0,0204081632653061 ; 3,5 ; 33,3975989754981 ; 38,8134258363897 ; 5,6 ; c6dad4E8bee7AFDC706f7EAEeebbbAdfCAF7fE6BcBf6cBfDdAacb0ECE9e9AfDC ; < R8A85837MEfL9zVf91H615wcJf4Z2yrQ277XomD50X9O0JNKf6m9F5I51fedF3R9 > > // < CALLS 20,58633563445 ; quote ; 32,1187612069275 ; 31,4763859827889 ; 0,0204081632653061 ; 2,6 ; 29,7098541164079 ; 34,527668297447 ; -0,9 ; ecbbaCdC4A8CfF5f59AEc3CC7feecc0624BbEA1eEbaEcE44D6eeBcCD8CeFEdb0 ; < Vs0M98sq1fl1Sel54iFcsjA56vVAMh5hLG3CeR4K3Xv8RFO4AAG5lkq5jM92cI35 > > // < CALLS 21,95875801008 ; quote ; 28,37139808825 ; 27,803970126485 ; 0,0204081632653061 ; 0,5 ; 26,2435432316312 ; 30,4992529448687 ; -6,7 ; 50EfF2Dfc3c51F8Ee6AbAfC3f593ca01c5ebEccEffFEb37AFCf4adD7FCC0992E ; < m35a01ZD5oZjzC28kt9OTjyQJU6l3RRP0oa4LBUj8uX9sa87NUK0NU46pL11959m > > // < CALLS 23,33118038571 ; quote ; 24,8915992243272 ; 24,3937672398406 ; 0,0204081632653061 ; -7,8 ; 23,0247292825026 ; 26,7584691661517 ; -6,4 ; F7B8BcDDcAdcdcc805edA64aCBFEB24ACD2ceDceDbb3A6fAbEABffdf8bC69a2F ; < zejZaRsd7F426kfDNRYN1ACXyvkbQo1x2Vy20qoyx11cuPtB6fDdWrwpl78N8FQ9 > > // < CALLS 24,70360276134 ; quote ; 21,6981222819644 ; 21,2641598363251 ; 0,0204081632653061 ; -5,8 ; 20,0707631108171 ; 23,3254814531117 ; -9,8 ; 0cCfbfAFdBC5bDceE2cB5C29DC7def9Eb79A80FFE7d530aa7bdBaBBDCB6fdDCa ; < r8yxE14FwFd9dsBGPNFs7u3W5TCZ3N6Do23NEQD8YG5RX2U3Ccf2Mi6I3j6xyVGb > > // < CALLS 26,07602513697 ; quote ; 18,8000367010218 ; 18,4240359670014 ; 0,0204081632653061 ; -7,7 ; 17,3900339484452 ; 20,2100394535985 ; 5,3 ; ad7Abbce774Da31Cd2eeDDb7bFF5Fb0Feb1AF2Cb1f0D536DbEB2aABBEc32f381 ; < t94UJ8gK7ur25gVMSeWuj6MqY471s0hKo7O7uRU5HE6hwHBanOcmKkz2jjxSRa3T > > // < CALLS 27,4484475126 ; quote ; 16,1974130106331 ; 15,8734647504204 ; 0,0204081632653061 ; -8,7 ; 14,9826070348356 ; 17,4122189864306 ; 5,7 ; 69ADA21e82AEfC73A8C56Ed4ADE9F6FAbC7fBCB4a1Cf9c8cbB8e8a4d30DB53f0 ; < M3e8nr0KcQ5026Vt9UOC6Xd6RgFSy1KY138Iz5A7bKNh4A952i5LM64N8L4uTLVx > > // < CALLS 28,82086988823 ; quote ; 13,8826388518815 ; 13,6049860748439 ; 0,0204081632653061 ; -1,1 ; 12,8414409379904 ; 14,9238367657727 ; -3,9 ; 5CAAea38Cf5Ca1a5cfdbB900e80b78bdb1ba3AB4fb9a80ffE9cfFae07E5350Ee ; < 5w15zXg57bI01k89zMvXteJ6FH4bV64MRDJ777xo3HB6TUVUa7Zr4yb219wd2DNL > > // < CALLS 30,19329226386 ; quote ; 11,8420480713358 ; 11,605207109909 ; 0,0204081632653061 ; 0,5 ; 10,9538944659856 ; 12,7302016766859 ; -0,4 ; 7FA7Be1FeDAFdeBd6aA9486dF3DFd008aDc1bdC6EE53dB0Ea72da3dCACB5db2a ; < 19I80V43hbaq8Q2I829IR7rG26BILP25qDp4sK7HU2IzmfOSI3aaUwGPurt0VCVM > > // < CALLS 31,56571463949 ; quote ; 10,0576120973883 ; 9,85645985544054 ; 0,0204081632653061 ; 2,1 ; 9,30329119008418 ; 10,8119330046924 ; 4,5 ; cda1A8cF3dBFD02A8F1EDcB65bd33a8Aafdc2D7Cde9aa1dd2f6738002eBdC4e8 ; < h5ck1Y8o1z4x8y4r589V71Yqv39KG84T0G3p8eiv385ZW6eHwU7LMJ8i2267B6o0 > > // < CALLS 32,93813701512 ; quote ; 8,50851942129926 ; 8,33834903287327 ; 0,0204081632653061 ; -1 ; 7,87038046470181 ; 9,1466583778967 ; -9,9 ; CbF442EAEf5Fb0C67bEfBBF8f44ef6DFD0CfcdfACBeCBaCD8beA3eBB8fDd7Dbb ; < 6hX89blXkz468kLK964g3dy32Dd6ds7B6S17UOLjOvn9k0QQk3kBLamA3TNlB8YV > > // < CALLS 34,31055939075 ; quote ; 7,17254050243703 ; 7,02908969238829 ; 0,0204081632653061 ; -5,4 ; 6,63459996475425 ; 7,71048104011981 ; -0,3 ; E58DbABfAAABFBB9fE2AbdBAbbBbAAbDEEcAcf9d34dd1ad1B6CEdFAC35f8aAFe ; < z5OB229wn4VFS3BMF23W908Xfy87PlLKBz4RElEIQRU1t75IQmHX59212R6Dyu4h > > // < CALLS 35,68298176638 ; quote ; 6,02713272602194 ; 5,9065900715015 ; 0,0204081632653061 ; -5 ; 5,57509777157029 ; 6,47916768047358 ; 3,4 ; EC0BC0ecc94ba497b4E18da0CA6d8ddDe52f83BC9EFABff0Bbba3eAaC2A87aC7 ; < qjfvK59k8JKJQGV3hR9d5470SV8WiObFtt21Y13w3k18Yphh7V628o6ZfwZ6ZWS8 > > // < CALLS 37,05540414201 ; quote ; 5,05028078983101 ; 4,94927517403439 ; 0,0204081632653061 ; -8,2 ; 4,67150973059368 ; 5,42905184906834 ; 9,7 ; f5A0EFeAb37b5Ae7DBFbbBDFFbe5e6167cE898BCbDbd4dCFCf2E5Af3aF08ecdD ; < 80YO0ys6iI68v6Unb90tc281OjS0s4aQt4QfuvX334m7SEkO2fBng56v448JA7LV > > // < CALLS 38,42782651764 ; quote ; 4,22109351113971 ; 4,13667164091692 ; 0,0204081632653061 ; -5,6 ; 3,90451149780423 ; 4,53767552447519 ; 6 ; D8cDBdeD5FdabecBcFf2cDD3a52BEaF46CC04da9Fd9aCbDd57f3dFF3E9AcC3dF ; < uCqxUHoCL21Pxm5auX98hL10F45dTloOVPUTi0ByJHNVh9Ut4zv7lNN8x2fqAR70 > > // < CALLS 39,80024889327 ; quote ; 3,52019161191621 ; 3,44978777967789 ; 0,0204081632653061 ; 4,9 ; 3,2561772410225 ; 3,78420598280993 ; -5,8 ; fCa8eE6FdfAEDCBef7dFf8AFF9AbAaBe6C69aA7bB2EBD4f7AEDF7942f2FaAcaF ; < 90k2S296l9bFK9j7B4C09G5yJMVFvS2u8vsod706rdSFMZ4v5JIGFiL1NWIutgdO > > // < CALLS 41,1726712689 ; quote ; 2,92992596859076 ; 2,87132744921894 ; 0,0204081632653061 ; 7,7 ; 2,71018152094645 ; 3,14967041623507 ; 7,4 ; 72BEEFf632AAcccebe2fCd7bFE8D77BbFFc9eBAbAEF6dA0C0Ad50dFA7bEEe4bC ; < 8s7u3M7mwtbg5pBJ2I041PZRa6CVkR14yS7m00XSsF6x2mY3ukZ56x78f5M2t71Y > > // // < PUTS ; 1Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 13,7242237563 ; quote ; 0,0585877411035796 ; 0,057415986281508 ; 0,0204081632653061 ; 4,3 ; 0,0541936605208111 ; 0,062981821686348 ; 4 ; 0Cfc0F242Fb1Cb63CFaC482cb5a6F5B9a816cfEd2Ed51Dc8acdefA4194FFbdDb ; < hSzRf6U0QVqCBeRtGSt53K5Uf7d7Bkv3BLZ1wYu07dF21JZNp8klgCmN81ECetfJ > > // < PUTS 15,09664613193 ; quote ; 0,145301040226713 ; 0,142395019422178 ; 0,0204081632653061 ; -6,9 ; 0,134403462209709 ; 0,156198618243716 ; 4,8 ; 8a55fE66796d9ddD55BfccEEBBBdbdfddff86B1Bacf380DBeEd59Fb8CDEd7dde ; < wR43oBj4eFH26nVKQyGkKuloEh84K6qmq7dByV2C1Hi0VJZC7790CY0pmqB145xX > > // < PUTS 16,46906850756 ; quote ; 0,312278302197384 ; 0,306032736153437 ; 0,0204081632653061 ; -5,2 ; 0,288857429532581 ; 0,335699174862188 ; -3,1 ; A5d58AECC8dcAe1e90fbeBE79E1EDA0bdeBAfFc29DfBf4Fd2B9Bb266ECA0AadF ; < U8tm75N12hmo7m7SnFNqqJLvpF7hRK2g9w46lW7CO19Bqc1HBw6865867mi6URTe > > // < PUTS 17,84149088319 ; quote ; 0,598879967814781 ; 0,586902368458486 ; 0,0204081632653061 ; -8,4 ; 0,553963970228673 ; 0,64379596540089 ; -0,1 ; F9BAB89FB97BDCDaa00924f79afa9DD2ab5Dd52BCe3579BcF398CdEA66Ee9CfD ; < c4V7bUU0h8Ma5tZ8by0DfMe2pFZJlx9pefzg7vF1bZvh5qaggqswRsp17DK3lqeF > > // < PUTS 19,21391325882 ; quote ; 1,0475564489426 ; 1,02660531996375 ; 0,0204081632653061 ; -0,8 ; 0,968989715271906 ; 1,1261231826133 ; -5,3 ; 8e7fEd1d3b1cABe4f6Fc3fDC8cdB2f2F42EE1c2cCbDFa9C4abDb98dB8DDEFA93 ; < G5EEY8Tn9a5lqApCMDP0bjA9wLr6JJcdM8Z99L8NwP9lclnL2Z6iL8JZMk5cFiL9 > > // < PUTS 20,58633563445 ; quote ; 1,69952268156894 ; 1,66553222793756 ; 0,0204081632653061 ; -7,4 ; 1,57205848045127 ; 1,82698688268661 ; -6,5 ; fA0CAa6eA1FB8fCe1cABCDd2D9ccdEC5B17dBebdceBF2fcDbe5faCbdCFFf4AfE ; < Y1RE31EG0ZCqOXHz75k8649b3ok590K9VjD90Yw59bx6861sOPy126Gg11PqGrjf > > // < PUTS 21,95875801008 ; quote ; 2,5908769945342 ; 2,53905945464351 ; 0,0204081632653061 ; 1,1 ; 2,39656121994413 ; 2,78519276912426 ; -9,4 ; 739BbDCddFEaD04efeEFeDCaCd8D5c02b4A3DFACcF8eC1a282cdecaf7dDB0eFe ; < V68JsvPwaWBxmR4S8bqR70mbM9WMVP2Tufd34H3f67m69SFqJ3l5H8iFv61v6m6u > > // < PUTS 23,33118038571 ; quote ; 3,74979556225415 ; 3,67479965100907 ; 0,0204081632653061 ; -5,8 ; 3,46856089508509 ; 4,03103022942321 ; -6,4 ; 668eaC153aAFbDD83891E1c62EFaea6BC6E8EcA7cFfb25FaeeDbC7EC1CD2Ccdd ; < 2D4294I7Y4wGJRzTY83FR752t7bbYvEgbC57w906Z42S778FvdhM8Hz0pzx9tx69 > > // < PUTS 24,70360276134 ; quote ; 5,19503605153417 ; 5,09113533050349 ; 0,0204081632653061 ; -0,8 ; 4,80540834766911 ; 5,58466375539924 ; 2,4 ; 72FcaCFbfEb522EFAfFCBf2d9e9a7EE8DbFF23b6bd8A63981ADDA4b84d421A7c ; < FEMboZK2ZJ0Q5LnS13GLuC9XqQLc9H3N0n9reTOj0Wy4Hb378m3U4FvwVOG30PP2 > > // < PUTS 26,07602513697 ; quote ; 6,93566790223434 ; 6,79695454418966 ; 0,0204081632653061 ; -1,5 ; 6,41549280956677 ; 7,45584299490192 ; 9,7 ; 3AeC4DaDc1daCC06C29F665d0E8EaDF23dDFDD37cA11BDABbA2cC78bdC3a98ee ; < nO6NAiVjyg4FexRp7SVAkBS5pGPsBsMy7b2o914w672jAl0ib61sP0KWbn820Et3 > > // < PUTS 27,4484475126 ; quote ; 8,97176164348836 ; 8,7923264106186 ; 0,0204081632653061 ; 6,7 ; 8,29887952022674 ; 9,64464376674999 ; -1,5 ; 1f6ed08AeBF43BFAD946fd73bbeB5Ad47A3DA1CFC05fadac40bFDE7ad6CEeFcE ; < Q7mT4wFT098tQFX475nXQihbbG75C7Qy2W6V73D0iC35C6hz6s7Xw18nU4Xt2yk4 > > // < PUTS 28,82086988823 ; quote ; 11,2957049163796 ; 11,069790818052 ; 0,0204081632653061 ; -3,7 ; 10,4485270476511 ; 12,1428827851081 ; -2,2 ; AFecBb4555bf5b9EDbCed13B2f2afeABbA96cf68cE19a4e150189aC5DcAA3dDa ; < jf6LSyCfqR161q29WkVwdrrkM8woS3yDkhFY6Jjnn1y7HQqKY23HpBhmisd8883X > > // < PUTS 30,19329226386 ; quote ; 13,8938315674766 ; 13,6159549361271 ; 0,0204081632653061 ; 5,8 ; 12,8517941999158 ; 14,9358689350373 ; 2,4 ; Baa7A15f0aADfaa71FF0C4C0EfBDF05aa6D5D77F52fABBb5CaE9F9D5fDCE69e5 ; < 53V94ADTC3lIndq9nl1BH9s1GQ089Joa145G9wWxOBUGfbo1hhER0BP0cO2Z2908 > > // < PUTS 31,56571463949 ; quote ; 16,7481130251719 ; 16,4131507646684 ; 0,0204081632653061 ; -3,2 ; 15,492004548284 ; 18,0042215020598 ; -8,2 ; D2D79bbcfFDfcC84e7cabF8fd32A5cE3AdEfa4BBFeEEBB2473acAaa9cDAA10F4 ; < Nw0uhb1Blx86d2iCc54wd65Ym7OVJeK60VSAkMzyX12ryFWh6dSyJKGkpgdtjt8h > > // < PUTS 32,93813701512 ; quote ; 19,8377377807256 ; 19,4409830251111 ; 0,0204081632653061 ; 0,9 ; 18,3499074471712 ; 21,32556811428 ; -4,1 ; 8bF37Fb20DDddcB9AacEFf3BDeA00041CFddb0cAcebdD38AcC7bbC4A3CA898Ae ; < 4hSwg45uZlxzLeO1dry5BDY2kb1lpHK166O827s8renQYP3SX09T9J2354t5dptd > > // < PUTS 34,31055939075 ; quote ; 23,1404762935061 ; 22,677666767636 ; 0,0204081632653061 ; -6,9 ; 21,4049405714932 ; 24,8760120155191 ; -1,4 ; 9CC8c08e8a5AABE16cbD9f37AD2ceaEe86cBD7dbdcba19Ba4eeecf928d8AEB14 ; < im342q220VO8608D32Vku6JJJ740V2082lROGRz02oeeL3wbBR2K6j7q8EzxI5aF > > // < PUTS 35,68298176638 ; quote ; 26,6337859487338 ; 26,1011102297591 ; 0,0204081632653061 ; -9,6 ; 24,6362520025788 ; 28,6313198948888 ; -2,4 ; e9AC1FBFaf6CBea3ACaaeBcFAEDdBFfbE0b8BaEA8BEdEBCDffBaeaA3EfcCB2e5 ; < to318Wf451q046VSXbG0O457nEBp38W33yZO7y8yUGZK784o8dSkLSuR90iC9Myk > > // < PUTS 37,05540414201 ; quote ; 30,2956514441856 ; 29,6897384153019 ; 0,0204081632653061 ; -8,4 ; 28,0234775858717 ; 32,5678253024996 ; 7,3 ; BcDAeEAfd866ecCAbDaA7fa10BeE4EEfE8AAB2C902Aaca97Ea5db68DadbF1CDD ; < 6LsE2VBUzbV03wte0HE0YVBKf3M9ORu27L4O108I0NByxtfCt38m7K6T0aSBlSn1 > > // < PUTS 38,42782651764 ; quote ; 34,1051815971371 ; 33,4230779651944 ; 0,0204081632653061 ; -6,4 ; 31,5472929773518 ; 36,6630702169224 ; -7,2 ; 1Ed8aaeC5A9D98DD7e4545874BaBBfB9A3afFfdEFBea36B9CEFcD66f99a2eBe6 ; < Y6IbJoCvr9v8V2lT6Qs43mo6181p6g7Asu0h67PLpnh6zGq58yZ5Es4HYr9K5w8p > > // < PUTS 39,80024889327 ; quote ; 38,0429971295564 ; 37,2821371869652 ; 0,0204081632653061 ; -4,1 ; 35,1897723448396 ; 40,8962219142731 ; 5,3 ; db7735EeeFDb63d0bDE062ECEC7BF3D9f6DafaA7f6DD61e1C3AB8BbfAfeDCD80 ; < b6E90AzM6z6hxH228x13LLGpbefLl3306jwy36604d3mn2dmZg523Sruxx6pO3iN > > // < PUTS 41,1726712689 ; quote ; 42,0914489178737 ; 41,2496199395162 ; 0,0204081632653061 ; 5,7 ; 38,9345902490332 ; 45,2483075867142 ; -6,5 ; dEdA4AB20aAb8caFcA0A7BDBcAF7b83a058fb3ACD53fFB4f5AabA3aF3Ffb10Bf ; < l03FrH9ul9047f598sh4SVWNPL69TdSS7i5q6u2Srhf82h4ii8H4wk0gJADl24Gi > > // Futures_Mostootryad_org_spe // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 25,532252 ; 1,14 ; 21,3967122807017 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; EaE1cdcCdBeD9F8FCefEaBdECBB3bedf9df4fc6Fd43AcBcEaAC6cFB7A343dFbd ; < Nou64tvjg520NpCAk4oX2c4g4IY0ErM6nhK2iq5RL9kK6seXJaQeHHjekUcg8m3f > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 25,5308024722927 ; 1,1399259 ; 21,3968965634457 ; 25,5305524722927 ; 25,5310524722927 ; -1,1 ; 2 ; 8,7 ; 1,9 ; -1,3 ; -5 ; 0,86 ; Future52AP19 ; AFc7CD4493fCF25FE7aB1B1e2b6de79b6dECbE4eBae51e2171d4A7Ba05f8fFE1 ; < aKJ64k5LKFwjgMHIeLcGX9jNOICJ3ffmf7165963yO7YXRI6Kstc2lXL22KZ232I > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 25,8113589541883 ; 1,15385052700825 ; 21,3697596439229 ; 25,8111089541883 ; 25,8116089541883 ; 4,5 ; -3,6 ; 0,8 ; 3,7 ; -1,9 ; -3 ; 0,92 ; FutureJU1947 ; aCeaaD22BB5CaAF8c3a4cD4AEdC1bFeFAbfCbadAD4A48a6cEf1FFadca4BAFECa ; < s7dLc81vV6IJtF20onqF2K1z7ZI37Hg8GOUtbia6rGs7007E29hoZDfhjqz8S2f6 > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 26,1001923180004 ; 1,18200079592152 ; 21,0813661108004 ; 26,0999423180004 ; 26,1004423180004 ; 6,7 ; -5 ; 5,2 ; -5,7 ; -9,4 ; 3,3 ; 0,29 ; FutureAU1956 ; fEce5CDC0eBbF4E175fBaBDAbcF2FaBE6ffDe4aEe9dD5faA5Eb4bFd31f3D0ABe ; < 9d3lfS6T9rP4OdEgq2c1bx0fMz2AAoJnwry12n252RwgfEZRUNIF2EJ357mzo83O > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 26,4111035328828 ; 1,22548550318439 ; 20,5515430123442 ; 26,4108535328828 ; 26,4113535328828 ; -6,3 ; -1,6 ; 2,8 ; 9,4 ; -0,1 ; 8,8 ; -0,46 ; FutureOC1985 ; cCd6F759f17b283a0aaE8cbb66C8C06AF8bFCaA32AbCadF42FFDcffC237aEB0C ; < udPb7Zq4KQ9G294GrNb2Z9kSgK0HcNiKF8c7BR23PUZbl78OWM7N3pd46G1RP37k > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 26,7488112860661 ; 1,28599748360657 ; 19,8000494768072 ; 26,7485612860661 ; 26,7490612860661 ; 9,8 ; 5,8 ; -9,3 ; -2,1 ; -6,5 ; -0,3 ; 0,55 ; FutureDE1951 ; CE7eaaBEee41dCBdbbebB437CEFB26cEbBe6E3d5ac9BFaEEabBEdAfFcb096EAD ; < 1yxCIFJf3XPrcJu70iqDm94D71drHn2748ejpAOE591hXJ0zPA3tpC14C6B11IEx > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 27,0857998010053 ; 1,36590207084755 ; 18,8299719863508 ; 27,0855498010053 ; 27,0860498010053 ; 2,2 ; 5 ; -4 ; 8,1 ; -3,5 ; -2,6 ; -0,13 ; FutureFE2046 ; dac9F0E7AAeBfc1cCec8f3Dc4C87Ef1DfeCEC6eE145EDcd3E3daf075aEBd13fD ; < Si9mosnR4WrALM3OW1P35CkS07xth4VE05p3Qa7w8Y4U25p3G0c9g175i02ScKMx > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 27,4484475126 ; 1,46841302126465 ; 17,6925933746899 ; 27,4481975126 ; 27,4486975126 ; -7,8 ; 5,1 ; 6,2 ; 8,2 ; -5,9 ; 1,1 ; 0,41 ; FutureAP2037 ; DA464BDE2CeFfcbee56BB6F1Da5B8f37eaC4Fd54474BddAffb1eAfdfA1fEDB3D ; < JSP8a8f546lA9fjgUT1r8FHiiGFI5v0iOfmxbjnlqAH4AgDvge4eH59eOY4dR2N9 > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 27,8016134648767 ; 1,59759791601377 ; 16,4021342831028 ; 27,8013634648767 ; 27,8018634648767 ; 3,2 ; -0,9 ; 5 ; -9,8 ; 2,1 ; 2,5 ; 0,02 ; FutureJU2083 ; BAC02CBBC3Ba8CEADdbfebeD1Be53ACF5EB6bbCA3ac1fFF29ECffF7BFe3D4E5f ; < W4ErEdX0Ph16if6F49h9OM947ZP12B24N2kZv7HZw5JJd7fwKe7Psw1IU7Fcjc16 > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 28,2222823466999 ; 1,75931283644776 ; 15,0416509002934 ; 28,2220323466999 ; 28,2225323466999 ; 6,2 ; 4 ; 3,1 ; -4,2 ; 5,3 ; -5,7 ; -0,7 ; FutureAU2051 ; 2BBeA6F41feb6Fcbfd866eFe6FDc2Eaa5ca3EB091dB5CacD5f2eD8B9DF5C99dF ; < nJ7ftfHxsLF1k02y7Yf7d314Iue0A1Lv0O78I23M1z3lBFOgcx9n3U81FHfY5Ew4 > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 28,6256762191096 ; 1,96090321002745 ; 13,5982096784414 ; 28,6254262191096 ; 28,6259262191096 ; 0 ; 2,7 ; 2,1 ; 1,6 ; 6 ; 9 ; -0,12 ; FutureOC2014 ; FdafaefFFC3af788EcfcCfBab493D370ECaEeCB29Ac2d6aC3CdD2a9bdd5dFeaC ; < Ike4M7iPysylSnSpkonYLF0w070TH4v25bS5P5Jigu316slel3qQp5ex8NA5RMuQ > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 29,038821971005 ; 2,21198429177177 ; 12,1279512603344 ; 29,038571971005 ; 29,039071971005 ; -0,3 ; -9,5 ; -8,7 ; -5,5 ; -0,7 ; -0,8 ; 0,85 ; FutureDE2069 ; eB6Bf0d2a8dc3bedCaea41919Ce3DdABFfb22623ddaaBfdEeB9Ae3aE44e1B7eF ; < 62zR89249eEi1T5Ke55aW6N47DFAwYpzH7627HbBeFb74bs822Ok2H4rYa17DzEl > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 29,4896977716925 ; 2,5254099698645 ; 10,6771922672321 ; 29,4894477716925 ; 29,4899477716925 ; 9 ; -9,3 ; 3,2 ; 7,2 ; -4,1 ; -3,9 ; 0,28 ; FutureFE2143 ; 7a18D2ebc7aF1BAcF19B1F46DFaBBB2DEbC8e8fCbC09dBeACaeFC4d7CEEB0CDD ; < 8WI2NE4uG1qhrUc435Z1y10Z14471N7Zu4wYvMGpvl3D9AxMM1mt9NG5YPZwJgLx > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 29,9946040022869 ; 2,91851528577361 ; 9,27735031866939 ; 29,9943540022869 ; 29,9948540022869 ; 0,8 ; -6,3 ; -5,5 ; -0,1 ; -7,2 ; 2,6 ; -0,71 ; FutureAP2166 ; Cd62Fe6FACfAb1FE12E7D2d1Cae4BBDe2CeefcDedFFf2C05CFFCeBC1224eDccD ; < By61Td7JKq2obrh6x1z0g5rgD443N9NK1r9M2a9BYfJ11KpGxzdz7deWZI783ZLj > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 30,4848583948223 ; 3,41384729603948 ; 7,92976625820051 ; 30,4846083948223 ; 30,4851083948223 ; -3 ; 7,4 ; 2,5 ; 8,5 ; 0,6 ; 2,3 ; 0,39 ; FutureJU2157 ; DA88BCECba78D3daBf9C0caFea7FbB2ca2Dd2C6cFBcdB1B3c6DBdcF5Fa26Cb9c ; < 152UefMse40fgcu0Joado4ItISSaaQcCG05oHjiHWy981I5eY76tforR1XEqWHes > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 30,9894653608081 ; 4,04125107287478 ; 6,66828509339893 ; 30,9892153608081 ; 30,9897153608081 ; -3,5 ; -5,7 ; -4,6 ; -2,3 ; -1,6 ; 1,8 ; 0,33 ; FutureAU2155 ; BbA5fbF9eef34dDFBFAaDAE0dEcFDDdDFacCEee55AbFDfB85C6c6b6fECbD807A ; < k6KeHI44PaWVBdIzpGEYh8OHS90WRVyBIeYt38YpL37ZT77LR6Ayn8Qi84A8dU75 > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 31,4612656901512 ; 4,84209974397795 ; 5,497442711559 ; 31,4610156901512 ; 31,4615156901512 ; -4,9 ; -3,4 ; 6,5 ; -8,5 ; 1,5 ; 0,9 ; -0,29 ; FutureOC2166 ; bD2f4B659Ea0fC3AABFaefeFDeDeAeCC5596abbebB92ecAe6Ba04CAc33cb0fDd ; < 11jZRTtjHMhGeFT73ix4oy6TV42S7Z1oYZXXaiuChDh2Fz5oy4LGwjOudgSU06ag > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 32,0792449728395 ; 5,87166600220089 ; 4,46339743452969 ; 32,0789949728395 ; 32,0794949728395 ; 9,1 ; -7,5 ; -8,7 ; 9,3 ; 2,5 ; -7,3 ; 0,54 ; FutureDE2199 ; 4abA0ECDCaacACD10faCA2C3CfCeecE3ebcEfbBfCbFD1EE9BdcCEFb56dDc4FFB ; < dQtbuZm2G8oVF87RI6mq15S82a07Bc9mZ95Y5bQA2pVG2M3JEXLM8H3CdSkpWq0e > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 32,5827401162094 ; 7,20669966719837 ; 3,5211735774853 ; 32,5824901162094 ; 32,5829901162094 ; -4,1 ; 4,2 ; -0,7 ; -3,3 ; -4,5 ; -4,1 ; 0,5 ; FutureFE2254 ; Fd8eBFCd4acbcbF9b7A8C160Aaead10201a0Fe9DebD9833EEA5bB1aac7cABBb1 ; < 623F71y2Iw3Q3Au8cIie0hTs80t959A955iH4t45NH99C0ejl89zY8QGM2n9h8G7 > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 33,1898567754601 ; 8,95242807364405 ; 2,70735810468794 ; 33,1896067754601 ; 33,1901067754601 ; -2,2 ; -7 ; -1,1 ; -8,4 ; -8,6 ; 0,7 ; -0,52 ; FutureAP2286 ; 831c053bd9E6f3AB372d8feb6e5C5e1fc1c4AcCB07abD9A61584ACAecB5BBACc ; < dRL9ifJ9lq16y33603PR655982qgA8fd5Pf6CHJ9QY8YjbsoPkO08CHXjoecTYQf > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 33,8403101953302 ; 11,2569749806485 ; 2,00616375656017 ; 33,8400601953302 ; 33,8405601953302 ; -1,1 ; -4,4 ; 2,8 ; 9,9 ; 4,6 ; -7,5 ; 0,84 ; FutureJU2230 ; f0BACE65DEaAcbeE2BAe11F1DfB9C436DEeFE0CFFb627e31C9cAD0B46Eb3D657 ; < J8CXA01l6e69vSS2k332kBCAco8y3i87E63P07XkhU7fMH6Tr3Fi8ydCG7yQH9WL > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 34,601769428976 ; 14,3261293142326 ; 1,4152908765524 ; 34,601519428976 ; 34,602019428976 ; 1,8 ; -4,7 ; -0,7 ; 5,1 ; -9,3 ; 0,2 ; -0,8 ; FutureAU2273 ; ae1f2eCEca3bE9c7beAD6E2DEfA067648cFB4FC82cFE3FE20C51c606Aa3Dbda6 ; < NsuQi2A5z7P80v148XWjGt2slNtdk67H0FgCZD8LtaE6SQ2UaRS82p8xgI4EXc8x > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 35,1700998379458 ; 18,4528828160671 ; 0,905940670003223 ; 35,1698498379458 ; 35,1703498379458 ; -3,8 ; 2,2 ; -5,8 ; 0 ; -2,2 ; -7,9 ; 0,13 ; FutureOC2256 ; aDD1989D27DecDeb7C4efc50ADdBeFfA4c3fBCAa33dFdec4E5e4fAEe4cCEEA6a ; < gtX0v1GKO7UChPZ8j44um29TOLR7VEC4RM09Ep2Gsc1AV30mYamjVw2XJ21Yq1v7 > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 35,9979113231109 ; 24,058021366237 ; 0,496295592023635 ; 35,9976613231109 ; 35,9981613231109 ; 3,8 ; -3,3 ; -1,5 ; -9,7 ; 0,2 ; 1,9 ; -0,77 ; FutureDE2255 ; Bc9eE8Efa5C3beb78B9EACD5aD6ef3afeA449B503be9f9fD29CB2Ce7AC55AD6E ; < oDzs5y688A0zz1a857Gk9T86j7pElssR21o6K2RwAdnh6shKH7fLz32eJBFt1BS7 > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 36,5705504623267 ; 31,7439279634604 ; 0,152048684851546 ; 36,5703004623267 ; 36,5708004623267 ; 4,5 ; -0,9 ; -8,9 ; 8,1 ; 6,7 ; -8,8 ; -0,76 ; FutureFE2370 ; F0cC70Addcd0d7b112c4ED37b7f4Cd5D5D3EFC6a0fd9Caa9aafCDBAaDdEea0Cc ; < bj6v9Uh4wL91xEgaO8JbgE7UD7YZ3384t41yIBzT5CEYpqd6b6aYEhsZkREPzfDy > > // < CALLS ; 2Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 14,9973020011434 ; quote ; 57,5879066477486 ; 56,4361485147936 ; 0,0204081632653061 ; 5,6 ; 53,124843882548 ; 62,0509694129491 ; -5,5 ; 3C2EcABBD33EbbCfA8d8B6C82CEC30dDbfF0BFd896aA6a3CA335E574Ca3eEBb2 ; < o7Y56hVFO4xj0b3jWBD8PYFzCb1d8Sq11jBnqV1i574LA512EJbNg4k0dD9fdvmc > > // < CALLS 16,4970322012578 ; quote ; 53,6044676860604 ; 52,5323783323391 ; 0,0204081632653061 ; 4,2 ; 49,4501214403907 ; 57,75881393173 ; -6,5 ; 13D7dBBc47cC34CdbbD54FF873275C8DFdAF8BAbfCd04DaF4aeaAb0ddaB5f39f ; < XhpKJ2cw7Kx1056Co1Gp5gO8Gb6G8Z9JVJKYkfPC4Hdo2dGsGoqYEFD6Q49IT5N9 > > // < CALLS 17,9967624013721 ; quote ; 49,749238783706 ; 48,7542540080319 ; 0,0204081632653061 ; -4,9 ; 45,8936727779688 ; 53,6048047894432 ; 3 ; 3A5A0fAb3ac15BAfFEBaEba2dEf4c5cEAB5DD29aBdbA5Dbd6Ffecac6fA7fDe7f ; < 1MVQa08nu1Q84YjGZ4M7YdFYyo01fuP6FmdfVH1PgR7y3mI7V3DIYWnfIB21t5VN > > // < CALLS 19,4964926014865 ; quote ; 46,043352958261 ; 45,1224858990958 ; 0,0204081632653061 ; -4,3 ; 42,4749931039958 ; 49,6117128125262 ; -8,9 ; Ca5DAefA8BdCcF8fD8c8AddE8Fa14fF0CCaC4D2D15f0e6CEa8CDaa33bbDdFF4C ; < B775orGupB4ce5836TSr3WIg73vX3U2gspHEm4J5JIofD739W28742gv6Kz5I13Q > > // < CALLS 20,9962228016008 ; quote ; 42,5041624904487 ; 41,6540792406398 ; 0,0204081632653061 ; -5,7 ; 39,2100898974389 ; 45,7982350834585 ; -9,4 ; 8fb6A246bD407FE8effC9dfcad69B6936e5dd3A7B0c4DfD0ce2B0BBaBDc3debB ; < yPUqa915QB2oj1TQZNek2LaD1U23i4hhv94vaskq5kn7m2mon3v30O2bEB2zHYXG > > // < CALLS 22,4959530017151 ; quote ; 39,1447745021317 ; 38,3618790120891 ; 0,0204081632653061 ; 6,8 ; 36,1110544782165 ; 42,1784945260469 ; 3,7 ; b3ba12Bcc8DFAEde703f05ed0c1AD8baCCEFDC14EeDdcA3fEcF8b8B4D7A2a8ee ; < T553VzE52K3IXW03Gkye85r2y7r0m8n2Y9FcL2n0ZaNM435cbPw280B9XgSmJQBl > > // < CALLS 23,9956832018295 ; quote ; 35,9740072988448 ; 35,2545271528679 ; 0,0204081632653061 ; 7 ; 33,1860217331843 ; 38,7619928645052 ; -7 ; 9E7F9DbC4c8DCCddDb9228e3C1EDC94fDc36a32B14Cdc9fcE1D58DBbe753E0bC ; < vjZW241b8yqB7T6w5d9yyuhvwGtVZo47ROeFztETNe6oq381tNiAfCTXh9269C3u > > // < CALLS 25,4954134019438 ; quote ; 32,9966443893104 ; 32,3367115015242 ; 0,0204081632653061 ; 1,2 ; 30,4394044491389 ; 35,553884329482 ; 1,6 ; E4feCCC6cFb2fFd21Af0D34abD193fCDbF0f9C24d977E1c8d7deAe2268eeeaCb ; < 1zk4LFZW6dmIKeFyknKDj0I41INS0UFNg0MX8rGHJOBEw5RTuM0k2KN170kijvfX > > // < CALLS 26,9951436020582 ; quote ; 30,2138736853229 ; 29,6095962116165 ; 0,0204081632653061 ; 0,2 ; 27,8722984747104 ; 32,5554488959355 ; 3,7 ; F7AebEc83d1CfCc3dffEEcD6Bab407e6f7CDD1fCCeFE5EFA0FaFdFfeB2BBFe8A ; < w90VqwvnA3xbzuvIV5HfhYicW6loE16e13528gz5dd7UnE3Fvs0ewiP92KvLay1Z > > // < CALLS 28,4948738021725 ; quote ; 27,623821116272 ; 27,0713446939466 ; 0,0204081632653061 ; -2,7 ; 25,4829749797609 ; 29,7646672527831 ; 1,8 ; 19a8dD26f9DaAEd1DcF1b4aed275accDDEae7acC55E6DeF4aDA93d6dAbDAecCb ; < 45nYY3fE9A3G6q7438sK7EtVoEJ6TSPP662iURqS7dDTkxV5uC8DlAy5DRb3hX6F > > // < CALLS 29,9946040022869 ; quote ; 25,2221118387227 ; 24,7176696019483 ; 0,0204081632653061 ; 9,2 ; 23,2673981712217 ; 27,1768255062238 ; -5,8 ; 716bFfA1AC0bCA2D9944a48bdC962CA0c8E2A5B6dfDCEDbc5cCb73dCBdfDB39C ; < 024qkrczh8zu6viIf9Hp6A4hY3WRG0Vb3nVuv56c92PH4o5CTZL196129DU83A34 > > // < CALLS 31,4943342024012 ; quote ; 23,0024138329086 ; 22,5423655562505 ; 0,0204081632653061 ; 9,4 ; 21,2197267608582 ; 24,7851009049591 ; -1,6 ; DD66bEBed5BEfE28bbfCbDc6B1D8FdD2BBfedF2637d1Dca7bAA9dcB955FaFf44 ; < YmW82kpIhc3m5XAWeT4dxezkcBZZFn64sAVHpJ792xTKxjNx0N953vWgg9xsXRp5 > > // < CALLS 32,9940644025156 ; quote ; 20,9569361662668 ; 20,5377974429415 ; 0,0204081632653061 ; -1,4 ; 19,3327736133811 ; 22,5810987191525 ; -7,9 ; Dd4e93DB7ec4C3d9EDB05c1cf51BaaAc110EDcDE0BC50FE67ea4f13eb3Eb5D72 ; < 9kgh4LYmuESRLK34V8uL2KQVvI6Xzxgey27wF5p12AE1O1562fe95WqzLJf4FA2k > > // < CALLS 34,4937946026299 ; quote ; 19,0768673163296 ; 18,695329970003 ; 0,0204081632653061 ; 4,8 ; 17,598410099314 ; 20,5553245333451 ; 8 ; Edb5eAABfbAC28bdEF2Af6eE0ed703e6CBaC3eFaCDBf3eBaFF2d052dDC8C4d5A ; < 8Lx09Go5nGBi1lN04q20d11sGM427a52zVC5FwjmN84aUmfI1g6H784qE260HAbL > > // < CALLS 35,9935248027442 ; quote ; 17,3527481632677 ; 17,0056932000023 ; 0,0204081632653061 ; -5,3 ; 16,0079101806144 ; 18,6975861459209 ; 8,8 ; 89cCEeecCFEbf7D50Fd2B2901adDBc1aDF6b312f8eAB95cd1beACCcCd98a3eaE ; < yV6a50jAk5EQ2pDMZsR2K24fcmQQdzXIhPBn2252EZ60mQlDjn6dYJ20AjosGdL4 > > // < CALLS 37,4932550028586 ; quote ; 15,7747803335794 ; 15,4592847269078 ; 0,0204081632653061 ; 3,3 ; 14,552234857727 ; 16,9973258094318 ; -0,9 ; aF93fa3Dddbf24da5dAca6Ba5DbB0e6B3bef3BbbbeeDCBAfCcbac7aCFEeF3aAD ; < 2fkq65yXO1GRAZ93SrFO7tD6qdfVQ9D4t7n6wiV4FmXR08D4UqtscuPluB5OPxjq > > // < CALLS 38,9929852029729 ; quote ; 14,3330742666231 ; 14,0464127812907 ; 0,0204081632653061 ; 2,2 ; 13,2222610109598 ; 15,4438875222864 ; -3,9 ; 206AdDD09E5abADeef50dDfBDA0C9c53ddbaAba9c9C4EDe8b9c9bCaD3913CFaC ; < A30d789pYU0drcOOOnXY3MxgYYSylL9a9ko4Qbf8S6v8p9L7shb5b96b9511cHP1 > > // < CALLS 40,4927154030873 ; quote ; 13,0178433568744 ; 12,7574864897369 ; 0,0204081632653061 ; 3,3 ; 12,0089604967166 ; 14,0267262170321 ; -2,2 ; bf8CE0BF7B6bCdBDa1599EF476605fa0EEc82db4bFAAeC05AacFaa0fecedcc3e ; < 0xT7L2ss1wvRSKwirwIBej6n7Cvk8K9FA7C7XtPH4xiGR4Whg7ra97Gfgu11QF7K > > // < CALLS 41,9924456032016 ; quote ; 11,8195513380887 ; 11,5831603113269 ; 0,0204081632653061 ; -4,9 ; 10,9035361093868 ; 12,7355665667906 ; 6,4 ; b2f75aaCB7Ea12eaABcAd6d3Dd3ddDa5e3af5C91b76A02a904DBc12978cdb29b ; < ZP5OPCTw3zHRLDYpw0fcX0J2DWjLEECYDf5nTrkuJpJKZ21T67oDK3ylbWlIkB3I > > // < CALLS 43,492175803316 ; quote ; 10,729020132261 ; 10,5144397296158 ; 0,0204081632653061 ; -0,7 ; 9,89752107201076 ; 11,5605191925112 ; -6,1 ; c3ecBecfc9D8BCC10bCEFFc8bF0eEB0bF9bdAc1EAC3Bc9CaDccF9A8afDCaFBAB ; < T3BrikBtK8w1ka832wD3Cjo5y9n5u8oGG80up7F3J2wam5u1444sqI3g7X44NHoK > > // < CALLS 44,9919060034303 ; quote ; 9,73750498525261 ; 9,54275488554756 ; 0,0204081632653061 ; -9,7 ; 8,98284834889553 ; 10,4921616216097 ; 3,8 ; 0C4BFb5eb1dBcd47a779E8ABb0aAFd7adCFE4C7AB6e6bBbE7BfBCc5A8be6bbD5 ; < 8HY4LV63ll7dJc96j57g8wRmk3h69m3n3BWz30b51Tcw72qX7Mf7325o85el5158 > > // // < PUTS ; 2Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 14,9973020011434 ; quote ; 0,408665521929223 ; 0,400492211490638 ; 0,0204081632653061 ; -6,7 ; 0,376993943979708 ; 0,440337099878737 ; 9,7 ; E6ECeab6DAad0CDd9DAFbDB1e18cb09dDa0EfaAbbF51EDEAFD0c7738cBD9EF9F ; < 259tY3A82Uh427ZY1Bi79lKt75t3PKM63ScWgq33H2ATjZ024I8rH5ZCY6KegRGh > > // < PUTS 16,4970322012578 ; quote ; 0,707302447659103 ; 0,693156398705921 ; 0,0204081632653061 ; 7,5 ; 0,652486507965523 ; 0,762118387352683 ; -2,4 ; 2c0E9FB8baF76B2dcAA121ecB7DCfc1eBFc01a2FacCF41a96dc97b5bDEAa71D8 ; < n7QwzmH3jZFd9byy829WyHe44P3w39z0370Ud5Eb5l9GHEM4plHPNan6qnx6Nh6h > > // < PUTS 17,9967624013721 ; quote ; 1,13414943272281 ; 1,11146644406835 ; 0,0204081632653061 ; -3,7 ; 1,04625285168679 ; 1,22204601375883 ; 0,6 ; BCa6081FDff5BcB05EAE4Ad7BFFaBa1ba9caB6dB3CC9cAab1f4DBFbEA4Bc243d ; < P7T2v1j833QQGTEv6icHOSx2222YHes427NEf195g2nj16V6Hb3cn3bm8jOYyQ81 > > // < PUTS 19,4964926014865 ; quote ; 1,71033949469589 ; 1,67613270480197 ; 0,0204081632653061 ; 6 ; 1,57778818385696 ; 1,84289080553482 ; 4,9 ; aaeECF51AbC6d99FE03044F47bADBDbaf5dA703BBD6DFB5Aac8DAfCfdEBA18Ee ; < pWEk5YVUXBg32pnBoc9O1kUF3ah5z5LP4McmOxc441s1i926qh41yM8jywx2L8ko > > // < PUTS 20,9962228016008 ; quote ; 2,45322491430167 ; 2,40416041601564 ; 0,0204081632653061 ; -3,8 ; 2,26309998344329 ; 2,64334984516005 ; 3,1 ; D0BCCF24bfFdE0C9914352eaF6fd7c7Fa2A6F879aBcaDD22aBeDa0D1EfBBfc2e ; < E6v3IlNTX5ZA8uLlmhdu8P6F7Xv209uP9iR5GMM42nD8sC89LG0zXug4186FO3g0 > > // < PUTS 22,4959530017151 ; quote ; 3,37591281340272 ; 3,30839455713467 ; 0,0204081632653061 ; -3 ; 3,11427957036401 ; 3,63754605644143 ; -2,5 ; ed08F991e8B98b63BAd91eDbEBdcbEe3bc8c4Fc72c7decf03dc7dEEc9dD2d1fa ; < yPAJV5kHAGRkz0s8J6t3ofnZ874m1V1Oo1wpbix6A6rG37yn2Qpr16vKy99Psl3P > > // < PUTS 23,9956832018295 ; quote ; 4,48722149753384 ; 4,39747706758316 ; 0,0204081632653061 ; -9,9 ; 4,13946183147497 ; 4,83498116359271 ; -8,6 ; b6AbeaCaa39acaCC45E6D6a2CbcecCFCa68AdE0AC0baCFBEc65AF76ea9fBFF1f ; < YF0PUJdoxC3tg4Ug5c6ZzQl8tCJYizKo1uqnDIBH20ChcLObr72R6a8Iw357LyRj > > // < PUTS 25,4954134019438 ; quote ; 5,79193447541758 ; 5,67609578590923 ; 0,0204081632653061 ; -6,3 ; 5,34305955357271 ; 6,24080939726244 ; 7,3 ; F4D5DEAC98eF8a5aE3DdA385cfd15fCCc8CedBCE0Caf2dd9Bc34e1C7ECfdEf64 ; < 96mRMRuFE706177B3zqQKSv3G980FF2GBGKfLf2yxEUpuV8nTAgBl6nwK10gE6GT > > // < PUTS 26,9951436020582 ; quote ; 7,29123965884816 ; 7,14541486567119 ; 0,0204081632653061 ; 1,3 ; 6,72616858528742 ; 7,85631073240889 ; -2,8 ; 06afeBDbf4d8ae1EABEaC4A5A1eb20AA0CeB4A86024f6AeEcb57EeFfAfbc252C ; < lPAqo4Df56zdWgtnYOJ108teIg6fOj4qYA5Zdq2cyhx6A3L559952pIgqute7lV7 > > // < PUTS 28,4948738021725 ; quote ; 8,98326297721528 ; 8,80359771767097 ; 0,0204081632653061 ; 1 ; 8,28706009648109 ; 9,67946585794946 ; -8,3 ; 4BF7c51FAFCcDcA8EE1ddfF7bb7fFAfD5C6fEB930D99d2DEFbaFCFFE1cAda07D ; < 0ynrmGRqN4lrj50b7aJCCjkC4zbA0L6UuXwsA0N06X02uz0DH2l604LrlguegYpY > > // < PUTS 29,9946040022869 ; quote ; 10,8636295870841 ; 10,6463569953425 ; 0,0204081632653061 ; 5,5 ; 10,0216982940851 ; 11,7055608800832 ; -9,3 ; b4faFFe63E4eEE9eEB3f4bCE8eAbd0B214Cd3Da7961a7eBC23DeA42eCA7Ddb1d ; < RXjq7Z7TWUI3b4Uj07U2S503K3QV21V3G1mTh508134rtwY3752v4bh6IB7UzZ22 > > // < PUTS 31,4943342024012 ; quote ; 12,9260074686881 ; 12,6674873193143 ; 0,0204081632653061 ; -4,8 ; 11,9242418898647 ; 13,9277730475114 ; 1,9 ; 90fCbBCAB51BF3d1c3bAd5da9d05DF20de6C41B7DeCb51fA59fc6eEA3cfd128f ; < Qscu2QH277wCZ76s9Fc5mX3lj60xJDqV0qUVkv1fRBjJPp82v6RO7P45vlQTx3I5 > > // < PUTS 32,9940644025156 ; quote ; 15,1626056894643 ; 14,859353575675 ; 0,0204081632653061 ; -9,4 ; 13,9875037485308 ; 16,3377076303978 ; 8,3 ; DEEAB8bdECed9cCc0ceCCab1ffDaeEbFb1cDdAEcBfCD7ccAeDf90e26e3b2fbf1 ; < 0kzHpIx65013700r2ecT251v3WkrlTRy9kkRH4Qw9UYF8u5nu8tQgJ17Qkn8j4P3 > > // < PUTS 34,4937946026299 ; quote ; 17,5646127269451 ; 17,2133204724062 ; 0,0204081632653061 ; -8 ; 16,2033552406069 ; 18,9258702132834 ; -6 ; A8cae7Ba5cf6C1eaEcf9b23E4F39cB4B6EbCAFc8E847DcECBCF40F92eBE81aBE ; < X9Z4Rokea90eO8rk8h2z9w7LW943Rv3s088Tz9nBRrLVlmrO4RT67tOnaZuFjUc5 > > // < PUTS 35,9935248027442 ; quote ; 20,1225694613013 ; 19,7201180720753 ; 0,0204081632653061 ; 8,8 ; 18,5630703280505 ; 21,6820685945522 ; 6,7 ; DBCb23AE9F6D23b8AfB10fdBAbb8acc4FfFDdEaFf9A7cee1c9fCCef3A8fbC409 ; < Th274oElkoxDv3f8xi8cPfsk4MZ7LmJOiK2R6Jv6Rm9Xh606fbo5ygVBP5le5E1j > > // < PUTS 37,4932550028586 ; quote ; 22,8266775190311 ; 22,3701439686505 ; 0,0204081632653061 ; 7 ; 21,0576100113062 ; 24,595745026756 ; -4,6 ; 9E5d0C5eddaF60aaCD12AeDBd965475F121dBaD7De34Ac6CdEfeA89BabE71f60 ; < 30OQ2874B84x2Z83sCRI8eX6tji11128BMd2HLiAM8REI8IA1dHz0HIlr9UM4VLY > > // < PUTS 38,9929852029729 ; quote ; 25,6670473394929 ; 25,153706392703 ; 0,0204081632653061 ; 5,3 ; 23,6778511706822 ; 27,6562435083036 ; -1,2 ; BE11EcaFc8dcD6eBFe8a1D19bedF9F3e6ac6B9DCCa2eeD2abd3bBfaedD50A66C ; < Qd6uL7G27cVa2AljMP3x9PI740EAsCBp77oA5EOO7S29OwGXK0Mm26JztuflbseT > > // < PUTS 40,4927154030873 ; quote ; 28,6338923171622 ; 28,0612144708189 ; 0,0204081632653061 ; 6,6 ; 26,4147656625821 ; 30,8530189717422 ; -6,8 ; e3ceacFc2aa1feafEAAeDc6acfDe120eBed7aB9cBaceAcBCDF4f9ddeAf4b9DC9 ; < 07TgQiOO42ZCs78pgga004Fvxem1YN1622MfyISjpCIH62D1R2NqFu88W8BZZc46 > > // < PUTS 41,9924456032016 ; quote ; 31,7176761857946 ; 31,0833226620787 ; 0,0204081632653061 ; 0,9 ; 29,2595562813955 ; 34,1757960901936 ; -2,7 ; CbEeD0EE6ced520CECc5DADbB8b79f8da8cfDeCa1eed0dBCF685f5D14fA7fBe9 ; < OFZPc7jC7mkBpB0oG24R7B6eMLs5kisId6HrJ1d9msGe71LJbwD3B0wusThNw1Zb > > // < PUTS 43,492175803316 ; quote ; 34,909220867385 ; 34,2110364500373 ; 0,0204081632653061 ; 9,1 ; 32,2037562501626 ; 37,6146854846073 ; 5,5 ; 3Db3F3Cdf8FB6F4dB7Cb36FBd1C2a2FABbcAfee80B5F8bDDC8Ac6Bb3AeF0Eeff ; < IMnN10C7GA581jqb9f73P320N9TX852NI3LytrDtzPCOSuWN4K6KmXf3tO4xsVVG > > // < PUTS 44,9919060034303 ; quote ; 38,1997816077946 ; 37,4357859756387 ; 0,0204081632653061 ; -0,7 ; 35,2392985331905 ; 41,1602646823987 ; 2,7 ; 2798c20BCd5Fe4DBf0fF9dADb2b8DC6FEeDD3B6FFCB2bf4BCCF369cAC3A29bfd ; < eEz41YXwT6i6RnTy9wBkiX3Z8f58BN6Nx09VJkDhZ6Fh134PXq9s2X1w255N8GY5 > > // Futures_Mostootryad_org_spe // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 25,532252 ; 1,14 ; 21,3967122807017 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; EaE1cdcCdBeD9F8FCefEaBdECBB3bedf9df4fc6Fd43AcBcEaAC6cFB7A343dFbd ; < Nou64tvjg520NpCAk4oX2c4g4IY0ErM6nhK2iq5RL9kK6seXJaQeHHjekUcg8m3f > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 25,5308024722927 ; 1,1399259 ; 21,3968965634457 ; 25,5305524722927 ; 25,5310524722927 ; -1,1 ; 2 ; 8,7 ; 1,9 ; -1,3 ; -5 ; 0,86 ; Future52AP19 ; AFc7CD4493fCF25FE7aB1B1e2b6de79b6dECbE4eBae51e2171d4A7Ba05f8fFE1 ; < aKJ64k5LKFwjgMHIeLcGX9jNOICJ3ffmf7165963yO7YXRI6Kstc2lXL22KZ232I > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 25,8113589541883 ; 1,15385052700825 ; 21,3697596439229 ; 25,8111089541883 ; 25,8116089541883 ; 4,5 ; -3,6 ; 0,8 ; 3,7 ; -1,9 ; -3 ; 0,92 ; FutureJU1947 ; aCeaaD22BB5CaAF8c3a4cD4AEdC1bFeFAbfCbadAD4A48a6cEf1FFadca4BAFECa ; < s7dLc81vV6IJtF20onqF2K1z7ZI37Hg8GOUtbia6rGs7007E29hoZDfhjqz8S2f6 > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 26,1001923180004 ; 1,18200079592152 ; 21,0813661108004 ; 26,0999423180004 ; 26,1004423180004 ; 6,7 ; -5 ; 5,2 ; -5,7 ; -9,4 ; 3,3 ; 0,29 ; FutureAU1956 ; fEce5CDC0eBbF4E175fBaBDAbcF2FaBE6ffDe4aEe9dD5faA5Eb4bFd31f3D0ABe ; < 9d3lfS6T9rP4OdEgq2c1bx0fMz2AAoJnwry12n252RwgfEZRUNIF2EJ357mzo83O > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 26,4111035328828 ; 1,22548550318439 ; 20,5515430123442 ; 26,4108535328828 ; 26,4113535328828 ; -6,3 ; -1,6 ; 2,8 ; 9,4 ; -0,1 ; 8,8 ; -0,46 ; FutureOC1985 ; cCd6F759f17b283a0aaE8cbb66C8C06AF8bFCaA32AbCadF42FFDcffC237aEB0C ; < udPb7Zq4KQ9G294GrNb2Z9kSgK0HcNiKF8c7BR23PUZbl78OWM7N3pd46G1RP37k > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 26,7488112860661 ; 1,28599748360657 ; 19,8000494768072 ; 26,7485612860661 ; 26,7490612860661 ; 9,8 ; 5,8 ; -9,3 ; -2,1 ; -6,5 ; -0,3 ; 0,55 ; FutureDE1951 ; CE7eaaBEee41dCBdbbebB437CEFB26cEbBe6E3d5ac9BFaEEabBEdAfFcb096EAD ; < 1yxCIFJf3XPrcJu70iqDm94D71drHn2748ejpAOE591hXJ0zPA3tpC14C6B11IEx > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 27,0857998010053 ; 1,36590207084755 ; 18,8299719863508 ; 27,0855498010053 ; 27,0860498010053 ; 2,2 ; 5 ; -4 ; 8,1 ; -3,5 ; -2,6 ; -0,13 ; FutureFE2046 ; dac9F0E7AAeBfc1cCec8f3Dc4C87Ef1DfeCEC6eE145EDcd3E3daf075aEBd13fD ; < Si9mosnR4WrALM3OW1P35CkS07xth4VE05p3Qa7w8Y4U25p3G0c9g175i02ScKMx > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 27,4484475126 ; 1,46841302126465 ; 17,6925933746899 ; 27,4481975126 ; 27,4486975126 ; -7,8 ; 5,1 ; 6,2 ; 8,2 ; -5,9 ; 1,1 ; 0,41 ; FutureAP2037 ; DA464BDE2CeFfcbee56BB6F1Da5B8f37eaC4Fd54474BddAffb1eAfdfA1fEDB3D ; < JSP8a8f546lA9fjgUT1r8FHiiGFI5v0iOfmxbjnlqAH4AgDvge4eH59eOY4dR2N9 > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 27,8016134648767 ; 1,59759791601377 ; 16,4021342831028 ; 27,8013634648767 ; 27,8018634648767 ; 3,2 ; -0,9 ; 5 ; -9,8 ; 2,1 ; 2,5 ; 0,02 ; FutureJU2083 ; BAC02CBBC3Ba8CEADdbfebeD1Be53ACF5EB6bbCA3ac1fFF29ECffF7BFe3D4E5f ; < W4ErEdX0Ph16if6F49h9OM947ZP12B24N2kZv7HZw5JJd7fwKe7Psw1IU7Fcjc16 > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 28,2222823466999 ; 1,75931283644776 ; 15,0416509002934 ; 28,2220323466999 ; 28,2225323466999 ; 6,2 ; 4 ; 3,1 ; -4,2 ; 5,3 ; -5,7 ; -0,7 ; FutureAU2051 ; 2BBeA6F41feb6Fcbfd866eFe6FDc2Eaa5ca3EB091dB5CacD5f2eD8B9DF5C99dF ; < nJ7ftfHxsLF1k02y7Yf7d314Iue0A1Lv0O78I23M1z3lBFOgcx9n3U81FHfY5Ew4 > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 28,6256762191096 ; 1,96090321002745 ; 13,5982096784414 ; 28,6254262191096 ; 28,6259262191096 ; 0 ; 2,7 ; 2,1 ; 1,6 ; 6 ; 9 ; -0,12 ; FutureOC2014 ; FdafaefFFC3af788EcfcCfBab493D370ECaEeCB29Ac2d6aC3CdD2a9bdd5dFeaC ; < Ike4M7iPysylSnSpkonYLF0w070TH4v25bS5P5Jigu316slel3qQp5ex8NA5RMuQ > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 29,038821971005 ; 2,21198429177177 ; 12,1279512603344 ; 29,038571971005 ; 29,039071971005 ; -0,3 ; -9,5 ; -8,7 ; -5,5 ; -0,7 ; -0,8 ; 0,85 ; FutureDE2069 ; eB6Bf0d2a8dc3bedCaea41919Ce3DdABFfb22623ddaaBfdEeB9Ae3aE44e1B7eF ; < 62zR89249eEi1T5Ke55aW6N47DFAwYpzH7627HbBeFb74bs822Ok2H4rYa17DzEl > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 29,4896977716925 ; 2,5254099698645 ; 10,6771922672321 ; 29,4894477716925 ; 29,4899477716925 ; 9 ; -9,3 ; 3,2 ; 7,2 ; -4,1 ; -3,9 ; 0,28 ; FutureFE2143 ; 7a18D2ebc7aF1BAcF19B1F46DFaBBB2DEbC8e8fCbC09dBeACaeFC4d7CEEB0CDD ; < 8WI2NE4uG1qhrUc435Z1y10Z14471N7Zu4wYvMGpvl3D9AxMM1mt9NG5YPZwJgLx > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 29,9946040022869 ; 2,91851528577361 ; 9,27735031866939 ; 29,9943540022869 ; 29,9948540022869 ; 0,8 ; -6,3 ; -5,5 ; -0,1 ; -7,2 ; 2,6 ; -0,71 ; FutureAP2166 ; Cd62Fe6FACfAb1FE12E7D2d1Cae4BBDe2CeefcDedFFf2C05CFFCeBC1224eDccD ; < By61Td7JKq2obrh6x1z0g5rgD443N9NK1r9M2a9BYfJ11KpGxzdz7deWZI783ZLj > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 30,4848583948223 ; 3,41384729603948 ; 7,92976625820051 ; 30,4846083948223 ; 30,4851083948223 ; -3 ; 7,4 ; 2,5 ; 8,5 ; 0,6 ; 2,3 ; 0,39 ; FutureJU2157 ; DA88BCECba78D3daBf9C0caFea7FbB2ca2Dd2C6cFBcdB1B3c6DBdcF5Fa26Cb9c ; < 152UefMse40fgcu0Joado4ItISSaaQcCG05oHjiHWy981I5eY76tforR1XEqWHes > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 30,9894653608081 ; 4,04125107287478 ; 6,66828509339893 ; 30,9892153608081 ; 30,9897153608081 ; -3,5 ; -5,7 ; -4,6 ; -2,3 ; -1,6 ; 1,8 ; 0,33 ; FutureAU2155 ; BbA5fbF9eef34dDFBFAaDAE0dEcFDDdDFacCEee55AbFDfB85C6c6b6fECbD807A ; < k6KeHI44PaWVBdIzpGEYh8OHS90WRVyBIeYt38YpL37ZT77LR6Ayn8Qi84A8dU75 > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 31,4612656901512 ; 4,84209974397795 ; 5,497442711559 ; 31,4610156901512 ; 31,4615156901512 ; -4,9 ; -3,4 ; 6,5 ; -8,5 ; 1,5 ; 0,9 ; -0,29 ; FutureOC2166 ; bD2f4B659Ea0fC3AABFaefeFDeDeAeCC5596abbebB92ecAe6Ba04CAc33cb0fDd ; < 11jZRTtjHMhGeFT73ix4oy6TV42S7Z1oYZXXaiuChDh2Fz5oy4LGwjOudgSU06ag > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 32,0792449728395 ; 5,87166600220089 ; 4,46339743452969 ; 32,0789949728395 ; 32,0794949728395 ; 9,1 ; -7,5 ; -8,7 ; 9,3 ; 2,5 ; -7,3 ; 0,54 ; FutureDE2199 ; 4abA0ECDCaacACD10faCA2C3CfCeecE3ebcEfbBfCbFD1EE9BdcCEFb56dDc4FFB ; < dQtbuZm2G8oVF87RI6mq15S82a07Bc9mZ95Y5bQA2pVG2M3JEXLM8H3CdSkpWq0e > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 32,5827401162094 ; 7,20669966719837 ; 3,5211735774853 ; 32,5824901162094 ; 32,5829901162094 ; -4,1 ; 4,2 ; -0,7 ; -3,3 ; -4,5 ; -4,1 ; 0,5 ; FutureFE2254 ; Fd8eBFCd4acbcbF9b7A8C160Aaead10201a0Fe9DebD9833EEA5bB1aac7cABBb1 ; < 623F71y2Iw3Q3Au8cIie0hTs80t959A955iH4t45NH99C0ejl89zY8QGM2n9h8G7 > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 33,1898567754601 ; 8,95242807364405 ; 2,70735810468794 ; 33,1896067754601 ; 33,1901067754601 ; -2,2 ; -7 ; -1,1 ; -8,4 ; -8,6 ; 0,7 ; -0,52 ; FutureAP2286 ; 831c053bd9E6f3AB372d8feb6e5C5e1fc1c4AcCB07abD9A61584ACAecB5BBACc ; < dRL9ifJ9lq16y33603PR655982qgA8fd5Pf6CHJ9QY8YjbsoPkO08CHXjoecTYQf > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 33,8403101953302 ; 11,2569749806485 ; 2,00616375656017 ; 33,8400601953302 ; 33,8405601953302 ; -1,1 ; -4,4 ; 2,8 ; 9,9 ; 4,6 ; -7,5 ; 0,84 ; FutureJU2230 ; f0BACE65DEaAcbeE2BAe11F1DfB9C436DEeFE0CFFb627e31C9cAD0B46Eb3D657 ; < J8CXA01l6e69vSS2k332kBCAco8y3i87E63P07XkhU7fMH6Tr3Fi8ydCG7yQH9WL > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 34,601769428976 ; 14,3261293142326 ; 1,4152908765524 ; 34,601519428976 ; 34,602019428976 ; 1,8 ; -4,7 ; -0,7 ; 5,1 ; -9,3 ; 0,2 ; -0,8 ; FutureAU2273 ; ae1f2eCEca3bE9c7beAD6E2DEfA067648cFB4FC82cFE3FE20C51c606Aa3Dbda6 ; < NsuQi2A5z7P80v148XWjGt2slNtdk67H0FgCZD8LtaE6SQ2UaRS82p8xgI4EXc8x > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 35,1700998379458 ; 18,4528828160671 ; 0,905940670003223 ; 35,1698498379458 ; 35,1703498379458 ; -3,8 ; 2,2 ; -5,8 ; 0 ; -2,2 ; -7,9 ; 0,13 ; FutureOC2256 ; aDD1989D27DecDeb7C4efc50ADdBeFfA4c3fBCAa33dFdec4E5e4fAEe4cCEEA6a ; < gtX0v1GKO7UChPZ8j44um29TOLR7VEC4RM09Ep2Gsc1AV30mYamjVw2XJ21Yq1v7 > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 35,9979113231109 ; 24,058021366237 ; 0,496295592023635 ; 35,9976613231109 ; 35,9981613231109 ; 3,8 ; -3,3 ; -1,5 ; -9,7 ; 0,2 ; 1,9 ; -0,77 ; FutureDE2255 ; Bc9eE8Efa5C3beb78B9EACD5aD6ef3afeA449B503be9f9fD29CB2Ce7AC55AD6E ; < oDzs5y688A0zz1a857Gk9T86j7pElssR21o6K2RwAdnh6shKH7fLz32eJBFt1BS7 > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 36,5705504623267 ; 31,7439279634604 ; 0,152048684851546 ; 36,5703004623267 ; 36,5708004623267 ; 4,5 ; -0,9 ; -8,9 ; 8,1 ; 6,7 ; -8,8 ; -0,76 ; FutureFE2370 ; F0cC70Addcd0d7b112c4ED37b7f4Cd5D5D3EFC6a0fd9Caa9aafCDBAaDdEea0Cc ; < bj6v9Uh4wL91xEgaO8JbgE7UD7YZ3384t41yIBzT5CEYpqd6b6aYEhsZkREPzfDy > > // < CALLS ; 3Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 16,5949283877301 ; quote ; 61,5308193640129 ; 60,3002029767326 ; 0,0204081632653061 ; -0,2 ; 56,6083538148919 ; 66,4532849131339 ; 1,3 ; b0F117b3ECD2D6DC291Ad40AEce92bb0cAACbCCeeFEfcBD7Cce6C39fbA05Ce21 ; < 2sE81P3h2ZBn1ZH23TmWk9aL1KuoUDdtpte1OD244Sv8meSTmE8uu9A6L3RVX05X > > // < CALLS 18,2544212265031 ; quote ; 58,045248210132 ; 56,8843432459294 ; 0,0204081632653061 ; 9,1 ; 53,4016283533215 ; 62,6888680669426 ; 8 ; D9b0bFaaEAa192cDd8ccaeB8EE9eFeb2AbADF7cBCc8aFe9B45CA1e5cA148FbAb ; < X5l0Ken5NGys204R5tQCS7yFwhrvbBLSl53W9c8el6leIpyX3PdTe7h49T0PtfKK > > // < CALLS 19,9139140652761 ; quote ; 54,6875870286012 ; 53,5938352880292 ; 0,0204081632653061 ; -0,2 ; 50,3125800663131 ; 59,0625939908893 ; -4,8 ; 160daAce5AC2DcCb3cD1c0B89dA46b22cD50cE3aFffc5779BAf793bfB3b6Bcb2 ; < I0Rtug501KLq4O6iPkxoX95a0Tfh46Ohgc9q34y4xJmBV8Rs5DXr08CkFj7oJF19 > > // < CALLS 21,5734069040491 ; quote ; 51,4669757423064 ; 50,4376362274602 ; 0,0204081632653061 ; -6 ; 47,3496176829219 ; 55,5843338016909 ; 1,3 ; fcdECa85EFEDbDe5c46eDcdDA0bADEDC54Af0Bd44cF789211a61F3CCf9b877dC ; < nRPhH8Q4k430i3L4pdBv55nxG6jOe4quHV9U05L8458f69bg4gqrmr8C5sM6LROR > > // < CALLS 23,2328997428221 ; quote ; 48,3896143750377 ; 47,4218220875369 ; 0,0204081632653061 ; -4,2 ; 44,5184452250347 ; 52,2607835250407 ; -5,5 ; 2f38F35FEdc90fC14114d5ec999fEB9dC32Cd4285DCeC8F07fA3Ba492adE8edc ; < ykY006Em6T893YYQLfJGYS7C7zXRya6bJ5hY4QdcW0l50840q0I6I8nH728WWco8 > > // < CALLS 24,8923925815951 ; quote ; 45,4590564027714 ; 44,5498752747159 ; 0,0204081632653061 ; 0,6 ; 41,8223318905496 ; 49,0957809149931 ; -9,1 ; 7fa2cCB28FcFC62eDCABaeEbBBcEFEA2BE8bDe94faAEb3BF5DED9BfEfCcD96B0 ; < 6SUbdsUaehH9yk3QyalZ6aESg4dvKK7vw1GamD72s8ooyQgyAaPkZIm1904AgPmY > > // < CALLS 26,5518854203681 ; quote ; 42,6765659694769 ; 41,8230346500873 ; 0,0204081632653061 ; 9,1 ; 39,2624406919187 ; 46,090691247035 ; 0,6 ; CE6Be770A8Fa6A1ADAe9DCF5adfbDaf0e2BBEcAbf6c1994EEFb7Bc9Db0EFa1dA ; < p53M51TpWlIpBDap3NM2P1ONV3vlt99P3m8BVzpwv3V5dXS8W9QSJKsl39O0rnuF > > // < CALLS 28,2113782591411 ; quote ; 40,0414910307221 ; 39,2406612101077 ; 0,0204081632653061 ; -8,6 ; 36,8381717482643 ; 43,2448103131799 ; -3,4 ; fdBdAcBaD074FF7cFeA99be04ff7fecE1bc7E3a1f93deecCAdcCc56cbBeB4Dec ; < 4e8eU04K44PaIE59fsJ3VA3V602d58w2p41F13xUM38b1XfcuXCdd6dLp6g442es > > // < CALLS 29,8708710979141 ; quote ; 37,5516227399988 ; 36,8005902851988 ; 0,0204081632653061 ; 7,7 ; 34,5474929207989 ; 40,5557525591987 ; 7,6 ; cEC38D10A2e27DFffe3B13F84DC0a68ab8bbbCcDd70cAAa34EcbcFB03cd3dAc2 ; < rhhfTy6a9z6zzq89yhN81d3L41Tp04PCBDgua3r5h41waCn0jwb7G0adxQM0ajdI > > // < CALLS 31,5303639366871 ; quote ; 35,2035243902198 ; 34,4994539024154 ; 0,0204081632653061 ; 0,8 ; 32,3872424390022 ; 38,0198063414374 ; 5,3 ; AdddACDEf2afa1a7dcE6eaebf444B9C1506CCBCDA56bFe688FB06d0A4DAfdA9a ; < hsxcI6Ti7ZarF32VB6nE752t9douJSyiG1EBBtNa42QbjpEKfYV8oAPgcY7ojIZ9 > > // < CALLS 33,1898567754601 ; quote ; 32,9928219942121 ; 32,3329655543278 ; 0,0204081632653061 ; -0,6 ; 30,3533962346751 ; 35,6322477537491 ; 2,1 ; Ec4FeeEAFACDbF87eFeDeb2AEd4b695eC9EC9BBFBfA5BeFBEaD0BBF4eadfDdfA ; < jJk2V0j2AVzHVlW47d82DI7tjHJbOiDm8Xs69Veu9v336K6U8WngsUXKQYm1U5kn > > // < CALLS 34,8493496142331 ; quote ; 30,9144542159824 ; 30,2961651316627 ; 0,0204081632653061 ; 7 ; 28,4412978787038 ; 33,387610553261 ; -5,2 ; FCfF3C9bc1A29aecA5c37fBebBfbe006e81FFddaAfffFa7fa4A021EDDdA88A88 ; < f1U5VNj7TZ6Tq07B2ENit064kRSSrmiI3PJV1o7vLQ5TUuJD7SG0AaTEVU1s14LV > > // < CALLS 36,5088424530061 ; quote ; 28,9628827714671 ; 28,3836251160378 ; 0,0204081632653061 ; -9,1 ; 26,6458521497498 ; 31,2799133931845 ; 6,2 ; c1bcFa8A9C67FECB2c88dF4bdfAaEDDEfb4eE4f8BDb2ebF0cfaC6DB5DbDaFC08 ; < aX364ygL650RR64MC0xPem38z3brYX4w6U0Bor53BOoErj0MZTP92sh47Vm8t6Zg > > // < CALLS 38,1683352917791 ; quote ; 27,1322663162922 ; 26,5896209899663 ; 0,0204081632653061 ; 2,2 ; 24,9616850109888 ; 29,3028476215956 ; 3,3 ; 7Abc4bFcdbFc9BDc70BC80B2Db5EC0E2E9f1aF8E2FE3f8AfdDaAdAe6DFFcCB63 ; < 07c6mk9op581m8ffLD573P64QQ73M81B429qV85nhXvrxl7UZ3IXVtjGZ6s04PB8 > > // < CALLS 39,8278281305522 ; quote ; 25,4166017493327 ; 24,908269714346 ; 0,0204081632653061 ; -7 ; 23,3832736093861 ; 27,4499298892793 ; -8,8 ; 2BE0C47e3dfef1ADbDFc79ecbC8CCa40cCa2bEca9bDda8b9Bbbeaadf40B7B17C ; < xQ4vSGn7K3E73zC4HGIEBAs8Lq9e6UKUS266SZOR4IFvk1zo8mw70NjX42aJpQXP > > // < CALLS 41,4873209693252 ; quote ; 23,8098371502222 ; 23,3336404072177 ; 0,0204081632653061 ; 9,2 ; 21,9050501782044 ; 25,7146241222399 ; 3,7 ; FaeEc4CD1CC6d4edf813c5eB9aFF5aECd0a3FFFD4C43dc1fA65FF93B6AFeb7dE ; < 70A6lp4tpEnwA8ecyX5OG3Jgag4TVRvV2dppq4KP3XFaQ4Z4DbtDpvfH8ak3msc5 > > // < CALLS 43,1468138080982 ; quote ; 22,3059604855858 ; 21,8598412758741 ; 0,0204081632653061 ; 3,4 ; 20,521483646739 ; 24,0904373244327 ; -7,6 ; F589BeBE7F6CbA838E3cbBbAa3db5aeF1d4AF38beebDECBF0e7abda5BcdBBeCE ; < 0HtcdwSZ5xt7080z9kr6zFjXH05RBqVz0KKVbRymp6wmeeE5encYkrODlKzFH66p > > // < CALLS 44,8063066468712 ; quote ; 20,8990679279314 ; 20,4810865693728 ; 0,0204081632653061 ; -5,7 ; 19,2271424936969 ; 22,570993362166 ; 6 ; 2eD5ae64ddBeae6F34DD0fE25B8CfE4815b8A26315e5CBeCDdAcA178aFF3aaDC ; < Md14i9iym0s31Ie346iLy9MxV6BNk085Gl4Y50lCFWdR435ijf4w0NSAy68J3gZO > > // < CALLS 46,4657994856442 ; quote ; 19,583415239393 ; 19,1917469346052 ; 0,0204081632653061 ; -3,6 ; 18,0167420202416 ; 21,1500884585445 ; -6 ; b8Afa1b81ce4CBBAbD8cfBaAE28FDAB7bc9D2ab9ffeBEBbbe6eBD0Ccb16cA5b1 ; < 265SiANkq2uY4Rp0UWj01c2OInb8TjeC35AQ68zvX6nJJAgE7N0tUzqa6BpBIXnh > > // < CALLS 48,1252923244172 ; quote ; 18,3534552464126 ; 17,9863861414844 ; 0,0204081632653061 ; -7,6 ; 16,8851788266996 ; 19,8217316661256 ; -0,4 ; 4EAbfaCFeF8ccE09cD6D3Afa4bBf3c6eFBc97fdBDFED4eFefF4Ac0A1B2DBAcec ; < Cb8eZEVUM76eFt87GsPr35foHt52KJ2do6PkEAP6ox6b46d23ld19fY3L64EIrp3 > > // < CALLS 49,7847851631902 ; quote ; 17,2038640106649 ; 16,8597867304516 ; 0,0204081632653061 ; 4 ; 15,8275548898117 ; 18,5801731315181 ; 3,8 ; c4CD0c4F1ccB5DFb71Be95c35f578b5AF1dd0AC1b2A63C1Ad34fdC08aB2977ca ; < EHH1j1W584z39Nu823G1IJRF0uPElx3K7MK30W1x3gwdVf6VG4f755k8Mue86g2K > > // // < PUTS ; 3Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 16,5949283877301 ; quote ; 0,862212417340544 ; 0,844968168993733 ; 0,0204081632653061 ; 7 ; 0,7932354239533 ; 0,931189410727787 ; -3,2 ; CaA0CdEda5F4Ac7cB7ebaEd43EeAFfdc8fa919E87aaC5A0A7B79fACb8EC6fBAB ; < b62jzfuDdZL7t286W4Pm1A9ZqS0lDugPYL4vQ49AK8740k04Oqy94G1JxT0Vaz6D > > // < PUTS 18,2544212265031 ; quote ; 1,30978056879249 ; 1,28358495741664 ; 0,0204081632653061 ; -5,5 ; 1,20499812328909 ; 1,41456301429589 ; 8,8 ; F934a0080cfb5d2bad97ad5e66da15BAb35FaFABAEBA54a15B26AD2BB1Aa17fe ; < y1425693w7333v2UiDsmiR3g9pbJBkkzdCX7I2dX4482bdZw0LomFgLAbDx6608O > > // < PUTS 19,9139140652761 ; quote ; 1,88525869259442 ; 1,84755351874253 ; 0,0204081632653061 ; -3,9 ; 1,73443799718687 ; 2,03607938800197 ; -2,3 ; dadCCCBA0bdf8Bd211edd9DCfA986B4ffeDe69c3EBDbE3Bb3aDFB4DfFAccC4c3 ; < YRf7NWijh955F2qObF7OX4K17CGS0UK79dQgWq26UpWI26R7q63j75U05L5DTO08 > > // < PUTS 21,5734069040491 ; quote ; 2,59778671163235 ; 2,54583097739971 ; 0,0204081632653061 ; 1,7 ; 2,38996377470176 ; 2,80560964856294 ; 3,1 ; 594CbcC94CFAAdaBdBEEaEb4a6dfCfb576cBeeCC8155E96Fd9dedaADb6e9eC65 ; < OmZ8tfFsylq98cKZP06pU7F9SK52v4ArjVBG0Vp5U74AvPJPQq47tFu727cV02Aj > > // < PUTS 23,2328997428221 ; quote ; 3,4535646496964 ; 3,38449335670247 ; 0,0204081632653061 ; -4,9 ; 3,17727947772069 ; 3,72984982167212 ; -7,2 ; efFAcB2EbB3b210b1E3eFFBcfc9Bfb1BFef0A31Da9EA8aADE0C6b803D16A6cBE ; < MdEH6j8O8oFwtedqBMF3eAuq5qhlPdPaAQdxoL6KUH3t7tdjFu654QBsxRr7J872 > > // < PUTS 24,8923925815951 ; quote ; 4,45614598276286 ; 4,36702306310761 ; 0,0204081632653061 ; -1,7 ; 4,09965430414183 ; 4,81263766138389 ; 2,4 ; beaEA4aEa044Ccc58e60728FdfDEFA9c5eCaA297f42A364E9cDB1D5eEeAbEF34 ; < xdhWHa50lgVoOl89r2Uoo57wmDxKllzp0fs6D1Ydo7oRF5d886idXC52ZhCwi9J7 > > // < PUTS 26,5518854203681 ; quote ; 5,60679485480114 ; 5,49465895770511 ; 0,0204081632653061 ; 6,3 ; 5,15825126641705 ; 6,05533844318523 ; 2,6 ; B6AFF7c7Ac137C72a85bEEDEf22aE23cbde7FBb2326cAFeBb218a36ACF2b63Ed ; < vmajl0w3d7sjh4ME5RrNkm5oLEyQarWMCTR5b9EIL7N7G2Kw6sB1C2z7Mjaccn59 > > // < PUTS 28,2113782591411 ; quote ; 6,90485922137916 ; 6,76676203695157 ; 0,0204081632653061 ; 8,8 ; 6,35247048366882 ; 7,45724795908949 ; -4,4 ; b4EBBEcBbefbd84b9ba341568Ad6BbfD11eD87fCEdDe3dc4eC630aA991e95cEF ; < S4JbbaxYXen0URXH1ECsLzt4REV0t6EE8IruTnG21PQzZhIjANRJ5bU8PY0M8FE3 > > // < PUTS 29,8708710979141 ; quote ; 8,34813023598858 ; 8,18116763126881 ; 0,0204081632653061 ; -2,3 ; 7,68027981710949 ; 9,01598065486767 ; -9,2 ; BccA7ce7e13dDbAE2D8e4F2f74dCFFA8ACDE35f72bEfE5c3DAae71D8d08cdb0d ; < 4TYzmC3NH2eY3W7S7a3mrv3vW02q735lfN256Vrqk1I2S93a9wukJbsMSUqUmeul > > // < PUTS 31,5303639366871 ; quote ; 9,93317119154237 ; 9,73450776771152 ; 0,0204081632653061 ; 0,6 ; 9,13851749621898 ; 10,7278248868658 ; -5,8 ; fAEF0a3d53bFE03dEAf38d4dBEa0C5fcaBebeE25AE27E0DEb8fC3BF0D358bCBB ; < DV7UfpAnsFtc7ZW393wA72Nt9WkX505K3dHn0S6qJ7T42604KsK56jhmuMdi2VR8 > > // < PUTS 33,1898567754601 ; quote ; 11,6556081008674 ; 11,4224959388501 ; 0,0204081632653061 ; 2,2 ; 10,723159452798 ; 12,5880567489368 ; 6,2 ; aE28bfBC787caDDa6f8CB4f4F6fE5cDDEDdfFCe57c7A31DdAf6Fb67Babe7d6FB ; < A2KV0vEBl43C2u28k4NFa9pKhaPb8Iw1Ni2IYB0CSz9SrraNJyC6LbnCLbFaav5z > > // < PUTS 34,8493496142331 ; quote ; 13,5103796279705 ; 13,2401720354111 ; 0,0204081632653061 ; -9,9 ; 12,4295492577329 ; 14,5912099982081 ; 7 ; da0c7f3EF2AcA7a0eA65c65E53eafcEfD727CfDC9aE4fdc1f1eFA2DBa4c6Fb0c ; < 8UJWGoN4bA4VC8LGpYiDIId3W7nV46qb3I6DqGtIJgVAu78K9DQ2h4z485zpue52 > > // < PUTS 36,5088424530061 ; quote ; 15,491947488788 ; 15,1821085390123 ; 0,0204081632653061 ; 7,5 ; 14,252591689685 ; 16,7313032878911 ; 1,5 ; FEd4C0CEb10deFedfEa6E5BcC04D9cfe9F6cd68baC9997CBEabCe8Cc0ADFDE9b ; < iVbtb2X14QRp1C60XWgpF9jI4ZoiK1YIlSmL3Ed2ujiq9748V2Y4aui87ciW89u4 > > // < PUTS 38,1683352917791 ; quote ; 17,5944703389458 ; 17,2425809321669 ; 0,0204081632653061 ; -6,1 ; 16,1869127118302 ; 19,0020279660615 ; 1,6 ; bACcb4EfBAD24C7c188BdACcd3aBA42bCCa2dD8Bbf53D321A4B8BDEeF2fE6Eb7 ; < Ysjn1LBe06y2ZdYdo6jsn5v8sYgTMdYnO0fHg5O9GrDTr1GXx3VaPiorbD62pdvr > > // < PUTS 39,8278281305522 ; quote ; 19,8119450773191 ; 19,4157061757727 ; 0,0204081632653061 ; 2,9 ; 18,2269894711336 ; 21,3969006835046 ; 0,4 ; 4c9dfcd65CCEF6eDcDfBA6Fb8bf7FbA38fceaBBA8aDA3b7570aB6fccBDE797aE ; < 6BoX5wJLpCtQ6Qrs0Q4r22e4A9WE8u73xt9H14BL4sncKdN7rzqjbre1PC2FVR7G > > // < PUTS 41,4873209693252 ; quote ; 22,1383197835413 ; 21,6955533878705 ; 0,0204081632653061 ; 4,2 ; 20,367254200858 ; 23,9093853662246 ; -9,5 ; 3dbbAB16C2cCCFDCC289d50fECa8520A014C0b6F07e01DB9Ef94EEe0E2D41eFC ; < 1cf9sX2e3962Y0g3aBDpQYRQ8Q225Kp6aVtid0rQeqtfxWRgY8jgefG984XR16vu > > // < PUTS 43,1468138080982 ; quote ; 24,5675824242378 ; 24,076230775753 ; 0,0204081632653061 ; -6,1 ; 22,6021758302988 ; 26,5329890181768 ; 2,8 ; 1badaCdAe5EAaa6EeeaABdCCCBCE14A1EBc73dBBFFaD3eC5DEAbD32E7Fd8fc2B ; < bT7q8s663M7o6uEhYm3lxs3xaOaCMjWk1VnH0AXB6S6ZVgk2hgWpUh5d7kdIA6Lo > > // < PUTS 44,8063066468712 ; quote ; 27,0938291719162 ; 26,5519525884778 ; 0,0204081632653061 ; -6,5 ; 24,9263228381629 ; 29,2613355056694 ; -9 ; fa1Cd3449d9Db4FFaAe00e8eeB4f6DBA0FABEbe02E07cD0fDB58D286B3dC1c6B ; < 1oy260ZH9MHVi00b9Ghu3jqQ1VWc986AiI42OZ2eOq3421iht23q6jiz3Rl0AmQ2 > > // < PUTS 46,4657994856442 ; quote ; 29,7113157887105 ; 29,1170894729363 ; 0,0204081632653061 ; 1,6 ; 27,3344105256137 ; 32,0882210518074 ; 1,7 ; E21eec1e87CEacBBEb8eD80aEd9a2d7bF3be6E6cfeFAEddaFA0Ca48dc3Acee2d ; < 9B2GNE4Z9zgcKJ9ykD58IyGO56FQs91Yr1jdgn1Vt1j0G788W9A3860CM4J1q1L9 > > // < PUTS 48,1252923244172 ; quote ; 32,4144951010629 ; 31,7662051990416 ; 0,0204081632653061 ; 5,7 ; 29,8213354929778 ; 35,0076547091479 ; 0,1 ; 471fDcBc4bc5EC87Efb2fDE0fBEdbbdEfdcfe03CaCb4d8a8dC4d5C1DC5BbB0ef ; < 43180le16g0d70Up3sDamhjx9cNb3oA7d5I1qZUSsy6xE85OkrFpz8S18XVp2EQ7 > > // < PUTS 49,7847851631902 ; quote ; 35,1980431706479 ; 34,4940823072349 ; 0,0204081632653061 ; 6,8 ; 32,3821997169961 ; 38,0138866242997 ; 8,5 ; FbbBA4dBEDb70FfAa9CBFB5cF67D3dCAA70FdAdaA4b5EFe7AeaDdCFEEeFCDE6F ; < 0e516Vn0vGHMzLr6ito38vC9P7rb37IeVRyhu9twCgEaet57GaMB0O1cmmo3WACh > > // Futures_Mostootryad_org_spe // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 25,532252 ; 1,14 ; 21,3967122807017 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; EaE1cdcCdBeD9F8FCefEaBdECBB3bedf9df4fc6Fd43AcBcEaAC6cFB7A343dFbd ; < Nou64tvjg520NpCAk4oX2c4g4IY0ErM6nhK2iq5RL9kK6seXJaQeHHjekUcg8m3f > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 25,5308024722927 ; 1,1399259 ; 21,3968965634457 ; 25,5305524722927 ; 25,5310524722927 ; -1,1 ; 2 ; 8,7 ; 1,9 ; -1,3 ; -5 ; 0,86 ; Future52AP19 ; AFc7CD4493fCF25FE7aB1B1e2b6de79b6dECbE4eBae51e2171d4A7Ba05f8fFE1 ; < aKJ64k5LKFwjgMHIeLcGX9jNOICJ3ffmf7165963yO7YXRI6Kstc2lXL22KZ232I > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 25,8113589541883 ; 1,15385052700825 ; 21,3697596439229 ; 25,8111089541883 ; 25,8116089541883 ; 4,5 ; -3,6 ; 0,8 ; 3,7 ; -1,9 ; -3 ; 0,92 ; FutureJU1947 ; aCeaaD22BB5CaAF8c3a4cD4AEdC1bFeFAbfCbadAD4A48a6cEf1FFadca4BAFECa ; < s7dLc81vV6IJtF20onqF2K1z7ZI37Hg8GOUtbia6rGs7007E29hoZDfhjqz8S2f6 > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 26,1001923180004 ; 1,18200079592152 ; 21,0813661108004 ; 26,0999423180004 ; 26,1004423180004 ; 6,7 ; -5 ; 5,2 ; -5,7 ; -9,4 ; 3,3 ; 0,29 ; FutureAU1956 ; fEce5CDC0eBbF4E175fBaBDAbcF2FaBE6ffDe4aEe9dD5faA5Eb4bFd31f3D0ABe ; < 9d3lfS6T9rP4OdEgq2c1bx0fMz2AAoJnwry12n252RwgfEZRUNIF2EJ357mzo83O > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 26,4111035328828 ; 1,22548550318439 ; 20,5515430123442 ; 26,4108535328828 ; 26,4113535328828 ; -6,3 ; -1,6 ; 2,8 ; 9,4 ; -0,1 ; 8,8 ; -0,46 ; FutureOC1985 ; cCd6F759f17b283a0aaE8cbb66C8C06AF8bFCaA32AbCadF42FFDcffC237aEB0C ; < udPb7Zq4KQ9G294GrNb2Z9kSgK0HcNiKF8c7BR23PUZbl78OWM7N3pd46G1RP37k > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 26,7488112860661 ; 1,28599748360657 ; 19,8000494768072 ; 26,7485612860661 ; 26,7490612860661 ; 9,8 ; 5,8 ; -9,3 ; -2,1 ; -6,5 ; -0,3 ; 0,55 ; FutureDE1951 ; CE7eaaBEee41dCBdbbebB437CEFB26cEbBe6E3d5ac9BFaEEabBEdAfFcb096EAD ; < 1yxCIFJf3XPrcJu70iqDm94D71drHn2748ejpAOE591hXJ0zPA3tpC14C6B11IEx > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 27,0857998010053 ; 1,36590207084755 ; 18,8299719863508 ; 27,0855498010053 ; 27,0860498010053 ; 2,2 ; 5 ; -4 ; 8,1 ; -3,5 ; -2,6 ; -0,13 ; FutureFE2046 ; dac9F0E7AAeBfc1cCec8f3Dc4C87Ef1DfeCEC6eE145EDcd3E3daf075aEBd13fD ; < Si9mosnR4WrALM3OW1P35CkS07xth4VE05p3Qa7w8Y4U25p3G0c9g175i02ScKMx > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 27,4484475126 ; 1,46841302126465 ; 17,6925933746899 ; 27,4481975126 ; 27,4486975126 ; -7,8 ; 5,1 ; 6,2 ; 8,2 ; -5,9 ; 1,1 ; 0,41 ; FutureAP2037 ; DA464BDE2CeFfcbee56BB6F1Da5B8f37eaC4Fd54474BddAffb1eAfdfA1fEDB3D ; < JSP8a8f546lA9fjgUT1r8FHiiGFI5v0iOfmxbjnlqAH4AgDvge4eH59eOY4dR2N9 > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 27,8016134648767 ; 1,59759791601377 ; 16,4021342831028 ; 27,8013634648767 ; 27,8018634648767 ; 3,2 ; -0,9 ; 5 ; -9,8 ; 2,1 ; 2,5 ; 0,02 ; FutureJU2083 ; BAC02CBBC3Ba8CEADdbfebeD1Be53ACF5EB6bbCA3ac1fFF29ECffF7BFe3D4E5f ; < W4ErEdX0Ph16if6F49h9OM947ZP12B24N2kZv7HZw5JJd7fwKe7Psw1IU7Fcjc16 > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 28,2222823466999 ; 1,75931283644776 ; 15,0416509002934 ; 28,2220323466999 ; 28,2225323466999 ; 6,2 ; 4 ; 3,1 ; -4,2 ; 5,3 ; -5,7 ; -0,7 ; FutureAU2051 ; 2BBeA6F41feb6Fcbfd866eFe6FDc2Eaa5ca3EB091dB5CacD5f2eD8B9DF5C99dF ; < nJ7ftfHxsLF1k02y7Yf7d314Iue0A1Lv0O78I23M1z3lBFOgcx9n3U81FHfY5Ew4 > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 28,6256762191096 ; 1,96090321002745 ; 13,5982096784414 ; 28,6254262191096 ; 28,6259262191096 ; 0 ; 2,7 ; 2,1 ; 1,6 ; 6 ; 9 ; -0,12 ; FutureOC2014 ; FdafaefFFC3af788EcfcCfBab493D370ECaEeCB29Ac2d6aC3CdD2a9bdd5dFeaC ; < Ike4M7iPysylSnSpkonYLF0w070TH4v25bS5P5Jigu316slel3qQp5ex8NA5RMuQ > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 29,038821971005 ; 2,21198429177177 ; 12,1279512603344 ; 29,038571971005 ; 29,039071971005 ; -0,3 ; -9,5 ; -8,7 ; -5,5 ; -0,7 ; -0,8 ; 0,85 ; FutureDE2069 ; eB6Bf0d2a8dc3bedCaea41919Ce3DdABFfb22623ddaaBfdEeB9Ae3aE44e1B7eF ; < 62zR89249eEi1T5Ke55aW6N47DFAwYpzH7627HbBeFb74bs822Ok2H4rYa17DzEl > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 29,4896977716925 ; 2,5254099698645 ; 10,6771922672321 ; 29,4894477716925 ; 29,4899477716925 ; 9 ; -9,3 ; 3,2 ; 7,2 ; -4,1 ; -3,9 ; 0,28 ; FutureFE2143 ; 7a18D2ebc7aF1BAcF19B1F46DFaBBB2DEbC8e8fCbC09dBeACaeFC4d7CEEB0CDD ; < 8WI2NE4uG1qhrUc435Z1y10Z14471N7Zu4wYvMGpvl3D9AxMM1mt9NG5YPZwJgLx > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 29,9946040022869 ; 2,91851528577361 ; 9,27735031866939 ; 29,9943540022869 ; 29,9948540022869 ; 0,8 ; -6,3 ; -5,5 ; -0,1 ; -7,2 ; 2,6 ; -0,71 ; FutureAP2166 ; Cd62Fe6FACfAb1FE12E7D2d1Cae4BBDe2CeefcDedFFf2C05CFFCeBC1224eDccD ; < By61Td7JKq2obrh6x1z0g5rgD443N9NK1r9M2a9BYfJ11KpGxzdz7deWZI783ZLj > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 30,4848583948223 ; 3,41384729603948 ; 7,92976625820051 ; 30,4846083948223 ; 30,4851083948223 ; -3 ; 7,4 ; 2,5 ; 8,5 ; 0,6 ; 2,3 ; 0,39 ; FutureJU2157 ; DA88BCECba78D3daBf9C0caFea7FbB2ca2Dd2C6cFBcdB1B3c6DBdcF5Fa26Cb9c ; < 152UefMse40fgcu0Joado4ItISSaaQcCG05oHjiHWy981I5eY76tforR1XEqWHes > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 30,9894653608081 ; 4,04125107287478 ; 6,66828509339893 ; 30,9892153608081 ; 30,9897153608081 ; -3,5 ; -5,7 ; -4,6 ; -2,3 ; -1,6 ; 1,8 ; 0,33 ; FutureAU2155 ; BbA5fbF9eef34dDFBFAaDAE0dEcFDDdDFacCEee55AbFDfB85C6c6b6fECbD807A ; < k6KeHI44PaWVBdIzpGEYh8OHS90WRVyBIeYt38YpL37ZT77LR6Ayn8Qi84A8dU75 > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 31,4612656901512 ; 4,84209974397795 ; 5,497442711559 ; 31,4610156901512 ; 31,4615156901512 ; -4,9 ; -3,4 ; 6,5 ; -8,5 ; 1,5 ; 0,9 ; -0,29 ; FutureOC2166 ; bD2f4B659Ea0fC3AABFaefeFDeDeAeCC5596abbebB92ecAe6Ba04CAc33cb0fDd ; < 11jZRTtjHMhGeFT73ix4oy6TV42S7Z1oYZXXaiuChDh2Fz5oy4LGwjOudgSU06ag > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 32,0792449728395 ; 5,87166600220089 ; 4,46339743452969 ; 32,0789949728395 ; 32,0794949728395 ; 9,1 ; -7,5 ; -8,7 ; 9,3 ; 2,5 ; -7,3 ; 0,54 ; FutureDE2199 ; 4abA0ECDCaacACD10faCA2C3CfCeecE3ebcEfbBfCbFD1EE9BdcCEFb56dDc4FFB ; < dQtbuZm2G8oVF87RI6mq15S82a07Bc9mZ95Y5bQA2pVG2M3JEXLM8H3CdSkpWq0e > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 32,5827401162094 ; 7,20669966719837 ; 3,5211735774853 ; 32,5824901162094 ; 32,5829901162094 ; -4,1 ; 4,2 ; -0,7 ; -3,3 ; -4,5 ; -4,1 ; 0,5 ; FutureFE2254 ; Fd8eBFCd4acbcbF9b7A8C160Aaead10201a0Fe9DebD9833EEA5bB1aac7cABBb1 ; < 623F71y2Iw3Q3Au8cIie0hTs80t959A955iH4t45NH99C0ejl89zY8QGM2n9h8G7 > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 33,1898567754601 ; 8,95242807364405 ; 2,70735810468794 ; 33,1896067754601 ; 33,1901067754601 ; -2,2 ; -7 ; -1,1 ; -8,4 ; -8,6 ; 0,7 ; -0,52 ; FutureAP2286 ; 831c053bd9E6f3AB372d8feb6e5C5e1fc1c4AcCB07abD9A61584ACAecB5BBACc ; < dRL9ifJ9lq16y33603PR655982qgA8fd5Pf6CHJ9QY8YjbsoPkO08CHXjoecTYQf > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 33,8403101953302 ; 11,2569749806485 ; 2,00616375656017 ; 33,8400601953302 ; 33,8405601953302 ; -1,1 ; -4,4 ; 2,8 ; 9,9 ; 4,6 ; -7,5 ; 0,84 ; FutureJU2230 ; f0BACE65DEaAcbeE2BAe11F1DfB9C436DEeFE0CFFb627e31C9cAD0B46Eb3D657 ; < J8CXA01l6e69vSS2k332kBCAco8y3i87E63P07XkhU7fMH6Tr3Fi8ydCG7yQH9WL > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 34,601769428976 ; 14,3261293142326 ; 1,4152908765524 ; 34,601519428976 ; 34,602019428976 ; 1,8 ; -4,7 ; -0,7 ; 5,1 ; -9,3 ; 0,2 ; -0,8 ; FutureAU2273 ; ae1f2eCEca3bE9c7beAD6E2DEfA067648cFB4FC82cFE3FE20C51c606Aa3Dbda6 ; < NsuQi2A5z7P80v148XWjGt2slNtdk67H0FgCZD8LtaE6SQ2UaRS82p8xgI4EXc8x > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 35,1700998379458 ; 18,4528828160671 ; 0,905940670003223 ; 35,1698498379458 ; 35,1703498379458 ; -3,8 ; 2,2 ; -5,8 ; 0 ; -2,2 ; -7,9 ; 0,13 ; FutureOC2256 ; aDD1989D27DecDeb7C4efc50ADdBeFfA4c3fBCAa33dFdec4E5e4fAEe4cCEEA6a ; < gtX0v1GKO7UChPZ8j44um29TOLR7VEC4RM09Ep2Gsc1AV30mYamjVw2XJ21Yq1v7 > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 35,9979113231109 ; 24,058021366237 ; 0,496295592023635 ; 35,9976613231109 ; 35,9981613231109 ; 3,8 ; -3,3 ; -1,5 ; -9,7 ; 0,2 ; 1,9 ; -0,77 ; FutureDE2255 ; Bc9eE8Efa5C3beb78B9EACD5aD6ef3afeA449B503be9f9fD29CB2Ce7AC55AD6E ; < oDzs5y688A0zz1a857Gk9T86j7pElssR21o6K2RwAdnh6shKH7fLz32eJBFt1BS7 > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 36,5705504623267 ; 31,7439279634604 ; 0,152048684851546 ; 36,5703004623267 ; 36,5708004623267 ; 4,5 ; -0,9 ; -8,9 ; 8,1 ; 6,7 ; -8,8 ; -0,76 ; FutureFE2370 ; F0cC70Addcd0d7b112c4ED37b7f4Cd5D5D3EFC6a0fd9Caa9aafCDBAaDdEea0Cc ; < bj6v9Uh4wL91xEgaO8JbgE7UD7YZ3384t41yIBzT5CEYpqd6b6aYEhsZkREPzfDy > > // < CALLS ; 5Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 14,9973020011434 ; quote ; 68,7696516082759 ; 67,3942585761104 ; 0,0204081632653061 ; -4,2 ; 62,9242312215724 ; 74,6150719949793 ; -6 ; faA8EDbFde025EC5AfFc0AFecb5F6C6EdaaEf998Acc5DfcBdcbDa1cCCFbC5cFb ; < tQfSbv44P15ZOXvV7VC79RaOmc4hqLw318E85fW7TQ1YWS8IS6KC4i0XnOVHAUK9 > > // < CALLS 16,4970322012578 ; quote ; 66,0394899014161 ; 64,7187001033877 ; 0,0204081632653061 ; -3,7 ; 60,4261332597957 ; 71,6528465430364 ; -2,3 ; 1B4b71bBF8deabdceEBccFcfCe1E7aDCCEeeA3EDaDb8FA1B7b95CB06DFBEc87e ; < q4tt44c7hO71A0u5emsyFce04Tlu9YQ059p8Vt2c18Y770U0Fu24JlHr3W0NvTi4 > > // < CALLS 17,9967624013721 ; quote ; 63,4088182749812 ; 62,1406419094816 ; 0,0204081632653061 ; -9,3 ; 58,0190687216078 ; 68,7985678283546 ; 3,4 ; E3b730bbFFdd6cAa5ddCa5DfB13F8eAEFE1A7cFDeE2eBA3ED8BB23eCbc78de94 ; < 600H1A02l9QQ8s9a9pZ6ZtRw2ylHEhgudhYaM1IT5vO47MecnJwdSFeJ3Z4T31Zw > > // < CALLS 19,4964926014865 ; quote ; 60,8785228676813 ; 59,6609524103277 ; 0,0204081632653061 ; 2,6 ; 55,7038484239284 ; 66,0531973114342 ; -1,6 ; 8dBf1898d4FB89CADB46fc80Ace6D8aFcA2e4Fd9AbD6F6B977df42131ba910F9 ; < W86QIJ67CS3UgHay02E7vhD413DhXbD5JbKBxd5WXr8oTsRUG4v9vtZ9a45LYA8u > > // < CALLS 20,9962228016008 ; quote ; 58,4483243190617 ; 57,2793578326805 ; 0,0204081632653061 ; -0,2 ; 53,4802167519415 ; 63,416431886182 ; 1,8 ; cBb7c573d3493b13eeCFC0E27C5DaEcFceCF59a5abd0dabeaBfD40BfEb2c7F3a ; < 66941g3wne7QYMUf3AmtGxgV56q8B3K10uXZwMF6hg4yin73TFlDpK7vW9U7p39W > > // < CALLS 22,4959530017151 ; quote ; 56,1170355544163 ; 54,994694843328 ; 0,0204081632653061 ; -6,3 ; 51,347087532291 ; 60,8869835765417 ; 0,4 ; FF193a08Baf82BDad07ecbB1eC0c8F5f4A3cd3Dd0D2CA86dC0dAecCeeB8BCE67 ; < A17R75DRrcQhaqgbQtXzXtV6JkYw0pm1aTtvP7Bd8a2qn61lwpbLdQL14rL4Gx4e > > // < CALLS 23,9956832018295 ; quote ; 53,8827769498618 ; 52,8051214108646 ; 0,0204081632653061 ; -5,7 ; 49,3027409091236 ; 58,4628129906001 ; -9 ; BBECFEb658AbCCDe02aafd8AacE8D7EAB4BcBd5cDdb6e3AaB0BDCfbcbA2a0A27 ; < 15sW63I465U37x2bR06v2G98YWnqUIROZp8v1g7o6U5rZv4rJ55S40n04Si93Gyi > > // < CALLS 25,4954134019438 ; quote ; 51,7431529046748 ; 50,7082898465813 ; 0,0204081632653061 ; 9,5 ; 47,3449849077774 ; 56,1413209015721 ; 2,9 ; FFBce1c7dC1a523dF6FDceAb0f9BcEbfb1ad4dD6CCAcB22e0CbF0382A20dD3E4 ; < ZOESfdKnhaYO9b00Df1J6PtIB3Ro1kD9xzjm2gd8sdXHudT1E47FXRaCn1T98Gk6 > > // < CALLS 26,9951436020582 ; quote ; 49,6953949372565 ; 48,7014870385113 ; 0,0204081632653061 ; 5,7 ; 45,4712863675897 ; 53,9195035069233 ; 8,5 ; 531C6dCCEdfBfBceB63Ca7eEAabcf2F5ACc58cFAff64d8fAcdB5B8CB2A3bcBc4 ; < 5KGGvR70DXFbOUe5uR7c5628A7F71HMa416d38016YRYfm4o08y5edidr5sR3P9o > > // < CALLS 28,4948738021725 ; quote ; 47,7364764920315 ; 46,7817469621909 ; 0,0204081632653061 ; 3,5 ; 43,6788759902088 ; 51,7940769938542 ; 4,7 ; 48AbCffFf8Fc2a6a26D6Ed5698FF491Dc1d7FcaafcA5BA46AD8C85Daf12d337e ; < 18NlQ5Z9F812uuN6EzDER6Fo2c0nqXj5isVYgNhtXG127wtn734W2VH0IF11DLt9 > > // < CALLS 29,9946040022869 ; quote ; 45,8632042431598 ; 44,9459401582966 ; 0,0204081632653061 ; 2,2 ; 41,9648318824912 ; 49,7615766038284 ; -0,9 ; 40DdBB20dc2f0fE564CEaAD922ee8195FFf4D6bd348bDeD5Af0AFD1BEf15E4f5 ; < jnCOfY6YO55FlU5U7IRmuEAm5ms3677yEIL6idbTsAKSjV1Zy3pzsHn0kxj10Lz1 > > // < CALLS 31,4943342024012 ; quote ; 44,0722900961976 ; 43,1908442942737 ; 0,0204081632653061 ; -0,1 ; 40,3261454380208 ; 47,8184347543744 ; -5,6 ; d2E6bced5Dca6E2a83A0c13F78678Cd5fC587CfEddc98BBF3Acd19aAda1Dd473 ; < 8E4vfgGOI8IjODdFa4Zt9817F8307S67HshKVd5oaJvcic3yj7T59GX67XTYryoK > > // < CALLS 32,9940644025156 ; quote ; 42,3604074685174 ; 41,5131993191471 ; 0,0204081632653061 ; -3,2 ; 38,7597728336934 ; 45,9610421033414 ; 3,9 ; 9a6ce06497D6CcaAdDEBa3fCdA9Fb9e4A98A21Cfb5ff8cdBeF0cA0AA1dF14dcC ; < 6PVcfX3sCpRo9aIJ98J616m5910Jx0m7ZiIhji4p3TD07aa3Tzy9t1CKuM2t1bQ0 > > // < CALLS 34,4937946026299 ; quote ; 40,7242348442273 ; 39,9097501473428 ; 0,0204081632653061 ; 2,4 ; 37,262674882468 ; 44,1857948059867 ; 3,1 ; D12DfcF16c0c19A2037a8f498afDCdCaA3cECeFDbcdAdFdECa1eb63a2edBA1Fa ; < YocEeQq6H4TpDo1lP5m64zo1DZDr6j5n5HaDwWz2S03365rbaR22Eg3980k9m70l > > // < CALLS 35,9935248027442 ; quote ; 39,1604890792011 ; 38,3772792976171 ; 0,0204081632653061 ; 3,1 ; 35,831847507469 ; 42,4891306509332 ; -0,9 ; AF7ac8d69A8d9cdACacDDce4FC5FDaD6AfCDECBb7Dfede5ecEeaBCC5dDcBD58b ; < yfOn10BQ7TRMiu773yj2GnB15P43rPo388i6712IvOUGXN5FDZLdTzwf18745K02 > > // < CALLS 37,4932550028586 ; quote ; 37,6659504849378 ; 36,912631475239 ; 0,0204081632653061 ; -1,3 ; 34,4643446937181 ; 40,8675562761575 ; -8 ; ec0BbbFaDcEAAe3F235CAFbFFFEBf6B8C45366f5CC04A5E20a5BceC2A0Cf5Fca ; < 86S91OlUE3ER383f34cRR5cD608nX3ZpfXuv8wH53f0C4x0G80Ue9iN22nRYiQME > > // < CALLS 38,9929852029729 ; quote ; 36,2374813440611 ; 35,5127317171799 ; 0,0204081632653061 ; -3 ; 33,1572954298159 ; 39,3176672583063 ; 9,4 ; CEa3e80FDAA8aAeCCdDa8aE9e8bD0A6f79A5EfE8cB4738EA9bBfAedbdfebc3FF ; < t61iM968351733p7qV843r7RM4M5sbnzW59pr5AJ153hSC4pfspZ5vk8J1xSfuD4 > > // < CALLS 40,4927154030873 ; quote ; 34,8720391984027 ; 34,1745984144347 ; 0,0204081632653061 ; -8,4 ; 31,9079158665385 ; 37,836162530267 ; 7,6 ; 46CfCB62EE3bf4cAf230eF9169E8f03CdFbA6A6Fe5ade2721DB5dC53bd8B3DCf ; < 4M45347mOI214k0nR3Voa7I7kDqENWV5T0oZrET033IEnoVF0WRB5Zjm9sULOGse > > // < CALLS 41,9924456032016 ; quote ; 33,5666859942514 ; 32,8953522743664 ; 0,0204081632653061 ; -3,6 ; 30,71351768474 ; 36,4198543037628 ; -7,9 ; f4aaBED34ECD3fAA8BB8Fd1CcEF40aecdd47eDB10AffbeefCbcdDeCBF70d21Ee ; < 03JGsqp3L6WSaCPq70lH8VXrCX6pTW5fu3VBIgwkj4YDfCEq2OZp0NTO884ok8hc > > // < CALLS 43,492175803316 ; quote ; 32,3185939599338 ; 31,6722220807351 ; 0,0204081632653061 ; 8,7 ; 29,5715134733394 ; 35,0656744465281 ; -7,7 ; 2C1Ba95aE2F80CcE2EfB02c0cAADbedf52BdC5BB6d2567cda46fAe8e56dcc045 ; < ppE1ulFHpgSJNI52GM87RYGP4x3AjdG1T4Hbz2Y7Xdo55na37vO5YHUqLohn938d > > // < CALLS 44,9919060034303 ; quote ; 31,1250489205501 ; 30,5025479421391 ; 0,0204081632653061 ; 9,7 ; 28,4794197623033 ; 33,7706780787969 ; -0,3 ; E4EeAccdA7a1AdbA4Ca38eCA978b3cB4d76fFaf3b9DeaA2bc8cBAa6F4cFfFbcF ; < pNVQhY8ZIU8jg3L35Z5TMdm5ugz4El8e1A7Gs1KUNwRJI9980dBIruM3gaDI5K5W > > // // < PUTS ; 5Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 14,9973020011434 ; quote ; 1,45814086476824 ; 1,42897804747287 ; 0,0204081632653061 ; -9,7 ; 1,33419889126294 ; 1,58208283827354 ; 1,8 ; BBbc3ce9efEedecDfF98CcBCf9EBC2bE6ecc9fbDDCB372bDf2Cbed38bDBFA7fA ; < g6Buu13gjK6wRG19MlIkl6r8J96hOUZ41398365doqg8iyHa1775tnKM57SUdbHe > > // < PUTS 16,4970322012578 ; quote ; 1,99682808355766 ; 1,95689152188651 ; 0,0204081632653061 ; -9,5 ; 1,82709769645526 ; 2,16655847066006 ; -2,7 ; F5CBBA6e380BA3fe9dE8aAa4D4BeeAa130BaCA213cAFaF9aBB4cFd3D8eaCd35E ; < j7dq1K4UD6k7T2D51dsT8NHCJuGQ33bPh52tB2dk2mjzqK79SDok8Xwz25lWcEq8 > > // < PUTS 17,9967624013721 ; quote ; 2,63500538277204 ; 2,5823052751166 ; 0,0204081632653061 ; 4,8 ; 2,41102992523641 ; 2,85898084030766 ; 2,2 ; f8fa8AACeC1da3C05ecA8438FbE0FDAED2d2aBeBf469D1a3AfB1Ab20EeCFC7D7 ; < 72fJ7m0Vg6hq5juKmjLYPc7ix72FQS8R7u6GcoA61GR081AmK90o3xpntvko99zT > > // < PUTS 19,4964926014865 ; quote ; 3,37355890112138 ; 3,30608772309896 ; 0,0204081632653061 ; -0,7 ; 3,08680639452607 ; 3,6603114077167 ; 5,5 ; 5C60b4Bec53d1af96A9FADEDeC1FE772588cE5787C8BDD59ABEBe149eAaeCa4E ; < gVEfqG5IU81ZvZG3O6cwn1ZtIGJO2pqTUwiK1695DE0Rh4g48q5HZ57Ocl279W5t > > // < PUTS 20,9962228016008 ; quote ; 4,21220927815102 ; 4,127965092588 ; 0,0204081632653061 ; -2,4 ; 3,85417148950818 ; 4,57024706679386 ; 7,2 ; 034EfCc4aD0eC92Fc80beEbF9d48eBBDDc75b1dC0bB4CFc2FfBBac2b8dED4A88 ; < w1Y8vm86V08j3gyb73EnO174vNUv7hpD47V9AHOM7LiGZ8LS1A35Udnw40EUqwOP > > // < PUTS 22,4959530017151 ; quote ; 5,14976943915488 ; 5,04677405037178 ; 0,0204081632653061 ; 9,5 ; 4,71203903682672 ; 5,58749984148305 ; -4,7 ; C2CEC4F5aFBD9fDD4aE72C1fc4FcD7dB2B2AF2b5Ae61d8aCAAEB9eAc5CbbcE0d ; < v6nM5SpVHQG4uyk3C970nJ4C6l1c1w657Rsn32fjz33SQ3c5dTjiqffdLHM4Zp6r > > // < PUTS 23,9956832018295 ; quote ; 6,18435976024961 ; 6,06067256504461 ; 0,0204081632653061 ; -3,5 ; 5,65868918062839 ; 6,71003033987082 ; 3,5 ; 2aab0daAbfaCcd7Fb18Ff68bE007F077C3AEaD747AAaAEaAdAefeDAC6fEdC11F ; < 1lsOp7Z0O9K8b20z90cw5c1OqmjcaGtwI7q6gMWDdATLK64321PuI4b2l0OF0yH3 > > // < PUTS 25,4954134019438 ; quote ; 7,31358464071178 ; 7,16731294789755 ; 0,0204081632653061 ; -2,9 ; 6,69192994625128 ; 7,93523933517228 ; -5 ; 19cbe105AE48CE2fBa4aaA0D67E6d4C8fE00bB38fEDdDAFd7cf1cBC547Ba0Dad ; < wf9l53qtVUu694vVfSju5E6cpmpMI1eVNffxpGo9kn8pP51eu6Yi31iOCEc1Vntq > > // < PUTS 26,9951436020582 ; quote ; 8,53467559894273 ; 8,36398208696387 ; 0,0204081632653061 ; -9,5 ; 7,8092281730326 ; 9,26012302485286 ; 7,2 ; b618CfdEba8Ab8dDcA9fC52eC6dBa82FDeB6a56eFD8eEcBeB8aD9e5b05cdda1A ; < 338L2SSC7DrnL3wAmS5LCVKG6l751UvY8dXOWB39WE7wXNyZHc89t9jBSO6OXXF9 > > // < PUTS 28,4948738021725 ; quote ; 9,84460607936701 ; 9,64771395777967 ; 0,0204081632653061 ; 6,4 ; 9,00781456262082 ; 10,6813975961132 ; -3,8 ; f01Bb545aEE09cBDD4f38b31dcADcFFdB37eBCe2Fcb17e4d2B8B4aaAdEF1dddb ; < x1106AIx04C8ZP9CRl52ZY6w79W6He53Qn69SXN1DUHlHEKeTOBq4Rw7KZG439Eo > > // < PUTS 29,9946040022869 ; quote ; 11,2401827561445 ; 11,0153791010216 ; 0,0204081632653061 ; -8,8 ; 10,2847672218722 ; 12,1955982904168 ; -2,8 ; 6A24EEDf53ECEb56ad23fACF4cCC42d3d2E274c4ADc7c04acE7Eb029622C7f3e ; < O31Nmo8XJ3L3F0qY9kTCO32fL9v14m5UtkIFo3OJ1CVZ85qcWFdg37mQ1wCwJlK0 > > // < PUTS 31,4943342024012 ; quote ; 12,7181175348316 ; 12,4637551841349 ; 0,0204081632653061 ; -6,3 ; 11,6370775443709 ; 13,7991575252923 ; -5 ; C57Fafa6dADbD8C5be4debf9cd1f3a5d5cBDe2bCe5bbD2cDfBE9AEd80e9eDeD7 ; < SuWiv4pOj98ki7Pyj3GwavdA0T1IiyK98DQKz954O26NmXcaI7AHt2103m17SfKW > > // < PUTS 32,9940644025156 ; quote ; 14,2750838328006 ; 13,9895821561446 ; 0,0204081632653061 ; -2,1 ; 13,0617017070126 ; 15,4884659585887 ; -6,1 ; 7bcBebdBcFbc92B87ca6cdad2fF7AffF649fb3ebAa97cC0cD7B8EA15850b6CE1 ; < AruBgnd8nX7qhkt84Wj1up2Aaaif0U2Jw0lX690fjz7oIUP16og1fM33dfT6s148 > > // < PUTS 34,4937946026299 ; quote ; 15,9077601341598 ; 15,5896049314766 ; 0,0204081632653061 ; -6,7 ; 14,5556005227562 ; 17,2599197455634 ; 4,1 ; 8cb0DCBfFcFfeb6690CeA9c3AB6dbBbea5DE9b7aBDDF9CccfeF6b6C2Df2d7E3D ; < JgJ0gjFSaE01BtSfB7wuzMv5WBAX2PLwK1mBj82ALJWjI717fT9142gkh6Im67l2 > > // < PUTS 35,9935248027442 ; quote ; 17,6128632947828 ; 17,2606060288872 ; 0,0204081632653061 ; -0,2 ; 16,1157699147263 ; 19,1099566748394 ; 3,1 ; CFAaBD4Dd8A8Cd5fDCA2DDEbcEfF5bfD650eba8cddcf7FeAcc71aC1c3E867beB ; < n1H0756lEQ8wra5e1pZ5g84IP1yaUO7kXRbuDV90N8WcDV3lVqQqg4meZ19QPC0m > > // < PUTS 37,4932550028586 ; quote ; 19,3871736261687 ; 18,9994301536453 ; 0,0204081632653061 ; 8,2 ; 17,7392638679444 ; 21,035083384393 ; 1,4 ; bFd4A78aEdedBeCD5947eFCf5bA60efF98fE1fB14B97Bc30D1bE9ACcb7bBCD4b ; < 9rKA43zB0a8QEMEb24359lS76hbdCUtk3zH5O9ljV5P7vV5IhDNsAw8u5DepFf89 > > // < PUTS 38,9929852029729 ; quote ; 21,2275534109413 ; 20,8030023427224 ; 0,0204081632653061 ; 3,3 ; 19,4232113710113 ; 23,0318954508713 ; -5,1 ; 4e2cfDecCF2eCefBAAF25BDBbe4fe2EDEBe8E2bEDeEbcfCEbce3062A6D90AAe2 ; < aZ8vSX3598jn57NeRo3389nf7a439T5Xgzk9k1c9P5DMPJ9GF64WGsClL26da5tV > > // < PUTS 40,4927154030873 ; quote ; 23,1309601909321 ; 22,6683409871135 ; 0,0204081632653061 ; -6,1 ; 21,1648285747029 ; 25,0970918071614 ; 2,6 ; 4ba3C7cA19d5bffdeC26a3e0EFDB73333B27De1513E74bbfC2Da386490B8d4D6 ; < 099209P2vz53NDo4fQ5ogNvfTs0kOtZ0X2Gy1FByX45fJ052gShhsbKO4PphmqAx > > // < PUTS 41,9924456032016 ; quote ; 25,09445591243 ; 24,5925667941814 ; 0,0204081632653061 ; -2,8 ; 22,9614271598735 ; 27,2274846649866 ; -0,4 ; d21CBfad7E05cdaafcb08C3d6E8CBC639adA090DbbE1adDaED14f556abABBfAB ; < JuVoSlRdS5DxNlCN1fu1akXS8PvUYu52nxqsmzaqczOXv9B8uZ3ph4ZSZV4oeGHI > > // < PUTS 43,492175803316 ; quote ; 27,1152128037616 ; 26,5729085476864 ; 0,0204081632653061 ; 1,8 ; 24,8104197154419 ; 29,4200058920813 ; 7,6 ; 8beedABdb6daEcFEdCeeaA8d2d3C2Dc689AB08eb0AcdCd393BcecB5Ea20C0C9d ; < zIgzf5juco6E7onxRExuPV5NE8dsGeMk2BJIGEeMuBf4U3CsoA9K89Hu0p5WT593 > > // < PUTS 44,9919060034303 ; quote ; 29,1905166900272 ; 28,6067063562266 ; 0,0204081632653061 ; 1 ; 26,7093227713749 ; 31,6717106086795 ; 7,1 ; 4dcf3ed98AA4EDaDDfc2fdEA528a4E86f25A2dA06AcC21Fe9ae0C69670eCb1Bf ; < 19w8jOGGySgngC8Fnp2WtN5p8U6U08bnsn7jj4MVXB9qXW5v06qJum4ZzgVJ21sV > > // Futures_Mostootryad_org_spe // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 25,532252 ; 1,14 ; 21,3967122807017 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; EaE1cdcCdBeD9F8FCefEaBdECBB3bedf9df4fc6Fd43AcBcEaAC6cFB7A343dFbd ; < Nou64tvjg520NpCAk4oX2c4g4IY0ErM6nhK2iq5RL9kK6seXJaQeHHjekUcg8m3f > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 25,5308024722927 ; 1,1399259 ; 21,3968965634457 ; 25,5305524722927 ; 25,5310524722927 ; -1,1 ; 2 ; 8,7 ; 1,9 ; -1,3 ; -5 ; 0,86 ; Future52AP19 ; AFc7CD4493fCF25FE7aB1B1e2b6de79b6dECbE4eBae51e2171d4A7Ba05f8fFE1 ; < aKJ64k5LKFwjgMHIeLcGX9jNOICJ3ffmf7165963yO7YXRI6Kstc2lXL22KZ232I > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 25,8113589541883 ; 1,15385052700825 ; 21,3697596439229 ; 25,8111089541883 ; 25,8116089541883 ; 4,5 ; -3,6 ; 0,8 ; 3,7 ; -1,9 ; -3 ; 0,92 ; FutureJU1947 ; aCeaaD22BB5CaAF8c3a4cD4AEdC1bFeFAbfCbadAD4A48a6cEf1FFadca4BAFECa ; < s7dLc81vV6IJtF20onqF2K1z7ZI37Hg8GOUtbia6rGs7007E29hoZDfhjqz8S2f6 > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 26,1001923180004 ; 1,18200079592152 ; 21,0813661108004 ; 26,0999423180004 ; 26,1004423180004 ; 6,7 ; -5 ; 5,2 ; -5,7 ; -9,4 ; 3,3 ; 0,29 ; FutureAU1956 ; fEce5CDC0eBbF4E175fBaBDAbcF2FaBE6ffDe4aEe9dD5faA5Eb4bFd31f3D0ABe ; < 9d3lfS6T9rP4OdEgq2c1bx0fMz2AAoJnwry12n252RwgfEZRUNIF2EJ357mzo83O > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 26,4111035328828 ; 1,22548550318439 ; 20,5515430123442 ; 26,4108535328828 ; 26,4113535328828 ; -6,3 ; -1,6 ; 2,8 ; 9,4 ; -0,1 ; 8,8 ; -0,46 ; FutureOC1985 ; cCd6F759f17b283a0aaE8cbb66C8C06AF8bFCaA32AbCadF42FFDcffC237aEB0C ; < udPb7Zq4KQ9G294GrNb2Z9kSgK0HcNiKF8c7BR23PUZbl78OWM7N3pd46G1RP37k > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 26,7488112860661 ; 1,28599748360657 ; 19,8000494768072 ; 26,7485612860661 ; 26,7490612860661 ; 9,8 ; 5,8 ; -9,3 ; -2,1 ; -6,5 ; -0,3 ; 0,55 ; FutureDE1951 ; CE7eaaBEee41dCBdbbebB437CEFB26cEbBe6E3d5ac9BFaEEabBEdAfFcb096EAD ; < 1yxCIFJf3XPrcJu70iqDm94D71drHn2748ejpAOE591hXJ0zPA3tpC14C6B11IEx > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 27,0857998010053 ; 1,36590207084755 ; 18,8299719863508 ; 27,0855498010053 ; 27,0860498010053 ; 2,2 ; 5 ; -4 ; 8,1 ; -3,5 ; -2,6 ; -0,13 ; FutureFE2046 ; dac9F0E7AAeBfc1cCec8f3Dc4C87Ef1DfeCEC6eE145EDcd3E3daf075aEBd13fD ; < Si9mosnR4WrALM3OW1P35CkS07xth4VE05p3Qa7w8Y4U25p3G0c9g175i02ScKMx > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 27,4484475126 ; 1,46841302126465 ; 17,6925933746899 ; 27,4481975126 ; 27,4486975126 ; -7,8 ; 5,1 ; 6,2 ; 8,2 ; -5,9 ; 1,1 ; 0,41 ; FutureAP2037 ; DA464BDE2CeFfcbee56BB6F1Da5B8f37eaC4Fd54474BddAffb1eAfdfA1fEDB3D ; < JSP8a8f546lA9fjgUT1r8FHiiGFI5v0iOfmxbjnlqAH4AgDvge4eH59eOY4dR2N9 > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 27,8016134648767 ; 1,59759791601377 ; 16,4021342831028 ; 27,8013634648767 ; 27,8018634648767 ; 3,2 ; -0,9 ; 5 ; -9,8 ; 2,1 ; 2,5 ; 0,02 ; FutureJU2083 ; BAC02CBBC3Ba8CEADdbfebeD1Be53ACF5EB6bbCA3ac1fFF29ECffF7BFe3D4E5f ; < W4ErEdX0Ph16if6F49h9OM947ZP12B24N2kZv7HZw5JJd7fwKe7Psw1IU7Fcjc16 > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 28,2222823466999 ; 1,75931283644776 ; 15,0416509002934 ; 28,2220323466999 ; 28,2225323466999 ; 6,2 ; 4 ; 3,1 ; -4,2 ; 5,3 ; -5,7 ; -0,7 ; FutureAU2051 ; 2BBeA6F41feb6Fcbfd866eFe6FDc2Eaa5ca3EB091dB5CacD5f2eD8B9DF5C99dF ; < nJ7ftfHxsLF1k02y7Yf7d314Iue0A1Lv0O78I23M1z3lBFOgcx9n3U81FHfY5Ew4 > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 28,6256762191096 ; 1,96090321002745 ; 13,5982096784414 ; 28,6254262191096 ; 28,6259262191096 ; 0 ; 2,7 ; 2,1 ; 1,6 ; 6 ; 9 ; -0,12 ; FutureOC2014 ; FdafaefFFC3af788EcfcCfBab493D370ECaEeCB29Ac2d6aC3CdD2a9bdd5dFeaC ; < Ike4M7iPysylSnSpkonYLF0w070TH4v25bS5P5Jigu316slel3qQp5ex8NA5RMuQ > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 29,038821971005 ; 2,21198429177177 ; 12,1279512603344 ; 29,038571971005 ; 29,039071971005 ; -0,3 ; -9,5 ; -8,7 ; -5,5 ; -0,7 ; -0,8 ; 0,85 ; FutureDE2069 ; eB6Bf0d2a8dc3bedCaea41919Ce3DdABFfb22623ddaaBfdEeB9Ae3aE44e1B7eF ; < 62zR89249eEi1T5Ke55aW6N47DFAwYpzH7627HbBeFb74bs822Ok2H4rYa17DzEl > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 29,4896977716925 ; 2,5254099698645 ; 10,6771922672321 ; 29,4894477716925 ; 29,4899477716925 ; 9 ; -9,3 ; 3,2 ; 7,2 ; -4,1 ; -3,9 ; 0,28 ; FutureFE2143 ; 7a18D2ebc7aF1BAcF19B1F46DFaBBB2DEbC8e8fCbC09dBeACaeFC4d7CEEB0CDD ; < 8WI2NE4uG1qhrUc435Z1y10Z14471N7Zu4wYvMGpvl3D9AxMM1mt9NG5YPZwJgLx > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 29,9946040022869 ; 2,91851528577361 ; 9,27735031866939 ; 29,9943540022869 ; 29,9948540022869 ; 0,8 ; -6,3 ; -5,5 ; -0,1 ; -7,2 ; 2,6 ; -0,71 ; FutureAP2166 ; Cd62Fe6FACfAb1FE12E7D2d1Cae4BBDe2CeefcDedFFf2C05CFFCeBC1224eDccD ; < By61Td7JKq2obrh6x1z0g5rgD443N9NK1r9M2a9BYfJ11KpGxzdz7deWZI783ZLj > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 30,4848583948223 ; 3,41384729603948 ; 7,92976625820051 ; 30,4846083948223 ; 30,4851083948223 ; -3 ; 7,4 ; 2,5 ; 8,5 ; 0,6 ; 2,3 ; 0,39 ; FutureJU2157 ; DA88BCECba78D3daBf9C0caFea7FbB2ca2Dd2C6cFBcdB1B3c6DBdcF5Fa26Cb9c ; < 152UefMse40fgcu0Joado4ItISSaaQcCG05oHjiHWy981I5eY76tforR1XEqWHes > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 30,9894653608081 ; 4,04125107287478 ; 6,66828509339893 ; 30,9892153608081 ; 30,9897153608081 ; -3,5 ; -5,7 ; -4,6 ; -2,3 ; -1,6 ; 1,8 ; 0,33 ; FutureAU2155 ; BbA5fbF9eef34dDFBFAaDAE0dEcFDDdDFacCEee55AbFDfB85C6c6b6fECbD807A ; < k6KeHI44PaWVBdIzpGEYh8OHS90WRVyBIeYt38YpL37ZT77LR6Ayn8Qi84A8dU75 > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 31,4612656901512 ; 4,84209974397795 ; 5,497442711559 ; 31,4610156901512 ; 31,4615156901512 ; -4,9 ; -3,4 ; 6,5 ; -8,5 ; 1,5 ; 0,9 ; -0,29 ; FutureOC2166 ; bD2f4B659Ea0fC3AABFaefeFDeDeAeCC5596abbebB92ecAe6Ba04CAc33cb0fDd ; < 11jZRTtjHMhGeFT73ix4oy6TV42S7Z1oYZXXaiuChDh2Fz5oy4LGwjOudgSU06ag > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 32,0792449728395 ; 5,87166600220089 ; 4,46339743452969 ; 32,0789949728395 ; 32,0794949728395 ; 9,1 ; -7,5 ; -8,7 ; 9,3 ; 2,5 ; -7,3 ; 0,54 ; FutureDE2199 ; 4abA0ECDCaacACD10faCA2C3CfCeecE3ebcEfbBfCbFD1EE9BdcCEFb56dDc4FFB ; < dQtbuZm2G8oVF87RI6mq15S82a07Bc9mZ95Y5bQA2pVG2M3JEXLM8H3CdSkpWq0e > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 32,5827401162094 ; 7,20669966719837 ; 3,5211735774853 ; 32,5824901162094 ; 32,5829901162094 ; -4,1 ; 4,2 ; -0,7 ; -3,3 ; -4,5 ; -4,1 ; 0,5 ; FutureFE2254 ; Fd8eBFCd4acbcbF9b7A8C160Aaead10201a0Fe9DebD9833EEA5bB1aac7cABBb1 ; < 623F71y2Iw3Q3Au8cIie0hTs80t959A955iH4t45NH99C0ejl89zY8QGM2n9h8G7 > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 33,1898567754601 ; 8,95242807364405 ; 2,70735810468794 ; 33,1896067754601 ; 33,1901067754601 ; -2,2 ; -7 ; -1,1 ; -8,4 ; -8,6 ; 0,7 ; -0,52 ; FutureAP2286 ; 831c053bd9E6f3AB372d8feb6e5C5e1fc1c4AcCB07abD9A61584ACAecB5BBACc ; < dRL9ifJ9lq16y33603PR655982qgA8fd5Pf6CHJ9QY8YjbsoPkO08CHXjoecTYQf > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 33,8403101953302 ; 11,2569749806485 ; 2,00616375656017 ; 33,8400601953302 ; 33,8405601953302 ; -1,1 ; -4,4 ; 2,8 ; 9,9 ; 4,6 ; -7,5 ; 0,84 ; FutureJU2230 ; f0BACE65DEaAcbeE2BAe11F1DfB9C436DEeFE0CFFb627e31C9cAD0B46Eb3D657 ; < J8CXA01l6e69vSS2k332kBCAco8y3i87E63P07XkhU7fMH6Tr3Fi8ydCG7yQH9WL > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 34,601769428976 ; 14,3261293142326 ; 1,4152908765524 ; 34,601519428976 ; 34,602019428976 ; 1,8 ; -4,7 ; -0,7 ; 5,1 ; -9,3 ; 0,2 ; -0,8 ; FutureAU2273 ; ae1f2eCEca3bE9c7beAD6E2DEfA067648cFB4FC82cFE3FE20C51c606Aa3Dbda6 ; < NsuQi2A5z7P80v148XWjGt2slNtdk67H0FgCZD8LtaE6SQ2UaRS82p8xgI4EXc8x > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 35,1700998379458 ; 18,4528828160671 ; 0,905940670003223 ; 35,1698498379458 ; 35,1703498379458 ; -3,8 ; 2,2 ; -5,8 ; 0 ; -2,2 ; -7,9 ; 0,13 ; FutureOC2256 ; aDD1989D27DecDeb7C4efc50ADdBeFfA4c3fBCAa33dFdec4E5e4fAEe4cCEEA6a ; < gtX0v1GKO7UChPZ8j44um29TOLR7VEC4RM09Ep2Gsc1AV30mYamjVw2XJ21Yq1v7 > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 35,9979113231109 ; 24,058021366237 ; 0,496295592023635 ; 35,9976613231109 ; 35,9981613231109 ; 3,8 ; -3,3 ; -1,5 ; -9,7 ; 0,2 ; 1,9 ; -0,77 ; FutureDE2255 ; Bc9eE8Efa5C3beb78B9EACD5aD6ef3afeA449B503be9f9fD29CB2Ce7AC55AD6E ; < oDzs5y688A0zz1a857Gk9T86j7pElssR21o6K2RwAdnh6shKH7fLz32eJBFt1BS7 > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 36,5705504623267 ; 31,7439279634604 ; 0,152048684851546 ; 36,5703004623267 ; 36,5708004623267 ; 4,5 ; -0,9 ; -8,9 ; 8,1 ; 6,7 ; -8,8 ; -0,76 ; FutureFE2370 ; F0cC70Addcd0d7b112c4ED37b7f4Cd5D5D3EFC6a0fd9Caa9aafCDBAaDdEea0Cc ; < bj6v9Uh4wL91xEgaO8JbgE7UD7YZ3384t41yIBzT5CEYpqd6b6aYEhsZkREPzfDy > > // < CALLS ; 7Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 16,5949283877301 ; quote ; 75,8293220185812 ; 74,3127355782095 ; 0,0204081632653061 ; -1,4 ; 68,6255364268159 ; 83,0331076103464 ; 7,4 ; D3a9cb07b5F2Bdacb2a359B5DCaaabE47AeaE4a5f8bf3Bd483befA7D9DccF9FC ; < 1KNRpL805455DJu0908j3N8633wXEcY2nWL3MFPJxL109aumyqbLz9TyzO4i2a2h > > // < CALLS 18,2544212265031 ; quote ; 73,7322794357713 ; 72,2576338470558 ; 0,0204081632653061 ; -8,4 ; 66,727712889373 ; 80,7368459821695 ; -4,1 ; 1a9faE3a6bE9bdeE703CFDD1794FdbEDEeBCf4d4EEeB789aFB2AaD87ec1dF70e ; < 6Z2E9062wuXlQ6GV2GDXBS4U9BR2HO85OnQrcl7yF1M0O5Qq0V89J5yU9HXmU7XJ > > // < CALLS 19,9139140652761 ; quote ; 71,703437256091 ; 70,2693685109692 ; 0,0204081632653061 ; -3,5 ; 64,8916107167623 ; 78,5152637954196 ; -0,2 ; 06750DAbfFa8124F9ccEEd7e27D33cCcff77EaFdE8DceEA7eE3CAAdB59D08852 ; < qZ7CM8zHvEs7aMu8725L3KKM3THgaNR862l6ecl5uS2C9KavOGWw3I233lc64Xw8 > > // < CALLS 21,5734069040491 ; quote ; 69,7418885557811 ; 68,3470507846655 ; 0,0204081632653061 ; -1,7 ; 63,1164091429819 ; 76,3673679685803 ; -2 ; 94e220Efa6BEd2cbcA5AAbEaaBfF863efA27bF4a1cC5cB0FA5cCD7DAcaC0C8f6 ; < 65Crd2p9hx0w3rf7r04105X06m4323om1z09UdA7aSOMrPUyMRhB79UZu7nHy2sh > > // < CALLS 23,2328997428221 ; quote ; 67,8463197897546 ; 66,4893933939595 ; 0,0204081632653061 ; 8,5 ; 61,400919409728 ; 74,2917201697813 ; 9,2 ; fE03aDEadFabdAd55fD72db2Bd548Af544aAb353B2DDf9FE4d8E1Ea1c4d4b4c3 ; < q8LF1Lw1Gk57ijMOEXF0uBAA083FE10a47vtwE3BjuwCq75yWy8BViOW77UP92Ja > > // < CALLS 24,8923925815951 ; quote ; 66,015129686744 ; 64,6948270930091 ; 0,0204081632653061 ; 1,7 ; 59,7436923665033 ; 72,2865670069847 ; 9,8 ; c23bcdCacc6CAF5Aee8AbDC5DbA75fDCeb237Ecb095fCCbB35689fcfedc4df67 ; < 7LZ3r8I2A7t7hx86YQt66tCtpO68ZHSExnL64hE0bO2RouR92e9Lp7oCumU66023 > > // < CALLS 26,5518854203681 ; quote ; 64,2465199791314 ; 62,9615895795487 ; 0,0204081632653061 ; 7,4 ; 58,1431005811139 ; 70,3499393771488 ; -3,7 ; ec3BBCce75dcDEeFEAed40eFA9Db36Bbe539bd3AbecBdEb83df6c6dC92E58C5d ; < mPrBevWEd17p4LByuRbdp043y15MyvxvpFm1y1SnT0HvJA4f1oDx70OnYvh15376 > > // < CALLS 28,2113782591411 ; quote ; 62,5385644631442 ; 61,2877931738814 ; 0,0204081632653061 ; -1,5 ; 56,5974008391455 ; 68,4797280871429 ; -6,2 ; cfeeCa3c0c4A7c8fD8aBcB52D75b7CF64352c2c87E5b0ab4ADEcDD99dA7cfcE0 ; < IR2a9uoJW72heLokKnghu8g4j4JM1N112IdFUy2HIS4Q2D93T7dREps7h4O7ZVob > > // < CALLS 29,8708710979141 ; quote ; 60,889261411245 ; 59,6714761830201 ; 0,0204081632653061 ; 0,6 ; 55,1047815771767 ; 66,6737412453133 ; 5,4 ; cBfBde6DA3Af3FadCCcFEcDBBFFC2DeECBBbB1a4662D45c9dcbAaf38e5ce4b0F ; < hL46ylHbD3ZrBs2Pv72Txdb7QDWJkd143MmaX4z9AD6RA18I8FzSd01o7RyB6XHC > > // < CALLS 31,5303639366871 ; quote ; 59,2965731937061 ; 58,1106417298319 ; 0,0204081632653061 ; 7,3 ; 53,663398740304 ; 64,9297476471081 ; 2,3 ; b9Bbac3CDC8B9aff0ED6347FE84f8Ec55207CCb9dFA1AB2Ea8803D4bA8E2EB82 ; < U3j9HR857pFCx4QY02EQ3Qq32ggMNNkmKc31T1w0oC6Nm8w10uSZQvbVIIL76IoT > > // < CALLS 33,1898567754601 ; quote ; 57,7584560648362 ; 56,6032869435395 ; 0,0204081632653061 ; 4 ; 52,2714027386768 ; 63,2455093909956 ; -3 ; B3d1aBEe5eDaAED16fDECCb8e009fFB7AabA8BAEA1aBacaCFfCcDAaA5daAF5b3 ; < 7DxqFF94jjgRDzKXNf7P4FQdy14y0a5FYd0Pwr2LJiOQKA9oihDe4wq1qy5ci3y3 > > // < CALLS 34,8493496142331 ; quote ; 56,2728823786395 ; 55,1474247310667 ; 0,0204081632653061 ; -9,6 ; 50,9269585526687 ; 61,6188062046102 ; -5,9 ; DAEEbF4Bf4DB0c8d8b9608c3FAD61cCa8f29b8FAaB1aa4DA40fdbAB31E5a7f5D ; < 30r1W4RV2Vb7vw5Ok6KSun0D7p5ZkTWy1h259DHfCZX12yf2lrg6Z55FM0ASu571 > > // < CALLS 36,5088424530061 ; quote ; 54,8378569718335 ; 53,7410998323968 ; 0,0204081632653061 ; 5,8 ; 49,6282605595093 ; 60,0474533841577 ; 3,1 ; D3bd6aFffEAcCcED6fDC652b1aBEF90dEaFcc02DFcbbf7C5a8FB6D2c381B8dCC ; < ZNB1ab01acCt34y0oJCzS7uaZhT8uN353eg3kNB5m67pD9F81LQY3LP15YkM7q5t > > // < CALLS 38,1683352917791 ; quote ; 53,4514290506786 ; 52,3824004696651 ; 0,0204081632653061 ; 2,4 ; 48,3735432908642 ; 58,5293148104931 ; 6,5 ; b0EBEcAD6CF0a5233bE9fdfE8e47dAd8be8d2b6b69BfF3ABdBE9aeAFBEFc0BaF ; < 311jfupP5PpSBxxqXzG141so7JbTBtAoTEiZO4WYX4r5zzWF5Xs5QNGucJo3jncQ > > // < CALLS 39,8278281305522 ; quote ; 52,1117006118506 ; 51,0694665996136 ; 0,0204081632653061 ; -2,7 ; 47,1610890537248 ; 57,0623121699764 ; 0,3 ; 65CE9aEEAdb25F3fD9eC61afcbdACE10CAF035DcC7556D2DAdF3DFf35CDfAD0F ; < 1GIkNBRf2tb3dYlYa4Y85M84F5kR3bkcPsx6NhyX9Fj5XizVbl626c0iK6L3jA8i > > // < CALLS 41,4873209693252 ; quote ; 50,816832193542 ; 49,8004955496712 ; 0,0204081632653061 ; 0,3 ; 45,9892331351556 ; 55,6444312519285 ; -4,7 ; Ba6CEb9eD3BbeA6b96d6cc34dd3EBC9e3D58bDc568aa868a4DacEcdb6FbdeFb8 ; < c82FsS7t06q5BAIB2Yd7AE56DjtL46Rm0txK41od8F2ZaQzNaNzFd3UJIl3ruDSJ > > // < CALLS 43,1468138080982 ; quote ; 49,5650465736045 ; 48,5737456421324 ; 0,0204081632653061 ; 1,4 ; 44,856367149112 ; 54,2737259980969 ; -1,9 ; DAaFe2ad5DcEFB9Fda1cb05AAFEEC5aaCCedBCcacEC3a7FAe60eDb4ba1E8b5d8 ; < 4Ps4L71NmFTv23pT8a7h29v6ramv2s2sb89kAXZ89G9zdi58rF1gg04da479w4VI > > // < CALLS 44,8063066468712 ; quote ; 48,354630893647 ; 47,387538275774 ; 0,0204081632653061 ; 8,1 ; 43,7609409587505 ; 52,9483208285434 ; 6,1 ; cDca4b267e029F68Ef196fc79a211EeAe16A9D2aC8e4F0AdaeddfFcaC9aFC814 ; < 9Q81Ypl44d4McLe2Bi7rcA3xkJbHii2YwTR7s55jyaM7ejPBrwudOY8y4JOnea1I > > // < CALLS 46,4657994856442 ; quote ; 47,1839375816582 ; 46,240258830025 ; 0,0204081632653061 ; 5,2 ; 42,7014635114007 ; 51,6664116519157 ; 7,5 ; D58dC9aEA5279EBbca48fdafc5AaABABdDF856F61CfDdDFeAd6Bd55d1C1FDA9C ; < xS539a310eXRkAD6zCpYkSmJ684BE7s5849EqdORVHTR5wH249Rhmaamo5265D2x > > // < CALLS 48,1252923244172 ; quote ; 46,0513843634353 ; 45,1303566761666 ; 0,0204081632653061 ; -0,5 ; 41,6765028489089 ; 50,4262658779616 ; 6,2 ; ADfe7ee6DBdE333f3AfDffaeEafBEDF5EEd2f1C01ff70bCeBF1dD1eEe7e7A3Dd ; < 3gy7NDD33g9lT8Y6RJ62w4tg5xd5GED1Qm7ZPUdbl4r06N3GpY24Dly94mE2x4D3 > > // < CALLS 49,7847851631902 ; quote ; 44,9554535892403 ; 44,0563445174555 ; 0,0204081632653061 ; 2,5 ; 40,6846854982624 ; 49,2262216802181 ; -5,7 ; ABDeaf16DeB8fce4Eb858c683e6Bd578FdD0Ec9BE251B96aBFacddB43efdEBe1 ; < 4i3lwY6B03D62x963ssRQK211S14u4Z0P9nLb2ZcgkFM2b18an0obko67G48FA32 > > // // < PUTS ; 7Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 16,5949283877301 ; quote ; 1,54299840391275 ; 1,51213843583449 ; 0,0204081632653061 ; 0,5 ; 1,39641355554104 ; 1,68958325228446 ; -6 ; adfFdbC88D407BebAdFb586fFdfcfBfcf2d6E8456d7ffFB33Ea8dC8AD7F9CfCc ; < 8615wm4mli8vpfB06KbWrv2a3JNJFr8kiZOf6P70fYPhWajwCf82THhgOC271yr2 > > // < PUTS 18,2544212265031 ; quote ; 2,017323459636 ; 1,97697699044328 ; 0,0204081632653061 ; 3,7 ; 1,82567773097058 ; 2,20896918830142 ; 9,3 ; 9cDF9cA68B1eFfbaFa0ebdBB7BEbe359ec4AECEB7D074F561e43dbd4A2DeCFCC ; < Uf0U0vSK52r4e1vGbW3l687w98NbAB686IWOs79W4W0GnTA1ZXFW0YxYfbxB5EW3 > > // < PUTS 19,9139140652761 ; quote ; 2,5598489184889 ; 2,50865194011912 ; 0,0204081632653061 ; -7,2 ; 2,31666327123245 ; 2,80303456574534 ; 5,1 ; 17D6dCBAffDEB0B2f5CdAceFBdf51BCaFCF6faeb5AEDbAE7C5BCCbfaFe2aA320 ; < kgbj3194GauMZlTscr7966Qpo08G3YqVp7SFXMYk79lur59dH9f0E131c4ASGP7A > > // < PUTS 21,5734069040491 ; quote ; 3,16966785671218 ; 3,10627449957794 ; 0,0204081632653061 ; -3,4 ; 2,86854941032452 ; 3,47078630309984 ; 5,5 ; cfAACbAD8ccB4adfCf8b8bD2b10Fc3ea3C66eCE0aBDaccFFDCeaa2F58bBB8EAc ; < rQ0cw823iejM026OeUFn178RBKGHo3K0XKlnz4A2681DDbjNtcOAZ79cSi7zNL9D > > // < PUTS 23,2328997428221 ; quote ; 3,84546672921888 ; 3,76855739463451 ; 0,0204081632653061 ; -1,6 ; 3,48014738994309 ; 4,21078606849468 ; 7,9 ; 19A490B7BDD0A2c73AaEe5EFa7d9eB6147fDfdAFfB78d6a3a5FC7Efa0A47bEdA ; < 6G9q46oFnTbwegYE4mVnO3aL4OJysz8Du7sQf4xa97vkeZC5KjK2oUT5aN6qUhDQ > > // < PUTS 24,8923925815951 ; quote ; 4,5856442647414 ; 4,49393137944658 ; 0,0204081632653061 ; -1,5 ; 4,15000805959097 ; 5,02128046989184 ; -4,4 ; BF2Fe5EeBb4CBfecBD25acEBC36C7c366F5C4Febda8f0aaDf0D31C2fB3cD1a6b ; < LHA3nNAPJXFFc0IPFOnpn8Kzg46J923J77JE62X26wqTv3ImId3ZxtY4W81a3zwP > > // < PUTS 26,5518854203681 ; quote ; 5,38840219566191 ; 5,28063415174867 ; 0,0204081632653061 ; 2,9 ; 4,87650398707403 ; 5,90030040424979 ; 5,2 ; BF8375FC0c526AbdC1D73ebd2cdD8aeabB3a6dC5aFBAb87aacf7DfFFfEa2EeAC ; < u1U01Oo7v23uIXgHxAwVE67Hi4956fiJGrFNEuX46I7800EgPipSI2n9ObvdKsrM > > // < PUTS 28,2113782591411 ; quote ; 6,25181431820796 ; 6,1267780318438 ; 0,0204081632653061 ; -7,5 ; 5,65789195797821 ; 6,84573667843772 ; 8 ; 5D8DCF9eBb8E1EaECEd4c45A7D10AACAaAC00Af88AC1dF2DECBC7B12A667BDaA ; < b44g1701q3ZfrKdC1QzrEmv1SJI0q58833pXGmA8jw6ZZ5lYXsf43kSDr6Qc0OKZ > > // < PUTS 29,8708710979141 ; quote ; 7,17387890484187 ; 7,03040132674503 ; 0,0204081632653061 ; 3,7 ; 6,49236040888189 ; 7,85539740080185 ; 4,2 ; e09E1Fd29eFdC7301AAFAdE2CdEadEedCDEcaEEa50dC0cd92b84b1CFEA10BcF2 ; < J93H81fP4l37v02kLDeWd06WB9J6js5WXK77hri93oRcFq7268z7q8anyYPO1d26 > > // < PUTS 31,5303639366871 ; quote ; 8,15255832583608 ; 7,98950715931936 ; 0,0204081632653061 ; -5,7 ; 7,37806528488165 ; 8,92705136679051 ; -1,5 ; E7Bd59Fbaee66FccCAcCd6fE1DCcf50B3D45bc3CDBDfb7Cfc85725bDcDAaa1f2 ; < jxt5RfFdc43Jdh6dJ04Vl6m7yrkc0uTXXBP63a95R4j9e83i9ETLj2dGKUm30NKf > > // < PUTS 33,1898567754601 ; quote ; 9,18580883549939 ; 9,0020926587894 ; 0,0204081632653061 ; -2,7 ; 8,31315699612695 ; 10,0584606748718 ; 2,8 ; fb2A31fEBe4F24ecFeF024ae7DfcA19BB831C3aFfC4eDcbfeCac9CAFCBB9CEc2 ; < eR7Ik3cq1264javys20Vk2SKm5sdcKz09dgTSqH19SF8zJSiF4ePQpQq5zL7Gu5X > > // < PUTS 34,8493496142331 ; quote ; 10,2716027878358 ; 10,0661707320791 ; 0,0204081632653061 ; 2,6 ; 9,29580052299143 ; 11,2474050526802 ; 6,2 ; bfdbCd1c9FCdeBB1FD2dDaa1B0CFb4E5eE02386fFAfFb99a0B9Ae23Abcd7cd61 ; < fQ4DzM2y5JEf4fUXoWMu741G1949Mh1lf68NfG98ugj0h7gzvy4gwgagyvKjo2m3 > > // < PUTS 36,5088424530061 ; quote ; 11,407945019563 ; 11,1797861191718 ; 0,0204081632653061 ; -2,9 ; 10,3241902427045 ; 12,4916997964215 ; 9,4 ; f9ec19C3e0cb1BB1eeDe1aBceE4FEeF9BBAbCEcfba801dEE15A08EF2AdF02BF2 ; < s13jFqOCpnCaD132aBfO845s8w7h97qFFi5d34pzk6kCLT3NBVtC612E5R2uuQOW > > // < PUTS 38,1683352917791 ; quote ; 12,5928847369413 ; 12,3410270422025 ; 0,0204081632653061 ; 4 ; 11,3965606869319 ; 13,7892087869507 ; -0,9 ; aeBcdfa9Dcd780F9fFbfbac57fCA745FE5f44DAfFCEacBdF3C7c9dbddF2fbc9C ; < 3N81NAPwIqLd0rf54qp1TvMujo0t9a8wiegzuvZ59AYtbMMUoA9jd1aiT86J1mF9 > > // < PUTS 39,8278281305522 ; quote ; 13,8245239366464 ; 13,5480334579135 ; 0,0204081632653061 ; 0 ; 12,511194162665 ; 15,1378537106279 ; -2 ; f1fD3acEA94c6aaF36F2cE200F8FfAE3a88a31cedbcD864A85AebEa06aAbA7dC ; < 6NTBD4T2Uy80yy6ARh879eu24atV1kbyGpNH33m81e6b7TrtDketEEUZzrvpVsZo > > // < PUTS 41,4873209693252 ; quote ; 15,101023156871 ; 14,7990026937336 ; 0,0204081632653061 ; -9 ; 13,6664259569683 ; 16,5356203567738 ; 9,1 ; C0EB1dAeBe8aB75DeeAb0dB5CbcEAcbf1bDD1d2adeFb3BCcCEbe1E6D4dDeBDCE ; < ouW52MZyS7n4wBYP73GnnDelNv9CKr3lLQ6WZ3zjzBB51i86V4TkS5wf9C34l245 > > // < PUTS 43,1468138080982 ; quote ; 16,4206051754666 ; 16,0921930719573 ; 0,0204081632653061 ; 4,1 ; 14,8606476837973 ; 17,9805626671359 ; -0,2 ; c59FE0E4c0f1D1DBcA6EF6BBc2Abd5EcCFC1CA0FbBAcA3DA519ef3EecbfEaaBA ; < IFzvPBbbZ8KxPLxd6yPv95Nvj5rg9o7ZG9w2VwjRl8CEQ920RW8nM15H2O78cFzg > > // < PUTS 44,8063066468712 ; quote ; 17,7815571340423 ; 17,4259259913614 ; 0,0204081632653061 ; -1 ; 16,0923092063083 ; 19,4708050617763 ; -3,8 ; 5a1b4CFebEFeD8e5f8Dcc6AEeAaAD60DEFABa8c7EdA829efba262dcf15E5a2eE ; < KNp2r9Dn4S9yRGAXtkQfo52H2He377e49u1TFzxPI89zCdq3pLk3mOqdq7Um7kUZ > > // < PUTS 46,4657994856442 ; quote ; 19,1822314605867 ; 18,7985868313749 ; 0,0204081632653061 ; -7,4 ; 17,3599194718309 ; 21,0045434493424 ; -3,9 ; 0fb24022Dbe3E146F4A53Bc5CFCCF3014DeCee8CDDbAd3Ab2DCCAaAce3Ca65ec ; < q2ptOwSoMUuDBlWcigeMRVOnhh3Iw3SH2GL7WGV6jGspXNZ7H35354L24b7jpwjK > > // < PUTS 48,1252923244172 ; quote ; 20,6210458808969 ; 20,208624963279 ; 0,0204081632653061 ; -2,1 ; 18,6620465222117 ; 22,5800452395821 ; -8,1 ; A70FcB3fe3AFC2bced9C7BAD3CcbEB64Cb4cCFeFf4A8d0c0CE3CADE8FCD8D13a ; < aneuc31xiP8quiPfRA9bvMR594Kvaq5Y78c4v0qlzqj9XtJ8ST3Qs3Uou3ibSd6v > > // < PUTS 49,7847851631902 ; quote ; 22,096482745235 ; 21,6545530903303 ; 0,0204081632653061 ; 8,7 ; 19,9973168844377 ; 24,1956486060324 ; -6,5 ; 0d6dCcd60EFE1dA29d9AB17BF4a4E23CBcBEaCc28EeABD469e00cDfCA5cefdc7 ; < 40sSUud2u8qO7xYer6l31TsYEhFl74XTG64ZBrRivIVCk5JF2M3ShNtbhXS282ru > > }
contract CCD_EUROSIBENERGO_20190326_6 { mapping (address => uint256) public balanceOf; string public name = " CCD_EUROSIBENERGO_20190326_6 " ; string public symbol = " CCD_EUROSIBENERGO_20190326_6_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> // } // Futures_Eurosibenergo_OJSC // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 45,759312 ; 1,14 ; 39,139747368421 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; AB9CCC1F4374F3f8354EecaDA1DBb5EC4DF552Cc9F0376c3E9EaffcfEE3aefCA ; < dhZZvf0L571c01a7t6d069KLZUw9HWI7D19kizRBKsjfF77zeuBMr2H5oQU2s1gJ > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 45,7595117944225 ; 1,1400057 ; 39,1397219280767 ; 45,7592617944225 ; 45,7597617944225 ; 0,6 ; -7,5 ; -3,7 ; -6,7 ; 9,6 ; 9 ; 0,96 ; Future47AP19 ; 56DD5f4f6CBaa83E3ae5aBea0de9fE8fF2BCbdB1c767ef58f9ab8B7f55BdfEfC ; < jLwe0Fc70P2rGvTr8N21Wga0pnnwzwG3qIJ3qH1m8Mvf4Wz669P0CNZa3kySoVvu > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 46,2648465541608 ; 1,1539244617613 ; 39,0934793283992 ; 46,2645965541608 ; 46,2650965541608 ; -3,1 ; 9,5 ; 8,7 ; 1,9 ; 7,4 ; 4,3 ; -0,74 ; FutureJU1990 ; 5B538FeBC64dcCB7Fed2cCcBafFcAACA3fBf9feA3fd7DE9dBe3A081bFEf319C9 ; < dh06ZdWgln4KuvcSl7ew44KJeV0Rw19NF5T2682r1QKX49Trq21gf5k7Y7HA6C6c > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 46,7752491865243 ; 1,18199922150755 ; 38,5729949186143 ; 46,7749991865243 ; 46,7754991865243 ; -6,7 ; -7,2 ; 8,2 ; -6,8 ; 8,2 ; 8 ; -0,35 ; FutureAU1934 ; CB7CAb1ceE0Bc0fd4d44DFBEfEEaB6CFdBe3A21B15C6dD9feEFbC4a4A676a1dd ; < LNjyJEfMdCs9b416LsP6DgY6Zb8fWGGOSEWv1ToJX2f06cJbH6Ddy6mFV5k6S8eP > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 47,3492614701451 ; 1,22550278283675 ; 37,636600531043 ; 47,3490114701451 ; 47,3495114701451 ; -9,8 ; 9,5 ; -5,7 ; 9,5 ; 9 ; -2 ; 0,91 ; FutureOC1974 ; B4EDb04DfdaDf3ECeED7a75deDCDC4fEe0c9fdAaEFbf6fAaC0c2aEEbcbCCEc8f ; < C0d0XDpqr348PI7YEXumRthXm2Yc6F7qE0S3w6twO5Ug0TmFDpRnrtR04pjtPy7I > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 47,9402903426262 ; 1,28606708760987 ; 36,2766637172266 ; 47,9400403426262 ; 47,9405403426262 ; 9,3 ; -6,5 ; -3,1 ; -7,5 ; -8 ; -6,1 ; 0,91 ; FutureDE1976 ; ffd8Ac9CE9ccbE2dFe1FFfa04c6B35D4b4BB0F1B4b3cFc66af0cb78eeCDABA57 ; < 4F5ICm27O60CaJ6195YNbYnPwh6NP6gKe6o66HMqt9PbAMfjkhc74pRJmXt8jg2c > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 48,5228945842474 ; 1,36599914885628 ; 34,5219068949454 ; 48,5226445842474 ; 48,5231445842474 ; -2,1 ; 1,3 ; 9,5 ; 3,4 ; 1,2 ; -3 ; -0,2 ; FutureFE2076 ; 1AcabABABA3ACbE8Ee67c573ABAAc19AfAeb28A4e5E27c6ff0fc8cf7BEEe3C11 ; < f1JnAZgyMb65qk3Cpa38sNW13yNJD38eMY83qzr6Fswu8AmKRinhPk1TIdVvKXZf > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 49,189063953024 ; 1,46838351706136 ; 32,4987851480824 ; 49,188813953024 ; 49,189313953024 ; 7,5 ; 3,2 ; 5,1 ; -1,1 ; -0,6 ; -9,5 ; -0,09 ; FutureAP2088 ; faaFEafdaBE98D7DDEDF8BCBDeAed6CEEBdabBf26FB84D6af0Ed13ebfa28fF2a ; < 34PI7F081grEcumGyFwi8mnCtYY0op0m9uSjW9jEC26Ezkq9riEuW2LR3pMVtKTH > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 49,8792802202895 ; 1,59760105735729 ; 30,2213615474181 ; 49,8790302202895 ; 49,8795302202895 ; -1 ; 9,1 ; 5,2 ; -4,4 ; 2,7 ; 7,2 ; 0,25 ; FutureJU2031 ; ce78e3Eed2EB0dcEB0f1FdCbeBc1e8fdc3BfCbEb7cA5cAee8bfbc2BebdD3Bd2F ; < vTesYuY7PyIW8aVMelxAvpel3nbbv1Yi7RuI8suu0Ho2aG2cT1NwXCf52u04YQ02 > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 50,5763634795173 ; 1,7592523917277 ; 27,7487819924736 ; 50,5761134795173 ; 50,5766134795173 ; 7,3 ; 4,3 ; 5,5 ; 4,1 ; 4,4 ; -5,2 ; 0,15 ; FutureAU2048 ; E17a4d3dff8Ca49fcBadE521E0aeeEEfE9A6BeAF68aBBdBed4E19bAeFFd6bfDd ; < nQ5P45F13A0M2c4x77UwDOw7YXI49xrR3XK9f80Him9Kv95IMq4pLrVTd9Gg4aEM > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 51,360721530577 ; 1,96085870954699 ; 25,1929741702005 ; 51,360471530577 ; 51,360971530577 ; -6,3 ; -3,3 ; -5,3 ; 9,7 ; 8,4 ; 8,9 ; 0,23 ; FutureOC2031 ; C49BC0C4dC7c9b125a00DF37aaf83fba50d43aBb0Bc7c9FEB69d85b51EeEdd7F ; < CKg5w7f9EO4mjy5m0c2lxKLT3nMg6u8H71yWGBXVER5QzyX9x9cBX02RTZWu1k7Q > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 52,088035377962 ; 2,21214586603078 ; 22,5463837072475 ; 52,087785377962 ; 52,088285377962 ; 0,7 ; 9,6 ; -9,2 ; -6,6 ; 7,5 ; 5,5 ; 0,94 ; FutureDE2088 ; ebF8fF3d2cC20C7A3aCb8Ebb7F2D78CEFDdbAbAdFFdcfAE8C1d7eCDe9a0D0D5C ; < nmBxXJWxH2a13c2kDM942IS2U90S9R9vGvxXVu8H9R78dyZt2lF5Pg35SN0zfZnM > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 52,8654573668434 ; 2,52591962372554 ; 19,929192231727 ; 52,8652073668434 ; 52,8657073668434 ; 1,7 ; -1,6 ; 0,5 ; -6,9 ; -6,6 ; 7,9 ; 0,12 ; FutureFE2175 ; Ac8Fb0E9caEDf3D420fce4DCD2EB12d0b61F5AfC9efACF365ea7A809ccC2FEc6 ; < W00690c9Z56aO6uJpQW2wUFxYyeM6uZkQ5I0w7Lxr3rji20rGhme91A16lp5eGUp > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 53,7722233355309 ; 2,91910679827428 ; 17,4207797286896 ; 53,7719733355309 ; 53,7724733355309 ; -7,8 ; -2,1 ; 8,7 ; 0,1 ; -4,4 ; 7,9 ; 0,14 ; FutureAP2158 ; 7Da181CCaAeAaebCEF4aDAf59Ceec18a6ce2C0DA08607BC6C6EBaEBCFbd9560c ; < mitI41Ne3Xi98871Tz3v9b3WhLsO481DCF37GZUJ3ErOKl94Wh0gbmHkXNH68N5M > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 54,6266189290596 ; 3,4140779814911 ; 15,0004016385125 ; 54,6263689290596 ; 54,6268689290596 ; -6,8 ; 4,3 ; -5,6 ; 5 ; 0,2 ; 0,1 ; 0,63 ; FutureJU2141 ; 8f37bffCeFD2cE912a88d789e6aDD6ecbEbfB2cc06AA0B9eCadAd0Bfa73E3b2F ; < 6vQ298I2hAU0et6SO1id26BTr7ed1z54QYrnJnCK1F0w02GQMM3rtO05ntoJ8mcq > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 55,4405143473106 ; 4,04175289739112 ; 12,7169480061724 ; 55,4402643473106 ; 55,4407643473106 ; 2,4 ; 0,1 ; -4,4 ; 4,5 ; -4 ; 1,3 ; 0,23 ; FutureAU2124 ; 7cfb143456409c57290B7B0b9e007CdDCdfaD8E8F6cBFb879Eeeee72cbd5FaF2 ; < 3uWAxI20GAqH7c0DvZq8B790pdqR2wu9D07DAF7L9Abwbtw7yYT817Y4yC1Lx6c4 > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 56,4031083676518 ; 4,84242213335702 ; 10,647705799773 ; 56,4028583676518 ; 56,4033583676518 ; 6 ; -1,7 ; -8,5 ; 5,7 ; -4,7 ; 1,4 ; -0,9 ; FutureOC2116 ; 896adA09E4dC6406C4Ed233BaDdf6DF3D30E8AEACEfa3aCf1adb4DCAAbbbadbF ; < 738fE7u9wwcEm7W9S9NyA9g1XCNrxQ64kqD4PUym0PNMSf46jggsL549Qm4abMAy > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 57,5092633922582 ; 5,87290920690256 ; 8,79229566918323 ; 57,5090133922582 ; 57,5095133922582 ; 9,1 ; -4,6 ; -8,1 ; 5,7 ; -8,4 ; 6,4 ; -0,74 ; FutureDE2151 ; EF2BAe32BBDFEd7142daBcCf8c31d185fCB5A20ea28F6FcFABeb36Bb2e4177bC ; < 08fpjf8KmwR57S10pa8roMx1Qrv9v703TYClvGG6vETpu4mnUAPiDeM0Ub832c3Q > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 58,5543156365361 ; 7,20899488896988 ; 7,12239660845468 ; 58,5540656365361 ; 58,5545656365361 ; 0,7 ; -2,3 ; -9 ; -4,2 ; -7,5 ; -8,8 ; -0,13 ; FutureFE2249 ; Eb2e2DbDBc2F1cf50aBBcbF9C4A6CfFafFd9675EADc2ceb8eaCDE2cCcbeDe5fF ; < X6L0JykH355qsdpjzRerO1UsNr2ginrg11mX1iU2prAHuB855OX7D36dxuk654cA > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 59,4376633771434 ; 8,95530811874447 ; 5,63714331087433 ; 59,4374133771434 ; 59,4379133771434 ; -9,6 ; -6,5 ; -7,1 ; -0,8 ; 1,9 ; 6,8 ; -0,26 ; FutureAP2268 ; fbBaC6E0CdfB37aEc5a7acCAFd65FEbEAfb3E1FBEc6EcbfDB3a1adeceCEBDECB ; < 2JNYz68q3E0c996DiN2GIQ4pf4xa0h14cndNfrJnwJjdOZp10dsZJw0W98T21578 > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 60,655856332567 ; 11,2603814837049 ; 4,38666087115637 ; 60,655606332567 ; 60,656106332567 ; 9 ; -7,7 ; 5,3 ; -4,3 ; -7,9 ; 9,3 ; -0,74 ; FutureJU2219 ; 4F0aA8fF7CfB9Dbc73fe4Fafb71DcAaaB9adC4EAABbFEef1fAebb926DCfeE5CE ; < MOYB95Q2t5p9cVu1BV06cUerB5WA4do57T8Q59exNa68iPvaC1OINZeaNqr8YGod > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 61,626383455219 ; 14,3305096237484 ; 3,30036230903418 ; 61,626133455219 ; 61,626633455219 ; -5,6 ; -0,1 ; 6,2 ; -4,9 ; 1,2 ; 4,7 ; -0,34 ; FutureAU2266 ; eEaEC2ff3761b17eD5B0Fa5D2eCfbcFAabA60d4A710E795DfbaBEBb541Bf7ACA ; < Fs0qO1yxrfEm36FkH1anu9s49e7CG56TVSn395zXqNMv4YtaBRP6MYASjnJJ81LP > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 63,052746256575 ; 18,4589404927482 ; 2,41583777689439 ; 63,052496256575 ; 63,052996256575 ; 4,3 ; 3,5 ; 8,6 ; -8,5 ; -0,4 ; -9,2 ; 0,27 ; FutureOC2223 ; abBf1EDfb8a84C3bAfEdfFd71d4C4E932B1caab3d1D3fe8126F6Eadf3BdF7Fef ; < mKCnm46QDZay8AZs8i6M91264c735tD0B6e609o7abHns8IR8mGSfsN4z5F091F8 > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 64,3656892307944 ; 24,063537883637 ; 1,67482236161801 ; 64,3654392307944 ; 64,3659392307944 ; -2,5 ; 0,8 ; 1,2 ; -6,4 ; 2,7 ; 7,5 ; -0,83 ; FutureDE2236 ; 23Cf8DFFeEE879cF104dD4221D5D39fc9b93bf821D7CCdDB9b9cf64Dc1EB0ceA ; < hV4s3E89Z4V74sl4CvtjC6d9EG2UO9f5v1j6mCpG45EX3LJ4992nMRy12q927tnI > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 65,6048616975017 ; 31,7506052749813 ; 1,06625546597679 ; 65,6046116975017 ; 65,6051116975016 ; -8,8 ; -5,4 ; -2,8 ; 9,6 ; -4,6 ; 5,8 ; 0,08 ; FutureFE2310 ; EE1efDc61FBF3dD0DE6b04FDBb5CDaC525ebd8bC0477e5B62aDAbBaBAdcd2A4F ; < G82TB6165xDa1CLgtaL6BCn1Ch5g4UI3a57JoUxmJl8sIG39sB1DxzJ836G8YVSU > > // < CALLS ; 1Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 24,594531976512 ; quote ; 53,6714134246759 ; 52,5979851561824 ; 0,0204081632653061 ; 6,4 ; 49,6460574178253 ; 57,6967694315266 ; 5,7 ; EFFaB7D0A7fdCeFefF5ea6BcdC1fe7BB249E1ce60Ef03Fe827b50D9AcFfc6E1f ; < GjWo11OkqVB3eTalAz8j4Xtr33A2q0496aUlszl9fyOVdp13X7L3T1GP5162hQ49 > > // < CALLS 27,0539851741632 ; quote ; 49,1194092921563 ; 48,1370211063132 ; 0,0204081632653061 ; -3,4 ; 45,4354535952446 ; 52,803364989068 ; 0,3 ; E97659CDEEAf37cBFCB34ADD4C7cFdf8a3cDfAfc5faBdBA0A3052Ab6e2ABd4CD ; < wI3Y9XecQ3GRyQtuz3zaSafWH8w84wNotONUJ45SEZZ2L78AbRDk54WKU8ik3Rw6 > > // < CALLS 29,5134383718144 ; quote ; 44,6476691224842 ; 43,7547157400345 ; 0,0204081632653061 ; -7,5 ; 41,2990939382979 ; 47,9962443066705 ; 2,2 ; bA5BefC1D8EAbD9e0C9Da4B7869b0a8eBBfea30dd4Aaf5C0079dAe78ffCbEca5 ; < D3j1R3z0e2g1F1hRlL8MXE6W3Zh1bRo4qR15cQS0zu04XXBM9P13OB7RKG6HV2fw > > // < CALLS 31,9728915694656 ; quote ; 40,2955533564589 ; 39,4896422893297 ; 0,0204081632653061 ; 4,2 ; 37,2733868547244 ; 43,3177198581933 ; 5,3 ; B1BCAfFdE0aDC849EbB8e44e5F75BFCe8c7eBfa1dE5DF9Cc9a3E3cda0890fa7A ; < KR9PW0yUEctiDLKMVjrwmD2aF4Xw8J4MZG4wNvu7I4YHScXX3iQdHQH1s8va1sCw > > // < CALLS 34,4323447671168 ; quote ; 36,1055124059439 ; 35,383402157825 ; 0,0204081632653061 ; -4,8 ; 33,3975989754981 ; 38,8134258363897 ; 9,4 ; 26fd799A1CE9eABfcDA1fEB5AEaEfc2D8ebBFc124ED9AcE0fEF0fE21Df7c33ab ; < I3l401mF77lISItraL9gOp2MohYkTFQUN7X77USNfuH7o92K9JkINEa9b31s8Kvd > > // < CALLS 36,891797964768 ; quote ; 32,1187612069275 ; 31,4763859827889 ; 0,0204081632653061 ; 2,6 ; 29,7098541164079 ; 34,527668297447 ; -2,4 ; d5b8E76D0EfDADB49c9cD5eCBD14A2EcBEfaf5bbcB58aFffAC1df0F87cDe0aca ; < QJ143vvsi44HV7cnZ2Uyct0ek63zd7KMJcaQ86uC6u4nbWkFG7TJDE3vh893EY5j > > // < CALLS 39,3512511624192 ; quote ; 28,37139808825 ; 27,803970126485 ; 0,0204081632653061 ; -2,2 ; 26,2435432316312 ; 30,4992529448687 ; 5,2 ; Ab9CdEBB6aE43D8160df6cfdc5ECDbDecdd1EF5CF9c53E47FcB7dAec5D8AaFCB ; < 6N6P05zM1rr9Ino1xjA94htu6rRxiLhUDXmTEn1qDn897w80R2eMyai4238PH9Gw > > // < CALLS 41,8107043600704 ; quote ; 24,8915992243272 ; 24,3937672398406 ; 0,0204081632653061 ; 9,9 ; 23,0247292825026 ; 26,7584691661517 ; -9,1 ; D52B8bAcccAc338D4Bfb6aeACcf508977ddD3eB812A1dE01FaFB2CadeE3c2e14 ; < gjZ9wT7s36l1J5miDLW646w93JPG779V91gX9dmfQU74k4eJyzAtVkh534Gv5vZS > > // < CALLS 44,2701575577216 ; quote ; 21,6981222819644 ; 21,2641598363251 ; 0,0204081632653061 ; -6,1 ; 20,0707631108171 ; 23,3254814531117 ; -2,7 ; cb199c8AeC52FDC2E1a9BF8BA6A5bAAfFF576cA6CaeA224dCADc43b27E6fe47E ; < 51FTVmWCKYL3tNV6NA3BsfEPsoDjwDcjyP9hSqJTb5H5Pq08Rx7uGtOmG1dr1dV9 > > // < CALLS 46,7296107553728 ; quote ; 18,8000367010218 ; 18,4240359670014 ; 0,0204081632653061 ; -6,8 ; 17,3900339484452 ; 20,2100394535985 ; -9,3 ; E40fC1D3deabbFd8138B1fE1A2cDEcaC6FFCb5A5CEfb0d82cCFfFb5CAEC1cbCc ; < Ow96C9esqPJj0qjT4tKj27YSvKOEYlSJ0Lzp92CXM2pQCYH1Ajo11HkfCCpkAc11 > > // < CALLS 49,189063953024 ; quote ; 16,1974130106331 ; 15,8734647504204 ; 0,0204081632653061 ; -3,2 ; 14,9826070348356 ; 17,4122189864306 ; -8,8 ; 9Bcf87eb6dbeE56caBd85C4aAF6eE2Ab9693b2adBb119bdDD1f192DDBeFECe44 ; < VLzAe9w8o5x4VsXzLD9v0Er9yg0K3dSBOcX2fi057ONy3m0N8m4PBp6p906WqWJI > > // < CALLS 51,6485171506752 ; quote ; 13,8826388518815 ; 13,6049860748439 ; 0,0204081632653061 ; 1,4 ; 12,8414409379904 ; 14,9238367657727 ; -8,6 ; B1CDF3eCDfFedBBBDb1eFAeAEdA045Bfc38bBb5Fb2CceBB5AC1cF5Eb2AdCDaFa ; < 2V5Dne99JB14AdDx2N19Rs66zUtnkUzf1V0Xu1IInfCpw55kTTO18HsIT75Wo2bQ > > // < CALLS 54,1079703483264 ; quote ; 11,8420480713358 ; 11,605207109909 ; 0,0204081632653061 ; 0,1 ; 10,9538944659856 ; 12,7302016766859 ; 9,9 ; eC0752F1dB7A1FCE6BFc3f5eafCe65B2c3dA0fe81FFfb5E02aeabeD5A637fe1C ; < eW76MDsNL51Iv01K9NR4CQxR31XSdYDJejI59881T02z1iD8Zc1cHHDk4rJ9qIov > > // < CALLS 56,5674235459776 ; quote ; 10,0576120973883 ; 9,85645985544054 ; 0,0204081632653061 ; 2,3 ; 9,30329119008418 ; 10,8119330046924 ; 1,7 ; B654cef0D9fA545EacDAfAbEC1aF88fE33aDCE2cD52D846EcADACCbbEC2DeaD4 ; < 4cl894yI4P80z1884f7N19D3qQDBc78tiFRgXBLu835561Z4ye30sTKRiu8r6yPY > > // < CALLS 59,0268767436288 ; quote ; 8,50851942129926 ; 8,33834903287327 ; 0,0204081632653061 ; -5,8 ; 7,87038046470181 ; 9,1466583778967 ; -5,2 ; b47BFCfDb6bDaC5bdddDe558dB22dEffaD7AaC00dbefe00DB0BCDC356DA4C48C ; < OMv21zxtPTSX59XgF66hSf4ycr6MmdA1501ID733M9RzfSyIJKul3Ebd6GSw700T > > // < CALLS 61,48632994128 ; quote ; 7,17254050243703 ; 7,02908969238829 ; 0,0204081632653061 ; 3,3 ; 6,63459996475425 ; 7,71048104011981 ; -2,3 ; 6e1DD3afbEc6EDcCB4EaCfAef9EF6AACb8eDcB2CCfda914f70B1b3ff63A3fFaF ; < EH2DSTp1vmxY6zXOM7Tu9fF9846lQauHCryRMEUyTX4FKj2FmubR87eMi3irkXrS > > // < CALLS 63,9457831389312 ; quote ; 6,02713272602194 ; 5,9065900715015 ; 0,0204081632653061 ; 1,5 ; 5,57509777157029 ; 6,47916768047358 ; 6,7 ; D2C395cDfFCE6Cf6a43a5ecFDfdaac5b5CF427E3ADd6ACCC8FaabBBd98B2eAAb ; < 9VR05DWtgx3L51xfe5GyR94RM1SD34O06h3mo987aPkh12HfI262Pgv7AOsX2g1b > > // < CALLS 66,4052363365824 ; quote ; 5,05028078983101 ; 4,94927517403439 ; 0,0204081632653061 ; -5 ; 4,67150973059368 ; 5,42905184906834 ; 6,6 ; c1aAcd4A28E43baaC5405aebA5eB73Df14ef2DEccFff84caDC33CEe3f875Fe4a ; < yIkVS0pKP7lH6Z8r2Lic3Fsfd1Kg13GyIqH4Vxe22WQm624om7TWB9n9825OsgX0 > > // < CALLS 68,8646895342336 ; quote ; 4,22109351113971 ; 4,13667164091692 ; 0,0204081632653061 ; -6 ; 3,90451149780423 ; 4,53767552447519 ; -4,4 ; a7eb7C8cfDEDeAbAfF3BDCDEd1fbC17EcFeAdbaca3a8Db2F4209e1c3C8A7fC5b ; < oFi8y56cBbhOZa4758CjsbLlS1CwWkP8X0f4ewUcSVWAcsI9F6IbuxEmo4SjlzDn > > // < CALLS 71,3241427318848 ; quote ; 3,5201916119162 ; 3,44978777967788 ; 0,0204081632653061 ; 4,7 ; 3,25617724102249 ; 3,78420598280992 ; 0,8 ; CD3eeA7F3e1EBADFdeD38D8ADDCBEcaA37DBCDE6C1DFcAdcaCB70CdE9aB8bB92 ; < z8pPW9iX9OT3671aUsSmMGTvoKlPhMugd352agPsZhbup5iYPl3kgrRSo632553W > > // < CALLS 73,783595929536 ; quote ; 2,92992596859076 ; 2,87132744921894 ; 0,0204081632653061 ; 4,7 ; 2,71018152094645 ; 3,14967041623507 ; 5 ; AF9dd7cF69e3caA882edeAacda0fBEcc29e1AdFa3FdA3e9b9FcF1AaABAbA8FCF ; < gfEI8e709mq2smE8C8GL1rFdb6CBvF6dk44tR19209Z2oGfp0hxiEnaHaM75qvt3 > > // // < PUTS ; 1Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 24,594531976512 ; quote ; 0,0585877411035796 ; 0,057415986281508 ; 0,0204081632653061 ; -7,5 ; 0,0541936605208111 ; 0,062981821686348 ; -8,1 ; fEffD81acC5da54ae4d43FCFfb92f6742C7BA911cfDfBE8DfEB8C7bF4e3c5A4C ; < 5cD14g56DQbwg2OkYJXpQ614IKQj6567rA4W1uV07h9Z3A9iK41U0bJm38qSmsxo > > // < PUTS 27,0539851741632 ; quote ; 0,145301040226713 ; 0,142395019422178 ; 0,0204081632653061 ; -1 ; 0,134403462209709 ; 0,156198618243716 ; -8,2 ; FdFdDFb4F15cff7fA059BfC6AA9caBaEed04aaB69AFbcf9d8aEffFBcaeFC3E5D ; < 1gFWa58858M6k3jr7sZXM258Gs30tP4aJ13AE2FanP7B8jXEgZXJj6r6K9T95U1o > > // < PUTS 29,5134383718144 ; quote ; 0,312278302197384 ; 0,306032736153437 ; 0,0204081632653061 ; 0,4 ; 0,288857429532581 ; 0,335699174862188 ; -2 ; e00DBAa7DB8Db8EFCbEFEfB8ecED2df4f905a3abd25B5DFA2Af5E52D635EEA6B ; < Y623ccXwWtx81N4MPse72Yq27XpkTMDc4NyKUiYYiXpq64kvU5o829pjdhZq1B15 > > // < PUTS 31,9728915694656 ; quote ; 0,598879967814781 ; 0,586902368458486 ; 0,0204081632653061 ; 7,2 ; 0,553963970228673 ; 0,64379596540089 ; -6,4 ; 3eDCCeeABcC0e81a8cbAEBBB53Dbdc9AEe7CfEb3c7F3aCc12F894fdAd78Ede3A ; < bwFIC2FC0pqpGcJ7NT396Dgzc08J2Jl6059yH42RqLr1ttfHSk50mfnB16Zh4f26 > > // < PUTS 34,4323447671168 ; quote ; 1,0475564489426 ; 1,02660531996375 ; 0,0204081632653061 ; 9,6 ; 0,968989715271906 ; 1,1261231826133 ; 1,3 ; b5cAbffFDbCAcd621Bcd5D2AA3B4ca8B8BbFa88736cEbFa7baC5A859faDbE7aC ; < 6svc61es2590FI9h2dwafUfzvtGm160qy4d1MsHJQe5p958zavSDp401H4H020g0 > > // < PUTS 36,891797964768 ; quote ; 1,69952268156894 ; 1,66553222793756 ; 0,0204081632653061 ; 7,7 ; 1,57205848045127 ; 1,82698688268661 ; 5 ; F23e43BebCdAbACEBCDEfD782dbDdD99ddcBdEEfe4b1526B45Fc7256FA67BdAa ; < EjDuBSd5S03w9507Bsc1Pe2893X325N4W3c3hfkpr6IAtjkxYd91Kl7TjF71O9I8 > > // < PUTS 39,3512511624192 ; quote ; 2,59087699453423 ; 2,53905945464354 ; 0,0204081632653061 ; 8,6 ; 2,39656121994416 ; 2,78519276912429 ; 7,1 ; aF5e6F85D2cEf0deACdc42F1AA9EC78aED2FDcf482aeb22af8CEabb2145efEB7 ; < 8rOYF4YD66847983a2wJjK8B5jhHWiHA1BQNu7TNa76124aB675EP0V34dz8EBex > > // < PUTS 41,8107043600704 ; quote ; 3,74979556225416 ; 3,67479965100908 ; 0,0204081632653061 ; 8,5 ; 3,4685608950851 ; 4,03103022942323 ; -4,8 ; f2cBac20dA79eAb7CdAD9EcD11adebA480F6cd7BCc4ee4F5dE3EDCa0A39B7d05 ; < YkOs2UmDiUHlO9PDVXV1s0d2urIIj9TCs6UiCM86g5dV02b9xR7yda1UtVCo8DfZ > > // < PUTS 44,2701575577216 ; quote ; 5,19503605153417 ; 5,09113533050349 ; 0,0204081632653061 ; -3,2 ; 4,80540834766911 ; 5,58466375539924 ; 7,5 ; dDeaE2A4131BCeE0EBeae0aaDd4f5d1d6BAecEaF5cFe1Fc8EcAfAAfde2fD3Bb6 ; < 5x3J4Xk4wM9VQHV0SPVzwDMFUIi79Z6x389d1eU36508o9S7SN8g2LW23lTnSIjw > > // < PUTS 46,7296107553728 ; quote ; 6,93566790223434 ; 6,79695454418966 ; 0,0204081632653061 ; -2,3 ; 6,41549280956677 ; 7,45584299490192 ; -5,4 ; c9ad5faf085ECC7AEeFAAA8B9a72D09fbF6fEEBEa79dB681d2D0DdBf4ee089d3 ; < OXsy4VbLoPgcWaw0C1T4r7G0oi9i14M8mrqSEKv4KXsC5Z5FHXWjAnFwyNF3DTGQ > > // < PUTS 49,189063953024 ; quote ; 8,97176164348836 ; 8,7923264106186 ; 0,0204081632653061 ; 1,8 ; 8,29887952022674 ; 9,64464376674999 ; 6,8 ; fEF0E8BD02DABf1AdC7EaffAa44cC604DAeb94AEe8FaB98Ec2C0E2BdC738F3fa ; < Ilm26iWYWe5Z58erB4jzJot1V2vGJYJfywF44pcR4yy9PF19Y54i4eSE7mYJu1fw > > // < PUTS 51,6485171506752 ; quote ; 11,2957049163796 ; 11,069790818052 ; 0,0204081632653061 ; 8,6 ; 10,4485270476511 ; 12,1428827851081 ; 5,5 ; 72Db3dFcbcAdacCb4caeDb2aEEE4fceBFEBfB03eC8aa1B5ecdA1D8b34FbDFbfE ; < ZMS91O8ag79p2adBxlCuR9MLrT7GQ93WCFo31Rd599u9oS0Ud5eyAe1Nk54Ag8sF > > // < PUTS 54,1079703483264 ; quote ; 13,8938315674766 ; 13,6159549361271 ; 0,0204081632653061 ; 1,3 ; 12,8517941999158 ; 14,9358689350373 ; 9,5 ; 815DCF92aEdA5dd8bdcb8BbcA3e6BEdFD6FBfC5daaBCCc7c1fCBD696AB71D0D0 ; < 0kNrT49vm3F5QXH1l8b52ozqv1UI36K76Fj5zIB8Mo4mUCMKu43isUoH4u7Y6CB9 > > // < PUTS 56,5674235459776 ; quote ; 16,7481130251719 ; 16,4131507646684 ; 0,0204081632653061 ; 9,9 ; 15,492004548284 ; 18,0042215020598 ; 1,7 ; B0d6fDd4b171aBe2Bf2AAD231cbfBc2befE3EFeEC2ebcecE1bDb3a611FffAbda ; < aHyRFG8u7l65u4CPCFI0PYK7D2wDTS4FG7eq29NI3NZK7hWx50SFbnbA712y3z08 > > // < PUTS 59,0268767436288 ; quote ; 19,8377377807256 ; 19,4409830251111 ; 0,0204081632653061 ; -4,7 ; 18,3499074471712 ; 21,32556811428 ; 3,6 ; 0BEe4Ba38d7d6947DDcDBBAd0EfD9Ed89Ab0dFEa2aCAFF954f4B1a2a9bCdf9fD ; < 531CDiA44FEH48XoptCc2iX9tapjZwPyK5HHVla7Bp66W8X12eRW4z3OJM4wuRQi > > // < PUTS 61,48632994128 ; quote ; 23,1404762935061 ; 22,677666767636 ; 0,0204081632653061 ; -6,3 ; 21,4049405714932 ; 24,8760120155191 ; 1,5 ; 0f4fdfB45CF61c9ADf5daC9CBFda0ab1E4DcbfbBE0C9CfBFEA3FbCAfFdd6fbCb ; < 7VD9b20LWVO6haH7GX7v4vca70LZgUwItOJ4vv7XVin4qnLhdOvTPBvfJ0bw07dC > > // < PUTS 63,9457831389312 ; quote ; 26,6337859487338 ; 26,1011102297591 ; 0,0204081632653061 ; -5,9 ; 24,6362520025788 ; 28,6313198948888 ; 3,9 ; FAAFb60CBAeA2de5dAB20c4DD1EfdceA9eEFb78f2fDF023CF8BDE6838FEAbBeB ; < ph9P2CNNV9K5F85cv2NK4AnP97C6dn1113r70IRHHm74V6UcVHb9KX6Gb56kNEMS > > // < PUTS 66,4052363365824 ; quote ; 30,2956514441856 ; 29,6897384153019 ; 0,0204081632653061 ; 9,4 ; 28,0234775858717 ; 32,5678253024996 ; 2,9 ; bEcBF1Bc6CC2aFCcFcE29ACdcE82DCA21Df4A4F41BaABcf9DaEFF1eccdcdFAcc ; < 9w2O6yb9tKe3RW0emfjbtg8jvu4fn677SB7mog3rkVWUrh5Hatcd42jtIY2FCio3 > > // < PUTS 68,8646895342336 ; quote ; 34,1051815971371 ; 33,4230779651943 ; 0,0204081632653061 ; -8,2 ; 31,5472929773518 ; 36,6630702169224 ; 6,3 ; 0bBf76B0bBCb9ABF3cBC90C5Fdc6D6dACE9f5aA1CCE1FaccF08Ac176aB2cFaeC ; < 1hgZ8E9U2nv3SiCP2IEHmgd95D1hb2sY667UpZtETxi4CVRF49zH6XVgSjcqsqa3 > > // < PUTS 71,3241427318848 ; quote ; 38,0429971295564 ; 37,2821371869653 ; 0,0204081632653061 ; 2,3 ; 35,1897723448397 ; 40,8962219142731 ; 3,3 ; 2b3D57ee46BA6a9D994Ed0AaD43EDEad1c2f5AaA143ec793faEceAc0c31802CE ; < B01SJ5mKi0qY1eiq1k04uCb6s1K482yOK9Md550i21turQ64k0LBt8cobU0zZIgk > > // < PUTS 73,783595929536 ; quote ; 42,0914489178737 ; 41,2496199395162 ; 0,0204081632653061 ; 7,7 ; 38,9345902490332 ; 45,2483075867142 ; -8,1 ; 3c082ECf9efAF6EB567aF6EFb9a1adfD3f4afFb38bCeD2fedFCdFEEC41bf2E1d ; < c9vIol5iJCIGfwUJ87DU9FpHg8GJkb3ZgZf5Dmawo7fI6Jr990P96zZp4y6lJ7lH > > // Futures_Eurosibenergo_OJSC // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 45,759312 ; 1,14 ; 39,139747368421 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; AB9CCC1F4374F3f8354EecaDA1DBb5EC4DF552Cc9F0376c3E9EaffcfEE3aefCA ; < dhZZvf0L571c01a7t6d069KLZUw9HWI7D19kizRBKsjfF77zeuBMr2H5oQU2s1gJ > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 45,7595117944225 ; 1,1400057 ; 39,1397219280767 ; 45,7592617944225 ; 45,7597617944225 ; 0,6 ; -7,5 ; -3,7 ; -6,7 ; 9,6 ; 9 ; 0,96 ; Future47AP19 ; 56DD5f4f6CBaa83E3ae5aBea0de9fE8fF2BCbdB1c767ef58f9ab8B7f55BdfEfC ; < jLwe0Fc70P2rGvTr8N21Wga0pnnwzwG3qIJ3qH1m8Mvf4Wz669P0CNZa3kySoVvu > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 46,2648465541608 ; 1,1539244617613 ; 39,0934793283992 ; 46,2645965541608 ; 46,2650965541608 ; -3,1 ; 9,5 ; 8,7 ; 1,9 ; 7,4 ; 4,3 ; -0,74 ; FutureJU1990 ; 5B538FeBC64dcCB7Fed2cCcBafFcAACA3fBf9feA3fd7DE9dBe3A081bFEf319C9 ; < dh06ZdWgln4KuvcSl7ew44KJeV0Rw19NF5T2682r1QKX49Trq21gf5k7Y7HA6C6c > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 46,7752491865243 ; 1,18199922150755 ; 38,5729949186143 ; 46,7749991865243 ; 46,7754991865243 ; -6,7 ; -7,2 ; 8,2 ; -6,8 ; 8,2 ; 8 ; -0,35 ; FutureAU1934 ; CB7CAb1ceE0Bc0fd4d44DFBEfEEaB6CFdBe3A21B15C6dD9feEFbC4a4A676a1dd ; < LNjyJEfMdCs9b416LsP6DgY6Zb8fWGGOSEWv1ToJX2f06cJbH6Ddy6mFV5k6S8eP > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 47,3492614701451 ; 1,22550278283675 ; 37,636600531043 ; 47,3490114701451 ; 47,3495114701451 ; -9,8 ; 9,5 ; -5,7 ; 9,5 ; 9 ; -2 ; 0,91 ; FutureOC1974 ; B4EDb04DfdaDf3ECeED7a75deDCDC4fEe0c9fdAaEFbf6fAaC0c2aEEbcbCCEc8f ; < C0d0XDpqr348PI7YEXumRthXm2Yc6F7qE0S3w6twO5Ug0TmFDpRnrtR04pjtPy7I > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 47,9402903426262 ; 1,28606708760987 ; 36,2766637172266 ; 47,9400403426262 ; 47,9405403426262 ; 9,3 ; -6,5 ; -3,1 ; -7,5 ; -8 ; -6,1 ; 0,91 ; FutureDE1976 ; ffd8Ac9CE9ccbE2dFe1FFfa04c6B35D4b4BB0F1B4b3cFc66af0cb78eeCDABA57 ; < 4F5ICm27O60CaJ6195YNbYnPwh6NP6gKe6o66HMqt9PbAMfjkhc74pRJmXt8jg2c > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 48,5228945842474 ; 1,36599914885628 ; 34,5219068949454 ; 48,5226445842474 ; 48,5231445842474 ; -2,1 ; 1,3 ; 9,5 ; 3,4 ; 1,2 ; -3 ; -0,2 ; FutureFE2076 ; 1AcabABABA3ACbE8Ee67c573ABAAc19AfAeb28A4e5E27c6ff0fc8cf7BEEe3C11 ; < f1JnAZgyMb65qk3Cpa38sNW13yNJD38eMY83qzr6Fswu8AmKRinhPk1TIdVvKXZf > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 49,189063953024 ; 1,46838351706136 ; 32,4987851480824 ; 49,188813953024 ; 49,189313953024 ; 7,5 ; 3,2 ; 5,1 ; -1,1 ; -0,6 ; -9,5 ; -0,09 ; FutureAP2088 ; faaFEafdaBE98D7DDEDF8BCBDeAed6CEEBdabBf26FB84D6af0Ed13ebfa28fF2a ; < 34PI7F081grEcumGyFwi8mnCtYY0op0m9uSjW9jEC26Ezkq9riEuW2LR3pMVtKTH > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 49,8792802202895 ; 1,59760105735729 ; 30,2213615474181 ; 49,8790302202895 ; 49,8795302202895 ; -1 ; 9,1 ; 5,2 ; -4,4 ; 2,7 ; 7,2 ; 0,25 ; FutureJU2031 ; ce78e3Eed2EB0dcEB0f1FdCbeBc1e8fdc3BfCbEb7cA5cAee8bfbc2BebdD3Bd2F ; < vTesYuY7PyIW8aVMelxAvpel3nbbv1Yi7RuI8suu0Ho2aG2cT1NwXCf52u04YQ02 > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 50,5763634795173 ; 1,7592523917277 ; 27,7487819924736 ; 50,5761134795173 ; 50,5766134795173 ; 7,3 ; 4,3 ; 5,5 ; 4,1 ; 4,4 ; -5,2 ; 0,15 ; FutureAU2048 ; E17a4d3dff8Ca49fcBadE521E0aeeEEfE9A6BeAF68aBBdBed4E19bAeFFd6bfDd ; < nQ5P45F13A0M2c4x77UwDOw7YXI49xrR3XK9f80Him9Kv95IMq4pLrVTd9Gg4aEM > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 51,360721530577 ; 1,96085870954699 ; 25,1929741702005 ; 51,360471530577 ; 51,360971530577 ; -6,3 ; -3,3 ; -5,3 ; 9,7 ; 8,4 ; 8,9 ; 0,23 ; FutureOC2031 ; C49BC0C4dC7c9b125a00DF37aaf83fba50d43aBb0Bc7c9FEB69d85b51EeEdd7F ; < CKg5w7f9EO4mjy5m0c2lxKLT3nMg6u8H71yWGBXVER5QzyX9x9cBX02RTZWu1k7Q > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 52,088035377962 ; 2,21214586603078 ; 22,5463837072475 ; 52,087785377962 ; 52,088285377962 ; 0,7 ; 9,6 ; -9,2 ; -6,6 ; 7,5 ; 5,5 ; 0,94 ; FutureDE2088 ; ebF8fF3d2cC20C7A3aCb8Ebb7F2D78CEFDdbAbAdFFdcfAE8C1d7eCDe9a0D0D5C ; < nmBxXJWxH2a13c2kDM942IS2U90S9R9vGvxXVu8H9R78dyZt2lF5Pg35SN0zfZnM > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 52,8654573668434 ; 2,52591962372554 ; 19,929192231727 ; 52,8652073668434 ; 52,8657073668434 ; 1,7 ; -1,6 ; 0,5 ; -6,9 ; -6,6 ; 7,9 ; 0,12 ; FutureFE2175 ; Ac8Fb0E9caEDf3D420fce4DCD2EB12d0b61F5AfC9efACF365ea7A809ccC2FEc6 ; < W00690c9Z56aO6uJpQW2wUFxYyeM6uZkQ5I0w7Lxr3rji20rGhme91A16lp5eGUp > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 53,7722233355309 ; 2,91910679827428 ; 17,4207797286896 ; 53,7719733355309 ; 53,7724733355309 ; -7,8 ; -2,1 ; 8,7 ; 0,1 ; -4,4 ; 7,9 ; 0,14 ; FutureAP2158 ; 7Da181CCaAeAaebCEF4aDAf59Ceec18a6ce2C0DA08607BC6C6EBaEBCFbd9560c ; < mitI41Ne3Xi98871Tz3v9b3WhLsO481DCF37GZUJ3ErOKl94Wh0gbmHkXNH68N5M > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 54,6266189290596 ; 3,4140779814911 ; 15,0004016385125 ; 54,6263689290596 ; 54,6268689290596 ; -6,8 ; 4,3 ; -5,6 ; 5 ; 0,2 ; 0,1 ; 0,63 ; FutureJU2141 ; 8f37bffCeFD2cE912a88d789e6aDD6ecbEbfB2cc06AA0B9eCadAd0Bfa73E3b2F ; < 6vQ298I2hAU0et6SO1id26BTr7ed1z54QYrnJnCK1F0w02GQMM3rtO05ntoJ8mcq > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 55,4405143473106 ; 4,04175289739112 ; 12,7169480061724 ; 55,4402643473106 ; 55,4407643473106 ; 2,4 ; 0,1 ; -4,4 ; 4,5 ; -4 ; 1,3 ; 0,23 ; FutureAU2124 ; 7cfb143456409c57290B7B0b9e007CdDCdfaD8E8F6cBFb879Eeeee72cbd5FaF2 ; < 3uWAxI20GAqH7c0DvZq8B790pdqR2wu9D07DAF7L9Abwbtw7yYT817Y4yC1Lx6c4 > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 56,4031083676518 ; 4,84242213335702 ; 10,647705799773 ; 56,4028583676518 ; 56,4033583676518 ; 6 ; -1,7 ; -8,5 ; 5,7 ; -4,7 ; 1,4 ; -0,9 ; FutureOC2116 ; 896adA09E4dC6406C4Ed233BaDdf6DF3D30E8AEACEfa3aCf1adb4DCAAbbbadbF ; < 738fE7u9wwcEm7W9S9NyA9g1XCNrxQ64kqD4PUym0PNMSf46jggsL549Qm4abMAy > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 57,5092633922582 ; 5,87290920690256 ; 8,79229566918323 ; 57,5090133922582 ; 57,5095133922582 ; 9,1 ; -4,6 ; -8,1 ; 5,7 ; -8,4 ; 6,4 ; -0,74 ; FutureDE2151 ; EF2BAe32BBDFEd7142daBcCf8c31d185fCB5A20ea28F6FcFABeb36Bb2e4177bC ; < 08fpjf8KmwR57S10pa8roMx1Qrv9v703TYClvGG6vETpu4mnUAPiDeM0Ub832c3Q > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 58,5543156365361 ; 7,20899488896988 ; 7,12239660845468 ; 58,5540656365361 ; 58,5545656365361 ; 0,7 ; -2,3 ; -9 ; -4,2 ; -7,5 ; -8,8 ; -0,13 ; FutureFE2249 ; Eb2e2DbDBc2F1cf50aBBcbF9C4A6CfFafFd9675EADc2ceb8eaCDE2cCcbeDe5fF ; < X6L0JykH355qsdpjzRerO1UsNr2ginrg11mX1iU2prAHuB855OX7D36dxuk654cA > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 59,4376633771434 ; 8,95530811874447 ; 5,63714331087433 ; 59,4374133771434 ; 59,4379133771434 ; -9,6 ; -6,5 ; -7,1 ; -0,8 ; 1,9 ; 6,8 ; -0,26 ; FutureAP2268 ; fbBaC6E0CdfB37aEc5a7acCAFd65FEbEAfb3E1FBEc6EcbfDB3a1adeceCEBDECB ; < 2JNYz68q3E0c996DiN2GIQ4pf4xa0h14cndNfrJnwJjdOZp10dsZJw0W98T21578 > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 60,655856332567 ; 11,2603814837049 ; 4,38666087115637 ; 60,655606332567 ; 60,656106332567 ; 9 ; -7,7 ; 5,3 ; -4,3 ; -7,9 ; 9,3 ; -0,74 ; FutureJU2219 ; 4F0aA8fF7CfB9Dbc73fe4Fafb71DcAaaB9adC4EAABbFEef1fAebb926DCfeE5CE ; < MOYB95Q2t5p9cVu1BV06cUerB5WA4do57T8Q59exNa68iPvaC1OINZeaNqr8YGod > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 61,626383455219 ; 14,3305096237484 ; 3,30036230903418 ; 61,626133455219 ; 61,626633455219 ; -5,6 ; -0,1 ; 6,2 ; -4,9 ; 1,2 ; 4,7 ; -0,34 ; FutureAU2266 ; eEaEC2ff3761b17eD5B0Fa5D2eCfbcFAabA60d4A710E795DfbaBEBb541Bf7ACA ; < Fs0qO1yxrfEm36FkH1anu9s49e7CG56TVSn395zXqNMv4YtaBRP6MYASjnJJ81LP > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 63,052746256575 ; 18,4589404927482 ; 2,41583777689439 ; 63,052496256575 ; 63,052996256575 ; 4,3 ; 3,5 ; 8,6 ; -8,5 ; -0,4 ; -9,2 ; 0,27 ; FutureOC2223 ; abBf1EDfb8a84C3bAfEdfFd71d4C4E932B1caab3d1D3fe8126F6Eadf3BdF7Fef ; < mKCnm46QDZay8AZs8i6M91264c735tD0B6e609o7abHns8IR8mGSfsN4z5F091F8 > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 64,3656892307944 ; 24,063537883637 ; 1,67482236161801 ; 64,3654392307944 ; 64,3659392307944 ; -2,5 ; 0,8 ; 1,2 ; -6,4 ; 2,7 ; 7,5 ; -0,83 ; FutureDE2236 ; 23Cf8DFFeEE879cF104dD4221D5D39fc9b93bf821D7CCdDB9b9cf64Dc1EB0ceA ; < hV4s3E89Z4V74sl4CvtjC6d9EG2UO9f5v1j6mCpG45EX3LJ4992nMRy12q927tnI > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 65,6048616975017 ; 31,7506052749813 ; 1,06625546597679 ; 65,6046116975017 ; 65,6051116975016 ; -8,8 ; -5,4 ; -2,8 ; 9,6 ; -4,6 ; 5,8 ; 0,08 ; FutureFE2310 ; EE1efDc61FBF3dD0DE6b04FDBb5CDaC525ebd8bC0477e5B62aDAbBaBAdcd2A4F ; < G82TB6165xDa1CLgtaL6BCn1Ch5g4UI3a57JoUxmJl8sIG39sB1DxzJ836G8YVSU > > // < CALLS ; 2Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 26,8861116677654 ; quote ; 57,5879066477486 ; 56,4361485147936 ; 0,0204081632653061 ; 7,9 ; 53,124843882548 ; 62,0509694129491 ; -9,5 ; cEeCFB789Ee2CB5740C3F1d7DC3bbaEBE0dA438Da5ef373DBF20E5bfAD9b6F3a ; < 1S20YO27NHkbOckrR7vWT5vs149a090S7Tz0gog2nJ9Uj37Jc2mdQPux2uBvn76G > > // < CALLS 29,574722834542 ; quote ; 53,6044676860604 ; 52,5323783323391 ; 0,0204081632653061 ; 4,4 ; 49,4501214403907 ; 57,75881393173 ; 5,2 ; AbAAAdeCdfACa77edCcfbe6eF0aedcc3fdf158CDdcFfacaFf4d57F9FED4eb043 ; < 7cJdry05YUwUu4TFZeMD4Fa18T25mCHsyTkfa9MU69wbuJu7tw51Uil4RW9A4tpB > > // < CALLS 32,2633340013185 ; quote ; 49,749238783706 ; 48,7542540080319 ; 0,0204081632653061 ; 7,7 ; 45,8936727779688 ; 53,6048047894432 ; 8,5 ; C7f7Cf7E87466DAd54Ede31EfdbAeDbaDBD8Baa55cbC4dA410B9a5EdDFa6e1fe ; < OA5pu47oB95Ngbc0gkKLTUQ7sk8a1Z7qLAQG380WkOo0a2078DKu5Z6cXSI5N8I5 > > // < CALLS 34,9519451680951 ; quote ; 46,043352958261 ; 45,1224858990958 ; 0,0204081632653061 ; -6,7 ; 42,4749931039958 ; 49,6117128125262 ; 9,9 ; 0DA3deF1Df7AeeB1A2ECaecaBD6FC5BA6baCddbFcbEfa6CEECDd8d6A0A9cc8B8 ; < Poc0Hkj369zB6kldGHvr2s5Y32u0HdxGAMcC3aQh0zQ0ph6x8YW83iD7tj6wBnXo > > // < CALLS 37,6405563348716 ; quote ; 42,5041624904487 ; 41,6540792406398 ; 0,0204081632653061 ; -3,8 ; 39,2100898974389 ; 45,7982350834585 ; -1,6 ; Dd3C2cAca5EF7fFa4FCF6Fa3F7BF2cCe96c706FB12F7EfceeBadc3AEd2D73EAE ; < 5XXVXqnJho6rH3D57YH5u2Xw5i3cJF2tAPx33wE5CZ315VnbxUs0h0vjYY01D4XW > > // < CALLS 40,3291675016481 ; quote ; 39,1447745021317 ; 38,3618790120891 ; 0,0204081632653061 ; -5,7 ; 36,1110544782165 ; 42,1784945260469 ; 3,6 ; aCbffdD0ed28AE6F5c96a8C61C9D2D8FA9dBa1DBdcF6ddbE6AdDfeacf26bBaEC ; < 9DJ5Lt36BZ058856sGrq0T7azNSFFRivbtN3Y6dK5yr116ljR2nl3qJoFyqC239a > > // < CALLS 43,0177786684247 ; quote ; 35,9740072988448 ; 35,2545271528679 ; 0,0204081632653061 ; 3,4 ; 33,1860217331843 ; 38,7619928645052 ; 3,1 ; 1dFCe6d1dBEDAA0E83f6Aa6F9A6CAC8d1AAEeeaAf4b94Abfda5Ce1afFb6DeDcC ; < Og83N5T28ZtdjP7jzUtcbwBb6CQ1nA7dSN64FihP53zuq7g0MFyQL2QGN3hs56IX > > // < CALLS 45,7063898352012 ; quote ; 32,9966443893104 ; 32,3367115015242 ; 0,0204081632653061 ; -3,1 ; 30,4394044491389 ; 35,553884329482 ; -3,2 ; 742bFBF7aB7e93cc2CDaFAaCd2cebbCe08e2EAabe97BBCfecD3c3Edafafc070A ; < Q26nkyu7Dv0Hvj8EV3xzDEUlcXcvD092PPpC101gf69SE3fJ464AYCqY6cOy8DGz > > // < CALLS 48,3950010019778 ; quote ; 30,2138736853229 ; 29,6095962116165 ; 0,0204081632653061 ; -5,7 ; 27,8722984747104 ; 32,5554488959355 ; -1,5 ; c8AEb6aB57E1d0B4279d0b7180Cae018E3fBc3bc1BFAcfa7be4Fc3C7BB20dFCD ; < 3Pow988TV2F3uv0wh332he8h360H71IJtBRhvs48bdMNOIGeaE9W16KHUNUVThc4 > > // < CALLS 51,0836121687543 ; quote ; 27,623821116272 ; 27,0713446939466 ; 0,0204081632653061 ; -5,8 ; 25,4829749797609 ; 29,7646672527831 ; 4,1 ; B9b0DA5Ed0c2c73Ba562aFBcEe5cE7c1bD87FBac1635cF1a426CAcdA2BE4ce85 ; < G6K1Gq1dIOZt6k7t4LY9VR82RFmZOu9gI1RAq9P9v6430y9lNDv7OVLk0I4OJ83e > > // < CALLS 53,7722233355309 ; quote ; 25,2221118387227 ; 24,7176696019483 ; 0,0204081632653061 ; -5,4 ; 23,2673981712217 ; 27,1768255062238 ; 8,8 ; 7cBaE9Bf1Bc09B5fAAbAAeBBeD4387babfeC5c8AA9D3EDeF1f20D447CCaEAbEe ; < hoeg3bdbdtI7WIgeXCh8qM2Wq7wgYa957w6ee0760G4ScLUlE81HHd8g9a6s82VE > > // < CALLS 56,4608345023074 ; quote ; 23,0024138329086 ; 22,5423655562505 ; 0,0204081632653061 ; 4,1 ; 21,2197267608582 ; 24,7851009049591 ; 7,9 ; 4ecf1cfAcafcda8Ff7EfeFBBD4c27A3d2A3d5eebb01bC0fABBa25dd210b2AB16 ; < C8hem357mLfkJv14Jl0B27tx30gT610Ls1k0BF10A8fh957nDd9kUko0mQG4Pm2s > > // < CALLS 59,1494456690839 ; quote ; 20,9569361662668 ; 20,5377974429415 ; 0,0204081632653061 ; 9,9 ; 19,3327736133811 ; 22,5810987191525 ; -5,9 ; Fe6a6efcd2Cbd13Bf676A2cdaF045F4aBcC0D76943f7ABe7C8Cfe0f028cdfdb4 ; < IUUVVI2LtZab15JDCaE7c8GOMEf1pKWCV9M0izF99a8D36i4Fc4loVT5AVwXLyc4 > > // < CALLS 61,8380568358605 ; quote ; 19,0768673163296 ; 18,695329970003 ; 0,0204081632653061 ; 1,7 ; 17,598410099314 ; 20,5553245333451 ; -4,2 ; 4a272eaf06DEf3f55dfeEB4fCB48cFcF8dc1CEE1f86CCdc3DeC2eceabBAEd3eD ; < yp1rE85p1DbEslv5vSkQY6xdhwCEi0nsXTHI146fQt690u7Ux2cEE7kHv5V7NnER > > // < CALLS 64,526668002637 ; quote ; 17,3527481632677 ; 17,0056932000023 ; 0,0204081632653061 ; -8,3 ; 16,0079101806144 ; 18,6975861459209 ; 8,6 ; D0e5EfAcDDb99fBDDDF48fA7e7B711f8dcfea8C44ddcFfbBDcdb001FFbfDA53b ; < 82wTmIyqEgf8J23XkvZ98tT63T81n1p93sKeuEndJH4G5j2c3UkKH2VT9KjZYSf8 > > // < CALLS 67,2152791694136 ; quote ; 15,7747803335794 ; 15,4592847269078 ; 0,0204081632653061 ; 0,2 ; 14,552234857727 ; 16,9973258094318 ; 9,1 ; AC0CB7eeceBd9F5bbb5baEe77Dd1B4Bc7EfFec0baad5A13eDEd9ecFb0Dc62323 ; < mt4CMrA2C0ZcW5wttfn18L5XYz8qnxyfLOVdxJvKBbiZ97YaOuLb7Zs082x4J789 > > // < CALLS 69,9038903361901 ; quote ; 14,3330742666231 ; 14,0464127812907 ; 0,0204081632653061 ; -3 ; 13,2222610109598 ; 15,4438875222864 ; -7,9 ; cC3dc369aeb10C7b8b5fDdFCBfF19CaFcaa96d18c6fCDFA94eEEebafdcF4DEe0 ; < PtcZ99rT4wy51GaV8aR575wRY3V083D2NWvBNM107V9Xw4YBhc16hLn7oh9uSs1F > > // < CALLS 72,5925015029667 ; quote ; 13,0178433568744 ; 12,7574864897369 ; 0,0204081632653061 ; -0,6 ; 12,0089604967166 ; 14,0267262170321 ; -2,4 ; b0D84bFe11bEC9b55fbfBdEFCDeEf5FFc61eFc7C1B2DDadF8f8BBdb7Dfc1a379 ; < II7NKwdy22993M5Zn6Rnx2Qg42uxqIW8f10Hl2ucnCsR1Wr5qt8uo96VsXhu70ba > > // < CALLS 75,2811126697432 ; quote ; 11,8195513380887 ; 11,5831603113269 ; 0,0204081632653061 ; 5,6 ; 10,9035361093868 ; 12,7355665667906 ; 9,2 ; 684c4fceAefffCD9CB0A032dfeDE0E9bAa4BdFE2d5e4a01EBdBf6AE44464ecd6 ; < 4k9LzbET55kv71j4z4zIl7oK6Ve6kiXHvCy6r021R3Q8r448EoWxBvpjzG7aaR1p > > // < CALLS 77,9697238365197 ; quote ; 10,729020132261 ; 10,5144397296158 ; 0,0204081632653061 ; -5,1 ; 9,89752107201076 ; 11,5605191925112 ; 1,8 ; Eb58D89f9AAab2cbaDA7ba22CeCCB1CfBd7DA4D02bDAD8Bb1E1f8FF0974FAd1C ; < mG818eRy2V4266hKFP8649q7Yl0iK9FDo6eSqk8E1AqmLoVEf8t68B7wHkdA0kY9 > > // < CALLS 80,6583350032963 ; quote ; 9,7375049852526 ; 9,54275488554755 ; 0,0204081632653061 ; -2,5 ; 8,98284834889553 ; 10,4921616216097 ; 8,8 ; 3bE1cEC9a7B4914e3485a43aa6bd22f3E9EaB8365Fc1Dba8eC8b0fbFBdd0BBEe ; < 6RopOS5CCOCn4Im639s13N96807T1eycsg9BMNfyPy265GYTteA16ywX0Bm2hBL6 > > // // < PUTS ; 2Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 26,8861116677654 ; quote ; 0,408665521929223 ; 0,400492211490638 ; 0,0204081632653061 ; 2,5 ; 0,376993943979708 ; 0,440337099878737 ; -6,7 ; eDC4fBfEceE60eCaD0926FFFCaB4CEdFc02e4a8f7eceA4ac7EdfB6fadcAEAAdC ; < r20lYEw1c4qLEl1f78O7UouH29CB1NcTEw4OzN5jVXyZa95gRL3ceBkmzJ8nfgp1 > > // < PUTS 29,574722834542 ; quote ; 0,707302447659103 ; 0,693156398705921 ; 0,0204081632653061 ; -0,8 ; 0,652486507965523 ; 0,762118387352683 ; 5,1 ; 79DAFdC6cE22Ada27ed08d4e035Bc3730a57F7A1ec6DdEFeCaAe8f8eFB6efFba ; < 7U21B2ehtHr6tuxQLIAl96cz439QJ57yjLQQgaJ18j88xItNa06yfti8VXyF5Lfc > > // < PUTS 32,2633340013185 ; quote ; 1,13414943272281 ; 1,11146644406835 ; 0,0204081632653061 ; 8,8 ; 1,04625285168679 ; 1,22204601375883 ; -7,3 ; fbA65BCfcEdbDed5fBBAEAcB73d9F9260A3ccA6b5AfebEEBaBac7fbCbF48a3e0 ; < 9CCL1j55Q9252iW0wz4XEOFXae30O68JkleK08sZsTAC74Wf20z0Kd5V6M0lEaJs > > // < PUTS 34,9519451680951 ; quote ; 1,71033949469589 ; 1,67613270480197 ; 0,0204081632653061 ; -6,1 ; 1,57778818385696 ; 1,84289080553482 ; -4,9 ; DDB7BebBa26d7E840c4ee3C1cfBdaC7bdDD8Fd98AbC3E0ABb3C0aCafbbA4bbBE ; < BIQS1kmbllPLcM2Qrrt3GpDD0XhGzXtJn5115O0CBsjUCg6eC83vwAeIUnl3WjPo > > // < PUTS 37,6405563348716 ; quote ; 2,45322491430167 ; 2,40416041601564 ; 0,0204081632653061 ; -5,5 ; 2,26309998344329 ; 2,64334984516005 ; 3,4 ; eEfFCf5aA1a8ECdEd8bcd034CA7Eb0eBAA8b2a6b2FCdab4Feb56eBd025AB8bD6 ; < CMkzx3zHMVUnR3k13815c2KV6S4VS4sR6A4Hx9WBy0xn35rCyIDE2t8742c7KvXT > > // < PUTS 40,3291675016481 ; quote ; 3,37591281340273 ; 3,30839455713468 ; 0,0204081632653061 ; -9,3 ; 3,11427957036402 ; 3,63754605644145 ; 8,5 ; De88B4eeFfbFC07DffbCeDfaC4cA2BA0cB5CefD8FaAEdBE8bdaab461A950DF3b ; < xxJDTCG6RF35XQ8trF5B1P5o9C6NNllTG4EIwz2tcmN9Y51o8WVCfTlLcL64jK99 > > // < PUTS 43,0177786684247 ; quote ; 4,48722149753384 ; 4,39747706758316 ; 0,0204081632653061 ; 9,5 ; 4,13946183147497 ; 4,83498116359271 ; 2,3 ; C0FC92B7daFacfA9A5CADe6EaBb4Ac2cf1DeFFfCA661BdCF5fa8befADAaAfeBD ; < FIg8WJf0jsgOmCBEb73rGSa8EJMmlAA7cPqVd9vQ9W4wU2iF1M8UQFcyZ02uyLWB > > // < PUTS 45,7063898352012 ; quote ; 5,79193447541758 ; 5,67609578590923 ; 0,0204081632653061 ; -0,1 ; 5,34305955357271 ; 6,24080939726244 ; -5 ; FC0FC6BBD8a7BB1b5EBBeB0F64EDB7CbDdeeae0b567d45c9Fa0B540eB4c125ae ; < dMtU1LdWjz6Ijj3N751H31708Kse28dB1UCWm3zTo569B83khytV1KbGx6d9D743 > > // < PUTS 48,3950010019778 ; quote ; 7,29123965884816 ; 7,14541486567119 ; 0,0204081632653061 ; -0,2 ; 6,72616858528742 ; 7,85631073240889 ; 4,9 ; F84DEFCDFAdc6469ccEbA148Af4efBE2BDD5ebbAe10cDADfBDbFf8bC5E0E00Ea ; < U60JBdRJnuOvF30arY09DQj6dlzKl3b0HKWC4M75s58ckJLM637N26wI72813sNG > > // < PUTS 51,0836121687543 ; quote ; 8,98326297721528 ; 8,80359771767097 ; 0,0204081632653061 ; 0,6 ; 8,28706009648109 ; 9,67946585794946 ; 5,5 ; bec7d99A5AcBdB7fD8a9C23DabfcDD13DfD207b2dDAEb39eBD8bfffDa1CF98DD ; < LGLY3DqtUCmT8AvC8vvYn8OlxRsZjhd5wGT9fa71OGU6439Wy6r6Q3ZqHVw1W7nb > > // < PUTS 53,7722233355309 ; quote ; 10,8636295870841 ; 10,6463569953425 ; 0,0204081632653061 ; -3,7 ; 10,0216982940851 ; 11,7055608800832 ; -1,9 ; cEB0Eb6AAedFCE84416Af553E8CeffaeCbAA6fABcaAD03EAfEeFce503deBDcDd ; < R7eXigqfidU2P2T9jq87yzVZ28x45U37L0DJVDOTOe6hpoS7b5p7Xo66104sG3nJ > > // < PUTS 56,4608345023074 ; quote ; 12,9260074686881 ; 12,6674873193143 ; 0,0204081632653061 ; 0 ; 11,9242418898647 ; 13,9277730475114 ; -9,6 ; 83A3DeE0EDd3dCaEF6deE2eccFD55B1a6bca65a7af9cCbdd4CF7E2cc4bbFdAD4 ; < jfMhL85m6M4v1e8hdPI9nOS6yrQ896yNU3KGJcO52e8X35QxUVU6j1g5iGulT8ZV > > // < PUTS 59,1494456690839 ; quote ; 15,1626056894643 ; 14,859353575675 ; 0,0204081632653061 ; -1,9 ; 13,9875037485308 ; 16,3377076303978 ; 5,3 ; fdD8C4082cdD356a2ECbbeB0B2afFd6edD2ad41Cba23F5EcCf6822AeE37Cfe6c ; < 4ipVuV8gqF6KR0q1QW398ZHq0C8J0q92PxXhFEfusL3T3HKH2q9NT750KQEFer85 > > // < PUTS 61,8380568358605 ; quote ; 17,5646127269451 ; 17,2133204724062 ; 0,0204081632653061 ; -7,6 ; 16,2033552406069 ; 18,9258702132834 ; -3,3 ; bAe6cf3E5ba4bcDEEf64899FdbBE5B80DCee5aeff7cBCaBca5D8bBDDfaB90c01 ; < nO78bEbWejCAla1Vt88n2NUvCQ0Uxl8V5e8hQ78fSu8U5y62GqAQE5UduP469e9v > > // < PUTS 64,526668002637 ; quote ; 20,1225694613013 ; 19,7201180720753 ; 0,0204081632653061 ; -3,1 ; 18,5630703280505 ; 21,6820685945522 ; -6,7 ; bE2eAc7DA09EEd58ffaEDE07feA98DADd788eD017d32fddC7fA97B66bbB44F0c ; < LT7rg5qGJ3a7KUYQlPYEQh7ph57F5JtqCT6053e81GO7310iwITjL2xa2bKvXYe9 > > // < PUTS 67,2152791694136 ; quote ; 22,8266775190311 ; 22,3701439686505 ; 0,0204081632653061 ; -6,4 ; 21,0576100113062 ; 24,595745026756 ; -4,1 ; EfEFbAAeaE3cd07E40208eb5b2F0f6acdFFbc316CBaBE73eEbf7ed7Ae8AE8ef2 ; < gtfk6VtFsOzGm47ZPuMM665E0C9yF5RQJCt3Mmo9oO6IcP4G3pCA2h1LTI1d562L > > // < PUTS 69,9038903361901 ; quote ; 25,6670473394929 ; 25,153706392703 ; 0,0204081632653061 ; -4,3 ; 23,6778511706822 ; 27,6562435083036 ; 1,4 ; eB97DcDE5DF167D7Ad20d4b7c3fEC59dA30dec7fccEcAe1Ff3942BE0A61edFD8 ; < wj50CCz7pAk36cl8BOdmpXhwtfHFWuHPExOOR8BH9542nH1OJmftO62g22sJ9B83 > > // < PUTS 72,5925015029667 ; quote ; 28,6338923171622 ; 28,0612144708189 ; 0,0204081632653061 ; 2,3 ; 26,4147656625821 ; 30,8530189717422 ; -7,7 ; 10Fe1Df3f9BB8Bcfe0a1B80c0ec601dcb5faD5aB0B6daa18bdA415ad9aD3F07a ; < mWS6VYG07CX1o10OfcHDJLFCH7IWH5GO1U09Dj37xHatCz0TUqi29PRxz8QP2sKc > > // < PUTS 75,2811126697432 ; quote ; 31,7176761857946 ; 31,0833226620787 ; 0,0204081632653061 ; 4,4 ; 29,2595562813955 ; 34,1757960901936 ; 7 ; b7FABf7fbACdCAFbBBF4cCbcEcA5bb6b5aaf4aFAadc6aafeD9C6BbBaeeA83C2b ; < 7j32uycQZ0ah21n72eFUe15m68pEOH8ho32m86LtymallenPQKtbCQZ47eSv9N1A > > // < PUTS 77,9697238365197 ; quote ; 34,909220867385 ; 34,2110364500373 ; 0,0204081632653061 ; -3,2 ; 32,2037562501626 ; 37,6146854846073 ; 9,7 ; BDD62dbA2B81aFdeef3bae8eBFad54fe1aFBaacaaA993bCD3fEE5aFaEeEb89df ; < gY3kfu9SnShI9OFl58h3oBZGjqNi1BAJAkc1EJnqM55IxTWtbSgd5FQ43TG1ct0C > > // < PUTS 80,6583350032963 ; quote ; 38,1997816077946 ; 37,4357859756388 ; 0,0204081632653061 ; 1,2 ; 35,2392985331906 ; 41,1602646823987 ; -7,7 ; 6fFb3FBDCD2acC82dbcEaDA93cD33aA7ffCDBbA0Ff691A3FFEdbaA8CaaFcBA27 ; < lLLsurj45gLaW7t1d6c82W6HUW9bWlV7migxFuuplNh57d7hn3z5Yw0Um65866r1 > > // Futures_Eurosibenergo_OJSC // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 45,759312 ; 1,14 ; 39,139747368421 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; AB9CCC1F4374F3f8354EecaDA1DBb5EC4DF552Cc9F0376c3E9EaffcfEE3aefCA ; < dhZZvf0L571c01a7t6d069KLZUw9HWI7D19kizRBKsjfF77zeuBMr2H5oQU2s1gJ > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 45,7595117944225 ; 1,1400057 ; 39,1397219280767 ; 45,7592617944225 ; 45,7597617944225 ; 0,6 ; -7,5 ; -3,7 ; -6,7 ; 9,6 ; 9 ; 0,96 ; Future47AP19 ; 56DD5f4f6CBaa83E3ae5aBea0de9fE8fF2BCbdB1c767ef58f9ab8B7f55BdfEfC ; < jLwe0Fc70P2rGvTr8N21Wga0pnnwzwG3qIJ3qH1m8Mvf4Wz669P0CNZa3kySoVvu > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 46,2648465541608 ; 1,1539244617613 ; 39,0934793283992 ; 46,2645965541608 ; 46,2650965541608 ; -3,1 ; 9,5 ; 8,7 ; 1,9 ; 7,4 ; 4,3 ; -0,74 ; FutureJU1990 ; 5B538FeBC64dcCB7Fed2cCcBafFcAACA3fBf9feA3fd7DE9dBe3A081bFEf319C9 ; < dh06ZdWgln4KuvcSl7ew44KJeV0Rw19NF5T2682r1QKX49Trq21gf5k7Y7HA6C6c > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 46,7752491865243 ; 1,18199922150755 ; 38,5729949186143 ; 46,7749991865243 ; 46,7754991865243 ; -6,7 ; -7,2 ; 8,2 ; -6,8 ; 8,2 ; 8 ; -0,35 ; FutureAU1934 ; CB7CAb1ceE0Bc0fd4d44DFBEfEEaB6CFdBe3A21B15C6dD9feEFbC4a4A676a1dd ; < LNjyJEfMdCs9b416LsP6DgY6Zb8fWGGOSEWv1ToJX2f06cJbH6Ddy6mFV5k6S8eP > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 47,3492614701451 ; 1,22550278283675 ; 37,636600531043 ; 47,3490114701451 ; 47,3495114701451 ; -9,8 ; 9,5 ; -5,7 ; 9,5 ; 9 ; -2 ; 0,91 ; FutureOC1974 ; B4EDb04DfdaDf3ECeED7a75deDCDC4fEe0c9fdAaEFbf6fAaC0c2aEEbcbCCEc8f ; < C0d0XDpqr348PI7YEXumRthXm2Yc6F7qE0S3w6twO5Ug0TmFDpRnrtR04pjtPy7I > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 47,9402903426262 ; 1,28606708760987 ; 36,2766637172266 ; 47,9400403426262 ; 47,9405403426262 ; 9,3 ; -6,5 ; -3,1 ; -7,5 ; -8 ; -6,1 ; 0,91 ; FutureDE1976 ; ffd8Ac9CE9ccbE2dFe1FFfa04c6B35D4b4BB0F1B4b3cFc66af0cb78eeCDABA57 ; < 4F5ICm27O60CaJ6195YNbYnPwh6NP6gKe6o66HMqt9PbAMfjkhc74pRJmXt8jg2c > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 48,5228945842474 ; 1,36599914885628 ; 34,5219068949454 ; 48,5226445842474 ; 48,5231445842474 ; -2,1 ; 1,3 ; 9,5 ; 3,4 ; 1,2 ; -3 ; -0,2 ; FutureFE2076 ; 1AcabABABA3ACbE8Ee67c573ABAAc19AfAeb28A4e5E27c6ff0fc8cf7BEEe3C11 ; < f1JnAZgyMb65qk3Cpa38sNW13yNJD38eMY83qzr6Fswu8AmKRinhPk1TIdVvKXZf > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 49,189063953024 ; 1,46838351706136 ; 32,4987851480824 ; 49,188813953024 ; 49,189313953024 ; 7,5 ; 3,2 ; 5,1 ; -1,1 ; -0,6 ; -9,5 ; -0,09 ; FutureAP2088 ; faaFEafdaBE98D7DDEDF8BCBDeAed6CEEBdabBf26FB84D6af0Ed13ebfa28fF2a ; < 34PI7F081grEcumGyFwi8mnCtYY0op0m9uSjW9jEC26Ezkq9riEuW2LR3pMVtKTH > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 49,8792802202895 ; 1,59760105735729 ; 30,2213615474181 ; 49,8790302202895 ; 49,8795302202895 ; -1 ; 9,1 ; 5,2 ; -4,4 ; 2,7 ; 7,2 ; 0,25 ; FutureJU2031 ; ce78e3Eed2EB0dcEB0f1FdCbeBc1e8fdc3BfCbEb7cA5cAee8bfbc2BebdD3Bd2F ; < vTesYuY7PyIW8aVMelxAvpel3nbbv1Yi7RuI8suu0Ho2aG2cT1NwXCf52u04YQ02 > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 50,5763634795173 ; 1,7592523917277 ; 27,7487819924736 ; 50,5761134795173 ; 50,5766134795173 ; 7,3 ; 4,3 ; 5,5 ; 4,1 ; 4,4 ; -5,2 ; 0,15 ; FutureAU2048 ; E17a4d3dff8Ca49fcBadE521E0aeeEEfE9A6BeAF68aBBdBed4E19bAeFFd6bfDd ; < nQ5P45F13A0M2c4x77UwDOw7YXI49xrR3XK9f80Him9Kv95IMq4pLrVTd9Gg4aEM > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 51,360721530577 ; 1,96085870954699 ; 25,1929741702005 ; 51,360471530577 ; 51,360971530577 ; -6,3 ; -3,3 ; -5,3 ; 9,7 ; 8,4 ; 8,9 ; 0,23 ; FutureOC2031 ; C49BC0C4dC7c9b125a00DF37aaf83fba50d43aBb0Bc7c9FEB69d85b51EeEdd7F ; < CKg5w7f9EO4mjy5m0c2lxKLT3nMg6u8H71yWGBXVER5QzyX9x9cBX02RTZWu1k7Q > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 52,088035377962 ; 2,21214586603078 ; 22,5463837072475 ; 52,087785377962 ; 52,088285377962 ; 0,7 ; 9,6 ; -9,2 ; -6,6 ; 7,5 ; 5,5 ; 0,94 ; FutureDE2088 ; ebF8fF3d2cC20C7A3aCb8Ebb7F2D78CEFDdbAbAdFFdcfAE8C1d7eCDe9a0D0D5C ; < nmBxXJWxH2a13c2kDM942IS2U90S9R9vGvxXVu8H9R78dyZt2lF5Pg35SN0zfZnM > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 52,8654573668434 ; 2,52591962372554 ; 19,929192231727 ; 52,8652073668434 ; 52,8657073668434 ; 1,7 ; -1,6 ; 0,5 ; -6,9 ; -6,6 ; 7,9 ; 0,12 ; FutureFE2175 ; Ac8Fb0E9caEDf3D420fce4DCD2EB12d0b61F5AfC9efACF365ea7A809ccC2FEc6 ; < W00690c9Z56aO6uJpQW2wUFxYyeM6uZkQ5I0w7Lxr3rji20rGhme91A16lp5eGUp > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 53,7722233355309 ; 2,91910679827428 ; 17,4207797286896 ; 53,7719733355309 ; 53,7724733355309 ; -7,8 ; -2,1 ; 8,7 ; 0,1 ; -4,4 ; 7,9 ; 0,14 ; FutureAP2158 ; 7Da181CCaAeAaebCEF4aDAf59Ceec18a6ce2C0DA08607BC6C6EBaEBCFbd9560c ; < mitI41Ne3Xi98871Tz3v9b3WhLsO481DCF37GZUJ3ErOKl94Wh0gbmHkXNH68N5M > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 54,6266189290596 ; 3,4140779814911 ; 15,0004016385125 ; 54,6263689290596 ; 54,6268689290596 ; -6,8 ; 4,3 ; -5,6 ; 5 ; 0,2 ; 0,1 ; 0,63 ; FutureJU2141 ; 8f37bffCeFD2cE912a88d789e6aDD6ecbEbfB2cc06AA0B9eCadAd0Bfa73E3b2F ; < 6vQ298I2hAU0et6SO1id26BTr7ed1z54QYrnJnCK1F0w02GQMM3rtO05ntoJ8mcq > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 55,4405143473106 ; 4,04175289739112 ; 12,7169480061724 ; 55,4402643473106 ; 55,4407643473106 ; 2,4 ; 0,1 ; -4,4 ; 4,5 ; -4 ; 1,3 ; 0,23 ; FutureAU2124 ; 7cfb143456409c57290B7B0b9e007CdDCdfaD8E8F6cBFb879Eeeee72cbd5FaF2 ; < 3uWAxI20GAqH7c0DvZq8B790pdqR2wu9D07DAF7L9Abwbtw7yYT817Y4yC1Lx6c4 > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 56,4031083676518 ; 4,84242213335702 ; 10,647705799773 ; 56,4028583676518 ; 56,4033583676518 ; 6 ; -1,7 ; -8,5 ; 5,7 ; -4,7 ; 1,4 ; -0,9 ; FutureOC2116 ; 896adA09E4dC6406C4Ed233BaDdf6DF3D30E8AEACEfa3aCf1adb4DCAAbbbadbF ; < 738fE7u9wwcEm7W9S9NyA9g1XCNrxQ64kqD4PUym0PNMSf46jggsL549Qm4abMAy > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 57,5092633922582 ; 5,87290920690256 ; 8,79229566918323 ; 57,5090133922582 ; 57,5095133922582 ; 9,1 ; -4,6 ; -8,1 ; 5,7 ; -8,4 ; 6,4 ; -0,74 ; FutureDE2151 ; EF2BAe32BBDFEd7142daBcCf8c31d185fCB5A20ea28F6FcFABeb36Bb2e4177bC ; < 08fpjf8KmwR57S10pa8roMx1Qrv9v703TYClvGG6vETpu4mnUAPiDeM0Ub832c3Q > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 58,5543156365361 ; 7,20899488896988 ; 7,12239660845468 ; 58,5540656365361 ; 58,5545656365361 ; 0,7 ; -2,3 ; -9 ; -4,2 ; -7,5 ; -8,8 ; -0,13 ; FutureFE2249 ; Eb2e2DbDBc2F1cf50aBBcbF9C4A6CfFafFd9675EADc2ceb8eaCDE2cCcbeDe5fF ; < X6L0JykH355qsdpjzRerO1UsNr2ginrg11mX1iU2prAHuB855OX7D36dxuk654cA > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 59,4376633771434 ; 8,95530811874447 ; 5,63714331087433 ; 59,4374133771434 ; 59,4379133771434 ; -9,6 ; -6,5 ; -7,1 ; -0,8 ; 1,9 ; 6,8 ; -0,26 ; FutureAP2268 ; fbBaC6E0CdfB37aEc5a7acCAFd65FEbEAfb3E1FBEc6EcbfDB3a1adeceCEBDECB ; < 2JNYz68q3E0c996DiN2GIQ4pf4xa0h14cndNfrJnwJjdOZp10dsZJw0W98T21578 > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 60,655856332567 ; 11,2603814837049 ; 4,38666087115637 ; 60,655606332567 ; 60,656106332567 ; 9 ; -7,7 ; 5,3 ; -4,3 ; -7,9 ; 9,3 ; -0,74 ; FutureJU2219 ; 4F0aA8fF7CfB9Dbc73fe4Fafb71DcAaaB9adC4EAABbFEef1fAebb926DCfeE5CE ; < MOYB95Q2t5p9cVu1BV06cUerB5WA4do57T8Q59exNa68iPvaC1OINZeaNqr8YGod > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 61,626383455219 ; 14,3305096237484 ; 3,30036230903418 ; 61,626133455219 ; 61,626633455219 ; -5,6 ; -0,1 ; 6,2 ; -4,9 ; 1,2 ; 4,7 ; -0,34 ; FutureAU2266 ; eEaEC2ff3761b17eD5B0Fa5D2eCfbcFAabA60d4A710E795DfbaBEBb541Bf7ACA ; < Fs0qO1yxrfEm36FkH1anu9s49e7CG56TVSn395zXqNMv4YtaBRP6MYASjnJJ81LP > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 63,052746256575 ; 18,4589404927482 ; 2,41583777689439 ; 63,052496256575 ; 63,052996256575 ; 4,3 ; 3,5 ; 8,6 ; -8,5 ; -0,4 ; -9,2 ; 0,27 ; FutureOC2223 ; abBf1EDfb8a84C3bAfEdfFd71d4C4E932B1caab3d1D3fe8126F6Eadf3BdF7Fef ; < mKCnm46QDZay8AZs8i6M91264c735tD0B6e609o7abHns8IR8mGSfsN4z5F091F8 > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 64,3656892307944 ; 24,063537883637 ; 1,67482236161801 ; 64,3654392307944 ; 64,3659392307944 ; -2,5 ; 0,8 ; 1,2 ; -6,4 ; 2,7 ; 7,5 ; -0,83 ; FutureDE2236 ; 23Cf8DFFeEE879cF104dD4221D5D39fc9b93bf821D7CCdDB9b9cf64Dc1EB0ceA ; < hV4s3E89Z4V74sl4CvtjC6d9EG2UO9f5v1j6mCpG45EX3LJ4992nMRy12q927tnI > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 65,6048616975017 ; 31,7506052749813 ; 1,06625546597679 ; 65,6046116975017 ; 65,6051116975016 ; -8,8 ; -5,4 ; -2,8 ; 9,6 ; -4,6 ; 5,8 ; 0,08 ; FutureFE2310 ; EE1efDc61FBF3dD0DE6b04FDBb5CDaC525ebd8bC0477e5B62aDAbBaBAdcd2A4F ; < G82TB6165xDa1CLgtaL6BCn1Ch5g4UI3a57JoUxmJl8sIG39sB1DxzJ836G8YVSU > > // < CALLS ; 3Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 29,7188316885717 ; quote ; 61,5308193640129 ; 60,3002029767326 ; 0,0204081632653061 ; 4,5 ; 56,6083538148919 ; 66,4532849131339 ; -1,1 ; acC60eBaa8cC9acc42424ae3EBF3beFFFeFcE3Eda6DC6FEAe4fDDe643ccf757f ; < L3tW5B5AOHu83LfVYlurePE60e0rmjfN9WA05vig9C8guDzPoubtwHJ6Xwv1w3Rx > > // < CALLS 32,6907148574289 ; quote ; 58,045248210132 ; 56,8843432459294 ; 0,0204081632653061 ; 4,1 ; 53,4016283533215 ; 62,6888680669426 ; -8,3 ; EbA55Dce4AFEC3DDAaea1fA10c9baD868FeFC0CFeE9E9Ec9d7B0Cd8632de281D ; < b8611hEuBwyg80c945139lYx929z2a62xk2TOayEAbk0s5M4w5F1lnI3B5U9i78W > > // < CALLS 35,6625980262861 ; quote ; 54,6875870286012 ; 53,5938352880292 ; 0,0204081632653061 ; 8,2 ; 50,3125800663131 ; 59,0625939908893 ; 5,9 ; bBDbaDdc1fbFec18aA06a785edA2D6E2E2bcbE1cadd882FfAcaBc6DADADfEFff ; < ExQ1z0V10N4lgSd64S29QXq5fCh4cKFu4A488l8wA67YTqnC9877FSU24FHv2801 > > // < CALLS 38,6344811951432 ; quote ; 51,4669757423064 ; 50,4376362274602 ; 0,0204081632653061 ; 5,2 ; 47,3496176829219 ; 55,5843338016909 ; 8,9 ; DEA8F1ddFEBFecd2A2BfE8E2F3edF6e7BbDd96ecfe2DDf65ddf93B7cbc5927De ; < CWk87RMcUC649mOq21659RXEqlzav054iNrw6WB7D4swMcpi0yUNr1r8469vATjY > > // < CALLS 41,6063643640004 ; quote ; 48,3896143750377 ; 47,4218220875369 ; 0,0204081632653061 ; -6,3 ; 44,5184452250347 ; 52,2607835250407 ; -2,8 ; E5EC65aDEfdb3e3E8d10f28C6fEa4ff0cED3CD05C7e487181fCEc1C9b5A5FED7 ; < ehb3EMd5V4Nj41d7tc6y209jlyTHkN0299i97X476K1XtO4inkF4w6S9K92G3xQV > > // < CALLS 44,5782475328576 ; quote ; 45,4590564027714 ; 44,5498752747159 ; 0,0204081632653061 ; -1,6 ; 41,8223318905496 ; 49,0957809149931 ; -0,2 ; ABbd99adcE5dc5ecdBcEbFDdCDFe6DE88d8e0E5F3db7DcEE8bfce1Cf8EfCBB1C ; < Yo6hyL10I2830O3eu9dg6A4yC3s9Tz0EZ7R75UW6gj8LD2Ne672H8o67n6XwrN4E > > // < CALLS 47,5501307017148 ; quote ; 42,6765659694769 ; 41,8230346500873 ; 0,0204081632653061 ; 2,7 ; 39,2624406919187 ; 46,090691247035 ; -4,9 ; a0c9ad27E3DcBeBCB9FccdEA1CF80bFea23b81CcaAFF9a9C20cd96F1252aEaAE ; < z3li1JJeOVJZg8aHUja8i1x29QxZUB5uafbw49778i0l1Rz0af78fN5Fok44sLpD > > // < CALLS 50,5220138705719 ; quote ; 40,0414910307221 ; 39,2406612101077 ; 0,0204081632653061 ; -8,4 ; 36,8381717482643 ; 43,2448103131799 ; -5,5 ; F8C1c0FAd5FE7cECB8fAF9AddCAdECC0e65DEcBCadcEcD6b7EfA7BC2ED8BfeC1 ; < WJJjl96fgfACeS0Fuav0pjlrPZ8V555l13C1lBacbXu6Wsh99qtG81J1gTpBI73a > > // < CALLS 53,4938970394291 ; quote ; 37,5516227399988 ; 36,8005902851988 ; 0,0204081632653061 ; 8,7 ; 34,5474929207989 ; 40,5557525591987 ; -1,5 ; BcEf9DEb1c1269befaDcBe2dDBFeCA3BEEEee7d3BeC851bdAD73CaaBFdaB38bf ; < IgngC5pba91za50xWV2LF1K80b9Ybz8dmLLo80GXcKt40OT2629RWl8kiRruVz0P > > // < CALLS 56,4657802082863 ; quote ; 35,2035243902198 ; 34,4994539024154 ; 0,0204081632653061 ; 3,9 ; 32,3872424390022 ; 38,0198063414374 ; -1,3 ; EBDFecfada9d8640c0D7da9bfdbBCf67a75DECeDE6ba29fBFec3c11faE6DeAeC ; < 998IUPIMWPX906huHUEfDTVzGde1a8QI1oY3U0iKQolfl0X7iymKo6u14bv50588 > > // < CALLS 59,4376633771434 ; quote ; 32,9928219942121 ; 32,3329655543278 ; 0,0204081632653061 ; 1,4 ; 30,3533962346751 ; 35,6322477537491 ; -3,9 ; BedbBCDfc90Ed9fC8C4E6EcfA5C0Bfe53b3d1ff0DECEDddaEA02ce4e8eBbd63F ; < 8JTDJkrPq8Q9cb2lF70U6K72F4H5yTAbuuXk2E64v3hJr25FdiCc4T28126x1gjj > > // < CALLS 62,4095465460006 ; quote ; 30,9144542159824 ; 30,2961651316627 ; 0,0204081632653061 ; 5,1 ; 28,4412978787038 ; 33,387610553261 ; 4,5 ; 7AFdeCeD3a8dEbACBbe42A9b6DDcEecec9849C98DF2defd7d95A8ef20da92Fca ; < 3eo4lLJ5d8FeVUz0qnRmD1v0D8F1oHIGzvfz0d2toeMno28176RMTrC1H612wBoR > > // < CALLS 65,3814297148578 ; quote ; 28,9628827714671 ; 28,3836251160378 ; 0,0204081632653061 ; 1,8 ; 26,6458521497498 ; 31,2799133931845 ; -1,5 ; 0DB32bcbcefdAbc9Af7C5bCD07FBFa35D9e2dcCbd1Afc1C6bEA047a6FDCadBA3 ; < 4iFwm16F35c7DJH13381D3yLkPbzMQfZp4uP632vJ6ZncBpYja8AZf4T84WSqgoI > > // < CALLS 68,353312883715 ; quote ; 27,1322663162922 ; 26,5896209899663 ; 0,0204081632653061 ; -7,1 ; 24,9616850109888 ; 29,3028476215956 ; 4,3 ; B635dEb3bE0512aB0D1D5ebD5b4E6bFC6DE2D1bC7cdaA0DFD5e5775d0eBCeD8a ; < S0NGpIy2moD0N805u18RjQs1zBC1o2ff6Elz2axj355823iE6Nt9k58Eq8S9a2l0 > > // < CALLS 71,3251960525721 ; quote ; 25,4166017493327 ; 24,908269714346 ; 0,0204081632653061 ; 9,7 ; 23,3832736093861 ; 27,4499298892793 ; -7 ; 1bAfAdCcd70E82d34C5fDddDDafbDA4BCaacc5baAE6E9DCFA3CFD8dAF2de90Ec ; < Mg0Xn3y8Ykh6I88cS08fEhG9zQ85Swc4bta0i000pBJx92PGWo0Q6a7Z0ZYi3lQV > > // < CALLS 74,2970792214293 ; quote ; 23,8098371502222 ; 23,3336404072177 ; 0,0204081632653061 ; -9,9 ; 21,9050501782044 ; 25,7146241222399 ; 5,2 ; D44CDbdD31eb1eFF3eEcFb6BEde9B30EBbA3D5ea9b3e3e6e5d363Ee9ceeBb85f ; < aLLJ2d7e8EXMDF33t5rMwT5LG8n2bEM3thx4NSbGV8M5Rp6Amdkmt2MBaP57f9th > > // < CALLS 77,2689623902865 ; quote ; 22,3059604855858 ; 21,8598412758741 ; 0,0204081632653061 ; 8,5 ; 20,521483646739 ; 24,0904373244327 ; -9,2 ; b51CcaDe30bbEC6aFe3A0a3dC590DA21aCd9fC1eCe4Dff0E74B32b4f6Ac66EEe ; < 992yYCf1y3LLQtR368Lt5dWxhvs8OMvug454vUr8rQI1D7PkJh54MGPAG43Z7t3t > > // < CALLS 80,2408455591437 ; quote ; 20,8990679279314 ; 20,4810865693728 ; 0,0204081632653061 ; 4,5 ; 19,2271424936969 ; 22,570993362166 ; 2,9 ; 1d6A7FdCeCc7ABbABDBaAEF1b2dADbbC1CCa7b4bFCa5B6d9c9aF52F1ECeECFf3 ; < Z5qd6ar2D0Sh159QmVO50Eh206b7w6EhQO0Y2h99l0Xhxe9K2C6Wtw295eKNVCsF > > // < CALLS 83,2127287280008 ; quote ; 19,583415239393 ; 19,1917469346052 ; 0,0204081632653061 ; -5,6 ; 18,0167420202416 ; 21,1500884585445 ; 6,1 ; Edb572eCcf61f8B0fB4aaFCd0f221cEC9B020dfE90debDc2dd9AcFBbfF18ABb8 ; < zV79gg8a97E1wskW86qi4C2nDQ26AFY0hDF56ZwszLI0t2Gb76k0o0Om0eATMpLZ > > // < CALLS 86,184611896858 ; quote ; 18,3534552464126 ; 17,9863861414844 ; 0,0204081632653061 ; -3,5 ; 16,8851788266996 ; 19,8217316661256 ; -4,6 ; adBd8a54adDDe3EA7CEbBc9cd6D8EDAe4CBE93D2cBB5E5De6Df4daBBf6dE8b2e ; < 0hP6laB3Gg1X0z4UqsL6jf0i7rJ54EsD7j74X2x6NToEajY9eHcGZ5x12eIc9O3t > > // < CALLS 89,1564950657152 ; quote ; 17,2038640106649 ; 16,8597867304516 ; 0,0204081632653061 ; 1,9 ; 15,8275548898117 ; 18,5801731315181 ; -4,4 ; 2Dcac05B3Afb6CaC8B20cc96ABaB011Acda0C3d35Cb77ADCfC4A8E3eA0Fb4aAc ; < VmI6sTX4g99z76O1cx8M2GYnTjj8V8K9hJlufZAPo6egu4nj6207Wg0qDW57Dxu7 > > // // < PUTS ; 3Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 29,7188316885717 ; quote ; 0,862212417340544 ; 0,844968168993733 ; 0,0204081632653061 ; 7,1 ; 0,7932354239533 ; 0,931189410727787 ; 1,3 ; 1fDF2CbCdcAfcB8cf3DFe2fbEc9A3b6bEebbE1a6463dAD0ACFed3Dbdf531e5dc ; < g45fn0tRN21npaPLiSwZPd3v3u1n3GBSWl1988G37G6xz8dNc054ZKMi4B1cIzb7 > > // < PUTS 32,6907148574289 ; quote ; 1,30978056879249 ; 1,28358495741664 ; 0,0204081632653061 ; -7,1 ; 1,20499812328909 ; 1,41456301429589 ; -6,1 ; f1bdF0F4C4BBcB1dC8cCBfaDD1a9631f9ca5a4cC9BFEa4AABBdEC1e6fAA9cBAB ; < 82Pk12EJb803E0RZ24LX6zv926XfO6ZP5Mc4281FPV8F7Bl97u991dUw050q28S2 > > // < PUTS 35,6625980262861 ; quote ; 1,88525869259442 ; 1,84755351874253 ; 0,0204081632653061 ; 2,3 ; 1,73443799718687 ; 2,03607938800197 ; -5 ; 2Ad7BecFdA6FcFAF1ef67F3b2C412CB8c7D02fcd9f0cA4d9ceDBD3aFBF64cbab ; < UBBHY8Wa011Vu94P2JXZd8z72wI2866250gh1acVTR98vvUK08irumg97U8b904d > > // < PUTS 38,6344811951432 ; quote ; 2,59778671163235 ; 2,54583097739971 ; 0,0204081632653061 ; -4,2 ; 2,38996377470176 ; 2,80560964856294 ; -1,1 ; 4daA8dd8a28eABbBcf1BAaEffB11d1aFCEb34b36E7EBfABA5acCaa6dCF6beC5D ; < tWfg4FYoa6Nh0YdT3Qpti2XWyAp87Vmx7NN8cncdxL3XuAVYYyhj6FQz1K9t9NdL > > // < PUTS 41,6063643640004 ; quote ; 3,4535646496964 ; 3,38449335670247 ; 0,0204081632653061 ; 6 ; 3,17727947772069 ; 3,72984982167212 ; -6,2 ; EBC9aFa2Ff0FFE58Aec4551d8f8bF0f1ddf4Dd98DAc61bCE9ffA33f3f2BbEBb3 ; < O3MBWAIdw51ou3AH46k8xWSj67LNX2jdHAGZztG9SEvqf6KVm5ac4na2xr7EIMt2 > > // < PUTS 44,5782475328576 ; quote ; 4,45614598276285 ; 4,36702306310759 ; 0,0204081632653061 ; -7,1 ; 4,09965430414182 ; 4,81263766138388 ; -4 ; 2CafEcd0Ec760fEaEFcfBe01eaCAbFA0E0aFECa3cafcDeCFCaEec0F6D39BFD1a ; < tQTfwGzNVXwEQiQZdX8sGoNu07Ey2ZtI0USJk5CCtiK4TCkeq733Z9t5UCPokbxe > > // < PUTS 47,5501307017148 ; quote ; 5,60679485480114 ; 5,49465895770511 ; 0,0204081632653061 ; -8,3 ; 5,15825126641705 ; 6,05533844318523 ; -4,3 ; FAe5baC1eFFCaE10BB49f3EFBBFEDFDb7aaFA6EF6d27AeC5daAad2BBF8EdBc64 ; < CT8kntwL96vUKvR6414yo8N787S7F0rge22Y5DG63s1Y01v1M1YBM12w0JIxZEu9 > > // < PUTS 50,5220138705719 ; quote ; 6,90485922137916 ; 6,76676203695157 ; 0,0204081632653061 ; 8,7 ; 6,35247048366882 ; 7,45724795908949 ; 4,3 ; 6C5abcf4fa1C9daAEabBDab1BFCEf9daBAdFfdd8ACdAbCBEdd0BfeCaA0D335DB ; < xS1W8q0gVh7b41GCYY5wxRhGxqIqgNK9WU7p77sq3C2k75bE580TgEChqJlyVkso > > // < PUTS 53,4938970394291 ; quote ; 8,34813023598858 ; 8,18116763126881 ; 0,0204081632653061 ; 3,5 ; 7,68027981710949 ; 9,01598065486767 ; -6,2 ; 9aE8efBdEcf0DEBaEdbEF5Cf20Ca0EECc91fEDf5f54d1De29ae8Dafbab9CeC2F ; < Q3W8EBPj7h4l18yb4pdD5e6f5Np6v1AYq5eoEysblVmm1yFVr71Fw9SA1KlRN2oY > > // < PUTS 56,4657802082863 ; quote ; 9,93317119154237 ; 9,73450776771152 ; 0,0204081632653061 ; -1,8 ; 9,13851749621898 ; 10,7278248868658 ; -8,7 ; a5F6aFDE9dc40075FaeedD7CEFaA703EDb0EEc14CEFAf9A0aFde6cEBB840df8A ; < ySWfR3y631Vb2S803mMUftz2g8L5haHAp69jFak8wo13zg6v4mfKN8kOrLzJe94H > > // < PUTS 59,4376633771434 ; quote ; 11,6556081008674 ; 11,4224959388501 ; 0,0204081632653061 ; -9,4 ; 10,723159452798 ; 12,5880567489368 ; -6,6 ; 872CCeeaC2F11e6fBAadcEc6FfdCb6DCCe73CB37C8e8331eCaaBEEEF99fc5B4f ; < 7Sxc4v02I5Le27Hymq65gFQx9dzYAEvCZn6K2802E09931X2E0VE64762rl90ntY > > // < PUTS 62,4095465460006 ; quote ; 13,5103796279705 ; 13,2401720354111 ; 0,0204081632653061 ; 7,8 ; 12,4295492577329 ; 14,5912099982081 ; -1,5 ; EcCdfDBDD2ca5b5Bb10C6cce52bccBFeC1fe5d6dA0A0DdE0Fe6c2F49dEAaE231 ; < 2wA7Ca1J50OFM7MU3AeunRR79Nx76R7X3mCUo23QEy87n8qK7G530281CA920CZS > > // < PUTS 65,3814297148578 ; quote ; 15,491947488788 ; 15,1821085390123 ; 0,0204081632653061 ; -3,3 ; 14,252591689685 ; 16,7313032878911 ; 0,2 ; F9a4bFdcD2caC3DFd230dfAa97BAE8dF1bF8ceC85D1cdbdEE0B0Dbe6ED8CFF48 ; < oU9qRHXoJglp45t5E48nF50543NbVHrwZyPI204a2f8Si3Hxr5NhPc6yeQ0Y793N > > // < PUTS 68,353312883715 ; quote ; 17,5944703389458 ; 17,2425809321669 ; 0,0204081632653061 ; -0,5 ; 16,1869127118302 ; 19,0020279660615 ; 3,1 ; 5Bb03b43FBf8EBF535ECe17Ecbf5c3CecCeeEB2ed3BB8ACfc7D25c85dbfDe8ED ; < 5GN7QO1i7eHI8k2rOGbRhQTk37my74EUbEoN7Bl2eFP6sf9WnHXB42BCnPgDmb5H > > // < PUTS 71,3251960525721 ; quote ; 19,8119450773191 ; 19,4157061757727 ; 0,0204081632653061 ; -4,9 ; 18,2269894711336 ; 21,3969006835046 ; 2,5 ; F76Baf89c4Bd2Fb2FdeE48C4ffcACBFeFeca9DD56bCedB83ac0bfbFb6bdac9ED ; < NbPmmN3EMY6aVXP4vRES8M1Xr09IoCGDkKuu55doARV9hz5n32ef2o008R5DvWl2 > > // < PUTS 74,2970792214293 ; quote ; 22,1383197835413 ; 21,6955533878705 ; 0,0204081632653061 ; 3,4 ; 20,367254200858 ; 23,9093853662246 ; 5,6 ; E5Bfa4eaB42DbFCCCA0c7dC72aaBeeba6cfEEaA3Def71AfcD1bA92eecbeb84D8 ; < 01q739057pE1MjbHn58E650ipQTlSu7tvAjzmH95ubkEebnz62CE67Q192DZ1wKe > > // < PUTS 77,2689623902865 ; quote ; 24,5675824242378 ; 24,076230775753 ; 0,0204081632653061 ; 6,1 ; 22,6021758302988 ; 26,5329890181768 ; -3,3 ; E6bD76bfA0B9CdC83395b7B4D2f532Fe8CDCefFFCae1f5BFbdA8cbb633dC077A ; < ZqVr11Y067GN5r8vnJzbZ28B202MQq2WLa1LkxQRX5zH2hm224Y2Ah05yMMQu579 > > // < PUTS 80,2408455591437 ; quote ; 27,0938291719162 ; 26,5519525884778 ; 0,0204081632653061 ; 4,8 ; 24,9263228381629 ; 29,2613355056694 ; 5,2 ; DF4dBF2baC43D9AAFdAcCAe9CAE0Ab4feBB28BE42cCaf6AebbAf771A0dafDFeE ; < n33cLZ22HOP9aWa9KB7sjmq2Eh59t8H5t314gD7Sx0lu05aUl02xN8JrMhtD9Sym > > // < PUTS 83,2127287280008 ; quote ; 29,7113157887105 ; 29,1170894729363 ; 0,0204081632653061 ; -8,5 ; 27,3344105256137 ; 32,0882210518074 ; 2,9 ; Ef1410CFebFe24FFF6EFCc2DFA23a42802C5431A4b2BbaA32bFFA5f8Bd1aAa1a ; < Ora8t7B96X9Evg20Vv4Lndq8w9Cbia1hbx9NLphM67tU3NErcF2Y5p3S6xZ3xcuU > > // < PUTS 86,184611896858 ; quote ; 32,4144951010629 ; 31,7662051990416 ; 0,0204081632653061 ; -5,8 ; 29,8213354929778 ; 35,0076547091479 ; -1,4 ; cEFBa9BB8A1B3b4ad3Ece82bc1AbF3B2e2A90aa373cb9dce07ad2B3bBDdBd6aE ; < dti3Y112QBf93ZGgw8W1b9XrS4pv2M9cX5KT6rKDb2ctsb6WHb41dOUbEgSMJIZs > > // < PUTS 89,1564950657152 ; quote ; 35,1980431706479 ; 34,4940823072349 ; 0,0204081632653061 ; 8,1 ; 32,3821997169961 ; 38,0138866242997 ; 1,6 ; bFCE6cB9a4aFfCfEa9FCE8cBDFe3d1aC556AD38c0A5AFfF5B4eFcC2E88bd8cEb ; < i7o6o854mB830GCY7GtHsmKoF5wX48xy56f0VT3M38c0xo018ch9C7GFd8I1B896 > > // Futures_Eurosibenergo_OJSC // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 45,759312 ; 1,14 ; 39,139747368421 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; AB9CCC1F4374F3f8354EecaDA1DBb5EC4DF552Cc9F0376c3E9EaffcfEE3aefCA ; < dhZZvf0L571c01a7t6d069KLZUw9HWI7D19kizRBKsjfF77zeuBMr2H5oQU2s1gJ > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 45,7595117944225 ; 1,1400057 ; 39,1397219280767 ; 45,7592617944225 ; 45,7597617944225 ; 0,6 ; -7,5 ; -3,7 ; -6,7 ; 9,6 ; 9 ; 0,96 ; Future47AP19 ; 56DD5f4f6CBaa83E3ae5aBea0de9fE8fF2BCbdB1c767ef58f9ab8B7f55BdfEfC ; < jLwe0Fc70P2rGvTr8N21Wga0pnnwzwG3qIJ3qH1m8Mvf4Wz669P0CNZa3kySoVvu > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 46,2648465541608 ; 1,1539244617613 ; 39,0934793283992 ; 46,2645965541608 ; 46,2650965541608 ; -3,1 ; 9,5 ; 8,7 ; 1,9 ; 7,4 ; 4,3 ; -0,74 ; FutureJU1990 ; 5B538FeBC64dcCB7Fed2cCcBafFcAACA3fBf9feA3fd7DE9dBe3A081bFEf319C9 ; < dh06ZdWgln4KuvcSl7ew44KJeV0Rw19NF5T2682r1QKX49Trq21gf5k7Y7HA6C6c > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 46,7752491865243 ; 1,18199922150755 ; 38,5729949186143 ; 46,7749991865243 ; 46,7754991865243 ; -6,7 ; -7,2 ; 8,2 ; -6,8 ; 8,2 ; 8 ; -0,35 ; FutureAU1934 ; CB7CAb1ceE0Bc0fd4d44DFBEfEEaB6CFdBe3A21B15C6dD9feEFbC4a4A676a1dd ; < LNjyJEfMdCs9b416LsP6DgY6Zb8fWGGOSEWv1ToJX2f06cJbH6Ddy6mFV5k6S8eP > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 47,3492614701451 ; 1,22550278283675 ; 37,636600531043 ; 47,3490114701451 ; 47,3495114701451 ; -9,8 ; 9,5 ; -5,7 ; 9,5 ; 9 ; -2 ; 0,91 ; FutureOC1974 ; B4EDb04DfdaDf3ECeED7a75deDCDC4fEe0c9fdAaEFbf6fAaC0c2aEEbcbCCEc8f ; < C0d0XDpqr348PI7YEXumRthXm2Yc6F7qE0S3w6twO5Ug0TmFDpRnrtR04pjtPy7I > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 47,9402903426262 ; 1,28606708760987 ; 36,2766637172266 ; 47,9400403426262 ; 47,9405403426262 ; 9,3 ; -6,5 ; -3,1 ; -7,5 ; -8 ; -6,1 ; 0,91 ; FutureDE1976 ; ffd8Ac9CE9ccbE2dFe1FFfa04c6B35D4b4BB0F1B4b3cFc66af0cb78eeCDABA57 ; < 4F5ICm27O60CaJ6195YNbYnPwh6NP6gKe6o66HMqt9PbAMfjkhc74pRJmXt8jg2c > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 48,5228945842474 ; 1,36599914885628 ; 34,5219068949454 ; 48,5226445842474 ; 48,5231445842474 ; -2,1 ; 1,3 ; 9,5 ; 3,4 ; 1,2 ; -3 ; -0,2 ; FutureFE2076 ; 1AcabABABA3ACbE8Ee67c573ABAAc19AfAeb28A4e5E27c6ff0fc8cf7BEEe3C11 ; < f1JnAZgyMb65qk3Cpa38sNW13yNJD38eMY83qzr6Fswu8AmKRinhPk1TIdVvKXZf > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 49,189063953024 ; 1,46838351706136 ; 32,4987851480824 ; 49,188813953024 ; 49,189313953024 ; 7,5 ; 3,2 ; 5,1 ; -1,1 ; -0,6 ; -9,5 ; -0,09 ; FutureAP2088 ; faaFEafdaBE98D7DDEDF8BCBDeAed6CEEBdabBf26FB84D6af0Ed13ebfa28fF2a ; < 34PI7F081grEcumGyFwi8mnCtYY0op0m9uSjW9jEC26Ezkq9riEuW2LR3pMVtKTH > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 49,8792802202895 ; 1,59760105735729 ; 30,2213615474181 ; 49,8790302202895 ; 49,8795302202895 ; -1 ; 9,1 ; 5,2 ; -4,4 ; 2,7 ; 7,2 ; 0,25 ; FutureJU2031 ; ce78e3Eed2EB0dcEB0f1FdCbeBc1e8fdc3BfCbEb7cA5cAee8bfbc2BebdD3Bd2F ; < vTesYuY7PyIW8aVMelxAvpel3nbbv1Yi7RuI8suu0Ho2aG2cT1NwXCf52u04YQ02 > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 50,5763634795173 ; 1,7592523917277 ; 27,7487819924736 ; 50,5761134795173 ; 50,5766134795173 ; 7,3 ; 4,3 ; 5,5 ; 4,1 ; 4,4 ; -5,2 ; 0,15 ; FutureAU2048 ; E17a4d3dff8Ca49fcBadE521E0aeeEEfE9A6BeAF68aBBdBed4E19bAeFFd6bfDd ; < nQ5P45F13A0M2c4x77UwDOw7YXI49xrR3XK9f80Him9Kv95IMq4pLrVTd9Gg4aEM > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 51,360721530577 ; 1,96085870954699 ; 25,1929741702005 ; 51,360471530577 ; 51,360971530577 ; -6,3 ; -3,3 ; -5,3 ; 9,7 ; 8,4 ; 8,9 ; 0,23 ; FutureOC2031 ; C49BC0C4dC7c9b125a00DF37aaf83fba50d43aBb0Bc7c9FEB69d85b51EeEdd7F ; < CKg5w7f9EO4mjy5m0c2lxKLT3nMg6u8H71yWGBXVER5QzyX9x9cBX02RTZWu1k7Q > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 52,088035377962 ; 2,21214586603078 ; 22,5463837072475 ; 52,087785377962 ; 52,088285377962 ; 0,7 ; 9,6 ; -9,2 ; -6,6 ; 7,5 ; 5,5 ; 0,94 ; FutureDE2088 ; ebF8fF3d2cC20C7A3aCb8Ebb7F2D78CEFDdbAbAdFFdcfAE8C1d7eCDe9a0D0D5C ; < nmBxXJWxH2a13c2kDM942IS2U90S9R9vGvxXVu8H9R78dyZt2lF5Pg35SN0zfZnM > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 52,8654573668434 ; 2,52591962372554 ; 19,929192231727 ; 52,8652073668434 ; 52,8657073668434 ; 1,7 ; -1,6 ; 0,5 ; -6,9 ; -6,6 ; 7,9 ; 0,12 ; FutureFE2175 ; Ac8Fb0E9caEDf3D420fce4DCD2EB12d0b61F5AfC9efACF365ea7A809ccC2FEc6 ; < W00690c9Z56aO6uJpQW2wUFxYyeM6uZkQ5I0w7Lxr3rji20rGhme91A16lp5eGUp > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 53,7722233355309 ; 2,91910679827428 ; 17,4207797286896 ; 53,7719733355309 ; 53,7724733355309 ; -7,8 ; -2,1 ; 8,7 ; 0,1 ; -4,4 ; 7,9 ; 0,14 ; FutureAP2158 ; 7Da181CCaAeAaebCEF4aDAf59Ceec18a6ce2C0DA08607BC6C6EBaEBCFbd9560c ; < mitI41Ne3Xi98871Tz3v9b3WhLsO481DCF37GZUJ3ErOKl94Wh0gbmHkXNH68N5M > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 54,6266189290596 ; 3,4140779814911 ; 15,0004016385125 ; 54,6263689290596 ; 54,6268689290596 ; -6,8 ; 4,3 ; -5,6 ; 5 ; 0,2 ; 0,1 ; 0,63 ; FutureJU2141 ; 8f37bffCeFD2cE912a88d789e6aDD6ecbEbfB2cc06AA0B9eCadAd0Bfa73E3b2F ; < 6vQ298I2hAU0et6SO1id26BTr7ed1z54QYrnJnCK1F0w02GQMM3rtO05ntoJ8mcq > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 55,4405143473106 ; 4,04175289739112 ; 12,7169480061724 ; 55,4402643473106 ; 55,4407643473106 ; 2,4 ; 0,1 ; -4,4 ; 4,5 ; -4 ; 1,3 ; 0,23 ; FutureAU2124 ; 7cfb143456409c57290B7B0b9e007CdDCdfaD8E8F6cBFb879Eeeee72cbd5FaF2 ; < 3uWAxI20GAqH7c0DvZq8B790pdqR2wu9D07DAF7L9Abwbtw7yYT817Y4yC1Lx6c4 > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 56,4031083676518 ; 4,84242213335702 ; 10,647705799773 ; 56,4028583676518 ; 56,4033583676518 ; 6 ; -1,7 ; -8,5 ; 5,7 ; -4,7 ; 1,4 ; -0,9 ; FutureOC2116 ; 896adA09E4dC6406C4Ed233BaDdf6DF3D30E8AEACEfa3aCf1adb4DCAAbbbadbF ; < 738fE7u9wwcEm7W9S9NyA9g1XCNrxQ64kqD4PUym0PNMSf46jggsL549Qm4abMAy > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 57,5092633922582 ; 5,87290920690256 ; 8,79229566918323 ; 57,5090133922582 ; 57,5095133922582 ; 9,1 ; -4,6 ; -8,1 ; 5,7 ; -8,4 ; 6,4 ; -0,74 ; FutureDE2151 ; EF2BAe32BBDFEd7142daBcCf8c31d185fCB5A20ea28F6FcFABeb36Bb2e4177bC ; < 08fpjf8KmwR57S10pa8roMx1Qrv9v703TYClvGG6vETpu4mnUAPiDeM0Ub832c3Q > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 58,5543156365361 ; 7,20899488896988 ; 7,12239660845468 ; 58,5540656365361 ; 58,5545656365361 ; 0,7 ; -2,3 ; -9 ; -4,2 ; -7,5 ; -8,8 ; -0,13 ; FutureFE2249 ; Eb2e2DbDBc2F1cf50aBBcbF9C4A6CfFafFd9675EADc2ceb8eaCDE2cCcbeDe5fF ; < X6L0JykH355qsdpjzRerO1UsNr2ginrg11mX1iU2prAHuB855OX7D36dxuk654cA > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 59,4376633771434 ; 8,95530811874447 ; 5,63714331087433 ; 59,4374133771434 ; 59,4379133771434 ; -9,6 ; -6,5 ; -7,1 ; -0,8 ; 1,9 ; 6,8 ; -0,26 ; FutureAP2268 ; fbBaC6E0CdfB37aEc5a7acCAFd65FEbEAfb3E1FBEc6EcbfDB3a1adeceCEBDECB ; < 2JNYz68q3E0c996DiN2GIQ4pf4xa0h14cndNfrJnwJjdOZp10dsZJw0W98T21578 > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 60,655856332567 ; 11,2603814837049 ; 4,38666087115637 ; 60,655606332567 ; 60,656106332567 ; 9 ; -7,7 ; 5,3 ; -4,3 ; -7,9 ; 9,3 ; -0,74 ; FutureJU2219 ; 4F0aA8fF7CfB9Dbc73fe4Fafb71DcAaaB9adC4EAABbFEef1fAebb926DCfeE5CE ; < MOYB95Q2t5p9cVu1BV06cUerB5WA4do57T8Q59exNa68iPvaC1OINZeaNqr8YGod > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 61,626383455219 ; 14,3305096237484 ; 3,30036230903418 ; 61,626133455219 ; 61,626633455219 ; -5,6 ; -0,1 ; 6,2 ; -4,9 ; 1,2 ; 4,7 ; -0,34 ; FutureAU2266 ; eEaEC2ff3761b17eD5B0Fa5D2eCfbcFAabA60d4A710E795DfbaBEBb541Bf7ACA ; < Fs0qO1yxrfEm36FkH1anu9s49e7CG56TVSn395zXqNMv4YtaBRP6MYASjnJJ81LP > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 63,052746256575 ; 18,4589404927482 ; 2,41583777689439 ; 63,052496256575 ; 63,052996256575 ; 4,3 ; 3,5 ; 8,6 ; -8,5 ; -0,4 ; -9,2 ; 0,27 ; FutureOC2223 ; abBf1EDfb8a84C3bAfEdfFd71d4C4E932B1caab3d1D3fe8126F6Eadf3BdF7Fef ; < mKCnm46QDZay8AZs8i6M91264c735tD0B6e609o7abHns8IR8mGSfsN4z5F091F8 > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 64,3656892307944 ; 24,063537883637 ; 1,67482236161801 ; 64,3654392307944 ; 64,3659392307944 ; -2,5 ; 0,8 ; 1,2 ; -6,4 ; 2,7 ; 7,5 ; -0,83 ; FutureDE2236 ; 23Cf8DFFeEE879cF104dD4221D5D39fc9b93bf821D7CCdDB9b9cf64Dc1EB0ceA ; < hV4s3E89Z4V74sl4CvtjC6d9EG2UO9f5v1j6mCpG45EX3LJ4992nMRy12q927tnI > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 65,6048616975017 ; 31,7506052749813 ; 1,06625546597679 ; 65,6046116975017 ; 65,6051116975016 ; -8,8 ; -5,4 ; -2,8 ; 9,6 ; -4,6 ; 5,8 ; 0,08 ; FutureFE2310 ; EE1efDc61FBF3dD0DE6b04FDBb5CDaC525ebd8bC0477e5B62aDAbBaBAdcd2A4F ; < G82TB6165xDa1CLgtaL6BCn1Ch5g4UI3a57JoUxmJl8sIG39sB1DxzJ836G8YVSU > > // < CALLS ; 5Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 26,8861116677654 ; quote ; 68,7696516082759 ; 67,3942585761104 ; 0,0204081632653061 ; -7,7 ; 62,9242312215724 ; 74,6150719949793 ; -3 ; 6b7B429d4eCEEfCcB55D37A5dDFB0E045C744e0AdCC9F7c0dEe5F0fDdacbe9cd ; < U5fxvCYGWQxncEBz66ATJI4E45PWGwyc5RqmEZ3V2kFRcldJS0IR68z32G3AzE5I > > // < CALLS 29,574722834542 ; quote ; 66,0394899014161 ; 64,7187001033877 ; 0,0204081632653061 ; -2,5 ; 60,4261332597957 ; 71,6528465430364 ; 0,6 ; afDDF8Dec5cCf61DaACBeD1A8FcCd8Adb19878ca98494Cdbd49Fe91dDefEC9dF ; < vesRlMyKFTl2FDOmYT0LlFDAp9Vd7pnI0tVk5ESEc9IMt5yQJtaO5BCHkII1Vo95 > > // < CALLS 32,2633340013185 ; quote ; 63,4088182749812 ; 62,1406419094816 ; 0,0204081632653061 ; -6 ; 58,0190687216078 ; 68,7985678283546 ; -2,6 ; 42d3056c5F84bAE72e5fcC47bBaCb0be5500cBBDdCAEdFce8dDdA3BCc0BeefdE ; < uXnCKnjW3evyTT3NA5aWDxj87GgzGm2IRfPZ3Jrx9i61cUX7fy966xkoCXl7dA9n > > // < CALLS 34,9519451680951 ; quote ; 60,8785228676813 ; 59,6609524103277 ; 0,0204081632653061 ; -6,9 ; 55,7038484239284 ; 66,0531973114342 ; 7,5 ; FCBddeD66ee61C72FCdEC47b0A92B8FB7d7daDBc9cBE45Ba0d3fDd5E37EDafCa ; < 8mdk105Y8ovkYgY268u6xyc231z0RFTHW1dn27l0t1r01qAFcPr7ax8C4G9Ni47g > > // < CALLS 37,6405563348716 ; quote ; 58,4483243190617 ; 57,2793578326805 ; 0,0204081632653061 ; -3,9 ; 53,4802167519415 ; 63,416431886182 ; 9,6 ; dEdceBDCBEdaDfABbbb80DdbB0DBf9a46D95fcd1D3BcafECA0ABAa7e0EACACAB ; < wy6TtnCGZ5lfF1z1378OKd8R6eMXO37DJ5H80LXFJPcAU18zne85dpdiSIfldQ5d > > // < CALLS 40,3291675016481 ; quote ; 56,1170355544163 ; 54,994694843328 ; 0,0204081632653061 ; 8,9 ; 51,347087532291 ; 60,8869835765417 ; 9,5 ; e5D6FFf2CFcBbA2bbEB8fBEB45e3279EA5bf6FacFaCeeeFB3ceE7529438b7FaD ; < TTI0UR1JSBv4dwG3c3drCJD096MtcSO8Is8JVY1vV9a5VNzLsd7jbCJEbGT98dF0 > > // < CALLS 43,0177786684247 ; quote ; 53,8827769498618 ; 52,8051214108646 ; 0,0204081632653061 ; -2,7 ; 49,3027409091236 ; 58,4628129906001 ; -5,6 ; AAd43cCa3a07fbB5BDBCedcaD3A5F8DF1AbBdf9AAEbfBAbAd1DdACf989A0abA5 ; < 7zNoir7qOi4sCFD95cI1wplJ9oz0Z0348mHWu4Wv43cyUDDe5NVk1RZ2mPvB8fKW > > // < CALLS 45,7063898352012 ; quote ; 51,7431529046748 ; 50,7082898465813 ; 0,0204081632653061 ; -9,6 ; 47,3449849077774 ; 56,1413209015721 ; 4,7 ; Adb4e30Aa2B8b8B8dF2e2cbbe94f5C9cc3DEFfB33BbeEbA1bf26d7bdb61DF10B ; < 8AdCftan3855o4f9D77PnbtT5YY0xEqK7cuU7A2BoDtJrZLBl01y2zmfu083c3x5 > > // < CALLS 48,3950010019778 ; quote ; 49,6953949372565 ; 48,7014870385113 ; 0,0204081632653061 ; -3,2 ; 45,4712863675897 ; 53,9195035069233 ; -0,4 ; A76abAfcd4Becf0ce6cCD1bbF8aDc2ae5Dff118AFf641faE88c83AbE7A0ae01F ; < 5ju0kXf2fLEx7U68evF1DVjnniH3J7i3j2FVt75VRa8iX0lGtAUC0BCF784Y0Y7E > > // < CALLS 51,0836121687543 ; quote ; 47,7364764920315 ; 46,7817469621909 ; 0,0204081632653061 ; 6,3 ; 43,6788759902088 ; 51,7940769938542 ; -2,5 ; CEC13cA6dBDe8622aD3Afd6FF7F6d3DCfcCc7bCCcFeCcA4bfFbcccd7b1EEe5cE ; < 3S1E727rCMZ8IN5LwNc41kSAM4PaNv0pCWDpjT5e3R5f121Fn0jhG9bcAuz7wTBW > > // < CALLS 53,7722233355309 ; quote ; 45,8632042431598 ; 44,9459401582966 ; 0,0204081632653061 ; -7,1 ; 41,9648318824912 ; 49,7615766038284 ; 8 ; aaCa77aac14ceEE4D8CeFAfE7cE1d0933b25DbFfcCBf9B1DcbCDAfDA0CB5B6ED ; < shlL9wubc6r07GchBJ85JZp85QEeqqR247j1oLL3dFG2l0imy1n72V5S3zeH6FJd > > // < CALLS 56,4608345023074 ; quote ; 44,0722900961976 ; 43,1908442942737 ; 0,0204081632653061 ; -5,6 ; 40,3261454380208 ; 47,8184347543744 ; -7,8 ; ACed0Fabeb13AFabE7bFd903caFABbdEDF0EeDcBbc71d2FBDaf92e0091aFF7Dc ; < FxkKuCejKPnZ1HDvK9Knxz9tj6Mwvs5FCRq9jZtec66J3IX4x01xEHhfZ1B1CbS9 > > // < CALLS 59,1494456690839 ; quote ; 42,3604074685174 ; 41,5131993191471 ; 0,0204081632653061 ; 5,6 ; 38,7597728336934 ; 45,9610421033414 ; -6,3 ; eC5ffEDB222aBd02c1B47bBCA19CA4110df9bf2d7fDD37BCD7bdfE1FdF2c7AEC ; < 4MFuMrD6So758CkL5qP7BUkhWGtsSMBa92Fr3043jiFyYg9VyRx64eDQ9ACaVoQ6 > > // < CALLS 61,8380568358605 ; quote ; 40,7242348442273 ; 39,9097501473428 ; 0,0204081632653061 ; 2 ; 37,262674882468 ; 44,1857948059867 ; -0,1 ; daa46c1daadF8cBEeAfCdf0e36CeDea8FF5c5aC3b96245aaD9e7cddAb9BB3A45 ; < q0C7831e0gT2vaerH0Mvf0O2fG19nWOcUealpIAofktHG6QDvqCJT1H6894AwDi9 > > // < CALLS 64,526668002637 ; quote ; 39,1604890792011 ; 38,3772792976171 ; 0,0204081632653061 ; 7,8 ; 35,831847507469 ; 42,4891306509332 ; -2,7 ; AEFedEbBfE0CC5caBFEFf6fD8bbbF7CfBECDbEAdb3dFFadCaD717dCF6eff9eAA ; < 08B5466QwpUswH6SFiD82bj27KqqefMqU0367YaHlOTGvHbt8Sy5ThOKF2aa2d56 > > // < CALLS 67,2152791694136 ; quote ; 37,6659504849378 ; 36,912631475239 ; 0,0204081632653061 ; 5,3 ; 34,4643446937181 ; 40,8675562761575 ; 9,4 ; dcc5E7FbaFfA63179EF3840ce9c1901a4ccfCeDCA1cCBFBfBaeAebe5f8EeCd80 ; < 24TWX29m4kz9QBesfSJus3QY3Vwqj0O2pNYJtQ3582Yv5bV9JpnDSS6j83vqTR25 > > // < CALLS 69,9038903361901 ; quote ; 36,2374813440611 ; 35,5127317171799 ; 0,0204081632653061 ; 5,2 ; 33,1572954298159 ; 39,3176672583063 ; 0,1 ; d8d9f62cE09dEFDF329758FADbddd9807dE2eEDBb5D3cAF7aBC03fB955f2af0b ; < 5Wdxi121ptLhsJ39BVIsyP1Zf2NY1FNAWxO2506ZA9NGog43mOsmb2pq0454kuca > > // < CALLS 72,5925015029667 ; quote ; 34,8720391984027 ; 34,1745984144347 ; 0,0204081632653061 ; -1,5 ; 31,9079158665385 ; 37,836162530267 ; 5,6 ; 86b2e82D0DDD30Bbb27f1CBACbADfDD022FFccEDdB7ea1B7eBA2DCf82dACbd20 ; < 43WW6iSdc94dZrplx3TV4kpdvSE9x6n6zs1F910puE6zqlIOqmF817p6kK48xFyA > > // < CALLS 75,2811126697432 ; quote ; 33,5666859942514 ; 32,8953522743664 ; 0,0204081632653061 ; 4,7 ; 30,71351768474 ; 36,4198543037628 ; 4,2 ; 1bcAAaDD4AFfC2c2B9e3aFED8C00EB0980Afd8cd7FB8c369baadECD3A8f3Bd7b ; < lLwPFL34o1g17EX7p3Y1Z7myI1jn320zL1Km0zP1B06z2BPj8Y8d4Tq9wWXfkozZ > > // < CALLS 77,9697238365197 ; quote ; 32,3185939599338 ; 31,6722220807351 ; 0,0204081632653061 ; 0,8 ; 29,5715134733394 ; 35,0656744465281 ; -5,8 ; FBC51C6CE7D8aAbBEFe5dB89B886bE4Ce3AEF32aE6cBa0eAAc12fC4549FFCAdF ; < DF0kwlKEHkF1yVlMR50Gdqib8Ov3W3O1H32zPngD07997KS4CDLpJ76n8PE95y4H > > // < CALLS 80,6583350032963 ; quote ; 31,1250489205501 ; 30,5025479421391 ; 0,0204081632653061 ; 6,7 ; 28,4794197623033 ; 33,7706780787968 ; 8,4 ; 0eedcA4a6C6FfEaaC5711c7aF7EFeeFFED2cAaDadeAbBedf5Ddb46aAddBfdbC3 ; < 579840nFBMaU8UYfp4Z75xXzQo4J9l9Z17eog6ec8yekH16J02poYn7499mwAM3T > > // // < PUTS ; 5Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 26,8861116677654 ; quote ; 1,45814086476824 ; 1,42897804747287 ; 0,0204081632653061 ; -8 ; 1,33419889126294 ; 1,58208283827354 ; -5,9 ; 7Beb6f63C7A65ffeeC9ee4f6C3b26dAaEb3def2464d9dcDbFAC0d7CA7Ad201a6 ; < U0OQJt71614DTLR4h8Kg0vUqZP8DXjo1Inu39a7ei0I1r30AzMW4C3eL3xAxzffZ > > // < PUTS 29,574722834542 ; quote ; 1,99682808355766 ; 1,95689152188651 ; 0,0204081632653061 ; 4,8 ; 1,82709769645526 ; 2,16655847066006 ; -1 ; DBAaAAeB6e9F94ccfa5cBDcdC7f541AefcDfEE4Fa1C35a8F24ECb5fbc1A5a87F ; < lno664zv5t4bFV3jZNzHF18a51j1io8InNNv0zNhiuWGS0Fp0Agbi9z10UP775B8 > > // < PUTS 32,2633340013185 ; quote ; 2,63500538277204 ; 2,5823052751166 ; 0,0204081632653061 ; 7 ; 2,41102992523641 ; 2,85898084030766 ; -8,5 ; AF06cCAFE1bbf39fBA7FE9E67A439Db1FcEaE460695a8DEC988f3aE2DA0AFbEB ; < OQ587L1MjAB1hZy6c3e6Q1GOhc4K7y6N8iCgUPfjP17KMfe9z05sApmBJOeD0HX7 > > // < PUTS 34,9519451680951 ; quote ; 3,37355890112138 ; 3,30608772309896 ; 0,0204081632653061 ; 9,5 ; 3,08680639452607 ; 3,6603114077167 ; -0,1 ; 805bEC9Fe4e5abFABf51F4E69a76dbeB39AeD7FcD3Af1DdAEF17fcFA2AD4B1e8 ; < 025K9xWOnDeTVblLAQIneAGDcSCO80tMrxDDBqe9f55h5kqeiJkfa5nz6xlY1tOx > > // < PUTS 37,6405563348716 ; quote ; 4,21220927815105 ; 4,12796509258803 ; 0,0204081632653061 ; -6,5 ; 3,85417148950821 ; 4,57024706679389 ; 0,5 ; f9dEaE5FA1a73adCeA7Adb5CeDfAbCc7cfb6bCD88dAd1AcbeCaE0ccAdFD5C18F ; < O8nyVsnf46Z6WyBI5Z7Fi13JHv3WXE2QmCl4mWAB581D3qc5Td4gFg3WX6W6VjzP > > // < PUTS 40,3291675016481 ; quote ; 5,1497694391549 ; 5,0467740503718 ; 0,0204081632653061 ; -8,1 ; 4,71203903682673 ; 5,58749984148306 ; -2,7 ; 4C142F2C4dEec6EDFEa20Ac05EbbFbd4dac73aAfCc2F86eDe0fbaa0BB3dC35EB ; < 3n01nP6ijsEDJWNS6z063o30m2Tsgb4RaGr51e5a42Vio8FeV80Pz6O5FY6odHYl > > // < PUTS 43,0177786684247 ; quote ; 6,18435976024961 ; 6,06067256504461 ; 0,0204081632653061 ; 3,7 ; 5,65868918062839 ; 6,71003033987082 ; 6,3 ; Db8CbbEF2Fcb4Bd1DC8CABfd7DE032FFe1C28c9Fcc26ECeDc8B4E2578dD8303a ; < 45II9ksa5B93fjj72FgB981EItoob9SCpIZc1bE7750bKPK07T8biS8CAj7PDLLA > > // < PUTS 45,7063898352012 ; quote ; 7,31358464071178 ; 7,16731294789755 ; 0,0204081632653061 ; 4,1 ; 6,69192994625128 ; 7,93523933517228 ; 5,4 ; AD2bB468BaA6EBeBEe3B75Fc9672dBEAbdDCbEf81E8eAADcfCbec2eba2AcfB6e ; < i3BM8411Oi2x8DBbhM1PjpkB1N05gPFPo1n4dMbLB0A0vObg3fEAxyDEZ405J8T4 > > // < PUTS 48,3950010019778 ; quote ; 8,53467559894273 ; 8,36398208696387 ; 0,0204081632653061 ; -4,5 ; 7,8092281730326 ; 9,26012302485286 ; 2,3 ; fBEc6AabaaABfc44B73DFDC7c89dcBdDD4FBfe9c9eD4a64Cfacc4EAD537ddcBE ; < F7N1np2yAzuM9Hd9a73ptqhBCPr5L7Rs5PauM435szS87EPn1Mropy31ywnPUrmP > > // < PUTS 51,0836121687543 ; quote ; 9,84460607936701 ; 9,64771395777967 ; 0,0204081632653061 ; -2,4 ; 9,00781456262082 ; 10,6813975961132 ; 8,2 ; aDd6eCcFbfE16eFdBF19dbFecAbE66B3EEabD006c9EDeF4EaFc6DFFF1bb1FaE1 ; < 3c63P5oLiq3uTANLL7OW474B9N4F25X70Jp3F8z5jP9od7Z4PUf6tq66W0zq4W1N > > // < PUTS 53,7722233355309 ; quote ; 11,2401827561445 ; 11,0153791010216 ; 0,0204081632653061 ; -1,1 ; 10,2847672218722 ; 12,1955982904168 ; -7,2 ; BdAcfF191fEf3Bd128bed8F0FDEEeccced8FF1d6a0a1FF8B29Ac1c0CDbEaAae2 ; < JHUWmW3dSbqW06q98pkbjdqSVlqhJq0uz9u7btm578cpN2xxyU320D59E1ep1Eey > > // < PUTS 56,4608345023074 ; quote ; 12,7181175348316 ; 12,4637551841349 ; 0,0204081632653061 ; -1,7 ; 11,6370775443709 ; 13,7991575252923 ; -0,6 ; 3Fd9Ffc7eCdDC92CCdD52CdB6cfc9edaf5EcFFa97Eb2693CCb3Edba9cAA0fa4D ; < 3e276z1n99HxM5s2md3AKIlN5AO99wF1I6MYGo3dfGmHtyP7u8AOmTtw1W7VB8M4 > > // < PUTS 59,1494456690839 ; quote ; 14,2750838328006 ; 13,9895821561446 ; 0,0204081632653061 ; -9,9 ; 13,0617017070126 ; 15,4884659585887 ; -0,4 ; 1dD2f0a0DCDDDa7eE0a3ECbaEE6bD6cfAFaA42f2aDbcAdAa3ddbEBd6CaDcAbd5 ; < XJUa27JA3CA3GQ2pqTxbh4ac7p7dq2YhO4Xf3VDEP8l0ON87g5xz3o9PYe6mixh7 > > // < PUTS 61,8380568358605 ; quote ; 15,9077601341598 ; 15,5896049314766 ; 0,0204081632653061 ; -1,9 ; 14,5556005227562 ; 17,2599197455634 ; 7,7 ; f1BAce0ae6aA39B6ebEce62C0Fe0CdA21C2ba91Acd6Aadccefd2a79F1dEBdBE0 ; < 0vS816Qp7sIqr04UY146Ui6GM28FtB2NwqB6Fi0UkzS4PL63B9W80WFY95u18sDy > > // < PUTS 64,526668002637 ; quote ; 17,6128632947828 ; 17,2606060288872 ; 0,0204081632653061 ; -6,6 ; 16,1157699147263 ; 19,1099566748394 ; -4,2 ; fc7D0eEF98aa853CD4B2FbAEBCb5Cb5f04aCaa70A9efcEDFAA94da9F94aFDefF ; < 4pRRTPV4gnytP71Y6l1n6mSL8s2S4vk5OYzPQeCeJ08RS64ur7cT9k484oL1Qxdz > > // < PUTS 67,2152791694136 ; quote ; 19,3871736261687 ; 18,9994301536453 ; 0,0204081632653061 ; -2,5 ; 17,7392638679444 ; 21,035083384393 ; -2,6 ; 0096EBdA1bCaFfF59bACCF20d1df1bBd2acdFfb4DdDcACBc741dde37E5Fbb9CC ; < 29Fm1X552lfEb42U2dnx7w1NV35H6MCSQ41Qe6S6406YHT4DPuWSf9Yx520mbID6 > > // < PUTS 69,9038903361901 ; quote ; 21,2275534109413 ; 20,8030023427224 ; 0,0204081632653061 ; 4,2 ; 19,4232113710113 ; 23,0318954508713 ; 6,4 ; aa0Bb0ba0ce129fF01efeEEc39fC9Ee2219dc0f6b7bDEF8C1a37BFabCFcce4dE ; < L2OkvjB4lZP0B18r7pCKxw02L763s28hj5E9MUIln3x2MNI6ZRD64tTC1sA38zn6 > > // < PUTS 72,5925015029667 ; quote ; 23,1309601909321 ; 22,6683409871135 ; 0,0204081632653061 ; 7,2 ; 21,1648285747029 ; 25,0970918071614 ; -1,8 ; bFe4D0EbAe7EcDEF2FDe5fF1C6AC34BdCfff5AF75ACeA4DDdEE76BaFbBc99dBA ; < BkUGl5yUKlZ0w19l687HDx5oSGb7v3Xj1cD15b8VWgE5D101j3Bj8GHLWhFbokc6 > > // < PUTS 75,2811126697432 ; quote ; 25,09445591243 ; 24,5925667941814 ; 0,0204081632653061 ; -4,5 ; 22,9614271598735 ; 27,2274846649866 ; 9,8 ; 4CEFCf7c9D6EEBA8e6aA99BE8adaa7dAcC5B0D4cD9D9aDb80bcF0a8fde3ed6ea ; < 5BOkdeGm26fcb35GZiimHjDgW95rSceJGR84t1B41T8UMh9OM8j9VXXy08qvM6Ve > > // < PUTS 77,9697238365197 ; quote ; 27,1152128037616 ; 26,5729085476864 ; 0,0204081632653061 ; 2,6 ; 24,8104197154419 ; 29,4200058920813 ; 8 ; C11cd8F9AecEbfAe107b4D3fC1ec633F96D6ACabb55dBBEFCc24Fd8D6F8c54A5 ; < PC9RRUB9mzh7EcFpgGkD9AlUZgST7lKvLz27xTYKl688QNOdJ3U4YdN69k0474ya > > // < PUTS 80,6583350032963 ; quote ; 29,1905166900272 ; 28,6067063562267 ; 0,0204081632653061 ; -7 ; 26,7093227713749 ; 31,6717106086795 ; -5,4 ; 9b84cf8FfA2fAcebD31aFf3dBEaEead8cCF3f9E7EEb032bdC0E516D9cF4D7A6a ; < u55zI7n8c00OQW3DHyDuiOo051NWIZC3O61wE9tsL499Z95047qL2bT55913R7fx > > // Futures_Eurosibenergo_OJSC // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 45,759312 ; 1,14 ; 39,139747368421 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; AB9CCC1F4374F3f8354EecaDA1DBb5EC4DF552Cc9F0376c3E9EaffcfEE3aefCA ; < dhZZvf0L571c01a7t6d069KLZUw9HWI7D19kizRBKsjfF77zeuBMr2H5oQU2s1gJ > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 45,7595117944225 ; 1,1400057 ; 39,1397219280767 ; 45,7592617944225 ; 45,7597617944225 ; 0,6 ; -7,5 ; -3,7 ; -6,7 ; 9,6 ; 9 ; 0,96 ; Future47AP19 ; 56DD5f4f6CBaa83E3ae5aBea0de9fE8fF2BCbdB1c767ef58f9ab8B7f55BdfEfC ; < jLwe0Fc70P2rGvTr8N21Wga0pnnwzwG3qIJ3qH1m8Mvf4Wz669P0CNZa3kySoVvu > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 46,2648465541608 ; 1,1539244617613 ; 39,0934793283992 ; 46,2645965541608 ; 46,2650965541608 ; -3,1 ; 9,5 ; 8,7 ; 1,9 ; 7,4 ; 4,3 ; -0,74 ; FutureJU1990 ; 5B538FeBC64dcCB7Fed2cCcBafFcAACA3fBf9feA3fd7DE9dBe3A081bFEf319C9 ; < dh06ZdWgln4KuvcSl7ew44KJeV0Rw19NF5T2682r1QKX49Trq21gf5k7Y7HA6C6c > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 46,7752491865243 ; 1,18199922150755 ; 38,5729949186143 ; 46,7749991865243 ; 46,7754991865243 ; -6,7 ; -7,2 ; 8,2 ; -6,8 ; 8,2 ; 8 ; -0,35 ; FutureAU1934 ; CB7CAb1ceE0Bc0fd4d44DFBEfEEaB6CFdBe3A21B15C6dD9feEFbC4a4A676a1dd ; < LNjyJEfMdCs9b416LsP6DgY6Zb8fWGGOSEWv1ToJX2f06cJbH6Ddy6mFV5k6S8eP > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 47,3492614701451 ; 1,22550278283675 ; 37,636600531043 ; 47,3490114701451 ; 47,3495114701451 ; -9,8 ; 9,5 ; -5,7 ; 9,5 ; 9 ; -2 ; 0,91 ; FutureOC1974 ; B4EDb04DfdaDf3ECeED7a75deDCDC4fEe0c9fdAaEFbf6fAaC0c2aEEbcbCCEc8f ; < C0d0XDpqr348PI7YEXumRthXm2Yc6F7qE0S3w6twO5Ug0TmFDpRnrtR04pjtPy7I > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 47,9402903426262 ; 1,28606708760987 ; 36,2766637172266 ; 47,9400403426262 ; 47,9405403426262 ; 9,3 ; -6,5 ; -3,1 ; -7,5 ; -8 ; -6,1 ; 0,91 ; FutureDE1976 ; ffd8Ac9CE9ccbE2dFe1FFfa04c6B35D4b4BB0F1B4b3cFc66af0cb78eeCDABA57 ; < 4F5ICm27O60CaJ6195YNbYnPwh6NP6gKe6o66HMqt9PbAMfjkhc74pRJmXt8jg2c > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 48,5228945842474 ; 1,36599914885628 ; 34,5219068949454 ; 48,5226445842474 ; 48,5231445842474 ; -2,1 ; 1,3 ; 9,5 ; 3,4 ; 1,2 ; -3 ; -0,2 ; FutureFE2076 ; 1AcabABABA3ACbE8Ee67c573ABAAc19AfAeb28A4e5E27c6ff0fc8cf7BEEe3C11 ; < f1JnAZgyMb65qk3Cpa38sNW13yNJD38eMY83qzr6Fswu8AmKRinhPk1TIdVvKXZf > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 49,189063953024 ; 1,46838351706136 ; 32,4987851480824 ; 49,188813953024 ; 49,189313953024 ; 7,5 ; 3,2 ; 5,1 ; -1,1 ; -0,6 ; -9,5 ; -0,09 ; FutureAP2088 ; faaFEafdaBE98D7DDEDF8BCBDeAed6CEEBdabBf26FB84D6af0Ed13ebfa28fF2a ; < 34PI7F081grEcumGyFwi8mnCtYY0op0m9uSjW9jEC26Ezkq9riEuW2LR3pMVtKTH > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 49,8792802202895 ; 1,59760105735729 ; 30,2213615474181 ; 49,8790302202895 ; 49,8795302202895 ; -1 ; 9,1 ; 5,2 ; -4,4 ; 2,7 ; 7,2 ; 0,25 ; FutureJU2031 ; ce78e3Eed2EB0dcEB0f1FdCbeBc1e8fdc3BfCbEb7cA5cAee8bfbc2BebdD3Bd2F ; < vTesYuY7PyIW8aVMelxAvpel3nbbv1Yi7RuI8suu0Ho2aG2cT1NwXCf52u04YQ02 > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 50,5763634795173 ; 1,7592523917277 ; 27,7487819924736 ; 50,5761134795173 ; 50,5766134795173 ; 7,3 ; 4,3 ; 5,5 ; 4,1 ; 4,4 ; -5,2 ; 0,15 ; FutureAU2048 ; E17a4d3dff8Ca49fcBadE521E0aeeEEfE9A6BeAF68aBBdBed4E19bAeFFd6bfDd ; < nQ5P45F13A0M2c4x77UwDOw7YXI49xrR3XK9f80Him9Kv95IMq4pLrVTd9Gg4aEM > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 51,360721530577 ; 1,96085870954699 ; 25,1929741702005 ; 51,360471530577 ; 51,360971530577 ; -6,3 ; -3,3 ; -5,3 ; 9,7 ; 8,4 ; 8,9 ; 0,23 ; FutureOC2031 ; C49BC0C4dC7c9b125a00DF37aaf83fba50d43aBb0Bc7c9FEB69d85b51EeEdd7F ; < CKg5w7f9EO4mjy5m0c2lxKLT3nMg6u8H71yWGBXVER5QzyX9x9cBX02RTZWu1k7Q > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 52,088035377962 ; 2,21214586603078 ; 22,5463837072475 ; 52,087785377962 ; 52,088285377962 ; 0,7 ; 9,6 ; -9,2 ; -6,6 ; 7,5 ; 5,5 ; 0,94 ; FutureDE2088 ; ebF8fF3d2cC20C7A3aCb8Ebb7F2D78CEFDdbAbAdFFdcfAE8C1d7eCDe9a0D0D5C ; < nmBxXJWxH2a13c2kDM942IS2U90S9R9vGvxXVu8H9R78dyZt2lF5Pg35SN0zfZnM > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 52,8654573668434 ; 2,52591962372554 ; 19,929192231727 ; 52,8652073668434 ; 52,8657073668434 ; 1,7 ; -1,6 ; 0,5 ; -6,9 ; -6,6 ; 7,9 ; 0,12 ; FutureFE2175 ; Ac8Fb0E9caEDf3D420fce4DCD2EB12d0b61F5AfC9efACF365ea7A809ccC2FEc6 ; < W00690c9Z56aO6uJpQW2wUFxYyeM6uZkQ5I0w7Lxr3rji20rGhme91A16lp5eGUp > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 53,7722233355309 ; 2,91910679827428 ; 17,4207797286896 ; 53,7719733355309 ; 53,7724733355309 ; -7,8 ; -2,1 ; 8,7 ; 0,1 ; -4,4 ; 7,9 ; 0,14 ; FutureAP2158 ; 7Da181CCaAeAaebCEF4aDAf59Ceec18a6ce2C0DA08607BC6C6EBaEBCFbd9560c ; < mitI41Ne3Xi98871Tz3v9b3WhLsO481DCF37GZUJ3ErOKl94Wh0gbmHkXNH68N5M > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 54,6266189290596 ; 3,4140779814911 ; 15,0004016385125 ; 54,6263689290596 ; 54,6268689290596 ; -6,8 ; 4,3 ; -5,6 ; 5 ; 0,2 ; 0,1 ; 0,63 ; FutureJU2141 ; 8f37bffCeFD2cE912a88d789e6aDD6ecbEbfB2cc06AA0B9eCadAd0Bfa73E3b2F ; < 6vQ298I2hAU0et6SO1id26BTr7ed1z54QYrnJnCK1F0w02GQMM3rtO05ntoJ8mcq > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 55,4405143473106 ; 4,04175289739112 ; 12,7169480061724 ; 55,4402643473106 ; 55,4407643473106 ; 2,4 ; 0,1 ; -4,4 ; 4,5 ; -4 ; 1,3 ; 0,23 ; FutureAU2124 ; 7cfb143456409c57290B7B0b9e007CdDCdfaD8E8F6cBFb879Eeeee72cbd5FaF2 ; < 3uWAxI20GAqH7c0DvZq8B790pdqR2wu9D07DAF7L9Abwbtw7yYT817Y4yC1Lx6c4 > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 56,4031083676518 ; 4,84242213335702 ; 10,647705799773 ; 56,4028583676518 ; 56,4033583676518 ; 6 ; -1,7 ; -8,5 ; 5,7 ; -4,7 ; 1,4 ; -0,9 ; FutureOC2116 ; 896adA09E4dC6406C4Ed233BaDdf6DF3D30E8AEACEfa3aCf1adb4DCAAbbbadbF ; < 738fE7u9wwcEm7W9S9NyA9g1XCNrxQ64kqD4PUym0PNMSf46jggsL549Qm4abMAy > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 57,5092633922582 ; 5,87290920690256 ; 8,79229566918323 ; 57,5090133922582 ; 57,5095133922582 ; 9,1 ; -4,6 ; -8,1 ; 5,7 ; -8,4 ; 6,4 ; -0,74 ; FutureDE2151 ; EF2BAe32BBDFEd7142daBcCf8c31d185fCB5A20ea28F6FcFABeb36Bb2e4177bC ; < 08fpjf8KmwR57S10pa8roMx1Qrv9v703TYClvGG6vETpu4mnUAPiDeM0Ub832c3Q > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 58,5543156365361 ; 7,20899488896988 ; 7,12239660845468 ; 58,5540656365361 ; 58,5545656365361 ; 0,7 ; -2,3 ; -9 ; -4,2 ; -7,5 ; -8,8 ; -0,13 ; FutureFE2249 ; Eb2e2DbDBc2F1cf50aBBcbF9C4A6CfFafFd9675EADc2ceb8eaCDE2cCcbeDe5fF ; < X6L0JykH355qsdpjzRerO1UsNr2ginrg11mX1iU2prAHuB855OX7D36dxuk654cA > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 59,4376633771434 ; 8,95530811874447 ; 5,63714331087433 ; 59,4374133771434 ; 59,4379133771434 ; -9,6 ; -6,5 ; -7,1 ; -0,8 ; 1,9 ; 6,8 ; -0,26 ; FutureAP2268 ; fbBaC6E0CdfB37aEc5a7acCAFd65FEbEAfb3E1FBEc6EcbfDB3a1adeceCEBDECB ; < 2JNYz68q3E0c996DiN2GIQ4pf4xa0h14cndNfrJnwJjdOZp10dsZJw0W98T21578 > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 60,655856332567 ; 11,2603814837049 ; 4,38666087115637 ; 60,655606332567 ; 60,656106332567 ; 9 ; -7,7 ; 5,3 ; -4,3 ; -7,9 ; 9,3 ; -0,74 ; FutureJU2219 ; 4F0aA8fF7CfB9Dbc73fe4Fafb71DcAaaB9adC4EAABbFEef1fAebb926DCfeE5CE ; < MOYB95Q2t5p9cVu1BV06cUerB5WA4do57T8Q59exNa68iPvaC1OINZeaNqr8YGod > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 61,626383455219 ; 14,3305096237484 ; 3,30036230903418 ; 61,626133455219 ; 61,626633455219 ; -5,6 ; -0,1 ; 6,2 ; -4,9 ; 1,2 ; 4,7 ; -0,34 ; FutureAU2266 ; eEaEC2ff3761b17eD5B0Fa5D2eCfbcFAabA60d4A710E795DfbaBEBb541Bf7ACA ; < Fs0qO1yxrfEm36FkH1anu9s49e7CG56TVSn395zXqNMv4YtaBRP6MYASjnJJ81LP > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 63,052746256575 ; 18,4589404927482 ; 2,41583777689439 ; 63,052496256575 ; 63,052996256575 ; 4,3 ; 3,5 ; 8,6 ; -8,5 ; -0,4 ; -9,2 ; 0,27 ; FutureOC2223 ; abBf1EDfb8a84C3bAfEdfFd71d4C4E932B1caab3d1D3fe8126F6Eadf3BdF7Fef ; < mKCnm46QDZay8AZs8i6M91264c735tD0B6e609o7abHns8IR8mGSfsN4z5F091F8 > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 64,3656892307944 ; 24,063537883637 ; 1,67482236161801 ; 64,3654392307944 ; 64,3659392307944 ; -2,5 ; 0,8 ; 1,2 ; -6,4 ; 2,7 ; 7,5 ; -0,83 ; FutureDE2236 ; 23Cf8DFFeEE879cF104dD4221D5D39fc9b93bf821D7CCdDB9b9cf64Dc1EB0ceA ; < hV4s3E89Z4V74sl4CvtjC6d9EG2UO9f5v1j6mCpG45EX3LJ4992nMRy12q927tnI > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 65,6048616975017 ; 31,7506052749813 ; 1,06625546597679 ; 65,6046116975017 ; 65,6051116975016 ; -8,8 ; -5,4 ; -2,8 ; 9,6 ; -4,6 ; 5,8 ; 0,08 ; FutureFE2310 ; EE1efDc61FBF3dD0DE6b04FDBb5CDaC525ebd8bC0477e5B62aDAbBaBAdcd2A4F ; < G82TB6165xDa1CLgtaL6BCn1Ch5g4UI3a57JoUxmJl8sIG39sB1DxzJ836G8YVSU > > // < CALLS ; 7Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 29,7188316885717 ; quote ; 75,8293220185812 ; 74,3127355782095 ; 0,0204081632653061 ; -5,9 ; 68,6255364268159 ; 83,0331076103464 ; -4,1 ; edCfcAbDFcFA2D9d33Ac9bDfD4Ccc7bfb7B6cF4ecfD8f8D8EDC72B0EdcAcFd3f ; < W2I2upm9TG9X7efPgwQFWg8zOYW2wT17KT4HaD9amhcI33Few5g8a6AL1FLlICuq > > // < CALLS 32,6907148574289 ; quote ; 73,7322794357713 ; 72,2576338470558 ; 0,0204081632653061 ; 3,8 ; 66,727712889373 ; 80,7368459821695 ; 8,5 ; 71c432C96cAfCddF53d17d4fcaABcfdbbadACdDdCE1B7aff7d3cbfdDeF3FDDab ; < je6fO0O4rylBwBR3TzZ6rj4Oo9c2aTP5O4v0wk0xhVd90RkK3fYI6qoK0Ta2T3x4 > > // < CALLS 35,6625980262861 ; quote ; 71,703437256091 ; 70,2693685109692 ; 0,0204081632653061 ; 5,1 ; 64,8916107167623 ; 78,5152637954196 ; -1 ; BF3bbEdaad23e27fBDBCEEcBDc6fCD2Cb9FcBCCbadf9EfAcdCcd37eBdaCecCdC ; < Xv6G4cefL0oDv79Ii1z1n5SMFmno60563M4qnLbU61nVMIeT8vp3fE98Y5zZ6EaP > > // < CALLS 38,6344811951432 ; quote ; 69,7418885557811 ; 68,3470507846655 ; 0,0204081632653061 ; 2,9 ; 63,1164091429819 ; 76,3673679685803 ; 5,2 ; D2eCaffEdb4Bd219fa0AAD30545A5d3C33d95CCaae1c6c7e8F37D5Fc09CFBBD6 ; < Y6JS2qZ1ZWe3tgjiTd75pbp38tfOOR8Gb4acm6FPu28xn1RcjTA3kUPQ0Haw4WuZ > > // < CALLS 41,6063643640004 ; quote ; 67,8463197897546 ; 66,4893933939595 ; 0,0204081632653061 ; 2,2 ; 61,400919409728 ; 74,2917201697813 ; 2,8 ; C4BdB5E1ADBF3EcF0cAE5aFCFdacbFBbDCfb3ca89fFF9A47aAb2B3Acb0c7fFcF ; < nbDKQU85dWX8gaSLp6UQuycOAzS9KM3eafoI1cOUK89yjk1X38npyg6pPNk16810 > > // < CALLS 44,5782475328576 ; quote ; 66,015129686744 ; 64,6948270930091 ; 0,0204081632653061 ; 5,2 ; 59,7436923665033 ; 72,2865670069847 ; 1,6 ; DD58D4E53FBB86a2Fb8Eea4f134abFbCCadcDdFA8aa2AedCDAcaDEf80bEeec2c ; < 04an88P0eylkJwMzmukC3MGABIW7x0mLC4d5iPpc36o3yc0vm3NSptEQr2UPm6AT > > // < CALLS 47,5501307017148 ; quote ; 64,2465199791314 ; 62,9615895795487 ; 0,0204081632653061 ; 3,8 ; 58,1431005811139 ; 70,3499393771488 ; 5,2 ; EfaDdEfbbdfD9fDD07df6b6FfeEa1AEcBbFE843Bc8bD9fd754E02AdcbE5eb1af ; < 9Fl5J8sO61O2f13XRfShV103E7UA2Lp0KR3kc1UqY8121a9SmP52hd52mL8nH55q > > // < CALLS 50,5220138705719 ; quote ; 62,5385644631442 ; 61,2877931738814 ; 0,0204081632653061 ; -6,7 ; 56,5974008391455 ; 68,4797280871429 ; 8,3 ; bB70DEFdddCec98CacEdf7EfF76Eb8b051dCec77E04cC823FFCBeCd4a2A0cDBa ; < g6Xog1J5l9bLfy183T3h63ht7254FZQbb0l825o1fSKKi4qlAAY2d07897645uvy > > // < CALLS 53,4938970394291 ; quote ; 60,889261411245 ; 59,6714761830201 ; 0,0204081632653061 ; -8,8 ; 55,1047815771767 ; 66,6737412453133 ; -2,5 ; BfdadB5087B5A79CDEdc9Fc84Ec8e264EB72D5EBadBFcFEDBbB1cfF410AECEcC ; < hOVpyXtmz45fsMr2p6HSv149yZq83G9FgZX435JNc0E235FSI7CgNg404Z686kLR > > // < CALLS 56,4657802082863 ; quote ; 59,2965731937061 ; 58,1106417298319 ; 0,0204081632653061 ; 7,5 ; 53,663398740304 ; 64,9297476471081 ; 5,2 ; bFc2D8dcC533aA96A2e4afdaDBF226feaD0BfC5Da8BBCD4AB1AcCCe41E2CBe77 ; < 68WhY6V9ghm584WJSORtVo1ag4s3XI88k70tX56Ue8m3vaXh6JqE2Mj968TMhRkq > > // < CALLS 59,4376633771434 ; quote ; 57,7584560648362 ; 56,6032869435395 ; 0,0204081632653061 ; -4,1 ; 52,2714027386768 ; 63,2455093909956 ; -4,2 ; CcFAF926Eb75131deacCd6be223BeC9cACC1D4fb8edbbe856E9fDeDF0d13CFD3 ; < 8jUMYO1C79QtF39tpfdtA262fgqu4nv1d6Q31NARkA67O9135gSjq3Iq7uIRzrpJ > > // < CALLS 62,4095465460006 ; quote ; 56,2728823786395 ; 55,1474247310667 ; 0,0204081632653061 ; -5,5 ; 50,9269585526687 ; 61,6188062046102 ; -5,6 ; E22bdA02b1F0F81bBbE194AcFFf4DFdb78f6FC230Ecc5Baea46aAdEdE0Be2619 ; < 684UP3OW87140TGy91780kChAo8TR507iVazD62181yv1izw0FGy6Y3x6JgJcaRL > > // < CALLS 65,3814297148578 ; quote ; 54,8378569718335 ; 53,7410998323968 ; 0,0204081632653061 ; 2,5 ; 49,6282605595093 ; 60,0474533841577 ; -9,9 ; ab41dddCAC2c521E7CEEfb4bCD5f3AC2Cbc0Bb2AdAddbeeea2cBb3Fed209ebEc ; < TIq47bK6Dmf5nr3w7iXMczoqdkWO50OMC8jyxHFD7seXlj30XcIoI57d57bc1Ba5 > > // < CALLS 68,353312883715 ; quote ; 53,4514290506786 ; 52,3824004696651 ; 0,0204081632653061 ; 3,3 ; 48,3735432908642 ; 58,5293148104931 ; 3,5 ; 92476BBbf84FaAC8ace0Ed0EEE7fFaef1EC45bF05BfCCCb2fa69E4BaFBdbBEbE ; < s4VPz1VP3vwlGdIFlBP7NvwJic9Cc4S9gNtpFU58McfqgyWql3p1DM445WCwEvjX > > // < CALLS 71,3251960525721 ; quote ; 52,1117006118506 ; 51,0694665996136 ; 0,0204081632653061 ; 3,1 ; 47,1610890537248 ; 57,0623121699764 ; 4,9 ; ea2add1F4e8Dce0dee17BDFBa0Ac09ABba3AD35dE8Dc4fDBe6ffFe51afBaaC2B ; < 2c9fuZZ0kCl7Fz4uk64J1T0xz3Z8esENK0pLLe7qQEUN3P4W251DBz1hZn0Grq65 > > // < CALLS 74,2970792214293 ; quote ; 50,816832193542 ; 49,8004955496712 ; 0,0204081632653061 ; -9,1 ; 45,9892331351556 ; 55,6444312519285 ; 5,2 ; BA73ee18ABC9C3fd8aFa09F4dDEe5FCfFb8a1dFB60AE25A721F9D8cAfDc8D1F8 ; < QDmD3234C1MsWo7x76igZlrM01cblIH1HkKyUXvCXczhLAPwx8kel3x6VoqUHDaZ > > // < CALLS 77,2689623902865 ; quote ; 49,5650465736045 ; 48,5737456421324 ; 0,0204081632653061 ; -9,1 ; 44,856367149112 ; 54,2737259980969 ; 9,2 ; cfB710Ab8fBC7DDcfE6bfcebcaf8586fbdc2aaee9aeda43aEAFA4F6Abb0e4E1A ; < z0qUAX5k3rxIqB2YVDUktD7VoJGTjtVcRsW2j6W22QMN2M2rZ4DbVu5w36VYAS3b > > // < CALLS 80,2408455591437 ; quote ; 48,354630893647 ; 47,387538275774 ; 0,0204081632653061 ; -0,9 ; 43,7609409587505 ; 52,9483208285434 ; -6,4 ; 8Fa4dCC91aeC9fAaab3ae27CC8f00D9AAfcaFB6B117Fd2bC8DdeFfEE73f14159 ; < 956ojBetYfFyS40ivv187wC74St4z882JA88E0579Iw9vZaRz54nxF09BF4Ry50w > > // < CALLS 83,2127287280008 ; quote ; 47,1839375816582 ; 46,240258830025 ; 0,0204081632653061 ; 0,8 ; 42,7014635114007 ; 51,6664116519157 ; -1,7 ; B8c1C7E5d322bEdAaF4d4eE26c6abF736c1b9CCB70Ccf9BabAB3E3CcaEbdAffa ; < 341jh3u3A8xhcKMbxr1ar54X3h545nz1e2UPn0Eul5kSnp92XXW20jNtl6ZIrAGP > > // < CALLS 86,184611896858 ; quote ; 46,0513843634353 ; 45,1303566761666 ; 0,0204081632653061 ; -6,5 ; 41,6765028489089 ; 50,4262658779616 ; 4,5 ; 1d177395DDca5ADB0bdfCCafEdde0a92B9caeAaEAEbc262894DCAac5bFef8Dcd ; < F39CBmihM5Jxgc80ditYp6N3ti6LZ7XCpH6rrh4yiSO62ZvJnpPkESKnhzAqZgYx > > // < CALLS 89,1564950657152 ; quote ; 44,9554535892403 ; 44,0563445174555 ; 0,0204081632653061 ; -1,4 ; 40,6846854982624 ; 49,2262216802181 ; -2,5 ; 8293E3dd0bBfCcaBCadAcdcbF8C698E25Aef6CfEC6d0fee24cddC3dFbccF4B0C ; < 0C88c4BteE1a53QkbZTTJBi4N9lWG1i9Y6cS05xqBTBBkw3lG8SIFBbE8P1w6u7z > > // // < PUTS ; 7Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 29,7188316885717 ; quote ; 1,54299840391275 ; 1,51213843583449 ; 0,0204081632653061 ; -6,7 ; 1,39641355554104 ; 1,68958325228446 ; -2 ; 4Af25CA39e4edE739feb1aafdCD44BbBb0BBDd17DAd0f47b43A8ADEe90aBddDD ; < M3LDmt42kZjy3Fn6KYN568i28knNn9siQhtRJngq5xf4YdEW7ZM3Ah3JJ1D8WJRO > > // < PUTS 32,6907148574289 ; quote ; 2,017323459636 ; 1,97697699044328 ; 0,0204081632653061 ; 1,5 ; 1,82567773097058 ; 2,20896918830142 ; -0,8 ; efCc0FBEbbdc17aA37affFEEbCACAEeCfef279DcDA2D559Dfd3C5d7EE9CC4000 ; < H2uY3pUwft8WgrKV1Hc701Fvqv76bk8TYCR4i617owI4tO6oG9Z61LEiezf7W2D8 > > // < PUTS 35,6625980262861 ; quote ; 2,5598489184889 ; 2,50865194011912 ; 0,0204081632653061 ; -4,3 ; 2,31666327123245 ; 2,80303456574534 ; 4,8 ; 9Aa8c7EaBcbEdFcbbB3a551FaDfBEEe10B1Aaae5e6Ec8cC506cD8fB8fD7BABe5 ; < q3n0jEc0dF8cTOIUTyJb7xy8Z116I2n6990ukrYFUf8x48z8oRud3f4Uq6oaBSHG > > // < PUTS 38,6344811951432 ; quote ; 3,16966785671218 ; 3,10627449957794 ; 0,0204081632653061 ; 3,8 ; 2,86854941032452 ; 3,47078630309984 ; 4,6 ; ad1E54fbDD1BcaFB6ADbEEADfEcaFb3AE3f1a7Cab9BB72EecdBCCEaEf4254BAE ; < Ib6iuk689ERd2OVG3Z69x0n2Ww4JO613hQZ5177S1X0NC6IAJf4qH8x52IQUv7a7 > > // < PUTS 41,6063643640004 ; quote ; 3,84546672921888 ; 3,76855739463451 ; 0,0204081632653061 ; 1,3 ; 3,48014738994309 ; 4,21078606849468 ; 0,7 ; cF0CfCfFC21CFf7277e70028daFDcBcabB8EECc300cCdbFceAd9FE4CDEdcC9C2 ; < 4zbEuU9UeQKweDy65LC8CfNl2XCF4Jr0Dd81EjABe3J9MpeOduyBT3449F2Yr2DP > > // < PUTS 44,5782475328576 ; quote ; 4,5856442647414 ; 4,49393137944658 ; 0,0204081632653061 ; 3,5 ; 4,15000805959097 ; 5,02128046989184 ; 9,6 ; B7a6ec3C06298ACBF3ec3aFbc9dCAcBCDFcdD8cBc6cdEfb39a7C70Fb8CdC5C9A ; < dvps11U9C1p30i4K8pltI6nakKww9M2tVUMcE8V8FRvw766dvb7rZCSx6fxZ0Po2 > > // < PUTS 47,5501307017148 ; quote ; 5,38840219566191 ; 5,28063415174867 ; 0,0204081632653061 ; 6,8 ; 4,87650398707403 ; 5,90030040424979 ; 3,9 ; 105ddEf1ca2a5D3Fbd65E66Dcf4AbA9af8418FEcb834bccdbAaa5B1abbbC3C18 ; < 8gHU17RWGRj59ckx12HIIKB27pE5D9h9IzJWJeD24d1vsRuKXv4qQCdTAo450VQW > > // < PUTS 50,5220138705719 ; quote ; 6,25181431820796 ; 6,1267780318438 ; 0,0204081632653061 ; -9,9 ; 5,65789195797821 ; 6,84573667843772 ; -1,1 ; bb8DfDBB5CE22DbdE8EbED3cb6EaCf0f095AfB44fc1A258FC4B9ab9B29ABBe3E ; < qWqP3k7J232soGy476g5Z8C0g2XkiBNg174f9T6IySWLlSae4V7QhB4Ez72lDI8u > > // < PUTS 53,4938970394291 ; quote ; 7,17387890484187 ; 7,03040132674503 ; 0,0204081632653061 ; -9,8 ; 6,49236040888189 ; 7,85539740080185 ; 5,8 ; E8a5FACaDf7f68bF0CAeaB4D1FC3bbC8e0bef2eaFEd01aBEDaCEA54fC4ECBFfB ; < QFpREM45PyMIl05jknUPejQbthg9b6zyqNo5M4LWRuWA515003P390ezJ5D06xKy > > // < PUTS 56,4657802082863 ; quote ; 8,15255832583608 ; 7,98950715931936 ; 0,0204081632653061 ; 6 ; 7,37806528488165 ; 8,92705136679051 ; -1,3 ; B6Af2b7b25aEAFFDFf4CbDAcAb9C48522BEbBE3bF5F4d0c0D8BCFa7bAc61BDff ; < NR3hJp3Zo9p56041G0ngoguMaVNwr9eArj16650F768JB5YSJ5ff38xxcYlj2359 > > // < PUTS 59,4376633771434 ; quote ; 9,18580883549939 ; 9,0020926587894 ; 0,0204081632653061 ; 3,7 ; 8,31315699612695 ; 10,0584606748718 ; -4,3 ; DB59A5a461cC9bc94F67fbBDaE11AB61a9aF0e37DeaCF5E7aC8eB0FAD3d464BA ; < Ti98m83210lTt8B66NF6dheu52TWdgBU1HyAo1v6yBhHAs8Z0iqh9V3Fap18v32O > > // < PUTS 62,4095465460006 ; quote ; 10,2716027878358 ; 10,0661707320791 ; 0,0204081632653061 ; -4,7 ; 9,29580052299143 ; 11,2474050526802 ; -2,8 ; 80aEdf95FcDB6AE9EC0ce3E0e1b6fDFF85Dd5B2cC9E2De0B7CAF2eaae68AdA7B ; < 54ICxQt0qC57VLYedfjVwKtk0aBFy76FcF2Ee8Ki2YZggmo278p352w3nt4VjQk6 > > // < PUTS 65,3814297148578 ; quote ; 11,407945019563 ; 11,1797861191718 ; 0,0204081632653061 ; 6,4 ; 10,3241902427045 ; 12,4916997964215 ; 0,7 ; 922DBCEEF2bfdACEF12aeaDaDa903CfC5D12b4fdF82ED44Aa00041FED9cBaFEe ; < Uj1P26246zg5yNq2Z1pg213U8LbYfe307DLE6yfTPE2ktLM8D20YNB8gA51Z0522 > > // < PUTS 68,353312883715 ; quote ; 12,5928847369413 ; 12,3410270422025 ; 0,0204081632653061 ; 8 ; 11,3965606869319 ; 13,7892087869507 ; 9,6 ; dFFC1FfEdBFB3ad4e0CcEcadF15686Fd7D2CFa01Fc1ebABABfFCcad2fffDfCd4 ; < upEDa08UCAfRxkC33CogLcsY81IMOwx0cT7bXQGuPX782n22qRlJQ0D78NeRAE89 > > // < PUTS 71,3251960525721 ; quote ; 13,8245239366464 ; 13,5480334579135 ; 0,0204081632653061 ; 4,9 ; 12,511194162665 ; 15,1378537106279 ; 5,2 ; 7C4dF9afD7fEf0C431eFB5EBbaC7e380CF4C09D7D09Ad4B2bCcD5CCEa5b451E3 ; < AuV44s6qG68M9xO8ZU96PZG0A6u0unZhJ7FnVpT3bhq2iq6JvcIXpo94835rlNdn > > // < PUTS 74,2970792214293 ; quote ; 15,101023156871 ; 14,7990026937336 ; 0,0204081632653061 ; -6,5 ; 13,6664259569683 ; 16,5356203567738 ; 8 ; bB88Fb6eEcbCaA7Be084AB79CbdACFfC3FCfeDFd1b19E596AcD8E75F3c54E7AC ; < OV28CgWg8P4TToqqN5emj44w1LLY4doV2Sr654Nt16sFy054EP40tqdwoM0iUI5S > > // < PUTS 77,2689623902865 ; quote ; 16,4206051754666 ; 16,0921930719573 ; 0,0204081632653061 ; -4,9 ; 14,8606476837973 ; 17,9805626671359 ; 7,8 ; 5ee7c8DC4F0E75CcEeDff8Ca8abD8aD9AC0ADd0eBB4CbdEcdFbEaE7BceC8fFcB ; < fmt17OlBE6s92Lv8OrxpPFQPQh1Aum3rTmom6B698xdHRuI9JIG8912D4cBziXpY > > // < PUTS 80,2408455591437 ; quote ; 17,7815571340423 ; 17,4259259913614 ; 0,0204081632653061 ; -7,4 ; 16,0923092063083 ; 19,4708050617763 ; 5,8 ; C2EdDbbd3D8d630D41fFcB04EfCC9B13CD60e3c1afbfFE8ABf88730BAcbBBDcE ; < ENv4yb177Micvg54uORJ5Y779j1XxI2si1OrP4524671yZhx9U19m1Wm9QXP2Mky > > // < PUTS 83,2127287280008 ; quote ; 19,1822314605867 ; 18,7985868313749 ; 0,0204081632653061 ; 3,9 ; 17,3599194718309 ; 21,0045434493424 ; 4,3 ; fBdC5aD4ddcbE1Fe9EdACDD9cC6D6EEabccd50d1eC1acCEcBEbCc64dcD283fcc ; < IXj4S1Px9R97CXa0J1k2X8gT8So9lW2ydTn7J4AfGO0c12Q090fK6M0x25WTLy1i > > // < PUTS 86,184611896858 ; quote ; 20,6210458808969 ; 20,208624963279 ; 0,0204081632653061 ; 8,7 ; 18,6620465222117 ; 22,5800452395821 ; 8,8 ; 4ccA73BFdcFBDcad4eDCBBC6d25ecfCC6ea3C88CBebf99EdfcAA6Ab1DDeFce7A ; < m6H4DFV1SRwkuxxZtUd4c62e2kTUS8oCxN3SCTnPfOyUL9Vmu6v07c4JU08dSmBE > > // < PUTS 89,1564950657152 ; quote ; 22,096482745235 ; 21,6545530903303 ; 0,0204081632653061 ; 2,6 ; 19,9973168844377 ; 24,1956486060324 ; -4,9 ; D5EadAC809BbbB2C90F6cbFFFB8E4D2DFbAd72dD91482AcFF8cfdcfDDAADaafC ; < SsvC9W1YpcPi5d9UPItJ06ZHG0kH0Zx9gpYtCw044m7c5rkr4h3zoe9BH4U5W1A6 > > // Futures_Teploseti_LLC // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 25,994915 ; 1,14 ; 21,8025570175439 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; a6F803Dd23bDAE78dccAd3aA73eC8Ccc8A68A8fd2c7EBB9CA56D68bfDEcbB2dd ; < wg3lWlODG00cay8bxTw951Afy49NApOW3ovKQYF9lp9RvQgw27Cm5L1t8c88Ga9c > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 25,995648944215 ; 1,14003648 ; 21,802471149182 ; 25,995398944215 ; 25,995898944215 ; -0,3 ; -7,5 ; 8,9 ; -3,9 ; -6 ; 2,7 ; -0,34 ; Future47AP19 ; 7938bc5D4ADC23df07A47ac60FDcF15da521bbd2A96DD52D8eA6fFDD6210BEeC ; < Dr8zvEBe73ubUs3qBcyOcxE6FG546OFH2KdM3DAys101O59dgKK67423eitwEn56 > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 26,2753419638376 ; 1,15382109326135 ; 21,7724576342843 ; 26,2750919638376 ; 26,2755919638376 ; -0,8 ; 7,9 ; -3,8 ; 9,1 ; -4,8 ; 1,3 ; -0,07 ; FutureJU1969 ; f4cc9A0a7CC61ABdbC99BbB1BbB2AFfAb2ed1F4aA94be4Db931BaEcFDaD8cAf1 ; < 4S14vTq52ky39Com1xaLZI21E6v5TvGb2x2OP71GH793cMiK18T3ry2d7kU9IEf2 > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 26,5796677629975 ; 1,1818956457141 ; 21,4890140338389 ; 26,5794177629975 ; 26,5799177629975 ; -5 ; 7,1 ; -3,4 ; -8,1 ; -8 ; 5,9 ; 0,51 ; FutureAU1924 ; 74eCDaeBF7CD3aAAb93C2f6b7d14A2BCCdAAc9C8a9cB111fa3cAC3F6a2cb454B ; < 6Rkzj0RoKgzYmUCxZ8e5s1nbjtwe1DGw2q8oQyPkh3YGEd49U71jC2Y205z6sKgv > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 26,8908505283184 ; 1,22552067586766 ; 20,9423882908216 ; 26,8906005283184 ; 26,8911005283184 ; -1,1 ; 3,1 ; 6 ; 2,7 ; 9,4 ; -7,6 ; -0,8 ; FutureOC1929 ; 7cBf9E9b865de6b20bD45fe5ed55C2BCd9FaDcBA0BfCd1d3bEF66Fd7d494C7Aa ; < rBi5RNA4iQY0b47K0aX22PX87X1tmV9fBXt2AXX2kdslV015W3GRlJwsZxkA25M6 > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 27,236863510922 ; 1,28597434253225 ; 20,1799431840056 ; 27,236613510922 ; 27,237113510922 ; 0,5 ; 9,1 ; -3,4 ; -0,7 ; 4,8 ; 4,3 ; -0,87 ; FutureDE1986 ; dfdCFEda0CbAb2DebCa3c9Ad5cA72C8b1C9DCBb21B8aDcBe0B46DDFEbFd24c8d ; < 4U3Wg0awLQrv1Yv3W8AWbNbq4qr305s93WjEQbAI7YVXVAl06GvGJ3bAVI539rw0 > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 27,564312651388 ; 1,36580804930367 ; 19,181688536278 ; 27,564062651388 ; 27,564562651388 ; -2,3 ; 8,9 ; 0,5 ; -7,4 ; 3,8 ; 2,7 ; 0,37 ; FutureFE2083 ; DD8aAD9BcafEFCEdD9CCeCB4fdDD31C7dd0CdEe3b1ddf8F1efd2d8AEC7aDfDDF ; < ge89HqeF07O9iih1N5Jop8vXkFVetEQr9Cdna094LXOuWkAxDfBJHDborrSC8gAl > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 27,94286995044 ; 1,46815624128629 ; 18,0326268857861 ; 27,94261995044 ; 27,94311995044 ; -3,9 ; 3 ; -3,8 ; 4,7 ; -7 ; -6,7 ; 0,42 ; FutureAP2091 ; bDBDbECbfECc409A08840E0F321CCFEb1A5cdfbFb1Bc6dB449C2ffE39eFbbf8E ; < t6s1QPn4FaHleVNam4Ik9Q06Rc82HGW29m47m3Vpj384V3y36Y42RNS7d3aOG7uN > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 28,3151312833803 ; 1,59746536122074 ; 16,7250361546135 ; 28,3148812833803 ; 28,3153812833803 ; -9,1 ; 1,4 ; 0,3 ; 1,8 ; -6,7 ; 8,5 ; 0,03 ; FutureJU2069 ; aeef3AE57eEEC175fd7fC775ccE14f6bF4Fdeac8DddadaDaaebBC1C2fB3ba17A ; < tT20E3Jsn3soyhuFWpvUvNl5UxvJYVVq3ZH2z0UoWLzbhIA07isK7Mod11Wa2mrA > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 28,7253444532562 ; 1,75923236003563 ; 15,3283401930342 ; 28,7250944532562 ; 28,7255944532562 ; -8,4 ; 0,4 ; -4,6 ; -6,3 ; -7,1 ; 9 ; 0,06 ; FutureAU2028 ; A0D73AeCDE22dca02c4f6c3e92e4FBEbb81BaC42EDCF8F9B04Bc4eC36Ad93eC0 ; < f3o8PU3UE54JbN6O17gQHdo30rBw8VYtJNWt79u6Vy6Vk91K3gqt18GxSBPX0uB1 > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 29,1618824142211 ; 1,96077129067131 ; 13,8726588118479 ; 29,1616324142211 ; 29,1621324142211 ; -1,7 ; 0,9 ; -4,2 ; -1,1 ; 4,1 ; 0,6 ; 0,97 ; FutureOC2044 ; B1aDECfB0edAbd06331bCCdBEB87BD9abABe2fBcE473fcada5FBfdEF7bF7bAaB ; < 2B0SIT9oUT9FhrzmBJLtv59DKWuujxT2JjHO9JJNxAwJ49O2VzgLK7aqdG4B5XXX > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 29,6174705191772 ; 2,21212567513903 ; 12,3886925376949 ; 29,6172205191772 ; 29,6177205191772 ; -4,7 ; -8,4 ; 5,6 ; -8,4 ; -9,3 ; 6,9 ; -0,77 ; FutureDE2026 ; 4cfc1CfAe1E7D4C22aab29BAFf86a8AfdB6A795dfea5fbFE2add75d785bD5FC3 ; < d372vy9u2657OM3DMkEZnRyJwvI05JI5MzRH5ev4k49clGzf8ZP0A8FcxoZo0F3q > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 30,0268142636263 ; 2,52583462941153 ; 10,8878781350076 ; 30,0265642636263 ; 30,0270642636263 ; 3,4 ; -5,1 ; -5,5 ; 6,2 ; -9 ; -8,6 ; 0,34 ; FutureFE2174 ; 9ea7F967c9BCaaCCfAF3Aed3ab3ED6cC5FBCd7eBAbddd1CE335Ce9bbdEE2fcD6 ; < AUTcl1EY24LC8yVD192c5NRShpi537c4Exe2Z6y7GoR09510fH4focSFM241WwbX > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 30,5048040887795 ; 2,91893785029074 ; 9,45065213901046 ; 30,5045540887795 ; 30,5050540887795 ; 3,9 ; -4,6 ; 0,7 ; 1,7 ; 9,1 ; -7,2 ; 0,93 ; FutureAP2191 ; 23EFBf89f1F5cd0Eef6ae2f24fd307cEd30FBff1CA1b14eabb1BD02f8BcEAAF6 ; < h2q97g1T40au10L0e7724HTkHy6SVp68bxdEo3D3F1b5W5feY8L9mstWbDj56FXS > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 31,0329719390179 ; 3,41431822693473 ; 8,08906841026309 ; 31,0327219390179 ; 31,0332219390179 ; 5,4 ; 7,8 ; -5,8 ; -8,5 ; 6,5 ; 0,3 ; -0,99 ; FutureJU2161 ; 24519adaCCf46b61Fd2c4DDE638FBBEE2Df6dc4dECc17c9E7F8cAAd2488cABe6 ; < 0N241m86X0z9rg4nB4TzNy7YN434LQrub8klm0lh6F00yz1CW9Ibfe0cv0NXn204 > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 31,5484678916045 ; 4,04188025308742 ; 6,80539400381936 ; 31,5482178916045 ; 31,5487178916045 ; 8,9 ; 9,6 ; -6,5 ; 8 ; 6,8 ; -5,2 ; 0,16 ; FutureAU2142 ; 267fcD77cc4BE169d2e8c3dd3bBcFCdcCba9cbDC3C54BADB19Df56D351EBDBDF ; < 4pss5H4k83ofGVHdMvO8pWTmRn6M64qV9Z5lknL7644Dm8CzpIzSatRxYgc6y0di > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 32,0572505487755 ; 4,8432658796766 ; 5,6189326262873 ; 32,0570005487755 ; 32,0575005487755 ; -8,2 ; -6,4 ; 6,1 ; 6 ; -7,4 ; 3 ; 0,16 ; FutureOC2180 ; DB7bbAA1BcdD7CdfBF3aBAfeF95F5cDdC424eD7Ece3F77C684a91D0BD8dEB79E ; < FdH8x2bpv7y2wH5s0OyIgWjIk81opGBY3b990O58Fe4ya20WZIc7Xh9YOH9EP64H > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 32,6596697766435 ; 5,87329803803142 ; 4,56070363961816 ; 32,6594197766435 ; 32,6599197766435 ; 7,8 ; 9,8 ; 5,5 ; -9,4 ; -8,7 ; 9,1 ; -0,58 ; FutureDE2129 ; edFf2d2DEb46A15A55fACBd5fD3ECcA32F60E92bb0Cbc921Ffb8bC2c13CDf1Fe ; < hlz263b8bIvv45TwjEbzr6nA55Zmgss73D8Aljc2u4rCdD1DpLPe0S10wC9Xbpk8 > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 33,1598876010461 ; 7,20845609854301 ; 3,60013727596239 ; 33,1596376010461 ; 33,1601376010461 ; 3,1 ; 3,5 ; 3,3 ; 2,2 ; -0,9 ; -0,4 ; 0,88 ; FutureFE2276 ; 1d8afCfc4b8DCeaCf682F29dBEbB5C47C9dC5afb4BBEfBbEcdCe65e0dD9AE3d1 ; < Bb34vL80gJ7Q5bscVk15A8191UCm2xgDR7KWPia97D3P7YjpRFxM6HNt89z40G6L > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 33,8376937315093 ; 8,95461718588486 ; 2,77879847112253 ; 33,8374437315093 ; 33,8379437315093 ; 6,8 ; 5,6 ; -9,1 ; 9,4 ; -0,3 ; -3,4 ; 0,77 ; FutureAP2248 ; b9AFF8B7cCDA3cF3D9eff2fFa893cF6F5CE4d39DB4Fdddbd4CCfaFfbFe6FD129 ; < 3oGVRt4z7Pc4GM4ggU43NM3kJ0rvZxsrmwHR9TL88Lt6lq8CzSLBok5vsw88Q2yL > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 34,4805753685878 ; 11,2597813450131 ; 2,06227752671761 ; 34,4803253685878 ; 34,4808253685878 ; -6,7 ; 1,2 ; -2,4 ; -9,5 ; 7,4 ; -4,1 ; 0,25 ; FutureJU2252 ; bcC578CeF84eFAE6b6ccabADaEdFcDbF84D1d6B8dBB51AAaF4afafe6e01DCbDb ; < 7DvkRiy0okcLgE5858Fxt9qbwRWS5M0H7xjrS4K8P2ZHpcg0daCK3eyAL2Qr1h5K > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 35,0058940089548 ; 14,3293517656877 ; 1,44295028703099 ; 35,0056440089548 ; 35,0061440089548 ; 1,5 ; 5,4 ; 2,7 ; 0 ; 9,3 ; 5,8 ; 0,95 ; FutureAU2230 ; a6CACfEFbbFBAA706331C8C7815eB5a26b6bAD1cDaA8B8Fc1BbbbaFB63Ab3bAc ; < vp24Ij0qDI60t664429wyOh7kUi1di2Lp99E6a0144mFXQ84RSo88Tt195bdywT5 > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 35,8409622066643 ; 18,4577499874342 ; 0,941783924425475 ; 35,8407122066643 ; 35,8412122066643 ; -6,5 ; 8 ; 9,7 ; -2 ; -7,7 ; -8,2 ; 0,11 ; FutureOC2293 ; 0AEbfaeacC9C7ccDe81033Aa5cFabBCaDb4808DdEa1CEF74FfB6C68dCAFB5cbb ; < Ss6Sy8ahoIn6SR1sPTeak2o94jR39UCl7jqLKoLMd7691nQ0Pvx2h2u44D7UKf4h > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 36,5181543060978 ; 24,0642562142933 ; 0,517526824053979 ; 36,5179043060978 ; 36,5184043060978 ; 4,4 ; 9 ; 6 ; -8,4 ; 5,3 ; 5,4 ; 0,81 ; FutureDE2298 ; Ee6a64e2AeCa2cCc5C54DddbBdDdBE10FE76EFA6ccA6DeAcdEFeFf52cb610372 ; < 4rNb9vXfWGbi9vdznZ7WaOpq173kgV3SpmQOXPCFUb16fn47h1xYtOSE1UbTr28Z > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 37,2368729556471 ; 31,7539835653543 ; 0,172667765573671 ; 37,2366229556471 ; 37,2371229556471 ; 2,5 ; 9,2 ; -6,4 ; -7 ; 6,2 ; -4,5 ; -0,58 ; FutureFE2332 ; F4b30A3A78efcbDdbDcdEf3F7d7b8c0BACEccfceec1A6EC0bbf5CFb24aDB50Ca ; < 9fxtIPni1kx8y1C2RkV9V2qwIk15t87QU6p9i0Mwm7HMHZ5bhe7YweP6IK7K34D8 > > // < CALLS ; 1Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 13,97143497522 ; quote ; 53,6714134246759 ; 52,5979851561824 ; 0,0204081632653061 ; 9,2 ; 49,6460574178253 ; 57,6967694315266 ; -3,8 ; 53DaBA26eDf2f78Ba0c6E4fc5fABa8B5edBc88DdB2aD8eEaEaD9D13a6e2ddC01 ; < Z0n1qO5WZ27PueD5dbuR2I307y9hHkpOKH8zZ2pLEVBrb22KtNv3ApmvwfIdxMsa > > // < CALLS 15,368578472742 ; quote ; 49,1194092921563 ; 48,1370211063132 ; 0,0204081632653061 ; 5,9 ; 45,4354535952446 ; 52,803364989068 ; -9,1 ; 2Edb556546bFCa20EB94e81f61e04DEe65ead998766e14c72b9CEEdAcADCA5Ea ; < F2323zy3tQeA3Y6h3g3Lm9YiEwi9c026wM6PE7W5FuLMLWaXF0oAQPE0bDv67Wgv > > // < CALLS 16,765721970264 ; quote ; 44,6476691224842 ; 43,7547157400345 ; 0,0204081632653061 ; -9,2 ; 41,2990939382979 ; 47,9962443066705 ; 8 ; de942ADb12cBbAdf6Fd208BfD6Fd27ed39FCd8a2AB5c8bDd4efFDD0aBFf0E6DE ; < mihG587JdqJEtgMFzc0k1lPDmay76Ns1Ob2fw22epfpoFZsxmf339Xiro2B51TRC > > // < CALLS 18,162865467786 ; quote ; 40,2955533564589 ; 39,4896422893297 ; 0,0204081632653061 ; 1,2 ; 37,2733868547244 ; 43,3177198581933 ; -3,7 ; EcC4600fDd8D8fC15d5c6B9aeC218FD3CfA42BcD9ABb5Cfb6eE3F55CE95baC9a ; < y7tQKpFo0c20wZ60gkhI0h559sINTQcPwJDtZ2xxNkGM1JFuJD4U6m3WnCbNEdD5 > > // < CALLS 19,560008965308 ; quote ; 36,1055124059439 ; 35,383402157825 ; 0,0204081632653061 ; -1,4 ; 33,3975989754981 ; 38,8134258363897 ; 9,6 ; 3Af03b81DAaaFCD6FA4fdcEdc7dfb7d0CeAacd6b6051296dBdcbC1A3fcD6FBbD ; < TH6PB1g4sXCLhPaMLIgEbX97YLcXn8vN669196rUBCRL4RI80qk694kG54nsinwG > > // < CALLS 20,95715246283 ; quote ; 32,1187612069275 ; 31,4763859827889 ; 0,0204081632653061 ; -9,2 ; 29,7098541164079 ; 34,527668297447 ; 3,2 ; bbEAfdbcEEd4BBaAD1FaCaEDCD8Cafa50C307Eb3Daa1C1bBDca4abE38eb09C4c ; < SJn4Pn7d7b1CVlhLx1VwpMV198CR64pQCXl505XY7PAy32Bwaufj2mfFTOPKo3oX > > // < CALLS 22,354295960352 ; quote ; 28,37139808825 ; 27,803970126485 ; 0,0204081632653061 ; -5,2 ; 26,2435432316312 ; 30,4992529448687 ; 6,6 ; CfeacFA91DD0EEcE7ae05eeD9CFCBcAeDEf1cfF9c6DaAb71dBe5B8eEA09fFDbB ; < 6MB67AwooXg19rVR35Oe8usaZzAKuFiVQN39u2l01m08b9z2R2xNMIWdj5eC35T1 > > // < CALLS 23,751439457874 ; quote ; 24,8915992243272 ; 24,3937672398406 ; 0,0204081632653061 ; -6,9 ; 23,0247292825026 ; 26,7584691661517 ; -2 ; Ee7AAc6AFc286f5dA19FecBFECAA4ddBD8cFF5cEcc0C5A136fbebEb094ddF3ce ; < a33Cp3yMxLm9u7sp5cGzzX2fS5VeEkk3bjAKBuDH2fQYW638A34As5doADT94mSN > > // < CALLS 25,148582955396 ; quote ; 21,6981222819644 ; 21,2641598363251 ; 0,0204081632653061 ; 4,2 ; 20,0707631108171 ; 23,3254814531117 ; -6,4 ; E6db7b6Be6bF7bEB5CdAbFF03ECCB0bDCacb85acAD212E21eafAe3EAf24e4De1 ; < rHq1d3nRWFP95sUtzHWh22G675qy8YT6gQ6k8QqB8g92f0wdPpKD7A0n8xF2uT4f > > // < CALLS 26,545726452918 ; quote ; 18,8000367010218 ; 18,4240359670014 ; 0,0204081632653061 ; 9,4 ; 17,3900339484452 ; 20,2100394535985 ; -6,7 ; 7A9cEaDd4a198bF3E473b4eB11C6d5cDFCBacEEd754d8CD0b4da0AaDCE8d8cf5 ; < 9xDdKqcZO9DUM1cI35IE8UrJ721TxX3380ytZIJTD06ZXTF9teLfU2tUhgMMAmGt > > // < CALLS 27,94286995044 ; quote ; 16,1974130106331 ; 15,8734647504204 ; 0,0204081632653061 ; -5,9 ; 14,9826070348356 ; 17,4122189864306 ; -5,9 ; 34c1EAefAdBe82d6fabDaCBE60dee1d0eDE2AdD8a9Ea5BdECcaE51d189D2Dd86 ; < Hb2zeF3H1HV6ND7j5K1wHd86rIiZ7gJSv92lbSHRJ8IzZ0d4YfNv14A2apY8t4j7 > > // < CALLS 29,340013447962 ; quote ; 13,8826388518815 ; 13,6049860748439 ; 0,0204081632653061 ; -0,3 ; 12,8414409379904 ; 14,9238367657727 ; 0,8 ; a0EAae1963EBFd6bffe9f90150C85d02efEeabC7EDdCea9edCebba3cDEE0D9A6 ; < Q22h8792Aqk5RKf52gdP2oY07sS3y6wZ5e14f169fD29jve92S3sE1ECMFxpK6W4 > > // < CALLS 30,737156945484 ; quote ; 11,8420480713358 ; 11,605207109909 ; 0,0204081632653061 ; 1,9 ; 10,9538944659856 ; 12,7302016766859 ; 3,7 ; e1fDCD5CFEDbDECb1eA3C07eFFF4f6B9aE2c1E0cDDAcFF5a8bC4A6fadd54F55D ; < 1ke6EyK8Zao5Z13XzJcCupXho9Tb2q7KwQZGRzWCZ856DssgZL6mKh877QM7Yu2t > > // < CALLS 32,134300443006 ; quote ; 10,0576120973883 ; 9,85645985544054 ; 0,0204081632653061 ; -7,3 ; 9,30329119008418 ; 10,8119330046924 ; 8,4 ; 51D06B87EAcEbcbf7cfDcfAf8ddDC49C5deAFEa27B7afbeeEa2Adf0bF7582aaA ; < 3oE56jMm08OW7PP2k3l9eRiOOS87gXR0W55Rfi25TWh6W34eyF93Zp0xu1fd98CD > > // < CALLS 33,531443940528 ; quote ; 8,50851942129926 ; 8,33834903287327 ; 0,0204081632653061 ; -4,8 ; 7,87038046470181 ; 9,1466583778967 ; -6,8 ; b412accBC4bb7ffCDfedEbfbe311d76e4EAf68EC683CCDC5B5Ccaa6eadACcc80 ; < 23V76whG4P5PtN3D18xjWZtBWfpl4Mfc0X04C2f7BvD91Owab1uqT1Nwgr9ymUhu > > // < CALLS 34,92858743805 ; quote ; 7,17254050243703 ; 7,02908969238829 ; 0,0204081632653061 ; -9,3 ; 6,63459996475425 ; 7,71048104011981 ; 3,3 ; 2A5bFC2de7F1adb57EFFD28DE9CF2FfAa8eebF6DCbBDDAAE3990cC0C6E64B7Ed ; < 0ii45L2ne3nD367ExkPf723rvSoOx05A9y12P1zdZ53Tgzf2KO1SemL5dt662fat > > // < CALLS 36,325730935572 ; quote ; 6,02713272602194 ; 5,9065900715015 ; 0,0204081632653061 ; 8,1 ; 5,57509777157029 ; 6,47916768047358 ; 5,6 ; E9e85CF9eFcDBfbBCCdD6DFa08cd8fAcAFDa3BED24cf4DdCBEf6f2ddeC6A297B ; < 6DIM8BB337TFq4v8OJ9wzcPqdW4Sx7gs0WobbCp1Rcm5AbiG9V7JxeR69x76Ts0P > > // < CALLS 37,722874433094 ; quote ; 5,05028078983101 ; 4,94927517403439 ; 0,0204081632653061 ; -6 ; 4,67150973059368 ; 5,42905184906834 ; 2,7 ; EcdCfaDd3caB7ebbC7dbD73E61CDF02eeA1C3AADAdbAdED8BBcdEaddE6C2F0Ad ; < B5Xr4M7OETy9P8L8SSrwy44GFVJ5OTlK2hPIwducIzxegYh0Zdd47Vh1jkZTJ313 > > // < CALLS 39,120017930616 ; quote ; 4,22109351113971 ; 4,13667164091692 ; 0,0204081632653061 ; 3 ; 3,90451149780423 ; 4,53767552447519 ; -5,2 ; 0fDbf8FFed6c6CF1BEe510ccD2B8Bb2CDbAeFbCc0fdFa80ABAA9bDbdc0a41a2A ; < lnbb1aHaf7fo8u6jSgPGEoJ7vxXxbZ0Incln7sb9vd63epxZ0xxy7JW0Jq0PfcFw > > // < CALLS 40,517161428138 ; quote ; 3,52019161191621 ; 3,44978777967789 ; 0,0204081632653061 ; 5,6 ; 3,2561772410225 ; 3,78420598280993 ; -6 ; F9C2bdfcBD87fFDFBe3d0be9AcfEBba9E7Bc4d1bbA03d2E61FFD517ecAE793Ed ; < 8T8A6bwV8RfscwFov0b55zjUg8Lz469rvil9U62GFR49lq4vu5Pq70HMWXNr6hq2 > > // < CALLS 41,91430492566 ; quote ; 2,92992596859076 ; 2,87132744921894 ; 0,0204081632653061 ; 4,7 ; 2,71018152094645 ; 3,14967041623507 ; -2,9 ; eed009aa5AE3DB4FDFBa82d934DFF3eCEf4D0818a7AB81ceF5D6FD590eCcaddD ; < 890yH1bCba8VJ7Ef560Y65M5g9Z5i0OdF935HtxO4yqOuIsZ2dmqHh7V3WlaRIf8 > > // // < PUTS ; 1Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 13,97143497522 ; quote ; 0,0585877411035796 ; 0,057415986281508 ; 0,0204081632653061 ; 2,1 ; 0,0541936605208111 ; 0,062981821686348 ; -1,5 ; 05bf219Cbbd77bFDFdFc0a8cB6D4Cd5ebf62F1CaCDF6817FFcacFBeCDafdBc64 ; < dYTz3RbaWgXOFo4y633Knq5C5J73pPtjt43mNt76nyP828FNJL0C5XpzzjbfsCt4 > > // < PUTS 15,368578472742 ; quote ; 0,145301040226713 ; 0,142395019422178 ; 0,0204081632653061 ; -5,9 ; 0,134403462209709 ; 0,156198618243716 ; 2 ; 6DECACD2FE1ce513Ce7Ff7dC0bea81CBEb16EcE6dBCcDcb081B01b7CAcaaBf6f ; < C239K1GIcOH90fcjApeW1N5feL3w41fZ2smzSPeT4gaZKod0Fq44HEd3vK8RFb96 > > // < PUTS 16,765721970264 ; quote ; 0,312278302197384 ; 0,306032736153437 ; 0,0204081632653061 ; -1,3 ; 0,288857429532581 ; 0,335699174862188 ; 1,6 ; fB31FfD0F11aDaDEB03d4ddEfcbD6DaA1Bb9FCCCBBA1Ab0EBBBDe9e4F3ccE0Cc ; < fmx89mC7JMIw018bd9x5c1KJJO824Xv6aG326kpDFVP9A7ay512iMwHV2JwFm2jy > > // < PUTS 18,162865467786 ; quote ; 0,598879967814781 ; 0,586902368458486 ; 0,0204081632653061 ; -3,6 ; 0,553963970228673 ; 0,64379596540089 ; 6,1 ; dF80c3B95F83F3603Ad66FDbf8DD99BaaFaEfcaBf60C4B1Afa7CAD665EdA0925 ; < y9RSNXZpEFnjli709152412lnenTqS4QLM25Q3L02M5BHpy37PDd973h9soIca8o > > // < PUTS 19,560008965308 ; quote ; 1,0475564489426 ; 1,02660531996375 ; 0,0204081632653061 ; 2,2 ; 0,968989715271906 ; 1,1261231826133 ; -8,3 ; df8c910AC6e9D1ea0CaabBde224C6ABADcDcaadeed1c0CdAABefadBeD8A8FC5E ; < DnFeX8l2cmedk6g8y4Lw66ccaox2060J23313GH6juESueHclgcpKzEpFH59si9T > > // < PUTS 20,95715246283 ; quote ; 1,69952268156894 ; 1,66553222793756 ; 0,0204081632653061 ; 4,3 ; 1,57205848045127 ; 1,82698688268661 ; 8 ; 7d42fbc4BE1c1a5fd887cA31EdcfAeec938c169DA96efFBF42Df0f7eEFfFd684 ; < 9MFyNrm2Jx9Rj8y8OeR3l6DDsyNM4UA62Jo7B71e0I5gpm4f37I4wu52pa6pIPFX > > // < PUTS 22,354295960352 ; quote ; 2,5908769945342 ; 2,53905945464351 ; 0,0204081632653061 ; -4,8 ; 2,39656121994413 ; 2,78519276912426 ; -6,2 ; 5ebC4c9e8AeBb3EE6eDE2A6bf4B3fAD579decD9348bd3c9cFcD738FEdeCEacb6 ; < uqso7LkeD180AJK4zX6lqZjaP1WBkP2N0a4G64Uup8xz7seW9kYEkfBf76c0Z575 > > // < PUTS 23,751439457874 ; quote ; 3,74979556225415 ; 3,67479965100907 ; 0,0204081632653061 ; 7,6 ; 3,46856089508509 ; 4,03103022942321 ; 8,3 ; 0aac6FDBfeBdb5bfC9EFc758e5A744307dDFFD9B863BdBC04AC0b89BBD089fBC ; < 0n4t1Z6v3IYq8mYrZ9Og6ZECvgH2XGZHzq730W30zeOF4xY5mPo3r63xB01e6Ak7 > > // < PUTS 25,148582955396 ; quote ; 5,19503605153417 ; 5,09113533050349 ; 0,0204081632653061 ; 1,4 ; 4,80540834766911 ; 5,58466375539924 ; -4,6 ; 6a4Aa6f9F9F3aDe54bAbBDCF61abBbfC7a3D41bfA5eaBafaAe4A9CD0C44ca8aa ; < 3XY0xnSztQN4eU72gYH3TopOdZDOHfopQKBHxEcQSbthU7nTJpf32HnTEO47bVVf > > // < PUTS 26,545726452918 ; quote ; 6,93566790223434 ; 6,79695454418966 ; 0,0204081632653061 ; 1,1 ; 6,41549280956677 ; 7,45584299490192 ; -0,5 ; b4c0BBF8bdE7aA0BA6Ccd4f20ABDddFAD02AaBBA6DbBcF97591Ede6C8f7fD7FA ; < T8CjC28IyX45fcua5WujMSYHGiE1Mllz3HKD8B858c8ogf66s0y31eYpn6C2mweZ > > // < PUTS 27,94286995044 ; quote ; 8,97176164348836 ; 8,7923264106186 ; 0,0204081632653061 ; -0,4 ; 8,29887952022674 ; 9,64464376674999 ; -9,3 ; 56Ae6CCddDA51D87AAcCe2FEB803aad3A0B6d4acCD56E2b1fE9E187c76D81Cfd ; < mdz82js0mlGPFzw81p2g4fib9jHAZj6XwygjThlJJj6cdU5DEK3rI51bE0mrxdTY > > // < PUTS 29,340013447962 ; quote ; 11,2957049163796 ; 11,069790818052 ; 0,0204081632653061 ; -2,1 ; 10,4485270476511 ; 12,1428827851081 ; 5 ; 65DE89FcbbEEFDDf4ec55dA2c2b6843D8dA3FbEfab339FCb2F9F5aAFF810fAbe ; < 10ZcVz3FaEF2732X51655BLO9YNCdk9F5WDSS1up9544792p879oxg34JAem1ZUt > > // < PUTS 30,737156945484 ; quote ; 13,8938315674766 ; 13,6159549361271 ; 0,0204081632653061 ; 2 ; 12,8517941999158 ; 14,9358689350373 ; 7,9 ; fafDb45Cbe2B6D611edEAC25261Daddecb3c4Df1Dfe6BB8E5dD063Ae4a5DdbC4 ; < KXHvkSLlZDo61UhG7D24CpC26Q9ZmdyJrQ2ZsfKsX9IMBKuH5Tzq1DEm7X169cvo > > // < PUTS 32,134300443006 ; quote ; 16,7481130251719 ; 16,4131507646684 ; 0,0204081632653061 ; -9,2 ; 15,492004548284 ; 18,0042215020598 ; 5,8 ; DaAB9D89c7bef5AF5d2bC74Cf7aeD9c21b9cFf83F9bC2b3Be8CFEc0A9Aa3A8fC ; < Y2470177Aq82qxKG3E1544MViHvqjpVYS10fmQdQuXde9NkNyLwLaY60DVnTDL1F > > // < PUTS 33,531443940528 ; quote ; 19,8377377807256 ; 19,4409830251111 ; 0,0204081632653061 ; -3,7 ; 18,3499074471712 ; 21,32556811428 ; 8,8 ; c59B9fDFC6B66FAF1AA1Ffc5a9eE4dbB0eadCfE062E30EfC869dDbB6D9a5dC4F ; < bbocO7Yi76aeE1gbqPLY14L5ca1bG8jHcrm3Gy7JH33wfpb5Tnfd0wb3DrwR71sZ > > // < PUTS 34,92858743805 ; quote ; 23,1404762935061 ; 22,677666767636 ; 0,0204081632653061 ; -0,5 ; 21,4049405714932 ; 24,8760120155191 ; 9,1 ; 42D535BAa505daD81df6a695FC7CDbDBC9b2F7bd0daa53fCcB4e0CB3b0a3dB16 ; < iHwuF2dJNFM6qVJsgIr91u92ybYa5633qPr4hkKMfg4N53whB7mB2e1127rt6qd0 > > // < PUTS 36,325730935572 ; quote ; 26,6337859487338 ; 26,1011102297591 ; 0,0204081632653061 ; -2,7 ; 24,6362520025788 ; 28,6313198948888 ; -3,4 ; 90BEbae4BFCF9fACFf0b4bdaae6C7C2bFCeBbbDcFcC7BCeF8affcaB5FFb8fBDB ; < 9J1Q3AI1BY1G5ecInPeAw5CuSEgTN5V6Vzo68jA650D1u86igB44dAK6J7e2fLfr > > // < PUTS 37,722874433094 ; quote ; 30,2956514441856 ; 29,6897384153019 ; 0,0204081632653061 ; 3,4 ; 28,0234775858717 ; 32,5678253024996 ; 1,4 ; 0AA5bB34695649cBECf5aF8ddBF5dbCa4E5a0Af5DCbe7d9d93cEeeED367aE84c ; < fI09Z5HVZ7i8CXVaYbLOK616SgzWwaCv3D3F8ZFC4kg8y1eNSt8ICbzpmoeh135I > > // < PUTS 39,120017930616 ; quote ; 34,1051815971371 ; 33,4230779651944 ; 0,0204081632653061 ; 0,4 ; 31,5472929773518 ; 36,6630702169224 ; 4 ; a5AcC04976fC337dEB6c28dd3F6aBffFD2FD9CbDbD3cEEeeEf7AdB74AfFad66c ; < jc4DH098yeRUZE0l7551Z9X4wfW3s7tC9x54UM2YUguKN5MWWPy5o744oZc5h0ji > > // < PUTS 40,517161428138 ; quote ; 38,0429971295564 ; 37,2821371869652 ; 0,0204081632653061 ; 7 ; 35,1897723448396 ; 40,8962219142731 ; -5,1 ; 8BEdBC4e80CEFa403EebD2BD5ABF9624EDfcEcDfe7B6b8bcFf6Db8F1c9cB5DAD ; < 45Wcw2iAD42eEm3KqV059DR5r0yXwIo97MeFoY36xL019UXInU7326JxJkBXZ5B8 > > // < PUTS 41,91430492566 ; quote ; 42,0914489178737 ; 41,2496199395162 ; 0,0204081632653061 ; -9,1 ; 38,9345902490332 ; 45,2483075867142 ; -3,6 ; Caeebe810DE9e1DA7F9cE93F0d13a0Fe0A8aA3Beca8b9BDA1F4B73aB9AfeBBd3 ; < LYmz6vgzmmkfey51E394kRE9HrkmI189w7rmBY9iYeMFZ73l77N66B4SnG5K8m31 > > // Futures_Teploseti_LLC // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 25,994915 ; 1,14 ; 21,8025570175439 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; a6F803Dd23bDAE78dccAd3aA73eC8Ccc8A68A8fd2c7EBB9CA56D68bfDEcbB2dd ; < wg3lWlODG00cay8bxTw951Afy49NApOW3ovKQYF9lp9RvQgw27Cm5L1t8c88Ga9c > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 25,995648944215 ; 1,14003648 ; 21,802471149182 ; 25,995398944215 ; 25,995898944215 ; -0,3 ; -7,5 ; 8,9 ; -3,9 ; -6 ; 2,7 ; -0,34 ; Future47AP19 ; 7938bc5D4ADC23df07A47ac60FDcF15da521bbd2A96DD52D8eA6fFDD6210BEeC ; < Dr8zvEBe73ubUs3qBcyOcxE6FG546OFH2KdM3DAys101O59dgKK67423eitwEn56 > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 26,2753419638376 ; 1,15382109326135 ; 21,7724576342843 ; 26,2750919638376 ; 26,2755919638376 ; -0,8 ; 7,9 ; -3,8 ; 9,1 ; -4,8 ; 1,3 ; -0,07 ; FutureJU1969 ; f4cc9A0a7CC61ABdbC99BbB1BbB2AFfAb2ed1F4aA94be4Db931BaEcFDaD8cAf1 ; < 4S14vTq52ky39Com1xaLZI21E6v5TvGb2x2OP71GH793cMiK18T3ry2d7kU9IEf2 > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 26,5796677629975 ; 1,1818956457141 ; 21,4890140338389 ; 26,5794177629975 ; 26,5799177629975 ; -5 ; 7,1 ; -3,4 ; -8,1 ; -8 ; 5,9 ; 0,51 ; FutureAU1924 ; 74eCDaeBF7CD3aAAb93C2f6b7d14A2BCCdAAc9C8a9cB111fa3cAC3F6a2cb454B ; < 6Rkzj0RoKgzYmUCxZ8e5s1nbjtwe1DGw2q8oQyPkh3YGEd49U71jC2Y205z6sKgv > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 26,8908505283184 ; 1,22552067586766 ; 20,9423882908216 ; 26,8906005283184 ; 26,8911005283184 ; -1,1 ; 3,1 ; 6 ; 2,7 ; 9,4 ; -7,6 ; -0,8 ; FutureOC1929 ; 7cBf9E9b865de6b20bD45fe5ed55C2BCd9FaDcBA0BfCd1d3bEF66Fd7d494C7Aa ; < rBi5RNA4iQY0b47K0aX22PX87X1tmV9fBXt2AXX2kdslV015W3GRlJwsZxkA25M6 > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 27,236863510922 ; 1,28597434253225 ; 20,1799431840056 ; 27,236613510922 ; 27,237113510922 ; 0,5 ; 9,1 ; -3,4 ; -0,7 ; 4,8 ; 4,3 ; -0,87 ; FutureDE1986 ; dfdCFEda0CbAb2DebCa3c9Ad5cA72C8b1C9DCBb21B8aDcBe0B46DDFEbFd24c8d ; < 4U3Wg0awLQrv1Yv3W8AWbNbq4qr305s93WjEQbAI7YVXVAl06GvGJ3bAVI539rw0 > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 27,564312651388 ; 1,36580804930367 ; 19,181688536278 ; 27,564062651388 ; 27,564562651388 ; -2,3 ; 8,9 ; 0,5 ; -7,4 ; 3,8 ; 2,7 ; 0,37 ; FutureFE2083 ; DD8aAD9BcafEFCEdD9CCeCB4fdDD31C7dd0CdEe3b1ddf8F1efd2d8AEC7aDfDDF ; < ge89HqeF07O9iih1N5Jop8vXkFVetEQr9Cdna094LXOuWkAxDfBJHDborrSC8gAl > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 27,94286995044 ; 1,46815624128629 ; 18,0326268857861 ; 27,94261995044 ; 27,94311995044 ; -3,9 ; 3 ; -3,8 ; 4,7 ; -7 ; -6,7 ; 0,42 ; FutureAP2091 ; bDBDbECbfECc409A08840E0F321CCFEb1A5cdfbFb1Bc6dB449C2ffE39eFbbf8E ; < t6s1QPn4FaHleVNam4Ik9Q06Rc82HGW29m47m3Vpj384V3y36Y42RNS7d3aOG7uN > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 28,3151312833803 ; 1,59746536122074 ; 16,7250361546135 ; 28,3148812833803 ; 28,3153812833803 ; -9,1 ; 1,4 ; 0,3 ; 1,8 ; -6,7 ; 8,5 ; 0,03 ; FutureJU2069 ; aeef3AE57eEEC175fd7fC775ccE14f6bF4Fdeac8DddadaDaaebBC1C2fB3ba17A ; < tT20E3Jsn3soyhuFWpvUvNl5UxvJYVVq3ZH2z0UoWLzbhIA07isK7Mod11Wa2mrA > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 28,7253444532562 ; 1,75923236003563 ; 15,3283401930342 ; 28,7250944532562 ; 28,7255944532562 ; -8,4 ; 0,4 ; -4,6 ; -6,3 ; -7,1 ; 9 ; 0,06 ; FutureAU2028 ; A0D73AeCDE22dca02c4f6c3e92e4FBEbb81BaC42EDCF8F9B04Bc4eC36Ad93eC0 ; < f3o8PU3UE54JbN6O17gQHdo30rBw8VYtJNWt79u6Vy6Vk91K3gqt18GxSBPX0uB1 > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 29,1618824142211 ; 1,96077129067131 ; 13,8726588118479 ; 29,1616324142211 ; 29,1621324142211 ; -1,7 ; 0,9 ; -4,2 ; -1,1 ; 4,1 ; 0,6 ; 0,97 ; FutureOC2044 ; B1aDECfB0edAbd06331bCCdBEB87BD9abABe2fBcE473fcada5FBfdEF7bF7bAaB ; < 2B0SIT9oUT9FhrzmBJLtv59DKWuujxT2JjHO9JJNxAwJ49O2VzgLK7aqdG4B5XXX > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 29,6174705191772 ; 2,21212567513903 ; 12,3886925376949 ; 29,6172205191772 ; 29,6177205191772 ; -4,7 ; -8,4 ; 5,6 ; -8,4 ; -9,3 ; 6,9 ; -0,77 ; FutureDE2026 ; 4cfc1CfAe1E7D4C22aab29BAFf86a8AfdB6A795dfea5fbFE2add75d785bD5FC3 ; < d372vy9u2657OM3DMkEZnRyJwvI05JI5MzRH5ev4k49clGzf8ZP0A8FcxoZo0F3q > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 30,0268142636263 ; 2,52583462941153 ; 10,8878781350076 ; 30,0265642636263 ; 30,0270642636263 ; 3,4 ; -5,1 ; -5,5 ; 6,2 ; -9 ; -8,6 ; 0,34 ; FutureFE2174 ; 9ea7F967c9BCaaCCfAF3Aed3ab3ED6cC5FBCd7eBAbddd1CE335Ce9bbdEE2fcD6 ; < AUTcl1EY24LC8yVD192c5NRShpi537c4Exe2Z6y7GoR09510fH4focSFM241WwbX > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 30,5048040887795 ; 2,91893785029074 ; 9,45065213901046 ; 30,5045540887795 ; 30,5050540887795 ; 3,9 ; -4,6 ; 0,7 ; 1,7 ; 9,1 ; -7,2 ; 0,93 ; FutureAP2191 ; 23EFBf89f1F5cd0Eef6ae2f24fd307cEd30FBff1CA1b14eabb1BD02f8BcEAAF6 ; < h2q97g1T40au10L0e7724HTkHy6SVp68bxdEo3D3F1b5W5feY8L9mstWbDj56FXS > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 31,0329719390179 ; 3,41431822693473 ; 8,08906841026309 ; 31,0327219390179 ; 31,0332219390179 ; 5,4 ; 7,8 ; -5,8 ; -8,5 ; 6,5 ; 0,3 ; -0,99 ; FutureJU2161 ; 24519adaCCf46b61Fd2c4DDE638FBBEE2Df6dc4dECc17c9E7F8cAAd2488cABe6 ; < 0N241m86X0z9rg4nB4TzNy7YN434LQrub8klm0lh6F00yz1CW9Ibfe0cv0NXn204 > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 31,5484678916045 ; 4,04188025308742 ; 6,80539400381936 ; 31,5482178916045 ; 31,5487178916045 ; 8,9 ; 9,6 ; -6,5 ; 8 ; 6,8 ; -5,2 ; 0,16 ; FutureAU2142 ; 267fcD77cc4BE169d2e8c3dd3bBcFCdcCba9cbDC3C54BADB19Df56D351EBDBDF ; < 4pss5H4k83ofGVHdMvO8pWTmRn6M64qV9Z5lknL7644Dm8CzpIzSatRxYgc6y0di > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 32,0572505487755 ; 4,8432658796766 ; 5,6189326262873 ; 32,0570005487755 ; 32,0575005487755 ; -8,2 ; -6,4 ; 6,1 ; 6 ; -7,4 ; 3 ; 0,16 ; FutureOC2180 ; DB7bbAA1BcdD7CdfBF3aBAfeF95F5cDdC424eD7Ece3F77C684a91D0BD8dEB79E ; < FdH8x2bpv7y2wH5s0OyIgWjIk81opGBY3b990O58Fe4ya20WZIc7Xh9YOH9EP64H > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 32,6596697766435 ; 5,87329803803142 ; 4,56070363961816 ; 32,6594197766435 ; 32,6599197766435 ; 7,8 ; 9,8 ; 5,5 ; -9,4 ; -8,7 ; 9,1 ; -0,58 ; FutureDE2129 ; edFf2d2DEb46A15A55fACBd5fD3ECcA32F60E92bb0Cbc921Ffb8bC2c13CDf1Fe ; < hlz263b8bIvv45TwjEbzr6nA55Zmgss73D8Aljc2u4rCdD1DpLPe0S10wC9Xbpk8 > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 33,1598876010461 ; 7,20845609854301 ; 3,60013727596239 ; 33,1596376010461 ; 33,1601376010461 ; 3,1 ; 3,5 ; 3,3 ; 2,2 ; -0,9 ; -0,4 ; 0,88 ; FutureFE2276 ; 1d8afCfc4b8DCeaCf682F29dBEbB5C47C9dC5afb4BBEfBbEcdCe65e0dD9AE3d1 ; < Bb34vL80gJ7Q5bscVk15A8191UCm2xgDR7KWPia97D3P7YjpRFxM6HNt89z40G6L > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 33,8376937315093 ; 8,95461718588486 ; 2,77879847112253 ; 33,8374437315093 ; 33,8379437315093 ; 6,8 ; 5,6 ; -9,1 ; 9,4 ; -0,3 ; -3,4 ; 0,77 ; FutureAP2248 ; b9AFF8B7cCDA3cF3D9eff2fFa893cF6F5CE4d39DB4Fdddbd4CCfaFfbFe6FD129 ; < 3oGVRt4z7Pc4GM4ggU43NM3kJ0rvZxsrmwHR9TL88Lt6lq8CzSLBok5vsw88Q2yL > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 34,4805753685878 ; 11,2597813450131 ; 2,06227752671761 ; 34,4803253685878 ; 34,4808253685878 ; -6,7 ; 1,2 ; -2,4 ; -9,5 ; 7,4 ; -4,1 ; 0,25 ; FutureJU2252 ; bcC578CeF84eFAE6b6ccabADaEdFcDbF84D1d6B8dBB51AAaF4afafe6e01DCbDb ; < 7DvkRiy0okcLgE5858Fxt9qbwRWS5M0H7xjrS4K8P2ZHpcg0daCK3eyAL2Qr1h5K > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 35,0058940089548 ; 14,3293517656877 ; 1,44295028703099 ; 35,0056440089548 ; 35,0061440089548 ; 1,5 ; 5,4 ; 2,7 ; 0 ; 9,3 ; 5,8 ; 0,95 ; FutureAU2230 ; a6CACfEFbbFBAA706331C8C7815eB5a26b6bAD1cDaA8B8Fc1BbbbaFB63Ab3bAc ; < vp24Ij0qDI60t664429wyOh7kUi1di2Lp99E6a0144mFXQ84RSo88Tt195bdywT5 > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 35,8409622066643 ; 18,4577499874342 ; 0,941783924425475 ; 35,8407122066643 ; 35,8412122066643 ; -6,5 ; 8 ; 9,7 ; -2 ; -7,7 ; -8,2 ; 0,11 ; FutureOC2293 ; 0AEbfaeacC9C7ccDe81033Aa5cFabBCaDb4808DdEa1CEF74FfB6C68dCAFB5cbb ; < Ss6Sy8ahoIn6SR1sPTeak2o94jR39UCl7jqLKoLMd7691nQ0Pvx2h2u44D7UKf4h > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 36,5181543060978 ; 24,0642562142933 ; 0,517526824053979 ; 36,5179043060978 ; 36,5184043060978 ; 4,4 ; 9 ; 6 ; -8,4 ; 5,3 ; 5,4 ; 0,81 ; FutureDE2298 ; Ee6a64e2AeCa2cCc5C54DddbBdDdBE10FE76EFA6ccA6DeAcdEFeFf52cb610372 ; < 4rNb9vXfWGbi9vdznZ7WaOpq173kgV3SpmQOXPCFUb16fn47h1xYtOSE1UbTr28Z > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 37,2368729556471 ; 31,7539835653543 ; 0,172667765573671 ; 37,2366229556471 ; 37,2371229556471 ; 2,5 ; 9,2 ; -6,4 ; -7 ; 6,2 ; -4,5 ; -0,58 ; FutureFE2332 ; F4b30A3A78efcbDdbDcdEf3F7d7b8c0BACEccfceec1A6EC0bbf5CFb24aDB50Ca ; < 9fxtIPni1kx8y1C2RkV9V2qwIk15t87QU6p9i0Mwm7HMHZ5bhe7YweP6IK7K34D8 > > // < CALLS ; 2Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 15,2524020443897 ; quote ; 57,5879066477486 ; 56,4361485147936 ; 0,0204081632653061 ; -3,2 ; 53,124843882548 ; 62,0509694129491 ; -5,9 ; 9679BcEEdbcE2C8Beada55bcEbF69BcBb1Ed54BAD7Fc88afB972eAcC8EBfCdb1 ; < 4rah7t15Z8P02k3KIeCX8LFcvpCpM8mdC6s4qbeKHp6zaBuAbbJVgZAX1J1mZ1se > > // < CALLS 16,7776422488287 ; quote ; 53,6044676860604 ; 52,5323783323391 ; 0,0204081632653061 ; -5,8 ; 49,4501214403907 ; 57,75881393173 ; -3,9 ; Ec8aa2fdcADfD0e4bc7aa2B0dcbbeDFA331c12f3f0AEfaa47c2e6BFf1Db9cC0D ; < XG5JABi7bnly5yZ8g7Kvidwc85Qn6mBr9QBSc6H69CYWf1hnN9fWN3furLsu4diF > > // < CALLS 18,3028824532677 ; quote ; 49,749238783706 ; 48,7542540080319 ; 0,0204081632653061 ; -3,4 ; 45,8936727779688 ; 53,6048047894432 ; -4,3 ; efa0FA7EFbb4ccaADEdBbdbA7FF40daB67aECE2F860A4fcaBD9f3EB8f3Bb95BE ; < 4z46YpXoZw7HXNScZtZuhVgtAv91VHNu404IvHzmBqoBJjNNl9TvPiOlRYc5dcx0 > > // < CALLS 19,8281226577067 ; quote ; 46,043352958261 ; 45,1224858990958 ; 0,0204081632653061 ; 5 ; 42,4749931039958 ; 49,6117128125262 ; 4,9 ; F95B4aa17efefd27AFdfa0ffA68AF6e80B2bBaA5e92bdCc1fABb28DC1c78c6c6 ; < CqP7lsqZRvQ30QeiMpWhRG34Z73R0FtYyctbxaMaZrzi1cJ360SLW8KRxmtr2672 > > // < CALLS 21,3533628621456 ; quote ; 42,5041624904487 ; 41,6540792406398 ; 0,0204081632653061 ; 6,2 ; 39,2100898974389 ; 45,7982350834585 ; 8,1 ; 3cECDf05b39Bf16eAAb5DC466DD1f7beBcD285277bbdDadbEc87E08EbEebc7E7 ; < bhh9YUR9gnWFiGC70ZuU2B429a26u18196if6457Zw68P65j75gHuOE51g60S00q > > // < CALLS 22,8786030665846 ; quote ; 39,1447745021317 ; 38,3618790120891 ; 0,0204081632653061 ; 8,9 ; 36,1110544782165 ; 42,1784945260469 ; 0,9 ; e9D82d5C54FFecBeac63BEcc14BAfbE5DB7AAdcdCEbFfDE6e61FC9Af6bcdfcDf ; < GOiTe4ORxCjwTVonxm3q8XqxK05ERFG5K389x1I0Pe44vj1FlTyqlzMy1a5301ug > > // < CALLS 24,4038432710236 ; quote ; 35,9740072988448 ; 35,2545271528679 ; 0,0204081632653061 ; 0 ; 33,1860217331843 ; 38,7619928645052 ; 3,2 ; B56DBd0aC0fd0951fD7CDC6cDAa60bDAF71EcD9C0e544edBE0AD3aEA34b1cd33 ; < bKd1033GD1RLG92w55L2X48Jg031kI3Ac6Qw2jLO1btEczdbdJ7T7YS72jt0Icv4 > > // < CALLS 25,9290834754626 ; quote ; 32,9966443893104 ; 32,3367115015242 ; 0,0204081632653061 ; -5,8 ; 30,4394044491389 ; 35,553884329482 ; 4,2 ; D68AA6232aBbcABDf8b0CcFdD0bCdff1cbeEF771EC1A47aE5DfeF24EfbBFF02B ; < i7iu5oTLXZu1FKsF1iScZo32TM7V2KhAPNvp04btO78C2hK15yjLPDJfFmP9dt36 > > // < CALLS 27,4543236799015 ; quote ; 30,2138736853229 ; 29,6095962116165 ; 0,0204081632653061 ; 6,8 ; 27,8722984747104 ; 32,5554488959355 ; -2,8 ; B42e5aBE4be6deCe81fdE7FdFD4f00A3eF4AeeaAf83E49a5Fb3CEfe1eEeaBD6E ; < 0oHuiVXpz04h31ViJtKDB95s8O7irjfLfcK4F1XnX1UFs4ASz4pZU3y2VwfZ8c5x > > // < CALLS 28,9795638843405 ; quote ; 27,623821116272 ; 27,0713446939466 ; 0,0204081632653061 ; -9,7 ; 25,4829749797609 ; 29,7646672527831 ; -1 ; 5C68dAaf88b1A5cDFFCa7fa06FD77aED7FF4AD770AdCeAeeDE97DcFcd4a0BdE9 ; < R62xFYL7Z9arx96FbpZ22o5W1TqWb661Y1B6B66Q3Poop6uVbc8O976H4nK4JYJV > > // < CALLS 30,5048040887795 ; quote ; 25,2221118387227 ; 24,7176696019483 ; 0,0204081632653061 ; -4,4 ; 23,2673981712217 ; 27,1768255062238 ; 7,3 ; dADd7cCeDeeBea9CaA9ccEfF08Bc59ccD7AAFd10Beb3ACDbfFeA68ffCA5Dc1cd ; < C4r3b8qZjUd5GCEE180DKp9nJ5J9KXmPo35k5M807Yh3DGhRONphQnEi1T6gPFos > > // < CALLS 32,0300442932185 ; quote ; 23,0024138329086 ; 22,5423655562505 ; 0,0204081632653061 ; -7 ; 21,2197267608582 ; 24,7851009049591 ; -9,7 ; ceDad7Aa79E1EFc5Aba3F23bDd1d79BE4BCDABafeF2cDacaC5dcdEbCFd3e1FBA ; < 3h8Q8cYjvR13EYBM61U87M9H3J2A43M6zf2ja8ay77pvKzIsUFZ1us5RtKJ7rxu7 > > // < CALLS 33,5552844976574 ; quote ; 20,9569361662668 ; 20,5377974429415 ; 0,0204081632653061 ; 9,1 ; 19,3327736133811 ; 22,5810987191525 ; 1 ; FDa425ec55369dADbdAE0FfB1DcB5bec1EB32D7Cf7afebCFB59c12dE4EebBE26 ; < cm4yrQTbB56s708E62QPH8WVhs6qzAB4XMp6J92OkkDn5i3ppYF9V4ay5D9ex1pf > > // < CALLS 35,0805247020964 ; quote ; 19,0768673163296 ; 18,695329970003 ; 0,0204081632653061 ; 6,7 ; 17,598410099314 ; 20,5553245333451 ; -4,4 ; 89baCAeC3F4bd1eEaFCE29DDEFdbEA99AdcF9bDbFF4Bc5845fECfBa0C305c6AB ; < 6TD6B52beOI77F3l01IQD33x8kES23cR2sq9byuMl5iOV90h522nax7AhxhP2ENe > > // < CALLS 36,6057649065354 ; quote ; 17,3527481632677 ; 17,0056932000023 ; 0,0204081632653061 ; -3,7 ; 16,0079101806144 ; 18,6975861459209 ; 9,6 ; Ec2FdbA8Fbdac0BEca9Adca77dfF6ABb12d671Bf6C3BE8ab8BcE01f0F1745dB6 ; < 00KacSaWc4K893SGWUm9wXCJKlxKsYsAeUcjP9xF6p82N065UZ42I9Z6E4b13Ndr > > // < CALLS 38,1310051109744 ; quote ; 15,7747803335794 ; 15,4592847269078 ; 0,0204081632653061 ; 0,4 ; 14,552234857727 ; 16,9973258094318 ; 7,8 ; dACD3BeC9ada5325fF40eCfAd37ceBC1DbBF29dBC2dAd14DbF5E02f2BFd3da4d ; < exLgSD0SwVk5Jkv5FBD6LC486n90dZ1i2Q0vcNT41VIL175XYmmPttIy57lQYJH0 > > // < CALLS 39,6562453154133 ; quote ; 14,3330742666231 ; 14,0464127812907 ; 0,0204081632653061 ; -8,1 ; 13,2222610109598 ; 15,4438875222864 ; 6,1 ; f17abE88aBfDF1BFc9AFB5fFaB5378CCCa2e7f5aDbfe6FaaaFBE7fBcD6fb1e01 ; < 36V873i5zctZS3uh6aF2L0166m0Na920Mpk1505Oe4e056QbfHIVCOYRKqKYOSJU > > // < CALLS 41,1814855198523 ; quote ; 13,0178433568744 ; 12,7574864897369 ; 0,0204081632653061 ; -2 ; 12,0089604967166 ; 14,0267262170321 ; 2,3 ; 3baFEa4cFfe1BDD2eFEF5Ed4960DBaEab3a6A8D3fAE2fBAc1AaA3ef4EabF4Bc5 ; < PZv8DDvzDuq1YT2CeF6C6j90v55440He0AMijBABLyYb243rN31C38Hbn5iHBUAq > > // < CALLS 42,7067257242913 ; quote ; 11,8195513380887 ; 11,5831603113269 ; 0,0204081632653061 ; -2,9 ; 10,9035361093868 ; 12,7355665667906 ; -9,9 ; CB7aec14ec0302b5ffAA6bca9Ef56E96fD64902C26ccFEe39b9Da80bbC4C1d2b ; < 86ugIaaRh7FxoS57So4684EuIU67OTRJgO0I72vv2SE1wy5VR0m0d6zZFw6wzs1j > > // < CALLS 44,2319659287303 ; quote ; 10,729020132261 ; 10,5144397296158 ; 0,0204081632653061 ; 9,4 ; 9,89752107201076 ; 11,5605191925112 ; 6,8 ; FDF0aDbCc1cdD4EfBAD619cBbAc9ADE3F6fcE3dB4Ff6fBfdEdd5a5210dcb3d14 ; < 1Pr5xVFy6o198bE39Epzxkqj4kg1qKJ6Q69aq994163dYs51y40rNE80hkZO7mp6 > > // < CALLS 45,7572061331692 ; quote ; 9,7375049852526 ; 9,54275488554755 ; 0,0204081632653061 ; -0,6 ; 8,98284834889553 ; 10,4921616216097 ; 1,6 ; 4C5a19EA26BdEFF2fFcBCDCed2cCeE816BbDBDD187A8D12FCeA9cba8dC45dFdD ; < NeJF1I8072AgoiusUmAi9QBNtyJfv4ME86FHf7n1017zPQ9bpVb7nDqx07DK35am > > // // < PUTS ; 2Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 15,2524020443897 ; quote ; 0,408665521929223 ; 0,400492211490638 ; 0,0204081632653061 ; -9,2 ; 0,376993943979708 ; 0,440337099878737 ; 2,3 ; 73Ec61Ab11a13f1acd94776dbA05e3BBAACda4FDcaFFbCe2e4Dc6d33BFDFcBba ; < hAf9Oizmp8hM1g5kBEc39yucoX59usn617iydN5U0700FeYvgM7o8gNU1BKmHbuA > > // < PUTS 16,7776422488287 ; quote ; 0,707302447659103 ; 0,693156398705921 ; 0,0204081632653061 ; 0,7 ; 0,652486507965523 ; 0,762118387352683 ; 5 ; f0Fa6F7275BbBd3FcEED9CaA28a1a0eDfcfFa0FCE9bdAB7C0bEd5345eaD0a64C ; < Z22Die8FHRv50Ohba87S5ki8OcDTkZNqcMByHNEpb3OBM53j2mqk9ca8bP34gMZm > > // < PUTS 18,3028824532677 ; quote ; 1,13414943272281 ; 1,11146644406835 ; 0,0204081632653061 ; -5,7 ; 1,04625285168679 ; 1,22204601375883 ; -5 ; aCcEabfbBCDf6dad9C4BEE2cd1F0BDDCbdFDfCdDCAEFD1ddbf3cEf3ADfB5c6dc ; < b05w60ZKnxCGnZp1KFo80E3e2tVBgU5t2228yqdF541f7zv58Q7Nu3q6ANArfeKa > > // < PUTS 19,8281226577067 ; quote ; 1,71033949469589 ; 1,67613270480197 ; 0,0204081632653061 ; -7,9 ; 1,57778818385696 ; 1,84289080553482 ; 9,4 ; acBDf8fE88B715ba8a2bcdF1B3D7A1BbCB804bdDA3fbD3Ba7f9e1ACc5B2Ee7cC ; < 2Ptev60oSCzo6586Db5x9t43n6Z2WpLtN7y25fdh12T4a57S2AGDOu83A8620qg5 > > // < PUTS 21,3533628621456 ; quote ; 2,45322491430167 ; 2,40416041601564 ; 0,0204081632653061 ; 5,3 ; 2,26309998344329 ; 2,64334984516005 ; 6,7 ; 00c6Ea5eDAcCEadb49921BD8D2E4DD26eca2D2eDEbdEa7B95f9C8a537B2B6f8b ; < Wj7q6e94nJfWgJ7F4x1yM0It5lEyz05h77Ba11BSj3C8nA9p5w0564I1YG1HRy4t > > // < PUTS 22,8786030665846 ; quote ; 3,37591281340273 ; 3,30839455713468 ; 0,0204081632653061 ; -1,7 ; 3,11427957036402 ; 3,63754605644145 ; 7,8 ; 9CeaeFD3c3FfEc59c98DA8FeeebDeeA4C4FaBEBEDCF4BB0df3AB916c6CbB4daC ; < quJZUfPDWj5QInZH0a7sj5C1LS8DGv8K84tq7Z1jBbG35JuVpsv16K153UG4G9yS > > // < PUTS 24,4038432710236 ; quote ; 4,48722149753384 ; 4,39747706758316 ; 0,0204081632653061 ; 7,5 ; 4,13946183147497 ; 4,83498116359271 ; 5,1 ; 7Ada5EBeCdcB7A4bdA3Ff2aFb1fdf0DC3eCceA3DFB6aF29fFBCca3FEd1bf27EB ; < 368G8lPy29mmDS2IYKy6v05h5wZ88sPYFZ3WYL55N82r36VeS22Da1i74L1AUQ52 > > // < PUTS 25,9290834754626 ; quote ; 5,79193447541758 ; 5,67609578590923 ; 0,0204081632653061 ; 2,2 ; 5,34305955357271 ; 6,24080939726244 ; -4,7 ; 5d9a78A04af6991ac0f9CdD362Ab5edc5ef77dE6EC28BAc8ffEfdDECA0AeCe13 ; < 7RdZImYMFO92GYF0CT4ANfHi9o66p03S48vOaWTj06c1j049NR3OrLe6C43948sw > > // < PUTS 27,4543236799015 ; quote ; 7,29123965884816 ; 7,14541486567119 ; 0,0204081632653061 ; 2,3 ; 6,72616858528742 ; 7,85631073240889 ; 8,2 ; 8AdCCEDbF934eC8BbeE7fEB057Fff7Fabc5D02A2bda20F2dCAfaDEF5b7bef2AE ; < zRGlcYJ0GArdY50cNX9CDdQtb8jP4FbY17s9pEu4V2crqx2AKYcM349q3E7ebsE6 > > // < PUTS 28,9795638843405 ; quote ; 8,98326297721528 ; 8,80359771767097 ; 0,0204081632653061 ; -2,1 ; 8,28706009648109 ; 9,67946585794946 ; 7,1 ; 5CDbca0c8eC2ddd787AAD3aDD4fF15bdA4cF3beb050C40aCF3d2B1Fa7bbFADAC ; < S3h75U5Z1F6J76oa3DZ02ijE3yc794lfhToFmZYPJ9J1rdTaM5Aj1nfiiVmPq2zu > > // < PUTS 30,5048040887795 ; quote ; 10,8636295870841 ; 10,6463569953425 ; 0,0204081632653061 ; 6,9 ; 10,0216982940851 ; 11,7055608800832 ; 9,5 ; 230a6C328CD8c0f9Ab7aCfE06CFaDE8DFa8CeCD5BCb4e1A14FcF1dBEae0B2C76 ; < 1oMOyNKFsgXjJ3U869s4EgR27ts6sTkKzuTe80Uq6gYICADrB5ZX15oVNf1ALOUX > > // < PUTS 32,0300442932185 ; quote ; 12,9260074686881 ; 12,6674873193143 ; 0,0204081632653061 ; 8 ; 11,9242418898647 ; 13,9277730475114 ; 6,8 ; 6F294ecdA89dEFdd18fedBBce1bA6bA2E6Eb1eabeD6e6ef69Db01358C1bf5E62 ; < ir6K05B6J5quL7P5Qhq6V2L5n6bc7Cqky7m0EdOAw2LPa9z2N30TPtaWjSPJ9CN0 > > // < PUTS 33,5552844976574 ; quote ; 15,1626056894643 ; 14,859353575675 ; 0,0204081632653061 ; 2,6 ; 13,9875037485308 ; 16,3377076303978 ; 9,7 ; 6E31FCacDBDBCcadd4aF0Fd938dd42cEe96082B4c48e96962B3BfAFbCfE47b9e ; < 4GuDsZq7Ptm5F3Gi167Sj0V48103VMpolk66qyNxkQyhVRn6ID8zp29me4bmo14B > > // < PUTS 35,0805247020964 ; quote ; 17,5646127269451 ; 17,2133204724062 ; 0,0204081632653061 ; 6,6 ; 16,2033552406069 ; 18,9258702132834 ; -3,5 ; 45Ae4aAf01FEd0de2ECA7BDdcAAc40b0eBcdBB1FfEAF5C73EF4aCbeEA58CD1DC ; < OtDHTFO5YHzIEdAWrHmtby0p247nn7056dZa3Zz3QFV2csf4CoE4WUjwbKW0t0ni > > // < PUTS 36,6057649065354 ; quote ; 20,1225694613013 ; 19,7201180720753 ; 0,0204081632653061 ; 1,8 ; 18,5630703280505 ; 21,6820685945522 ; -6,3 ; bBabeE08AE204edCCCbb8EebbdBFBAbbb4Ac4EA2fB73dCdEFAF2cD1CDAad9dEF ; < oPNZ6376Gu67Nnf9XO5EYr5kG7BJA5weK86p30VKvvrR95NdGS3Ecb5vRIUj28KC > > // < PUTS 38,1310051109744 ; quote ; 22,8266775190311 ; 22,3701439686505 ; 0,0204081632653061 ; 5,8 ; 21,0576100113062 ; 24,595745026756 ; 4,4 ; Ccb710cbDeCEDFfAA7bFbA142edead25aBEAECABDCCEFBC70059280BFbBC1ae4 ; < Qnju8JVc9wdCU229EyjHZI1hiMkW9z1i3b3Yu91M4YzD4Xcf076VyFTn56aO467c > > // < PUTS 39,6562453154133 ; quote ; 25,6670473394929 ; 25,153706392703 ; 0,0204081632653061 ; -0,7 ; 23,6778511706822 ; 27,6562435083036 ; 0,4 ; 8ed5870dACdABA1ec5dEfdfAa4Ade6a593BBa1cc4d66cDbBC44EBfE9C7ECe6fE ; < QgCyK121hHP81wd9cRl852WBMzWvd932s4Mp8CNK0qnm0ikNoaxZPO236z2uC9H1 > > // < PUTS 41,1814855198523 ; quote ; 28,6338923171622 ; 28,0612144708189 ; 0,0204081632653061 ; 3,3 ; 26,4147656625821 ; 30,8530189717422 ; -0,4 ; F7BAfADcf2E26AfeB4Ff6fbdFe4626dbbc15D5dFfA8eCCe01bEbcDAa3aC34BeE ; < skz6dk9SNk0q161cZ9F6l72Q9Vuelx9WQQJgVgqg7174kE7TVVY48JrqZDv49F8E > > // < PUTS 42,7067257242913 ; quote ; 31,7176761857946 ; 31,0833226620787 ; 0,0204081632653061 ; 9,7 ; 29,2595562813955 ; 34,1757960901936 ; -5 ; baA57A2aBf485bfefc9eBB64f533d8DCD3eC29ac67D8FafAcdBAcCC3A2Ff2Beb ; < U2AVo4Ki4CcV0EoBQek9PO32Uv5113EYtbqQX03lsUAbd77f30imo463ym5jDNyg > > // < PUTS 44,2319659287303 ; quote ; 34,909220867385 ; 34,2110364500373 ; 0,0204081632653061 ; 6,3 ; 32,2037562501626 ; 37,6146854846073 ; 4,2 ; ccC4bF25b7a636F95Db56eC52aBFcDDA78b8bBccd3f0bbF10afFf7ffdD0C7ee8 ; < xEn3w6fjJrBj5D8LPtVMJlhyXw891WtU7ecCVtSgd96Wwi7MWJxt1WPn1PD4R5k3 > > // < PUTS 45,7572061331692 ; quote ; 38,1997816077946 ; 37,4357859756388 ; 0,0204081632653061 ; -7,8 ; 35,2392985331906 ; 41,1602646823987 ; -9,9 ; eeAe0BfBc5746ef5c7b1a1C8c03A91e7Ccfe97dE992bABc37BDADf2aC8Ec77c3 ; < 73N01696L4Mfo5833C2bmh0y4Hs20BJtU9He7V8673I3Ph35U29t9i1p1xK6q8Ie > > // Futures_Teploseti_LLC // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 25,994915 ; 1,14 ; 21,8025570175439 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; a6F803Dd23bDAE78dccAd3aA73eC8Ccc8A68A8fd2c7EBB9CA56D68bfDEcbB2dd ; < wg3lWlODG00cay8bxTw951Afy49NApOW3ovKQYF9lp9RvQgw27Cm5L1t8c88Ga9c > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 25,995648944215 ; 1,14003648 ; 21,802471149182 ; 25,995398944215 ; 25,995898944215 ; -0,3 ; -7,5 ; 8,9 ; -3,9 ; -6 ; 2,7 ; -0,34 ; Future47AP19 ; 7938bc5D4ADC23df07A47ac60FDcF15da521bbd2A96DD52D8eA6fFDD6210BEeC ; < Dr8zvEBe73ubUs3qBcyOcxE6FG546OFH2KdM3DAys101O59dgKK67423eitwEn56 > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 26,2753419638376 ; 1,15382109326135 ; 21,7724576342843 ; 26,2750919638376 ; 26,2755919638376 ; -0,8 ; 7,9 ; -3,8 ; 9,1 ; -4,8 ; 1,3 ; -0,07 ; FutureJU1969 ; f4cc9A0a7CC61ABdbC99BbB1BbB2AFfAb2ed1F4aA94be4Db931BaEcFDaD8cAf1 ; < 4S14vTq52ky39Com1xaLZI21E6v5TvGb2x2OP71GH793cMiK18T3ry2d7kU9IEf2 > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 26,5796677629975 ; 1,1818956457141 ; 21,4890140338389 ; 26,5794177629975 ; 26,5799177629975 ; -5 ; 7,1 ; -3,4 ; -8,1 ; -8 ; 5,9 ; 0,51 ; FutureAU1924 ; 74eCDaeBF7CD3aAAb93C2f6b7d14A2BCCdAAc9C8a9cB111fa3cAC3F6a2cb454B ; < 6Rkzj0RoKgzYmUCxZ8e5s1nbjtwe1DGw2q8oQyPkh3YGEd49U71jC2Y205z6sKgv > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 26,8908505283184 ; 1,22552067586766 ; 20,9423882908216 ; 26,8906005283184 ; 26,8911005283184 ; -1,1 ; 3,1 ; 6 ; 2,7 ; 9,4 ; -7,6 ; -0,8 ; FutureOC1929 ; 7cBf9E9b865de6b20bD45fe5ed55C2BCd9FaDcBA0BfCd1d3bEF66Fd7d494C7Aa ; < rBi5RNA4iQY0b47K0aX22PX87X1tmV9fBXt2AXX2kdslV015W3GRlJwsZxkA25M6 > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 27,236863510922 ; 1,28597434253225 ; 20,1799431840056 ; 27,236613510922 ; 27,237113510922 ; 0,5 ; 9,1 ; -3,4 ; -0,7 ; 4,8 ; 4,3 ; -0,87 ; FutureDE1986 ; dfdCFEda0CbAb2DebCa3c9Ad5cA72C8b1C9DCBb21B8aDcBe0B46DDFEbFd24c8d ; < 4U3Wg0awLQrv1Yv3W8AWbNbq4qr305s93WjEQbAI7YVXVAl06GvGJ3bAVI539rw0 > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 27,564312651388 ; 1,36580804930367 ; 19,181688536278 ; 27,564062651388 ; 27,564562651388 ; -2,3 ; 8,9 ; 0,5 ; -7,4 ; 3,8 ; 2,7 ; 0,37 ; FutureFE2083 ; DD8aAD9BcafEFCEdD9CCeCB4fdDD31C7dd0CdEe3b1ddf8F1efd2d8AEC7aDfDDF ; < ge89HqeF07O9iih1N5Jop8vXkFVetEQr9Cdna094LXOuWkAxDfBJHDborrSC8gAl > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 27,94286995044 ; 1,46815624128629 ; 18,0326268857861 ; 27,94261995044 ; 27,94311995044 ; -3,9 ; 3 ; -3,8 ; 4,7 ; -7 ; -6,7 ; 0,42 ; FutureAP2091 ; bDBDbECbfECc409A08840E0F321CCFEb1A5cdfbFb1Bc6dB449C2ffE39eFbbf8E ; < t6s1QPn4FaHleVNam4Ik9Q06Rc82HGW29m47m3Vpj384V3y36Y42RNS7d3aOG7uN > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 28,3151312833803 ; 1,59746536122074 ; 16,7250361546135 ; 28,3148812833803 ; 28,3153812833803 ; -9,1 ; 1,4 ; 0,3 ; 1,8 ; -6,7 ; 8,5 ; 0,03 ; FutureJU2069 ; aeef3AE57eEEC175fd7fC775ccE14f6bF4Fdeac8DddadaDaaebBC1C2fB3ba17A ; < tT20E3Jsn3soyhuFWpvUvNl5UxvJYVVq3ZH2z0UoWLzbhIA07isK7Mod11Wa2mrA > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 28,7253444532562 ; 1,75923236003563 ; 15,3283401930342 ; 28,7250944532562 ; 28,7255944532562 ; -8,4 ; 0,4 ; -4,6 ; -6,3 ; -7,1 ; 9 ; 0,06 ; FutureAU2028 ; A0D73AeCDE22dca02c4f6c3e92e4FBEbb81BaC42EDCF8F9B04Bc4eC36Ad93eC0 ; < f3o8PU3UE54JbN6O17gQHdo30rBw8VYtJNWt79u6Vy6Vk91K3gqt18GxSBPX0uB1 > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 29,1618824142211 ; 1,96077129067131 ; 13,8726588118479 ; 29,1616324142211 ; 29,1621324142211 ; -1,7 ; 0,9 ; -4,2 ; -1,1 ; 4,1 ; 0,6 ; 0,97 ; FutureOC2044 ; B1aDECfB0edAbd06331bCCdBEB87BD9abABe2fBcE473fcada5FBfdEF7bF7bAaB ; < 2B0SIT9oUT9FhrzmBJLtv59DKWuujxT2JjHO9JJNxAwJ49O2VzgLK7aqdG4B5XXX > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 29,6174705191772 ; 2,21212567513903 ; 12,3886925376949 ; 29,6172205191772 ; 29,6177205191772 ; -4,7 ; -8,4 ; 5,6 ; -8,4 ; -9,3 ; 6,9 ; -0,77 ; FutureDE2026 ; 4cfc1CfAe1E7D4C22aab29BAFf86a8AfdB6A795dfea5fbFE2add75d785bD5FC3 ; < d372vy9u2657OM3DMkEZnRyJwvI05JI5MzRH5ev4k49clGzf8ZP0A8FcxoZo0F3q > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 30,0268142636263 ; 2,52583462941153 ; 10,8878781350076 ; 30,0265642636263 ; 30,0270642636263 ; 3,4 ; -5,1 ; -5,5 ; 6,2 ; -9 ; -8,6 ; 0,34 ; FutureFE2174 ; 9ea7F967c9BCaaCCfAF3Aed3ab3ED6cC5FBCd7eBAbddd1CE335Ce9bbdEE2fcD6 ; < AUTcl1EY24LC8yVD192c5NRShpi537c4Exe2Z6y7GoR09510fH4focSFM241WwbX > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 30,5048040887795 ; 2,91893785029074 ; 9,45065213901046 ; 30,5045540887795 ; 30,5050540887795 ; 3,9 ; -4,6 ; 0,7 ; 1,7 ; 9,1 ; -7,2 ; 0,93 ; FutureAP2191 ; 23EFBf89f1F5cd0Eef6ae2f24fd307cEd30FBff1CA1b14eabb1BD02f8BcEAAF6 ; < h2q97g1T40au10L0e7724HTkHy6SVp68bxdEo3D3F1b5W5feY8L9mstWbDj56FXS > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 31,0329719390179 ; 3,41431822693473 ; 8,08906841026309 ; 31,0327219390179 ; 31,0332219390179 ; 5,4 ; 7,8 ; -5,8 ; -8,5 ; 6,5 ; 0,3 ; -0,99 ; FutureJU2161 ; 24519adaCCf46b61Fd2c4DDE638FBBEE2Df6dc4dECc17c9E7F8cAAd2488cABe6 ; < 0N241m86X0z9rg4nB4TzNy7YN434LQrub8klm0lh6F00yz1CW9Ibfe0cv0NXn204 > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 31,5484678916045 ; 4,04188025308742 ; 6,80539400381936 ; 31,5482178916045 ; 31,5487178916045 ; 8,9 ; 9,6 ; -6,5 ; 8 ; 6,8 ; -5,2 ; 0,16 ; FutureAU2142 ; 267fcD77cc4BE169d2e8c3dd3bBcFCdcCba9cbDC3C54BADB19Df56D351EBDBDF ; < 4pss5H4k83ofGVHdMvO8pWTmRn6M64qV9Z5lknL7644Dm8CzpIzSatRxYgc6y0di > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 32,0572505487755 ; 4,8432658796766 ; 5,6189326262873 ; 32,0570005487755 ; 32,0575005487755 ; -8,2 ; -6,4 ; 6,1 ; 6 ; -7,4 ; 3 ; 0,16 ; FutureOC2180 ; DB7bbAA1BcdD7CdfBF3aBAfeF95F5cDdC424eD7Ece3F77C684a91D0BD8dEB79E ; < FdH8x2bpv7y2wH5s0OyIgWjIk81opGBY3b990O58Fe4ya20WZIc7Xh9YOH9EP64H > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 32,6596697766435 ; 5,87329803803142 ; 4,56070363961816 ; 32,6594197766435 ; 32,6599197766435 ; 7,8 ; 9,8 ; 5,5 ; -9,4 ; -8,7 ; 9,1 ; -0,58 ; FutureDE2129 ; edFf2d2DEb46A15A55fACBd5fD3ECcA32F60E92bb0Cbc921Ffb8bC2c13CDf1Fe ; < hlz263b8bIvv45TwjEbzr6nA55Zmgss73D8Aljc2u4rCdD1DpLPe0S10wC9Xbpk8 > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 33,1598876010461 ; 7,20845609854301 ; 3,60013727596239 ; 33,1596376010461 ; 33,1601376010461 ; 3,1 ; 3,5 ; 3,3 ; 2,2 ; -0,9 ; -0,4 ; 0,88 ; FutureFE2276 ; 1d8afCfc4b8DCeaCf682F29dBEbB5C47C9dC5afb4BBEfBbEcdCe65e0dD9AE3d1 ; < Bb34vL80gJ7Q5bscVk15A8191UCm2xgDR7KWPia97D3P7YjpRFxM6HNt89z40G6L > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 33,8376937315093 ; 8,95461718588486 ; 2,77879847112253 ; 33,8374437315093 ; 33,8379437315093 ; 6,8 ; 5,6 ; -9,1 ; 9,4 ; -0,3 ; -3,4 ; 0,77 ; FutureAP2248 ; b9AFF8B7cCDA3cF3D9eff2fFa893cF6F5CE4d39DB4Fdddbd4CCfaFfbFe6FD129 ; < 3oGVRt4z7Pc4GM4ggU43NM3kJ0rvZxsrmwHR9TL88Lt6lq8CzSLBok5vsw88Q2yL > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 34,4805753685878 ; 11,2597813450131 ; 2,06227752671761 ; 34,4803253685878 ; 34,4808253685878 ; -6,7 ; 1,2 ; -2,4 ; -9,5 ; 7,4 ; -4,1 ; 0,25 ; FutureJU2252 ; bcC578CeF84eFAE6b6ccabADaEdFcDbF84D1d6B8dBB51AAaF4afafe6e01DCbDb ; < 7DvkRiy0okcLgE5858Fxt9qbwRWS5M0H7xjrS4K8P2ZHpcg0daCK3eyAL2Qr1h5K > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 35,0058940089548 ; 14,3293517656877 ; 1,44295028703099 ; 35,0056440089548 ; 35,0061440089548 ; 1,5 ; 5,4 ; 2,7 ; 0 ; 9,3 ; 5,8 ; 0,95 ; FutureAU2230 ; a6CACfEFbbFBAA706331C8C7815eB5a26b6bAD1cDaA8B8Fc1BbbbaFB63Ab3bAc ; < vp24Ij0qDI60t664429wyOh7kUi1di2Lp99E6a0144mFXQ84RSo88Tt195bdywT5 > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 35,8409622066643 ; 18,4577499874342 ; 0,941783924425475 ; 35,8407122066643 ; 35,8412122066643 ; -6,5 ; 8 ; 9,7 ; -2 ; -7,7 ; -8,2 ; 0,11 ; FutureOC2293 ; 0AEbfaeacC9C7ccDe81033Aa5cFabBCaDb4808DdEa1CEF74FfB6C68dCAFB5cbb ; < Ss6Sy8ahoIn6SR1sPTeak2o94jR39UCl7jqLKoLMd7691nQ0Pvx2h2u44D7UKf4h > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 36,5181543060978 ; 24,0642562142933 ; 0,517526824053979 ; 36,5179043060978 ; 36,5184043060978 ; 4,4 ; 9 ; 6 ; -8,4 ; 5,3 ; 5,4 ; 0,81 ; FutureDE2298 ; Ee6a64e2AeCa2cCc5C54DddbBdDdBE10FE76EFA6ccA6DeAcdEFeFf52cb610372 ; < 4rNb9vXfWGbi9vdznZ7WaOpq173kgV3SpmQOXPCFUb16fn47h1xYtOSE1UbTr28Z > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 37,2368729556471 ; 31,7539835653543 ; 0,172667765573671 ; 37,2366229556471 ; 37,2371229556471 ; 2,5 ; 9,2 ; -6,4 ; -7 ; 6,2 ; -4,5 ; -0,58 ; FutureFE2332 ; F4b30A3A78efcbDdbDcdEf3F7d7b8c0BACEccfceec1A6EC0bbf5CFb24aDB50Ca ; < 9fxtIPni1kx8y1C2RkV9V2qwIk15t87QU6p9i0Mwm7HMHZ5bhe7YweP6IK7K34D8 > > // < CALLS ; 3Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 16,9188468657546 ; quote ; 61,5308193640129 ; 60,3002029767326 ; 0,0204081632653061 ; 5,6 ; 56,6083538148919 ; 66,4532849131339 ; 7,5 ; 7Afd4d8acA4BCdfDbc4B4A57aFD38cbC94b9E4bC570fBdAb9eACdFd2AfCb9C98 ; < TQf10uzmN7z3SqxS25374Bli11wO99lOJ14o3W1fGXXDTr875lB8JTFfQhTeBMh1 > > // < CALLS 18,6107315523301 ; quote ; 58,045248210132 ; 56,8843432459294 ; 0,0204081632653061 ; -1,8 ; 53,4016283533215 ; 62,6888680669426 ; 3,2 ; 73b34bFfBAA0B4BAdE50A2c6Ac3cbA8E6Ded3B0e9dEe87b09fb035e6C197BaeD ; < Hd9M3997F9BBha8i8CPEv0MrDIGcM9AkRL3nrm5p81vFZ2q22B58S6m5Qu1mvgvQ > > // < CALLS 20,3026162389056 ; quote ; 54,6875870286012 ; 53,5938352880292 ; 0,0204081632653061 ; -0,9 ; 50,3125800663131 ; 59,0625939908893 ; 6,6 ; 0CBEBAfF201A887B86676DAd5cFDEfA0AcDF9bA7f6F2a47b0cb2f4C9AEdfda3a ; < 2CzHX6z5iHg5H31ib4uQ2Mfr5302u6oo6tuzZ7v5Zz0BIwX2bPuEi715b37958G2 > > // < CALLS 21,994500925481 ; quote ; 51,4669757423064 ; 50,4376362274602 ; 0,0204081632653061 ; 6,6 ; 47,3496176829219 ; 55,5843338016909 ; -2,1 ; acA42efb7aEae1F8bfAaeBEaC7eBbFFFDCCdAaCf9FDa3C4AB8cabDA3d6DdDCFd ; < jhdf1G1mNH1T1BCgOBezA15bczrU1Krm2FvrM56WNXbT0703DhH6Kud0XRvC7vFa > > // < CALLS 23,6863856120565 ; quote ; 48,3896143750377 ; 47,4218220875369 ; 0,0204081632653061 ; 8,4 ; 44,5184452250347 ; 52,2607835250407 ; -9,2 ; fEFdaA76DcBaCA1bdcaC8bBCC27f5d5eACEe8E73DbCbeDB1Dc4b60Aac04FC7d1 ; < eq29R317joCtj7cgUAZYhg0o8462BI7S013Mmy4I6rfT5s1aq0nV5zednZs2J21l > > // < CALLS 25,378270298632 ; quote ; 45,4590564027714 ; 44,5498752747159 ; 0,0204081632653061 ; -0,7 ; 41,8223318905496 ; 49,0957809149931 ; -5,6 ; d3AbC3f47C3c5cb226e7fEcB7CcFAC0Deceb49f63B1e4b1fBDecca6ec7FAC34b ; < n9A61vp4JpxGqdo417ejMIk3424X20HNWk6haFbRf6G99PbZoY7I0TuJWMjz85uA > > // < CALLS 27,0701549852074 ; quote ; 42,6765659694769 ; 41,8230346500873 ; 0,0204081632653061 ; -7,4 ; 39,2624406919187 ; 46,090691247035 ; 7,4 ; 3FBC816A7FEabf2Ca69efc69AdCe0fEfD1aE632AeCDA19Db9Dc1bAEabDAaCbe4 ; < b70P8zDD37446490C9h8U7Z4g12B7Qzj3K2VB4023j1y0S1r1Y065j4gXXgVvjjR > > // < CALLS 28,7620396717829 ; quote ; 40,0414910307221 ; 39,2406612101077 ; 0,0204081632653061 ; 0,7 ; 36,8381717482643 ; 43,2448103131799 ; -0,5 ; BdaBFBcc35D15CC7CdFFE0B575CdAFDBb6F7d5ecBfFbe79762Aa2f7B74DA4bF2 ; < PQ4HN6S3s7RlXY55CV0ozImhQuND1w3U006MW4bwQh0y12RA9mdQSM01t3ld445l > > // < CALLS 30,4539243583584 ; quote ; 37,5516227399988 ; 36,8005902851988 ; 0,0204081632653061 ; -8,4 ; 34,5474929207989 ; 40,5557525591987 ; -0,3 ; eb6Ed7bCF2abD3abDD63Cdd5F6dBbEA2f62a98D44Ab3Bcef69EAC4Eaea300a5d ; < bd1dI4GRvw7s5e1jwx3XWqRAcv7waz8kl9xWML9qL6886n5Zp27l7zXVoZLvf210 > > // < CALLS 32,1458090449338 ; quote ; 35,2035243902198 ; 34,4994539024154 ; 0,0204081632653061 ; 7,3 ; 32,3872424390022 ; 38,0198063414374 ; 3,4 ; 477DAe8ad7d3d16cafc08EafddeEBADEe10FF8fA1aCFBD6dC514E8a3a67FA427 ; < R1lgr3vfkL0gUt5SIz9vx7X8rpGTMn8ixA277j1N5qP0R8ilS4r5jjXQcRYt4s6g > > // < CALLS 33,8376937315093 ; quote ; 32,9928219942121 ; 32,3329655543278 ; 0,0204081632653061 ; 6,6 ; 30,3533962346751 ; 35,6322477537491 ; 5,6 ; e909BDb72ebA94f040ec1bE45E69EaDedfCEDeb8b4aEBeFE6f70ABEc9Aa5b5Cf ; < 6isB30xUTA7B6ylw1MTMv91Q5FO6lWr26vv3q1nxju8Q97AScA0R0ToG23Np8lj0 > > // < CALLS 35,5295784180847 ; quote ; 30,9144542159824 ; 30,2961651316627 ; 0,0204081632653061 ; -5 ; 28,4412978787038 ; 33,387610553261 ; 8,7 ; 0BCB695DaFa2AEE0B8536Af1aeCF8EAEFf7C0392Bd75AdbD357CBFb78bbC65b9 ; < 94wqiK1Jw0d22NdyorGfa74zzX6FRKArh586K8PgOetf5DGG00GCUKuHt8Oo5J1w > > // < CALLS 37,2214631046602 ; quote ; 28,9628827714671 ; 28,3836251160378 ; 0,0204081632653061 ; -9,5 ; 26,6458521497498 ; 31,2799133931845 ; 1 ; BefF7Df2FbfbFfAad0d6AbEDdAfEAcdd2Bfc4EfBD5c7D15F61Bc3aeD98eaa6D5 ; < R7o9i3juSk57b260j89n81ODQUIf7D2r4l936fhcEzaFdg20TCwv3rlmFrwV41LD > > // < CALLS 38,9133477912357 ; quote ; 27,1322663162922 ; 26,5896209899663 ; 0,0204081632653061 ; 9,2 ; 24,9616850109888 ; 29,3028476215956 ; -7,7 ; 239DBFE4aC8aAFe6Af00BBef0efe9e55EBFcA3f9CdEEa3c03e82fCFbfE8edf88 ; < 9Oj6Oe1A1vJiYnJPMsj70Vtk7Au79arIzyPN21QXiU332aDu7q07q2lU06D41z5s > > // < CALLS 40,6052324778111 ; quote ; 25,4166017493327 ; 24,908269714346 ; 0,0204081632653061 ; -9,6 ; 23,3832736093861 ; 27,4499298892793 ; 1 ; b6ccAe7dbeA4DeB2088bBfF501FDb56CCdDc9Dd03fCEBBaF8a199Af4c3446cfA ; < NfqO1P553N5clAmWnxWMme2Nr6fX2w1e94I4VKLDQemfc0K9blsl5c21yu4QpSTl > > // < CALLS 42,2971171643866 ; quote ; 23,8098371502222 ; 23,3336404072177 ; 0,0204081632653061 ; 0,4 ; 21,9050501782044 ; 25,7146241222399 ; 5,4 ; eaced49D3E94Bae1FafdB0cCefc7CeCB8F450F87b7fcE8F2Bc97f2Eebf4D2C1D ; < c0H187RfvylUXFwNHmFY8Vmgt92nWjegGnP5s5iJ2xL2zg3Aoj7Mi1t9036ulKz6 > > // < CALLS 43,9890018509621 ; quote ; 22,3059604855858 ; 21,8598412758741 ; 0,0204081632653061 ; 8,3 ; 20,521483646739 ; 24,0904373244327 ; -9,2 ; 7f7Cc3a30AB40FebdA3bC5BbCcD8d2bCAAb7181d2e7EbbC2BF2384aF2EE9BcE4 ; < gOYFx60DEC1sWsI6Yo096KE2vb7d2439jtz7Jz2yzf74E265u95Fgunss6bLKVvK > > // < CALLS 45,6808865375375 ; quote ; 20,8990679279314 ; 20,4810865693728 ; 0,0204081632653061 ; -9 ; 19,2271424936969 ; 22,570993362166 ; 4,3 ; D41f996aFbAf0ED9cFfcCaddA87bb4C32dEBbC2EaF844aaD37Bac3Dfe1c6CaD0 ; < cDeMoLuxy6z7Y9c5JKeu1sgh9S86htek2250jKrZjkZ83n2RCV7452laMQ8H2M2B > > // < CALLS 47,372771224113 ; quote ; 19,583415239393 ; 19,1917469346052 ; 0,0204081632653061 ; 4,7 ; 18,0167420202416 ; 21,1500884585445 ; 2,5 ; 3Ea8f5c1DE40d5cfbbCB1dC7c20AEf2902FB1c1AfCeBEaCf3c1cBefBA2B5c27F ; < M2HwWbxHOWNB7N5JM5ECo7qX1OkNE1c7vDf2Hd9tr2V2NIe5zI6K2fsR01c0MG3O > > // < CALLS 49,0646559106885 ; quote ; 18,3534552464126 ; 17,9863861414844 ; 0,0204081632653061 ; 1,4 ; 16,8851788266996 ; 19,8217316661256 ; 2,3 ; aAE1Cf46b6AB6ffEd9BBeDffa453c7ADd2FF6A1d6Bfc04AaA1FfeEb479BA0e5b ; < fPW6cYP5BLxn0Brw08QIG2QDz0eBg8pXZV29YZ4S590OJmmrD9u910dd868QIbET > > // < CALLS 50,7565405972639 ; quote ; 17,2038640106649 ; 16,8597867304516 ; 0,0204081632653061 ; -2 ; 15,8275548898117 ; 18,5801731315181 ; 6,1 ; CaA6f6Da9AfA0F6Fe2fAabE3cfCC6608fBd7bdafdC62afb9fDEAc2FE2E6eFFEC ; < trWRHPUjf44CI2qkd3FgXRg5234IOXe85Xsb7cYk0cs0355tOrSnynZqxJLsdvnm > > // // < PUTS ; 3Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 16,9188468657546 ; quote ; 0,862212417340544 ; 0,844968168993733 ; 0,0204081632653061 ; 2,4 ; 0,7932354239533 ; 0,931189410727787 ; -5,9 ; d79cdE8eb6fA0f3CeeacDEdDF8cbbccd3d08CDd1bF2e8CbC7dB5cE680ED1AF7A ; < 3lTXH3TUbh9Zg42UyEqx7CRPiD9p1JCL27wG8tQM8A2Nr512EtIiy90aWXLs28Mj > > // < PUTS 18,6107315523301 ; quote ; 1,30978056879249 ; 1,28358495741664 ; 0,0204081632653061 ; 0,1 ; 1,20499812328909 ; 1,41456301429589 ; -9,3 ; C3e65b2e56Cb20ddbF2BE44B9BD7BD4a5CFe04f3E1C0d8d5bA26FFBaAFB58518 ; < wW0K0tZs3wxQ208J8u0Z7PE9D8o09cqZS92u4DsHn775EcSjH88mScaBL5F90E29 > > // < PUTS 20,3026162389056 ; quote ; 1,88525869259442 ; 1,84755351874253 ; 0,0204081632653061 ; -2,2 ; 1,73443799718687 ; 2,03607938800197 ; 3,2 ; ECb90eBCEe6082Bf65dC7EBc2Cdb77eEDABb7eEEdD227aDeCcbd4addBCEC93d0 ; < G6HHd8vEK9i6ec12I47P6hqG3T7m9lGbmE9wDlGT8RuCaHJU6RL02373pYlfDL7X > > // < PUTS 21,994500925481 ; quote ; 2,59778671163235 ; 2,54583097739971 ; 0,0204081632653061 ; -1,4 ; 2,38996377470176 ; 2,80560964856294 ; -1,8 ; dd9fB54AD6bFc523A3bCeCdcd0bcbBF0Dc4A4cdFabce4FAEC0dc3e2dEdb58E4E ; < agrfVyX4gaH1M4BA0ES3Ff5Lr4T50aJ0IYi134p0FUkj9CE3MKsjz2ry4wBEYxk7 > > // < PUTS 23,6863856120565 ; quote ; 3,4535646496964 ; 3,38449335670247 ; 0,0204081632653061 ; 9,6 ; 3,17727947772069 ; 3,72984982167212 ; -3,8 ; adAee6DCAE50ae0bCafAa8FEb5285D38dBF0bA8ffE4c8Ade0f4aBfee37D4f946 ; < 338Z2utCUPh5lf76W2pM2a8FNVggFsSdgyR4r4k2G903k65va2f44B7KeD5nfY0Q > > // < PUTS 25,378270298632 ; quote ; 4,45614598276286 ; 4,36702306310761 ; 0,0204081632653061 ; -8,7 ; 4,09965430414183 ; 4,81263766138389 ; 1,2 ; Fd5fc5AbdAa1C2FBaDB7BCEE9ECbD17Ad5c0BcF4d0E4cb4ebE0dBBbcFeAC4Bed ; < TnSBzhAg1QzN2HQMZse33F0k5m7v1E8KkSikPi822WPq4cv3jZ13vipsl4z338vT > > // < PUTS 27,0701549852074 ; quote ; 5,60679485480114 ; 5,49465895770511 ; 0,0204081632653061 ; 0,3 ; 5,15825126641705 ; 6,05533844318523 ; 2 ; 1A38Ec21ADB7A73C6FeE8CC3EdAB3CeCD60BbF8bBB12dFB8F79efDaC7D8c4EE8 ; < 7O03idJWF42nM2Nbf164ld14KR8DMVUmI8iqo92J54fQ5oJtm7L5yGP1JEGs22T7 > > // < PUTS 28,7620396717829 ; quote ; 6,90485922137916 ; 6,76676203695157 ; 0,0204081632653061 ; -6,9 ; 6,35247048366882 ; 7,45724795908949 ; 6 ; 5CDF9A9FbEeD21dDde8D1A18C5Da7C7CB20ceDf7c2Ac3A6aBaCafdC5c16B62fA ; < 8Y1kp4NxQyPTqCJ2Ut9sr4xrVKdvWp68mU202795do8QTB03UJyI4wjjnq4AIWIc > > // < PUTS 30,4539243583584 ; quote ; 8,34813023598858 ; 8,18116763126881 ; 0,0204081632653061 ; -1,9 ; 7,68027981710949 ; 9,01598065486767 ; -4,6 ; 4CCCe86BfdF3cd39c73EbD0BC3A27cB2CEEa46Bc5DAb6fcbA16ecA439BF59A32 ; < taAo0c9a11DHOxG0E9R52qaZW7jA34c1Hd0qau7AelDk896784xZsqt6V39Dn7Ph > > // < PUTS 32,1458090449338 ; quote ; 9,93317119154237 ; 9,73450776771152 ; 0,0204081632653061 ; 4,9 ; 9,13851749621898 ; 10,7278248868658 ; 5,9 ; EBB42d2A24124bcA4ec8Fbfe6Ae5db2b61fAeB4fC6dF7E9cf4D5Bdb6CCA43A1a ; < zGbEoB36l9m42rg2F34lY91c88d4a12M6g0O341bft140LRHuBxpZclId93Unx6E > > // < PUTS 33,8376937315093 ; quote ; 11,6556081008674 ; 11,4224959388501 ; 0,0204081632653061 ; -5,2 ; 10,723159452798 ; 12,5880567489368 ; 6,2 ; CdCDDDFfe540ad0faCaCADEbDd8DEc11Cdd9CaF3aeB5544CAbbfFEF4b000ECDb ; < 5coMc9QQDPFYA42Ql2vuSX1ZU0cGD4dJ2D9Kk0KEI7FIgEFH0gOWeL30esLx6d3c > > // < PUTS 35,5295784180847 ; quote ; 13,5103796279705 ; 13,2401720354111 ; 0,0204081632653061 ; 9,8 ; 12,4295492577329 ; 14,5912099982081 ; -1,1 ; b8BF7e72dB408FBdbfd04CDa00336fdFfBBd95E5baDB8bB7AdBfACE5Fa9dfDCa ; < VS7orYHpn5Anz7QnFsKEV4rCX9599LTNBA8zK1EW0D6K5XbyeIsz5V26y0XCGXWP > > // < PUTS 37,2214631046602 ; quote ; 15,491947488788 ; 15,1821085390123 ; 0,0204081632653061 ; -4,4 ; 14,252591689685 ; 16,7313032878911 ; 5,7 ; C8F8C1b8ba3BDF6EeBee1c87B8cC46b9DEf0f0ef81a8BB5F6bB115feCEe159ac ; < 6lqqvBk86fGHlBioW8brIIxfv8ndjX37JdOD48xloX530zJFCIIKA21hu1dBsjjS > > // < PUTS 38,9133477912357 ; quote ; 17,5944703389458 ; 17,2425809321669 ; 0,0204081632653061 ; 1,9 ; 16,1869127118302 ; 19,0020279660615 ; -4,7 ; 8bdfAbFFCD850eE6eFDeaD4A7BaEecCbDb7AeBE6cFCb01842CA4B6eb717c26DD ; < agxo3HQdb9QoFG9eHq9u1avJ7VR611OnzzU8b8uqG3Jf8J0Hvueb8yN7G4fD0IW9 > > // < PUTS 40,6052324778111 ; quote ; 19,8119450773191 ; 19,4157061757727 ; 0,0204081632653061 ; 2,5 ; 18,2269894711336 ; 21,3969006835046 ; -8,9 ; fCc9B0A8fcDa83f3d7EC7DCaFedeb8f8DC8CAC4eaAcadDDb1a99435C47EEa1E4 ; < yPW1afMJgJ648OCZuvp5K8JVch08Ov7RSreHN95gotzyK27775e151l4b2gY6p6V > > // < PUTS 42,2971171643866 ; quote ; 22,1383197835413 ; 21,6955533878705 ; 0,0204081632653061 ; 4,8 ; 20,367254200858 ; 23,9093853662246 ; -9,9 ; dC7CE8cbf2EA4efAd6ACd06c41CEe71e4a77C4CcA0cFeD0EBA9eCb44f30CB584 ; < FDT1GXTbD8IQZe7440yxi4K6QlIUA4Frc6q74VHU73Nc81JUoY6bN02p24Vz77vy > > // < PUTS 43,9890018509621 ; quote ; 24,5675824242378 ; 24,076230775753 ; 0,0204081632653061 ; 4,6 ; 22,6021758302988 ; 26,5329890181768 ; 8,5 ; 7ea8abBB6E656EE7fE611bB74d1C6f0E21A37eBb34aF6ddfFCD13adda39BDcdd ; < 63865z7Mt2592OGuPpPf45U2sP6iIRK1rEFU3NMnQ74pwo0SA07537j9r72MCrp4 > > // < PUTS 45,6808865375375 ; quote ; 27,0938291719162 ; 26,5519525884778 ; 0,0204081632653061 ; 1,8 ; 24,9263228381629 ; 29,2613355056694 ; -5,4 ; f7dad9fFAD0eBD0Ef4EDAbeBAFacfAAf39aC7Ad582Db8eA3De3B8EBa0D51FCeD ; < n0375tA572q4Nnz9sKCaNs7bV3Qd76u7yGKp1L30L2kE53JgvJ016g3kej9S22BK > > // < PUTS 47,372771224113 ; quote ; 29,7113157887105 ; 29,1170894729363 ; 0,0204081632653061 ; 1,4 ; 27,3344105256137 ; 32,0882210518074 ; -8 ; 9ee5bBB0fbbAD9f0c5E9aaa4cBBD34B50ADdCd76e31EefFB4cB02FDb158e5D2b ; < l13FSJD8P4m37y727s824TWe4ruF2ZO34nI74C1LY6Cc3S7o3POGE56A71xbE8dt > > // < PUTS 49,0646559106885 ; quote ; 32,4144951010629 ; 31,7662051990416 ; 0,0204081632653061 ; 6 ; 29,8213354929778 ; 35,0076547091479 ; 4,4 ; 8badcd5CdA17dE7EfcCbb4eD44ACD3F3EBfEafaaAb8E8CdcEBCdbEcd1afA0DDc ; < 6517h5P1n5Hf37NrGLrWKvrq5xu7mE15VV643fuvmB37z1P9d0Oc83Fe02E40lAe > > // < PUTS 50,7565405972639 ; quote ; 35,1980431706479 ; 34,4940823072349 ; 0,0204081632653061 ; 3 ; 32,3821997169961 ; 38,0138866242997 ; 5,8 ; cAD0cbdCBe4fd1FA25Fcb5dbD0e3D6Eb0ac80cbDD14F9aDca5608D3Ee0daD2f8 ; < bKNcPQVR81S0KF33I3k9YPyBq0MggwO9L0i6DGx1C6qLqVPidtJP9mKb0muYIN7x > > // Futures_Teploseti_LLC // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 25,994915 ; 1,14 ; 21,8025570175439 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; a6F803Dd23bDAE78dccAd3aA73eC8Ccc8A68A8fd2c7EBB9CA56D68bfDEcbB2dd ; < wg3lWlODG00cay8bxTw951Afy49NApOW3ovKQYF9lp9RvQgw27Cm5L1t8c88Ga9c > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 25,995648944215 ; 1,14003648 ; 21,802471149182 ; 25,995398944215 ; 25,995898944215 ; -0,3 ; -7,5 ; 8,9 ; -3,9 ; -6 ; 2,7 ; -0,34 ; Future47AP19 ; 7938bc5D4ADC23df07A47ac60FDcF15da521bbd2A96DD52D8eA6fFDD6210BEeC ; < Dr8zvEBe73ubUs3qBcyOcxE6FG546OFH2KdM3DAys101O59dgKK67423eitwEn56 > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 26,2753419638376 ; 1,15382109326135 ; 21,7724576342843 ; 26,2750919638376 ; 26,2755919638376 ; -0,8 ; 7,9 ; -3,8 ; 9,1 ; -4,8 ; 1,3 ; -0,07 ; FutureJU1969 ; f4cc9A0a7CC61ABdbC99BbB1BbB2AFfAb2ed1F4aA94be4Db931BaEcFDaD8cAf1 ; < 4S14vTq52ky39Com1xaLZI21E6v5TvGb2x2OP71GH793cMiK18T3ry2d7kU9IEf2 > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 26,5796677629975 ; 1,1818956457141 ; 21,4890140338389 ; 26,5794177629975 ; 26,5799177629975 ; -5 ; 7,1 ; -3,4 ; -8,1 ; -8 ; 5,9 ; 0,51 ; FutureAU1924 ; 74eCDaeBF7CD3aAAb93C2f6b7d14A2BCCdAAc9C8a9cB111fa3cAC3F6a2cb454B ; < 6Rkzj0RoKgzYmUCxZ8e5s1nbjtwe1DGw2q8oQyPkh3YGEd49U71jC2Y205z6sKgv > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 26,8908505283184 ; 1,22552067586766 ; 20,9423882908216 ; 26,8906005283184 ; 26,8911005283184 ; -1,1 ; 3,1 ; 6 ; 2,7 ; 9,4 ; -7,6 ; -0,8 ; FutureOC1929 ; 7cBf9E9b865de6b20bD45fe5ed55C2BCd9FaDcBA0BfCd1d3bEF66Fd7d494C7Aa ; < rBi5RNA4iQY0b47K0aX22PX87X1tmV9fBXt2AXX2kdslV015W3GRlJwsZxkA25M6 > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 27,236863510922 ; 1,28597434253225 ; 20,1799431840056 ; 27,236613510922 ; 27,237113510922 ; 0,5 ; 9,1 ; -3,4 ; -0,7 ; 4,8 ; 4,3 ; -0,87 ; FutureDE1986 ; dfdCFEda0CbAb2DebCa3c9Ad5cA72C8b1C9DCBb21B8aDcBe0B46DDFEbFd24c8d ; < 4U3Wg0awLQrv1Yv3W8AWbNbq4qr305s93WjEQbAI7YVXVAl06GvGJ3bAVI539rw0 > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 27,564312651388 ; 1,36580804930367 ; 19,181688536278 ; 27,564062651388 ; 27,564562651388 ; -2,3 ; 8,9 ; 0,5 ; -7,4 ; 3,8 ; 2,7 ; 0,37 ; FutureFE2083 ; DD8aAD9BcafEFCEdD9CCeCB4fdDD31C7dd0CdEe3b1ddf8F1efd2d8AEC7aDfDDF ; < ge89HqeF07O9iih1N5Jop8vXkFVetEQr9Cdna094LXOuWkAxDfBJHDborrSC8gAl > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 27,94286995044 ; 1,46815624128629 ; 18,0326268857861 ; 27,94261995044 ; 27,94311995044 ; -3,9 ; 3 ; -3,8 ; 4,7 ; -7 ; -6,7 ; 0,42 ; FutureAP2091 ; bDBDbECbfECc409A08840E0F321CCFEb1A5cdfbFb1Bc6dB449C2ffE39eFbbf8E ; < t6s1QPn4FaHleVNam4Ik9Q06Rc82HGW29m47m3Vpj384V3y36Y42RNS7d3aOG7uN > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 28,3151312833803 ; 1,59746536122074 ; 16,7250361546135 ; 28,3148812833803 ; 28,3153812833803 ; -9,1 ; 1,4 ; 0,3 ; 1,8 ; -6,7 ; 8,5 ; 0,03 ; FutureJU2069 ; aeef3AE57eEEC175fd7fC775ccE14f6bF4Fdeac8DddadaDaaebBC1C2fB3ba17A ; < tT20E3Jsn3soyhuFWpvUvNl5UxvJYVVq3ZH2z0UoWLzbhIA07isK7Mod11Wa2mrA > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 28,7253444532562 ; 1,75923236003563 ; 15,3283401930342 ; 28,7250944532562 ; 28,7255944532562 ; -8,4 ; 0,4 ; -4,6 ; -6,3 ; -7,1 ; 9 ; 0,06 ; FutureAU2028 ; A0D73AeCDE22dca02c4f6c3e92e4FBEbb81BaC42EDCF8F9B04Bc4eC36Ad93eC0 ; < f3o8PU3UE54JbN6O17gQHdo30rBw8VYtJNWt79u6Vy6Vk91K3gqt18GxSBPX0uB1 > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 29,1618824142211 ; 1,96077129067131 ; 13,8726588118479 ; 29,1616324142211 ; 29,1621324142211 ; -1,7 ; 0,9 ; -4,2 ; -1,1 ; 4,1 ; 0,6 ; 0,97 ; FutureOC2044 ; B1aDECfB0edAbd06331bCCdBEB87BD9abABe2fBcE473fcada5FBfdEF7bF7bAaB ; < 2B0SIT9oUT9FhrzmBJLtv59DKWuujxT2JjHO9JJNxAwJ49O2VzgLK7aqdG4B5XXX > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 29,6174705191772 ; 2,21212567513903 ; 12,3886925376949 ; 29,6172205191772 ; 29,6177205191772 ; -4,7 ; -8,4 ; 5,6 ; -8,4 ; -9,3 ; 6,9 ; -0,77 ; FutureDE2026 ; 4cfc1CfAe1E7D4C22aab29BAFf86a8AfdB6A795dfea5fbFE2add75d785bD5FC3 ; < d372vy9u2657OM3DMkEZnRyJwvI05JI5MzRH5ev4k49clGzf8ZP0A8FcxoZo0F3q > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 30,0268142636263 ; 2,52583462941153 ; 10,8878781350076 ; 30,0265642636263 ; 30,0270642636263 ; 3,4 ; -5,1 ; -5,5 ; 6,2 ; -9 ; -8,6 ; 0,34 ; FutureFE2174 ; 9ea7F967c9BCaaCCfAF3Aed3ab3ED6cC5FBCd7eBAbddd1CE335Ce9bbdEE2fcD6 ; < AUTcl1EY24LC8yVD192c5NRShpi537c4Exe2Z6y7GoR09510fH4focSFM241WwbX > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 30,5048040887795 ; 2,91893785029074 ; 9,45065213901046 ; 30,5045540887795 ; 30,5050540887795 ; 3,9 ; -4,6 ; 0,7 ; 1,7 ; 9,1 ; -7,2 ; 0,93 ; FutureAP2191 ; 23EFBf89f1F5cd0Eef6ae2f24fd307cEd30FBff1CA1b14eabb1BD02f8BcEAAF6 ; < h2q97g1T40au10L0e7724HTkHy6SVp68bxdEo3D3F1b5W5feY8L9mstWbDj56FXS > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 31,0329719390179 ; 3,41431822693473 ; 8,08906841026309 ; 31,0327219390179 ; 31,0332219390179 ; 5,4 ; 7,8 ; -5,8 ; -8,5 ; 6,5 ; 0,3 ; -0,99 ; FutureJU2161 ; 24519adaCCf46b61Fd2c4DDE638FBBEE2Df6dc4dECc17c9E7F8cAAd2488cABe6 ; < 0N241m86X0z9rg4nB4TzNy7YN434LQrub8klm0lh6F00yz1CW9Ibfe0cv0NXn204 > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 31,5484678916045 ; 4,04188025308742 ; 6,80539400381936 ; 31,5482178916045 ; 31,5487178916045 ; 8,9 ; 9,6 ; -6,5 ; 8 ; 6,8 ; -5,2 ; 0,16 ; FutureAU2142 ; 267fcD77cc4BE169d2e8c3dd3bBcFCdcCba9cbDC3C54BADB19Df56D351EBDBDF ; < 4pss5H4k83ofGVHdMvO8pWTmRn6M64qV9Z5lknL7644Dm8CzpIzSatRxYgc6y0di > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 32,0572505487755 ; 4,8432658796766 ; 5,6189326262873 ; 32,0570005487755 ; 32,0575005487755 ; -8,2 ; -6,4 ; 6,1 ; 6 ; -7,4 ; 3 ; 0,16 ; FutureOC2180 ; DB7bbAA1BcdD7CdfBF3aBAfeF95F5cDdC424eD7Ece3F77C684a91D0BD8dEB79E ; < FdH8x2bpv7y2wH5s0OyIgWjIk81opGBY3b990O58Fe4ya20WZIc7Xh9YOH9EP64H > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 32,6596697766435 ; 5,87329803803142 ; 4,56070363961816 ; 32,6594197766435 ; 32,6599197766435 ; 7,8 ; 9,8 ; 5,5 ; -9,4 ; -8,7 ; 9,1 ; -0,58 ; FutureDE2129 ; edFf2d2DEb46A15A55fACBd5fD3ECcA32F60E92bb0Cbc921Ffb8bC2c13CDf1Fe ; < hlz263b8bIvv45TwjEbzr6nA55Zmgss73D8Aljc2u4rCdD1DpLPe0S10wC9Xbpk8 > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 33,1598876010461 ; 7,20845609854301 ; 3,60013727596239 ; 33,1596376010461 ; 33,1601376010461 ; 3,1 ; 3,5 ; 3,3 ; 2,2 ; -0,9 ; -0,4 ; 0,88 ; FutureFE2276 ; 1d8afCfc4b8DCeaCf682F29dBEbB5C47C9dC5afb4BBEfBbEcdCe65e0dD9AE3d1 ; < Bb34vL80gJ7Q5bscVk15A8191UCm2xgDR7KWPia97D3P7YjpRFxM6HNt89z40G6L > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 33,8376937315093 ; 8,95461718588486 ; 2,77879847112253 ; 33,8374437315093 ; 33,8379437315093 ; 6,8 ; 5,6 ; -9,1 ; 9,4 ; -0,3 ; -3,4 ; 0,77 ; FutureAP2248 ; b9AFF8B7cCDA3cF3D9eff2fFa893cF6F5CE4d39DB4Fdddbd4CCfaFfbFe6FD129 ; < 3oGVRt4z7Pc4GM4ggU43NM3kJ0rvZxsrmwHR9TL88Lt6lq8CzSLBok5vsw88Q2yL > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 34,4805753685878 ; 11,2597813450131 ; 2,06227752671761 ; 34,4803253685878 ; 34,4808253685878 ; -6,7 ; 1,2 ; -2,4 ; -9,5 ; 7,4 ; -4,1 ; 0,25 ; FutureJU2252 ; bcC578CeF84eFAE6b6ccabADaEdFcDbF84D1d6B8dBB51AAaF4afafe6e01DCbDb ; < 7DvkRiy0okcLgE5858Fxt9qbwRWS5M0H7xjrS4K8P2ZHpcg0daCK3eyAL2Qr1h5K > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 35,0058940089548 ; 14,3293517656877 ; 1,44295028703099 ; 35,0056440089548 ; 35,0061440089548 ; 1,5 ; 5,4 ; 2,7 ; 0 ; 9,3 ; 5,8 ; 0,95 ; FutureAU2230 ; a6CACfEFbbFBAA706331C8C7815eB5a26b6bAD1cDaA8B8Fc1BbbbaFB63Ab3bAc ; < vp24Ij0qDI60t664429wyOh7kUi1di2Lp99E6a0144mFXQ84RSo88Tt195bdywT5 > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 35,8409622066643 ; 18,4577499874342 ; 0,941783924425475 ; 35,8407122066643 ; 35,8412122066643 ; -6,5 ; 8 ; 9,7 ; -2 ; -7,7 ; -8,2 ; 0,11 ; FutureOC2293 ; 0AEbfaeacC9C7ccDe81033Aa5cFabBCaDb4808DdEa1CEF74FfB6C68dCAFB5cbb ; < Ss6Sy8ahoIn6SR1sPTeak2o94jR39UCl7jqLKoLMd7691nQ0Pvx2h2u44D7UKf4h > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 36,5181543060978 ; 24,0642562142933 ; 0,517526824053979 ; 36,5179043060978 ; 36,5184043060978 ; 4,4 ; 9 ; 6 ; -8,4 ; 5,3 ; 5,4 ; 0,81 ; FutureDE2298 ; Ee6a64e2AeCa2cCc5C54DddbBdDdBE10FE76EFA6ccA6DeAcdEFeFf52cb610372 ; < 4rNb9vXfWGbi9vdznZ7WaOpq173kgV3SpmQOXPCFUb16fn47h1xYtOSE1UbTr28Z > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 37,2368729556471 ; 31,7539835653543 ; 0,172667765573671 ; 37,2366229556471 ; 37,2371229556471 ; 2,5 ; 9,2 ; -6,4 ; -7 ; 6,2 ; -4,5 ; -0,58 ; FutureFE2332 ; F4b30A3A78efcbDdbDcdEf3F7d7b8c0BACEccfceec1A6EC0bbf5CFb24aDB50Ca ; < 9fxtIPni1kx8y1C2RkV9V2qwIk15t87QU6p9i0Mwm7HMHZ5bhe7YweP6IK7K34D8 > > // < CALLS ; 5Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 15,2524020443897 ; quote ; 68,7696516082759 ; 67,3942585761104 ; 0,0204081632653061 ; -8,2 ; 62,9242312215724 ; 74,6150719949793 ; 7,9 ; Dcfda3f5a58Fa8fE8bBcF8BAdCEcb6DC7B53ab0495cDAfcfDbDa3aE5Fcd9BEDf ; < bhD0RrkL30aYy5wDe9TzJl54uV4lwD02DfCakrXjZ0eLTeKDR14JOkONz3tTzi8k > > // < CALLS 16,7776422488287 ; quote ; 66,0394899014161 ; 64,7187001033877 ; 0,0204081632653061 ; 3,7 ; 60,4261332597957 ; 71,6528465430364 ; -5 ; DEdfC2ABE8e48ffA26cBff324E4C1eAE960C815f7ea58568CcB2Aa330BdBbcDC ; < lhA9o3AYLInMZZKxN6KcYq72NYsik1RMV12Z8nl1fqDo3D5YjzYfO4L2fHmsxW8m > > // < CALLS 18,3028824532677 ; quote ; 63,4088182749812 ; 62,1406419094816 ; 0,0204081632653061 ; 9,6 ; 58,0190687216078 ; 68,7985678283546 ; 1,4 ; fd461Fab3EDA19A6a23DFaA9cDDDfE2daccdCAdFA3b96aDD003f13Bcc5aeEF00 ; < DDPVB26320ejYU6KByZdzC2bdO13AW2NPdbk7W074N0qso1WVs7EjzloH27N7IBI > > // < CALLS 19,8281226577067 ; quote ; 60,8785228676813 ; 59,6609524103277 ; 0,0204081632653061 ; -6,8 ; 55,7038484239284 ; 66,0531973114342 ; 8,7 ; D4801a5fbC6dCAaE3cEc151bD1CdFDcaabdEDdF8f1E39C4d3fAAA885dfC7FAD2 ; < S28fT3FD88pjA5DNVwbYgBX9ysW065671cURPtQWZ4I2c3d72n876oNpyvqZx89d > > // < CALLS 21,3533628621456 ; quote ; 58,4483243190617 ; 57,2793578326805 ; 0,0204081632653061 ; -3,5 ; 53,4802167519415 ; 63,416431886182 ; 6 ; 81aDA6CAB585b7dFf03879E1A7d1BB6DCcbcAEBcCDC3F3cce40bcEDfBda8b441 ; < JJTLyP9oeR8a4BCh91J8mgy4u2H8Qe8yRYW8LcAv4Klr6IGGuHm5m7VtBV81JW1B > > // < CALLS 22,8786030665846 ; quote ; 56,1170355544163 ; 54,994694843328 ; 0,0204081632653061 ; 9 ; 51,347087532291 ; 60,8869835765417 ; 1,7 ; EC01aCC5c8EB5ADD66cE5eCffEFdfFbe7a23d79684a113ddEcd7bcbfbc78e8bb ; < O89Dzsg4PD2afA69ZqMgZ25Ct9C4t6gQh5Fv95X23Op09JieTGK3l9fY0o2wE5Y2 > > // < CALLS 24,4038432710236 ; quote ; 53,8827769498618 ; 52,8051214108646 ; 0,0204081632653061 ; -2,7 ; 49,3027409091236 ; 58,4628129906001 ; -7,9 ; 0cB0eb3EC26aCBF0a1D08FAa9E2aFABf2b2cC8AE5CFdAd6AF1F1EECf487BFC9f ; < 57lY01x31p16Y783X6LjdRw9HC4iPYr5I5I7ATTBM3fFxuk65L0L5lZfwj3F36fA > > // < CALLS 25,9290834754626 ; quote ; 51,7431529046748 ; 50,7082898465813 ; 0,0204081632653061 ; -7,4 ; 47,3449849077774 ; 56,1413209015721 ; -0,4 ; db9139Bdfbd8cE7fc8c5Ec8cdcc1947e7CC5C8BFb9B2a57E0Fca2FeB6fd9aDAC ; < 2bd82Qh5zICIZ68vJw85nbi8oJQsx5ZGCcdvo7DXSkv8iPOML79L0b22L3n9f535 > > // < CALLS 27,4543236799015 ; quote ; 49,6953949372565 ; 48,7014870385113 ; 0,0204081632653061 ; 2,8 ; 45,4712863675897 ; 53,9195035069233 ; 5 ; 2fDF6cC3bD7Ca5A8BcaF7D7f2f755e3BFdDCe03CFdEAFf36b0dFD5c4ffdFe7a5 ; < vCc12smNQPckwQzk5P5mC4nLSJFT9s246pciP7CDvYvu7n794SyUaAfCUTrEKFPJ > > // < CALLS 28,9795638843405 ; quote ; 47,7364764920315 ; 46,7817469621909 ; 0,0204081632653061 ; -8,9 ; 43,6788759902088 ; 51,7940769938542 ; -1,7 ; 6fbdA44b76bCB5Cd1dBAC71Aa61DDbEdB06c34AB18F28BdbBEdA0DfaE338efF7 ; < 1Y1l3m16fSzBPt7y6t3tzcVFD69S04XX34eys808U249JHMxqlcDP2yJcn2vkzfu > > // < CALLS 30,5048040887795 ; quote ; 45,8632042431598 ; 44,9459401582966 ; 0,0204081632653061 ; 2,1 ; 41,9648318824912 ; 49,7615766038284 ; -3,3 ; d1C8dE7e2CBbCAe9f67Ae3dCAABaAeeCcB798B2BBeFDEaa37d8e2F444DCaEbba ; < Qk6190VmN06ex82wcoY3dxEASo24yYmAtQrO4lm1e1hq4kz3CMoL43vJ5m27YR9G > > // < CALLS 32,0300442932185 ; quote ; 44,0722900961976 ; 43,1908442942737 ; 0,0204081632653061 ; 9,7 ; 40,3261454380208 ; 47,8184347543744 ; -0,7 ; aDFAeFD6eB212DcfC8Da6fdAbB8a9DFdaCA71552EdDabfFAc4e6ADDF84f2ADec ; < TK4b2kmP8x0HQ7X9p7xYU4aX0UcZGI094B3593Gi8Wu1ZxY1E9C5FxQrnU8YZOWy > > // < CALLS 33,5552844976574 ; quote ; 42,3604074685174 ; 41,5131993191471 ; 0,0204081632653061 ; 9,7 ; 38,7597728336934 ; 45,9610421033414 ; 2,8 ; FB0E0e44A5eD1c497Dbb8230A2bCeE79d50af1BbAedbEFA3Ebe9BbBe60c098A0 ; < da9k4RLyz0ZSf759wdf9oX063sX45Ha63Bqww29kmmpsMx8fxX6VpTm5R8uwVP9Y > > // < CALLS 35,0805247020964 ; quote ; 40,7242348442273 ; 39,9097501473428 ; 0,0204081632653061 ; -3,2 ; 37,262674882468 ; 44,1857948059867 ; -6,1 ; fFaCCDC994b7bae2cBAec906EE370Afda98fa35D2EaaA2f71eeD82abcFbb1C22 ; < csQJ35yA1AL7zZMmut4ERr3QGNdvFgliUkTDC3Z91jSQNNqlHB54NqnF1VHHM1yW > > // < CALLS 36,6057649065354 ; quote ; 39,1604890792011 ; 38,3772792976171 ; 0,0204081632653061 ; 3,4 ; 35,831847507469 ; 42,4891306509332 ; 6,5 ; bB2EAF8c896E76cDDbF463c4B4EcD1AAcdec6d4E60DC5c3bFDcf3B5eA1bfdb5f ; < hh0r00a27WyjL9G57m74DX68QMyzY6Y6M78a6Obl6sB1m1wyHqMLG0165DjIpf3d > > // < CALLS 38,1310051109744 ; quote ; 37,6659504849378 ; 36,912631475239 ; 0,0204081632653061 ; -6 ; 34,4643446937181 ; 40,8675562761575 ; -3,9 ; BaAcbE8C6D6c6bEb7FfbAD7C4AA956fDFD9DBfdd341AfA5Fbec2D0baCF1C1dCB ; < Fptw47iKPnBbPjawjCtuB0KR0J8514lVUTfr2HmrhBrZqyl6zlgsf5648jAJM2T5 > > // < CALLS 39,6562453154133 ; quote ; 36,2374813440611 ; 35,5127317171799 ; 0,0204081632653061 ; 2,2 ; 33,1572954298159 ; 39,3176672583063 ; -9,6 ; baDcE0099D4FBd1F44cf4bBa4adD5d15e1dbDE3Fb4AEad9b4fccAc36c1EbF6cb ; < 60K5tWY842t8v89E9Ww71a69s9T1XYVd61N5d6QssR1ml5HsSc0QhLY4nSw31EUv > > // < CALLS 41,1814855198523 ; quote ; 34,8720391984027 ; 34,1745984144347 ; 0,0204081632653061 ; 1,2 ; 31,9079158665385 ; 37,836162530267 ; -1 ; cddbfeBc0c2CeF24DA8ACFFe3B9FBf5DecB36Cf07Dffda6Eb98aB1Ae3D4DbEfe ; < cOvm7or9vqme75HxTNOp638G3CF4vPvh512Sb0yYDb585KzU5Ucxv8PiNR82JFpC > > // < CALLS 42,7067257242913 ; quote ; 33,5666859942514 ; 32,8953522743664 ; 0,0204081632653061 ; 6,3 ; 30,71351768474 ; 36,4198543037628 ; -8,2 ; D5cfbEFdd6dF5BCFaee35DA8a6A61e2dCDf1fEeFBEEEDf4BA670F0AE1b8afeEC ; < 6LHB859eXx1nz7E577qpkND84kf5M6TE43fx5DxWmUA7wjXJ9dN1N4631enP8z01 > > // < CALLS 44,2319659287303 ; quote ; 32,3185939599338 ; 31,6722220807351 ; 0,0204081632653061 ; -0,1 ; 29,5715134733394 ; 35,0656744465281 ; 4,5 ; ebEbDCd8E968AFB1fD773BE4FC8b5f5d330FEeAc71eFbeeB25bc2FFc74FAA4eD ; < uU10v97U0BT5Pa5H5kTmHtZmG8TG1jZ3H3LBE608u5joni12kQiF07qB9F8K161b > > // < CALLS 45,7572061331692 ; quote ; 31,1250489205501 ; 30,5025479421391 ; 0,0204081632653061 ; 9,8 ; 28,4794197623033 ; 33,7706780787968 ; 0 ; fDeaeAA6bc0A3ab3afA331ab3438D90ECff0Effe7Db9c0c8e0fB1e021e41fabE ; < 5b00827CW4WxM1kgPa4R0iN47wC96X57Nc4808193tP2z22n7R95UmKxW87akhQN > > // // < PUTS ; 5Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 15,2524020443897 ; quote ; 1,45814086476824 ; 1,42897804747287 ; 0,0204081632653061 ; -6 ; 1,33419889126294 ; 1,58208283827354 ; -9,7 ; EdDDace6CFaAE9AFDFe7E793285F9dBedcF2dAd068AC4FA8DC89bF7bcDCACFd6 ; < 0012EnwdBe4NV8X4AUPBmSMSo3F1CqvGWPw6luJso42SV1h589Gs5AS4iZXpcjM5 > > // < PUTS 16,7776422488287 ; quote ; 1,99682808355766 ; 1,95689152188651 ; 0,0204081632653061 ; -3,6 ; 1,82709769645526 ; 2,16655847066006 ; 6,8 ; 9fedADF5602de8eaFfbfECeaeADCDaF7BB28fCDcBca7CBbE0BcacCeAf90ddBd6 ; < LE1pXKf4iWb9BWsnugWEfQZRZYePShwCOx0fa446jPA4iCyVy1a25laI2a8E2j0i > > // < PUTS 18,3028824532677 ; quote ; 2,63500538277204 ; 2,5823052751166 ; 0,0204081632653061 ; -3,8 ; 2,41102992523641 ; 2,85898084030766 ; -2,1 ; 6FB74ebc953Fed8A4dEB7AbFCAE8CA1BfCAFcdfE72ED6aDcaebce4dB2e2EC3ce ; < pc9sClatw7hOMV18ryN6Ij8PBF4W76O178N136jRaNNoHfFbp4jTO1f15mQgi9j5 > > // < PUTS 19,8281226577067 ; quote ; 3,37355890112138 ; 3,30608772309896 ; 0,0204081632653061 ; -8,1 ; 3,08680639452607 ; 3,6603114077167 ; -4,6 ; dDacbbDa8EF5f66E59C740045FAE8Df9EAECae1EdbeaEFeC41abfc5C0CBC0A1D ; < jLh4H07Rl3FrG7Ps95HxqL3eCsRKx3vfNeWm9CYE4Huzlo5eCubs056n71tIv2Ad > > // < PUTS 21,3533628621456 ; quote ; 4,21220927815102 ; 4,127965092588 ; 0,0204081632653061 ; 2,1 ; 3,85417148950818 ; 4,57024706679386 ; -4,6 ; 446D9Aae68bF27ae1ec0F5cDe5Fb9C3C6BE2EAFfd2a7babFa7aa20eaBfbCcb2A ; < ETlTR784b1Y9sL6W2CfL7tqbY6d2Vj6902SxxVJU18vNs7Rb7vI5F50C9JpK83Jd > > // < PUTS 22,8786030665846 ; quote ; 5,1497694391549 ; 5,0467740503718 ; 0,0204081632653061 ; -8 ; 4,71203903682673 ; 5,58749984148306 ; -1,5 ; 9a9a82Ab0BDFAc1daa481FB6eA0DAcDfB2AAA7c812aeA56efad0Ae5Db49B2bdB ; < 2x4398NE3uP8z8fcHZh1D07wj7sut5b8vPd7VC9Neyt3s1gM84ZbKrh425L3oMr1 > > // < PUTS 24,4038432710236 ; quote ; 6,18435976024961 ; 6,06067256504461 ; 0,0204081632653061 ; -1 ; 5,65868918062839 ; 6,71003033987082 ; 4,4 ; f7dBeF245b10e9DcC32A1B6a7dA68fFA5EF4aBEDEEAdD6c14c0dcfAfa616FC7f ; < 4og4535v1sB79w8KY65SFOpRu723kO799gAvx2Mcs6p6BFFa3q6FqQtymwrl1Q5N > > // < PUTS 25,9290834754626 ; quote ; 7,31358464071178 ; 7,16731294789755 ; 0,0204081632653061 ; -8,9 ; 6,69192994625128 ; 7,93523933517228 ; 2 ; f2b7DdFDD0a3e5e3c8c1F190CcFE1B965Eaa49Eba5dA6DFFefafC0C1D9b3aAfB ; < lkm025ESQEnZ05oLdEXrm9W08cr520h4frM8CaN5Bhvmjno046o48LIPL8aW2W5k > > // < PUTS 27,4543236799015 ; quote ; 8,53467559894273 ; 8,36398208696387 ; 0,0204081632653061 ; -7,3 ; 7,8092281730326 ; 9,26012302485286 ; -7,7 ; ffaDB0AFCFEfeA3CC4d2EAe91dDCc2bAfD1cccA2abbdF74BEfec454d43c6DCaE ; < xNN3iv7c2H2Y9Sln2hDd09PO5ItA2Rl4cjCrG2SC3P4zpz7WWiz0WDHJHca6xF15 > > // < PUTS 28,9795638843405 ; quote ; 9,84460607936701 ; 9,64771395777967 ; 0,0204081632653061 ; -8,6 ; 9,00781456262082 ; 10,6813975961132 ; 5,6 ; f8C9Dc7abFFee3f2D6bE9CA8aC3B4C20f9c5dCbeDD17DA0bE9e4DbcECabEedE1 ; < a80q4b0pbB3U2EN9o985LSHN8gG983CFDjBsSKU7427N34HXOaXDiCvA82Dx4lfG > > // < PUTS 30,5048040887795 ; quote ; 11,2401827561445 ; 11,0153791010216 ; 0,0204081632653061 ; 5,5 ; 10,2847672218722 ; 12,1955982904168 ; -6,1 ; 9eDAA87610EC7eAFe4eCd2Bfcd8D0B3da49c4AcC340b7d8bDe8dCeec3F5EEFBA ; < eE2RZqw19F2nvd37MVq40O4JiLw4bzFoLf87a5fsEIzH68dNs42PSW3eAhmQV9d5 > > // < PUTS 32,0300442932185 ; quote ; 12,7181175348316 ; 12,4637551841349 ; 0,0204081632653061 ; 9,9 ; 11,6370775443709 ; 13,7991575252923 ; -5,4 ; Dbf8F34FaC0dddeaEFd3fDbBCE4ab2366C1d3DebA201BbCfa7b7F16aDd062Ce3 ; < i9TSb0Lw5NAo99p2RgG0XWJUU4LIjpvA4LAg30LD5s42bN28kj6rPwqKAV8z3TnP > > // < PUTS 33,5552844976574 ; quote ; 14,2750838328006 ; 13,9895821561446 ; 0,0204081632653061 ; 7 ; 13,0617017070126 ; 15,4884659585887 ; -8,1 ; 5eB6e6F8570f5DB5E7BcBa9F23FF593d5e7ddDCADFD3BD64aFF26bfFaBDEB7Ae ; < cP7ZA33ZVa3Y2brsk6wg4a3x6hdj9vD7829B6n2azcc0P1Vyd54Zho32o442374q > > // < PUTS 35,0805247020964 ; quote ; 15,9077601341598 ; 15,5896049314766 ; 0,0204081632653061 ; -4,6 ; 14,5556005227562 ; 17,2599197455634 ; -2,3 ; da1AEC5FAF25c9BCaf3FcfDaBaA5aBbf23cca11bfFCdb76fBFe0CBCFe20eEAAD ; < 3Kohq3lKbL1dNU05iE006rMBx67D5OKn1FmBV05pOK5ty7JE1o788h1gr4obbPVA > > // < PUTS 36,6057649065354 ; quote ; 17,6128632947828 ; 17,2606060288872 ; 0,0204081632653061 ; -4,9 ; 16,1157699147263 ; 19,1099566748394 ; -1,2 ; 80caE3BF64E0bD6CE02BCFDfC9baF4BaBeB1EDaB68Cbb233a58AfC0bBddE60AF ; < 79tqHVp9wA6T8X1FWx0qnHRqK86682D0r8z2xrhx5v1iV1sR35d8NC994S8L7RHF > > // < PUTS 38,1310051109744 ; quote ; 19,3871736261687 ; 18,9994301536453 ; 0,0204081632653061 ; -7,1 ; 17,7392638679444 ; 21,035083384393 ; 3,7 ; Ef361Fe17BaFDC0aBCBf6FADDbbC8c2524F50F7abBcaAC7cdEBcAb9D7a79Badf ; < WmBj4GppB3bhiB5V5gbG239CL557gIzcnvdlc5ylh5127G0OoWmJayFY08lfB8J5 > > // < PUTS 39,6562453154133 ; quote ; 21,2275534109413 ; 20,8030023427224 ; 0,0204081632653061 ; 4,2 ; 19,4232113710113 ; 23,0318954508713 ; 1,2 ; Bcfc6001626453DDCb8bB95efe1cc2D1f06D6E0eDEE00e9cdcCAcD5DC0DF8cE2 ; < 4Hdeh2cA9UUtDR2bTPO32FX5F46P0UP78B16t58tK5Luo1UqFW352zQx3HR79zS5 > > // < PUTS 41,1814855198523 ; quote ; 23,1309601909321 ; 22,6683409871135 ; 0,0204081632653061 ; 2,7 ; 21,1648285747029 ; 25,0970918071614 ; -4,6 ; e8AeBD886bB00AcB5acbec8c373ECdddEcBD1ECBdC1B9c3f72A2eBeAa92eBc9F ; < 97QRt41bK4I63iVP70Q6986YhL9scV13vD6rk0gXF2DI29a38TS03SBiEW2dK122 > > // < PUTS 42,7067257242913 ; quote ; 25,09445591243 ; 24,5925667941814 ; 0,0204081632653061 ; -2,3 ; 22,9614271598735 ; 27,2274846649866 ; -3,6 ; ae1b22ECCecdAd3EF5caAaADC34faCDA8ed57DacCE72ecCcefDD9b6ADe72D0Bc ; < J24SKmxHF4hAEdOwf8XmwfkI786vYJ9Q8HMtSv31y2V6ngMlFBa085O9a3eBVAg9 > > // < PUTS 44,2319659287303 ; quote ; 27,1152128037616 ; 26,5729085476864 ; 0,0204081632653061 ; -7,6 ; 24,8104197154419 ; 29,4200058920813 ; 0,9 ; 9C4BDD09f377BeBced79AbeA16A1cfe1FcaCc6ACCE6aF9dAF0913bEFe9cfFFF5 ; < Wipp4sAUQG7JG5E7305cUQSqpD191P1T4q186n0N0oYtX3Ij0BJBHoLCNs93O5s7 > > // < PUTS 45,7572061331692 ; quote ; 29,1905166900272 ; 28,6067063562267 ; 0,0204081632653061 ; 0 ; 26,7093227713749 ; 31,6717106086795 ; -5,2 ; 47c0bFE6CEbd6cfd0fbDa1cd8EEE837f38cec9BAbd8aD2bCbb3C3caBD0BEb42F ; < NjAb7rN1rahwLa2Z4172w6zEaazR192i5a9J5FFrfXuT7d72MMzU6JOb0A9l288H > > // Futures_Teploseti_LLC // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 25,994915 ; 1,14 ; 21,8025570175439 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; a6F803Dd23bDAE78dccAd3aA73eC8Ccc8A68A8fd2c7EBB9CA56D68bfDEcbB2dd ; < wg3lWlODG00cay8bxTw951Afy49NApOW3ovKQYF9lp9RvQgw27Cm5L1t8c88Ga9c > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 25,995648944215 ; 1,14003648 ; 21,802471149182 ; 25,995398944215 ; 25,995898944215 ; -0,3 ; -7,5 ; 8,9 ; -3,9 ; -6 ; 2,7 ; -0,34 ; Future47AP19 ; 7938bc5D4ADC23df07A47ac60FDcF15da521bbd2A96DD52D8eA6fFDD6210BEeC ; < Dr8zvEBe73ubUs3qBcyOcxE6FG546OFH2KdM3DAys101O59dgKK67423eitwEn56 > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 26,2753419638376 ; 1,15382109326135 ; 21,7724576342843 ; 26,2750919638376 ; 26,2755919638376 ; -0,8 ; 7,9 ; -3,8 ; 9,1 ; -4,8 ; 1,3 ; -0,07 ; FutureJU1969 ; f4cc9A0a7CC61ABdbC99BbB1BbB2AFfAb2ed1F4aA94be4Db931BaEcFDaD8cAf1 ; < 4S14vTq52ky39Com1xaLZI21E6v5TvGb2x2OP71GH793cMiK18T3ry2d7kU9IEf2 > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 26,5796677629975 ; 1,1818956457141 ; 21,4890140338389 ; 26,5794177629975 ; 26,5799177629975 ; -5 ; 7,1 ; -3,4 ; -8,1 ; -8 ; 5,9 ; 0,51 ; FutureAU1924 ; 74eCDaeBF7CD3aAAb93C2f6b7d14A2BCCdAAc9C8a9cB111fa3cAC3F6a2cb454B ; < 6Rkzj0RoKgzYmUCxZ8e5s1nbjtwe1DGw2q8oQyPkh3YGEd49U71jC2Y205z6sKgv > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 26,8908505283184 ; 1,22552067586766 ; 20,9423882908216 ; 26,8906005283184 ; 26,8911005283184 ; -1,1 ; 3,1 ; 6 ; 2,7 ; 9,4 ; -7,6 ; -0,8 ; FutureOC1929 ; 7cBf9E9b865de6b20bD45fe5ed55C2BCd9FaDcBA0BfCd1d3bEF66Fd7d494C7Aa ; < rBi5RNA4iQY0b47K0aX22PX87X1tmV9fBXt2AXX2kdslV015W3GRlJwsZxkA25M6 > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 27,236863510922 ; 1,28597434253225 ; 20,1799431840056 ; 27,236613510922 ; 27,237113510922 ; 0,5 ; 9,1 ; -3,4 ; -0,7 ; 4,8 ; 4,3 ; -0,87 ; FutureDE1986 ; dfdCFEda0CbAb2DebCa3c9Ad5cA72C8b1C9DCBb21B8aDcBe0B46DDFEbFd24c8d ; < 4U3Wg0awLQrv1Yv3W8AWbNbq4qr305s93WjEQbAI7YVXVAl06GvGJ3bAVI539rw0 > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 27,564312651388 ; 1,36580804930367 ; 19,181688536278 ; 27,564062651388 ; 27,564562651388 ; -2,3 ; 8,9 ; 0,5 ; -7,4 ; 3,8 ; 2,7 ; 0,37 ; FutureFE2083 ; DD8aAD9BcafEFCEdD9CCeCB4fdDD31C7dd0CdEe3b1ddf8F1efd2d8AEC7aDfDDF ; < ge89HqeF07O9iih1N5Jop8vXkFVetEQr9Cdna094LXOuWkAxDfBJHDborrSC8gAl > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 27,94286995044 ; 1,46815624128629 ; 18,0326268857861 ; 27,94261995044 ; 27,94311995044 ; -3,9 ; 3 ; -3,8 ; 4,7 ; -7 ; -6,7 ; 0,42 ; FutureAP2091 ; bDBDbECbfECc409A08840E0F321CCFEb1A5cdfbFb1Bc6dB449C2ffE39eFbbf8E ; < t6s1QPn4FaHleVNam4Ik9Q06Rc82HGW29m47m3Vpj384V3y36Y42RNS7d3aOG7uN > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 28,3151312833803 ; 1,59746536122074 ; 16,7250361546135 ; 28,3148812833803 ; 28,3153812833803 ; -9,1 ; 1,4 ; 0,3 ; 1,8 ; -6,7 ; 8,5 ; 0,03 ; FutureJU2069 ; aeef3AE57eEEC175fd7fC775ccE14f6bF4Fdeac8DddadaDaaebBC1C2fB3ba17A ; < tT20E3Jsn3soyhuFWpvUvNl5UxvJYVVq3ZH2z0UoWLzbhIA07isK7Mod11Wa2mrA > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 28,7253444532562 ; 1,75923236003563 ; 15,3283401930342 ; 28,7250944532562 ; 28,7255944532562 ; -8,4 ; 0,4 ; -4,6 ; -6,3 ; -7,1 ; 9 ; 0,06 ; FutureAU2028 ; A0D73AeCDE22dca02c4f6c3e92e4FBEbb81BaC42EDCF8F9B04Bc4eC36Ad93eC0 ; < f3o8PU3UE54JbN6O17gQHdo30rBw8VYtJNWt79u6Vy6Vk91K3gqt18GxSBPX0uB1 > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 29,1618824142211 ; 1,96077129067131 ; 13,8726588118479 ; 29,1616324142211 ; 29,1621324142211 ; -1,7 ; 0,9 ; -4,2 ; -1,1 ; 4,1 ; 0,6 ; 0,97 ; FutureOC2044 ; B1aDECfB0edAbd06331bCCdBEB87BD9abABe2fBcE473fcada5FBfdEF7bF7bAaB ; < 2B0SIT9oUT9FhrzmBJLtv59DKWuujxT2JjHO9JJNxAwJ49O2VzgLK7aqdG4B5XXX > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 29,6174705191772 ; 2,21212567513903 ; 12,3886925376949 ; 29,6172205191772 ; 29,6177205191772 ; -4,7 ; -8,4 ; 5,6 ; -8,4 ; -9,3 ; 6,9 ; -0,77 ; FutureDE2026 ; 4cfc1CfAe1E7D4C22aab29BAFf86a8AfdB6A795dfea5fbFE2add75d785bD5FC3 ; < d372vy9u2657OM3DMkEZnRyJwvI05JI5MzRH5ev4k49clGzf8ZP0A8FcxoZo0F3q > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 30,0268142636263 ; 2,52583462941153 ; 10,8878781350076 ; 30,0265642636263 ; 30,0270642636263 ; 3,4 ; -5,1 ; -5,5 ; 6,2 ; -9 ; -8,6 ; 0,34 ; FutureFE2174 ; 9ea7F967c9BCaaCCfAF3Aed3ab3ED6cC5FBCd7eBAbddd1CE335Ce9bbdEE2fcD6 ; < AUTcl1EY24LC8yVD192c5NRShpi537c4Exe2Z6y7GoR09510fH4focSFM241WwbX > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 30,5048040887795 ; 2,91893785029074 ; 9,45065213901046 ; 30,5045540887795 ; 30,5050540887795 ; 3,9 ; -4,6 ; 0,7 ; 1,7 ; 9,1 ; -7,2 ; 0,93 ; FutureAP2191 ; 23EFBf89f1F5cd0Eef6ae2f24fd307cEd30FBff1CA1b14eabb1BD02f8BcEAAF6 ; < h2q97g1T40au10L0e7724HTkHy6SVp68bxdEo3D3F1b5W5feY8L9mstWbDj56FXS > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 31,0329719390179 ; 3,41431822693473 ; 8,08906841026309 ; 31,0327219390179 ; 31,0332219390179 ; 5,4 ; 7,8 ; -5,8 ; -8,5 ; 6,5 ; 0,3 ; -0,99 ; FutureJU2161 ; 24519adaCCf46b61Fd2c4DDE638FBBEE2Df6dc4dECc17c9E7F8cAAd2488cABe6 ; < 0N241m86X0z9rg4nB4TzNy7YN434LQrub8klm0lh6F00yz1CW9Ibfe0cv0NXn204 > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 31,5484678916045 ; 4,04188025308742 ; 6,80539400381936 ; 31,5482178916045 ; 31,5487178916045 ; 8,9 ; 9,6 ; -6,5 ; 8 ; 6,8 ; -5,2 ; 0,16 ; FutureAU2142 ; 267fcD77cc4BE169d2e8c3dd3bBcFCdcCba9cbDC3C54BADB19Df56D351EBDBDF ; < 4pss5H4k83ofGVHdMvO8pWTmRn6M64qV9Z5lknL7644Dm8CzpIzSatRxYgc6y0di > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 32,0572505487755 ; 4,8432658796766 ; 5,6189326262873 ; 32,0570005487755 ; 32,0575005487755 ; -8,2 ; -6,4 ; 6,1 ; 6 ; -7,4 ; 3 ; 0,16 ; FutureOC2180 ; DB7bbAA1BcdD7CdfBF3aBAfeF95F5cDdC424eD7Ece3F77C684a91D0BD8dEB79E ; < FdH8x2bpv7y2wH5s0OyIgWjIk81opGBY3b990O58Fe4ya20WZIc7Xh9YOH9EP64H > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 32,6596697766435 ; 5,87329803803142 ; 4,56070363961816 ; 32,6594197766435 ; 32,6599197766435 ; 7,8 ; 9,8 ; 5,5 ; -9,4 ; -8,7 ; 9,1 ; -0,58 ; FutureDE2129 ; edFf2d2DEb46A15A55fACBd5fD3ECcA32F60E92bb0Cbc921Ffb8bC2c13CDf1Fe ; < hlz263b8bIvv45TwjEbzr6nA55Zmgss73D8Aljc2u4rCdD1DpLPe0S10wC9Xbpk8 > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 33,1598876010461 ; 7,20845609854301 ; 3,60013727596239 ; 33,1596376010461 ; 33,1601376010461 ; 3,1 ; 3,5 ; 3,3 ; 2,2 ; -0,9 ; -0,4 ; 0,88 ; FutureFE2276 ; 1d8afCfc4b8DCeaCf682F29dBEbB5C47C9dC5afb4BBEfBbEcdCe65e0dD9AE3d1 ; < Bb34vL80gJ7Q5bscVk15A8191UCm2xgDR7KWPia97D3P7YjpRFxM6HNt89z40G6L > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 33,8376937315093 ; 8,95461718588486 ; 2,77879847112253 ; 33,8374437315093 ; 33,8379437315093 ; 6,8 ; 5,6 ; -9,1 ; 9,4 ; -0,3 ; -3,4 ; 0,77 ; FutureAP2248 ; b9AFF8B7cCDA3cF3D9eff2fFa893cF6F5CE4d39DB4Fdddbd4CCfaFfbFe6FD129 ; < 3oGVRt4z7Pc4GM4ggU43NM3kJ0rvZxsrmwHR9TL88Lt6lq8CzSLBok5vsw88Q2yL > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 34,4805753685878 ; 11,2597813450131 ; 2,06227752671761 ; 34,4803253685878 ; 34,4808253685878 ; -6,7 ; 1,2 ; -2,4 ; -9,5 ; 7,4 ; -4,1 ; 0,25 ; FutureJU2252 ; bcC578CeF84eFAE6b6ccabADaEdFcDbF84D1d6B8dBB51AAaF4afafe6e01DCbDb ; < 7DvkRiy0okcLgE5858Fxt9qbwRWS5M0H7xjrS4K8P2ZHpcg0daCK3eyAL2Qr1h5K > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 35,0058940089548 ; 14,3293517656877 ; 1,44295028703099 ; 35,0056440089548 ; 35,0061440089548 ; 1,5 ; 5,4 ; 2,7 ; 0 ; 9,3 ; 5,8 ; 0,95 ; FutureAU2230 ; a6CACfEFbbFBAA706331C8C7815eB5a26b6bAD1cDaA8B8Fc1BbbbaFB63Ab3bAc ; < vp24Ij0qDI60t664429wyOh7kUi1di2Lp99E6a0144mFXQ84RSo88Tt195bdywT5 > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 35,8409622066643 ; 18,4577499874342 ; 0,941783924425475 ; 35,8407122066643 ; 35,8412122066643 ; -6,5 ; 8 ; 9,7 ; -2 ; -7,7 ; -8,2 ; 0,11 ; FutureOC2293 ; 0AEbfaeacC9C7ccDe81033Aa5cFabBCaDb4808DdEa1CEF74FfB6C68dCAFB5cbb ; < Ss6Sy8ahoIn6SR1sPTeak2o94jR39UCl7jqLKoLMd7691nQ0Pvx2h2u44D7UKf4h > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 36,5181543060978 ; 24,0642562142933 ; 0,517526824053979 ; 36,5179043060978 ; 36,5184043060978 ; 4,4 ; 9 ; 6 ; -8,4 ; 5,3 ; 5,4 ; 0,81 ; FutureDE2298 ; Ee6a64e2AeCa2cCc5C54DddbBdDdBE10FE76EFA6ccA6DeAcdEFeFf52cb610372 ; < 4rNb9vXfWGbi9vdznZ7WaOpq173kgV3SpmQOXPCFUb16fn47h1xYtOSE1UbTr28Z > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 37,2368729556471 ; 31,7539835653543 ; 0,172667765573671 ; 37,2366229556471 ; 37,2371229556471 ; 2,5 ; 9,2 ; -6,4 ; -7 ; 6,2 ; -4,5 ; -0,58 ; FutureFE2332 ; F4b30A3A78efcbDdbDcdEf3F7d7b8c0BACEccfceec1A6EC0bbf5CFb24aDB50Ca ; < 9fxtIPni1kx8y1C2RkV9V2qwIk15t87QU6p9i0Mwm7HMHZ5bhe7YweP6IK7K34D8 > > // < CALLS ; 7Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 16,9188468657546 ; quote ; 75,8293220185812 ; 74,3127355782095 ; 0,0204081632653061 ; 9,2 ; 68,6255364268159 ; 83,0331076103464 ; -4,4 ; d88eB8b92B3C0C0aDD5e4BdD976e9DfDCBF42c56f0b53DD12DBbeE3C588CadEA ; < FOc015NqQaz7b6Tl5sLgZ9HeHg3dj35T37IChY9cK3A71r6edu8Eh4901gXkWFzK > > // < CALLS 18,6107315523301 ; quote ; 73,7322794357713 ; 72,2576338470558 ; 0,0204081632653061 ; -2,1 ; 66,727712889373 ; 80,7368459821695 ; 7,2 ; ee7A2cf342CEdA0fbaA9Cc4cB5aED9ACFeFdF5A7a9F09bFDE9dC2Ea883B0AfEA ; < dq0Ygb4mYVHt7q5Hghj7pxYDv33G6TyejS03h4L7l33HpbE246F54cOKj12hDx09 > > // < CALLS 20,3026162389056 ; quote ; 71,703437256091 ; 70,2693685109692 ; 0,0204081632653061 ; -4,6 ; 64,8916107167623 ; 78,5152637954196 ; 4,9 ; 5bE16Ff78DFff5cA19E9Ebf2bA7Dcc2Cf1EedBE94FDEeeFe5BafE1AAAa9BF8bf ; < J1WT3enoO8VPGOFiIKt52XdY5XLSEEs8kJ7RY19FE9dXieV38dlXEP0XyR0kC9I3 > > // < CALLS 21,994500925481 ; quote ; 69,7418885557811 ; 68,3470507846655 ; 0,0204081632653061 ; -4,8 ; 63,1164091429819 ; 76,3673679685803 ; 2,3 ; 7AfE9B99fD0e3cbe5FBB84dc0D2FB7ceCFcE754da41d43155aa626fa20ea8BE8 ; < M6MoNy4FdM2u4X4TeU85fT5vGdu566Q7Y7101x63kR6stE7CZWH4Ddt88Lp6o4Jy > > // < CALLS 23,6863856120565 ; quote ; 67,8463197897546 ; 66,4893933939595 ; 0,0204081632653061 ; 0,3 ; 61,400919409728 ; 74,2917201697813 ; -7,3 ; ee6Cd8bDDFe4FDBeE63cCEDe5ECa1CDAb15DeeD35e0f6dfffCCCB89a0B9d9BaA ; < 5xVXdN05eQ7P1T431FzE3zK5QIF1xTa9r42r8bMK8darB6KyojIwHaw3a4l3e8r8 > > // < CALLS 25,378270298632 ; quote ; 66,015129686744 ; 64,6948270930091 ; 0,0204081632653061 ; 3,4 ; 59,7436923665033 ; 72,2865670069847 ; -1,1 ; 5BFEdEAdaEFb347C0FE1bEAEE6dAfabdFbdBd4cf5a64eaFDBaCcBFB3ADCC9a3f ; < l4u6cfuE0cW6RB4vQAFOkFkRepM80clZ8n24r662mVZqtcwAo96U99DI49iOp7B8 > > // < CALLS 27,0701549852074 ; quote ; 64,2465199791314 ; 62,9615895795487 ; 0,0204081632653061 ; -8 ; 58,1431005811139 ; 70,3499393771488 ; -1,9 ; 54a6BCA7c9A9De1A8Bd1c898B0C8dC0F8C28cFded7DDdBaEFfEadCEAA0a5F2Fc ; < Y38jm23Os8B6vS58eCqKU7YM8Uz5Z6OxIFlBATPU845XnOH9LW72N6BR1h74aBg2 > > // < CALLS 28,7620396717829 ; quote ; 62,5385644631442 ; 61,2877931738814 ; 0,0204081632653061 ; 5,6 ; 56,5974008391455 ; 68,4797280871429 ; -1,8 ; 14B063fed0380AFEaC014eb4bCd2fCFa3b685FDDdD2d3dEBa5A010D47ce5c23e ; < 2H85D9ZP6ecjglr6dI31a93gRDOyx1jYL67c60NPH34T230htNfguPCuY8yjK6Ds > > // < CALLS 30,4539243583584 ; quote ; 60,889261411245 ; 59,6714761830201 ; 0,0204081632653061 ; -2,9 ; 55,1047815771767 ; 66,6737412453133 ; -2,6 ; A3BEaE63FbbD11dFF8e39dDFEB246fFfEaDB868ceAa830aa0D7cBD6Bc3daec2c ; < 19Ct99I53ZA15Hhx9IsFYo8CJUb4G0X0X5I7AuJfrt13405J1j6WxEd48ROaW8F7 > > // < CALLS 32,1458090449338 ; quote ; 59,2965731937061 ; 58,1106417298319 ; 0,0204081632653061 ; -8,3 ; 53,663398740304 ; 64,9297476471081 ; -8,5 ; 5aB8c009DCfa9e1dccbE5A75CaaA480Bbc1eCE65CDC8CCDAeafBC53AaCEE897d ; < d875wO3Ry8S67LV3Q0530oCs27LRN042uh0FRi3V9kQawU2Icz88S3La09S62nLi > > // < CALLS 33,8376937315093 ; quote ; 57,7584560648362 ; 56,6032869435395 ; 0,0204081632653061 ; -4,6 ; 52,2714027386768 ; 63,2455093909956 ; 2,9 ; cc46F7ff962bDfBeEC9D9CECEd59aD7e3e26cfeeDBC5DcBCC32edFD74fFCf7e5 ; < 86WUD1djP061mc5RCF1pH0fbvk8uupY0oR7779K4DyaLjO99p87LWdKB8zq7NG7z > > // < CALLS 35,5295784180847 ; quote ; 56,2728823786395 ; 55,1474247310667 ; 0,0204081632653061 ; -3,9 ; 50,9269585526687 ; 61,6188062046102 ; -1,3 ; 3ECe25bEB705cD19BcFdcEeADb4ad9cB0dCbCDfD5cfdb9eBc1DFd7D4cE28F9bD ; < xWcZjg8964wAx89E5dSG7EkxT5badjCOEZKzv9YJvJuIlW2zvA2iZSaZ80f37GlL > > // < CALLS 37,2214631046602 ; quote ; 54,8378569718335 ; 53,7410998323968 ; 0,0204081632653061 ; 5,6 ; 49,6282605595093 ; 60,0474533841577 ; -7,8 ; a2F229Ae37cFAEbDAcCfEfcFd32eE43b59c9Fe23C94411Ee5Cd92E57d2717fbE ; < 1t3j2hXBU43i094925vXgQ63r5P2T9ds5Ele8vIp03PanBpIpQozBdXtwF7iiUFe > > // < CALLS 38,9133477912357 ; quote ; 53,4514290506786 ; 52,3824004696651 ; 0,0204081632653061 ; -3,1 ; 48,3735432908642 ; 58,5293148104931 ; 5,8 ; 9b6dCD33FEB9CCd92dfcFb49d5d2cbeCbFC9E9acFF76E3FAD3e0A027dEBEfBc9 ; < t06XEJzxAj9WYAo3Q50q8U937Af0LL9v9f4t5tI53J8bYw8Y1r0m3k9vRCUf68y1 > > // < CALLS 40,6052324778111 ; quote ; 52,1117006118506 ; 51,0694665996136 ; 0,0204081632653061 ; -4,8 ; 47,1610890537248 ; 57,0623121699764 ; -6,4 ; Ba4e7e2Ac18eda940adcceAfD9CD5a8dC719ead3b247AeACDdfBaa69Bd3d9Def ; < p738VHhmb3T9jC70z72DY2myO1Xvu303F9onuT62v2GcmD0wBy50iqxyRk65CwF1 > > // < CALLS 42,2971171643866 ; quote ; 50,816832193542 ; 49,8004955496712 ; 0,0204081632653061 ; -4,7 ; 45,9892331351556 ; 55,6444312519285 ; 7,2 ; DAcCC4EfAf4D38feb6dB7BCE2CeBC88A6D6dc9a14E42EEbfE70CcDDF3ba7DfCf ; < 5867UgTxAlrl9v0mFHNFxGW0l4slfFyf3BS83MJ9eM8eERgM5k0ZXG1Yp5HijR9x > > // < CALLS 43,9890018509621 ; quote ; 49,5650465736045 ; 48,5737456421324 ; 0,0204081632653061 ; -2,3 ; 44,856367149112 ; 54,2737259980969 ; 2,6 ; dAcBB8A70E7DBfcCE8FfA71E84C4db7bfcDfea78AEE9Fec037C5a5b4eAB7fd46 ; < CPEAj6bphnM7Vga6PACXhxNmWsy3AwlTBBF87Exch9dwBm6lsI101Sh04pM816oq > > // < CALLS 45,6808865375375 ; quote ; 48,354630893647 ; 47,387538275774 ; 0,0204081632653061 ; -1,7 ; 43,7609409587505 ; 52,9483208285434 ; -2,7 ; E3F6FEdcCeDbEEF66DADFBB6924Dafbc9F19f7AceDD6905cF6AdCAfB7130A1B6 ; < Q1QDxQd34QGpq2LO1HRBq8Yxig3aEs6GDP9L5CYRp7gH8gofE7AfJoMLmMSTyzWd > > // < CALLS 47,372771224113 ; quote ; 47,1839375816582 ; 46,240258830025 ; 0,0204081632653061 ; -1,5 ; 42,7014635114007 ; 51,6664116519157 ; 9,6 ; d78De1F73Acf9f4E45a4501cCcEFEcb8Ea9A4238158cdf495cABCeCebD8f9a40 ; < km0BD1cObr7S0bQa35nZfz45ED4607WgAj3tDcOFM456iPcwj560ezH3bOo4Z3SE > > // < CALLS 49,0646559106885 ; quote ; 46,0513843634353 ; 45,1303566761666 ; 0,0204081632653061 ; -8,4 ; 41,6765028489089 ; 50,4262658779616 ; -7,9 ; 7AcEdb3ddCcB7534d67dAEed4FAA2eebD5b0D8da4CBFaEbbdb6De51cacE1Fd1C ; < q0sJZR0SoVTerIuyc3kXiSsi6y614ZFm8Gb1dapuiTPpSJgS1Px7ISSt86PF6R61 > > // < CALLS 50,7565405972639 ; quote ; 44,9554535892403 ; 44,0563445174555 ; 0,0204081632653061 ; -3,4 ; 40,6846854982624 ; 49,2262216802181 ; 0,4 ; D8DCd9baEF56eeeBB4FAaDe8b9B42E06bAEBdB9CDF7f7FeF116af9Fb152fFadd ; < LTlmy9BBm8GljJ7ZN0yA0637P5LTb3ivFChF3Q706FqtJh3SKfXP1j9pR81fw36f > > // // < PUTS ; 7Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 16,9188468657546 ; quote ; 1,54299840391275 ; 1,51213843583449 ; 0,0204081632653061 ; -2,9 ; 1,39641355554104 ; 1,68958325228446 ; -9,8 ; BC29cA7afeFDffdAB08ffB0eFE00a4d7EBbdAD41A0e10deaf8b5c4bAeaCf6eED ; < 36L1lRpaG61rKF90cwz2zty1wR2gE7Qm86xauw1R1oZgg6NCANuJoj9v9al4o113 > > // < PUTS 18,6107315523301 ; quote ; 2,017323459636 ; 1,97697699044328 ; 0,0204081632653061 ; -5,6 ; 1,82567773097058 ; 2,20896918830142 ; -6,6 ; 11eD2B4A2ba27aC4c1bd68EcACec695Dd817E72DF5D17cAdAcb18eDecCC9c5aF ; < o5GUG5K33sYEv8q47ZshQTIl9ysg17MMfzpCfwJfh6cjFp7bnbtZFMH8fzU81yjt > > // < PUTS 20,3026162389056 ; quote ; 2,5598489184889 ; 2,50865194011912 ; 0,0204081632653061 ; -9,9 ; 2,31666327123245 ; 2,80303456574534 ; -6,4 ; DaB5e3bFFD3fC8c0F8facc6fBFE2d4Deaecd11C432c4E9Bb0822fb67ad8cE1e4 ; < wuSWQp2vB7i41gpidS4EqGC7Qv92a5R29KvByxR4EZ29647sW9G5uQ0LO0bq9U6S > > // < PUTS 21,994500925481 ; quote ; 3,16966785671218 ; 3,10627449957794 ; 0,0204081632653061 ; 7,7 ; 2,86854941032452 ; 3,47078630309984 ; -6 ; f9E9F3c9f0A9ade19BC17FEfDF6Dba8f0fD3bfd59cF1Df600fDbBaf57DBfbdda ; < C753mTlL7O53xUH19KMb56n49N14410vB1883f61J4Mo34KEu3Dm5l0hH4r89OnF > > // < PUTS 23,6863856120565 ; quote ; 3,84546672921888 ; 3,76855739463451 ; 0,0204081632653061 ; 7,3 ; 3,48014738994309 ; 4,21078606849468 ; 8,6 ; d5c7a082bDE80ee5DBF361A1Ee2EC4aE2A6bF0D1bE5Bc949DfabE5bCaeAACbC8 ; < 3tAOoyaJauBCrczrELJ2b4d0kWLKlGDAM8UA1xdP7wk6tKkCP3BB6wqBhABzmAtg > > // < PUTS 25,378270298632 ; quote ; 4,5856442647414 ; 4,49393137944658 ; 0,0204081632653061 ; 1,8 ; 4,15000805959097 ; 5,02128046989184 ; -1,5 ; 9cFD2F4DEc3b7daED3AaceCcd3Fe6cDAD40fAdeBb2DBDDf93bBBb2f9405F92Ef ; < J4gIo55O4276940XLjwj30612nD0KQa6I70o50N22vsw8tS7Lw8jHJ5GzWYdX207 > > // < PUTS 27,0701549852074 ; quote ; 5,38840219566191 ; 5,28063415174867 ; 0,0204081632653061 ; 5,7 ; 4,87650398707403 ; 5,90030040424979 ; 6,4 ; CD3BfCA87ca92f17CE1C4Af5fF057a1662bc85cD5acB3C6ffeBFC75f8bdD57fd ; < 31ETRB58ejoN85AP42lhm29ZomtgE1kAZcVI2274Ut6d9TcSqfrCbOG33VgY4m0h > > // < PUTS 28,7620396717829 ; quote ; 6,25181431820796 ; 6,1267780318438 ; 0,0204081632653061 ; 3,1 ; 5,65789195797821 ; 6,84573667843772 ; 6,5 ; F4863cC5DceDE8aDd6b8E2D6AFcaB0823f3E1baFb00c5C34aa2bBBec5cAcAc34 ; < 2G40yud15A06Tg7pN7kPM4j6LV5m3VdgR1j6iEY8ecJ0LwGg7tR7Z1rLAbP03u55 > > // < PUTS 30,4539243583584 ; quote ; 7,17387890484187 ; 7,03040132674503 ; 0,0204081632653061 ; -8,6 ; 6,49236040888189 ; 7,85539740080185 ; 4,8 ; 9f94Ebd7DeeEc3c355c5ebeca8f0ccDAEeAaDC8A02CA0FD33f6498ee84240fDB ; < ecPi8a7H9YM4VQa62B4w0iAaf0JHciZ81iLWRGG2CHn5b92pN7OZ77PXlbwk81Fu > > // < PUTS 32,1458090449338 ; quote ; 8,15255832583608 ; 7,98950715931936 ; 0,0204081632653061 ; 1,1 ; 7,37806528488165 ; 8,92705136679051 ; -6,7 ; Aa92DF28111edEc3bea1c1Ad0A3A6CA2fE6F06FACA9DC3CbFAecfCb6d3A1aeE8 ; < Sbg0j92tIwErNJIrxDW1H9LaLz9BcW5Ajq8mRVsZlrQOEDU0L40K884PMEze7qBY > > // < PUTS 33,8376937315093 ; quote ; 9,18580883549939 ; 9,0020926587894 ; 0,0204081632653061 ; 2,5 ; 8,31315699612695 ; 10,0584606748718 ; -3,6 ; 4feb63c6de67E76facB44a8CbCFa0Dd2202A9dEDFAcbF2eb98c6a3f1cACAae30 ; < qyCi4HW6o37eigIF5Ga637D1HQA8QG2i9qmG44CYGjE4wrxje7w8hDvEiRvpcHTv > > // < PUTS 35,5295784180847 ; quote ; 10,2716027878358 ; 10,0661707320791 ; 0,0204081632653061 ; -6,7 ; 9,29580052299143 ; 11,2474050526802 ; 2,4 ; be214ADbA5Ca8C28bADc7Add6dfbb4194cE6ea5E37aD42FdB37e2321CD1abB3e ; < 1f609EuYvscgpSOWEK6228Y6x931xKsSYKnzM2jKgkd1z5v96I78eKDK6oYNyE30 > > // < PUTS 37,2214631046602 ; quote ; 11,407945019563 ; 11,1797861191718 ; 0,0204081632653061 ; 2 ; 10,3241902427045 ; 12,4916997964215 ; 2,8 ; BfdF5F826b54C09f634B801BC5cC9A5BAbDEed6FfFd353FDDF123F7ED288B1f4 ; < R7W0gC0pWH3GPxqn67JaG0N4DI9mfepPhP747zzyR7P8r5Y2exwUoldmjJhE3mv8 > > // < PUTS 38,9133477912357 ; quote ; 12,5928847369413 ; 12,3410270422025 ; 0,0204081632653061 ; -3,2 ; 11,3965606869319 ; 13,7892087869507 ; -5,7 ; c212DdE1Dafe3E7FBee6A6d1ECF554ABEB252ecea6cBbEcFe2233AdadA9b21Ca ; < l7Sw5sg4Q41XHpi1n77IT15vr01jTu4UTYy97qJ4sXKrU33113AV1Na1rQHqyhC2 > > // < PUTS 40,6052324778111 ; quote ; 13,8245239366464 ; 13,5480334579135 ; 0,0204081632653061 ; 3,7 ; 12,511194162665 ; 15,1378537106279 ; -3,2 ; 0a9DcfE7cFcCBd7ECfc42Ed21ff1dF492a013BAd95ECFfbacF04784ff9ee6857 ; < k2Au56m5yOXdK746AN49SOwF0r7ScdZ9w64H6a85Y2831dyxN706xUZYu6BVA76e > > // < PUTS 42,2971171643866 ; quote ; 15,101023156871 ; 14,7990026937336 ; 0,0204081632653061 ; 7,6 ; 13,6664259569683 ; 16,5356203567738 ; 7,5 ; 071eba9DEdDfC18A1df7D7ebF4E980b9B6A59EFECF6B4238d277d32eAEc4dac2 ; < 6szX2oet3p7RUrx2aMkz680mbsyrZMrt4u1971yA9m31COZ82LVHla61j6DQZb8h > > // < PUTS 43,9890018509621 ; quote ; 16,4206051754666 ; 16,0921930719573 ; 0,0204081632653061 ; 3 ; 14,8606476837973 ; 17,9805626671359 ; 8,8 ; Dde17a7C02fdfEb3Ae6DB3DBED9EDFb6EeEaaAb3DCBC4CFcF808AdaD9DFc0EDC ; < SQ7eQtUuZ8gwyEWvib2WkMhS7Qvdqg01d8dW8u45i809SO6lw7ryhOdQeNV4P35B > > // < PUTS 45,6808865375375 ; quote ; 17,7815571340423 ; 17,4259259913614 ; 0,0204081632653061 ; 3,8 ; 16,0923092063083 ; 19,4708050617763 ; -0,8 ; CdBcFDB9BbB2ecEfDE0ecCbaaDA29c03dD8426179e7B6C542Cbe7Aec10bAabeC ; < K5A0m1ez8uDS3ehcdo3049QiHUID5aG7Ku1h54LjQG5xK0YhIFsrvoOv5qQwlvx7 > > // < PUTS 47,372771224113 ; quote ; 19,1822314605867 ; 18,7985868313749 ; 0,0204081632653061 ; 7,7 ; 17,3599194718309 ; 21,0045434493424 ; 1,9 ; CBAa1E1BA0b04dfbA5Da9cFbFEeF9eED8FDCA6cdAcBf4faCF3BaFfad00cD8c0c ; < swMk1Pq303nT15fpYDvJKaSz06k56flMzKxzONibNK8qyBzWff0U6MF6ihi4iYhl > > // < PUTS 49,0646559106885 ; quote ; 20,6210458808969 ; 20,208624963279 ; 0,0204081632653061 ; -3,7 ; 18,6620465222117 ; 22,5800452395821 ; -0,4 ; F0cdd38fEaFaC2b5fDdd26fbAb5AE9e275F6f4Dc7F9a2Ad169F3BeBacEF01bd2 ; < ny2I4YAfd06jH4Z3b9JSCxtpU5glo5CCqGbZu5bGnZqW0g3AUwycv4InkHfp5oVM > > // < PUTS 50,7565405972639 ; quote ; 22,096482745235 ; 21,6545530903303 ; 0,0204081632653061 ; 0,4 ; 19,9973168844377 ; 24,1956486060324 ; -4 ; c0D2CDDd9CAFfCFa0a87c9beabFDaDf0D3FEE3eC25ffdfBd873baDcBfADcCD2E ; < lyVVMqPPD4RROqCKs4X1gNxs7zH1AWqx236Dk5bgQrK9eKnuJW0Txy1cqs0WxC1u > > // Futures_Eurosibenergo_Engineering_LLC // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 56,013199 ; 1,14 ; 48,1343850877193 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; 5B0BfAe25CfeA3bebcB726b7f677cCBBe440F58421ADC5eF3ea2e0ac540DAb8c ; < xA81vJ17bZoX4ynr8LS9dqi4RYAVOGH6EWj883Vw4tS8Gg0fY4nvm7Z1heURz9sY > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 56,0142756738532 ; 1,14002508 ; 48,1342485849988 ; 56,0140256738532 ; 56,0145256738532 ; -4,7 ; -7 ; 7,6 ; 6 ; -1,5 ; 5,4 ; 0,16 ; Future69AP19 ; aB3EB8B06CBFCaCe5CcE202d10D7bDAeaF8EbCB7BCcead0f9Bf56A3F7ccdfdFC ; < ot42W1dd2UmuZHeZf8PD12FiZR6bi9Kv44q42NnjYKCTw5H13NB9Fccf0jsaKJUa > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 56,6207834187429 ; 1,15383235592122 ; 48,0719324416385 ; 56,6205334187429 ; 56,6210334187429 ; 1,8 ; -4,3 ; -1,3 ; 7,6 ; -6 ; -7,2 ; 0,68 ; FutureJU1916 ; Cad63B8bAa1fEC0deFacAfD2aCFAAE4F913F836fc3Cb5bB2dcde2DA46fb2daAf ; < uTw1H3eANwYaeXvCTru25t94h91qfq6ZxE2BaPJ7k081jZ2ItBH3iI8waX6K4KFj > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 57,2813462028584 ; 1,18203756547107 ; 47,4598356906114 ; 57,2810962028584 ; 57,2815962028584 ; -9 ; -2 ; -1,6 ; -2,2 ; -0,7 ; 5,4 ; 0,05 ; FutureAU1992 ; 50bE1CADadCbede9fdDDAc0e027F37ffDBbC93f1C2E3ad96AE6eacAeFEaaAd8B ; < OY3a2e47PyNBs6qMoAC2D6UkvR27C2x8D94uh97u91l67av8zzixroY6aa94fZ4O > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 57,9605451626703 ; 1,22544797504721 ; 46,2974343610447 ; 57,9602951626703 ; 57,9607951626703 ; 1,9 ; 0,8 ; -4,2 ; 2,2 ; 6 ; -6,6 ; -0,54 ; FutureOC1924 ; Ca0EdBF9cdDaEBE63Cd2d7bBe1dCd8F153bA8eCbCCddfBaAaa7Ec8CFb43D02Fd ; < FsDfN85Jo8Z8BIB6RLCBbS6qv812L265fwi4k85dxIE694OC36wEvdTUds497V6P > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 58,6734376270658 ; 1,2859152117272 ; 44,627765417175 ; 58,6731876270658 ; 58,6736876270658 ; 6,8 ; -2,7 ; 8,7 ; -6,5 ; -4,9 ; 8,8 ; -0,38 ; FutureDE1995 ; DB04BaeaAFE1Bbedaeac0baF90FdE6D1706FeccEdbBCC38d27Bf5bCd5Cf38ae1 ; < r1UbuKOsqBJ7HygpDfVGzBewPB63e4RAgO1wr11G5zai3WH08FT7p1bNCBbK8Jgg > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 59,4381293097846 ; 1,36575682087586 ; 42,5202873610157 ; 59,4378793097846 ; 59,4383793097846 ; 5,8 ; 0,5 ; -3,9 ; -6,8 ; -6,5 ; 4,2 ; -0,77 ; FutureFE2094 ; CBCeb98d4CD69dBAC27EfEFd4cC23dbD015eF0E7bfE3A31dFA6cAeDD7BfC23BB ; < 2v29HM24w5Z5Vm29Q2CZ2Q6SQ491B3YIMG3KQ3Z0Cv2Y936Jx36pjG50H920U4Q6 > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 60,216541479358 ; 1,46824594422802 ; 40,0125713039301 ; 60,216291479358 ; 60,216791479358 ; 9,2 ; 1,9 ; -0,4 ; 9,6 ; 9,9 ; -6,6 ; 0,67 ; FutureAP2023 ; DdeF91E89cdD82cc4c5fBcF07EeF9090C2c7b5d46E8da01dF6FAc2cb8DeECb6d ; < qs8Z7GaA7EHRV4t46hW68PNWgq6um9A831p6m4UOu0Zj6183R6Bk8TRIasxM2475 > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 61,0159387067991 ; 1,59751157621794 ; 37,1943640441419 ; 61,0156887067991 ; 61,0161887067991 ; -4,7 ; -6,5 ; 6,2 ; -5,7 ; -2,9 ; -1,2 ; -0,24 ; FutureJU2061 ; EbFabBAa1F1eFbCE4085cCFd5cDBB0D8EaeAEFaB8EE696bbBCfc0cfec85C7EbD ; < 38qOm1Rj00SX0I8370eYnOyd6fG0KTfGhG5130Lb33Q393c9v7n5Yn89W38ANkDb > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 61,9238665771775 ; 1,75915545405886 ; 34,2009064544592 ; 61,9236165771775 ; 61,9241165771775 ; -5,6 ; -8,1 ; -8,5 ; -6,6 ; 6,3 ; 9,6 ; 0,53 ; FutureAU2034 ; bdAccBBAaAF1ADFfABDd3BcfD9EC3AcaFc33AD0BDfDEBD64aEADcde6ABBBb5e9 ; < yv0zP552gx110qQLtlVcmqmAK6111ycltPZ8WBNcS4Jnw4HDkdYyY2KvO1qkgB4U > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 62,78621593597 ; 1,96058882074028 ; 31,024162981947 ; 62,78596593597 ; 62,78646593597 ; 0,3 ; -5,6 ; -8,2 ; -6,9 ; 7,8 ; -7 ; 0,3 ; FutureOC2017 ; 58EE675E1dDCBAEFAacb04cABddBd9b6977DFfB0fE7EEf8FA0FCeAbD0fE6fFFA ; < jSD5Sqh5l5zsR86st8rAaliQ3jfhudac8x8iEJE3iQo0n0J1gSd18tB7Cc928sch > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 63,7030891371721 ; 2,21189628703202 ; 27,8002152319043 ; 63,7028391371721 ; 63,7033391371721 ; 5,5 ; -2 ; 9,6 ; -5,7 ; -8,1 ; -3 ; 0,89 ; FutureDE2097 ; DFb9FA0Ba3dB2c728EAcFf3E16bCEe75FBedFac75AfD36CC05cAFEAeAA05E31D ; < 9De8Q7ph95F309yV7G7UY801jCVR195wRm26guuuoMty0084bt06llawqcO27Y3h > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 64,7915207025541 ; 2,52553289687528 ; 24,6545938414493 ; 64,7912707025541 ; 64,7917707025541 ; -2,9 ; 7,1 ; -3,7 ; -4 ; 3,3 ; -1,3 ; -0,29 ; FutureFE2115 ; bFFA1Db6DFABFda5fCe5e9B66Aa7EbdDDCFDF4aD6a4FE4911E2D27BFDEBccBEA ; < 8gNsS29seNm1LLR3Re07u6X1uLR80VZa7iwg9v69JRy11P1WUp2qk26MGf1Khn8L > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 65,7548585984965 ; 2,91831892619471 ; 21,5317589548845 ; 65,7546085984965 ; 65,7551085984965 ; -6,2 ; 9,2 ; 2,9 ; -3,5 ; -7,1 ; -7,4 ; 0,24 ; FutureAP2173 ; fbb7e08dBD49fbEd0CcDecd59bD1a6b4E7aa84bAF1FC9F4EAD7E8c47BEEfD907 ; < 25ju9HPEgKUHu09M84cZ7MpIs4C8T3749c6zY1z9ZFJvWK9AMW4YSrb6JUA57dL6 > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 66,9115817811158 ; 3,4131419242205 ; 18,6041018119683 ; 66,9113317811158 ; 66,9118317811158 ; 5,2 ; 1,5 ; -7,1 ; 0,9 ; -7,9 ; 3,4 ; 0,22 ; FutureJU2129 ; aB0F6D6FC3feF0FCCdED34AdEABAAEcAcffdcDbd3EB7d50AEB8362Fe38Cec3df ; < qxiJYNpFmCOjjw13nE8X55h026lZ7URORW4hibE8E6s0qaoFZod05Gp5EdbcV1R1 > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 67,9016434280286 ; 4,04031708527713 ; 15,8060184373799 ; 67,9013934280286 ; 67,9018934280286 ; -0,7 ; 7 ; -2,9 ; -1,7 ; 4,5 ; 9,5 ; 0,62 ; FutureAU2184 ; efD0efBFBBC66dd4BfB2edebC1A33DBDFBe66fFbbdb81FFcee8fA0faCeecb4F7 ; < zuJ2EsMlzkEfKdtttURqj307wkvEF5s740iy2640Hnj7Oe78omZ0Fk6imOzy2HYj > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 69,0396912554752 ; 4,84108167738436 ; 13,2612118233827 ; 69,0394412554752 ; 69,0399412554752 ; -7,7 ; -5,2 ; 3,3 ; -5,7 ; 4,2 ; -5 ; 0,71 ; FutureOC2145 ; e83D32EB95b37F6f7EfbCCacDFA2E5cA5D88FA7e008C545DFf5D5b2eCF09bBDE ; < lN9oPpMHwvb6V51TCrLhk0WQZ0603ktKvCKPg1Ss1FoaghLo7t4EHh5Bj866oiCL > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 70,3518564677732 ; 5,87046535365781 ; 10,9840340125571 ; 70,3516064677733 ; 70,3521064677732 ; 1,7 ; 5,7 ; -5,7 ; -5,4 ; 5,3 ; 8,3 ; 0,12 ; FutureDE2157 ; C609dB9cDCfD5923Bdc1f5EfFbCBA8A450CaAb8CAdCBefBe8E0CececBEEa9Ad6 ; < BcHlQ9Q67jp75Hwpx4CUa2SxGwR6eb3Hg7U1r7n74tMrWhHN13tjpR8BvEU3ceaF > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 71,5621121169179 ; 7,20557825655558 ; 8,93148774032274 ; 71,5618621169179 ; 71,5623621169179 ; 9 ; -9,3 ; 9,4 ; -6,5 ; 8,1 ; -4 ; -0,31 ; FutureFE2244 ; B7ca61eBd55ee19bCeeCDE230C2ab3fAFC5EeCad6A3Dcdac44CADABFDAaa0F45 ; < 2w686sLl2Ca2h2eGB8tc3cNXf52ByH4TSntvs7X5MLuLGgH16c0sa1Mf6LzA62lp > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 72,8001434569046 ; 8,95140250048264 ; 7,13281979589001 ; 72,7998934569046 ; 72,8003934569046 ; -9 ; -1,6 ; -8,1 ; -1,2 ; 7 ; 4 ; 0,85 ; FutureAP2246 ; E6CBebFcddAbbB5dBBE9Ffd3DC20Eaf7ccD3487D7cfCcAe8DCEE9cfbb0c7ce23 ; < MUTLY91dg2EUYUB5wns9typUH6bVgUA9w02dy73fDCWDOuYatH6z7CL8X32q6l47 > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 74,1837445948671 ; 11,2550946104042 ; 5,59112581126519 ; 74,1834945948671 ; 74,1839945948671 ; 0,1 ; -4,7 ; -1 ; 8,5 ; 4,1 ; 8,6 ; -0,3 ; FutureJU2229 ; 1d0CCE55888D5dC8ffe4caF8BFFF9eaA05AABFfCBdAD7BEEaedebbdE8fF42ecd ; < 3T0oSj5uSxd2Sm3GgB4EmS5H0w9TMyHi6mdN25SP4OD4HyHCiF8Q2W0J1iW3lJgY > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 75,8870005898446 ; 14,3239501178437 ; 4,2979101410937 ; 75,8867505898446 ; 75,8872505898446 ; -1,2 ; 4,9 ; -8,4 ; -3,1 ; 8,1 ; -2,8 ; 0,24 ; FutureAU2240 ; DfDf7Ba5EA0a9C4ab238EF389a02Ca1DC23BEDbFbbE20ECEEbdfDeE62fbd16B8 ; < 88Ia4h5W7vVFdGRrQr7imiMjCQbMey57m0ko26s5kKT84dH6LcsQWm9njmRwFF7m > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 77,2705322507099 ; 18,4509209981858 ; 3,18789567514314 ; 77,2702822507099 ; 77,2707822507099 ; -4 ; -4,9 ; -1,8 ; -2,5 ; -8,6 ; -5,6 ; 0,9 ; FutureOC2238 ; D3cEc0bfCEE1E65CAbbDfF8bFdE2fC55bADcfBB5e4dbFF6eBaebBcdCB9DE0DD2 ; < 7gE182877W1k2ku9WyQvU9vSjv2whMARUo3VXvRgx5VLL9N7X50XZaatlU2a0h75 > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 78,8466753143467 ; 24,0540429172418 ; 2,27789700823348 ; 78,8464253143467 ; 78,8469253143467 ; 6,6 ; 6 ; -7 ; -0,5 ; -5,1 ; -9,5 ; 0,03 ; FutureDE2299 ; a71E0Fa6f8E5aDf0Bc8E0D1cBFBa6aEada3CC7ffb095Fcff5bDA1BFCf08079d9 ; < kX771lgr0Kew5t6uzI846s61fF8tz5mO0e935D1k2Xh8I4xRcKsr4ygc842B5k16 > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 80,2775306779822 ; 31,7368503971352 ; 1,52947377176497 ; 80,2772806779822 ; 80,2777806779822 ; 4,4 ; -0,5 ; 3,4 ; -2,5 ; -4,3 ; -8,7 ; -0,23 ; FutureFE2334 ; 621eAeb64EDDfA19a988Bac5BEEfFcd2cFCCFcEaEE8C3f1BBBB3ecA4bEae25F3 ; < opbEO62FRw4ang18s138h0MCrKW2C2VVa0RMLM8stL9G0Y2yF65Zq72DD68DPiHm > > // < CALLS ; 1Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 30,108270739679 ; quote ; 53,6714134246759 ; 52,5979851561824 ; 0,0204081632653061 ; -3,9 ; 49,6460574178253 ; 57,6967694315266 ; -4,2 ; 1cE3E64AccBF761762708DbBfBAfAdd3aDcc66DbdE2cAdcFfdFbaFdBAef10e5A ; < qDs5A35Jb4D5XOK4JMVWaRAh1neikZI923lpbEtp97T5Xros41B2449owCMVIS5o > > // < CALLS 33,1190978136469 ; quote ; 49,1194092921563 ; 48,1370211063132 ; 0,0204081632653061 ; 4,5 ; 45,4354535952446 ; 52,803364989068 ; 5,5 ; 5bBd8dad2Fabfa9Ea9bDf7BBCfaFD7fb9Fb84Cff57dC2F4B5e4d364dFAA53DEC ; < 1VM8OCv5Pze4C9cGJdU31w0VEWK80hrNPnV79o8IRlqntY4Lr6e54WXd4P1iL0oO > > // < CALLS 36,1299248876148 ; quote ; 44,6476691224842 ; 43,7547157400345 ; 0,0204081632653061 ; -7,6 ; 41,2990939382979 ; 47,9962443066705 ; -6,2 ; B8FEAdCAbFD6adecEeECb5f22bA6FeFfE5bE94fAB4bf128cDe3DBC73DefBBab0 ; < 97oTfZBsD5A22L7NX2b9KT23ZJ9g6kkSwvrzry24ua5pMD9ZuG6Db9Up9J8Q715j > > // < CALLS 39,1407519615827 ; quote ; 40,2955533564589 ; 39,4896422893297 ; 0,0204081632653061 ; 5,6 ; 37,2733868547244 ; 43,3177198581933 ; -4,4 ; DA77EfacFC85aC5E09c7AccDaabD3a6ABBc0Bca28F7cD7A84d69cB7ccAFcAc1e ; < 7gp49r8vHXlGDAN606v5o36fhlwkPX43Tsq4bo4Z4DJiSOmr5QEOCAPb24UiDYsS > > // < CALLS 42,1515790355506 ; quote ; 36,1055124059439 ; 35,383402157825 ; 0,0204081632653061 ; 2,6 ; 33,3975989754981 ; 38,8134258363897 ; -1,8 ; 219bAaBEBBbf3F2Ad60C7DCDD4fedFDC397bd6DfdFcCdf1fBd2bf8FCb32E8FCD ; < 6i5cp222934u1d577mX3p7yCU3uM67M088N2n76Su7cKh580pzCbz48EQbB8gWM7 > > // < CALLS 45,1624061095185 ; quote ; 32,1187612069275 ; 31,4763859827889 ; 0,0204081632653061 ; 4,6 ; 29,7098541164079 ; 34,527668297447 ; 6,2 ; Bbeb9D099EA032eBBA5E1dd6bBC0e05bA8b54dbDc3fEFbBBA9dFDBf3caEcaDB4 ; < 2P0uszc31l3K2ytD0YM6r5dH1ah8VdD90b6zE834VKfh37W46WhpRrg09GsC39aa > > // < CALLS 48,1732331834864 ; quote ; 28,37139808825 ; 27,803970126485 ; 0,0204081632653061 ; -2,7 ; 26,2435432316312 ; 30,4992529448687 ; 5,6 ; EaFD4CC0edBAC40E86aAFD5b0bcdc2BAd7e397Befa8E4e65aD9CEE7E0BD6D3aa ; < GvBv6hFZ842VmBdjYu662YR7hVAXi2R60pz8A84b6B7SR7UGwK3P2ReVto9GXK8V > > // < CALLS 51,1840602574543 ; quote ; 24,8915992243272 ; 24,3937672398406 ; 0,0204081632653061 ; -6,1 ; 23,0247292825026 ; 26,7584691661517 ; 9,6 ; baDd059166ADaDC5FA6FAbFD5d8CdCbE2c5026b1BD6EFAeFE7Ef0Ff3c1aDDeaE ; < QQie1M6l8Tw46n0EqVpf5VFCnUKZc6cYk6poy49EoMdytquL5VI6dnkLrOcnUCup > > // < CALLS 54,1948873314222 ; quote ; 21,6981222819644 ; 21,2641598363251 ; 0,0204081632653061 ; 0,3 ; 20,0707631108171 ; 23,3254814531117 ; -3,6 ; 4f5deB80EA988feFbD0abF1A7dEAecbdbfecF521dfBFedBa5ABBdD2Ef2F0aBF5 ; < 78a1T3N6u0AqIG2N3FizX3M8O8rD4MCFw32yuvsB2zq6BacL5dH5QQ9Za8IPz528 > > // < CALLS 57,2057144053901 ; quote ; 18,8000367010218 ; 18,4240359670014 ; 0,0204081632653061 ; 4,4 ; 17,3900339484452 ; 20,2100394535985 ; 5,6 ; d1bf9D3BEDEddFAbd61f4fbAbDF1edEab4DA1c8d96afdd1FaCfE47CB0eEAA1ec ; < YBY09WUpNq5qBs1VpN1sCK6019W6jw02gdSrxcrxOnL3y0QD93P6v6vl628T3S57 > > // < CALLS 60,216541479358 ; quote ; 16,1974130106331 ; 15,8734647504204 ; 0,0204081632653061 ; -5,8 ; 14,9826070348356 ; 17,4122189864306 ; -0,9 ; 7cDEfD2e03e97beb2d736cfDDEebF414AC7eCFdDeCaEd8eD6a8faEeE427e71CC ; < 929yL21qm0i35x5WUg3SySA1q1SkATbGb6or7x0YMf28D1yCEAhijmGfGRlz7bUj > > // < CALLS 63,2273685533259 ; quote ; 13,8826388518815 ; 13,6049860748439 ; 0,0204081632653061 ; 7,4 ; 12,8414409379904 ; 14,9238367657727 ; -0,9 ; CCbe6FfEcf3dBa943Ced318EE6eaea2Cabad7fcfDcDCed6DFb15CE4eAafE834e ; < 4b92g2kRZRA2JPSSbio8Pd0wZXVXy39EGDnVVtjP3OvUk9a1A9T4Ir3V3ZPK3NTh > > // < CALLS 66,2381956272938 ; quote ; 11,8420480713358 ; 11,605207109909 ; 0,0204081632653061 ; -3,3 ; 10,9538944659856 ; 12,7302016766859 ; -4,6 ; 48D1431DD07DacD2EEeFc9A8E7Cecf26fba056E585a0BaEd7490EcFC3a22Fc5e ; < pTK1ZIMlvVrZ5pQ8sAF5LWS9IHv0n9qBktPDNQ8y6K9USsF856Q63eX2w52c6rtp > > // < CALLS 69,2490227012617 ; quote ; 10,0576120973883 ; 9,85645985544054 ; 0,0204081632653061 ; 2,8 ; 9,30329119008418 ; 10,8119330046924 ; 4,2 ; ddFfCAC4fF1A2CFdCFBF5E7bEDaB28eaEAD7BfC37e9cFc38421Bd7A396DbDFef ; < uKhx6m38hniLHLdUC66ZScneo3c428GKWkft931UZ58pcf7411K515D48jWR9KXM > > // < CALLS 72,2598497752296 ; quote ; 8,50851942129926 ; 8,33834903287327 ; 0,0204081632653061 ; -5,7 ; 7,87038046470181 ; 9,1466583778967 ; 5,1 ; 41ad9661F1eF6ebc8eaAe468B4E64Ce3f7FAAefBeacfbc9b7a11C872b068A1d1 ; < 0L7qLpS9t46odUYz19M3H6UELgC9jnz8Cesv7Sr5Xm50Wdk1Wjy6s8w7Swc6ci7z > > // < CALLS 75,2706768491975 ; quote ; 7,17254050243703 ; 7,02908969238829 ; 0,0204081632653061 ; -6,9 ; 6,63459996475425 ; 7,71048104011981 ; -6,1 ; 06bBBAAC4bB0cdAd94cd2A17beEbCDa2dFadFda2ca62AFfCceD734b8ECbfBB1A ; < QcsFcoAsdBjM1f1FCoR4npVr7moNrxKfAMZ29V597ZwL4a50PNBYO5GNcf6iI708 > > // < CALLS 78,2815039231654 ; quote ; 6,02713272602194 ; 5,9065900715015 ; 0,0204081632653061 ; -0,4 ; 5,57509777157029 ; 6,47916768047358 ; 0,1 ; 5FDBdEf2F9efEaefaDc9d64AeCDbAAd4ccCF4a69bb49A6aDEDDff2A7BC3ac1D8 ; < N1ILJ4QNhL8LwDDIgry268FlZB4KCjw7N9HF7nxL3oanTfZH44IRiN5atu414qy7 > > // < CALLS 81,2923309971333 ; quote ; 5,05028078983101 ; 4,94927517403439 ; 0,0204081632653061 ; 8,2 ; 4,67150973059368 ; 5,42905184906834 ; -6,2 ; 8E293AEBfbAB21DAEbdBdfdADAa4Ca5CB5bB96fb066e32efCB3d8502265bdeE7 ; < 400El3I2nOnS0iBXF1bmSDbOD69YQ8zuL1SGI7isSPOn42m8Tm7At6mkG4lbb2Is > > // < CALLS 84,3031580711012 ; quote ; 4,22109351113971 ; 4,13667164091692 ; 0,0204081632653061 ; -6,3 ; 3,90451149780423 ; 4,53767552447519 ; -8,7 ; bF103Adfd75c4f4bCaEDBAdb7Bd890b1ccA6fF4a357bdcDeFB5F42adBa6f3DA5 ; < k8Ri5T26g9N0vL94z5tEGaSko2EEx691YV1N7n4r3bB43p0jeb906qzKf36XEHBD > > // < CALLS 87,3139851450691 ; quote ; 3,52019161191621 ; 3,44978777967789 ; 0,0204081632653061 ; -8,7 ; 3,2561772410225 ; 3,78420598280993 ; 3,9 ; FeFBaaAe0E770CeEbfced8ef5CDBa06CdC0EDa0bfe208dEDcbecEAfF38884A1E ; < 942w1wr1T6lEv7hwg63578a20nzhDdW4VtpEe63NzP3KiwzjmUdfAa0z8x6zS6Qk > > // < CALLS 90,324812219037 ; quote ; 2,92992596859076 ; 2,87132744921894 ; 0,0204081632653061 ; -5,1 ; 2,71018152094645 ; 3,14967041623507 ; -9,2 ; b5BFbBca96bbcBb1aa1D8fEbBdc0BFFebf2abDCb5BA24Db919eEB8DcdBEac9Ed ; < W7d44bKD8X5d5H9NWDZ376GzzRrqj1rq67C9a3T3xEOF2Hj7RLeUFbxnr0NCofmq > > // // < PUTS ; 1Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 30,108270739679 ; quote ; 0,0585877411035796 ; 0,057415986281508 ; 0,0204081632653061 ; 7,9 ; 0,0541936605208111 ; 0,062981821686348 ; -9,7 ; FBfdeB5f7dA255fE1fc0BeD4E7Cba7BcD7f1DaDAD40c2F1E9aea4d7DB275DDE8 ; < qNM9Qx53kKIt5efvBOe57mCB2z90a3p9T7M2T1cs2Gh9d3p3LNHa80E5eMLSCom2 > > // < PUTS 33,1190978136469 ; quote ; 0,145301040226713 ; 0,142395019422178 ; 0,0204081632653061 ; -4,7 ; 0,134403462209709 ; 0,156198618243716 ; -8,3 ; E37AFbFff84BdCDFbF69a19715BEb36A1cDE0842D0AC4E2A8e3FA0Dbeb7bA0E8 ; < 0PHWD5tHd73QTwA7W28363T0iS80e0rhQqZ3E90C466hiRCo702894c2WPYUAQ0t > > // < PUTS 36,1299248876148 ; quote ; 0,312278302197384 ; 0,306032736153437 ; 0,0204081632653061 ; -1,9 ; 0,288857429532581 ; 0,335699174862188 ; 2,8 ; fc6aB0E16eAedeFdb1CDdD9ead786baAEEcB7F6baD5A24Ad80afAA319EC6DCef ; < F697Yg22VKcnBG05FH2Emi0TQC1r11qKe378gsUcMPT8ga7E86VV284aEU09Bcbd > > // < PUTS 39,1407519615827 ; quote ; 0,598879967814781 ; 0,586902368458486 ; 0,0204081632653061 ; 1,8 ; 0,553963970228673 ; 0,64379596540089 ; -6,2 ; bfe3fc6C8ED1d5acd5dfCadDacDccEaeADaCADDADFfBce2E2Bb1cE83ECfAfa7b ; < BlP28Nn00X9wswEW9K9gv967xR2RAhm1LGowOpKmfLZVeO7w3y7VUwmx0dO28Jp9 > > // < PUTS 42,1515790355506 ; quote ; 1,0475564489426 ; 1,02660531996375 ; 0,0204081632653061 ; 2,1 ; 0,968989715271906 ; 1,1261231826133 ; -0,8 ; d2FfAeBc5fb5f6dDe2cb5Fc6c9545DE8FbCfbcfdd9B3AbeEBCbA042EaAfBdacf ; < 1TnnlUYsudWt94uB288rcszWh6654LD8Vzq25YA7xT9b64dk2Q4jRWHIgln74V43 > > // < PUTS 45,1624061095185 ; quote ; 1,69952268156894 ; 1,66553222793756 ; 0,0204081632653061 ; -4,6 ; 1,57205848045127 ; 1,82698688268661 ; 8,6 ; aacBa6315a6CF3bE2c0B7f9EbBBd8b4CfDdAb455a10dFE461aC703c86Abf9ae4 ; < 2b9kF7GOHo8mS9g96LpQHd9n47DjoIheedV2kuQ5a5z1AfS9ANUkRG5335sh3sY4 > > // < PUTS 48,1732331834864 ; quote ; 2,59087699453423 ; 2,53905945464354 ; 0,0204081632653061 ; -0,6 ; 2,39656121994416 ; 2,78519276912429 ; 6,4 ; 81CDa0a3A2c9E9bBB4F3da2b88aE2fdcCFD6a4Cffff1aF9C1Ffb4BaEFEBce9Ef ; < ye0zOXtl4Y3BxJjuSzrio8Fg5uV2qEEmn4qK7YufyHylmn5m5C5ThEv49m3s1ZYB > > // < PUTS 51,1840602574543 ; quote ; 3,74979556225416 ; 3,67479965100908 ; 0,0204081632653061 ; -9,5 ; 3,4685608950851 ; 4,03103022942323 ; 3 ; ED90DCeEd3EA91f9FacdbCEc2DEeeDD2d0f7Ef42aDFCBF2eD4dcEF6AB5DCbD0A ; < Yuwwgoc4f80enEM1R7fT1G2lr7yD0Z41UWwP6x73pSqSU39Xt0791Z03QsB8mdMS > > // < PUTS 54,1948873314222 ; quote ; 5,19503605153417 ; 5,09113533050349 ; 0,0204081632653061 ; 5,9 ; 4,80540834766911 ; 5,58466375539924 ; 1,9 ; f5fF21Ef4DfABDb7aEeeFf38956eAa6ce5Fd1d569BbF9ff5cfC00fEAcCAe22Ce ; < M6y1MWNPk692pBoM2ejZWHXF48xk7Kj0H84FF6R4DXzzeRCtD5N8dHFN8db8qvOY > > // < PUTS 57,2057144053901 ; quote ; 6,93566790223434 ; 6,79695454418966 ; 0,0204081632653061 ; 0,2 ; 6,41549280956677 ; 7,45584299490192 ; -7,2 ; FA5b9aFc98Fca1dD0Dc1C2BfbEE821dbCCcFe4EA2EDfcAE2bDdee61C1C16eEeb ; < gps2394NYM3PjOHgzs7gxuHnV0n3afcHLRd951LL42854W7lW640X58f5haN80j1 > > // < PUTS 60,216541479358 ; quote ; 8,97176164348836 ; 8,7923264106186 ; 0,0204081632653061 ; 1,3 ; 8,29887952022674 ; 9,64464376674999 ; -5,9 ; da356d2d7e85DCEBD0FAcfA35dEeff5CBdFcdd4F8EAaDc7E6BFaf2FD32bdDb08 ; < 5Ct57K2QGkB7iZ8ch1ebFy3lImodn56m3Ej82E9e0g96Rs4rvc3Y378z1RC42A08 > > // < PUTS 63,2273685533259 ; quote ; 11,2957049163796 ; 11,069790818052 ; 0,0204081632653061 ; -1,4 ; 10,4485270476511 ; 12,1428827851081 ; -3,5 ; d1457EEbDDD78AcAFa69CCaDF70d5DDAFE5027FDd919DedEBdfF3ECCfab62d65 ; < rfdtYS9NC0XEnuBjjRhu55cfKV7fhUoC8LQxwwzJ9oI854w9oz7a8msDl0bjyPuJ > > // < PUTS 66,2381956272938 ; quote ; 13,8938315674766 ; 13,6159549361271 ; 0,0204081632653061 ; 4,1 ; 12,8517941999158 ; 14,9358689350373 ; -6,3 ; 254Ea8DDEDA2dFcDAfFBc5F6dE6c5ea5E2a151Cef0B0A4C9EBdD8dDcE32eEb55 ; < 2E014GIJd920cC0xFfGck0E4g6K19NQNtvIJ3P0Be1o16e3oUv905FTFZCU2SNgB > > // < PUTS 69,2490227012617 ; quote ; 16,7481130251719 ; 16,4131507646684 ; 0,0204081632653061 ; 9,7 ; 15,492004548284 ; 18,0042215020598 ; -6 ; 3Dc8ebAFEdc25BAa5A5adefF6a916EDCBcFcA75fc461bF4b5Be4EB68BaDAdadA ; < U58p82mojWqbeS51gw1r7n671d3kHB1pkKFNNx5pPcK05XJy555pE98NM4dt5QiX > > // < PUTS 72,2598497752296 ; quote ; 19,8377377807256 ; 19,4409830251111 ; 0,0204081632653061 ; 5,8 ; 18,3499074471712 ; 21,32556811428 ; 4,8 ; cA9ad48e1Ca7eCA2aCD5Be9d4AAbcFC3FAbb8Ceab1BFCB211eDEB3Bc4B6bc47F ; < RU41PhsT8157ohBcgw6h52YowiOd4yD4bMzstrqG89ts6I33044GJc4f12gKxts2 > > // < PUTS 75,2706768491975 ; quote ; 23,1404762935061 ; 22,677666767636 ; 0,0204081632653061 ; 8,4 ; 21,4049405714932 ; 24,8760120155191 ; -8,3 ; BBaaBe3855db18eE9b8B06Ffe2dE1D7C6FEB2dFBccDbf98CCAcEF3CC0EFB6bBb ; < 2jE6DAx9Rj6VNwt39Y9lUPN0NU3kP21jDD3hstiQEXT9Fo7TBDfOoHwyM09bGK8A > > // < PUTS 78,2815039231654 ; quote ; 26,6337859487338 ; 26,1011102297591 ; 0,0204081632653061 ; 6,1 ; 24,6362520025788 ; 28,6313198948888 ; 3,4 ; f8D2B2a9f62De85e6E2CdcFD7dBaadAeA2BDDD89d7DDFFFEDD77Fb1071c7Dae3 ; < APdl48jE2tD7qS6B56khhOSM5l9bUq97EAP5e4y88RIrMVW1K8geoMxbuGPvhdm0 > > // < PUTS 81,2923309971333 ; quote ; 30,2956514441856 ; 29,6897384153019 ; 0,0204081632653061 ; 7,1 ; 28,0234775858717 ; 32,5678253024996 ; 5,8 ; CdabB9eFebBc85aADcAbD358BedAbeEDf06b2DcbDAdfA38BD1fA5ACc4E5D7aaa ; < Vt40V4wC29l01CI3C41ZUpl3KlDmE05rJWBuFCn777J819ZUff281asah5j3V4et > > // < PUTS 84,3031580711012 ; quote ; 34,1051815971371 ; 33,4230779651944 ; 0,0204081632653061 ; -1,5 ; 31,5472929773518 ; 36,6630702169224 ; -7,1 ; EfA6d9A2d1deEA6EbB3CA2Fb92aE7cebDbf02cbAfBEa1Cb3D4fFeffDcC5AAd07 ; < 61F0P7FR9G9i25KzU1dk482M5QiH0xvpmoNPd0Af0N8a5LczQcswbowLZbT6UUTr > > // < PUTS 87,3139851450691 ; quote ; 38,0429971295564 ; 37,2821371869652 ; 0,0204081632653061 ; -1,1 ; 35,1897723448396 ; 40,8962219142731 ; -5,3 ; ec9BFAC1A688cDb0CBaeB60eBBEAD3CDA9bD3Bb5dc409BBcDFFE2ABBFDED7E2b ; < v7LY2Zgbsl7qiJ8qy7W40GmZnv742IrPzyKvHsk6EH4dv4dpUyouI25g5s265KA5 > > // < PUTS 90,324812219037 ; quote ; 42,0914489178737 ; 41,2496199395162 ; 0,0204081632653061 ; -1,8 ; 38,9345902490332 ; 45,2483075867143 ; -2,3 ; eed69fCfe1f7dF2EB7e9a224fBDCfaBdAAbFFf8ea448D1EDBC7edDA8eAAdeaAE ; < T9YvHymaNVtJokvv1RM5HZpogePCnxX7FZyY6U5WuRc2tCr396h7SO8Ww78fc1fz > > // Futures_Eurosibenergo_Engineering_LLC // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 56,013199 ; 1,14 ; 48,1343850877193 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; 5B0BfAe25CfeA3bebcB726b7f677cCBBe440F58421ADC5eF3ea2e0ac540DAb8c ; < xA81vJ17bZoX4ynr8LS9dqi4RYAVOGH6EWj883Vw4tS8Gg0fY4nvm7Z1heURz9sY > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 56,0142756738532 ; 1,14002508 ; 48,1342485849988 ; 56,0140256738532 ; 56,0145256738532 ; -4,7 ; -7 ; 7,6 ; 6 ; -1,5 ; 5,4 ; 0,16 ; Future69AP19 ; aB3EB8B06CBFCaCe5CcE202d10D7bDAeaF8EbCB7BCcead0f9Bf56A3F7ccdfdFC ; < ot42W1dd2UmuZHeZf8PD12FiZR6bi9Kv44q42NnjYKCTw5H13NB9Fccf0jsaKJUa > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 56,6207834187429 ; 1,15383235592122 ; 48,0719324416385 ; 56,6205334187429 ; 56,6210334187429 ; 1,8 ; -4,3 ; -1,3 ; 7,6 ; -6 ; -7,2 ; 0,68 ; FutureJU1916 ; Cad63B8bAa1fEC0deFacAfD2aCFAAE4F913F836fc3Cb5bB2dcde2DA46fb2daAf ; < uTw1H3eANwYaeXvCTru25t94h91qfq6ZxE2BaPJ7k081jZ2ItBH3iI8waX6K4KFj > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 57,2813462028584 ; 1,18203756547107 ; 47,4598356906114 ; 57,2810962028584 ; 57,2815962028584 ; -9 ; -2 ; -1,6 ; -2,2 ; -0,7 ; 5,4 ; 0,05 ; FutureAU1992 ; 50bE1CADadCbede9fdDDAc0e027F37ffDBbC93f1C2E3ad96AE6eacAeFEaaAd8B ; < OY3a2e47PyNBs6qMoAC2D6UkvR27C2x8D94uh97u91l67av8zzixroY6aa94fZ4O > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 57,9605451626703 ; 1,22544797504721 ; 46,2974343610447 ; 57,9602951626703 ; 57,9607951626703 ; 1,9 ; 0,8 ; -4,2 ; 2,2 ; 6 ; -6,6 ; -0,54 ; FutureOC1924 ; Ca0EdBF9cdDaEBE63Cd2d7bBe1dCd8F153bA8eCbCCddfBaAaa7Ec8CFb43D02Fd ; < FsDfN85Jo8Z8BIB6RLCBbS6qv812L265fwi4k85dxIE694OC36wEvdTUds497V6P > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 58,6734376270658 ; 1,2859152117272 ; 44,627765417175 ; 58,6731876270658 ; 58,6736876270658 ; 6,8 ; -2,7 ; 8,7 ; -6,5 ; -4,9 ; 8,8 ; -0,38 ; FutureDE1995 ; DB04BaeaAFE1Bbedaeac0baF90FdE6D1706FeccEdbBCC38d27Bf5bCd5Cf38ae1 ; < r1UbuKOsqBJ7HygpDfVGzBewPB63e4RAgO1wr11G5zai3WH08FT7p1bNCBbK8Jgg > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 59,4381293097846 ; 1,36575682087586 ; 42,5202873610157 ; 59,4378793097846 ; 59,4383793097846 ; 5,8 ; 0,5 ; -3,9 ; -6,8 ; -6,5 ; 4,2 ; -0,77 ; FutureFE2094 ; CBCeb98d4CD69dBAC27EfEFd4cC23dbD015eF0E7bfE3A31dFA6cAeDD7BfC23BB ; < 2v29HM24w5Z5Vm29Q2CZ2Q6SQ491B3YIMG3KQ3Z0Cv2Y936Jx36pjG50H920U4Q6 > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 60,216541479358 ; 1,46824594422802 ; 40,0125713039301 ; 60,216291479358 ; 60,216791479358 ; 9,2 ; 1,9 ; -0,4 ; 9,6 ; 9,9 ; -6,6 ; 0,67 ; FutureAP2023 ; DdeF91E89cdD82cc4c5fBcF07EeF9090C2c7b5d46E8da01dF6FAc2cb8DeECb6d ; < qs8Z7GaA7EHRV4t46hW68PNWgq6um9A831p6m4UOu0Zj6183R6Bk8TRIasxM2475 > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 61,0159387067991 ; 1,59751157621794 ; 37,1943640441419 ; 61,0156887067991 ; 61,0161887067991 ; -4,7 ; -6,5 ; 6,2 ; -5,7 ; -2,9 ; -1,2 ; -0,24 ; FutureJU2061 ; EbFabBAa1F1eFbCE4085cCFd5cDBB0D8EaeAEFaB8EE696bbBCfc0cfec85C7EbD ; < 38qOm1Rj00SX0I8370eYnOyd6fG0KTfGhG5130Lb33Q393c9v7n5Yn89W38ANkDb > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 61,9238665771775 ; 1,75915545405886 ; 34,2009064544592 ; 61,9236165771775 ; 61,9241165771775 ; -5,6 ; -8,1 ; -8,5 ; -6,6 ; 6,3 ; 9,6 ; 0,53 ; FutureAU2034 ; bdAccBBAaAF1ADFfABDd3BcfD9EC3AcaFc33AD0BDfDEBD64aEADcde6ABBBb5e9 ; < yv0zP552gx110qQLtlVcmqmAK6111ycltPZ8WBNcS4Jnw4HDkdYyY2KvO1qkgB4U > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 62,78621593597 ; 1,96058882074028 ; 31,024162981947 ; 62,78596593597 ; 62,78646593597 ; 0,3 ; -5,6 ; -8,2 ; -6,9 ; 7,8 ; -7 ; 0,3 ; FutureOC2017 ; 58EE675E1dDCBAEFAacb04cABddBd9b6977DFfB0fE7EEf8FA0FCeAbD0fE6fFFA ; < jSD5Sqh5l5zsR86st8rAaliQ3jfhudac8x8iEJE3iQo0n0J1gSd18tB7Cc928sch > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 63,7030891371721 ; 2,21189628703202 ; 27,8002152319043 ; 63,7028391371721 ; 63,7033391371721 ; 5,5 ; -2 ; 9,6 ; -5,7 ; -8,1 ; -3 ; 0,89 ; FutureDE2097 ; DFb9FA0Ba3dB2c728EAcFf3E16bCEe75FBedFac75AfD36CC05cAFEAeAA05E31D ; < 9De8Q7ph95F309yV7G7UY801jCVR195wRm26guuuoMty0084bt06llawqcO27Y3h > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 64,7915207025541 ; 2,52553289687528 ; 24,6545938414493 ; 64,7912707025541 ; 64,7917707025541 ; -2,9 ; 7,1 ; -3,7 ; -4 ; 3,3 ; -1,3 ; -0,29 ; FutureFE2115 ; bFFA1Db6DFABFda5fCe5e9B66Aa7EbdDDCFDF4aD6a4FE4911E2D27BFDEBccBEA ; < 8gNsS29seNm1LLR3Re07u6X1uLR80VZa7iwg9v69JRy11P1WUp2qk26MGf1Khn8L > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 65,7548585984965 ; 2,91831892619471 ; 21,5317589548845 ; 65,7546085984965 ; 65,7551085984965 ; -6,2 ; 9,2 ; 2,9 ; -3,5 ; -7,1 ; -7,4 ; 0,24 ; FutureAP2173 ; fbb7e08dBD49fbEd0CcDecd59bD1a6b4E7aa84bAF1FC9F4EAD7E8c47BEEfD907 ; < 25ju9HPEgKUHu09M84cZ7MpIs4C8T3749c6zY1z9ZFJvWK9AMW4YSrb6JUA57dL6 > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 66,9115817811158 ; 3,4131419242205 ; 18,6041018119683 ; 66,9113317811158 ; 66,9118317811158 ; 5,2 ; 1,5 ; -7,1 ; 0,9 ; -7,9 ; 3,4 ; 0,22 ; FutureJU2129 ; aB0F6D6FC3feF0FCCdED34AdEABAAEcAcffdcDbd3EB7d50AEB8362Fe38Cec3df ; < qxiJYNpFmCOjjw13nE8X55h026lZ7URORW4hibE8E6s0qaoFZod05Gp5EdbcV1R1 > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 67,9016434280286 ; 4,04031708527713 ; 15,8060184373799 ; 67,9013934280286 ; 67,9018934280286 ; -0,7 ; 7 ; -2,9 ; -1,7 ; 4,5 ; 9,5 ; 0,62 ; FutureAU2184 ; efD0efBFBBC66dd4BfB2edebC1A33DBDFBe66fFbbdb81FFcee8fA0faCeecb4F7 ; < zuJ2EsMlzkEfKdtttURqj307wkvEF5s740iy2640Hnj7Oe78omZ0Fk6imOzy2HYj > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 69,0396912554752 ; 4,84108167738436 ; 13,2612118233827 ; 69,0394412554752 ; 69,0399412554752 ; -7,7 ; -5,2 ; 3,3 ; -5,7 ; 4,2 ; -5 ; 0,71 ; FutureOC2145 ; e83D32EB95b37F6f7EfbCCacDFA2E5cA5D88FA7e008C545DFf5D5b2eCF09bBDE ; < lN9oPpMHwvb6V51TCrLhk0WQZ0603ktKvCKPg1Ss1FoaghLo7t4EHh5Bj866oiCL > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 70,3518564677732 ; 5,87046535365781 ; 10,9840340125571 ; 70,3516064677733 ; 70,3521064677732 ; 1,7 ; 5,7 ; -5,7 ; -5,4 ; 5,3 ; 8,3 ; 0,12 ; FutureDE2157 ; C609dB9cDCfD5923Bdc1f5EfFbCBA8A450CaAb8CAdCBefBe8E0CececBEEa9Ad6 ; < BcHlQ9Q67jp75Hwpx4CUa2SxGwR6eb3Hg7U1r7n74tMrWhHN13tjpR8BvEU3ceaF > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 71,5621121169179 ; 7,20557825655558 ; 8,93148774032274 ; 71,5618621169179 ; 71,5623621169179 ; 9 ; -9,3 ; 9,4 ; -6,5 ; 8,1 ; -4 ; -0,31 ; FutureFE2244 ; B7ca61eBd55ee19bCeeCDE230C2ab3fAFC5EeCad6A3Dcdac44CADABFDAaa0F45 ; < 2w686sLl2Ca2h2eGB8tc3cNXf52ByH4TSntvs7X5MLuLGgH16c0sa1Mf6LzA62lp > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 72,8001434569046 ; 8,95140250048264 ; 7,13281979589001 ; 72,7998934569046 ; 72,8003934569046 ; -9 ; -1,6 ; -8,1 ; -1,2 ; 7 ; 4 ; 0,85 ; FutureAP2246 ; E6CBebFcddAbbB5dBBE9Ffd3DC20Eaf7ccD3487D7cfCcAe8DCEE9cfbb0c7ce23 ; < MUTLY91dg2EUYUB5wns9typUH6bVgUA9w02dy73fDCWDOuYatH6z7CL8X32q6l47 > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 74,1837445948671 ; 11,2550946104042 ; 5,59112581126519 ; 74,1834945948671 ; 74,1839945948671 ; 0,1 ; -4,7 ; -1 ; 8,5 ; 4,1 ; 8,6 ; -0,3 ; FutureJU2229 ; 1d0CCE55888D5dC8ffe4caF8BFFF9eaA05AABFfCBdAD7BEEaedebbdE8fF42ecd ; < 3T0oSj5uSxd2Sm3GgB4EmS5H0w9TMyHi6mdN25SP4OD4HyHCiF8Q2W0J1iW3lJgY > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 75,8870005898446 ; 14,3239501178437 ; 4,2979101410937 ; 75,8867505898446 ; 75,8872505898446 ; -1,2 ; 4,9 ; -8,4 ; -3,1 ; 8,1 ; -2,8 ; 0,24 ; FutureAU2240 ; DfDf7Ba5EA0a9C4ab238EF389a02Ca1DC23BEDbFbbE20ECEEbdfDeE62fbd16B8 ; < 88Ia4h5W7vVFdGRrQr7imiMjCQbMey57m0ko26s5kKT84dH6LcsQWm9njmRwFF7m > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 77,2705322507099 ; 18,4509209981858 ; 3,18789567514314 ; 77,2702822507099 ; 77,2707822507099 ; -4 ; -4,9 ; -1,8 ; -2,5 ; -8,6 ; -5,6 ; 0,9 ; FutureOC2238 ; D3cEc0bfCEE1E65CAbbDfF8bFdE2fC55bADcfBB5e4dbFF6eBaebBcdCB9DE0DD2 ; < 7gE182877W1k2ku9WyQvU9vSjv2whMARUo3VXvRgx5VLL9N7X50XZaatlU2a0h75 > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 78,8466753143467 ; 24,0540429172418 ; 2,27789700823348 ; 78,8464253143467 ; 78,8469253143467 ; 6,6 ; 6 ; -7 ; -0,5 ; -5,1 ; -9,5 ; 0,03 ; FutureDE2299 ; a71E0Fa6f8E5aDf0Bc8E0D1cBFBa6aEada3CC7ffb095Fcff5bDA1BFCf08079d9 ; < kX771lgr0Kew5t6uzI846s61fF8tz5mO0e935D1k2Xh8I4xRcKsr4ygc842B5k16 > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 80,2775306779822 ; 31,7368503971352 ; 1,52947377176497 ; 80,2772806779822 ; 80,2777806779822 ; 4,4 ; -0,5 ; 3,4 ; -2,5 ; -4,3 ; -8,7 ; -0,23 ; FutureFE2334 ; 621eAeb64EDDfA19a988Bac5BEEfFcd2cFCCFcEaEE8C3f1BBBB3ecA4bEae25F3 ; < opbEO62FRw4ang18s138h0MCrKW2C2VVa0RMLM8stL9G0Y2yF65Zq72DD68DPiHm > > // < CALLS ; 2Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 32,8774292992482 ; quote ; 57,5879066477486 ; 56,4361485147936 ; 0,0204081632653061 ; 8,3 ; 53,124843882548 ; 62,0509694129491 ; -8 ; 74dfFcEAcea00Fe43EDecdE0502dEbd4017ddBd8BfefB4ce5eAEA591A8Ad2dbb ; < VmfT537Iw89Z6e0I1Kl2QvTlcpaW10Z205JCAjwtW44QUL5gW628lZCPfQz40A9O > > // < CALLS 36,1651722291731 ; quote ; 53,6044676860604 ; 52,5323783323391 ; 0,0204081632653061 ; 5,6 ; 49,4501214403907 ; 57,75881393173 ; 5,2 ; dd6ddF4ba22d0BAadd7EEecDE66d132db31A9BFDB4F205Ce7E70AD8051ADdcDA ; < zIr05BrnhX1822rpd8Czhwngq66A8R1jeKM211Q92TFIO4MlRe9hrRxG0cbWNnDL > > // < CALLS 39,4529151590979 ; quote ; 49,749238783706 ; 48,7542540080319 ; 0,0204081632653061 ; -8,7 ; 45,8936727779688 ; 53,6048047894432 ; -5,6 ; 96d7cDd63cF505b5ddf1afFdbc9c2FedaceceDaCdc4BeBafe1e3EFedcB5ae9DB ; < orwO1vm0d512lj28jo71Hn5XvJ4Hm5QZ6M1oH1P5tY08lN9m34roX3UBwFaYDp9y > > // < CALLS 42,7406580890227 ; quote ; 46,043352958261 ; 45,1224858990958 ; 0,0204081632653061 ; 7,5 ; 42,4749931039958 ; 49,6117128125262 ; -3,4 ; FDBD42eace5AA8CCdDDD08F0EBa95a68CEEAdfDB8cBf26dDAdCD8DCabA5FFB4b ; < 0oi3CBswug5tnaQxxlU6yVFHaU0zi0jM9GSRvuqR97b9oP13P231XxNbD5xJZhA5 > > // < CALLS 46,0284010189476 ; quote ; 42,5041624904487 ; 41,6540792406398 ; 0,0204081632653061 ; 1,6 ; 39,2100898974389 ; 45,7982350834585 ; 4,7 ; EeE8edb6febF571B1CBfAf343EfFaf8e61BAfDafFfD3aAe5bF4EceDf4EDE8a4c ; < M71MrJ61mCu6375Z8EU0A57iNsIa8CN5lZ05Jaa2K41YTN6n4sWn1mQW8SOb92CX > > // < CALLS 49,3161439488724 ; quote ; 39,1447745021317 ; 38,3618790120891 ; 0,0204081632653061 ; -3,2 ; 36,1110544782165 ; 42,1784945260469 ; -5,6 ; e9Cc5Dbc42eaCdb5CBFa43D5F0e9Dad1DacBEBc3ace1CDFbBBd3EaEEcbAF8D8d ; < 09Z9Z73fHuigcuPKe4r7HYw23BlOySVEU048aKM4vthqd3vF1327L1lZZG7omCFR > > // < CALLS 52,6038868787972 ; quote ; 35,9740072988448 ; 35,2545271528679 ; 0,0204081632653061 ; 0,7 ; 33,1860217331843 ; 38,7619928645052 ; 2,3 ; fb4De199FbB12e0ceECcB0fdBcAA0Cd9bccBB9dEAec9b5bf3Ab8caf8efA6CF9b ; < 5mR4GrM8LfIm8u5BJY4dU8HFs9cnlOOCfCZ6smCNOFJ7kNZEz6poG1IrGaWmK0qw > > // < CALLS 55,891629808722 ; quote ; 32,9966443893104 ; 32,3367115015242 ; 0,0204081632653061 ; 9,1 ; 30,4394044491389 ; 35,553884329482 ; -9,3 ; cB7AcEEaAfCDfdBd97dEDe0bbfdaf9ADc5FDadf7BfBb6B14f60ACDC4FaDfeeCd ; < 92Z2RE3O5A2KXmbP9Wsg6w8Uh9y2i6o3y3rbtL47W0hLCWTihNef9vdV8Sh3823R > > // < CALLS 59,1793727386469 ; quote ; 30,2138736853229 ; 29,6095962116165 ; 0,0204081632653061 ; 6,2 ; 27,8722984747104 ; 32,5554488959355 ; 7,1 ; 56C0cc0BFEACFdeaFAc6fc3cbdD5b602dEceE5F5c9CaBD1Cc1E807df0fC761EB ; < MNsq6SuuLQPC75892Q0H6R87c963b3quaS1pV41H3349pP2Xq7X39LpR55Bp6LYy > > // < CALLS 62,4671156685717 ; quote ; 27,623821116272 ; 27,0713446939466 ; 0,0204081632653061 ; 9,8 ; 25,4829749797609 ; 29,7646672527831 ; -2,1 ; A541A945DcDbCD3bAd1cC00FAC6Cda3C65ABBE8EaEbfA62Bef3CFe0efdccD7Ed ; < 2LTFpTWcl1161KBsJcd2YMtxEXIgEr309a6r7rl9fsNxm2789m41B8WbsE1VHa7q > > // < CALLS 65,7548585984965 ; quote ; 25,2221118387227 ; 24,7176696019483 ; 0,0204081632653061 ; 8,1 ; 23,2673981712217 ; 27,1768255062238 ; -3,4 ; FCCaC0d294c7C2AAEE6D584dCaD21a4fd2b2c331F7DaDAD3EB3c5cbbF7bB4Da7 ; < av5xSHcY12k5Y7PDO0vJFl18bP6k2e6hT36wdzOzQyNDQ9NiCA5QeyykiCfy6t9s > > // < CALLS 69,0426015284213 ; quote ; 23,0024138329086 ; 22,5423655562505 ; 0,0204081632653061 ; -9,4 ; 21,2197267608582 ; 24,7851009049591 ; -9,9 ; c62BE2446C4E1DcBCCD92CedD193C8c2df4bF92cbEe4EaEAE5eb88CEAFCfCdA6 ; < KP5WQJ52E9uZeo3V704a5tFyoov22hkzG9680Oir9Y7W1j7YspmnhcliOna7AyBN > > // < CALLS 72,3303444583461 ; quote ; 20,9569361662668 ; 20,5377974429415 ; 0,0204081632653061 ; 6,4 ; 19,3327736133811 ; 22,5810987191525 ; -9,4 ; bBffcDBcfCaE9CaFAbACAe7EbEfF3Eef3D3ea03Acbfeb4d30DfCB4E5DAa0dfB7 ; < N1LYNndPVHrIMhf4Zj7K43m14NEbj7Wao27RzgP8oYBkL7OpM3Mo4Oe21uzKjfTW > > // < CALLS 75,618087388271 ; quote ; 19,0768673163296 ; 18,695329970003 ; 0,0204081632653061 ; 1,6 ; 17,598410099314 ; 20,5553245333451 ; -7,5 ; 6A8bada1b58EbceeFC04Ff5A90e4bABA9BaDE56e340F0d2985dbcf4bf3aC310f ; < gAjv5hHFZgqQP9jNFVwN6yby92hawapY7jC1snaAb0801XYW21bHfo03VfL0wCrx > > // < CALLS 78,9058303181958 ; quote ; 17,3527481632677 ; 17,0056932000023 ; 0,0204081632653061 ; -1,1 ; 16,0079101806144 ; 18,6975861459209 ; -8,5 ; cF6Cb1BC6Df9A50376Aee8fEee61DCCaB49D2A1ae938b59CBB0C7Cc9ca9cD7F8 ; < U599JkZVx99SIgBm0Qwiwss24Kypjy3MUy1CILZ2QuHLVQ9LYfIG0E5u8967IqBd > > // < CALLS 82,1935732481206 ; quote ; 15,7747803335794 ; 15,4592847269078 ; 0,0204081632653061 ; 5,7 ; 14,552234857727 ; 16,9973258094318 ; -8,8 ; f7F47FEcfeb79E17D7ba4a5Ba3902cd9Adb21AaAEc6EA4D9aad61eD8Ba7ebDD2 ; < 1pB0F1i9c1e5O40QTOs83Er19alecV7DKlMLb6fS7e60ISxDAyZ6825BOiot071v > > // < CALLS 85,4813161780455 ; quote ; 14,3330742666231 ; 14,0464127812907 ; 0,0204081632653061 ; -1,6 ; 13,2222610109598 ; 15,4438875222864 ; -8 ; 4eBCEc9A8fCC9A611cFC3fbbCd4AE8A05Bed2fBe31fD76bDdBfFa958d9aACCf5 ; < l6bpD4to7fku5J371G4ISGb6qB7pK458eQD0IB4bYeX8moa2F7SB7eX9xO1i4p6Q > > // < CALLS 88,7690591079703 ; quote ; 13,0178433568744 ; 12,7574864897369 ; 0,0204081632653061 ; -2,4 ; 12,0089604967166 ; 14,0267262170321 ; -7,9 ; CafBc7Fff7BA0a74AFdDCE5EfA27e40aCc1ddBBEdcd700Ee8adECbbA3FbBEeFd ; < koj7HrKnDHV9EgKreeymUe8rxNCqQR7dQ351vVp4RQydfp4Ro7H23mqzBxa8wOGW > > // < CALLS 92,0568020378951 ; quote ; 11,8195513380887 ; 11,5831603113269 ; 0,0204081632653061 ; -8,3 ; 10,9035361093868 ; 12,7355665667906 ; 2,8 ; 9d5D6ce956CEaBe3c219bfCcAcC08AECabbC2b8cF0FfCd8ab4a52f8C7d96bdfA ; < 58B8r1p1YI4ud5RXGVRHg6x4dV313QOD3VI9W10m2IMvq19azwVVq8rz77pXpuB4 > > // < CALLS 95,3445449678199 ; quote ; 10,729020132261 ; 10,5144397296158 ; 0,0204081632653061 ; 7,5 ; 9,89752107201076 ; 11,5605191925112 ; -1,3 ; 1E1A8cdBCb9D42eFa6D3dD2FdB9d3FbBae9e81eeC6EB8A157bAE2eDc48a5d22F ; < 3vr7Ms3Z73vhKsQb1M19W617s2I5h9S79WJQ1g1jd44FB1zdr6C1DwzfYIzf8w47 > > // < CALLS 98,6322878977447 ; quote ; 9,73750498525262 ; 9,54275488554756 ; 0,0204081632653061 ; 8,9 ; 8,98284834889554 ; 10,4921616216097 ; 1 ; 3FB07f4ca2Be8cA1baD765Df577ba16AA5b3D3dA4F9dE0Cf0fE3eF5Ac53cE0B8 ; < Do3AMxlRJHz3G852goeS14RjA3PZVudK66RUH2d6YMVL7VJ5lrrAwS54Ydk764V1 > > // // < PUTS ; 2Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 32,8774292992482 ; quote ; 0,408665521929223 ; 0,400492211490638 ; 0,0204081632653061 ; -7,4 ; 0,376993943979708 ; 0,440337099878737 ; -6,3 ; C8C2eeCfd48EFc67E0aAF2cD6fBbecbD2B2eDFe8aEdA11bfaBA3aBaf6A0AFDAa ; < 1cIKG28NDJhO19Qvn832JWl2fzbLT1OC0G5HxQSj5bS062cZj4IKmLB7F0eiyj1g > > // < PUTS 36,1651722291731 ; quote ; 0,707302447659103 ; 0,693156398705921 ; 0,0204081632653061 ; -1 ; 0,652486507965523 ; 0,762118387352683 ; 9,3 ; 7F6CD36ddC6abDDe8bF2ABEAA365D0ca273FeFAc0be4Cc80cCE0fc1512ECfc3E ; < 8Kg0k67f33vvYCIHXhs4zvYaQXIN0t6L1IuH1INHFMSWW7Y78PqOTNwgr7Ys1hXe > > // < PUTS 39,4529151590979 ; quote ; 1,13414943272281 ; 1,11146644406835 ; 0,0204081632653061 ; -0,7 ; 1,04625285168679 ; 1,22204601375883 ; 1,4 ; 6Eb51fff49Ef1ae9a4E64d7dEBda8bA9Ee4a86f804e8bfbcEcff06E0DaaE0AcF ; < d1d3cHGWm6C19xCC7nm2u4L65X5axoav01LH8u2z72tDd2u9Z4dq53aHuq0TYm67 > > // < PUTS 42,7406580890227 ; quote ; 1,71033949469589 ; 1,67613270480197 ; 0,0204081632653061 ; -4 ; 1,57778818385696 ; 1,84289080553482 ; -1,9 ; 72F58FFFC07e80040B1afea5Ebec75Ed0d59fB6DDa2bfF6E9F0f1abc92caDDfA ; < U8NEBZ0l05qvO1L66n980rKCPR39Y91zCVuh461Y5Edi1qmFhwndmQx70n0y6989 > > // < PUTS 46,0284010189476 ; quote ; 2,45322491430167 ; 2,40416041601564 ; 0,0204081632653061 ; -1,3 ; 2,26309998344329 ; 2,64334984516005 ; 4,8 ; A7DB5FBEf1542CF617A1e23Dff0dFAbE8a5AD1E4E0DF49dD6623fDB6edAcBdfb ; < v20lOOTYo2N55d8E19F9nDO9osps36KHMcG65X8crWJw1UjS84Nrfzw9vE0Bp3WL > > // < PUTS 49,3161439488724 ; quote ; 3,37591281340272 ; 3,30839455713467 ; 0,0204081632653061 ; -5,4 ; 3,11427957036401 ; 3,63754605644143 ; -8,7 ; C7DCEaF4c8Ae5eA8dCEEdD1E60CBFCEcC64c0aBbeF840F61CeBcC2dF3d4A2ad5 ; < QKhoT8028MZ47436xb1t30X5lx1F77CKB1r7FTiNmcv8MwR0h1EYBsK20M552gud > > // < PUTS 52,6038868787972 ; quote ; 4,48722149753384 ; 4,39747706758316 ; 0,0204081632653061 ; 3,9 ; 4,13946183147497 ; 4,83498116359271 ; -1,6 ; DBEaBeeBeedc83Da3adBD9acCec0F6F2e22B8beFD8B9dECEaDbc9CAb2Eb1eDBA ; < 77uQM2F8v1917aCKm1DZLe299et6P5rut90rXdT14Z0NiBFTk2V9u6HhCsotq2Nr > > // < PUTS 55,891629808722 ; quote ; 5,79193447541758 ; 5,67609578590923 ; 0,0204081632653061 ; -7,7 ; 5,34305955357271 ; 6,24080939726244 ; 7,5 ; e4D62bf5bEa7B5FfEeB5CEeCdbBcc50aca9BBE20cfbdbBaeFCCCCaCB7Ff9E456 ; < UA0zv2o6Y78pFmXp9cyVj9D0nt5t6k2Hv6NU3LoUw2TrmNPavPx4T88Ox3UdHPZH > > // < PUTS 59,1793727386469 ; quote ; 7,29123965884816 ; 7,14541486567119 ; 0,0204081632653061 ; 7,7 ; 6,72616858528742 ; 7,85631073240889 ; -1,1 ; eA5bbb0bcaaED0AAD4256A6cDF784FAD5eE49D457FbF0EeB0DEDba6f29A418ce ; < 5LNX1k5y0l3Cul02R65lVpwnxqKfojJzyF8m5d8Uoa2yJ0YdajfaFMqI49U499ZQ > > // < PUTS 62,4671156685717 ; quote ; 8,98326297721528 ; 8,80359771767097 ; 0,0204081632653061 ; 0,6 ; 8,28706009648109 ; 9,67946585794946 ; -1,1 ; 0c4b11edF4Dad15abbcb1Ea99Caaf8796d46BFd59Aa1bbeAC57008cf882DAb8E ; < Me48l009p237xMJsm82i38LJZUqI2biu5smTXpClWuju4VS2A0ad19mP4h93g7MC > > // < PUTS 65,7548585984965 ; quote ; 10,8636295870841 ; 10,6463569953425 ; 0,0204081632653061 ; 8 ; 10,0216982940851 ; 11,7055608800832 ; 9 ; BAbcecdF525Ba073eEc8AC4bbdaC59b3AF2c1399d7dA2d4aeE0AABedb16b54B4 ; < hOQrY2lg2nwBBqU4VmYx27BUF1tQ9k7LPxTYlw04851VXNTm65VQZ9u74k1k2LBI > > // < PUTS 69,0426015284213 ; quote ; 12,9260074686881 ; 12,6674873193143 ; 0,0204081632653061 ; 5,9 ; 11,9242418898647 ; 13,9277730475114 ; 9,7 ; aBe9a3D6d436B6Bcb5BAfbeceACBd6398dC58fdc5Df8efDF6e4adDC0F6BEFfC5 ; < zT1r4q89vbqj7lr3k3i2tb53G15NYaXVvRFV0PL1IhimeRZhsYc7mrVeSzBjVtfS > > // < PUTS 72,3303444583461 ; quote ; 15,1626056894643 ; 14,859353575675 ; 0,0204081632653061 ; 8,9 ; 13,9875037485308 ; 16,3377076303978 ; 3,6 ; E9Ef6a6f93AE3f34EfF8cAC12C1CEbC18C59C0f6880D727adaDD22d2Fa7BDBeE ; < tKK4QQSOCHA2B4zKZV6Ad07oCct6bgz9yQNszphYt2nqrmNvmJ759e1Zkubox720 > > // < PUTS 75,618087388271 ; quote ; 17,5646127269451 ; 17,2133204724062 ; 0,0204081632653061 ; 0,2 ; 16,2033552406069 ; 18,9258702132834 ; 9,8 ; c3D662AFdbf3aDB87EAcCc8086e5b31AFDA1Fb2f00fFADdDfFfaC31ccacFE073 ; < 6EKaVGsmbr9ckhf92J30eyhJulx3W4LT1u7LnqiO77VM57ile9gpk0O9OdcGZEOp > > // < PUTS 78,9058303181958 ; quote ; 20,1225694613013 ; 19,7201180720753 ; 0,0204081632653061 ; 0,9 ; 18,5630703280505 ; 21,6820685945522 ; -6,4 ; 8Acc9BB1Ecd85DAECBFEfBDEcbBBcf1D9B1eb0eE3BFCEeBDa0B5BcBB8dCCF355 ; < 6QG6oCaiaBoF78712HJ6J15945X2uXFtj4DxO37p9r1614n57G5d37522iU92972 > > // < PUTS 82,1935732481206 ; quote ; 22,8266775190311 ; 22,3701439686505 ; 0,0204081632653061 ; 0,1 ; 21,0576100113062 ; 24,595745026756 ; -3,1 ; 9fB6aAdB5Ffffd9f3965F7Ead7bCDFcbFA1Dbbde4Df7bE9E1bbAD1D0eBdbf3ac ; < h1fmJqlapsmZhd1BYVex2Y4VK8y3yF35kuzp7X1Z1Nx2piPeUjC0938fi2E2OqLX > > // < PUTS 85,4813161780455 ; quote ; 25,6670473394929 ; 25,153706392703 ; 0,0204081632653061 ; -2,1 ; 23,6778511706822 ; 27,6562435083036 ; -8,3 ; aafb3E4a743F1BDe01cE25EcFBEEd83dB4B13e4AdDB1dbaEbeFcA1F6C2dafe3A ; < QbTHBj1pOKXU53DwBBq2ZlBM26Xyd3ZX126333z6bu11Zsz8LEv6ea9Y9gB0It6H > > // < PUTS 88,7690591079703 ; quote ; 28,6338923171622 ; 28,0612144708189 ; 0,0204081632653061 ; 7,8 ; 26,4147656625821 ; 30,8530189717422 ; -3,9 ; eCEDEcffd24a2A564bfaef4Ca2ddfecB56f7f0CBBcA7e030EAFBdAB57AD0FbBe ; < sSlrpu63Cn0kE3eWqsSGjHKdlK0EpjTfW9RTq2kJHXM2Fv0pHQxq19H47ba8LM89 > > // < PUTS 92,0568020378951 ; quote ; 31,7176761857946 ; 31,0833226620787 ; 0,0204081632653061 ; 9,4 ; 29,2595562813955 ; 34,1757960901936 ; 3,7 ; Ab6fCfabEc0d5ddAeBb623f84d62ADD14F7E9FBd3aa9ceFfcdEf25ca41bAcedE ; < 4EgBf3X1Mg55RxgTXA4uL6tM00MA5K8ouWE3R7U6P57L4ql38MqtQ1iayf0qn7I9 > > // < PUTS 95,3445449678199 ; quote ; 34,909220867385 ; 34,2110364500373 ; 0,0204081632653061 ; -2,3 ; 32,2037562501626 ; 37,6146854846073 ; 4,5 ; CB8Adc4e3dd908e3f1bC6cA34DBc313b05Ffa5f002bbA0aFfDdC0fbeE5ca32bE ; < ooVpmmB2hZ59QhF89Im6eerv20Z0aTiWRGSDJPvfx78G442z651uHqoHgUC7pvC8 > > // < PUTS 98,6322878977447 ; quote ; 38,1997816077946 ; 37,4357859756388 ; 0,0204081632653061 ; 2,1 ; 35,2392985331906 ; 41,1602646823987 ; 5,4 ; FBAfBFF0cC6cedB838cb0ECeac1bdCCF5c46AECBe1fCCc7b3DCBFC4CD92fadAE ; < OZJkXj9xVyBAPU1P4Ok8PHD0rRv1jZ59o6aW07vkcpGZGTJ7AqhcBszc3X10mvO6 > > // Futures_Eurosibenergo_Engineering_LLC // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 56,013199 ; 1,14 ; 48,1343850877193 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; 5B0BfAe25CfeA3bebcB726b7f677cCBBe440F58421ADC5eF3ea2e0ac540DAb8c ; < xA81vJ17bZoX4ynr8LS9dqi4RYAVOGH6EWj883Vw4tS8Gg0fY4nvm7Z1heURz9sY > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 56,0142756738532 ; 1,14002508 ; 48,1342485849988 ; 56,0140256738532 ; 56,0145256738532 ; -4,7 ; -7 ; 7,6 ; 6 ; -1,5 ; 5,4 ; 0,16 ; Future69AP19 ; aB3EB8B06CBFCaCe5CcE202d10D7bDAeaF8EbCB7BCcead0f9Bf56A3F7ccdfdFC ; < ot42W1dd2UmuZHeZf8PD12FiZR6bi9Kv44q42NnjYKCTw5H13NB9Fccf0jsaKJUa > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 56,6207834187429 ; 1,15383235592122 ; 48,0719324416385 ; 56,6205334187429 ; 56,6210334187429 ; 1,8 ; -4,3 ; -1,3 ; 7,6 ; -6 ; -7,2 ; 0,68 ; FutureJU1916 ; Cad63B8bAa1fEC0deFacAfD2aCFAAE4F913F836fc3Cb5bB2dcde2DA46fb2daAf ; < uTw1H3eANwYaeXvCTru25t94h91qfq6ZxE2BaPJ7k081jZ2ItBH3iI8waX6K4KFj > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 57,2813462028584 ; 1,18203756547107 ; 47,4598356906114 ; 57,2810962028584 ; 57,2815962028584 ; -9 ; -2 ; -1,6 ; -2,2 ; -0,7 ; 5,4 ; 0,05 ; FutureAU1992 ; 50bE1CADadCbede9fdDDAc0e027F37ffDBbC93f1C2E3ad96AE6eacAeFEaaAd8B ; < OY3a2e47PyNBs6qMoAC2D6UkvR27C2x8D94uh97u91l67av8zzixroY6aa94fZ4O > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 57,9605451626703 ; 1,22544797504721 ; 46,2974343610447 ; 57,9602951626703 ; 57,9607951626703 ; 1,9 ; 0,8 ; -4,2 ; 2,2 ; 6 ; -6,6 ; -0,54 ; FutureOC1924 ; Ca0EdBF9cdDaEBE63Cd2d7bBe1dCd8F153bA8eCbCCddfBaAaa7Ec8CFb43D02Fd ; < FsDfN85Jo8Z8BIB6RLCBbS6qv812L265fwi4k85dxIE694OC36wEvdTUds497V6P > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 58,6734376270658 ; 1,2859152117272 ; 44,627765417175 ; 58,6731876270658 ; 58,6736876270658 ; 6,8 ; -2,7 ; 8,7 ; -6,5 ; -4,9 ; 8,8 ; -0,38 ; FutureDE1995 ; DB04BaeaAFE1Bbedaeac0baF90FdE6D1706FeccEdbBCC38d27Bf5bCd5Cf38ae1 ; < r1UbuKOsqBJ7HygpDfVGzBewPB63e4RAgO1wr11G5zai3WH08FT7p1bNCBbK8Jgg > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 59,4381293097846 ; 1,36575682087586 ; 42,5202873610157 ; 59,4378793097846 ; 59,4383793097846 ; 5,8 ; 0,5 ; -3,9 ; -6,8 ; -6,5 ; 4,2 ; -0,77 ; FutureFE2094 ; CBCeb98d4CD69dBAC27EfEFd4cC23dbD015eF0E7bfE3A31dFA6cAeDD7BfC23BB ; < 2v29HM24w5Z5Vm29Q2CZ2Q6SQ491B3YIMG3KQ3Z0Cv2Y936Jx36pjG50H920U4Q6 > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 60,216541479358 ; 1,46824594422802 ; 40,0125713039301 ; 60,216291479358 ; 60,216791479358 ; 9,2 ; 1,9 ; -0,4 ; 9,6 ; 9,9 ; -6,6 ; 0,67 ; FutureAP2023 ; DdeF91E89cdD82cc4c5fBcF07EeF9090C2c7b5d46E8da01dF6FAc2cb8DeECb6d ; < qs8Z7GaA7EHRV4t46hW68PNWgq6um9A831p6m4UOu0Zj6183R6Bk8TRIasxM2475 > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 61,0159387067991 ; 1,59751157621794 ; 37,1943640441419 ; 61,0156887067991 ; 61,0161887067991 ; -4,7 ; -6,5 ; 6,2 ; -5,7 ; -2,9 ; -1,2 ; -0,24 ; FutureJU2061 ; EbFabBAa1F1eFbCE4085cCFd5cDBB0D8EaeAEFaB8EE696bbBCfc0cfec85C7EbD ; < 38qOm1Rj00SX0I8370eYnOyd6fG0KTfGhG5130Lb33Q393c9v7n5Yn89W38ANkDb > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 61,9238665771775 ; 1,75915545405886 ; 34,2009064544592 ; 61,9236165771775 ; 61,9241165771775 ; -5,6 ; -8,1 ; -8,5 ; -6,6 ; 6,3 ; 9,6 ; 0,53 ; FutureAU2034 ; bdAccBBAaAF1ADFfABDd3BcfD9EC3AcaFc33AD0BDfDEBD64aEADcde6ABBBb5e9 ; < yv0zP552gx110qQLtlVcmqmAK6111ycltPZ8WBNcS4Jnw4HDkdYyY2KvO1qkgB4U > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 62,78621593597 ; 1,96058882074028 ; 31,024162981947 ; 62,78596593597 ; 62,78646593597 ; 0,3 ; -5,6 ; -8,2 ; -6,9 ; 7,8 ; -7 ; 0,3 ; FutureOC2017 ; 58EE675E1dDCBAEFAacb04cABddBd9b6977DFfB0fE7EEf8FA0FCeAbD0fE6fFFA ; < jSD5Sqh5l5zsR86st8rAaliQ3jfhudac8x8iEJE3iQo0n0J1gSd18tB7Cc928sch > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 63,7030891371721 ; 2,21189628703202 ; 27,8002152319043 ; 63,7028391371721 ; 63,7033391371721 ; 5,5 ; -2 ; 9,6 ; -5,7 ; -8,1 ; -3 ; 0,89 ; FutureDE2097 ; DFb9FA0Ba3dB2c728EAcFf3E16bCEe75FBedFac75AfD36CC05cAFEAeAA05E31D ; < 9De8Q7ph95F309yV7G7UY801jCVR195wRm26guuuoMty0084bt06llawqcO27Y3h > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 64,7915207025541 ; 2,52553289687528 ; 24,6545938414493 ; 64,7912707025541 ; 64,7917707025541 ; -2,9 ; 7,1 ; -3,7 ; -4 ; 3,3 ; -1,3 ; -0,29 ; FutureFE2115 ; bFFA1Db6DFABFda5fCe5e9B66Aa7EbdDDCFDF4aD6a4FE4911E2D27BFDEBccBEA ; < 8gNsS29seNm1LLR3Re07u6X1uLR80VZa7iwg9v69JRy11P1WUp2qk26MGf1Khn8L > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 65,7548585984965 ; 2,91831892619471 ; 21,5317589548845 ; 65,7546085984965 ; 65,7551085984965 ; -6,2 ; 9,2 ; 2,9 ; -3,5 ; -7,1 ; -7,4 ; 0,24 ; FutureAP2173 ; fbb7e08dBD49fbEd0CcDecd59bD1a6b4E7aa84bAF1FC9F4EAD7E8c47BEEfD907 ; < 25ju9HPEgKUHu09M84cZ7MpIs4C8T3749c6zY1z9ZFJvWK9AMW4YSrb6JUA57dL6 > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 66,9115817811158 ; 3,4131419242205 ; 18,6041018119683 ; 66,9113317811158 ; 66,9118317811158 ; 5,2 ; 1,5 ; -7,1 ; 0,9 ; -7,9 ; 3,4 ; 0,22 ; FutureJU2129 ; aB0F6D6FC3feF0FCCdED34AdEABAAEcAcffdcDbd3EB7d50AEB8362Fe38Cec3df ; < qxiJYNpFmCOjjw13nE8X55h026lZ7URORW4hibE8E6s0qaoFZod05Gp5EdbcV1R1 > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 67,9016434280286 ; 4,04031708527713 ; 15,8060184373799 ; 67,9013934280286 ; 67,9018934280286 ; -0,7 ; 7 ; -2,9 ; -1,7 ; 4,5 ; 9,5 ; 0,62 ; FutureAU2184 ; efD0efBFBBC66dd4BfB2edebC1A33DBDFBe66fFbbdb81FFcee8fA0faCeecb4F7 ; < zuJ2EsMlzkEfKdtttURqj307wkvEF5s740iy2640Hnj7Oe78omZ0Fk6imOzy2HYj > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 69,0396912554752 ; 4,84108167738436 ; 13,2612118233827 ; 69,0394412554752 ; 69,0399412554752 ; -7,7 ; -5,2 ; 3,3 ; -5,7 ; 4,2 ; -5 ; 0,71 ; FutureOC2145 ; e83D32EB95b37F6f7EfbCCacDFA2E5cA5D88FA7e008C545DFf5D5b2eCF09bBDE ; < lN9oPpMHwvb6V51TCrLhk0WQZ0603ktKvCKPg1Ss1FoaghLo7t4EHh5Bj866oiCL > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 70,3518564677732 ; 5,87046535365781 ; 10,9840340125571 ; 70,3516064677733 ; 70,3521064677732 ; 1,7 ; 5,7 ; -5,7 ; -5,4 ; 5,3 ; 8,3 ; 0,12 ; FutureDE2157 ; C609dB9cDCfD5923Bdc1f5EfFbCBA8A450CaAb8CAdCBefBe8E0CececBEEa9Ad6 ; < BcHlQ9Q67jp75Hwpx4CUa2SxGwR6eb3Hg7U1r7n74tMrWhHN13tjpR8BvEU3ceaF > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 71,5621121169179 ; 7,20557825655558 ; 8,93148774032274 ; 71,5618621169179 ; 71,5623621169179 ; 9 ; -9,3 ; 9,4 ; -6,5 ; 8,1 ; -4 ; -0,31 ; FutureFE2244 ; B7ca61eBd55ee19bCeeCDE230C2ab3fAFC5EeCad6A3Dcdac44CADABFDAaa0F45 ; < 2w686sLl2Ca2h2eGB8tc3cNXf52ByH4TSntvs7X5MLuLGgH16c0sa1Mf6LzA62lp > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 72,8001434569046 ; 8,95140250048264 ; 7,13281979589001 ; 72,7998934569046 ; 72,8003934569046 ; -9 ; -1,6 ; -8,1 ; -1,2 ; 7 ; 4 ; 0,85 ; FutureAP2246 ; E6CBebFcddAbbB5dBBE9Ffd3DC20Eaf7ccD3487D7cfCcAe8DCEE9cfbb0c7ce23 ; < MUTLY91dg2EUYUB5wns9typUH6bVgUA9w02dy73fDCWDOuYatH6z7CL8X32q6l47 > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 74,1837445948671 ; 11,2550946104042 ; 5,59112581126519 ; 74,1834945948671 ; 74,1839945948671 ; 0,1 ; -4,7 ; -1 ; 8,5 ; 4,1 ; 8,6 ; -0,3 ; FutureJU2229 ; 1d0CCE55888D5dC8ffe4caF8BFFF9eaA05AABFfCBdAD7BEEaedebbdE8fF42ecd ; < 3T0oSj5uSxd2Sm3GgB4EmS5H0w9TMyHi6mdN25SP4OD4HyHCiF8Q2W0J1iW3lJgY > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 75,8870005898446 ; 14,3239501178437 ; 4,2979101410937 ; 75,8867505898446 ; 75,8872505898446 ; -1,2 ; 4,9 ; -8,4 ; -3,1 ; 8,1 ; -2,8 ; 0,24 ; FutureAU2240 ; DfDf7Ba5EA0a9C4ab238EF389a02Ca1DC23BEDbFbbE20ECEEbdfDeE62fbd16B8 ; < 88Ia4h5W7vVFdGRrQr7imiMjCQbMey57m0ko26s5kKT84dH6LcsQWm9njmRwFF7m > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 77,2705322507099 ; 18,4509209981858 ; 3,18789567514314 ; 77,2702822507099 ; 77,2707822507099 ; -4 ; -4,9 ; -1,8 ; -2,5 ; -8,6 ; -5,6 ; 0,9 ; FutureOC2238 ; D3cEc0bfCEE1E65CAbbDfF8bFdE2fC55bADcfBB5e4dbFF6eBaebBcdCB9DE0DD2 ; < 7gE182877W1k2ku9WyQvU9vSjv2whMARUo3VXvRgx5VLL9N7X50XZaatlU2a0h75 > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 78,8466753143467 ; 24,0540429172418 ; 2,27789700823348 ; 78,8464253143467 ; 78,8469253143467 ; 6,6 ; 6 ; -7 ; -0,5 ; -5,1 ; -9,5 ; 0,03 ; FutureDE2299 ; a71E0Fa6f8E5aDf0Bc8E0D1cBFBa6aEada3CC7ffb095Fcff5bDA1BFCf08079d9 ; < kX771lgr0Kew5t6uzI846s61fF8tz5mO0e935D1k2Xh8I4xRcKsr4ygc842B5k16 > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 80,2775306779822 ; 31,7368503971352 ; 1,52947377176497 ; 80,2772806779822 ; 80,2777806779822 ; 4,4 ; -0,5 ; 3,4 ; -2,5 ; -4,3 ; -8,7 ; -0,23 ; FutureFE2334 ; 621eAeb64EDDfA19a988Bac5BEEfFcd2cFCCFcEaEE8C3f1BBBB3ecA4bEae25F3 ; < opbEO62FRw4ang18s138h0MCrKW2C2VVa0RMLM8stL9G0Y2yF65Zq72DD68DPiHm > > // < CALLS ; 3Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 36,4000717284523 ; quote ; 61,5308193640129 ; 60,3002029767326 ; 0,0204081632653061 ; -0,3 ; 56,6083538148919 ; 66,4532849131339 ; -2,6 ; c6Dd1FE4fCa3fbcFbD0ACEf6CA6e12b3c0eCF3d3DbeeAaa2CD4d1DABD5a0d3e9 ; < 48EW95G4ex329T7579Qd7Qc10Cl769k85A511wKIPZM99x7X7OyF8rLMlb0Fp2lG > > // < CALLS 40,0400789012975 ; quote ; 58,045248210132 ; 56,8843432459294 ; 0,0204081632653061 ; -9,5 ; 53,4016283533215 ; 62,6888680669426 ; 9,5 ; B16adc51bAEFdCA8ce2ce3a5E0dedA01cCce8c1c84e4Cd1aAEC4D31FCd5fbBCA ; < 90ciNR3xZC5IytA9tE7Fk8XZ029vwEEt659r4l5V5f2MKstKQxB4QMDJf431X9CA > > // < CALLS 43,6800860741428 ; quote ; 54,6875870286012 ; 53,5938352880292 ; 0,0204081632653061 ; 0,1 ; 50,3125800663131 ; 59,0625939908893 ; -6,4 ; 4Ae7A67C34eBff6dD0cFD6cA763EB5f5afaEf2AAEcABcdf0dc1fdc7baD3aed0e ; < Hw6o1o186YWvZFu01HFOQPx9il37G5EKigPIt1qY9I3f6I3r9uM162uzkv90X9D2 > > // < CALLS 47,320093246988 ; quote ; 51,4669757423064 ; 50,4376362274602 ; 0,0204081632653061 ; 9,1 ; 47,3496176829219 ; 55,5843338016909 ; -2,2 ; eeBA59C7eEc4FECEEE17DceA0bfAcb7ccdFbe4CEb483B45F023FCe96f00ABa9f ; < tVZIfo9gEEMzMfF9Xphuc81zi4j3Fb4Js258NXgA9c62211sK9z2ly8YC2wKE6t8 > > // < CALLS 50,9601004198332 ; quote ; 48,3896143750377 ; 47,4218220875369 ; 0,0204081632653061 ; -1,2 ; 44,5184452250347 ; 52,2607835250407 ; 6,7 ; b98dBed2DdAC3FabceaF2FAE69CCA4cECD1Ff294FfCbaA0eCBB4BFA4a9200965 ; < 2x4Q6gj7Zh0A5AwD5FsO1DuhHNP035E92C8bv976n8jOOh2BV9Q79F3JwwRU2me7 > > // < CALLS 54,6001075926784 ; quote ; 45,4590564027714 ; 44,5498752747159 ; 0,0204081632653061 ; 4,6 ; 41,8223318905496 ; 49,0957809149931 ; -4,2 ; 1D6ccD5D4C4aabcdbB1Bc3Ed0A990C86E1EfadA8a24ee2AACaEE8e2dCdc8bffa ; < G77QVG5fWV4TOzGki2i170HfOTLpUzCcHigE3m6oYXO0MozwbqmU4lL9YkGKAI8W > > // < CALLS 58,2401147655237 ; quote ; 42,6765659694769 ; 41,8230346500873 ; 0,0204081632653061 ; 1,9 ; 39,2624406919187 ; 46,090691247035 ; -3,7 ; BdaB3ceEbDCaD1dd2af0aCfB1679eE5Ccf1D57c2aBacecD418BE62c8c32ccc7D ; < nS0C9az537v3k0w3R11yQGd8FFFjCL5P05N835C8GV8T7G0mw83Mv1jC8dLR7A3D > > // < CALLS 61,8801219383689 ; quote ; 40,0414910307221 ; 39,2406612101077 ; 0,0204081632653061 ; -7,4 ; 36,8381717482643 ; 43,2448103131799 ; 6,8 ; ACBFEdf68DdED2F33Ea6aCAdEAd396AB17a9Db6c23B49DB566D01eD54eFe3c7f ; < T64UDl72V1JW2OPyeQMktAX0XI1fmzGy3Owo8aph5Z0TGd9aK1O27q11o5FnFaC7 > > // < CALLS 65,5201291112141 ; quote ; 37,5516227399988 ; 36,8005902851988 ; 0,0204081632653061 ; -6,7 ; 34,5474929207989 ; 40,5557525591987 ; 5,8 ; 09934DcCA8343BfF76B3aFBe4B1cfea34a8C7fB51AfdDDbBB08D1fCfb8AFAAcd ; < noT03JP0twgp39S826513i4EZ7k3ksTFm4XWQeSS9m4R87jgC6mXdrn9c8743637 > > // < CALLS 69,1601362840594 ; quote ; 35,2035243902198 ; 34,4994539024154 ; 0,0204081632653061 ; 8,3 ; 32,3872424390022 ; 38,0198063414374 ; 2,1 ; cCd67Efc8fbAB0f1c1F2eDbc8DDBdF3dd436fCBecA0bDdC0BACBcbB6cbE6c14a ; < 6k71X2G5PES15FnrAz6y27DN257f2m5R5yK267qx74ODLyMX6H6resfwcdf40210 > > // < CALLS 72,8001434569046 ; quote ; 32,9928219942121 ; 32,3329655543278 ; 0,0204081632653061 ; 4,3 ; 30,3533962346751 ; 35,6322477537491 ; 8,6 ; F3fF0d6e9D5c6A437AFfAc09ffeee2Ca9E8Fc4CEdbbCD5CCfCde08397E8E6daf ; < 5IRHUby78j3M5a9jioP07xQz39823YX2xs6T3ACor7hM32ez93Dv3j33Ro26564w > > // < CALLS 76,4401506297498 ; quote ; 30,9144542159824 ; 30,2961651316627 ; 0,0204081632653061 ; -3,6 ; 28,4412978787038 ; 33,387610553261 ; -7,3 ; 8d1e8aCfAd8bf406deaAe8cfD5F6aeCBb9bAEdCBBA7FeFcD1cafFb3BAfBBa8bB ; < G7wBkBdhFZBmg1Dd0lU2y1O9O96qRv4C567110hg93sTCLmqFDar5j0sEh67eK4G > > // < CALLS 80,080157802595 ; quote ; 28,9628827714671 ; 28,3836251160378 ; 0,0204081632653061 ; 4,3 ; 26,6458521497498 ; 31,2799133931845 ; 4,1 ; eAAd0ea2Ed55B2020075179deDdC8CCafCfb48FFE8be1eEd5A1A1FBe603153dF ; < O989f02iwWD6C23cJA7hclu08MXcWMRB6XFa9Y015jB4Xj8Akk81Gr10832ySE64 > > // < CALLS 83,7201649754403 ; quote ; 27,1322663162922 ; 26,5896209899663 ; 0,0204081632653061 ; 2,3 ; 24,9616850109888 ; 29,3028476215956 ; 2,8 ; ACe1bB8fD2fA9fdcadCffBEd6Fe6aea870bDba7eDeefA4adE2BdC59B28b8Dd4b ; < 2GS37EF1MEso9CrAn4pX667JMSWTBNnuz442zoodZFZJ2Yqwg9Gkm9qxVN3hV52H > > // < CALLS 87,3601721482855 ; quote ; 25,4166017493327 ; 24,908269714346 ; 0,0204081632653061 ; -1,1 ; 23,3832736093861 ; 27,4499298892793 ; 3,4 ; dEEA6eEB9A4F4cAEa3Fdb1B6c7DDCee6FC85FCD8Dc7747506Dc14C7fa67De06F ; < 8Z7ih9VL96XsFuIaVHK4BS87s9D1cBdRwldsNjjumgld5Ig0dH08AeVX0Fwls8e2 > > // < CALLS 91,0001793211307 ; quote ; 23,8098371502222 ; 23,3336404072177 ; 0,0204081632653061 ; 6,7 ; 21,9050501782044 ; 25,7146241222399 ; -7 ; BcFCbf6edDF4f3fea65B689F8fB66e23FAF6CCfE9EAE19Fa6BcCCDBcDDd04cDf ; < P7O1PH7o2pz2Zj7o6BR6r2112BLkL1O83eq8BU0nmNei0WTe0O1daqJlL3d3KuSl > > // < CALLS 94,640186493976 ; quote ; 22,3059604855858 ; 21,8598412758741 ; 0,0204081632653061 ; 6,2 ; 20,521483646739 ; 24,0904373244327 ; -1,5 ; a3e757a0AC8a0b0acfD2ccB0DC1432d8b34B55E0cFAddBDDb444acEDd8DDE2cB ; < 4eApA653Qs7cUN7TJ9TO039h4C5oJE25bk5yvzW9v07RMWXiBA8C7J4C672zbXkn > > // < CALLS 98,2801936668212 ; quote ; 20,8990679279314 ; 20,4810865693728 ; 0,0204081632653061 ; 7,9 ; 19,2271424936969 ; 22,570993362166 ; -4,1 ; dE8DaaBbBB28A52ab178FCA22CBBDBff14eDdFDB3acbff25E1AabA2bFc4Aa97C ; < g5S25zeY2LA9W6P6A22cOlBRbY460HFSKI0cw2e5sKZa1SHDDg8xK13mqKw8ZrNq > > // < CALLS 101,920200839666 ; quote ; 19,583415239393 ; 19,1917469346052 ; 0,0204081632653061 ; -8,5 ; 18,0167420202416 ; 21,1500884585445 ; 5,7 ; bfd8da3B7C5cCD8c71eB89ab3eb0fEeedCaACfcC8fDDfC8FbbB4faCcffFfDfbc ; < S3Irza3kEFPV941g0c8T05bX4o7r9hi9zDJ21K5aiJiM136Wf4Q60VBYI7A40md9 > > // < CALLS 105,560208012512 ; quote ; 18,3534552464126 ; 17,9863861414844 ; 0,0204081632653061 ; 1,2 ; 16,8851788266996 ; 19,8217316661256 ; 0,8 ; 6aEadbBe434DfF2C7a12aCce14CebFEA8eeEE0f745Bcc3bDcA1ceC2a180E08b8 ; < Ep7JO6x1K3y2El7R9PGYLL7XBX3TFYy60qTDY1uM742Ef7riZwHPC8nPScziJAs1 > > // < CALLS 109,200215185357 ; quote ; 17,2038640106649 ; 16,8597867304516 ; 0,0204081632653061 ; -8,3 ; 15,8275548898117 ; 18,5801731315181 ; -7,2 ; 1Ca95d0c3fD0Abcaa469bAfbfeAEdEdFAaDDE6Ca90E1F6Fa5C78cee9F4bC3ce3 ; < e06s3P50o9k2K4c61tZAVjkw576d3FDa01Oryc92Juh5q4pM72NISePH8160XR9r > > // // < PUTS ; 3Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 36,4000717284523 ; quote ; 0,862212417340544 ; 0,844968168993733 ; 0,0204081632653061 ; -6,4 ; 0,7932354239533 ; 0,931189410727787 ; -1,8 ; FD6d3dC1fcdcf41e6daBD8fA16C7daCe0D5efd21BedEc3AC006CaDdc8bb9BFc5 ; < oSKf6aZxC5WdjK80Oz3bv63e1ruozFl6grV4XBjx3lh7J81L4j1G2z50W9vn3Uiv > > // < PUTS 40,0400789012975 ; quote ; 1,30978056879249 ; 1,28358495741664 ; 0,0204081632653061 ; 8,6 ; 1,20499812328909 ; 1,41456301429589 ; -5,9 ; 38e4CE46fe1CE1bbdFDEb3FeDaccAdfFd5D170E77B2B88CdAFEBEFFccbfEefdA ; < rhOPqfs9io4158f4pSuIKfFi6rCmF0AvO875p9G2i76JIuixurVYWHNSa8x1U7z3 > > // < PUTS 43,6800860741428 ; quote ; 1,88525869259442 ; 1,84755351874253 ; 0,0204081632653061 ; 0,8 ; 1,73443799718687 ; 2,03607938800197 ; 5,3 ; BAef329eee978eaDEDc2CEEF86B5ecDBee38d2FcAe92F7b32cCCFCDa045f459D ; < m16ucFqjR2uID1eCNaC6k2TrGxu9QwkieRkV828Efre8uRNCS7ES37WffZ6T5AYD > > // < PUTS 47,320093246988 ; quote ; 2,59778671163235 ; 2,54583097739971 ; 0,0204081632653061 ; 7,3 ; 2,38996377470176 ; 2,80560964856294 ; -0,5 ; F41Ad313c65Cd84CaFfE5ABC703c6a7E9EafEcdd0CA3BBE06aabA6cA5BaE1be5 ; < h4E65271L8946SDRSjPurSEb5d7cv2Ond8xZ4MA0rQcnCAC26ar6PLMiZ7pMgQF7 > > // < PUTS 50,9601004198332 ; quote ; 3,4535646496964 ; 3,38449335670247 ; 0,0204081632653061 ; 6,8 ; 3,17727947772069 ; 3,72984982167212 ; 2,4 ; 56dD17E1ABEb1DD3eea6Dc2eeeB0Bea228ecD28EE4cf5a3D87eE9aDfEEe0f17A ; < 6pcRNQ1c5B2x8b3hGJvA915ON0ff1U3bE0z1b6J3r98r8825UyAr58jx1y1Ul8Vj > > // < PUTS 54,6001075926784 ; quote ; 4,45614598276286 ; 4,36702306310761 ; 0,0204081632653061 ; 5,6 ; 4,09965430414183 ; 4,81263766138389 ; -8,3 ; EfBFbFC5Ced69dD2CbBaAb22ebF0CEf9495FDfCB484FDB385C1acea6aCFDAdbc ; < wciA5zWI47t84h0723LTc61EmITx1Z1fXS0W35n7SQH2kZ81hP4632XQn0WyIGDW > > // < PUTS 58,2401147655237 ; quote ; 5,60679485480114 ; 5,49465895770511 ; 0,0204081632653061 ; -5,4 ; 5,15825126641705 ; 6,05533844318523 ; 2 ; 9B33Bf7dfdeBD1Cb4c8fA0dEfEDFA93AFdaBC7Bcc0AcfCa3f04E3cCF0fbbedEC ; < Q675p4zuWMJlwy4o10p7qRF6jUT4UI3IDbsGdBZ0Mo3xJV1mKtluh88QZ23gt4h6 > > // < PUTS 61,8801219383689 ; quote ; 6,90485922137916 ; 6,76676203695157 ; 0,0204081632653061 ; -7 ; 6,35247048366882 ; 7,45724795908949 ; -5,9 ; 834765e3cEdBb9275CEE7bffccfDeeaAF2b3d2ceF4C3eA4e5eDA3D4711c03AEC ; < 1h1epC7XWs0GLlDiyXZ27HPo3P36GVIPl7EYZ908c08I1lJ58dK3nRhevF0kwg6G > > // < PUTS 65,5201291112141 ; quote ; 8,34813023598856 ; 8,18116763126879 ; 0,0204081632653061 ; -0,8 ; 7,68027981710948 ; 9,01598065486765 ; -8,3 ; 03160F74758bcC8464afa4DFeFaaFdca2f7DacCABbefdCEe9AA713C6b84Fdb75 ; < wj9xF06V32HukES68K326a361dJeNbB55c9v5f4t84owhWP4oT30NQd63ID5rJi0 > > // < PUTS 69,1601362840594 ; quote ; 9,93317119154237 ; 9,73450776771152 ; 0,0204081632653061 ; 5,4 ; 9,13851749621898 ; 10,7278248868658 ; -0,2 ; dFDbeddE4DEBeB4f1AA85B0824d2ABd0ACC59e1D0EdEfd3DafEBBa374a71Edcf ; < 2H7lu7y60k7hLHg7EuHl5Q4fin5332uni7A7TRb642oI6oND84C1l75ja7E3dGRs > > // < PUTS 72,8001434569046 ; quote ; 11,6556081008674 ; 11,4224959388501 ; 0,0204081632653061 ; 7,8 ; 10,723159452798 ; 12,5880567489368 ; 1 ; 171e0E2cd90d4bcbf3ECae3DcBF1Ecc157ECDbda5E9dCEE7Fa4dbadF0cefaF5E ; < 6rSo5yW7H7Vx3uP7hG9D3DyAYFDUhC37E3l67X0M8Pqn6gvXx36XL8H3N6EcQV53 > > // < PUTS 76,4401506297498 ; quote ; 13,5103796279705 ; 13,2401720354111 ; 0,0204081632653061 ; -3,8 ; 12,4295492577329 ; 14,5912099982081 ; -9 ; A2FdCDe1fe6e4FcecF442ec03Cfb0d9ce6cc62aEaBACDDf08bbf2dBBB467d64F ; < 9I82V3LKz738iZ32ylphtn6nK2KJA5IaV9Wu4KFlSW2D2uux173M9gxYdU8WLUOD > > // < PUTS 80,080157802595 ; quote ; 15,491947488788 ; 15,1821085390123 ; 0,0204081632653061 ; -9,6 ; 14,252591689685 ; 16,7313032878911 ; -2,3 ; CCeAE85ea6ea3236182D3cC3DdB8eAFC2A224CA404A4fb1adAEA14C316f22Dae ; < 8yVQCa7kB1315T4U3Ca2hhj1i6GXf48FQrfsOnl9JJjcRXmzzWeaeR6KTf73IYf7 > > // < PUTS 83,7201649754403 ; quote ; 17,5944703389458 ; 17,2425809321669 ; 0,0204081632653061 ; -3,4 ; 16,1869127118302 ; 19,0020279660615 ; 2,2 ; b85ecCAE5Afb9fcEA4F9CACc5Af93aCDDaAcD4DD75aceeDff5Ed2bBDeFEAe2b5 ; < XSdGg3ZKR9BjwuyJ73o57646HXBT73cF6Nzjk9TkDLlE0p5m33KkaDbqNRrj0eVN > > // < PUTS 87,3601721482855 ; quote ; 19,8119450773191 ; 19,4157061757727 ; 0,0204081632653061 ; 5,5 ; 18,2269894711336 ; 21,3969006835046 ; 8,5 ; fb3CF2fCb5CEAEF74aEbA7BA2bf9c6ac0bCaeB8bEBabBad6DCdBaEC82CF3Ecc7 ; < kDLOs145EJO896muh032Ht6N7S650a3mu76g96wX4324qqJwW92T6I4Y98eNS34O > > // < PUTS 91,0001793211307 ; quote ; 22,1383197835413 ; 21,6955533878705 ; 0,0204081632653061 ; -4,8 ; 20,367254200858 ; 23,9093853662246 ; 0,9 ; 5Cd3d00c321fE97EFbCc9CC56e44D4f55cE6AD6db2c7Df4a705edc13B4AaFACf ; < 3i4R2YV14FG1s9x0b4bjq94SPZh51N4XCY1CkLSlWUB7mMC7q1U1QX7UBc4KAU28 > > // < PUTS 94,640186493976 ; quote ; 24,5675824242378 ; 24,076230775753 ; 0,0204081632653061 ; 5,1 ; 22,6021758302988 ; 26,5329890181768 ; 4,9 ; BdDcCFA9aFbb79F4EB06E28Cb384DfbEffFc8c9eE90Bf8a31af0AcdD201fedd7 ; < sGiZ0Ly0vyn72Qo7m122qCBJywZ3a94LU698Kes7kEu6o3Njr201t9Da0jZ1hh40 > > // < PUTS 98,2801936668212 ; quote ; 27,0938291719162 ; 26,5519525884778 ; 0,0204081632653061 ; -2,1 ; 24,9263228381629 ; 29,2613355056694 ; 6,8 ; bAFB4e80eEe28cD13d6BC8b2AA1473bADbceaD8d9dD40Fa4a6Dc35Ac91eae6bc ; < QBI8deev6Khk6l8DCbd4y59PwzJ51My6S4fNy3G9TvQ85d0X8JE7TvNNW6VahO1T > > // < PUTS 101,920200839666 ; quote ; 29,7113157887105 ; 29,1170894729363 ; 0,0204081632653061 ; 9,7 ; 27,3344105256137 ; 32,0882210518074 ; 0,5 ; eCaccB81F4cf263497c2B03591a4aeBc1c5D0DA79f0A4BEFBe2d0C3AafF7fdF1 ; < 3ifss4XqDaS9nBM5qvkk8L1xCbR50OX2lI0And0N3Xzr3v4x0NGtS59dSXyoJ3ur > > // < PUTS 105,560208012512 ; quote ; 32,4144951010629 ; 31,7662051990416 ; 0,0204081632653061 ; -0,8 ; 29,8213354929778 ; 35,0076547091479 ; -9,2 ; EB18ECcbF2C8FCa4eAdCdfFad1f6daCcfFDBDD5da5deAd6D7c1bEcDc6e1CBbcc ; < wo9y90W5Ms9NY71o1N9m7BHJ604Y33Krk2cq18tW8H6kxQV2Ykc0Zi75g9YXHYp7 > > // < PUTS 109,200215185357 ; quote ; 35,1980431706479 ; 34,4940823072349 ; 0,0204081632653061 ; 3,9 ; 32,3821997169961 ; 38,0138866242997 ; -2,2 ; 5bc5D6eDB2B45ECa9C9f7ecE1bcB0FcdE7acD60D5BC29CEc8deAdcAdEDF2c6Fa ; < 8cP995pNXXVA7ZZ6ioXd09B1531h8K2aPoRx4lDuqUT8EBLDTt7u0VR5YxUOpE9t > > // Futures_Eurosibenergo_Engineering_LLC // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 56,013199 ; 1,14 ; 48,1343850877193 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; 5B0BfAe25CfeA3bebcB726b7f677cCBBe440F58421ADC5eF3ea2e0ac540DAb8c ; < xA81vJ17bZoX4ynr8LS9dqi4RYAVOGH6EWj883Vw4tS8Gg0fY4nvm7Z1heURz9sY > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 56,0142756738532 ; 1,14002508 ; 48,1342485849988 ; 56,0140256738532 ; 56,0145256738532 ; -4,7 ; -7 ; 7,6 ; 6 ; -1,5 ; 5,4 ; 0,16 ; Future69AP19 ; aB3EB8B06CBFCaCe5CcE202d10D7bDAeaF8EbCB7BCcead0f9Bf56A3F7ccdfdFC ; < ot42W1dd2UmuZHeZf8PD12FiZR6bi9Kv44q42NnjYKCTw5H13NB9Fccf0jsaKJUa > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 56,6207834187429 ; 1,15383235592122 ; 48,0719324416385 ; 56,6205334187429 ; 56,6210334187429 ; 1,8 ; -4,3 ; -1,3 ; 7,6 ; -6 ; -7,2 ; 0,68 ; FutureJU1916 ; Cad63B8bAa1fEC0deFacAfD2aCFAAE4F913F836fc3Cb5bB2dcde2DA46fb2daAf ; < uTw1H3eANwYaeXvCTru25t94h91qfq6ZxE2BaPJ7k081jZ2ItBH3iI8waX6K4KFj > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 57,2813462028584 ; 1,18203756547107 ; 47,4598356906114 ; 57,2810962028584 ; 57,2815962028584 ; -9 ; -2 ; -1,6 ; -2,2 ; -0,7 ; 5,4 ; 0,05 ; FutureAU1992 ; 50bE1CADadCbede9fdDDAc0e027F37ffDBbC93f1C2E3ad96AE6eacAeFEaaAd8B ; < OY3a2e47PyNBs6qMoAC2D6UkvR27C2x8D94uh97u91l67av8zzixroY6aa94fZ4O > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 57,9605451626703 ; 1,22544797504721 ; 46,2974343610447 ; 57,9602951626703 ; 57,9607951626703 ; 1,9 ; 0,8 ; -4,2 ; 2,2 ; 6 ; -6,6 ; -0,54 ; FutureOC1924 ; Ca0EdBF9cdDaEBE63Cd2d7bBe1dCd8F153bA8eCbCCddfBaAaa7Ec8CFb43D02Fd ; < FsDfN85Jo8Z8BIB6RLCBbS6qv812L265fwi4k85dxIE694OC36wEvdTUds497V6P > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 58,6734376270658 ; 1,2859152117272 ; 44,627765417175 ; 58,6731876270658 ; 58,6736876270658 ; 6,8 ; -2,7 ; 8,7 ; -6,5 ; -4,9 ; 8,8 ; -0,38 ; FutureDE1995 ; DB04BaeaAFE1Bbedaeac0baF90FdE6D1706FeccEdbBCC38d27Bf5bCd5Cf38ae1 ; < r1UbuKOsqBJ7HygpDfVGzBewPB63e4RAgO1wr11G5zai3WH08FT7p1bNCBbK8Jgg > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 59,4381293097846 ; 1,36575682087586 ; 42,5202873610157 ; 59,4378793097846 ; 59,4383793097846 ; 5,8 ; 0,5 ; -3,9 ; -6,8 ; -6,5 ; 4,2 ; -0,77 ; FutureFE2094 ; CBCeb98d4CD69dBAC27EfEFd4cC23dbD015eF0E7bfE3A31dFA6cAeDD7BfC23BB ; < 2v29HM24w5Z5Vm29Q2CZ2Q6SQ491B3YIMG3KQ3Z0Cv2Y936Jx36pjG50H920U4Q6 > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 60,216541479358 ; 1,46824594422802 ; 40,0125713039301 ; 60,216291479358 ; 60,216791479358 ; 9,2 ; 1,9 ; -0,4 ; 9,6 ; 9,9 ; -6,6 ; 0,67 ; FutureAP2023 ; DdeF91E89cdD82cc4c5fBcF07EeF9090C2c7b5d46E8da01dF6FAc2cb8DeECb6d ; < qs8Z7GaA7EHRV4t46hW68PNWgq6um9A831p6m4UOu0Zj6183R6Bk8TRIasxM2475 > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 61,0159387067991 ; 1,59751157621794 ; 37,1943640441419 ; 61,0156887067991 ; 61,0161887067991 ; -4,7 ; -6,5 ; 6,2 ; -5,7 ; -2,9 ; -1,2 ; -0,24 ; FutureJU2061 ; EbFabBAa1F1eFbCE4085cCFd5cDBB0D8EaeAEFaB8EE696bbBCfc0cfec85C7EbD ; < 38qOm1Rj00SX0I8370eYnOyd6fG0KTfGhG5130Lb33Q393c9v7n5Yn89W38ANkDb > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 61,9238665771775 ; 1,75915545405886 ; 34,2009064544592 ; 61,9236165771775 ; 61,9241165771775 ; -5,6 ; -8,1 ; -8,5 ; -6,6 ; 6,3 ; 9,6 ; 0,53 ; FutureAU2034 ; bdAccBBAaAF1ADFfABDd3BcfD9EC3AcaFc33AD0BDfDEBD64aEADcde6ABBBb5e9 ; < yv0zP552gx110qQLtlVcmqmAK6111ycltPZ8WBNcS4Jnw4HDkdYyY2KvO1qkgB4U > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 62,78621593597 ; 1,96058882074028 ; 31,024162981947 ; 62,78596593597 ; 62,78646593597 ; 0,3 ; -5,6 ; -8,2 ; -6,9 ; 7,8 ; -7 ; 0,3 ; FutureOC2017 ; 58EE675E1dDCBAEFAacb04cABddBd9b6977DFfB0fE7EEf8FA0FCeAbD0fE6fFFA ; < jSD5Sqh5l5zsR86st8rAaliQ3jfhudac8x8iEJE3iQo0n0J1gSd18tB7Cc928sch > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 63,7030891371721 ; 2,21189628703202 ; 27,8002152319043 ; 63,7028391371721 ; 63,7033391371721 ; 5,5 ; -2 ; 9,6 ; -5,7 ; -8,1 ; -3 ; 0,89 ; FutureDE2097 ; DFb9FA0Ba3dB2c728EAcFf3E16bCEe75FBedFac75AfD36CC05cAFEAeAA05E31D ; < 9De8Q7ph95F309yV7G7UY801jCVR195wRm26guuuoMty0084bt06llawqcO27Y3h > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 64,7915207025541 ; 2,52553289687528 ; 24,6545938414493 ; 64,7912707025541 ; 64,7917707025541 ; -2,9 ; 7,1 ; -3,7 ; -4 ; 3,3 ; -1,3 ; -0,29 ; FutureFE2115 ; bFFA1Db6DFABFda5fCe5e9B66Aa7EbdDDCFDF4aD6a4FE4911E2D27BFDEBccBEA ; < 8gNsS29seNm1LLR3Re07u6X1uLR80VZa7iwg9v69JRy11P1WUp2qk26MGf1Khn8L > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 65,7548585984965 ; 2,91831892619471 ; 21,5317589548845 ; 65,7546085984965 ; 65,7551085984965 ; -6,2 ; 9,2 ; 2,9 ; -3,5 ; -7,1 ; -7,4 ; 0,24 ; FutureAP2173 ; fbb7e08dBD49fbEd0CcDecd59bD1a6b4E7aa84bAF1FC9F4EAD7E8c47BEEfD907 ; < 25ju9HPEgKUHu09M84cZ7MpIs4C8T3749c6zY1z9ZFJvWK9AMW4YSrb6JUA57dL6 > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 66,9115817811158 ; 3,4131419242205 ; 18,6041018119683 ; 66,9113317811158 ; 66,9118317811158 ; 5,2 ; 1,5 ; -7,1 ; 0,9 ; -7,9 ; 3,4 ; 0,22 ; FutureJU2129 ; aB0F6D6FC3feF0FCCdED34AdEABAAEcAcffdcDbd3EB7d50AEB8362Fe38Cec3df ; < qxiJYNpFmCOjjw13nE8X55h026lZ7URORW4hibE8E6s0qaoFZod05Gp5EdbcV1R1 > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 67,9016434280286 ; 4,04031708527713 ; 15,8060184373799 ; 67,9013934280286 ; 67,9018934280286 ; -0,7 ; 7 ; -2,9 ; -1,7 ; 4,5 ; 9,5 ; 0,62 ; FutureAU2184 ; efD0efBFBBC66dd4BfB2edebC1A33DBDFBe66fFbbdb81FFcee8fA0faCeecb4F7 ; < zuJ2EsMlzkEfKdtttURqj307wkvEF5s740iy2640Hnj7Oe78omZ0Fk6imOzy2HYj > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 69,0396912554752 ; 4,84108167738436 ; 13,2612118233827 ; 69,0394412554752 ; 69,0399412554752 ; -7,7 ; -5,2 ; 3,3 ; -5,7 ; 4,2 ; -5 ; 0,71 ; FutureOC2145 ; e83D32EB95b37F6f7EfbCCacDFA2E5cA5D88FA7e008C545DFf5D5b2eCF09bBDE ; < lN9oPpMHwvb6V51TCrLhk0WQZ0603ktKvCKPg1Ss1FoaghLo7t4EHh5Bj866oiCL > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 70,3518564677732 ; 5,87046535365781 ; 10,9840340125571 ; 70,3516064677733 ; 70,3521064677732 ; 1,7 ; 5,7 ; -5,7 ; -5,4 ; 5,3 ; 8,3 ; 0,12 ; FutureDE2157 ; C609dB9cDCfD5923Bdc1f5EfFbCBA8A450CaAb8CAdCBefBe8E0CececBEEa9Ad6 ; < BcHlQ9Q67jp75Hwpx4CUa2SxGwR6eb3Hg7U1r7n74tMrWhHN13tjpR8BvEU3ceaF > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 71,5621121169179 ; 7,20557825655558 ; 8,93148774032274 ; 71,5618621169179 ; 71,5623621169179 ; 9 ; -9,3 ; 9,4 ; -6,5 ; 8,1 ; -4 ; -0,31 ; FutureFE2244 ; B7ca61eBd55ee19bCeeCDE230C2ab3fAFC5EeCad6A3Dcdac44CADABFDAaa0F45 ; < 2w686sLl2Ca2h2eGB8tc3cNXf52ByH4TSntvs7X5MLuLGgH16c0sa1Mf6LzA62lp > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 72,8001434569046 ; 8,95140250048264 ; 7,13281979589001 ; 72,7998934569046 ; 72,8003934569046 ; -9 ; -1,6 ; -8,1 ; -1,2 ; 7 ; 4 ; 0,85 ; FutureAP2246 ; E6CBebFcddAbbB5dBBE9Ffd3DC20Eaf7ccD3487D7cfCcAe8DCEE9cfbb0c7ce23 ; < MUTLY91dg2EUYUB5wns9typUH6bVgUA9w02dy73fDCWDOuYatH6z7CL8X32q6l47 > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 74,1837445948671 ; 11,2550946104042 ; 5,59112581126519 ; 74,1834945948671 ; 74,1839945948671 ; 0,1 ; -4,7 ; -1 ; 8,5 ; 4,1 ; 8,6 ; -0,3 ; FutureJU2229 ; 1d0CCE55888D5dC8ffe4caF8BFFF9eaA05AABFfCBdAD7BEEaedebbdE8fF42ecd ; < 3T0oSj5uSxd2Sm3GgB4EmS5H0w9TMyHi6mdN25SP4OD4HyHCiF8Q2W0J1iW3lJgY > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 75,8870005898446 ; 14,3239501178437 ; 4,2979101410937 ; 75,8867505898446 ; 75,8872505898446 ; -1,2 ; 4,9 ; -8,4 ; -3,1 ; 8,1 ; -2,8 ; 0,24 ; FutureAU2240 ; DfDf7Ba5EA0a9C4ab238EF389a02Ca1DC23BEDbFbbE20ECEEbdfDeE62fbd16B8 ; < 88Ia4h5W7vVFdGRrQr7imiMjCQbMey57m0ko26s5kKT84dH6LcsQWm9njmRwFF7m > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 77,2705322507099 ; 18,4509209981858 ; 3,18789567514314 ; 77,2702822507099 ; 77,2707822507099 ; -4 ; -4,9 ; -1,8 ; -2,5 ; -8,6 ; -5,6 ; 0,9 ; FutureOC2238 ; D3cEc0bfCEE1E65CAbbDfF8bFdE2fC55bADcfBB5e4dbFF6eBaebBcdCB9DE0DD2 ; < 7gE182877W1k2ku9WyQvU9vSjv2whMARUo3VXvRgx5VLL9N7X50XZaatlU2a0h75 > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 78,8466753143467 ; 24,0540429172418 ; 2,27789700823348 ; 78,8464253143467 ; 78,8469253143467 ; 6,6 ; 6 ; -7 ; -0,5 ; -5,1 ; -9,5 ; 0,03 ; FutureDE2299 ; a71E0Fa6f8E5aDf0Bc8E0D1cBFBa6aEada3CC7ffb095Fcff5bDA1BFCf08079d9 ; < kX771lgr0Kew5t6uzI846s61fF8tz5mO0e935D1k2Xh8I4xRcKsr4ygc842B5k16 > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 80,2775306779822 ; 31,7368503971352 ; 1,52947377176497 ; 80,2772806779822 ; 80,2777806779822 ; 4,4 ; -0,5 ; 3,4 ; -2,5 ; -4,3 ; -8,7 ; -0,23 ; FutureFE2334 ; 621eAeb64EDDfA19a988Bac5BEEfFcd2cFCCFcEaEE8C3f1BBBB3ecA4bEae25F3 ; < opbEO62FRw4ang18s138h0MCrKW2C2VVa0RMLM8stL9G0Y2yF65Zq72DD68DPiHm > > // < CALLS ; 5Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 32,8774292992482 ; quote ; 68,7696516082759 ; 67,3942585761104 ; 0,0204081632653061 ; -5,7 ; 62,9242312215724 ; 74,6150719949793 ; -6,3 ; dfcCfb1cf1EdAe9AFea8cBDeecEC483cEFEDDD9D5E7AD446bDc7Eef1bcfDFDEe ; < UyGk5wa2uy99gjHngwjUL36J0AcSvHF9VE0sCSCDP30z7H2Lwt6u1eNv8rTvmy0f > > // < CALLS 36,1651722291731 ; quote ; 66,0394899014161 ; 64,7187001033877 ; 0,0204081632653061 ; 3 ; 60,4261332597957 ; 71,6528465430364 ; -9,5 ; 496Acaa5a85eCfCc67d1b4bC2b8Acb453fDfd66175Ebced117dbaEcc9D2ebAFb ; < NK225msRH53R7Psi6ZPJqSh9rKBc7KfmLKh0Bl3k76p65niIL717kimsN6DF9KCi > > // < CALLS 39,4529151590979 ; quote ; 63,4088182749812 ; 62,1406419094816 ; 0,0204081632653061 ; 3,7 ; 58,0190687216078 ; 68,7985678283546 ; -3,3 ; 4f1F9EdAa6CDDd4f888C4EEB1DF962BaD55D9BF4D0Cd55aF9d28DAEcCAFeb3ED ; < V2tD9u04YK5N95DDNb06lB1n9qj7XRCwM3ZkdIm1lTBB6HhGx7M7NqF7or7sU4n4 > > // < CALLS 42,7406580890227 ; quote ; 60,8785228676813 ; 59,6609524103277 ; 0,0204081632653061 ; -6,8 ; 55,7038484239284 ; 66,0531973114342 ; 4,8 ; Bd2dFa6Eba0c8ea7Baf3E3F2efe13d76FCf5CcFDbc255FCEFE7f6E6e8aaA2fFC ; < NdAXb185Ejn6sbg6ApQhEL4Vd8nHxa01TwWwddXDKcKRCG9u0x6u7Yefl5yNX4mz > > // < CALLS 46,0284010189476 ; quote ; 58,4483243190617 ; 57,2793578326805 ; 0,0204081632653061 ; -5,7 ; 53,4802167519415 ; 63,416431886182 ; -5,8 ; ACEfdeaedaaaEE4dabfACAC6154c7cfFfEE33ec6B9bE23C9Bb3055ede83eaBBc ; < i19369yDI0diTCNsHV7NWQhBSpA8A0l9I4W9v5CShrExUT30NJSHCT7343VgiiSc > > // < CALLS 49,3161439488724 ; quote ; 56,1170355544163 ; 54,994694843328 ; 0,0204081632653061 ; -2,3 ; 51,3470875322909 ; 60,8869835765417 ; -7,4 ; ADcCeCF61aE35EF65fCbfdB110D920e5bC2eFe6ba4BbfC276Bd4Fb7ffCDF40A2 ; < Eu14a0KCqJHz7Y4F5oK6v1D06SK8UOmF2NmOSv2u8Foq2h1nF8EJV7a3zJdJ6OTO > > // < CALLS 52,6038868787972 ; quote ; 53,8827769498618 ; 52,8051214108646 ; 0,0204081632653061 ; 7,1 ; 49,3027409091236 ; 58,4628129906001 ; 4,3 ; 882FBd98fEd6aAaC01BaF47c9D6c1a1C61e1EA9eA8faAe4be38D3bdb0fCbe0A4 ; < 11uo84P15471j9oE3D3KBn8m72MpLi6TEPd5lvkw35sDYMTswBrc842GAe520J7D > > // < CALLS 55,891629808722 ; quote ; 51,7431529046748 ; 50,7082898465813 ; 0,0204081632653061 ; 4,3 ; 47,3449849077774 ; 56,1413209015721 ; 8,4 ; 877AeF8BfceBEb7Fb24edEacABb5AEbeAd7cEec01F5C31EfC7AC0Bb4FbfC0e4c ; < 7n1629Y2T0em67n272XJt33gKWOiMQp8FCI5xS59qi3cEPyTMe9nsoUhIXZ6o2z0 > > // < CALLS 59,1793727386469 ; quote ; 49,6953949372565 ; 48,7014870385113 ; 0,0204081632653061 ; 2,3 ; 45,4712863675897 ; 53,9195035069233 ; 1,1 ; 9Fcbf5CbADcebAfBbdbfBecA6dBEB184Ff2fFfeDEB7beAec5ADc943F2feb2eF9 ; < WI437d7NFKBNFv5ql0Cs4wCmNQm97B9BXQ7AajjMQ128mOj6q65x23kms7NwC3xf > > // < CALLS 62,4671156685717 ; quote ; 47,7364764920315 ; 46,7817469621909 ; 0,0204081632653061 ; -8 ; 43,6788759902088 ; 51,7940769938542 ; -3,4 ; C96bFeFDC8Ba919BfFd26FeCAbFcDffEc47D83bFC3D7BEbBA27adBDA8cd87FDA ; < Y7fNaLEw0jJv1EsSNCk0jxuNyM92x4x47getwoFjJPydP7m4Lqt6OkJ38968BnlT > > // < CALLS 65,7548585984965 ; quote ; 45,8632042431598 ; 44,9459401582966 ; 0,0204081632653061 ; -6,8 ; 41,9648318824912 ; 49,7615766038284 ; -0,9 ; 64faDbA53E663febFEe659Ef1aFfFfAaECfffcbdAfB7Dde39Cb74a99fd7fe5BE ; < 9zWk2eGkn5r741QIlFxT40L8IX6ABAwZYY0lZeDbRFSc1329JCxut4O9Sgg8Zk5v > > // < CALLS 69,0426015284213 ; quote ; 44,0722900961976 ; 43,1908442942737 ; 0,0204081632653061 ; -6,4 ; 40,3261454380208 ; 47,8184347543744 ; -4,6 ; 8D136eCaFCAC0FbEECc18fDbe9f4DEa5ede24F9bdFeCFDb6AAAc8f9Aa7A1ffEa ; < 0220b7J0FTESBU4q17o2X52tQ1946IBBj7yPy0ISc3fU6XXdx2729mTvH9i2HLud > > // < CALLS 72,3303444583461 ; quote ; 42,3604074685174 ; 41,5131993191471 ; 0,0204081632653061 ; 0,3 ; 38,7597728336934 ; 45,9610421033414 ; 6,7 ; 7a8dBbDAa2fd90DCB175a1dE2eCcf5a7d754CF2EFe8ECFCDD84809720F5BfFde ; < Wvw0PW014p790uWxXhGAdewr25PS3uXpVc88fHzvfb6m1vAxOTokJB1JcdAOiBWQ > > // < CALLS 75,618087388271 ; quote ; 40,7242348442273 ; 39,9097501473428 ; 0,0204081632653061 ; 7,7 ; 37,262674882468 ; 44,1857948059867 ; -6 ; 5BAc9feEeE8abe7fcFf38D5efdFfdaA2bC554d8c0afA4DFBF17fdB7ADBd09eD6 ; < k5VtxGbSWA5cp7k5R3EIb4tkZ4900PzlaQD050S5C31CS3yVLFxVh8CtIlA24876 > > // < CALLS 78,9058303181958 ; quote ; 39,1604890792011 ; 38,3772792976171 ; 0,0204081632653061 ; 8,2 ; 35,831847507469 ; 42,4891306509332 ; 3,9 ; Cc4ccAAE20EcFEACB3DCDcFb2E1fC43A095fD667E80ffdf80cdFadf5bAb7ab0E ; < 5uF3GQ4Y96tUH7G7uxmEkM11IJFLRTr8IM647rn1E13O3KKDyC36p63Tp5n6Bo49 > > // < CALLS 82,1935732481206 ; quote ; 37,6659504849378 ; 36,912631475239 ; 0,0204081632653061 ; -0,7 ; 34,4643446937181 ; 40,8675562761575 ; -6,4 ; Ab82e8eEAd6C3B8bc83418EADF5d7dFdbaEB7C2fffBDf9AEBC6F2e7A4FCbAbBb ; < IUK4e5p07aM19XWYLac53F69H3Ijf1ul8J8M0T2uaUa4X8786x15lOUoYT7Yp55o > > // < CALLS 85,4813161780455 ; quote ; 36,2374813440611 ; 35,5127317171799 ; 0,0204081632653061 ; 8,2 ; 33,1572954298159 ; 39,3176672583063 ; 5,4 ; BBb2AD6cF3CeC6c6EacE5BEd9FEB908CcD8C6baDDa2b7Bbeb7ACADD1fffE8Fd3 ; < 8HIB1Hd7pbDYHxZ2U7rJ1r1ri1380XsUXJvlHiuHfb648uShLJo5GU1w60bWr6hL > > // < CALLS 88,7690591079703 ; quote ; 34,8720391984027 ; 34,1745984144347 ; 0,0204081632653061 ; -5,2 ; 31,9079158665385 ; 37,836162530267 ; -0,5 ; d06f4f0B7D576C1B4CedBBfdF78DDa1dDE6Ae2BEa35bc1D18ed9De145B1AFB2B ; < 3TH9P3t5YqzdN8iolIW21Njks3Jf1Nn9zrm60lq2KPvoYDL9h4Wo3QtZAY9EVPs3 > > // < CALLS 92,0568020378951 ; quote ; 33,5666859942514 ; 32,8953522743664 ; 0,0204081632653061 ; -3,4 ; 30,71351768474 ; 36,4198543037628 ; 0,2 ; e679c00FB4e95C2f0EbB7e0Ca9E67dfFeD9BF6Ebc703Bbe3AcaC5E8BBb5FbE14 ; < 3Iy0C1gC8ZVlX9I3ZHZvIV1VNC5B9CqT1II6Eqp50Oy2S5vcKZDj1mB7ZSXuvJS4 > > // < CALLS 95,3445449678199 ; quote ; 32,3185939599338 ; 31,6722220807351 ; 0,0204081632653061 ; -2 ; 29,5715134733394 ; 35,0656744465281 ; -3,5 ; c503ebEDCA1aC1De613E36470C32FFACCf4bBE17AC20DcEFAeae4EECFfCDfced ; < 696B0Wr5hN0OOen3QqN4ZS1h3w60Uv0tbvqykTOOI2uQmbvU75h1XdTaI0PVL3u5 > > // < CALLS 98,6322878977447 ; quote ; 31,1250489205501 ; 30,5025479421391 ; 0,0204081632653061 ; -3,5 ; 28,4794197623033 ; 33,7706780787969 ; -4,5 ; e7aeA5c8edCbDE4A4acb7fE9dACCdf6BC1Cd2aDcF8dcDdBD0c1c13B2d3AdE33E ; < mXNLJX60QGNJ5bUHj7S1j65wmSF3199jp5C0jhD91FwUdHYY2HyMemRFvJf24AbV > > // // < PUTS ; 5Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 32,8774292992482 ; quote ; 1,45814086476824 ; 1,42897804747287 ; 0,0204081632653061 ; 6,6 ; 1,33419889126294 ; 1,58208283827354 ; -9 ; 2773DCafe51cfAf9ED1AAD36DE4dCEFCBac8EAdb6a4B4d83dbfd1ffEAA4ecD35 ; < 8zu1xayYu70rl25TO742H07UnCsE3OF7y806ZJf12I8hLk84lVTi43bcPPMIG6ng > > // < PUTS 36,1651722291731 ; quote ; 1,99682808355766 ; 1,95689152188651 ; 0,0204081632653061 ; 5,7 ; 1,82709769645526 ; 2,16655847066006 ; 3,1 ; 9FAC163fc9aEBd07EafDdCDc7AF4aCc7fA7cfeF4cF1e5CbEFcFEa07b3aAE7AfD ; < 2tUvJpiXFtK5rRZ8qZ9cERd275W2uMGy9iH7zxP825GU59vtI954ms7FW9S8idQI > > // < PUTS 39,4529151590979 ; quote ; 2,63500538277204 ; 2,5823052751166 ; 0,0204081632653061 ; -2,2 ; 2,41102992523641 ; 2,85898084030766 ; 0,2 ; C3A5CBCCcBEb7bec8F23f0B3C280bcc0cCaBfb84Ea6E4e5Ea4D2923DC4fdda5f ; < 7c17da4SLXCESn3195xZch9FUGX37h643729wrnUJeb20204Pl43IU3u04z1V0u0 > > // < PUTS 42,7406580890227 ; quote ; 3,37355890112138 ; 3,30608772309896 ; 0,0204081632653061 ; -1,4 ; 3,08680639452607 ; 3,6603114077167 ; -9,3 ; 991dBedB95afbCDEdeCb434d168ae3AceEAC1eFe7ef1bdaCB9aD5bd608bFAafD ; < Ke9aSvOE872iesjXnKY40c60n4UeiMOJ98JHDW00c7o9lnD1DyJzHFbBa1J2hhMH > > // < PUTS 46,0284010189476 ; quote ; 4,21220927815102 ; 4,127965092588 ; 0,0204081632653061 ; 1 ; 3,85417148950818 ; 4,57024706679386 ; 0,1 ; Ada9c1BFA29cB8a4aED83FCFfF7DAc7AC2F7B5eaBfB4FeCac30Ea6AaDeDACDbf ; < 1M1B8D7urS7POc4N1Z8c7NaUnR1CkQPEFRwb651YRO41fNcF7n97WmB24T6ysy37 > > // < PUTS 49,3161439488724 ; quote ; 5,14976943915488 ; 5,04677405037178 ; 0,0204081632653061 ; 8,9 ; 4,71203903682672 ; 5,58749984148305 ; -2,4 ; 65CABdebfEE0D7decF3b96BBFeDA45f16cf3EcdF2fbBaebFafEAaa8bdfEeFCF3 ; < Zuo79eRuK9i36KlkZxR550Isc9VawkEY4F8uaLwxssmjZoh97XywMxf4K1r5MKjX > > // < PUTS 52,6038868787972 ; quote ; 6,18435976024961 ; 6,06067256504461 ; 0,0204081632653061 ; -3,7 ; 5,65868918062839 ; 6,71003033987082 ; -5,4 ; F0cb7d0EcAcEE4EbCF3c04E9dAe9ebDa47bbBddaF88CBF4AC3aFB0828dCeFAfE ; < GLtpzghMGb4cug7oWt9CJX699kvk2k4P07GegRP6lZQ9Lk5pzfPK716353F00muM > > // < PUTS 55,891629808722 ; quote ; 7,31358464071178 ; 7,16731294789755 ; 0,0204081632653061 ; -9,7 ; 6,69192994625128 ; 7,93523933517228 ; 9,4 ; CAD8ce1eEfed4ad3fDCBCED79Afc1f9cBdE7E8F32AeDD57fB2e2d3e7Ef73EEbF ; < M1lr48C9kiT8HEhFezTwsTdd7GWNiM3f3t39t6Ecga1LI4vph8PsE7HM36dW5a9I > > // < PUTS 59,1793727386469 ; quote ; 8,53467559894273 ; 8,36398208696387 ; 0,0204081632653061 ; 9,2 ; 7,8092281730326 ; 9,26012302485286 ; 6,6 ; ce1b57dEDd2e24b8b15baDa1DDA2DDE5b8bBB53bA5cBDb1Cc054B4549e3BaaDc ; < 6ST0l83CIffBs44GF1VVJQHh3n7U0vg20MG3Ds2lEkK9zy0PimaeQp8xrQg7MoDU > > // < PUTS 62,4671156685717 ; quote ; 9,84460607936701 ; 9,64771395777967 ; 0,0204081632653061 ; 8,5 ; 9,00781456262082 ; 10,6813975961132 ; 7,3 ; BAFEF1beA4bDacAbf96D06A9E4C5499F78199de7BaACcA0af9bdfE7CF2aBcdeA ; < 0fNm1Z2Pw57wy4h914L6h0Pku72Wmd20YS661yZT2Ybpe29o7S75PeVtPam4w306 > > // < PUTS 65,7548585984965 ; quote ; 11,2401827561445 ; 11,0153791010216 ; 0,0204081632653061 ; 5,1 ; 10,2847672218722 ; 12,1955982904168 ; -6,1 ; 5F4547Beee11eb46EaBDc1abc01EFC8eA589DF8BeFeE6839FDf2DeBBc3dECEeF ; < b41u9nZF32Z20lu4x78aS37t03L5C8sCMklO2a055g443S8k0v2nt6y6TzTQMKql > > // < PUTS 69,0426015284213 ; quote ; 12,7181175348316 ; 12,4637551841349 ; 0,0204081632653061 ; -9,8 ; 11,6370775443709 ; 13,7991575252923 ; -3,5 ; C0cbaB16BCD8cbEBAF9C76fcC3aBDD3f1AbEbDeAc6Cb8BaCCABcafbDe4Fd44Ff ; < wtvd86Fb6LWeaK2u80ZeClNHs7635WrqlS1855ED7OrcfD5DZV3Lly7fc5687eSn > > // < PUTS 72,3303444583461 ; quote ; 14,2750838328006 ; 13,9895821561446 ; 0,0204081632653061 ; 1,6 ; 13,0617017070126 ; 15,4884659585887 ; 3,9 ; 1dece4FCDaeAECDBCb8feEfb9A91CCFbbb97cFadD28FbFcF9D0e0DebfdA7eDef ; < beR51l172RJ4MNZvzck6NX5z49kTLwY7pKKG8MJ5B4954n2wQD3Mr6vPT8Kw8hh9 > > // < PUTS 75,618087388271 ; quote ; 15,9077601341598 ; 15,5896049314766 ; 0,0204081632653061 ; 1,9 ; 14,5556005227562 ; 17,2599197455634 ; -7,6 ; 1EeBAcaF2De5efe32b1DcEAf3c2FAFedeC0d4AFD6BabAedB46DECd549e5D3cDD ; < 9i69TfN609ewNt5iOxy3oDHicJtmxkTNSv05iY79ntEEZ3wV1gmL1ZyPiXK2yz0Q > > // < PUTS 78,9058303181958 ; quote ; 17,6128632947828 ; 17,2606060288872 ; 0,0204081632653061 ; -2,3 ; 16,1157699147263 ; 19,1099566748394 ; 0,5 ; 70C57fdCB2a9Ebfc3daFcA4fefabE84eDEAacafA5dA3B5fBD5DcBABC4D83cAe8 ; < 9X64bA1H3k0FUy9qPJ6d9LXywQ7EfgJY75ziY5Jw2E187nJP9YDSX4DJ9j9iGHqN > > // < PUTS 82,1935732481206 ; quote ; 19,3871736261687 ; 18,9994301536453 ; 0,0204081632653061 ; 4,8 ; 17,7392638679444 ; 21,035083384393 ; 0,1 ; ecB1fE08EB75a3f6cBdD50efEf38eD0A5E6C82C3DDdF95be4aFf70BDfEE11a08 ; < RoMBEO22Yt25A5fmaCw72SBQvW0tDmP7DEmy80z9CuygZS47LBz3r0lRqP3WiD1c > > // < PUTS 85,4813161780455 ; quote ; 21,2275534109413 ; 20,8030023427224 ; 0,0204081632653061 ; -8,4 ; 19,4232113710113 ; 23,0318954508713 ; -0,7 ; cFEa3AcDbe1aDd6D7d85A12Ddc75d4c0D5acFaF2Cf2FEfDDB603DBEDCd21c22b ; < 6QoPq6td1Z9d86Tt3P1qW7P0fb7o70gWTLFR03plkE17M5NiqPpj76z7EQUKhfkZ > > // < PUTS 88,7690591079703 ; quote ; 23,1309601909321 ; 22,6683409871135 ; 0,0204081632653061 ; 4,6 ; 21,1648285747029 ; 25,0970918071614 ; 4 ; B4BDe2E08BE4BFFcAb5Aa4edEedcacFA67E65f4AaF7c9CebBA5eC6fD5bF24Ad3 ; < Rkj2vrfGJN5691lY91z2JVMqAIOc8gpwK7VeH1yF8M9y0A805N4nJCFV9JxW3Mtu > > // < PUTS 92,0568020378951 ; quote ; 25,09445591243 ; 24,5925667941814 ; 0,0204081632653061 ; 6,7 ; 22,9614271598735 ; 27,2274846649866 ; -5,4 ; b3bc47b43dcECAe71BfCB4c2AD74eeCAA0EADac8bDf20Ce1eEC51fBBbcaCf1fd ; < A35RAC8cODD53424oBC1YOD4Tq9Rf96N592R71V36Sy8LTk2hg1zvAez4eDzF1LX > > // < PUTS 95,3445449678199 ; quote ; 27,1152128037616 ; 26,5729085476864 ; 0,0204081632653061 ; -5,8 ; 24,8104197154419 ; 29,4200058920813 ; -2 ; DBE4CeaD98edd1FcAD2dE65E38EfB5Bf7c8A24ba27F4E0AEBd7BbDEE88Ac7E01 ; < Y6Km2QpA9Dd8yhWc7m36JL8QPn4vQEG0d3xw67mV3bh2a1h1vBV6tT3p9aiEdODU > > // < PUTS 98,6322878977447 ; quote ; 29,1905166900272 ; 28,6067063562267 ; 0,0204081632653061 ; 8,5 ; 26,7093227713749 ; 31,6717106086795 ; -5,8 ; a7DF9ccFec3F25be210aFC3e3bcDca073C5eBD5F3b4Ad9a46cCf5A7Fcfc938Ca ; < KvNMs135ui33eSLLY101FJxH75imbI0O3nwL88D5i4Ho61U5O5a68hlmKXws489r > > // Futures_Eurosibenergo_Engineering_LLC // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 56,013199 ; 1,14 ; 48,1343850877193 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; 5B0BfAe25CfeA3bebcB726b7f677cCBBe440F58421ADC5eF3ea2e0ac540DAb8c ; < xA81vJ17bZoX4ynr8LS9dqi4RYAVOGH6EWj883Vw4tS8Gg0fY4nvm7Z1heURz9sY > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 56,0142756738532 ; 1,14002508 ; 48,1342485849988 ; 56,0140256738532 ; 56,0145256738532 ; -4,7 ; -7 ; 7,6 ; 6 ; -1,5 ; 5,4 ; 0,16 ; Future69AP19 ; aB3EB8B06CBFCaCe5CcE202d10D7bDAeaF8EbCB7BCcead0f9Bf56A3F7ccdfdFC ; < ot42W1dd2UmuZHeZf8PD12FiZR6bi9Kv44q42NnjYKCTw5H13NB9Fccf0jsaKJUa > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 56,6207834187429 ; 1,15383235592122 ; 48,0719324416385 ; 56,6205334187429 ; 56,6210334187429 ; 1,8 ; -4,3 ; -1,3 ; 7,6 ; -6 ; -7,2 ; 0,68 ; FutureJU1916 ; Cad63B8bAa1fEC0deFacAfD2aCFAAE4F913F836fc3Cb5bB2dcde2DA46fb2daAf ; < uTw1H3eANwYaeXvCTru25t94h91qfq6ZxE2BaPJ7k081jZ2ItBH3iI8waX6K4KFj > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 57,2813462028584 ; 1,18203756547107 ; 47,4598356906114 ; 57,2810962028584 ; 57,2815962028584 ; -9 ; -2 ; -1,6 ; -2,2 ; -0,7 ; 5,4 ; 0,05 ; FutureAU1992 ; 50bE1CADadCbede9fdDDAc0e027F37ffDBbC93f1C2E3ad96AE6eacAeFEaaAd8B ; < OY3a2e47PyNBs6qMoAC2D6UkvR27C2x8D94uh97u91l67av8zzixroY6aa94fZ4O > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 57,9605451626703 ; 1,22544797504721 ; 46,2974343610447 ; 57,9602951626703 ; 57,9607951626703 ; 1,9 ; 0,8 ; -4,2 ; 2,2 ; 6 ; -6,6 ; -0,54 ; FutureOC1924 ; Ca0EdBF9cdDaEBE63Cd2d7bBe1dCd8F153bA8eCbCCddfBaAaa7Ec8CFb43D02Fd ; < FsDfN85Jo8Z8BIB6RLCBbS6qv812L265fwi4k85dxIE694OC36wEvdTUds497V6P > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 58,6734376270658 ; 1,2859152117272 ; 44,627765417175 ; 58,6731876270658 ; 58,6736876270658 ; 6,8 ; -2,7 ; 8,7 ; -6,5 ; -4,9 ; 8,8 ; -0,38 ; FutureDE1995 ; DB04BaeaAFE1Bbedaeac0baF90FdE6D1706FeccEdbBCC38d27Bf5bCd5Cf38ae1 ; < r1UbuKOsqBJ7HygpDfVGzBewPB63e4RAgO1wr11G5zai3WH08FT7p1bNCBbK8Jgg > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 59,4381293097846 ; 1,36575682087586 ; 42,5202873610157 ; 59,4378793097846 ; 59,4383793097846 ; 5,8 ; 0,5 ; -3,9 ; -6,8 ; -6,5 ; 4,2 ; -0,77 ; FutureFE2094 ; CBCeb98d4CD69dBAC27EfEFd4cC23dbD015eF0E7bfE3A31dFA6cAeDD7BfC23BB ; < 2v29HM24w5Z5Vm29Q2CZ2Q6SQ491B3YIMG3KQ3Z0Cv2Y936Jx36pjG50H920U4Q6 > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 60,216541479358 ; 1,46824594422802 ; 40,0125713039301 ; 60,216291479358 ; 60,216791479358 ; 9,2 ; 1,9 ; -0,4 ; 9,6 ; 9,9 ; -6,6 ; 0,67 ; FutureAP2023 ; DdeF91E89cdD82cc4c5fBcF07EeF9090C2c7b5d46E8da01dF6FAc2cb8DeECb6d ; < qs8Z7GaA7EHRV4t46hW68PNWgq6um9A831p6m4UOu0Zj6183R6Bk8TRIasxM2475 > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 61,0159387067991 ; 1,59751157621794 ; 37,1943640441419 ; 61,0156887067991 ; 61,0161887067991 ; -4,7 ; -6,5 ; 6,2 ; -5,7 ; -2,9 ; -1,2 ; -0,24 ; FutureJU2061 ; EbFabBAa1F1eFbCE4085cCFd5cDBB0D8EaeAEFaB8EE696bbBCfc0cfec85C7EbD ; < 38qOm1Rj00SX0I8370eYnOyd6fG0KTfGhG5130Lb33Q393c9v7n5Yn89W38ANkDb > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 61,9238665771775 ; 1,75915545405886 ; 34,2009064544592 ; 61,9236165771775 ; 61,9241165771775 ; -5,6 ; -8,1 ; -8,5 ; -6,6 ; 6,3 ; 9,6 ; 0,53 ; FutureAU2034 ; bdAccBBAaAF1ADFfABDd3BcfD9EC3AcaFc33AD0BDfDEBD64aEADcde6ABBBb5e9 ; < yv0zP552gx110qQLtlVcmqmAK6111ycltPZ8WBNcS4Jnw4HDkdYyY2KvO1qkgB4U > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 62,78621593597 ; 1,96058882074028 ; 31,024162981947 ; 62,78596593597 ; 62,78646593597 ; 0,3 ; -5,6 ; -8,2 ; -6,9 ; 7,8 ; -7 ; 0,3 ; FutureOC2017 ; 58EE675E1dDCBAEFAacb04cABddBd9b6977DFfB0fE7EEf8FA0FCeAbD0fE6fFFA ; < jSD5Sqh5l5zsR86st8rAaliQ3jfhudac8x8iEJE3iQo0n0J1gSd18tB7Cc928sch > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 63,7030891371721 ; 2,21189628703202 ; 27,8002152319043 ; 63,7028391371721 ; 63,7033391371721 ; 5,5 ; -2 ; 9,6 ; -5,7 ; -8,1 ; -3 ; 0,89 ; FutureDE2097 ; DFb9FA0Ba3dB2c728EAcFf3E16bCEe75FBedFac75AfD36CC05cAFEAeAA05E31D ; < 9De8Q7ph95F309yV7G7UY801jCVR195wRm26guuuoMty0084bt06llawqcO27Y3h > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 64,7915207025541 ; 2,52553289687528 ; 24,6545938414493 ; 64,7912707025541 ; 64,7917707025541 ; -2,9 ; 7,1 ; -3,7 ; -4 ; 3,3 ; -1,3 ; -0,29 ; FutureFE2115 ; bFFA1Db6DFABFda5fCe5e9B66Aa7EbdDDCFDF4aD6a4FE4911E2D27BFDEBccBEA ; < 8gNsS29seNm1LLR3Re07u6X1uLR80VZa7iwg9v69JRy11P1WUp2qk26MGf1Khn8L > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 65,7548585984965 ; 2,91831892619471 ; 21,5317589548845 ; 65,7546085984965 ; 65,7551085984965 ; -6,2 ; 9,2 ; 2,9 ; -3,5 ; -7,1 ; -7,4 ; 0,24 ; FutureAP2173 ; fbb7e08dBD49fbEd0CcDecd59bD1a6b4E7aa84bAF1FC9F4EAD7E8c47BEEfD907 ; < 25ju9HPEgKUHu09M84cZ7MpIs4C8T3749c6zY1z9ZFJvWK9AMW4YSrb6JUA57dL6 > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 66,9115817811158 ; 3,4131419242205 ; 18,6041018119683 ; 66,9113317811158 ; 66,9118317811158 ; 5,2 ; 1,5 ; -7,1 ; 0,9 ; -7,9 ; 3,4 ; 0,22 ; FutureJU2129 ; aB0F6D6FC3feF0FCCdED34AdEABAAEcAcffdcDbd3EB7d50AEB8362Fe38Cec3df ; < qxiJYNpFmCOjjw13nE8X55h026lZ7URORW4hibE8E6s0qaoFZod05Gp5EdbcV1R1 > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 67,9016434280286 ; 4,04031708527713 ; 15,8060184373799 ; 67,9013934280286 ; 67,9018934280286 ; -0,7 ; 7 ; -2,9 ; -1,7 ; 4,5 ; 9,5 ; 0,62 ; FutureAU2184 ; efD0efBFBBC66dd4BfB2edebC1A33DBDFBe66fFbbdb81FFcee8fA0faCeecb4F7 ; < zuJ2EsMlzkEfKdtttURqj307wkvEF5s740iy2640Hnj7Oe78omZ0Fk6imOzy2HYj > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 69,0396912554752 ; 4,84108167738436 ; 13,2612118233827 ; 69,0394412554752 ; 69,0399412554752 ; -7,7 ; -5,2 ; 3,3 ; -5,7 ; 4,2 ; -5 ; 0,71 ; FutureOC2145 ; e83D32EB95b37F6f7EfbCCacDFA2E5cA5D88FA7e008C545DFf5D5b2eCF09bBDE ; < lN9oPpMHwvb6V51TCrLhk0WQZ0603ktKvCKPg1Ss1FoaghLo7t4EHh5Bj866oiCL > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 70,3518564677732 ; 5,87046535365781 ; 10,9840340125571 ; 70,3516064677733 ; 70,3521064677732 ; 1,7 ; 5,7 ; -5,7 ; -5,4 ; 5,3 ; 8,3 ; 0,12 ; FutureDE2157 ; C609dB9cDCfD5923Bdc1f5EfFbCBA8A450CaAb8CAdCBefBe8E0CececBEEa9Ad6 ; < BcHlQ9Q67jp75Hwpx4CUa2SxGwR6eb3Hg7U1r7n74tMrWhHN13tjpR8BvEU3ceaF > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 71,5621121169179 ; 7,20557825655558 ; 8,93148774032274 ; 71,5618621169179 ; 71,5623621169179 ; 9 ; -9,3 ; 9,4 ; -6,5 ; 8,1 ; -4 ; -0,31 ; FutureFE2244 ; B7ca61eBd55ee19bCeeCDE230C2ab3fAFC5EeCad6A3Dcdac44CADABFDAaa0F45 ; < 2w686sLl2Ca2h2eGB8tc3cNXf52ByH4TSntvs7X5MLuLGgH16c0sa1Mf6LzA62lp > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 72,8001434569046 ; 8,95140250048264 ; 7,13281979589001 ; 72,7998934569046 ; 72,8003934569046 ; -9 ; -1,6 ; -8,1 ; -1,2 ; 7 ; 4 ; 0,85 ; FutureAP2246 ; E6CBebFcddAbbB5dBBE9Ffd3DC20Eaf7ccD3487D7cfCcAe8DCEE9cfbb0c7ce23 ; < MUTLY91dg2EUYUB5wns9typUH6bVgUA9w02dy73fDCWDOuYatH6z7CL8X32q6l47 > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 74,1837445948671 ; 11,2550946104042 ; 5,59112581126519 ; 74,1834945948671 ; 74,1839945948671 ; 0,1 ; -4,7 ; -1 ; 8,5 ; 4,1 ; 8,6 ; -0,3 ; FutureJU2229 ; 1d0CCE55888D5dC8ffe4caF8BFFF9eaA05AABFfCBdAD7BEEaedebbdE8fF42ecd ; < 3T0oSj5uSxd2Sm3GgB4EmS5H0w9TMyHi6mdN25SP4OD4HyHCiF8Q2W0J1iW3lJgY > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 75,8870005898446 ; 14,3239501178437 ; 4,2979101410937 ; 75,8867505898446 ; 75,8872505898446 ; -1,2 ; 4,9 ; -8,4 ; -3,1 ; 8,1 ; -2,8 ; 0,24 ; FutureAU2240 ; DfDf7Ba5EA0a9C4ab238EF389a02Ca1DC23BEDbFbbE20ECEEbdfDeE62fbd16B8 ; < 88Ia4h5W7vVFdGRrQr7imiMjCQbMey57m0ko26s5kKT84dH6LcsQWm9njmRwFF7m > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 77,2705322507099 ; 18,4509209981858 ; 3,18789567514314 ; 77,2702822507099 ; 77,2707822507099 ; -4 ; -4,9 ; -1,8 ; -2,5 ; -8,6 ; -5,6 ; 0,9 ; FutureOC2238 ; D3cEc0bfCEE1E65CAbbDfF8bFdE2fC55bADcfBB5e4dbFF6eBaebBcdCB9DE0DD2 ; < 7gE182877W1k2ku9WyQvU9vSjv2whMARUo3VXvRgx5VLL9N7X50XZaatlU2a0h75 > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 78,8466753143467 ; 24,0540429172418 ; 2,27789700823348 ; 78,8464253143467 ; 78,8469253143467 ; 6,6 ; 6 ; -7 ; -0,5 ; -5,1 ; -9,5 ; 0,03 ; FutureDE2299 ; a71E0Fa6f8E5aDf0Bc8E0D1cBFBa6aEada3CC7ffb095Fcff5bDA1BFCf08079d9 ; < kX771lgr0Kew5t6uzI846s61fF8tz5mO0e935D1k2Xh8I4xRcKsr4ygc842B5k16 > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 80,2775306779822 ; 31,7368503971352 ; 1,52947377176497 ; 80,2772806779822 ; 80,2777806779822 ; 4,4 ; -0,5 ; 3,4 ; -2,5 ; -4,3 ; -8,7 ; -0,23 ; FutureFE2334 ; 621eAeb64EDDfA19a988Bac5BEEfFcd2cFCCFcEaEE8C3f1BBBB3ecA4bEae25F3 ; < opbEO62FRw4ang18s138h0MCrKW2C2VVa0RMLM8stL9G0Y2yF65Zq72DD68DPiHm > > // < CALLS ; 7Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 36,4000717284523 ; quote ; 75,8293220185812 ; 74,3127355782095 ; 0,0204081632653061 ; 6,3 ; 68,6255364268159 ; 83,0331076103464 ; 0,9 ; A4df73C44E3BEC1e0e4d19FcFaA0316BcbfEAFafb8BaDDaC4BfEdbC62dAC1A4b ; < UQ6Ro5KBV70s5Pg5XOaf7QAW0Mol3cH9S480J8a617va3q643LNjoRHH951zG4h2 > > // < CALLS 40,0400789012975 ; quote ; 73,7322794357713 ; 72,2576338470558 ; 0,0204081632653061 ; -7,3 ; 66,727712889373 ; 80,7368459821695 ; -8,4 ; a0cfc3E00fCA9cA8F5Dc4bBeEdA7A27edaeAca1cEBee1baFbAe2329FEd9bfFb6 ; < 7p82F0YEj9eNo3o1li6mPJK4G1qV07s5geYxwxH7Hf76pO5CAN31WJAuwypfh77W > > // < CALLS 43,6800860741428 ; quote ; 71,703437256091 ; 70,2693685109692 ; 0,0204081632653061 ; -4,6 ; 64,8916107167623 ; 78,5152637954196 ; 3,2 ; c0e83c3Fe5e3ddfaEebc5b6dbaC9fde560E5ebbfa5C7B8C9619EdE0f9FEc51dA ; < h7oj94730h3b74143c5r6db42l3T493aGhgOBa7Suf4QBEKv2o7cnlmo4Q3dZ7YW > > // < CALLS 47,320093246988 ; quote ; 69,7418885557811 ; 68,3470507846655 ; 0,0204081632653061 ; 1,6 ; 63,1164091429819 ; 76,3673679685803 ; 1 ; BCacE6431dbb46C3DaaFEcCF49Cca1db65fD2A2b3123EF0c87aE69aDeABe08c8 ; < iUyw5oXnygLJ993HbBl9I6n8NTWGDw6bhyAX9c8D6y64WiR14b3c17bnP5C87Pay > > // < CALLS 50,9601004198332 ; quote ; 67,8463197897546 ; 66,4893933939595 ; 0,0204081632653061 ; 7,9 ; 61,400919409728 ; 74,2917201697813 ; 1,7 ; C9A9dcFA2aF0BeEfdec0CEebdc8C878AA3D4E8Ed432D9c4d8BA5bFFE40A7296A ; < h8OJ8EB777uS3Jg7HUe0MBG9olsziI23lhMg6Bzd9ra8bQ0K2mQDX23tt1upMwv9 > > // < CALLS 54,6001075926784 ; quote ; 66,015129686744 ; 64,6948270930091 ; 0,0204081632653061 ; 7,7 ; 59,7436923665033 ; 72,2865670069847 ; 5 ; CCf0aa1D5f6295dCffE99CDa65c2CBafbccaC0Baa0cC0FceBeA0bfe6a21EBdcd ; < Vp8B4E2sl3S097DtYvhtTTj5w2Q794q1cSeH28Dt3y4rw2555l8SUqXfVSVwE0Gy > > // < CALLS 58,2401147655237 ; quote ; 64,2465199791314 ; 62,9615895795487 ; 0,0204081632653061 ; -0,2 ; 58,1431005811139 ; 70,3499393771488 ; -0,1 ; af46aBCFFfE3cee4935cDBd7fFb7dDB6c7DfCdedEeCa051d0AC26BFdfFe85CA9 ; < f42Vuk7OTs772pUm7770m5B50S7TgmQ06zEm350F7W14xsBh7NQWu4op415gtR43 > > // < CALLS 61,8801219383689 ; quote ; 62,5385644631442 ; 61,2877931738814 ; 0,0204081632653061 ; 1,9 ; 56,5974008391455 ; 68,4797280871429 ; 2,3 ; 70E603dBcd7ebaEcc5BEB9eCc0bFa2e5ec4AEc0dF1cA38f0BCADdcFcFAECBdAA ; < aQ5Q4pGYSNL887s69di2PTwU0RP114NS1DG3vT69yjZ5PF5AwTOYy8K0tQO31sS4 > > // < CALLS 65,5201291112141 ; quote ; 60,889261411245 ; 59,6714761830201 ; 0,0204081632653061 ; -0,2 ; 55,1047815771767 ; 66,6737412453133 ; -5,7 ; FfCa0Dcd2ACCcd3BbbfcbafeDEcCCEfBf9bb5dB3ED70C2AAAD2b13ABCc0f04F7 ; < Qcc24itctDr13tY121903mSHYx2ZB6Gzq9iL36qLeH87Qn1Hu74887Q76K9krQ8P > > // < CALLS 69,1601362840594 ; quote ; 59,2965731937061 ; 58,1106417298319 ; 0,0204081632653061 ; -8,3 ; 53,663398740304 ; 64,9297476471081 ; 0,4 ; 7AD77abB3DFdDbaE8df4BE2c1fdDcA7cdDbBf232A770bC0a9cd267CfBc36FAD1 ; < FyepFAFjJqM16sN1RuD1LCB8bFc8Zy1779V5kfou0eENN0VDs5n4Xg39lXAjd5wp > > // < CALLS 72,8001434569046 ; quote ; 57,7584560648362 ; 56,6032869435395 ; 0,0204081632653061 ; -4,7 ; 52,2714027386768 ; 63,2455093909956 ; -9,7 ; 41cb0c848Dc7dBeAE11dB72cF364CEfFE3A7d7f7befA2AeC4FBad781C1cBd8ac ; < p2T2bpy6xNT27fbFv7j9e00LFA7FoBIafNYV6gsD5NedT7vsVArI5824NvG1M683 > > // < CALLS 76,4401506297498 ; quote ; 56,2728823786395 ; 55,1474247310667 ; 0,0204081632653061 ; -5,8 ; 50,9269585526687 ; 61,6188062046102 ; -2,4 ; 6DbdC7b3d019cF4FAaeD6EabCeBeCeAbdedFDdc2A93b84100FAdaC568b4AF79f ; < Pnq0LvUN1185603n2ofGz2L31llSce4yYO04cL5X2U7eAwGgBEnFHSEN97Qmy0Gd > > // < CALLS 80,080157802595 ; quote ; 54,8378569718335 ; 53,7410998323968 ; 0,0204081632653061 ; 1,7 ; 49,6282605595093 ; 60,0474533841577 ; -1,5 ; 7d8bEc4A3eCDccbcbdB3C3eDbB8fFC65DbaaA7Ec02E36FfEaFDBF1dCdddcaa84 ; < BWy8EvF99csQ9iGa7C2Q64uB0WO5v929h2Za2dMFE0gu1bKBv0Wtd2757kQha4gr > > // < CALLS 83,7201649754403 ; quote ; 53,4514290506786 ; 52,3824004696651 ; 0,0204081632653061 ; 6,3 ; 48,3735432908642 ; 58,5293148104931 ; -7,3 ; 07f439B82D4B9BEBf05D3aDEfDBC6eB50970cfc4Aed8dEf05CDb638d2257DecD ; < J48nUl4iVC2W17cbu9VsyDfDDp22b9bPJjoJm0521502sDVnz1DvyjQ8hKWkmxv4 > > // < CALLS 87,3601721482855 ; quote ; 52,1117006118506 ; 51,0694665996136 ; 0,0204081632653061 ; -5,5 ; 47,1610890537248 ; 57,0623121699764 ; 7,9 ; BC5C9d4a3DD2D7E54c0AA50Bec2aAa2Ee12f3F8D4dE94EfcBad2f56eE22EaCC4 ; < 6qu3o0i01iMc9B8JjcNp8MNp5dVcYVTO0BM1c6W9L3J808Y4lJqEd72T5j9O3x54 > > // < CALLS 91,0001793211307 ; quote ; 50,816832193542 ; 49,8004955496712 ; 0,0204081632653061 ; -5,8 ; 45,9892331351556 ; 55,6444312519285 ; 6,3 ; 0A3EdbeEDFAaEB9Ba3EEEBFcB9c3dDFCDCC17EDcaAabd62f994eAbbEaB4E74db ; < Me7Kz9aRY5yGngfHoCn0r3Pp053k27472n5VZ8VP4KCuTG8VpIviLBE72iw78QfP > > // < CALLS 94,640186493976 ; quote ; 49,5650465736045 ; 48,5737456421324 ; 0,0204081632653061 ; -7 ; 44,856367149112 ; 54,2737259980969 ; -7 ; 4Ae7EDfAeA1BCcC4daD5EB1c7f2Be8befB4eb1F5Ecd3Cf4dDDb2AfBBbdf8ea3E ; < 2S7TP9o52jNb04wyw2X69oDjQya9uN7z66O6OLL08VVSbgWC5Ux4bkH2ouY4xN0x > > // < CALLS 98,2801936668212 ; quote ; 48,354630893647 ; 47,387538275774 ; 0,0204081632653061 ; -0,2 ; 43,7609409587505 ; 52,9483208285434 ; 0,5 ; d1DA01eCfaBfBAf7ceF72EaADA447CC4fcB66dFAf5B1dcfab4ba8EddCDfBeAda ; < dli8qxdO7EQAifpPf8VS7ZO1IuLyZf0lyAZjk2MBqjI9GYPvkLw8DdaN9HuhadfJ > > // < CALLS 101,920200839666 ; quote ; 47,1839375816582 ; 46,240258830025 ; 0,0204081632653061 ; -8,8 ; 42,7014635114007 ; 51,6664116519157 ; 0,3 ; 21dCcfcd389efa2fFe7f1bcAb4fc9A03Beedff5bDaFe81B2D4Ad5c6bFa9bBdB7 ; < 18ZEL64i9z2FOv091k41sV73vAGN52Pyi5KI5aTCM2hsfXagk8w5p2dG32T79cTp > > // < CALLS 105,560208012512 ; quote ; 46,0513843634353 ; 45,1303566761666 ; 0,0204081632653061 ; -9,7 ; 41,6765028489089 ; 50,4262658779616 ; -1 ; ae1Ce6C64d2fe0aa9F723AdaFB3128f5fB3c96FeEA48Bda2Eb6d02a8D4e6A6Ed ; < gEf1NLBx4W0LMkLv22S8c1KnKoO95O2srA43W3JKGX4B3Z58hWkw0iCzT6y7g3l8 > > // < CALLS 109,200215185357 ; quote ; 44,9554535892403 ; 44,0563445174555 ; 0,0204081632653061 ; -5,2 ; 40,6846854982624 ; 49,2262216802181 ; -6,3 ; 6d8aaBd5eDDcF1fDED72FB33acB3aCfE0BBD5DbCc0CE61FffA4AeCE5ADd2DdA8 ; < GhF19Mz8d79DE371ic8sjRF12RxaVc894peDSuenRRO575mA7g0Bw291oTr5UbsH > > // // < PUTS ; 7Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 36,4000717284523 ; quote ; 1,54299840391275 ; 1,51213843583449 ; 0,0204081632653061 ; 5,3 ; 1,39641355554104 ; 1,68958325228446 ; -1,2 ; fbB20D492bd92BC405aD4AF3Bf47cc5FB194282B0CEeecaFf5ab637fD5Cd82eB ; < 1d7449L1e977EJ8304301VgjRq1HhUj8a66Qt317hU0Yfsci8hg0pP6jQUgxb7vI > > // < PUTS 40,0400789012975 ; quote ; 2,017323459636 ; 1,97697699044328 ; 0,0204081632653061 ; 5,5 ; 1,82567773097058 ; 2,20896918830142 ; 9,7 ; f2DdC30bD372AfBcE131EBa1CeB6a6dCca23A1EFABFe1EFB4a0bE1C9DFbFa7C5 ; < 9U03eD73uiV5Dq808qfrn3n9DFz6E6noP24lkA82266ttBBf32I94ReyC920f7Wg > > // < PUTS 43,6800860741428 ; quote ; 2,5598489184889 ; 2,50865194011912 ; 0,0204081632653061 ; 6,2 ; 2,31666327123245 ; 2,80303456574534 ; -4 ; 4dAcF71fdcAE6fcbD2dc51FAfEfEDa9a15f99dffecffbbfFDab5E8145B4dC5af ; < oH9jlNpUFOm8AffY27JENW8o4wMkwUT01xcMqAbOO9PVk08V78uKSalv705k7e3Z > > // < PUTS 47,320093246988 ; quote ; 3,16966785671218 ; 3,10627449957794 ; 0,0204081632653061 ; 3,6 ; 2,86854941032452 ; 3,47078630309984 ; 2,9 ; dA5D31dDdff1afcCdbDCFBBeAfC152F1a4dFD0b5CfdaAadDDBCE6F28B2ED7cd8 ; < 5jen56hyEyRa5bI3d14fb4YrcaLGnFg8chWf1QCtgaklgiWrcZ7Deas7Nt05xFXX > > // < PUTS 50,9601004198332 ; quote ; 3,84546672921888 ; 3,76855739463451 ; 0,0204081632653061 ; -9,6 ; 3,48014738994309 ; 4,21078606849468 ; 4,8 ; 49339beCDb232BDCaD4fa8a95b7caAee292c80870Fb652f9aDE2c7bBFD3b3Dd9 ; < 1fDH4VXU4J2S6JHlg9yqy38ZGw3744XB3dFyqzN5h4i958p4o43kx4Z666B6k2DC > > // < PUTS 54,6001075926784 ; quote ; 4,5856442647414 ; 4,49393137944658 ; 0,0204081632653061 ; -0,9 ; 4,15000805959097 ; 5,02128046989184 ; -3,6 ; E1edaa73c4e7c44fF03791F83EA2E32cfAaE0BAAC0B9db957d0A60Ab3Ddc6AdF ; < 80409k26aliQ2cyk6fGno47U8221JH369E897V78iCTO5148sm4PYAWIeeJx9WlQ > > // < PUTS 58,2401147655237 ; quote ; 5,38840219566191 ; 5,28063415174867 ; 0,0204081632653061 ; 9,9 ; 4,87650398707403 ; 5,90030040424979 ; 1,7 ; Fda7B1d3b0dfB2Db6f49A0D4FcEEcBE86b2EFA49eD9d14bbB6320C6cd43090DC ; < 1O50fesQ05tcjA74f55Z2zOW4uhsMZ10p551aQErW8X308G2SBSFjn5L7MiU9REr > > // < PUTS 61,8801219383689 ; quote ; 6,25181431820796 ; 6,1267780318438 ; 0,0204081632653061 ; 4,5 ; 5,65789195797821 ; 6,84573667843772 ; 8,9 ; bE72fbBd8caCDdfdaf5Dfa8aedaBb66b2fDfE52A9caB616acC97DF5d01DBa795 ; < BDJjvU2RXOGmh44QV87XW0T8Fpj43Tr7HsRDgP8yZKTJ5R92bBu0vkFzI2jF2Lfs > > // < PUTS 65,5201291112141 ; quote ; 7,17387890484187 ; 7,03040132674503 ; 0,0204081632653061 ; -2,1 ; 6,49236040888189 ; 7,85539740080185 ; -1,6 ; 3fcC7eDEC4C7e8B7FC5dEbe1B2F34fFBAB5dc3CBaABBCdeF8cffd29ADbf9BC03 ; < 56nb911gLt2o1rt8QIsZWG8du4ND0NrfUc378f28u5XU39S6F50EyFa2v0YrTGa5 > > // < PUTS 69,1601362840594 ; quote ; 8,15255832583608 ; 7,98950715931936 ; 0,0204081632653061 ; -2,8 ; 7,37806528488165 ; 8,92705136679051 ; -1,5 ; ac1BB9FdC221aBE4FEDAe8Ef9e651aeAaAE295Df647aF4F129EFE0Bd3e9BfFdF ; < i1qqpQVlu0gBPQc8hIQOFfeONeq2eIPr2V342ytCWTRwl5y82SM1Kc9B23vKpBQa > > // < PUTS 72,8001434569046 ; quote ; 9,18580883549939 ; 9,0020926587894 ; 0,0204081632653061 ; 2,4 ; 8,31315699612695 ; 10,0584606748718 ; 1,3 ; 1EcDe910f8dBcB5F7fadED65EDaaAeaaf88f2beDbCf8CfC55cb33f4ECAbaA3f3 ; < 3QyTq5SBffy8uyzyOC0W652vGu5L5prgt0p633xc4zTimm6tC62162Pfy6e7zpOX > > // < PUTS 76,4401506297498 ; quote ; 10,2716027878358 ; 10,0661707320791 ; 0,0204081632653061 ; -8,2 ; 9,29580052299143 ; 11,2474050526802 ; -1,9 ; BfBAdcEbdbfe7F19DDe98cCB0fCBFDe15dDADBCc0ad74AA97D1cA53a82CC5AdD ; < iIw0jBVp4T7Qi06RVh1u0Kzg847w9eeElgUqp8Z7rmWy39Nuoaevk49i0u7cUK97 > > // < PUTS 80,080157802595 ; quote ; 11,407945019563 ; 11,1797861191718 ; 0,0204081632653061 ; 5,7 ; 10,3241902427045 ; 12,4916997964215 ; -2,3 ; cd9cC4A5eFdaBA6faBB17f1fC7Eff1F8eC8CccfA7BcedbAcfD9C3FaCe3Ac15CA ; < BR7Fvjjp7S9Rl5OC5DC0cqF4gIVJp0948G1Np1Z11I3pK13U6jN3mj31ySvxZ89Y > > // < PUTS 83,7201649754403 ; quote ; 12,5928847369413 ; 12,3410270422025 ; 0,0204081632653061 ; 6,1 ; 11,3965606869319 ; 13,7892087869507 ; -9,9 ; 146f5fdbDadeEA9ec7BAf6EBbbdEDcAC99e417dAbaA5FAB242d4AFeaF6302fed ; < Exv74B68OmzV1X0gsmeC2U40MbH8P7N09bErkp9oZX26I0kZQ20B8be8NSXhg0TA > > // < PUTS 87,3601721482855 ; quote ; 13,8245239366464 ; 13,5480334579135 ; 0,0204081632653061 ; -6,5 ; 12,511194162665 ; 15,1378537106279 ; 9,1 ; 1eDcCffDCB2D2ccFbccA60Add1A615d0691DEfe8FaeF3C2F6aDa5DA7dDAABE52 ; < KfuV6UiRX9M011Cxn8o55Ii6ji3Sj55ZoLB7K672OP0M5U738KNAhdmBMJqnb7D5 > > // < PUTS 91,0001793211307 ; quote ; 15,101023156871 ; 14,7990026937336 ; 0,0204081632653061 ; -9,3 ; 13,6664259569683 ; 16,5356203567738 ; 8,9 ; ffCf1CdfaBaD88fCE2C71BEDA85Bbd39FAFfBe61dFCA5BfC816CdBfF3d49aA17 ; < nMA0VGTzkc5Z7iOe8FIGM8kQKLli4S7Cfr74prUd5fp14yzO8taPTm5r5ci0583e > > // < PUTS 94,640186493976 ; quote ; 16,4206051754666 ; 16,0921930719573 ; 0,0204081632653061 ; -2 ; 14,8606476837973 ; 17,9805626671359 ; 7,6 ; 771beB18bf59CB8fe39Bd7FAfB0BABfEdDd4A9EEb4Fe94aC4FC184edeFccDf1F ; < TmnQks4gA42nHKkKMnFTZJmTP2NaSR2BMOvanSAO53WM687WfphT50wpFveUdFXj > > // < PUTS 98,2801936668212 ; quote ; 17,7815571340423 ; 17,4259259913614 ; 0,0204081632653061 ; 9,1 ; 16,0923092063083 ; 19,4708050617763 ; -4 ; EbE2A931E3F2b8f8Addf38cadEd76a83eFadbEbeddacBcD2Bf8E05dd7a7aba00 ; < ZO45I6uYP2FHq74cULqs8RTsn9i88PFa75GlcwC44381q4VVR2WikK08WN6Y3027 > > // < PUTS 101,920200839666 ; quote ; 19,1822314605867 ; 18,7985868313749 ; 0,0204081632653061 ; 5,9 ; 17,3599194718309 ; 21,0045434493424 ; 2,8 ; CdDefEc6dF0BA480be3a9bEcb8cdD76B1FeaacB46Dcc33fEFeC1bB2bD7ACD6Ad ; < nZ8TlaMfzdx8QneTdBpHsj6Wpiq4rKY5l8d0cY2f0C1kL55j2P67cwve5I6NI737 > > // < PUTS 105,560208012512 ; quote ; 20,6210458808969 ; 20,208624963279 ; 0,0204081632653061 ; 6,2 ; 18,6620465222117 ; 22,5800452395821 ; -4,4 ; bFC8dCB0FD3Fcf727F0DFBBB75fd9aef3bCBb77ABC8DC1E00fbAdfAc3246EF8a ; < SrsphK95Cx2EJLmQo44KmWsO0Z65SW5J3cRz2hFA6SbNb4qqc61n0lHlhRL2L7R8 > > // < PUTS 109,200215185357 ; quote ; 22,096482745235 ; 21,6545530903303 ; 0,0204081632653061 ; -2,9 ; 19,9973168844377 ; 24,1956486060324 ; -1,4 ; cCdC0CcCEfD524ced3daBa5EDDF1daffdcCEDAa65Da1C5899FCB10C5deca8B1F ; < eBNlHuC9iz0726V0TUyH7VLE36QBV9WiEHmx3HD55oF4GT9yzECK50aN8BJ6aA0z > > // Futures_EurosibPower_Engineering // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 80,467707 ; 1,14 ; 69,5857078947368 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; E5C3FFbeEDBcAEc3afB9Ff7F0FC0b15ACD4af30FbBaBDcFD45Fb8eD45fe5c2Cb ; < T6skmd83RU84dIcA5Q55jV8lSB3rOSlLl7eGIGR86PfOQ1OfMmEtIzDny104E78w > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 80,4633818792096 ; 1,13993046 ; 69,5862196885323 ; 80,4631318792097 ; 80,4636318792096 ; 3 ; 5,7 ; 6,6 ; -9,9 ; -8,6 ; -3,2 ; -0,31 ; Future96AP19 ; dB5fDde8137EEEEC4c3CDbF5fc081b5E2CAFFbD7bDACD9cbfDb5dabdC0bacc75 ; < N6gNDT1aFNGUxAdPzR0ynb9Nsl86cy627hYcfQDo7A1RMLsSRCYdT7o060yP7B50 > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 81,3462394335325 ; 1,15380498577013 ; 69,5025896375686 ; 81,3459894335326 ; 81,3464894335325 ; 9,6 ; -1,1 ; -5,1 ; -3,7 ; -6,6 ; -9,7 ; -0,27 ; FutureJU1932 ; a3274Ffc64bcC95E8aAF8BDcfCdd4B8887eD6aBFb147caC6E88EBF4DDECAcaEf ; < cKiFW074oY6K9wSvg86o6W9zRG7OIuuO7b1gH5eSahatdCrbE14CPq5D8VOgJi94 > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 82,295704370818 ; 1,18200375723698 ; 68,6238940586703 ; 82,295454370818 ; 82,295954370818 ; -7,2 ; -3,9 ; 3,1 ; -1,2 ; 1,8 ; 6,9 ; -0,62 ; FutureAU1938 ; BF3a4cFaDD4fd67C5Dcf1AeaDE7d1cBaf6ADEDe0ffC6e18F3DF754a5B529FC3E ; < 4mR6b8p7VXQ69CV62TV208qgDfB5gg0JB0uYEaVxd3F5rEU1DKPp03B1o9Um89Pp > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 83,2297698616958 ; 1,2255216695491 ; 66,913748022357 ; 83,2295198616958 ; 83,2300198616958 ; 3,2 ; -5,3 ; -9,9 ; -9,6 ; -4,2 ; -2,3 ; -0,67 ; FutureOC1952 ; ceac67FB057D3FdF5fbb1FFbB4BbC4fCffC4e8eDFAFb7b36BE25eecd8bEe297E ; < L0pWAQddhU99FOBWgjmSBft16mV3F70688zUE0vAS10msD0RxsO345wzy7H8z47t > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 84,2418127736471 ; 1,28593494301587 ; 64,5101669265455 ; 84,2415627736471 ; 84,2420627736471 ; -8,6 ; -4,5 ; 0,7 ; 7,1 ; 0 ; 7 ; 0 ; FutureDE1990 ; ABE8fbFfCb4bAF7dEce33b55Cda18CFd9a6Bdf2F94CcbF9BcFf8646a289ef03b ; < D4O06o6T98bl67T59RG54utp5v8lz4dv23K3pI0d3LMY6o1Tc61mOwZ7u907lert > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 85,4174393131844 ; 1,36592565978539 ; 61,5344715514058 ; 85,4171893131844 ; 85,4176893131844 ; 5,7 ; -8,4 ; 0,2 ; 4,4 ; -1,6 ; -8,4 ; 0,88 ; FutureFE2084 ; 7bEfEe7cfb9d97fCbE26BffdFEDeeeD3fcDFB9d353AC9fceeB92C7e7fDcAF1da ; < 4xW6WC7x2KrZbw5id2Bx33zZ9vrdrJfaPl4m9kmmJWXt6Q3h3AW0yOzHsOSEY1X4 > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 86,498600704236 ; 1,46829905613498 ; 57,9107514186702 ; 86,498350704236 ; 86,498850704236 ; 3,8 ; 2,2 ; -9,1 ; 1,9 ; 3,6 ; -6,6 ; 0,3 ; FutureAP2094 ; eBEFDCDF5ddAAaB8E4ad5ceD868cD1A6BEAb43DCeF82Dc5FC111CAdcA0e1E083 ; < 1EQe9KzCmUQBS8aSH65TU5l863Ux2e787OipsjUnN84zXA973O8c9nUr6I6n88NW > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 87,6884455281873 ; 1,59757817393707 ; 53,8883597427274 ; 87,6881955281873 ; 87,6886955281873 ; -5,6 ; -2,4 ; -4,8 ; 1,2 ; -9,7 ; 4,5 ; 0,02 ; FutureJU2055 ; cBDdCdD6FD4eD2FA9D6fbd4D872FF0Fdcdddf2Bfc5f333D8f861DDE6AC5D12BC ; < CRZ9sGivY4EOR34M2W32cvl0B85CkWo75lYIR37SNcxM3mHRjXu1jL5CSKpBfca2 > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 88,99671737479 ; 1,75919843646909 ; 49,5893567944595 ; 88,99646737479 ; 88,99696737479 ; -6,8 ; -1,3 ; 0,5 ; -4,7 ; -0,8 ; -1,9 ; 0,78 ; FutureAU2087 ; F0acEEcFAAAcdFaEECEcfD5c960beDa19dADAFD0AEc0cb232eAe3cCac9CfC6C9 ; < W7jLLhh17v91Ld3YaxaAlPaa1V7KoPx6ZmOcsY6OW1eCs6eBw6L1C3M54Ggo0k1s > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 90,1915609257977 ; 1,96086893907608 ; 44,995710946543 ; 90,1913109257977 ; 90,1918109257977 ; 0,1 ; -0,5 ; 0,8 ; 0,9 ; 3,4 ; -7 ; 0,13 ; FutureOC2011 ; Dc9DaF2b4abaDf0F6A7d3DD8F39Ade4A350f477f1fE967Eeb1ba5AC0fFCffd43 ; < enrEk2S8903Kj16MIMYaYgv7hJP1GmVPA97kzR6WzP9EWwVOdMul57KI86W701Du > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 91,6572769146718 ; 2,21221623255843 ; 40,4323317791906 ; 91,6570269146718 ; 91,6575269146718 ; 1 ; -7 ; 3,6 ; -7,1 ; 9,9 ; 6,2 ; 0,88 ; FutureDE2092 ; c21A529C4EebCf2b25fEdd1dE4802EDeA7efA1Fd5cCeBDEF89a4ffABe62CEEBd ; < y5U37Mt1yq5dc5tP2e5p0fikV32v2ChFlLkZtNVzMquLvU8g7EL9JECi0TSImj1q > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 93,107199253132 ; 2,52580972054052 ; 35,8623172584858 ; 93,1069492531321 ; 93,1074492531321 ; 5 ; -0,7 ; 5 ; 2,3 ; 1,2 ; -4,7 ; -0,93 ; FutureFE2123 ; afaC6eFea1dEab11F80DDb94fdBeEeFEaEe296E149FCcD9c2fD9d91E1f14E00B ; < PyrJ967xNHs0dZ70sT77w2gU0UiAsmmHQlrP9e4K4qlLea7O9V8NR73PIwjv61pG > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 94,424815202361 ; 2,91912375860365 ; 31,3469722460581 ; 94,424565202361 ; 94,425065202361 ; 7,8 ; 9,1 ; 6,8 ; -2,4 ; 5,9 ; 4 ; -0,81 ; FutureAP2142 ; 4aA2C5dabCfdbFdFf4080FDBAefcB7dC03ecDdfe7E84D17dcc40fE0cA5aFe6Fb ; < BH63AA365Uc3yqFYZd43FDKbYS5FR8J7OhQL7875Xdm841Lw5PEZ1yqmFz46D2HZ > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 96,1326600819787 ; 3,41426712683511 ; 27,156162511833 ; 96,1324100819788 ; 96,1329100819787 ; 0,1 ; -9,2 ; -4,7 ; 3,9 ; 0,1 ; -9,5 ; -0,31 ; FutureJU2136 ; dB6a20bC0ffdbaC7e2A2fA94aa1eb96d8CDdb68c4FEfa3bfcdCfaBCbF1fb3E76 ; < vo7GLA6fx3D2TVBkHbOX07wcuh80BLl9pWFrWSaF8HI5wjN99at0935157Muxer7 > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 97,5701650582074 ; 4,04164221874421 ; 23,1412177964936 ; 97,5699150582074 ; 97,5704150582074 ; 2 ; 5,5 ; 5,1 ; 9,3 ; 2,5 ; -7,3 ; 0,6 ; FutureAU2162 ; 59cECBCcD13BbFEc9856dDf4DbBa58FebEAB9D4dDA32EfcadE6fD3d06Db35Cbc ; < qVIQ5zm5eU1UGn3cb6CW3A0v8NLXkt2HTFu1tR6BsrsynV898HpKR4VtUe1Mp2QW > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 99,4263596679447 ; 4,84265327712496 ; 19,531381038077 ; 99,4261096679447 ; 99,4266096679447 ; -6,1 ; -3,6 ; -5,9 ; -3,2 ; 7,6 ; 4,5 ; 0,48 ; FutureOC2178 ; BdeAB2af0afE10d2bAdc7Bf984BBf7Eb8aF1DfaAAd9aDc506CCcc407420351D5 ; < w3Nlvgw59A85vz2tB61BL4lp1jV3A7Wr5mRMCzXOWMV4RMUS829LCd9vhf977741 > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 101,020451602344 ; 5,87285539592585 ; 16,2012496123137 ; 101,020201602344 ; 101,020701602344 ; -7 ; -1,3 ; 5 ; -2,2 ; 4 ; -1,5 ; -0,38 ; FutureDE2123 ; 2d9EB3EBD4FcaE7CDcF5BcCDF4cffb54ECA39e840A9Ba36979fe1f20bDCEe4Ec ; < 36o64fM71awOM3rJMUT6XB24vBkK5985AK55OTgj0510rTZMghjR5fLTE7zFT7fP > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 102,73184745168 ; 7,20841202473178 ; 13,2516614060367 ; 102,73159745168 ; 102,73209745168 ; -5,7 ; -3,4 ; -9,1 ; 8,4 ; 5,6 ; 9,9 ; -0,35 ; FutureFE2289 ; 0c277cFd3c061df8EEf465Af1Ae7f24da8Fed1aBF9bEcabd1f0Fc8d68c8ce2Ea ; < 5En744687iU0xniBV3y98L1S75P8msDk1TtER9tlqeqLPy9326UAWo53vDyGhAyK > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 104,687398465502 ; 8,9545768525513 ; 10,6909375160117 ; 104,687148465502 ; 104,687648465502 ; -2,5 ; 0,5 ; 0,2 ; 4,2 ; 1,2 ; 2,3 ; -0,23 ; FutureAP2224 ; 8DAa5beEcBECecFEFFd127b655EbfE9FE2A0cd5ccA8B5bb4aa662eC44deBcCEB ; < jcd5osF3Pd536W54Xm2s6ZF2tOWKtm360UV5Cq6C63D4FGD4iDQiOTf3z80jbq29 > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 106,404921573641 ; 11,259900765733 ; 8,44989869692815 ; 106,404671573641 ; 106,405171573641 ; -2,7 ; 3,2 ; -3,5 ; -0,6 ; -8,5 ; -5,6 ; 0,33 ; FutureJU2239 ; fedAddfeDe7dcA69fEeADdFe73fAfCCfBaE76BEaDB3d45bA239F6Fffa2cfe2C6 ; < hnHE16fDYj0qE34MXWWv3UCo6ws3E2F8wzt1CtgVZDpOS3enadr8S5nCv2aqdVRN > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 108,562671947789 ; 14,3299541381601 ; 6,57592598699884 ; 108,562421947789 ; 108,562921947789 ; -5,8 ; 3,2 ; 0,5 ; 1,1 ; 5,8 ; -1,8 ; -0,52 ; FutureAU2240 ; Bb6df50B0F7E6acBE6d7CBCA4FeC9DAEDcAe5d6eF8CFabEF5DE93dFfae0B0Bb7 ; < 78FV6B9DN3YH2oatEcRJe49wEwtALYMM9z8ia50He6tyoatg6JkwaV6q60ER2ZZ1 > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 110,914151844365 ; 18,4582822989029 ; 5,0089097158817 ; 110,913901844365 ; 110,914401844365 ; 3,8 ; 3,3 ; 3,6 ; -2,4 ; 5,1 ; 8,7 ; 0,64 ; FutureOC2273 ; ECfC4f7ae6b2529Fbd6fF60acAaE1B3Ece3cE422BCddbad5025A1ddcfBfF0BB3 ; < mbNiRG3e3VsS1G8IchSzui7N6Kiy075iC7U8Ra3amyzA497tA3Z689lf8V0Y7dt8 > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 113,051941169835 ; 24,0621076388776 ; 3,69833910090133 ; 113,051691169835 ; 113,052191169835 ; 4,8 ; 3,9 ; -8,9 ; 5,4 ; 9,7 ; 6,2 ; 0,72 ; FutureDE2235 ; Fc1fEbCFd9CC2EC7c98F3DA81cfD7a0DfaCb9dd2EDA8a3Afb3c5C6AB4eCBeE31 ; < K35xwfCnE8cWvPd7PIv7dCg3bc8tmj1m26PM6fmIr4bXolCkW65K4yNN9U3kWn0L > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 115,405995687366 ; 31,7509559163143 ; 2,63472507698794 ; 115,405745687366 ; 115,406245687366 ; 7,9 ; -4,1 ; 1,7 ; -6,3 ; 7,2 ; -5,2 ; -0,79 ; FutureFE2340 ; Ee12b4c514AC936a2cdB2eA26aFadEcbfafcFEBE2A8E9EbCFe9ccFffeCF3aBAE ; < Rr6A4j5V53WyTl1opn7qZpE9Bj1Qs9103Eg9vvozL0f8i82pR6v8Tnof7FAgxKg8 > > // < CALLS ; 1Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 43,249300352118 ; quote ; 53,6714134246759 ; 52,5979851561824 ; 0,0204081632653061 ; -4,7 ; 49,6460574178253 ; 57,6967694315266 ; 7 ; fb5B0Efbe2B2d7Aa4A4c7AcC17eD8ef7BcB46b3bd9cdBCFFbFF8eEA26f3c5bAc ; < coZCces18152N5IP904z8sIYGQw3ySOimtyXfXt9w3O74qvmVf7ajZZ8wmMCpF56 > > // < CALLS 47,5742303873298 ; quote ; 49,1194092921563 ; 48,1370211063132 ; 0,0204081632653061 ; 7,3 ; 45,4354535952446 ; 52,803364989068 ; -5,2 ; aDc53bb15D201a6db3ff0FFDfB959e21af4Fb2c29BD2E8e5FBdc9fb3B0c4CCbb ; < bbnd9tbV4gh69S6VaKb5b5ic9vnJG3yCn96S8J9i5jYL9TR12bC4AF0YM2zns138 > > // < CALLS 51,8991604225416 ; quote ; 44,6476691224842 ; 43,7547157400345 ; 0,0204081632653061 ; -7,5 ; 41,2990939382979 ; 47,9962443066705 ; 1,7 ; 1f8DBdEBDEad12B7eec50dE31b2fAD0Cedff7EB0d4A1fafFD58FA3e4C6FFbce2 ; < VR3qoGvH7X0PD03OLT574D6k2drum9J781HO5mdA34926NKJ14qwkU3RTr8jZ0wn > > // < CALLS 56,2240904577534 ; quote ; 40,2955533564589 ; 39,4896422893297 ; 0,0204081632653061 ; 4 ; 37,2733868547244 ; 43,3177198581933 ; -5,4 ; 6FF7BbbB6C9ED6cB8Cf56bfFf4c18DAdb3d9Cb12BBb1eACD0c1A2f38cC82BfCD ; < O9AI7Hh8Y1Cy80u51a74N4DF8vp0CSjvR7OWe7xI0r7G478GKY80922MYr5KY0C6 > > // < CALLS 60,5490204929652 ; quote ; 36,1055124059439 ; 35,383402157825 ; 0,0204081632653061 ; 6,6 ; 33,3975989754981 ; 38,8134258363897 ; -9,1 ; FAF4Cfd4fcb05bb5D16b2f678e55cdEBf5f644eaCedd49D6AFeCdE9FeCf1eCAf ; < 11ugFA5O0w4S2S713375aq6zp8037rx3A6M4sMhBsVZa21FknR37oNPexvmA7eE6 > > // < CALLS 64,873950528177 ; quote ; 32,1187612069275 ; 31,4763859827889 ; 0,0204081632653061 ; 7,1 ; 29,7098541164079 ; 34,527668297447 ; -1,2 ; e3eCEaD0Aa690912D60B72E0F8f5FE9D8ab3EDe3ED53aC2FB7fbAE9BFcfFAeFE ; < 7iNaj63gywDiSwGZW831c2Hly709ciSp1o982g86mFE82xvLq9i5kdH3nD9s830X > > // < CALLS 69,1988805633888 ; quote ; 28,37139808825 ; 27,803970126485 ; 0,0204081632653061 ; -2,5 ; 26,2435432316312 ; 30,4992529448687 ; 3,1 ; BAaaD5eebcE9Ace7cF1fae00E2Ee805fBCa9F7BfE41e37dCc1C8FE74Cde9DaA8 ; < ZVOf8h6jNx4w3ECriIwS5Z5Su1x6op759SJjgBIZeADUxhD8V7e2ib19r05rQKNn > > // < CALLS 73,5238105986006 ; quote ; 24,8915992243272 ; 24,3937672398406 ; 0,0204081632653061 ; 5,6 ; 23,0247292825026 ; 26,7584691661517 ; -3,2 ; D5b6Cd3F1AeF59EEB8bBcEBFB2f9cbbAa89bCB78FfdaDd4FdCB459d7DDe6Adde ; < X2aP4M6J73Kr2DUwin7xc8BW502g8zPVI4fQU7MBc0ahw1t45Q769z96mL5lD31V > > // < CALLS 77,8487406338124 ; quote ; 21,6981222819644 ; 21,2641598363251 ; 0,0204081632653061 ; -8,9 ; 20,0707631108171 ; 23,3254814531117 ; -4,7 ; 7e0eEeB71BDFeAb69FB86a1c3c3e4144ffC0cdAEd1BAC05ED646ABd897067CBB ; < HNG4PR69n0796UP43NL719020t1z0mtNbEH9MSIFj6TGe16247aqSNA7f2mbr85z > > // < CALLS 82,1736706690242 ; quote ; 18,8000367010218 ; 18,4240359670014 ; 0,0204081632653061 ; -6,3 ; 17,3900339484452 ; 20,2100394535985 ; -8,9 ; Dd5c39F0fdd7FC7D7dc3c787eDDE034A0f1729BABecADBaccAb65Cf4B8fFCfA1 ; < 2z1d8pVAr73YB8lE0NUXK1G7Wc518GPb2mSjwXT43055l03F2QNBUBuq0pI672pP > > // < CALLS 86,498600704236 ; quote ; 16,1974130106331 ; 15,8734647504204 ; 0,0204081632653061 ; 1,6 ; 14,9826070348356 ; 17,4122189864306 ; -1,9 ; f105cDbE67EfDBBeeDa1Cbaceff7eBdAD0BEfDe673DFFD1Cb79bffE62F1EF5fF ; < ZHCWnbB14nrl9p0UdEHi4oStIs9hxR664v19Z058a7mxiQ45BVIv2yU6a0x08liJ > > // < CALLS 90,8235307394478 ; quote ; 13,8826388518815 ; 13,6049860748439 ; 0,0204081632653061 ; -6 ; 12,8414409379904 ; 14,9238367657727 ; 8,9 ; b2635baE8dAeEEcBAE00c3eCDfeeEBcC72262EeCAd7cBf06ebdB5cFdCfa09ecF ; < T7utLN7n50x6UgnLB08WnBZc8qX864ZlQGw40gv4c8Ex1LF9y0n9kK1lDW1ufORB > > // < CALLS 95,1484607746596 ; quote ; 11,8420480713358 ; 11,605207109909 ; 0,0204081632653061 ; -9,4 ; 10,9538944659856 ; 12,7302016766859 ; -1,8 ; 3Ad5ceecB6b2aBC2CFEC0FD474cA1CF848E9DB7DfD7afA2b0a04ACe4a7ccBca9 ; < 9iT52aA8prtA99khzB4o67c0yZ6kaH5M0S1g0h03JMTNrKgQu759ahH0S3tO1025 > > // < CALLS 99,4733908098714 ; quote ; 10,0576120973883 ; 9,85645985544054 ; 0,0204081632653061 ; 3 ; 9,30329119008418 ; 10,8119330046924 ; -4,8 ; 3C1b42B3b2A5aFC69d4d4F4be9fFDdC7B6cB2DbabAFFD0Bd76D3E04378FBf33d ; < L3dc8prf39K636ilw47xQC0B1XlTZnc5cM7sP5ul1Y6zwbS4D08Gq4hn7utDCZQ7 > > // < CALLS 103,798320845083 ; quote ; 8,50851942129926 ; 8,33834903287327 ; 0,0204081632653061 ; -7,7 ; 7,87038046470181 ; 9,1466583778967 ; 7,4 ; E2Ef89cE1f8fbaa4dc9Efd654dd10Acddf21Fe4AFAfefFae8613FFCAccbe07cd ; < 3yS4kgMqY512Vs8vUJyKyq3Z0MbTBCUXY43i11d9NZbhcJUl6dg10eL738UXwTCX > > // < CALLS 108,123250880295 ; quote ; 7,17254050243703 ; 7,02908969238829 ; 0,0204081632653061 ; 3,1 ; 6,63459996475425 ; 7,71048104011981 ; 7,3 ; 4d8EEbdFfaCEeFcbffcbc2FC84b8aDf4860DEfebc15c9f37bdFE09cC6081CeB6 ; < YMCcvG902uv1iJ8v85Xp8OdtQu7vjc2tMT4957pFC2Pd1lY3p51Rxy5JEDU6nnF3 > > // < CALLS 112,448180915507 ; quote ; 6,02713272602194 ; 5,9065900715015 ; 0,0204081632653061 ; -4,6 ; 5,57509777157029 ; 6,47916768047358 ; -1,4 ; D0aB2FBcEA7Ac09Fd2A9AbD6D7fd09c47DFd413BbcdBC6bFf2aDAef9Bc7Fe0b8 ; < d2WiLJLU9Ij4Y3d3VGllLv5qIbApZonIxA3828e8349DKD43i5FLM6fSizkUVj7P > > // < CALLS 116,773110950719 ; quote ; 5,05028078983101 ; 4,94927517403439 ; 0,0204081632653061 ; -6,3 ; 4,67150973059368 ; 5,42905184906834 ; -5,3 ; CFCDA44cAfB55Ce7Af9C1C75Cdc7dfEd0Db5E9cE23fff44edBbf169BdeC8e92A ; < Pc4i8GYjdM7xV94V61e9pv3SFK2dcbj83Qo1gk1NOLI9gfPs5MqFlE2dl9KMHr04 > > // < CALLS 121,09804098593 ; quote ; 4,22109351113971 ; 4,13667164091692 ; 0,0204081632653061 ; 0,8 ; 3,90451149780423 ; 4,53767552447519 ; -7,3 ; 45EccadEBFdD83cD3E2c8E71bBF07e6ac4cF19eBEEdEdeFc9aa61Fd68DC13a5A ; < aw8LYd0SE09W4aD8HsI40w3EgF0B133nnuN2nsh3KxuPbgzva45F5mM3E2GwSr61 > > // < CALLS 125,422971021142 ; quote ; 3,52019161191621 ; 3,44978777967789 ; 0,0204081632653061 ; 5,1 ; 3,2561772410225 ; 3,78420598280993 ; -8,7 ; C99aaF540dAddeCfbdF417cE90E5433EA7aDf1a7a70cBF3DB4ceEBcbaa10Fb4D ; < N8U8Kn9aw5241666N242iI5d4LZK7ZCQF2tIkHrszG3tisYyqDSYKDJNMH93C3hs > > // < CALLS 129,747901056354 ; quote ; 2,92992596859076 ; 2,87132744921894 ; 0,0204081632653061 ; 7,8 ; 2,71018152094645 ; 3,14967041623507 ; -9,3 ; 7aCd55FcBa7A7835CEBDbFe1FDfbF02dbdddeA5fae12Da7ADcCC0C2EB3Cd3a6E ; < Yec0g0cr0i5c3qXJt0alCTvyYIogLZENTO3y63ijZ0l97S4zhg8DfW78xW51C43O > > // // < PUTS ; 1Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 43,249300352118 ; quote ; 0,0585877411035796 ; 0,057415986281508 ; 0,0204081632653061 ; 1,7 ; 0,0541936605208111 ; 0,062981821686348 ; -7,8 ; caDE5e7d2dE2Af2BecaE3c20bE0ea78Cccbfae24EBEDaAAdDF69dfe34AeE921A ; < S427pro25vjYQCAU71Rlew3UePalZO5m5Sgi516Dbr6O275gxcQ9tp8Uh4LMVJ6O > > // < PUTS 47,5742303873298 ; quote ; 0,145301040226713 ; 0,142395019422178 ; 0,0204081632653061 ; -9,8 ; 0,134403462209709 ; 0,156198618243716 ; 3,6 ; AAaCEf5BcAee1c567FF9fff76e44AA3EAaeaECd7fabBcFE23DfA56f0AA7487d3 ; < MAH2Tr5302yj11388rL0n2y74AkANVOu5xSUtthL63tH8jXPGsJLu77pBbOTCO46 > > // < PUTS 51,8991604225416 ; quote ; 0,312278302197384 ; 0,306032736153437 ; 0,0204081632653061 ; -3,7 ; 0,288857429532581 ; 0,335699174862188 ; 4,9 ; 7ECa8d9aAac60D50B6A4AecFC4C27eB5C0AaaaB6daD4a48c31baEfAC8dABc4Af ; < O8O3183O7i472F6j0b7KjWCYvfCfOodE25lCd9h12GsXO127p85tAlyaTc1Y3582 > > // < PUTS 56,2240904577534 ; quote ; 0,598879967814781 ; 0,586902368458486 ; 0,0204081632653061 ; 2 ; 0,553963970228673 ; 0,64379596540089 ; -5 ; d8cB70bCC1DAEd91E06bBB4FCd3BE7fE3b6dE2dE5DC29c6fBfb6181Fd486EBcb ; < Fr8fAKuSA7ol4xGBm54TPJcQCXL5P87A0pF61wh7Z5WE0YjP5FQfLDlEjD5692im > > // < PUTS 60,5490204929652 ; quote ; 1,0475564489426 ; 1,02660531996375 ; 0,0204081632653061 ; -0,8 ; 0,968989715271906 ; 1,1261231826133 ; -1,8 ; dBbbAcafd2B83EEbAa3C9c39e0aEaF4aDe0DC6dadAed59a2Dc3AdB6fdBA03Bd0 ; < 8x0zduot895PzuVGReV3P9B5IUF310vz34E4OeBG4nF7uxLp9Q0u4c5ngze2Frtr > > // < PUTS 64,873950528177 ; quote ; 1,69952268156894 ; 1,66553222793756 ; 0,0204081632653061 ; -8 ; 1,57205848045127 ; 1,82698688268661 ; -6,8 ; 19B0BcE3D97fB57B6b3e0fC3A2d1fffE29E0Eed9ACAEba63defACa4FdBCAAadB ; < 7t94AA4gUW4B4ujJmV0mJ2c6tA1Sk851vlWo5K4OOw9u85L5I9e1t5YAxv5B9xoz > > // < PUTS 69,1988805633888 ; quote ; 2,59087699453423 ; 2,53905945464354 ; 0,0204081632653061 ; 5,7 ; 2,39656121994416 ; 2,78519276912429 ; 5,5 ; fa7Bfc68Ba40a00ABceCE1132cFa8AFBd3BCE7CBEDfBCA53dcF5ba86FbAcFBDB ; < SN4x32143N9u8fOxzImh900UU8liz9ekWbOy7Z54maL15xLwQzf6LbPNZysXC7fq > > // < PUTS 73,5238105986006 ; quote ; 3,74979556225416 ; 3,67479965100908 ; 0,0204081632653061 ; 7,8 ; 3,4685608950851 ; 4,03103022942323 ; 8,5 ; BFBaA8EF63FDd88d2Cda3DeBcC1E1EAfEeeC5AaA0D6E9FDFCdEbfdB2BBFEcEee ; < 8Eqy0RO13e3fk6hj6YNpmCgJU0TQ7FCUdh9bTPBTqawkFv4RRzvBbVKeP379a2Cv > > // < PUTS 77,8487406338124 ; quote ; 5,19503605153417 ; 5,09113533050349 ; 0,0204081632653061 ; -0,2 ; 4,80540834766911 ; 5,58466375539924 ; -8,4 ; FF645faafaeF89D2FfE328C1dAdCccFd7fa7a322efbfeaD1F59DEc00dBd1c6bc ; < cUqbLOEU89zN8s6HHA3MN43HQvqIIEfRRjMvW9RkPEupPAp0X5e5PJMzhRQx274D > > // < PUTS 82,1736706690242 ; quote ; 6,93566790223434 ; 6,79695454418966 ; 0,0204081632653061 ; 1,1 ; 6,41549280956677 ; 7,45584299490192 ; -1,9 ; Be9FEFcDcAc7baCBa654ffacCAeb6aAaAbed8dAaab35caAf5aeCb1d0AbD1C9e4 ; < wXcH7X3v1sC4fJcQBBmgr202oUkZfSqAFAeB83VWg1Q1yWEV1zgSTM36RcslpwI7 > > // < PUTS 86,498600704236 ; quote ; 8,97176164348836 ; 8,7923264106186 ; 0,0204081632653061 ; 2,8 ; 8,29887952022674 ; 9,64464376674999 ; 9,2 ; bAca1acB3A4FFBDbccFe13cF4fdDfceeEEbdDDFdA9fCBa8abcfFeBd0c9CbDDA1 ; < rZ3SVJNdBbK5X3D4xm45wM5j83GJi4J4Dy8y9b604y7HWaC107vP19edXAh5kk6G > > // < PUTS 90,8235307394478 ; quote ; 11,2957049163796 ; 11,069790818052 ; 0,0204081632653061 ; -8,1 ; 10,4485270476511 ; 12,1428827851081 ; -0,4 ; fabF7Fcc0df8bDBceeDf7C0bdDdB2fafC9369Cd03f1fBAeDf763e146090447c2 ; < BzWe25U9z64qFb9Jyv4W6H109ECc6x8Oqnmr27fBFL6z0BaC7Yc443w3PJ8XEx51 > > // < PUTS 95,1484607746596 ; quote ; 13,8938315674766 ; 13,6159549361271 ; 0,0204081632653061 ; -6,8 ; 12,8517941999158 ; 14,9358689350373 ; 9 ; 283E9badCFbEc1EdeFEcA22dd0AFd5fFb66a2C38fAB749FaCBEeA66DAfDa51dD ; < 66oxW7g2RuxHglzD0MNtO0zYBOLSk9MaCRW74f2xUg8APTLr0fAMu38k49KUkBii > > // < PUTS 99,4733908098714 ; quote ; 16,7481130251719 ; 16,4131507646684 ; 0,0204081632653061 ; 1,6 ; 15,492004548284 ; 18,0042215020598 ; 3,6 ; b18DD8eAB00aaBDBD984d12BCf0cAbc4af155bf2Daac36FDcfaFBb1cFCaD58aA ; < X3vwzujChLSEYf4A5mJU408S5CT3023cI4Q84mrv7t556el3WjG3H453No582fAC > > // < PUTS 103,798320845083 ; quote ; 19,8377377807256 ; 19,4409830251111 ; 0,0204081632653061 ; -8,1 ; 18,3499074471712 ; 21,32556811428 ; -6,8 ; 38CE6Ac0CfAcFb8eC4FA7Cc9d94EACF0bF7FBeFCCBF089C9BF17E0FBfDDf62Ca ; < eMqw673raK38yo636fmA1XX28t44Y7oATTe4LW160BawDj1oA7LPI2OgH89EgIP5 > > // < PUTS 108,123250880295 ; quote ; 23,1404762935061 ; 22,677666767636 ; 0,0204081632653061 ; 3,2 ; 21,4049405714932 ; 24,8760120155191 ; -5,3 ; f1a171Ae4A7eedf07eeFAFeB7b88aD8cABBfafADaf805eeBaCa3bcbda87FA1CD ; < ELnn9048jHpr1b7DNQL027Dd0LoEttgtYvkmsY4v5Er09uX4fqOmryTjkFx2vWX4 > > // < PUTS 112,448180915507 ; quote ; 26,6337859487338 ; 26,1011102297591 ; 0,0204081632653061 ; -5,6 ; 24,6362520025788 ; 28,6313198948888 ; 6,8 ; Fb9f9bAECAcd9Cc0ab9a7Ea06dCAB6EB2ab84CACce0d8ef3E6A785CCF2bA0E3E ; < 1GAn12dV94WU8u9hPu4k9E8u4sAAeuqj9MVGz0uSTo940n3Y23129wqbYLu5thf5 > > // < PUTS 116,773110950719 ; quote ; 30,2956514441856 ; 29,6897384153019 ; 0,0204081632653061 ; -4,5 ; 28,0234775858717 ; 32,5678253024996 ; 6,7 ; C35Ef0Cac97C5Caf5f57CDCAc76362def48Ec73d109faFBc3E8eaDBEcbD228A2 ; < hwRD21UFqAB77F46K6iivvMzmg83Uf0GixK3gtl6BsjkhuEmhX3sh155zqPhgUtD > > // < PUTS 121,09804098593 ; quote ; 34,1051815971371 ; 33,4230779651944 ; 0,0204081632653061 ; 5,6 ; 31,5472929773518 ; 36,6630702169224 ; 5 ; 78Dbad43cBbb6ddDcF9FcacADA7ca461b30Cd0ed1f02d9B914FdD64Cc1E8d2Dd ; < 5iZw8X1x4xog92Cgk252uU6N1h63A0D3rp14KszQYJ69aLg7KL6D7pC943Mid69d > > // < PUTS 125,422971021142 ; quote ; 38,0429971295564 ; 37,2821371869652 ; 0,0204081632653061 ; 4,2 ; 35,1897723448396 ; 40,8962219142731 ; -1,1 ; 6dD93baC6CDBCE1d9FdBAFbeD42bbD68aDee3AeCEECfd9cfb2ac7cB6b7fAD34c ; < o9vFKK64rc6SDGniWP3QQk3cA54d4LsB03SST41KY2Xc9q0W44q0uOqSEvhy6SeL > > // < PUTS 129,747901056354 ; quote ; 42,0914489178737 ; 41,2496199395162 ; 0,0204081632653061 ; 4 ; 38,9345902490332 ; 45,2483075867142 ; 1,8 ; CbA9777037eCac9CDEF9Fe8E7DAf98d6DCcDDFbAB3AcF2dFbCde05BF47a73421 ; < z23bH526m3ckJO2r18CCm16rrL3vX526S92bLQb6YvloeY4X6p3Ze1zq56RW6X78 > > // Futures_EurosibPower_Engineering // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 80,467707 ; 1,14 ; 69,5857078947368 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; E5C3FFbeEDBcAEc3afB9Ff7F0FC0b15ACD4af30FbBaBDcFD45Fb8eD45fe5c2Cb ; < T6skmd83RU84dIcA5Q55jV8lSB3rOSlLl7eGIGR86PfOQ1OfMmEtIzDny104E78w > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 80,4633818792096 ; 1,13993046 ; 69,5862196885323 ; 80,4631318792097 ; 80,4636318792096 ; 3 ; 5,7 ; 6,6 ; -9,9 ; -8,6 ; -3,2 ; -0,31 ; Future96AP19 ; dB5fDde8137EEEEC4c3CDbF5fc081b5E2CAFFbD7bDACD9cbfDb5dabdC0bacc75 ; < N6gNDT1aFNGUxAdPzR0ynb9Nsl86cy627hYcfQDo7A1RMLsSRCYdT7o060yP7B50 > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 81,3462394335325 ; 1,15380498577013 ; 69,5025896375686 ; 81,3459894335326 ; 81,3464894335325 ; 9,6 ; -1,1 ; -5,1 ; -3,7 ; -6,6 ; -9,7 ; -0,27 ; FutureJU1932 ; a3274Ffc64bcC95E8aAF8BDcfCdd4B8887eD6aBFb147caC6E88EBF4DDECAcaEf ; < cKiFW074oY6K9wSvg86o6W9zRG7OIuuO7b1gH5eSahatdCrbE14CPq5D8VOgJi94 > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 82,295704370818 ; 1,18200375723698 ; 68,6238940586703 ; 82,295454370818 ; 82,295954370818 ; -7,2 ; -3,9 ; 3,1 ; -1,2 ; 1,8 ; 6,9 ; -0,62 ; FutureAU1938 ; BF3a4cFaDD4fd67C5Dcf1AeaDE7d1cBaf6ADEDe0ffC6e18F3DF754a5B529FC3E ; < 4mR6b8p7VXQ69CV62TV208qgDfB5gg0JB0uYEaVxd3F5rEU1DKPp03B1o9Um89Pp > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 83,2297698616958 ; 1,2255216695491 ; 66,913748022357 ; 83,2295198616958 ; 83,2300198616958 ; 3,2 ; -5,3 ; -9,9 ; -9,6 ; -4,2 ; -2,3 ; -0,67 ; FutureOC1952 ; ceac67FB057D3FdF5fbb1FFbB4BbC4fCffC4e8eDFAFb7b36BE25eecd8bEe297E ; < L0pWAQddhU99FOBWgjmSBft16mV3F70688zUE0vAS10msD0RxsO345wzy7H8z47t > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 84,2418127736471 ; 1,28593494301587 ; 64,5101669265455 ; 84,2415627736471 ; 84,2420627736471 ; -8,6 ; -4,5 ; 0,7 ; 7,1 ; 0 ; 7 ; 0 ; FutureDE1990 ; ABE8fbFfCb4bAF7dEce33b55Cda18CFd9a6Bdf2F94CcbF9BcFf8646a289ef03b ; < D4O06o6T98bl67T59RG54utp5v8lz4dv23K3pI0d3LMY6o1Tc61mOwZ7u907lert > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 85,4174393131844 ; 1,36592565978539 ; 61,5344715514058 ; 85,4171893131844 ; 85,4176893131844 ; 5,7 ; -8,4 ; 0,2 ; 4,4 ; -1,6 ; -8,4 ; 0,88 ; FutureFE2084 ; 7bEfEe7cfb9d97fCbE26BffdFEDeeeD3fcDFB9d353AC9fceeB92C7e7fDcAF1da ; < 4xW6WC7x2KrZbw5id2Bx33zZ9vrdrJfaPl4m9kmmJWXt6Q3h3AW0yOzHsOSEY1X4 > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 86,498600704236 ; 1,46829905613498 ; 57,9107514186702 ; 86,498350704236 ; 86,498850704236 ; 3,8 ; 2,2 ; -9,1 ; 1,9 ; 3,6 ; -6,6 ; 0,3 ; FutureAP2094 ; eBEFDCDF5ddAAaB8E4ad5ceD868cD1A6BEAb43DCeF82Dc5FC111CAdcA0e1E083 ; < 1EQe9KzCmUQBS8aSH65TU5l863Ux2e787OipsjUnN84zXA973O8c9nUr6I6n88NW > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 87,6884455281873 ; 1,59757817393707 ; 53,8883597427274 ; 87,6881955281873 ; 87,6886955281873 ; -5,6 ; -2,4 ; -4,8 ; 1,2 ; -9,7 ; 4,5 ; 0,02 ; FutureJU2055 ; cBDdCdD6FD4eD2FA9D6fbd4D872FF0Fdcdddf2Bfc5f333D8f861DDE6AC5D12BC ; < CRZ9sGivY4EOR34M2W32cvl0B85CkWo75lYIR37SNcxM3mHRjXu1jL5CSKpBfca2 > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 88,99671737479 ; 1,75919843646909 ; 49,5893567944595 ; 88,99646737479 ; 88,99696737479 ; -6,8 ; -1,3 ; 0,5 ; -4,7 ; -0,8 ; -1,9 ; 0,78 ; FutureAU2087 ; F0acEEcFAAAcdFaEECEcfD5c960beDa19dADAFD0AEc0cb232eAe3cCac9CfC6C9 ; < W7jLLhh17v91Ld3YaxaAlPaa1V7KoPx6ZmOcsY6OW1eCs6eBw6L1C3M54Ggo0k1s > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 90,1915609257977 ; 1,96086893907608 ; 44,995710946543 ; 90,1913109257977 ; 90,1918109257977 ; 0,1 ; -0,5 ; 0,8 ; 0,9 ; 3,4 ; -7 ; 0,13 ; FutureOC2011 ; Dc9DaF2b4abaDf0F6A7d3DD8F39Ade4A350f477f1fE967Eeb1ba5AC0fFCffd43 ; < enrEk2S8903Kj16MIMYaYgv7hJP1GmVPA97kzR6WzP9EWwVOdMul57KI86W701Du > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 91,6572769146718 ; 2,21221623255843 ; 40,4323317791906 ; 91,6570269146718 ; 91,6575269146718 ; 1 ; -7 ; 3,6 ; -7,1 ; 9,9 ; 6,2 ; 0,88 ; FutureDE2092 ; c21A529C4EebCf2b25fEdd1dE4802EDeA7efA1Fd5cCeBDEF89a4ffABe62CEEBd ; < y5U37Mt1yq5dc5tP2e5p0fikV32v2ChFlLkZtNVzMquLvU8g7EL9JECi0TSImj1q > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 93,107199253132 ; 2,52580972054052 ; 35,8623172584858 ; 93,1069492531321 ; 93,1074492531321 ; 5 ; -0,7 ; 5 ; 2,3 ; 1,2 ; -4,7 ; -0,93 ; FutureFE2123 ; afaC6eFea1dEab11F80DDb94fdBeEeFEaEe296E149FCcD9c2fD9d91E1f14E00B ; < PyrJ967xNHs0dZ70sT77w2gU0UiAsmmHQlrP9e4K4qlLea7O9V8NR73PIwjv61pG > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 94,424815202361 ; 2,91912375860365 ; 31,3469722460581 ; 94,424565202361 ; 94,425065202361 ; 7,8 ; 9,1 ; 6,8 ; -2,4 ; 5,9 ; 4 ; -0,81 ; FutureAP2142 ; 4aA2C5dabCfdbFdFf4080FDBAefcB7dC03ecDdfe7E84D17dcc40fE0cA5aFe6Fb ; < BH63AA365Uc3yqFYZd43FDKbYS5FR8J7OhQL7875Xdm841Lw5PEZ1yqmFz46D2HZ > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 96,1326600819787 ; 3,41426712683511 ; 27,156162511833 ; 96,1324100819788 ; 96,1329100819787 ; 0,1 ; -9,2 ; -4,7 ; 3,9 ; 0,1 ; -9,5 ; -0,31 ; FutureJU2136 ; dB6a20bC0ffdbaC7e2A2fA94aa1eb96d8CDdb68c4FEfa3bfcdCfaBCbF1fb3E76 ; < vo7GLA6fx3D2TVBkHbOX07wcuh80BLl9pWFrWSaF8HI5wjN99at0935157Muxer7 > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 97,5701650582074 ; 4,04164221874421 ; 23,1412177964936 ; 97,5699150582074 ; 97,5704150582074 ; 2 ; 5,5 ; 5,1 ; 9,3 ; 2,5 ; -7,3 ; 0,6 ; FutureAU2162 ; 59cECBCcD13BbFEc9856dDf4DbBa58FebEAB9D4dDA32EfcadE6fD3d06Db35Cbc ; < qVIQ5zm5eU1UGn3cb6CW3A0v8NLXkt2HTFu1tR6BsrsynV898HpKR4VtUe1Mp2QW > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 99,4263596679447 ; 4,84265327712496 ; 19,531381038077 ; 99,4261096679447 ; 99,4266096679447 ; -6,1 ; -3,6 ; -5,9 ; -3,2 ; 7,6 ; 4,5 ; 0,48 ; FutureOC2178 ; BdeAB2af0afE10d2bAdc7Bf984BBf7Eb8aF1DfaAAd9aDc506CCcc407420351D5 ; < w3Nlvgw59A85vz2tB61BL4lp1jV3A7Wr5mRMCzXOWMV4RMUS829LCd9vhf977741 > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 101,020451602344 ; 5,87285539592585 ; 16,2012496123137 ; 101,020201602344 ; 101,020701602344 ; -7 ; -1,3 ; 5 ; -2,2 ; 4 ; -1,5 ; -0,38 ; FutureDE2123 ; 2d9EB3EBD4FcaE7CDcF5BcCDF4cffb54ECA39e840A9Ba36979fe1f20bDCEe4Ec ; < 36o64fM71awOM3rJMUT6XB24vBkK5985AK55OTgj0510rTZMghjR5fLTE7zFT7fP > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 102,73184745168 ; 7,20841202473178 ; 13,2516614060367 ; 102,73159745168 ; 102,73209745168 ; -5,7 ; -3,4 ; -9,1 ; 8,4 ; 5,6 ; 9,9 ; -0,35 ; FutureFE2289 ; 0c277cFd3c061df8EEf465Af1Ae7f24da8Fed1aBF9bEcabd1f0Fc8d68c8ce2Ea ; < 5En744687iU0xniBV3y98L1S75P8msDk1TtER9tlqeqLPy9326UAWo53vDyGhAyK > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 104,687398465502 ; 8,9545768525513 ; 10,6909375160117 ; 104,687148465502 ; 104,687648465502 ; -2,5 ; 0,5 ; 0,2 ; 4,2 ; 1,2 ; 2,3 ; -0,23 ; FutureAP2224 ; 8DAa5beEcBECecFEFFd127b655EbfE9FE2A0cd5ccA8B5bb4aa662eC44deBcCEB ; < jcd5osF3Pd536W54Xm2s6ZF2tOWKtm360UV5Cq6C63D4FGD4iDQiOTf3z80jbq29 > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 106,404921573641 ; 11,259900765733 ; 8,44989869692815 ; 106,404671573641 ; 106,405171573641 ; -2,7 ; 3,2 ; -3,5 ; -0,6 ; -8,5 ; -5,6 ; 0,33 ; FutureJU2239 ; fedAddfeDe7dcA69fEeADdFe73fAfCCfBaE76BEaDB3d45bA239F6Fffa2cfe2C6 ; < hnHE16fDYj0qE34MXWWv3UCo6ws3E2F8wzt1CtgVZDpOS3enadr8S5nCv2aqdVRN > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 108,562671947789 ; 14,3299541381601 ; 6,57592598699884 ; 108,562421947789 ; 108,562921947789 ; -5,8 ; 3,2 ; 0,5 ; 1,1 ; 5,8 ; -1,8 ; -0,52 ; FutureAU2240 ; Bb6df50B0F7E6acBE6d7CBCA4FeC9DAEDcAe5d6eF8CFabEF5DE93dFfae0B0Bb7 ; < 78FV6B9DN3YH2oatEcRJe49wEwtALYMM9z8ia50He6tyoatg6JkwaV6q60ER2ZZ1 > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 110,914151844365 ; 18,4582822989029 ; 5,0089097158817 ; 110,913901844365 ; 110,914401844365 ; 3,8 ; 3,3 ; 3,6 ; -2,4 ; 5,1 ; 8,7 ; 0,64 ; FutureOC2273 ; ECfC4f7ae6b2529Fbd6fF60acAaE1B3Ece3cE422BCddbad5025A1ddcfBfF0BB3 ; < mbNiRG3e3VsS1G8IchSzui7N6Kiy075iC7U8Ra3amyzA497tA3Z689lf8V0Y7dt8 > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 113,051941169835 ; 24,0621076388776 ; 3,69833910090133 ; 113,051691169835 ; 113,052191169835 ; 4,8 ; 3,9 ; -8,9 ; 5,4 ; 9,7 ; 6,2 ; 0,72 ; FutureDE2235 ; Fc1fEbCFd9CC2EC7c98F3DA81cfD7a0DfaCb9dd2EDA8a3Afb3c5C6AB4eCBeE31 ; < K35xwfCnE8cWvPd7PIv7dCg3bc8tmj1m26PM6fmIr4bXolCkW65K4yNN9U3kWn0L > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 115,405995687366 ; 31,7509559163143 ; 2,63472507698794 ; 115,405745687366 ; 115,406245687366 ; 7,9 ; -4,1 ; 1,7 ; -6,3 ; 7,2 ; -5,2 ; -0,79 ; FutureFE2340 ; Ee12b4c514AC936a2cdB2eA26aFadEcbfafcFEBE2A8E9EbCFe9ccFffeCF3aBAE ; < Rr6A4j5V53WyTl1opn7qZpE9Bj1Qs9103Eg9vvozL0f8i82pR6v8Tnof7FAgxKg8 > > // < CALLS ; 2Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 47,2124076011805 ; quote ; 57,5879066477486 ; 56,4361485147936 ; 0,0204081632653061 ; 5,2 ; 53,124843882548 ; 62,0509694129491 ; 5,8 ; D7ece4D4F8fdab9B7DBECdea5d99AAFAf4Db122ADFF82cC82ccEAdeD0aFCaEaC ; < EB9voJ5xqU2vGPw65JsU4ANXAq8ZYEUz821jRM4W82UO6L5e06Vrs2xrJ0ydKgcq > > // < CALLS 51,9336483612985 ; quote ; 53,6044676860604 ; 52,5323783323391 ; 0,0204081632653061 ; 2,8 ; 49,4501214403907 ; 57,75881393173 ; -6,8 ; FA023b0cEeEC79CF9413F6E35e67CfBe3cc4dACBaa75fdEE5daB4eFe1fFD7aeb ; < 744n6JIRAgf4ns0Ld85oYCcb8MYR25b29vd442Y775PJpWOs54lG5LmCu80e9j9V > > // < CALLS 56,6548891214166 ; quote ; 49,749238783706 ; 48,7542540080319 ; 0,0204081632653061 ; 0,5 ; 45,8936727779688 ; 53,6048047894432 ; -0,9 ; 7Ff57BD31Dbbadb00AfaB10bD6bdf2D7AFeDeB6BebEbACaE32c6dC91DfCFbDcD ; < 2mP49Uc53xG88635eo57kc0DRq1oWj27km0I8lfGEd7KK2L8sHy76s4W16W6Y740 > > // < CALLS 61,3761298815347 ; quote ; 46,043352958261 ; 45,1224858990958 ; 0,0204081632653061 ; 2,4 ; 42,4749931039958 ; 49,6117128125262 ; -1,3 ; c2dEcfDD8d251bfC9BF8F0d11AAe90abDdC6bdAF10aF1Ecc51efFBfCe89bAdfd ; < ZXk9rbCs4r6l01016CZtW3x04O5H2H9Xp66LXv1469ULl0f16koHGa867Abc4PLP > > // < CALLS 66,0973706416527 ; quote ; 42,5041624904487 ; 41,6540792406398 ; 0,0204081632653061 ; 6,2 ; 39,2100898974389 ; 45,7982350834585 ; -3,3 ; adbdDAd4A03dbdF54F82BeEFe9f3fBeEAc3B0D5fFACcAa92e92ecDAa8AEb48B3 ; < 4G9lCNETeaihQDY390tP1HU1OY3q3633c4Fe43o5s7h3XS72SSwm1cjx3z2LO362 > > // < CALLS 70,8186114017707 ; quote ; 39,1447745021317 ; 38,3618790120891 ; 0,0204081632653061 ; 3,7 ; 36,1110544782165 ; 42,1784945260469 ; -2 ; EAEbadccbe59dbFEEb4bE29B3aAFa040cbd1B6CeB469aBC049Ecc8d5aFd71B2C ; < 639iL1Ur6BeogGnh17FF77TGHBuD4k0Q8Peyp9q6a3WLDI4Pqtn7tjNC0808A0qn > > // < CALLS 75,5398521618888 ; quote ; 35,9740072988448 ; 35,2545271528679 ; 0,0204081632653061 ; 8,4 ; 33,1860217331843 ; 38,7619928645052 ; -6,4 ; FBFDc89EAbAAD508cDd9EfEcAB0cfA25c9Bfb5A4BfEDa2c81Fd8FfBD0fD1ecE2 ; < 6157cm9M31L2uj5pb3196b1eIx95DHoGj5lSpY293a2m243G0Ghh02Kqjy073776 > > // < CALLS 80,2610929220068 ; quote ; 32,9966443893104 ; 32,3367115015242 ; 0,0204081632653061 ; 8,1 ; 30,4394044491389 ; 35,553884329482 ; -2,3 ; deeCabFFF61feabb2e4fff073e67e2D15B7C1F8dc41eD0cdAcAfC1f73Db0bcdD ; < Cx3iyjSlG4Q8iBkM19Dcw9ICTJaQfGAvoDGYqqOxFzRJe388mXj5HjNIt5Dd08A3 > > // < CALLS 84,9823336821249 ; quote ; 30,2138736853229 ; 29,6095962116165 ; 0,0204081632653061 ; 8,2 ; 27,8722984747104 ; 32,5554488959355 ; -4,7 ; beC1b7E69E5987fcADd2d2D57DCBbaE5a3C4dbebC4Fb07e9F0027bAb6E248D41 ; < u5ttS5LqFDf1nAK13zr7cQWH7KLt9Iu51wbu3b1835ogN2X00Z24elnqmLEXlu1j > > // < CALLS 89,7035744422429 ; quote ; 27,623821116272 ; 27,0713446939466 ; 0,0204081632653061 ; 3,9 ; 25,4829749797609 ; 29,7646672527831 ; 0,7 ; Cbe3F8baC3CC865ACeB32faA77ff109BebAaE1a3Bcc7b5bddC18FfD0b3486e3B ; < SEB747YNL0KY1ojuA5yn375DH4TNofB7pDgYpEGPULAyMz8bW82k8SisrbalF8bV > > // < CALLS 94,424815202361 ; quote ; 25,2221118387227 ; 24,7176696019483 ; 0,0204081632653061 ; -3 ; 23,2673981712217 ; 27,1768255062238 ; -5,3 ; AE3FAaCEFb796B5AF4DF09fa1dbDdbF3B1EeAb0efdb4FF1FEc717fFEda2DedF7 ; < h9Ezh76734g4cDxb6iH66QLXO1851Ri15X7G3TX6F5gIanomGZ09k1YlGG01R0nX > > // < CALLS 99,146055962479 ; quote ; 23,0024138329086 ; 22,5423655562505 ; 0,0204081632653061 ; -6,4 ; 21,2197267608582 ; 24,7851009049591 ; -0,1 ; bdC6dEDEb8bEBff2E4ff9aEeDcfCFa1Ead817DcB42fb606cBF4A2fFD6af3E90F ; < p3Xilydw4b49np397CI6Y864M27hu3if00ukZjK9uC03pg2DZ9UY78nPHY0ZF99G > > // < CALLS 103,867296722597 ; quote ; 20,9569361662668 ; 20,5377974429415 ; 0,0204081632653061 ; -7,7 ; 19,3327736133811 ; 22,5810987191525 ; 4,3 ; cddDAFCA3b8d121aABcbdbeAEbcfeFFd9CDEf5Ab5eaDcEFfDF9EcFbE95Be6cc7 ; < L6NAFR3iG9z80YcG3Lf1Nnrib015wgHW935R24sHUDjQ919dY953Y0t8FZ970p32 > > // < CALLS 108,588537482715 ; quote ; 19,0768673163296 ; 18,695329970003 ; 0,0204081632653061 ; -2,3 ; 17,598410099314 ; 20,5553245333451 ; 4,3 ; 219Ac1ddfaE60832b5FEbA8bfc0B15bDD5C0cDf8c07FA64EfD7CBd18Ffea965A ; < 45r0p856r8CzVNF11Rvc2z5ZM3r3dFTT5JFd580T13VjkE2MpnLfx7JfIlr2992a > > // < CALLS 113,309778242833 ; quote ; 17,3527481632677 ; 17,0056932000023 ; 0,0204081632653061 ; -5,7 ; 16,0079101806144 ; 18,6975861459209 ; 1,8 ; 0d2D59CCAD7D450d0B7Ad6FdcF06Bbdf828A6Be8Feb9De0601c9DCb5A1ED4eCB ; < 9M1wEEHa8dMiWoRGQjwc34v8jHY5QXq844Z3l9q872nj914cd1bmaurQ0FCbGB5a > > // < CALLS 118,031019002951 ; quote ; 15,7747803335794 ; 15,4592847269078 ; 0,0204081632653061 ; 8,9 ; 14,552234857727 ; 16,9973258094318 ; 8,6 ; 3A2cA8ac7FFe1BF5a0682e1bbdAA0ffb5b9b3FcE4abCBe38eeDacDEfBABFDCe2 ; < 36V5Y09F215NOX4MjpG6xdU07uTCi9XS6zSb4ecGqSVd7YtLVobBwHTRixL8es8U > > // < CALLS 122,752259763069 ; quote ; 14,3330742666231 ; 14,0464127812907 ; 0,0204081632653061 ; 1,9 ; 13,2222610109598 ; 15,4438875222864 ; -0,2 ; e9AdCbeA91A7e286cb4E2dfcEDB234edFbCcB91Cb0FAfc1b6cbe3dBC89D1CD0e ; < ZNk6EM3t6WohLTGg2lOuiQih4qY7ZT69VsEbDP122tPJGk64wE40AeHN0e59L7B6 > > // < CALLS 127,473500523187 ; quote ; 13,0178433568744 ; 12,7574864897369 ; 0,0204081632653061 ; 5,4 ; 12,0089604967166 ; 14,0267262170321 ; -9,8 ; 2CFF2f8BCFaaC2C7dCE97aF8d2B2dbfBb1Ac99C8C6B7babcAccAbE6c2F69D7C3 ; < FnC875sMO6Fo3SvGb9268106g054M7R26QMMt92Q50KsNUUNc2nZ866f01xL4068 > > // < CALLS 132,194741283305 ; quote ; 11,8195513380887 ; 11,5831603113269 ; 0,0204081632653061 ; -6,9 ; 10,9035361093868 ; 12,7355665667906 ; 6 ; f6BD0f1aEFcb2D84BA48FEEBA5DcFEdC63B6a22ABCcEED15aae1a9496CC4Ef8f ; < a4lD9dn0mEDf2K7ZaOuojy5kkvS41G6DOY489FefMa52QGU295aB1AbDkLbDt8VX > > // < CALLS 136,915982043423 ; quote ; 10,729020132261 ; 10,5144397296158 ; 0,0204081632653061 ; 5,8 ; 9,89752107201076 ; 11,5605191925112 ; -9,6 ; Bc5990Bab8BFC1fcaaBcAccBda4ab0D8CEABfca76fe4aDfb4F1e3FBDcfFffeB5 ; < 5DQF4mto1awEWzhkxOZms73ImWRaOngm9wC326zwJy96piUB640hPwb1m71vDA6Q > > // < CALLS 141,637222803541 ; quote ; 9,73750498525262 ; 9,54275488554756 ; 0,0204081632653061 ; 7,8 ; 8,98284834889554 ; 10,4921616216097 ; -5 ; Ff58fbc5DebBBeCbedDdc5F4813CB24a5084dFeD6abEeEcc6bCBE14AD2e13dd4 ; < py5BU3oGxvxQYF6hH50wuZ52638yyD2z90oWezQd6XIILuk4IQ1v8v81Y9ZTezR2 > > // // < PUTS ; 2Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 47,2124076011805 ; quote ; 0,408665521929223 ; 0,400492211490638 ; 0,0204081632653061 ; 2 ; 0,376993943979708 ; 0,440337099878737 ; 1,5 ; 6d38ADeAcD7E8ec12bcEDa6FDc4E5fB6b5ECEC95CEaa8BECF1e6fdAb3f5fDa46 ; < n51wPNJ21AsW97BVXjY87T9s05i4Erpoc46sP03GQdSE3y46krAU3gY918B290v1 > > // < PUTS 51,9336483612985 ; quote ; 0,707302447659103 ; 0,693156398705921 ; 0,0204081632653061 ; 9,5 ; 0,652486507965523 ; 0,762118387352683 ; 9,8 ; aDE2fB4e80CDaCC8FfDdFB03faBE2FBe180A2a7b39DAbC45a428C3C1626DFD3B ; < 2w4vofy7ZKCg9W13vam2IVFtKE09w8hgy7ujtHa1K6F25YoCCSQRJGcD0R5RyipP > > // < PUTS 56,6548891214166 ; quote ; 1,13414943272281 ; 1,11146644406835 ; 0,0204081632653061 ; 1,3 ; 1,04625285168679 ; 1,22204601375883 ; -2,3 ; 31EaAbBECe5fDdAaEd4f2cC63effBEcD5EFd5Ec43e8abF41fBf3Ea9bd50Ed510 ; < oI96EkAqKfMPj7vzDyVAOWfETT748aPpf2XEB183c12b0zPwO5aYGLeyC18stgez > > // < PUTS 61,3761298815347 ; quote ; 1,71033949469589 ; 1,67613270480197 ; 0,0204081632653061 ; 9,5 ; 1,57778818385696 ; 1,84289080553482 ; 6,4 ; EAa90dA4beBcaBF09acc18ABCFaFd6C1d8dE05bdAE1f83FB76bDcDE9E8EE7Fef ; < PKU01jE6fQz7Ifi0sWKbZbrV8hSPHYAIh9x9Eg501Bd5cMA3j5Ul0BuV96r4ZzoN > > // < PUTS 66,0973706416527 ; quote ; 2,45322491430167 ; 2,40416041601564 ; 0,0204081632653061 ; 3,9 ; 2,26309998344329 ; 2,64334984516005 ; 5,8 ; 32Cf17a0B06bDc027bA96Ac4bfcAB2f929f9cAcDCCBA54A1E0DDE9afdd0fEd56 ; < 0hi53asTeUhOksnD9Jj1WSx2gvM4hNzqI55N42168TG8IjClA62PQ3G6QbTOdI8L > > // < PUTS 70,8186114017707 ; quote ; 3,37591281340272 ; 3,30839455713467 ; 0,0204081632653061 ; -9,9 ; 3,11427957036401 ; 3,63754605644143 ; -5,4 ; 46FD3d79bdeBEFfCEaddcBDfc4dCeB59BFE24BcDaf38b7CEefCeF1cBbbE6237c ; < 66ROA3oXxNjY9id77X5iZvpD893K7E99J64chxEGTv5F4bw3XrU06HyLY7l3uwys > > // < PUTS 75,5398521618888 ; quote ; 4,48722149753384 ; 4,39747706758316 ; 0,0204081632653061 ; -0,2 ; 4,13946183147497 ; 4,83498116359271 ; -9,3 ; 65C9FCd4dFadCfafbf8E6eDEeaBcBB1efb68Be6d44a8e5f4EdeFd6D2D4B0fDe8 ; < O6ZK9fdGtcpO08LoiSE4377X45yzOm5Q3qJLI344D3P75SQJBRD2rN9qIA3zf6D6 > > // < PUTS 80,2610929220068 ; quote ; 5,79193447541758 ; 5,67609578590923 ; 0,0204081632653061 ; 7,6 ; 5,34305955357271 ; 6,24080939726244 ; 8,2 ; AfCEa2B9ea6CfFBbcd9Fe6dc9BD2fC5dDEca3E7Bf76Ba2D35E358Cf0D86cB00C ; < 306j62mNpxYj532iR4i47i8Q54Zc51P9tKXz1o61KjOX023lu4BH8vYykKZ9VMUN > > // < PUTS 84,9823336821249 ; quote ; 7,29123965884816 ; 7,14541486567119 ; 0,0204081632653061 ; 7,2 ; 6,72616858528742 ; 7,85631073240889 ; -9,2 ; 62eEcAdF49f1bb6CC8bB48AfE7bEde5b7aC36FBC9aAFE7FBdDd2AEEB825fEBfB ; < d1lGh275r199Ob79z7lVt1DB767c8QYI98IG4tTQj21XfFhy0df9s3VMc5IiAMeo > > // < PUTS 89,7035744422429 ; quote ; 8,98326297721528 ; 8,80359771767097 ; 0,0204081632653061 ; 0,9 ; 8,28706009648109 ; 9,67946585794946 ; 7,9 ; ba40aF4D7bE526f1b93Ec164DCDB8ECA8C196E5EeA3dfBbF1adee581CAFc96bC ; < 129IK8T9Rj7M733YUQW4V81Py16AJW2L6pGXZjdqV0lD3M59ouh2Ezmi3VhsI9AK > > // < PUTS 94,424815202361 ; quote ; 10,8636295870841 ; 10,6463569953425 ; 0,0204081632653061 ; -2,2 ; 10,0216982940851 ; 11,7055608800832 ; 4,6 ; c85c73DaB5E8DBfACcE0Bd6DCa9509eD4EbffF2CdFeD9D8bebD8cdF5Fbe5e5cd ; < xaAH14T71b0JfZ5Jk295Z9SO4bg602gOMGSjmJncm5zvQ4pDA61Ynex0LzBl1K31 > > // < PUTS 99,146055962479 ; quote ; 12,9260074686881 ; 12,6674873193143 ; 0,0204081632653061 ; 6,7 ; 11,9242418898647 ; 13,9277730475114 ; 8,2 ; 8c74f5FEEceFfBF2C9AEBECEd454E45fbBfFDaFEDADB7a5bEFcDA94e7d20bc8F ; < eJunwMs130rjm2T65Jiq2mdpNDxI0E6krrWX6gHSij38YQuR6QR9vk3N7i081z7x > > // < PUTS 103,867296722597 ; quote ; 15,1626056894643 ; 14,859353575675 ; 0,0204081632653061 ; -9,9 ; 13,9875037485308 ; 16,3377076303978 ; -6,1 ; edDFdfeBa89A96D6CF1D2CfC5B8Bb8E2Fca1b3342CA4A6CFC28BAcbE0285FDD5 ; < QfUFy6rpVdl8mI0Ut9leqQiCYai75q5Zt2GtHez15CQz91d4MqiQOn89KD7L23Wq > > // < PUTS 108,588537482715 ; quote ; 17,5646127269451 ; 17,2133204724062 ; 0,0204081632653061 ; -6,7 ; 16,2033552406069 ; 18,9258702132834 ; -5,2 ; AfA25b8df6588DEbEC56B7d23EEF3EFFd1edd9CAa7F115412aCdEdfB7FdE88a3 ; < A7r2VRAC070M1sOo9yIFbmn41YGE2x3H1GQ9q0V7W0On5051ySNkT73k5K2Xu3wT > > // < PUTS 113,309778242833 ; quote ; 20,1225694613013 ; 19,7201180720753 ; 0,0204081632653061 ; 3,6 ; 18,5630703280505 ; 21,6820685945522 ; 3,7 ; BE2EDceDbAaD4fe3B952A1c2DBF2DFc576feC9Cc2F9Edf0fDc1abc42f7e56CE4 ; < 7ksl6Am4uZOJ2q9mT6qtqBeJXu8X1VK0AUAJG5hP8NfdAOO9qSCn36d5n9Tg2dH7 > > // < PUTS 118,031019002951 ; quote ; 22,8266775190311 ; 22,3701439686505 ; 0,0204081632653061 ; 9,3 ; 21,0576100113062 ; 24,595745026756 ; -9,6 ; 4c0DefD0BBa9faD84490bfEcef4f2B8dD93b8a4F4c4b530A8bEdb6DB32BcBDCF ; < 6MtvPUd0tJDtjQqT701svYy4fEJL5Y76H98Px1Zi1CgErKxC039W5EosRPhkQDL4 > > // < PUTS 122,752259763069 ; quote ; 25,6670473394929 ; 25,153706392703 ; 0,0204081632653061 ; 6,5 ; 23,6778511706822 ; 27,6562435083036 ; -5,8 ; Dea0c706eefB10F54bBdEDB072C4b80dBcCFFfae40cBA6dDE57ff8cFDf4e67fb ; < VMum6eDAqfQ5r6NaV0Cu8nBz90Dib28M46aFZR630212iws2jO9E84AZY8qDmQN0 > > // < PUTS 127,473500523187 ; quote ; 28,6338923171622 ; 28,0612144708189 ; 0,0204081632653061 ; 9,4 ; 26,4147656625821 ; 30,8530189717422 ; -2,4 ; 2aAa71D676aF2eD1FcCFC4DAbbbbe1adEd8cFd51BE153EF7f81cC75aeca38b0a ; < UkF6X6MD83gVX138fpth9quv070H2Y5Al07j1Y7nEj83X351kn8PdU6771p2Qhzm > > // < PUTS 132,194741283305 ; quote ; 31,7176761857946 ; 31,0833226620787 ; 0,0204081632653061 ; 7 ; 29,2595562813955 ; 34,1757960901936 ; 2,2 ; FcDA8c2CCAeaE5C1c0BF5A02fefBBa79dFEbDF0ba2FFAaeEaCdb2eCA13BA1Ef4 ; < Sp8i1U7eNaIu1tKYS9lf17l1bSfBsOfAqfh9h9b4A0EUmlRIM5D9FNMcdLb2uJGT > > // < PUTS 136,915982043423 ; quote ; 34,909220867385 ; 34,2110364500373 ; 0,0204081632653061 ; -7,7 ; 32,2037562501626 ; 37,6146854846073 ; -9,4 ; D02fBe9d871D2EC30faEDBad7fdEedd7423fBaDbBe1fbbcbd6DcfC10EDca8aCD ; < CKP8VKsf1wV25uKMA7SKzx8Gh5oC74FX0HiDiOZ285yUS8PYwPa02y57aP10S3PQ > > // < PUTS 141,637222803541 ; quote ; 38,1997816077946 ; 37,4357859756388 ; 0,0204081632653061 ; -2,1 ; 35,2392985331906 ; 41,1602646823987 ; -9 ; 9d89fcBf2Ad4EDab2bAf58AfbdFa7fEDa5a2d1F8dD7eb82cfBC6eec4369e3f92 ; < lf594g8s0H5NCh1Nf8se2Rq586z9ocw87TY774l5ib636wFOxg7qIa93C723BuuL > > // Futures_EurosibPower_Engineering // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 80,467707 ; 1,14 ; 69,5857078947368 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; E5C3FFbeEDBcAEc3afB9Ff7F0FC0b15ACD4af30FbBaBDcFD45Fb8eD45fe5c2Cb ; < T6skmd83RU84dIcA5Q55jV8lSB3rOSlLl7eGIGR86PfOQ1OfMmEtIzDny104E78w > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 80,4633818792096 ; 1,13993046 ; 69,5862196885323 ; 80,4631318792097 ; 80,4636318792096 ; 3 ; 5,7 ; 6,6 ; -9,9 ; -8,6 ; -3,2 ; -0,31 ; Future96AP19 ; dB5fDde8137EEEEC4c3CDbF5fc081b5E2CAFFbD7bDACD9cbfDb5dabdC0bacc75 ; < N6gNDT1aFNGUxAdPzR0ynb9Nsl86cy627hYcfQDo7A1RMLsSRCYdT7o060yP7B50 > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 81,3462394335325 ; 1,15380498577013 ; 69,5025896375686 ; 81,3459894335326 ; 81,3464894335325 ; 9,6 ; -1,1 ; -5,1 ; -3,7 ; -6,6 ; -9,7 ; -0,27 ; FutureJU1932 ; a3274Ffc64bcC95E8aAF8BDcfCdd4B8887eD6aBFb147caC6E88EBF4DDECAcaEf ; < cKiFW074oY6K9wSvg86o6W9zRG7OIuuO7b1gH5eSahatdCrbE14CPq5D8VOgJi94 > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 82,295704370818 ; 1,18200375723698 ; 68,6238940586703 ; 82,295454370818 ; 82,295954370818 ; -7,2 ; -3,9 ; 3,1 ; -1,2 ; 1,8 ; 6,9 ; -0,62 ; FutureAU1938 ; BF3a4cFaDD4fd67C5Dcf1AeaDE7d1cBaf6ADEDe0ffC6e18F3DF754a5B529FC3E ; < 4mR6b8p7VXQ69CV62TV208qgDfB5gg0JB0uYEaVxd3F5rEU1DKPp03B1o9Um89Pp > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 83,2297698616958 ; 1,2255216695491 ; 66,913748022357 ; 83,2295198616958 ; 83,2300198616958 ; 3,2 ; -5,3 ; -9,9 ; -9,6 ; -4,2 ; -2,3 ; -0,67 ; FutureOC1952 ; ceac67FB057D3FdF5fbb1FFbB4BbC4fCffC4e8eDFAFb7b36BE25eecd8bEe297E ; < L0pWAQddhU99FOBWgjmSBft16mV3F70688zUE0vAS10msD0RxsO345wzy7H8z47t > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 84,2418127736471 ; 1,28593494301587 ; 64,5101669265455 ; 84,2415627736471 ; 84,2420627736471 ; -8,6 ; -4,5 ; 0,7 ; 7,1 ; 0 ; 7 ; 0 ; FutureDE1990 ; ABE8fbFfCb4bAF7dEce33b55Cda18CFd9a6Bdf2F94CcbF9BcFf8646a289ef03b ; < D4O06o6T98bl67T59RG54utp5v8lz4dv23K3pI0d3LMY6o1Tc61mOwZ7u907lert > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 85,4174393131844 ; 1,36592565978539 ; 61,5344715514058 ; 85,4171893131844 ; 85,4176893131844 ; 5,7 ; -8,4 ; 0,2 ; 4,4 ; -1,6 ; -8,4 ; 0,88 ; FutureFE2084 ; 7bEfEe7cfb9d97fCbE26BffdFEDeeeD3fcDFB9d353AC9fceeB92C7e7fDcAF1da ; < 4xW6WC7x2KrZbw5id2Bx33zZ9vrdrJfaPl4m9kmmJWXt6Q3h3AW0yOzHsOSEY1X4 > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 86,498600704236 ; 1,46829905613498 ; 57,9107514186702 ; 86,498350704236 ; 86,498850704236 ; 3,8 ; 2,2 ; -9,1 ; 1,9 ; 3,6 ; -6,6 ; 0,3 ; FutureAP2094 ; eBEFDCDF5ddAAaB8E4ad5ceD868cD1A6BEAb43DCeF82Dc5FC111CAdcA0e1E083 ; < 1EQe9KzCmUQBS8aSH65TU5l863Ux2e787OipsjUnN84zXA973O8c9nUr6I6n88NW > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 87,6884455281873 ; 1,59757817393707 ; 53,8883597427274 ; 87,6881955281873 ; 87,6886955281873 ; -5,6 ; -2,4 ; -4,8 ; 1,2 ; -9,7 ; 4,5 ; 0,02 ; FutureJU2055 ; cBDdCdD6FD4eD2FA9D6fbd4D872FF0Fdcdddf2Bfc5f333D8f861DDE6AC5D12BC ; < CRZ9sGivY4EOR34M2W32cvl0B85CkWo75lYIR37SNcxM3mHRjXu1jL5CSKpBfca2 > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 88,99671737479 ; 1,75919843646909 ; 49,5893567944595 ; 88,99646737479 ; 88,99696737479 ; -6,8 ; -1,3 ; 0,5 ; -4,7 ; -0,8 ; -1,9 ; 0,78 ; FutureAU2087 ; F0acEEcFAAAcdFaEECEcfD5c960beDa19dADAFD0AEc0cb232eAe3cCac9CfC6C9 ; < W7jLLhh17v91Ld3YaxaAlPaa1V7KoPx6ZmOcsY6OW1eCs6eBw6L1C3M54Ggo0k1s > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 90,1915609257977 ; 1,96086893907608 ; 44,995710946543 ; 90,1913109257977 ; 90,1918109257977 ; 0,1 ; -0,5 ; 0,8 ; 0,9 ; 3,4 ; -7 ; 0,13 ; FutureOC2011 ; Dc9DaF2b4abaDf0F6A7d3DD8F39Ade4A350f477f1fE967Eeb1ba5AC0fFCffd43 ; < enrEk2S8903Kj16MIMYaYgv7hJP1GmVPA97kzR6WzP9EWwVOdMul57KI86W701Du > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 91,6572769146718 ; 2,21221623255843 ; 40,4323317791906 ; 91,6570269146718 ; 91,6575269146718 ; 1 ; -7 ; 3,6 ; -7,1 ; 9,9 ; 6,2 ; 0,88 ; FutureDE2092 ; c21A529C4EebCf2b25fEdd1dE4802EDeA7efA1Fd5cCeBDEF89a4ffABe62CEEBd ; < y5U37Mt1yq5dc5tP2e5p0fikV32v2ChFlLkZtNVzMquLvU8g7EL9JECi0TSImj1q > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 93,107199253132 ; 2,52580972054052 ; 35,8623172584858 ; 93,1069492531321 ; 93,1074492531321 ; 5 ; -0,7 ; 5 ; 2,3 ; 1,2 ; -4,7 ; -0,93 ; FutureFE2123 ; afaC6eFea1dEab11F80DDb94fdBeEeFEaEe296E149FCcD9c2fD9d91E1f14E00B ; < PyrJ967xNHs0dZ70sT77w2gU0UiAsmmHQlrP9e4K4qlLea7O9V8NR73PIwjv61pG > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 94,424815202361 ; 2,91912375860365 ; 31,3469722460581 ; 94,424565202361 ; 94,425065202361 ; 7,8 ; 9,1 ; 6,8 ; -2,4 ; 5,9 ; 4 ; -0,81 ; FutureAP2142 ; 4aA2C5dabCfdbFdFf4080FDBAefcB7dC03ecDdfe7E84D17dcc40fE0cA5aFe6Fb ; < BH63AA365Uc3yqFYZd43FDKbYS5FR8J7OhQL7875Xdm841Lw5PEZ1yqmFz46D2HZ > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 96,1326600819787 ; 3,41426712683511 ; 27,156162511833 ; 96,1324100819788 ; 96,1329100819787 ; 0,1 ; -9,2 ; -4,7 ; 3,9 ; 0,1 ; -9,5 ; -0,31 ; FutureJU2136 ; dB6a20bC0ffdbaC7e2A2fA94aa1eb96d8CDdb68c4FEfa3bfcdCfaBCbF1fb3E76 ; < vo7GLA6fx3D2TVBkHbOX07wcuh80BLl9pWFrWSaF8HI5wjN99at0935157Muxer7 > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 97,5701650582074 ; 4,04164221874421 ; 23,1412177964936 ; 97,5699150582074 ; 97,5704150582074 ; 2 ; 5,5 ; 5,1 ; 9,3 ; 2,5 ; -7,3 ; 0,6 ; FutureAU2162 ; 59cECBCcD13BbFEc9856dDf4DbBa58FebEAB9D4dDA32EfcadE6fD3d06Db35Cbc ; < qVIQ5zm5eU1UGn3cb6CW3A0v8NLXkt2HTFu1tR6BsrsynV898HpKR4VtUe1Mp2QW > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 99,4263596679447 ; 4,84265327712496 ; 19,531381038077 ; 99,4261096679447 ; 99,4266096679447 ; -6,1 ; -3,6 ; -5,9 ; -3,2 ; 7,6 ; 4,5 ; 0,48 ; FutureOC2178 ; BdeAB2af0afE10d2bAdc7Bf984BBf7Eb8aF1DfaAAd9aDc506CCcc407420351D5 ; < w3Nlvgw59A85vz2tB61BL4lp1jV3A7Wr5mRMCzXOWMV4RMUS829LCd9vhf977741 > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 101,020451602344 ; 5,87285539592585 ; 16,2012496123137 ; 101,020201602344 ; 101,020701602344 ; -7 ; -1,3 ; 5 ; -2,2 ; 4 ; -1,5 ; -0,38 ; FutureDE2123 ; 2d9EB3EBD4FcaE7CDcF5BcCDF4cffb54ECA39e840A9Ba36979fe1f20bDCEe4Ec ; < 36o64fM71awOM3rJMUT6XB24vBkK5985AK55OTgj0510rTZMghjR5fLTE7zFT7fP > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 102,73184745168 ; 7,20841202473178 ; 13,2516614060367 ; 102,73159745168 ; 102,73209745168 ; -5,7 ; -3,4 ; -9,1 ; 8,4 ; 5,6 ; 9,9 ; -0,35 ; FutureFE2289 ; 0c277cFd3c061df8EEf465Af1Ae7f24da8Fed1aBF9bEcabd1f0Fc8d68c8ce2Ea ; < 5En744687iU0xniBV3y98L1S75P8msDk1TtER9tlqeqLPy9326UAWo53vDyGhAyK > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 104,687398465502 ; 8,9545768525513 ; 10,6909375160117 ; 104,687148465502 ; 104,687648465502 ; -2,5 ; 0,5 ; 0,2 ; 4,2 ; 1,2 ; 2,3 ; -0,23 ; FutureAP2224 ; 8DAa5beEcBECecFEFFd127b655EbfE9FE2A0cd5ccA8B5bb4aa662eC44deBcCEB ; < jcd5osF3Pd536W54Xm2s6ZF2tOWKtm360UV5Cq6C63D4FGD4iDQiOTf3z80jbq29 > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 106,404921573641 ; 11,259900765733 ; 8,44989869692815 ; 106,404671573641 ; 106,405171573641 ; -2,7 ; 3,2 ; -3,5 ; -0,6 ; -8,5 ; -5,6 ; 0,33 ; FutureJU2239 ; fedAddfeDe7dcA69fEeADdFe73fAfCCfBaE76BEaDB3d45bA239F6Fffa2cfe2C6 ; < hnHE16fDYj0qE34MXWWv3UCo6ws3E2F8wzt1CtgVZDpOS3enadr8S5nCv2aqdVRN > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 108,562671947789 ; 14,3299541381601 ; 6,57592598699884 ; 108,562421947789 ; 108,562921947789 ; -5,8 ; 3,2 ; 0,5 ; 1,1 ; 5,8 ; -1,8 ; -0,52 ; FutureAU2240 ; Bb6df50B0F7E6acBE6d7CBCA4FeC9DAEDcAe5d6eF8CFabEF5DE93dFfae0B0Bb7 ; < 78FV6B9DN3YH2oatEcRJe49wEwtALYMM9z8ia50He6tyoatg6JkwaV6q60ER2ZZ1 > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 110,914151844365 ; 18,4582822989029 ; 5,0089097158817 ; 110,913901844365 ; 110,914401844365 ; 3,8 ; 3,3 ; 3,6 ; -2,4 ; 5,1 ; 8,7 ; 0,64 ; FutureOC2273 ; ECfC4f7ae6b2529Fbd6fF60acAaE1B3Ece3cE422BCddbad5025A1ddcfBfF0BB3 ; < mbNiRG3e3VsS1G8IchSzui7N6Kiy075iC7U8Ra3amyzA497tA3Z689lf8V0Y7dt8 > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 113,051941169835 ; 24,0621076388776 ; 3,69833910090133 ; 113,051691169835 ; 113,052191169835 ; 4,8 ; 3,9 ; -8,9 ; 5,4 ; 9,7 ; 6,2 ; 0,72 ; FutureDE2235 ; Fc1fEbCFd9CC2EC7c98F3DA81cfD7a0DfaCb9dd2EDA8a3Afb3c5C6AB4eCBeE31 ; < K35xwfCnE8cWvPd7PIv7dCg3bc8tmj1m26PM6fmIr4bXolCkW65K4yNN9U3kWn0L > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 115,405995687366 ; 31,7509559163143 ; 2,63472507698794 ; 115,405745687366 ; 115,406245687366 ; 7,9 ; -4,1 ; 1,7 ; -6,3 ; 7,2 ; -5,2 ; -0,79 ; FutureFE2340 ; Ee12b4c514AC936a2cdB2eA26aFadEcbfafcFEBE2A8E9EbCFe9ccFffeCF3aBAE ; < Rr6A4j5V53WyTl1opn7qZpE9Bj1Qs9103Eg9vvozL0f8i82pR6v8Tnof7FAgxKg8 > > // < CALLS ; 3Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 52,3436992327508 ; quote ; 61,5308193640129 ; 60,3002029767326 ; 0,0204081632653061 ; 6,1 ; 56,6083538148919 ; 66,4532849131339 ; -6,9 ; BcCACFAECe0bCdfb7a8AF5FBFE8Bde2Cd2bBA9Cbf2AbE5b2a29CA4042A0BEAdE ; < 8sa35fI70F5ys9ftsA30745zOAa6o1CGqn3l4V5zAAzW8fxswa3oF91aB85MfL10 > > // < CALLS 57,5780691560259 ; quote ; 58,045248210132 ; 56,8843432459294 ; 0,0204081632653061 ; 1,4 ; 53,4016283533215 ; 62,6888680669426 ; 8,8 ; CcD9DdfdCd56416E86bDdfA2Ab72fDeB4d32DfFf01eAd582E5CeA6d3Da2ccaED ; < Q2jOacWe9f09XVxmbiUS7M3gaDy4Pc2LN4Ku3r8tLP6prpXP2qRPeBHZ4r4HtIGe > > // < CALLS 62,812439079301 ; quote ; 54,6875870286012 ; 53,5938352880292 ; 0,0204081632653061 ; -4,3 ; 50,3125800663131 ; 59,0625939908893 ; -4,2 ; D60AA2acffFCEbe26FE3fF28eCFaaEF48CFd8d3fEBfcBbc1c4D0C7Ad3FBc437d ; < F4ciP3Zx9RoiDDO9DMN0m5S7a52pZaGN7V1Wb8f3f3a62RTl41zKWeC673gh44M8 > > // < CALLS 68,0468090025761 ; quote ; 51,4669757423064 ; 50,4376362274603 ; 0,0204081632653061 ; -0,9 ; 47,3496176829219 ; 55,5843338016909 ; 0,3 ; 5Ef8e94BcaE0BeEfaE444d4183FDD20f3C31DFba8Ecdb66CA4eedaB02BB6aCdd ; < tzJWBB9uN2ddKDRDKG70O2ws9KWlyaza2QArmFY8ZS5W16l6vLX95DO3r6K9393Y > > // < CALLS 73,2811789258512 ; quote ; 48,3896143750377 ; 47,4218220875369 ; 0,0204081632653061 ; 4,7 ; 44,5184452250347 ; 52,2607835250407 ; -0,6 ; 6D4952aacEBCBCFFeC8281bf7BA5dA6E9B29eA9efA40bef7B0121Da1F7c8F3Ae ; < 5YT0y27XNwA8JONh21y6zVNk8604Z8l871WFGdD824hhj1MfQVpyxFI12gzn42gW > > // < CALLS 78,5155488491263 ; quote ; 45,4590564027714 ; 44,5498752747159 ; 0,0204081632653061 ; -9,1 ; 41,8223318905496 ; 49,0957809149931 ; 5,6 ; 66FD4BcE7c5fbDFa0df8b986b79c475AEABBbd06aF0D3ebdEF4aCF4AcDae74ba ; < WZ9A9ttyaJD3Me40qg0Ep8f8hD570hwJiIj69M6z2AqZ7fK6e93RGDO5FVU8091X > > // < CALLS 83,7499187724013 ; quote ; 42,6765659694769 ; 41,8230346500873 ; 0,0204081632653061 ; -9 ; 39,2624406919187 ; 46,090691247035 ; 9,6 ; 2C0dDc3DaacEa1DDf94DBdE4dA98DAdBcF4e9Bb1ee9aADBEca66a071DFDcAdf7 ; < 8yRPQv9nQoZlPWubI29Vaj42dsI6GcLlTQb93sHk2jU1WK5LU85ITwWu8D7uLLMf > > // < CALLS 88,9842886956764 ; quote ; 40,0414910307221 ; 39,2406612101077 ; 0,0204081632653061 ; -5 ; 36,8381717482643 ; 43,2448103131799 ; -2,8 ; aDCecCbC35BB9Deb2DE6D15306Adc2b9CcebFDF1ab6B02654dAc964aDAcb6BcB ; < 56108kOdP62LMGOB2b6DaZG528chuA937r60GmQs7D4A5tsQSXG8HdzJUXlsZs54 > > // < CALLS 94,2186586189515 ; quote ; 37,5516227399988 ; 36,8005902851988 ; 0,0204081632653061 ; -7,7 ; 34,5474929207989 ; 40,5557525591987 ; -7,2 ; aECdb3dAaEDDAb5a14BF3D8605bDd6aa94CE0DdeD39fa4DBb7dE64Bea2fFfBDF ; < rn87YwV625Q9mz0Fv7MOvc4VxptKc87JP2WE58by16oswEZHHd7I47d12FUCZeQ3 > > // < CALLS 99,4530285422266 ; quote ; 35,2035243902198 ; 34,4994539024154 ; 0,0204081632653061 ; -6,9 ; 32,3872424390022 ; 38,0198063414374 ; -1,3 ; Aa4Fe7a33c9AFe2ECD7cdE35F3deaDcbfF6ACa55B4a5F4F4B280eD1E2bAfAFfd ; < vynE42E6RC3v1F1d8tDCMQF3FaSR2Psz2CmZ7hn6B5P163ha3A7Ow55jO3Ua23tM > > // < CALLS 104,687398465502 ; quote ; 32,9928219942121 ; 32,3329655543278 ; 0,0204081632653061 ; -2,4 ; 30,3533962346751 ; 35,6322477537491 ; 9,3 ; FaBCDCb745a6cdBaaCc466178dbcC6cB0F11DAbbb20692e5FC8de3255d87E2be ; < 969aPYK8d1uyn8f34T709NPj032U0Z0o1jlO4287d1a73cX4W0bblX6d9Vc11EN6 > > // < CALLS 109,921768388777 ; quote ; 30,9144542159824 ; 30,2961651316627 ; 0,0204081632653061 ; -7,8 ; 28,4412978787038 ; 33,387610553261 ; -8,4 ; Bfa6EF9f95FE4CF95BeC9CaCdAD9d9cecbCa54fdC2a56a0ada261ddcfE8Dba8a ; < OKzuytuqm17s96q4Aocw6OKq6Cb5YbAv46AZDE8U1LVnA6v2ZzipQOkKq6DU6GSc > > // < CALLS 115,156138312052 ; quote ; 28,9628827714671 ; 28,3836251160378 ; 0,0204081632653061 ; 5,2 ; 26,6458521497498 ; 31,2799133931845 ; -7,4 ; f2EC1aFeeAfeF35aAe93B0c741f22e2c8FefAa9dBDeFac6deea6d34B3800fcA5 ; < 5eXrzp5HHdghFKjj0OE5vQy2wamJdM0ln74R4fWB20Bd81EP20prjo78pf8jyco1 > > // < CALLS 120,390508235327 ; quote ; 27,1322663162922 ; 26,5896209899663 ; 0,0204081632653061 ; -6,9 ; 24,9616850109888 ; 29,3028476215956 ; 7,2 ; 4dA9e2dfBFf61BF224c4eb9ccB9efa163ebDbDfCB0CfBd6AbF2Aa5A6eeA04Ebc ; < 1LXnZ61r6gxaePb4655u427on5047864Ar66txSqvB3Xi8XF49d50JjEA6iDonms > > // < CALLS 125,624878158602 ; quote ; 25,4166017493327 ; 24,908269714346 ; 0,0204081632653061 ; -6,4 ; 23,3832736093861 ; 27,4499298892793 ; -4,2 ; aF6CeC2dBCC37AD4B9188c9EeA52EBde0adecae7FAE1c8e1D9Fdcf0bAbFC53Aa ; < gAUWG1G2L2R0S4e2F3tUL7b2B708J2TKrJ31u1O0Ahyf4I0cVxDw088Su9K5G61R > > // < CALLS 130,859248081877 ; quote ; 23,8098371502222 ; 23,3336404072177 ; 0,0204081632653061 ; 0,6 ; 21,9050501782044 ; 25,7146241222399 ; -0,2 ; dDbB1fCf2DdcBFCfDD09FC5aeADEE8adfdBffBeba57eF698DDEF6cf2fA7cDd9b ; < Yi8XDZ2RoQr009pmNph8Wj17fhWEiQJKExYRKAvSB8KEE8H70pfOxlTS82Nyy6ad > > // < CALLS 136,093618005152 ; quote ; 22,3059604855859 ; 21,8598412758741 ; 0,0204081632653061 ; 8,3 ; 20,521483646739 ; 24,0904373244327 ; -4,2 ; bdd8FAfeF4da7bfeDF0aE4D8caD14fE1A6DcfA8De61CeD3c02e6aecD5FC2eBfe ; < mru2fPm9YppwnFsu73o5iH6WBNBrsLRz36NbGr95dI9mRUcL93bqZmp7YWGDQt3K > > // < CALLS 141,327987928427 ; quote ; 20,8990679279314 ; 20,4810865693728 ; 0,0204081632653061 ; -6,2 ; 19,2271424936969 ; 22,570993362166 ; 5,5 ; 7A3c92ccBdD9DECDafbfa63Ad3Ed73dA2a821CD6B2EddbfFd2AAEE3DCDBAE85F ; < n9vy4177l6jUNIn32f9o3V044RXUt5y5PqK5G7YIrVZ7S22tkhgJwf8J2i13r85h > > // < CALLS 146,562357851702 ; quote ; 19,583415239393 ; 19,1917469346052 ; 0,0204081632653061 ; -1,5 ; 18,0167420202416 ; 21,1500884585445 ; 9,8 ; 76fF3be41c072EA20D35AFD00EcaB8C14c5f90dBfEfDdDb6A5C58FEb24CC0ED7 ; < 6f7nLxW034GZ5B13o1ktU06SBk6l8FMDI7kxmm69k3Z1ISQvCIXFxf9rcUgzfQPf > > // < CALLS 151,796727774977 ; quote ; 18,3534552464126 ; 17,9863861414844 ; 0,0204081632653061 ; -2,6 ; 16,8851788266996 ; 19,8217316661256 ; 9,6 ; FdF6eBad9Bee9eCdca6bb72Ebf5bC8dCBe8DfEcF03EA7fec0d3a3Edc7731B8cb ; < tQz14c5l8K0Ks8zU8mt46b8t9K6DwF40Ocmsuev0Uv4UBJA780Ri5Lt26Ru79m8d > > // < CALLS 157,031097698253 ; quote ; 17,2038640106649 ; 16,8597867304516 ; 0,0204081632653061 ; 3,8 ; 15,8275548898117 ; 18,5801731315181 ; -5,4 ; caeF1fDDA8f9f4BDb09acBFF0F5EdeeAB1C9Ce36bcF7AA112CB5F8BaEFa9FBc1 ; < op0589p08mPRl8n5hET5jbDryl9ZK3RDX6Y5bc4hyyjWgyzO8ED7AKI6QP42VJ4g > > // // < PUTS ; 3Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 52,3436992327508 ; quote ; 0,862212417340544 ; 0,844968168993733 ; 0,0204081632653061 ; 7,1 ; 0,7932354239533 ; 0,931189410727787 ; -9,7 ; bEaCCA39DcFdDA3Ddb9AA8D9F0DfbA33E3Dda2d341cE0Ca0aaD09aBA2FAaDA28 ; < SVfh8PGgRw57p230EQWn8bkkyZ6eVOn4ZnD9M8T3naVAK01hC1w95x67V53X2wEa > > // < PUTS 57,5780691560259 ; quote ; 1,30978056879249 ; 1,28358495741664 ; 0,0204081632653061 ; -7,2 ; 1,20499812328909 ; 1,41456301429589 ; -6,7 ; 81bff8E9Ce4CCfBe987d8BFb116759CbABfb0b429DDbFaA7Af9Be6Bbf77DE9E5 ; < xS814O23SSe7u15741Ew827KG4pv19L8dOX894uUlHs7Jj4to0nSp94PmMHC4yy5 > > // < PUTS 62,812439079301 ; quote ; 1,88525869259442 ; 1,84755351874253 ; 0,0204081632653061 ; 1,1 ; 1,73443799718687 ; 2,03607938800197 ; -1,1 ; d8F18b3f3bc11a6FAcf6DadFAA0a1EEC0Ea3cE73bE063d0F69dDe9BECBF16Ffe ; < Jw8a08D53OaTig5s9MJKKt2s3c01jBnK0Re93d1v33eq0VE5X5FD47fCXcUOGcRJ > > // < PUTS 68,0468090025761 ; quote ; 2,59778671163234 ; 2,54583097739969 ; 0,0204081632653061 ; 8,1 ; 2,38996377470175 ; 2,80560964856293 ; 4,7 ; 8ac11CA6e0AC4CADaCa6dbB0d78be3770f2eaafd2efaDd5FD9A6AdbB850Ccf30 ; < Z271W2Nq7m82vjX7j6tWVQnLe0322EEC5w465AU0d287Lq0cva2lT3u051w28hm8 > > // < PUTS 73,2811789258512 ; quote ; 3,4535646496964 ; 3,38449335670247 ; 0,0204081632653061 ; 3,6 ; 3,17727947772069 ; 3,72984982167212 ; -1,5 ; BB3fBCcb8dfB5252ECC7EFB2daBAE187afFCDAA2ac9cD8FA3ecffedD1C5f39DF ; < 26MNMdCmv1T1JXIS7GP27H183A29lnN2cumVZQBt4Sam873S3wS81DNu69j596No > > // < PUTS 78,5155488491263 ; quote ; 4,45614598276285 ; 4,36702306310759 ; 0,0204081632653061 ; -9,7 ; 4,09965430414182 ; 4,81263766138388 ; -0,5 ; fE83Adf6abC2ccCEB15Adc0CBA56Feacbc48ca5DdFaCA6DAe2FcEaBDdFCddC8B ; < 9HTw718v95CL3GafsRku6vPeDC6YcJ0GyUvD2N6ydrBmPP4wzAr1CmaWz8cIDf99 > > // < PUTS 83,7499187724013 ; quote ; 5,60679485480114 ; 5,49465895770511 ; 0,0204081632653061 ; -5,7 ; 5,15825126641705 ; 6,05533844318523 ; -9,3 ; DCD6C5aACAe3Cc76FBDF183aAFCC4B5fFFac8cf728faaA95ED63D26fffFf61F5 ; < n8y0gvtBt8s2LpiS3MJ3DVR1x7jZxt3iBTWFbdd4CBlmvg71gh9I11a5xg7gZ6Lr > > // < PUTS 88,9842886956764 ; quote ; 6,90485922137916 ; 6,76676203695157 ; 0,0204081632653061 ; -4,8 ; 6,35247048366882 ; 7,45724795908949 ; 5,8 ; 1becc2ccAB6bEb41CBdaB2f28DbdEc98eFCdb7FF19aABF2960De3E26aBe5cdea ; < Dcz9kj1SCi1D2STMzx0wzux9eH365zWtJecV1u5dq4XPlPmbhaXo29389E9xJoRO > > // < PUTS 94,2186586189515 ; quote ; 8,34813023598858 ; 8,18116763126881 ; 0,0204081632653061 ; 4,5 ; 7,68027981710949 ; 9,01598065486767 ; -5,4 ; fd84Fb070deb135dB3EBA0eD9DD3da1de5CeaCdABCDCDBc7a884FF656af21bfF ; < 99VY3pv14L7fA0CJs7LhOVb3dg9mU6ElODD3qVtUjH3sOgPYw9wWo57xe3f924GI > > // < PUTS 99,4530285422266 ; quote ; 9,93317119154237 ; 9,73450776771152 ; 0,0204081632653061 ; 9,9 ; 9,13851749621898 ; 10,7278248868658 ; -7,8 ; eBD83Ee4dcEe7d52b2CFd6DBde7aBeaaFddCbb5C66cEdFDfCDDEAfFFF4FAa53b ; < AB5V21Y23u75BLf5085h24IFI4x31G601CMQ20h4fyL532pHNwJfRIh3YdKPKrPg > > // < PUTS 104,687398465502 ; quote ; 11,6556081008674 ; 11,4224959388501 ; 0,0204081632653061 ; 0,6 ; 10,723159452798 ; 12,5880567489368 ; -5,2 ; ac7adbFe5EB2fc2255a8Ed08EAdE2eA1A9D7a044e5ac7F34A4f9eD1fC2DAB0cf ; < X321mboeaQ8a83f83147u4xEwBvWfXAQFfZ2Wpq3vH97D99W6jQRdVcjr9612TnI > > // < PUTS 109,921768388777 ; quote ; 13,5103796279705 ; 13,2401720354111 ; 0,0204081632653061 ; 9,2 ; 12,4295492577329 ; 14,5912099982081 ; 5,3 ; FCeEE5D2DEFF9FcbeD910bb5AdBBBf1e8088DcddCeEAA62C0cCAe3df9872ce4a ; < 3cq123Crs4R6ccgG38rjwiZ3xO9ZxrvdY1VcAN7Zc3ptjC0HHEe9G5Zl4Nl6ouDu > > // < PUTS 115,156138312052 ; quote ; 15,491947488788 ; 15,1821085390123 ; 0,0204081632653061 ; 7,2 ; 14,252591689685 ; 16,7313032878911 ; 4,3 ; BCff0fBD2Bccc8b9B9FCAeDd4aabaFeFE8D8c953ABA55Bd0bCacad6edEe1FDbF ; < 0aIRKmLTBw48OP593l78naZdQ72tA33n1ARp2WuRRiaSY5U66O0sVmP4k2hYS57r > > // < PUTS 120,390508235327 ; quote ; 17,5944703389458 ; 17,2425809321669 ; 0,0204081632653061 ; -3,9 ; 16,1869127118302 ; 19,0020279660615 ; -8,3 ; B292BbeB4bfbed7DbCf208Dd2c82DB7C0D3A0AdDD4C4AffA3fffc525Bb4dB8Ed ; < ksJSV3de5QQ27R248ekO66JX1ZxWoLP36b86Bem3YRW8bOCsP39AmeX5dAt5C0j2 > > // < PUTS 125,624878158602 ; quote ; 19,8119450773191 ; 19,4157061757727 ; 0,0204081632653061 ; -3 ; 18,2269894711336 ; 21,3969006835046 ; -3,2 ; Ed9abcCe48Dbd2F9AEbedee0fDbA59aFBaAFfAEd41e8EFDbdEE6efD1Dd8804c5 ; < P10fM51K7ds7DaY3pC9t2w5rgwEIgwJ597Uj4GqaP8X8hhf22KIJ4I1zRQ24FsqT > > // < PUTS 130,859248081877 ; quote ; 22,1383197835413 ; 21,6955533878705 ; 0,0204081632653061 ; 1,8 ; 20,367254200858 ; 23,9093853662246 ; 9,1 ; dBD0cbdaF6Fe8e1DB8ebEA1a0EECccFe385dFdEEEAc9D1ebBEC5Ee62cfe9ddEc ; < L3654aYJx48I64x2n64N6sLIzxx9M5u6gnx25a3mLP1cXtttU97Tnnlw4R6GedV2 > > // < PUTS 136,093618005152 ; quote ; 24,5675824242378 ; 24,076230775753 ; 0,0204081632653061 ; 1,8 ; 22,6021758302988 ; 26,5329890181768 ; -7,2 ; bB7CABdecf17cd3d7ddAdac7a49AeA213Cc0Da9cffe5F2A321FeCea546eB3ACE ; < 0o467r7o9415EQaZ6ipDT677KXMU2ALvGfRusoNW8fnG2zyNi5J9w5X72Ko9jTOf > > // < PUTS 141,327987928427 ; quote ; 27,0938291719162 ; 26,5519525884778 ; 0,0204081632653061 ; -1,1 ; 24,9263228381629 ; 29,2613355056694 ; -0,2 ; 25A8cdA7FD0211be3A90Fe4BCCFA9E4AAFabED2e00fd94BCecCfA029B7dEB417 ; < SI8QYk5JnLLHh3CsCB0dat8ADuGHnQu1nDOH6n7jbo3j1lYXJUS5Z5g4y16EWwPC > > // < PUTS 146,562357851702 ; quote ; 29,7113157887105 ; 29,1170894729363 ; 0,0204081632653061 ; 6,5 ; 27,3344105256137 ; 32,0882210518074 ; -4,9 ; 7CEc9c6F7DFCCd65c60Cd1b4E66c30Fba4f8c17BDc52983b8fEeCfBf1a6AEeFb ; < 797lqIb0RWVrp0BjA6qxM3R7716em1x599qlRkA4D4a7714Hx1zPyKJbut5tbCkI > > // < PUTS 151,796727774977 ; quote ; 32,4144951010629 ; 31,7662051990416 ; 0,0204081632653061 ; -3,8 ; 29,8213354929778 ; 35,0076547091479 ; -5 ; EBF0bCb327FcC1b5eD5E8caf0b98D5aFaF55bC22cBc3Cdf2fcF6AEFd83AacEF0 ; < Pv2K1ivuQtS5d7P5v7r092XZvJKrFbOWDX64Sa39QIyvCeCXzgpoUT9xrVsB4bU3 > > // < PUTS 157,031097698253 ; quote ; 35,1980431706479 ; 34,4940823072349 ; 0,0204081632653061 ; 4,4 ; 32,3821997169961 ; 38,0138866242997 ; 2,5 ; FAbBdeEDdec4fEdFCAe5b97DaEfEEEcC52BaFE80ed015BefceE1f1EEcB0aa516 ; < BL3wgisEi9k0uqVqJ6l954aLfplryl0R7hOdfAFoA0L9f5WD9jC1Qp4cTt0rVza9 > > // Futures_EurosibPower_Engineering // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 80,467707 ; 1,14 ; 69,5857078947368 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; E5C3FFbeEDBcAEc3afB9Ff7F0FC0b15ACD4af30FbBaBDcFD45Fb8eD45fe5c2Cb ; < T6skmd83RU84dIcA5Q55jV8lSB3rOSlLl7eGIGR86PfOQ1OfMmEtIzDny104E78w > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 80,4633818792096 ; 1,13993046 ; 69,5862196885323 ; 80,4631318792097 ; 80,4636318792096 ; 3 ; 5,7 ; 6,6 ; -9,9 ; -8,6 ; -3,2 ; -0,31 ; Future96AP19 ; dB5fDde8137EEEEC4c3CDbF5fc081b5E2CAFFbD7bDACD9cbfDb5dabdC0bacc75 ; < N6gNDT1aFNGUxAdPzR0ynb9Nsl86cy627hYcfQDo7A1RMLsSRCYdT7o060yP7B50 > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 81,3462394335325 ; 1,15380498577013 ; 69,5025896375686 ; 81,3459894335326 ; 81,3464894335325 ; 9,6 ; -1,1 ; -5,1 ; -3,7 ; -6,6 ; -9,7 ; -0,27 ; FutureJU1932 ; a3274Ffc64bcC95E8aAF8BDcfCdd4B8887eD6aBFb147caC6E88EBF4DDECAcaEf ; < cKiFW074oY6K9wSvg86o6W9zRG7OIuuO7b1gH5eSahatdCrbE14CPq5D8VOgJi94 > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 82,295704370818 ; 1,18200375723698 ; 68,6238940586703 ; 82,295454370818 ; 82,295954370818 ; -7,2 ; -3,9 ; 3,1 ; -1,2 ; 1,8 ; 6,9 ; -0,62 ; FutureAU1938 ; BF3a4cFaDD4fd67C5Dcf1AeaDE7d1cBaf6ADEDe0ffC6e18F3DF754a5B529FC3E ; < 4mR6b8p7VXQ69CV62TV208qgDfB5gg0JB0uYEaVxd3F5rEU1DKPp03B1o9Um89Pp > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 83,2297698616958 ; 1,2255216695491 ; 66,913748022357 ; 83,2295198616958 ; 83,2300198616958 ; 3,2 ; -5,3 ; -9,9 ; -9,6 ; -4,2 ; -2,3 ; -0,67 ; FutureOC1952 ; ceac67FB057D3FdF5fbb1FFbB4BbC4fCffC4e8eDFAFb7b36BE25eecd8bEe297E ; < L0pWAQddhU99FOBWgjmSBft16mV3F70688zUE0vAS10msD0RxsO345wzy7H8z47t > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 84,2418127736471 ; 1,28593494301587 ; 64,5101669265455 ; 84,2415627736471 ; 84,2420627736471 ; -8,6 ; -4,5 ; 0,7 ; 7,1 ; 0 ; 7 ; 0 ; FutureDE1990 ; ABE8fbFfCb4bAF7dEce33b55Cda18CFd9a6Bdf2F94CcbF9BcFf8646a289ef03b ; < D4O06o6T98bl67T59RG54utp5v8lz4dv23K3pI0d3LMY6o1Tc61mOwZ7u907lert > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 85,4174393131844 ; 1,36592565978539 ; 61,5344715514058 ; 85,4171893131844 ; 85,4176893131844 ; 5,7 ; -8,4 ; 0,2 ; 4,4 ; -1,6 ; -8,4 ; 0,88 ; FutureFE2084 ; 7bEfEe7cfb9d97fCbE26BffdFEDeeeD3fcDFB9d353AC9fceeB92C7e7fDcAF1da ; < 4xW6WC7x2KrZbw5id2Bx33zZ9vrdrJfaPl4m9kmmJWXt6Q3h3AW0yOzHsOSEY1X4 > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 86,498600704236 ; 1,46829905613498 ; 57,9107514186702 ; 86,498350704236 ; 86,498850704236 ; 3,8 ; 2,2 ; -9,1 ; 1,9 ; 3,6 ; -6,6 ; 0,3 ; FutureAP2094 ; eBEFDCDF5ddAAaB8E4ad5ceD868cD1A6BEAb43DCeF82Dc5FC111CAdcA0e1E083 ; < 1EQe9KzCmUQBS8aSH65TU5l863Ux2e787OipsjUnN84zXA973O8c9nUr6I6n88NW > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 87,6884455281873 ; 1,59757817393707 ; 53,8883597427274 ; 87,6881955281873 ; 87,6886955281873 ; -5,6 ; -2,4 ; -4,8 ; 1,2 ; -9,7 ; 4,5 ; 0,02 ; FutureJU2055 ; cBDdCdD6FD4eD2FA9D6fbd4D872FF0Fdcdddf2Bfc5f333D8f861DDE6AC5D12BC ; < CRZ9sGivY4EOR34M2W32cvl0B85CkWo75lYIR37SNcxM3mHRjXu1jL5CSKpBfca2 > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 88,99671737479 ; 1,75919843646909 ; 49,5893567944595 ; 88,99646737479 ; 88,99696737479 ; -6,8 ; -1,3 ; 0,5 ; -4,7 ; -0,8 ; -1,9 ; 0,78 ; FutureAU2087 ; F0acEEcFAAAcdFaEECEcfD5c960beDa19dADAFD0AEc0cb232eAe3cCac9CfC6C9 ; < W7jLLhh17v91Ld3YaxaAlPaa1V7KoPx6ZmOcsY6OW1eCs6eBw6L1C3M54Ggo0k1s > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 90,1915609257977 ; 1,96086893907608 ; 44,995710946543 ; 90,1913109257977 ; 90,1918109257977 ; 0,1 ; -0,5 ; 0,8 ; 0,9 ; 3,4 ; -7 ; 0,13 ; FutureOC2011 ; Dc9DaF2b4abaDf0F6A7d3DD8F39Ade4A350f477f1fE967Eeb1ba5AC0fFCffd43 ; < enrEk2S8903Kj16MIMYaYgv7hJP1GmVPA97kzR6WzP9EWwVOdMul57KI86W701Du > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 91,6572769146718 ; 2,21221623255843 ; 40,4323317791906 ; 91,6570269146718 ; 91,6575269146718 ; 1 ; -7 ; 3,6 ; -7,1 ; 9,9 ; 6,2 ; 0,88 ; FutureDE2092 ; c21A529C4EebCf2b25fEdd1dE4802EDeA7efA1Fd5cCeBDEF89a4ffABe62CEEBd ; < y5U37Mt1yq5dc5tP2e5p0fikV32v2ChFlLkZtNVzMquLvU8g7EL9JECi0TSImj1q > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 93,107199253132 ; 2,52580972054052 ; 35,8623172584858 ; 93,1069492531321 ; 93,1074492531321 ; 5 ; -0,7 ; 5 ; 2,3 ; 1,2 ; -4,7 ; -0,93 ; FutureFE2123 ; afaC6eFea1dEab11F80DDb94fdBeEeFEaEe296E149FCcD9c2fD9d91E1f14E00B ; < PyrJ967xNHs0dZ70sT77w2gU0UiAsmmHQlrP9e4K4qlLea7O9V8NR73PIwjv61pG > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 94,424815202361 ; 2,91912375860365 ; 31,3469722460581 ; 94,424565202361 ; 94,425065202361 ; 7,8 ; 9,1 ; 6,8 ; -2,4 ; 5,9 ; 4 ; -0,81 ; FutureAP2142 ; 4aA2C5dabCfdbFdFf4080FDBAefcB7dC03ecDdfe7E84D17dcc40fE0cA5aFe6Fb ; < BH63AA365Uc3yqFYZd43FDKbYS5FR8J7OhQL7875Xdm841Lw5PEZ1yqmFz46D2HZ > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 96,1326600819787 ; 3,41426712683511 ; 27,156162511833 ; 96,1324100819788 ; 96,1329100819787 ; 0,1 ; -9,2 ; -4,7 ; 3,9 ; 0,1 ; -9,5 ; -0,31 ; FutureJU2136 ; dB6a20bC0ffdbaC7e2A2fA94aa1eb96d8CDdb68c4FEfa3bfcdCfaBCbF1fb3E76 ; < vo7GLA6fx3D2TVBkHbOX07wcuh80BLl9pWFrWSaF8HI5wjN99at0935157Muxer7 > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 97,5701650582074 ; 4,04164221874421 ; 23,1412177964936 ; 97,5699150582074 ; 97,5704150582074 ; 2 ; 5,5 ; 5,1 ; 9,3 ; 2,5 ; -7,3 ; 0,6 ; FutureAU2162 ; 59cECBCcD13BbFEc9856dDf4DbBa58FebEAB9D4dDA32EfcadE6fD3d06Db35Cbc ; < qVIQ5zm5eU1UGn3cb6CW3A0v8NLXkt2HTFu1tR6BsrsynV898HpKR4VtUe1Mp2QW > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 99,4263596679447 ; 4,84265327712496 ; 19,531381038077 ; 99,4261096679447 ; 99,4266096679447 ; -6,1 ; -3,6 ; -5,9 ; -3,2 ; 7,6 ; 4,5 ; 0,48 ; FutureOC2178 ; BdeAB2af0afE10d2bAdc7Bf984BBf7Eb8aF1DfaAAd9aDc506CCcc407420351D5 ; < w3Nlvgw59A85vz2tB61BL4lp1jV3A7Wr5mRMCzXOWMV4RMUS829LCd9vhf977741 > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 101,020451602344 ; 5,87285539592585 ; 16,2012496123137 ; 101,020201602344 ; 101,020701602344 ; -7 ; -1,3 ; 5 ; -2,2 ; 4 ; -1,5 ; -0,38 ; FutureDE2123 ; 2d9EB3EBD4FcaE7CDcF5BcCDF4cffb54ECA39e840A9Ba36979fe1f20bDCEe4Ec ; < 36o64fM71awOM3rJMUT6XB24vBkK5985AK55OTgj0510rTZMghjR5fLTE7zFT7fP > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 102,73184745168 ; 7,20841202473178 ; 13,2516614060367 ; 102,73159745168 ; 102,73209745168 ; -5,7 ; -3,4 ; -9,1 ; 8,4 ; 5,6 ; 9,9 ; -0,35 ; FutureFE2289 ; 0c277cFd3c061df8EEf465Af1Ae7f24da8Fed1aBF9bEcabd1f0Fc8d68c8ce2Ea ; < 5En744687iU0xniBV3y98L1S75P8msDk1TtER9tlqeqLPy9326UAWo53vDyGhAyK > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 104,687398465502 ; 8,9545768525513 ; 10,6909375160117 ; 104,687148465502 ; 104,687648465502 ; -2,5 ; 0,5 ; 0,2 ; 4,2 ; 1,2 ; 2,3 ; -0,23 ; FutureAP2224 ; 8DAa5beEcBECecFEFFd127b655EbfE9FE2A0cd5ccA8B5bb4aa662eC44deBcCEB ; < jcd5osF3Pd536W54Xm2s6ZF2tOWKtm360UV5Cq6C63D4FGD4iDQiOTf3z80jbq29 > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 106,404921573641 ; 11,259900765733 ; 8,44989869692815 ; 106,404671573641 ; 106,405171573641 ; -2,7 ; 3,2 ; -3,5 ; -0,6 ; -8,5 ; -5,6 ; 0,33 ; FutureJU2239 ; fedAddfeDe7dcA69fEeADdFe73fAfCCfBaE76BEaDB3d45bA239F6Fffa2cfe2C6 ; < hnHE16fDYj0qE34MXWWv3UCo6ws3E2F8wzt1CtgVZDpOS3enadr8S5nCv2aqdVRN > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 108,562671947789 ; 14,3299541381601 ; 6,57592598699884 ; 108,562421947789 ; 108,562921947789 ; -5,8 ; 3,2 ; 0,5 ; 1,1 ; 5,8 ; -1,8 ; -0,52 ; FutureAU2240 ; Bb6df50B0F7E6acBE6d7CBCA4FeC9DAEDcAe5d6eF8CFabEF5DE93dFfae0B0Bb7 ; < 78FV6B9DN3YH2oatEcRJe49wEwtALYMM9z8ia50He6tyoatg6JkwaV6q60ER2ZZ1 > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 110,914151844365 ; 18,4582822989029 ; 5,0089097158817 ; 110,913901844365 ; 110,914401844365 ; 3,8 ; 3,3 ; 3,6 ; -2,4 ; 5,1 ; 8,7 ; 0,64 ; FutureOC2273 ; ECfC4f7ae6b2529Fbd6fF60acAaE1B3Ece3cE422BCddbad5025A1ddcfBfF0BB3 ; < mbNiRG3e3VsS1G8IchSzui7N6Kiy075iC7U8Ra3amyzA497tA3Z689lf8V0Y7dt8 > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 113,051941169835 ; 24,0621076388776 ; 3,69833910090133 ; 113,051691169835 ; 113,052191169835 ; 4,8 ; 3,9 ; -8,9 ; 5,4 ; 9,7 ; 6,2 ; 0,72 ; FutureDE2235 ; Fc1fEbCFd9CC2EC7c98F3DA81cfD7a0DfaCb9dd2EDA8a3Afb3c5C6AB4eCBeE31 ; < K35xwfCnE8cWvPd7PIv7dCg3bc8tmj1m26PM6fmIr4bXolCkW65K4yNN9U3kWn0L > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 115,405995687366 ; 31,7509559163143 ; 2,63472507698794 ; 115,405745687366 ; 115,406245687366 ; 7,9 ; -4,1 ; 1,7 ; -6,3 ; 7,2 ; -5,2 ; -0,79 ; FutureFE2340 ; Ee12b4c514AC936a2cdB2eA26aFadEcbfafcFEBE2A8E9EbCFe9ccFffeCF3aBAE ; < Rr6A4j5V53WyTl1opn7qZpE9Bj1Qs9103Eg9vvozL0f8i82pR6v8Tnof7FAgxKg8 > > // < CALLS ; 5Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 47,2124076011805 ; quote ; 68,7696516082759 ; 67,3942585761104 ; 0,0204081632653061 ; -1,2 ; 62,9242312215724 ; 74,6150719949793 ; -9,2 ; 2E4cE4beaacE4dbeA2Edd1dEEeEb2bdEF4c8BCCa16ceCbe48106d8CA0CfE2d6e ; < RpHNXW25703TmtB1QAGPKX8RPP05f1WP5X1GMr26IlL3ZGyKobf4nv3yHML1Lp61 > > // < CALLS 51,9336483612985 ; quote ; 66,0394899014161 ; 64,7187001033877 ; 0,0204081632653061 ; -8,3 ; 60,4261332597957 ; 71,6528465430364 ; -2 ; B94c4e0D5ACD2Fc05dcACCcdDdf4ADF6E4DDadBE93E183ed6DDaFAb8BafDAaF5 ; < ipJzKo6HA6IMqoLjj9HQ39OyGtzGCeCV0eInKIVQy7f9XsNO8yR6jDT4utYt7jbA > > // < CALLS 56,6548891214166 ; quote ; 63,4088182749812 ; 62,1406419094816 ; 0,0204081632653061 ; -9,8 ; 58,0190687216078 ; 68,7985678283546 ; -1,2 ; aBDf3eFdf7AdFcdEb9Aad42BB5eAfBdb9a1BBb823bCCEDE83Bfe8eBf42e2b4c1 ; < D21ZkR6SQ96q71YI0XJBswL9wZ77uISVoByS7SW5Z7fB783M3kq727Z743HzXaP6 > > // < CALLS 61,3761298815347 ; quote ; 60,8785228676813 ; 59,6609524103277 ; 0,0204081632653061 ; -2,1 ; 55,7038484239284 ; 66,0531973114342 ; -1,8 ; AaB693AECDD7FFfe9FFEB7B71aaCe8FA0C0Ad0B0aebCd82B5Ffd9883B1B2b4aD ; < DrnV85Q0W5UWkfTR3dx69M4t8KHxERtF6ah0l7Byt4ZCGm4hd3H4wZ0RvLifyI3Q > > // < CALLS 66,0973706416527 ; quote ; 58,4483243190617 ; 57,2793578326805 ; 0,0204081632653061 ; -2,6 ; 53,4802167519415 ; 63,416431886182 ; 3,4 ; 1dA8C03EdbFa71DfBC6cc0a74df6EbbEBeAFf05A1A5C6a84BfafcfE2C8Fba38F ; < gsB1SaqCaLbI5Iua5lfGfz100eOUn2xPXXGRj60Qxri7569B9n4xNrfHh67O7w29 > > // < CALLS 70,8186114017707 ; quote ; 56,1170355544163 ; 54,994694843328 ; 0,0204081632653061 ; 3,5 ; 51,3470875322909 ; 60,8869835765417 ; -5,3 ; 0a713aE6E56b9fDFcFEBF6acAAbcACEA6D8E3d7eC13c62910EfEbF2ed72A9Bf3 ; < K941QNyp3FdB4d0f8O0xsO6Cf5akq40s0VoSdFFHWg49njqPxyLD7GBqXt0IG6T5 > > // < CALLS 75,5398521618888 ; quote ; 53,8827769498618 ; 52,8051214108646 ; 0,0204081632653061 ; -3,9 ; 49,3027409091236 ; 58,4628129906001 ; 6 ; FAB5DE4a0e9f2CeeEF5cFec624ef805Fc7d1ec6d2FE0EC9aE1aef1ef7AbcA2b0 ; < 4V9c34uJv3UQ1nNQ3hn79j408IWscV8ifoJdJ4HRrP3r2Xbxe3Fq02EFCGbFc657 > > // < CALLS 80,2610929220068 ; quote ; 51,7431529046748 ; 50,7082898465813 ; 0,0204081632653061 ; 2,8 ; 47,3449849077774 ; 56,1413209015721 ; 2,7 ; fF42c5B44aEDcBED0BcEe0db8AaF2D73a1EAcEd8FecdeEB607e6bbced8ad5b1D ; < JNGgg3L72u3J29gutCag380E6nr9y9hW6561k40h9H486s2lK9z2Huh88O5i14f4 > > // < CALLS 84,9823336821249 ; quote ; 49,6953949372565 ; 48,7014870385113 ; 0,0204081632653061 ; -6,9 ; 45,4712863675897 ; 53,9195035069233 ; -5,7 ; A5aa405DccA4A8c4629F0DDbfBB4cf7cB3829D6FaB4eAbA03e9feaBBC81FBa4c ; < 0QqT7Dl9wk3A44EDshFOb5KI9RCx0eSk6ph5riX33FMPq1Jc6p4f18FWTmDTIoi1 > > // < CALLS 89,7035744422429 ; quote ; 47,7364764920315 ; 46,7817469621909 ; 0,0204081632653061 ; 2,5 ; 43,6788759902088 ; 51,7940769938542 ; -8,1 ; 32ceBD0ae5eCadca87FdA255bEAC7f4e2d0A1BCAeBfc9EdcfcdeeDEEDAbECEfc ; < 2krNATRY4lH32J0TeHFlypxR3AN3gwfgYP0v0VU9Gs66918X1prrihRWYGaAP51X > > // < CALLS 94,424815202361 ; quote ; 45,8632042431598 ; 44,9459401582966 ; 0,0204081632653061 ; -0,9 ; 41,9648318824912 ; 49,7615766038284 ; 5,9 ; bB6c8fc3b4cBBb7aDEFffeb8C3DBBDe1eAb30f22BE44CeB26f5F9b62DcEcEB0A ; < 04aK7mqltV9VzxFbs71Ak462oU4BRm7x8bCB9G04YC98F89wP2kM82lKb2uTiZvv > > // < CALLS 99,146055962479 ; quote ; 44,0722900961976 ; 43,1908442942737 ; 0,0204081632653061 ; 1,9 ; 40,3261454380208 ; 47,8184347543744 ; 0,8 ; Dcff0ecea4fE2aDa1CCA1D89AF5A2cbcFdBAF3BBBF9A8BC4cdA5cddFDA5e39c0 ; < GyZy3A6CYcPfSyxc5LAc3pQ3Bt8j0Tw3pSUUJdZR2clzY1YndRE5G39eK37piFI9 > > // < CALLS 103,867296722597 ; quote ; 42,3604074685174 ; 41,5131993191471 ; 0,0204081632653061 ; 6 ; 38,7597728336934 ; 45,9610421033414 ; -5 ; 39cfdBEb25b3d2Ca3c8AABce3c0EfAe0FCf379FB0cE8c8D79f5bFc6fA0Ec80A7 ; < 048MFf13EAqTEeb0akGpyQM6JRbNGfA3gBcZB3HW6o4iRd5AR3GNH5ZEA9BCt62Y > > // < CALLS 108,588537482715 ; quote ; 40,7242348442273 ; 39,9097501473428 ; 0,0204081632653061 ; 2,3 ; 37,262674882468 ; 44,1857948059867 ; -8,9 ; 06Cdd8b35aC9EeBDB1CeA3d7D4745Ec2ECDB59bB2aC10FBfFFf3acDA297dE5aB ; < rjCqsALO67ZU0yGEJKFp01Ud3v4IGYGwoFkf05NH96917Fwef8uZVg0enNUj1Z1Y > > // < CALLS 113,309778242833 ; quote ; 39,1604890792011 ; 38,3772792976171 ; 0,0204081632653061 ; -3,2 ; 35,831847507469 ; 42,4891306509332 ; -6,3 ; 4c6b6d6b7EAAdCCFefa2eeEA2EB7cFeAc2CDc3F5AADbeAFDbE6349E0ac9DFce2 ; < y29Q73Vu8mgGEHGQ3o5Wkp20DSL6WkwG1RFS3uC0L66TYzff2T2yJUa1wn1Z13gX > > // < CALLS 118,031019002951 ; quote ; 37,6659504849378 ; 36,912631475239 ; 0,0204081632653061 ; 6,3 ; 34,4643446937181 ; 40,8675562761575 ; -7,7 ; E94d62Aec4e93EeEB25af06eC745AFa08BD8aEBaDc1Eb696B1Aa43a58B31bda3 ; < Hz27t166tLxRDbn2T8WGQiVJon457NSg223xwqZEA10ei512S6N82OtiNGMS7sTl > > // < CALLS 122,752259763069 ; quote ; 36,2374813440611 ; 35,5127317171799 ; 0,0204081632653061 ; -2 ; 33,1572954298159 ; 39,3176672583063 ; 6,8 ; EC8ad6DB9E5DE597AaafcE2dDDce0cb6cDEFFED9Cb2D02aEc3fbbC7eE17B7b0D ; < u0b49qK99iEZA7l6p1MNAygGm33B5xicp9k9camr6k6115r8GVZ3S9byaKdGWVwr > > // < CALLS 127,473500523187 ; quote ; 34,8720391984027 ; 34,1745984144347 ; 0,0204081632653061 ; -4 ; 31,9079158665385 ; 37,836162530267 ; 0,4 ; df96EaEcDd1eDcfcE5DA2fFe1FB0aeBffD5Ba734bab653Ec1d0a8B58FEdDFceF ; < V8TXiKl4u55wMlmzwR7Ohx2V74p9LHIHy3IIzd0Lm7mbEMx05Z3HpcBMi1j5ROuC > > // < CALLS 132,194741283305 ; quote ; 33,5666859942514 ; 32,8953522743664 ; 0,0204081632653061 ; -1,1 ; 30,71351768474 ; 36,4198543037628 ; 5,4 ; 9F157EAedFECBDBFb6CCDcFC7fD8f6fDAe584c2b4dfeD64CbDcb07AfFDeCfCfB ; < Oqp4Ezl0EVlavAy8zQELECQpI7kjv8n2zi4H4300GrUW0Uq6tfZ06NGg2qNftp5U > > // < CALLS 136,915982043423 ; quote ; 32,3185939599338 ; 31,6722220807351 ; 0,0204081632653061 ; -3,4 ; 29,5715134733394 ; 35,0656744465281 ; -1,3 ; 90Edecf3CB5AdcbC6EddA4ECaDaaAccbd3D301CfA5DcFC72CeedDe8e0e9412Ec ; < 2n9hBkz01A93ik617kkDTp6hQqE4kK2tWQzA45Uwuf8JdYyW0F576db7rR1x8lph > > // < CALLS 141,637222803541 ; quote ; 31,1250489205501 ; 30,5025479421391 ; 0,0204081632653061 ; 2,7 ; 28,4794197623033 ; 33,7706780787969 ; -2,9 ; A30cDF79aCCf020Dc7bB9BfaEAF1B5c20Fce16FFeDfB7A0bdB0C14B0A4F5ece2 ; < 10BT5Y9WaiUZNNPgtm2X4N454XyNup3nr1yB24GK087cw9zsDqzC8Wnn5TU44v7V > > // // < PUTS ; 5Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 47,2124076011805 ; quote ; 1,45814086476824 ; 1,42897804747287 ; 0,0204081632653061 ; -1,6 ; 1,33419889126294 ; 1,58208283827354 ; 5,8 ; 1fdccefAFfb96AcA2eEcEDf6DbBFa5cFb6ddFbdDC30b7FFCBCDeCaaB1Cd4CEC4 ; < f6jS82qWRB18lD2RF2LJA1d3Jk6vS4B8M6DeH9y1P102M4l20i40U1ZyVM2ws975 > > // < PUTS 51,9336483612985 ; quote ; 1,99682808355766 ; 1,95689152188651 ; 0,0204081632653061 ; -0,4 ; 1,82709769645526 ; 2,16655847066006 ; -0,2 ; CAFedcB1aF0168fb479bBabEFc7DF4DAFf65fFF30b9a004A9E700Bdd9ecF0ed5 ; < 5tQPAsA4CkMzI5ATW8AFV636tc5IK48pWqR83KCff0l11jmAa466pq6eC6M9A34l > > // < PUTS 56,6548891214166 ; quote ; 2,63500538277204 ; 2,5823052751166 ; 0,0204081632653061 ; -6,1 ; 2,41102992523641 ; 2,85898084030766 ; -5,2 ; fdb3B7C5C9B9cbFDb07f76FEAB69BB1fBeFc98F4A2C1FB76E5cEEfBEeDc6cB3e ; < 365P5zMlP03ydHrM6AYo8RJvgj3bAoJ8E16EqGfgSxJ2KJQ5hvO2NnAI4I385jIJ > > // < PUTS 61,3761298815347 ; quote ; 3,37355890112138 ; 3,30608772309896 ; 0,0204081632653061 ; 0 ; 3,08680639452607 ; 3,6603114077167 ; -4 ; 7EdD9AEbba65Ec4b5e9e6ea6FadEA6EaE85D6AbEeEb9Cf03CD37DcaBcBca6DBD ; < u4myuq2gEM98DZs16CTHURH0qRPqll761l3ZzBarK9efv6zbGA0vypE3R0i615G8 > > // < PUTS 66,0973706416527 ; quote ; 4,21220927815102 ; 4,127965092588 ; 0,0204081632653061 ; -1,1 ; 3,85417148950818 ; 4,57024706679386 ; 0,1 ; bBEe1cefcD3F9DA9BDEF0cdb866bB0aD6E9EA224fbBedCceC156E53D73effaAc ; < 9ImvchjV8Vp7hZ8w46OtAJbk76VYnUc10B50Z354Q44X3YXeG71W1B04hKaiH1Wu > > // < PUTS 70,8186114017707 ; quote ; 5,14976943915488 ; 5,04677405037178 ; 0,0204081632653061 ; -3,1 ; 4,71203903682672 ; 5,58749984148305 ; 2,3 ; 2ccfe45aeAbf578DEFaAF3dcA2bAfDb9A6cFf7Ff4FC6febdd67CE57108bDbcDd ; < hMuek15Zuro4JOmmxwnoMap979qCIvfjQ7HK02eBMt6YSd2rn286dAELlF95Pfvj > > // < PUTS 75,5398521618888 ; quote ; 6,18435976024961 ; 6,06067256504461 ; 0,0204081632653061 ; 3,5 ; 5,65868918062839 ; 6,71003033987082 ; -5,2 ; 8A296fDF1099DbfAD5Bd0FdfbEFdEede78EAAcEEDEf2Ab7e1E9BabCFD4E50d4B ; < 0t304bZ6MAD99x9PSMpTN48cARjPIY3Tevlh968VRzAT3s3bZYdo0dcCvC0FXXgD > > // < PUTS 80,2610929220068 ; quote ; 7,31358464071178 ; 7,16731294789755 ; 0,0204081632653061 ; -5,3 ; 6,69192994625128 ; 7,93523933517228 ; 2,6 ; Bd65f3d6aF999Cfca9deEbfb7bd9234D39Adc4cFF83C25CdAB9BBC1ECB8F3cbD ; < 14vgwy1TFO7U09L9Dt11cIqndVvn4f03AYpO0b8H116CX2lq4zbZa730e7hib5b3 > > // < PUTS 84,9823336821249 ; quote ; 8,53467559894273 ; 8,36398208696387 ; 0,0204081632653061 ; 2,8 ; 7,8092281730326 ; 9,26012302485286 ; 8,4 ; ca42c2Decc682CeD55D0Bc25cD5DFDFFd5d34AACbA19a0F8eea6a895cdea55bf ; < qvcZE7zu917R3SjBT9XkQ91SnmUD4CyOv3dgcrUl1v9QEOM7Y3NSzlomR5Yn5vEM > > // < PUTS 89,7035744422429 ; quote ; 9,84460607936701 ; 9,64771395777967 ; 0,0204081632653061 ; 1,8 ; 9,00781456262082 ; 10,6813975961132 ; 3,7 ; 86ffcdaA5b2D20de4Fa595F5FC0e09afe5dc50E5add2fEaffBD3C0efE9a6BfAE ; < 1XCZr3O88hc5mk1YnR0A3kVETNo26U0398kIK1PvRdVg2qu82dvAlOgX0J4CFKTm > > // < PUTS 94,424815202361 ; quote ; 11,2401827561445 ; 11,0153791010216 ; 0,0204081632653061 ; -3,7 ; 10,2847672218722 ; 12,1955982904168 ; -5,3 ; 6CDDDCee9EAE14dCE2c51fFf2AaeCFEe8d05f35Ae9Fa29fdc36D0aFdFBdceb4B ; < 11q2Ko104o4wKuwChbOhRG5tdMo0CWEY4Gln9I241156VGCH87PiFY019tQAJc5v > > // < PUTS 99,146055962479 ; quote ; 12,7181175348316 ; 12,4637551841349 ; 0,0204081632653061 ; 2 ; 11,6370775443709 ; 13,7991575252923 ; 7,1 ; C64C8FdfaDcCAdba31fA8C13cfb95B9CddBcDCD7eBcfCAFCDC27bE4bEbdE1cdd ; < DkH3oj257c3Zr9HFzU6zx6Y0xp98CQy9HUc5Ne446oyK1eO24o5aIPTLmSC35I38 > > // < PUTS 103,867296722597 ; quote ; 14,2750838328006 ; 13,9895821561446 ; 0,0204081632653061 ; 6,5 ; 13,0617017070126 ; 15,4884659585887 ; 1,4 ; 9d2ea879BeD03CEfa675ebF62bC280bBc23bBFbEd5B86e2cF37CFFF6AfCa75BE ; < 5eLAxzDi8KkXJ18x0ED2M2346EB7I5wfJ7mpx0Yj6ZHIMj917a1D2V39ousPpA69 > > // < PUTS 108,588537482715 ; quote ; 15,9077601341598 ; 15,5896049314766 ; 0,0204081632653061 ; 5,6 ; 14,5556005227562 ; 17,2599197455634 ; -2,2 ; FeFbbF09cCd8D9cA7CFf1edebFBA7BeB50bEB41c88eEfDDCeADc6CE0fb1FDa45 ; < 6dnGOZ5JHa6G41UomLyp6DClakm1Uz0uNJVxvFo4g9m44T05BViV6eaZiPCqoR18 > > // < PUTS 113,309778242833 ; quote ; 17,6128632947828 ; 17,2606060288872 ; 0,0204081632653061 ; -1,1 ; 16,1157699147263 ; 19,1099566748394 ; 8,4 ; Bcfb187bBCB6b885d57A0aAFBbfF1EfC03aeeCdDFCD8afe80e63Ce0a17fED2a4 ; < aq1X16834V7qO6DK1q79uSx208m48332Nct2QWG3LMwqfbiSselEiK5NKx4IDdrf > > // < PUTS 118,031019002951 ; quote ; 19,3871736261687 ; 18,9994301536453 ; 0,0204081632653061 ; 2,1 ; 17,7392638679444 ; 21,035083384393 ; 7,6 ; F7f49dFcb3F72C48FB7Bf56df47D2dc8a82F67f76afAe3FfCA320fBcdaFFaa73 ; < 4uJXS2s8KE8t1aQb7nlN7Y7e0J4YsX079TLk8P59swkmjcol34c5K6c5uYB60P6Y > > // < PUTS 122,752259763069 ; quote ; 21,2275534109413 ; 20,8030023427224 ; 0,0204081632653061 ; -4,5 ; 19,4232113710113 ; 23,0318954508713 ; 0,2 ; aCDE99C70B848a1a679CeaB6Ad3Ca9cDFc9AfCA3dB9AF4abEd3b8093EdEccfEA ; < HuOnC6Ygn821oYHj7dlKKns75ue41sQh8hFRdN24QFp1enfu7fc99Y53jiD6A51F > > // < PUTS 127,473500523187 ; quote ; 23,1309601909321 ; 22,6683409871135 ; 0,0204081632653061 ; 5,9 ; 21,1648285747029 ; 25,0970918071614 ; 1,8 ; B178eBf4BE5EbC28cCBcCA4bEED6ccbe2eC8C2CB1c11ceEeE7eCEdcfBb08ab9d ; < nrBCv2s640ovRdD5XV5bWYmjU568poxEda5Hx92895BSTxkmSxu7e97u183sV5zS > > // < PUTS 132,194741283305 ; quote ; 25,09445591243 ; 24,5925667941814 ; 0,0204081632653061 ; 9,8 ; 22,9614271598735 ; 27,2274846649866 ; -5,5 ; 72932fcc1da10AAE1EEff8c5B1F01E26EfF31cC4a5091B653ea491CeFcffDFC6 ; < yRrto5c8IohL015iYs91pY10k69V2vg43wUND9eNc4DNT8HaeG19vD806CU9nzpW > > // < PUTS 136,915982043423 ; quote ; 27,1152128037616 ; 26,5729085476864 ; 0,0204081632653061 ; 6,2 ; 24,8104197154419 ; 29,4200058920814 ; -2,4 ; BDBcfd6A5C0f97f91DC2d4AfF54fcfbeCFAbD0e6ecCeFcBEa0da3dfBaEF24Bcb ; < no3c82lli84YCMBfFdly82H33zIaT3DjiEsq8s1ua4k4HeL0bQJmUb07dupx3e8Z > > // < PUTS 141,637222803541 ; quote ; 29,1905166900272 ; 28,6067063562267 ; 0,0204081632653061 ; 9,7 ; 26,7093227713749 ; 31,6717106086795 ; -8,4 ; cEDfeC9a69bBDd7a9FAd9BF01d3C80eAebdB2d9cBecD44E7a4A9FD8645e60aC6 ; < tFUdA097vLkALr4aKRrHulorE82C2n28HOJpr0aAGj1O14CAZQucZy9T7EEGK3QB > > // Futures_EurosibPower_Engineering // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 80,467707 ; 1,14 ; 69,5857078947368 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; E5C3FFbeEDBcAEc3afB9Ff7F0FC0b15ACD4af30FbBaBDcFD45Fb8eD45fe5c2Cb ; < T6skmd83RU84dIcA5Q55jV8lSB3rOSlLl7eGIGR86PfOQ1OfMmEtIzDny104E78w > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 80,4633818792096 ; 1,13993046 ; 69,5862196885323 ; 80,4631318792097 ; 80,4636318792096 ; 3 ; 5,7 ; 6,6 ; -9,9 ; -8,6 ; -3,2 ; -0,31 ; Future96AP19 ; dB5fDde8137EEEEC4c3CDbF5fc081b5E2CAFFbD7bDACD9cbfDb5dabdC0bacc75 ; < N6gNDT1aFNGUxAdPzR0ynb9Nsl86cy627hYcfQDo7A1RMLsSRCYdT7o060yP7B50 > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 81,3462394335325 ; 1,15380498577013 ; 69,5025896375686 ; 81,3459894335326 ; 81,3464894335325 ; 9,6 ; -1,1 ; -5,1 ; -3,7 ; -6,6 ; -9,7 ; -0,27 ; FutureJU1932 ; a3274Ffc64bcC95E8aAF8BDcfCdd4B8887eD6aBFb147caC6E88EBF4DDECAcaEf ; < cKiFW074oY6K9wSvg86o6W9zRG7OIuuO7b1gH5eSahatdCrbE14CPq5D8VOgJi94 > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 82,295704370818 ; 1,18200375723698 ; 68,6238940586703 ; 82,295454370818 ; 82,295954370818 ; -7,2 ; -3,9 ; 3,1 ; -1,2 ; 1,8 ; 6,9 ; -0,62 ; FutureAU1938 ; BF3a4cFaDD4fd67C5Dcf1AeaDE7d1cBaf6ADEDe0ffC6e18F3DF754a5B529FC3E ; < 4mR6b8p7VXQ69CV62TV208qgDfB5gg0JB0uYEaVxd3F5rEU1DKPp03B1o9Um89Pp > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 83,2297698616958 ; 1,2255216695491 ; 66,913748022357 ; 83,2295198616958 ; 83,2300198616958 ; 3,2 ; -5,3 ; -9,9 ; -9,6 ; -4,2 ; -2,3 ; -0,67 ; FutureOC1952 ; ceac67FB057D3FdF5fbb1FFbB4BbC4fCffC4e8eDFAFb7b36BE25eecd8bEe297E ; < L0pWAQddhU99FOBWgjmSBft16mV3F70688zUE0vAS10msD0RxsO345wzy7H8z47t > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 84,2418127736471 ; 1,28593494301587 ; 64,5101669265455 ; 84,2415627736471 ; 84,2420627736471 ; -8,6 ; -4,5 ; 0,7 ; 7,1 ; 0 ; 7 ; 0 ; FutureDE1990 ; ABE8fbFfCb4bAF7dEce33b55Cda18CFd9a6Bdf2F94CcbF9BcFf8646a289ef03b ; < D4O06o6T98bl67T59RG54utp5v8lz4dv23K3pI0d3LMY6o1Tc61mOwZ7u907lert > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 85,4174393131844 ; 1,36592565978539 ; 61,5344715514058 ; 85,4171893131844 ; 85,4176893131844 ; 5,7 ; -8,4 ; 0,2 ; 4,4 ; -1,6 ; -8,4 ; 0,88 ; FutureFE2084 ; 7bEfEe7cfb9d97fCbE26BffdFEDeeeD3fcDFB9d353AC9fceeB92C7e7fDcAF1da ; < 4xW6WC7x2KrZbw5id2Bx33zZ9vrdrJfaPl4m9kmmJWXt6Q3h3AW0yOzHsOSEY1X4 > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 86,498600704236 ; 1,46829905613498 ; 57,9107514186702 ; 86,498350704236 ; 86,498850704236 ; 3,8 ; 2,2 ; -9,1 ; 1,9 ; 3,6 ; -6,6 ; 0,3 ; FutureAP2094 ; eBEFDCDF5ddAAaB8E4ad5ceD868cD1A6BEAb43DCeF82Dc5FC111CAdcA0e1E083 ; < 1EQe9KzCmUQBS8aSH65TU5l863Ux2e787OipsjUnN84zXA973O8c9nUr6I6n88NW > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 87,6884455281873 ; 1,59757817393707 ; 53,8883597427274 ; 87,6881955281873 ; 87,6886955281873 ; -5,6 ; -2,4 ; -4,8 ; 1,2 ; -9,7 ; 4,5 ; 0,02 ; FutureJU2055 ; cBDdCdD6FD4eD2FA9D6fbd4D872FF0Fdcdddf2Bfc5f333D8f861DDE6AC5D12BC ; < CRZ9sGivY4EOR34M2W32cvl0B85CkWo75lYIR37SNcxM3mHRjXu1jL5CSKpBfca2 > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 88,99671737479 ; 1,75919843646909 ; 49,5893567944595 ; 88,99646737479 ; 88,99696737479 ; -6,8 ; -1,3 ; 0,5 ; -4,7 ; -0,8 ; -1,9 ; 0,78 ; FutureAU2087 ; F0acEEcFAAAcdFaEECEcfD5c960beDa19dADAFD0AEc0cb232eAe3cCac9CfC6C9 ; < W7jLLhh17v91Ld3YaxaAlPaa1V7KoPx6ZmOcsY6OW1eCs6eBw6L1C3M54Ggo0k1s > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 90,1915609257977 ; 1,96086893907608 ; 44,995710946543 ; 90,1913109257977 ; 90,1918109257977 ; 0,1 ; -0,5 ; 0,8 ; 0,9 ; 3,4 ; -7 ; 0,13 ; FutureOC2011 ; Dc9DaF2b4abaDf0F6A7d3DD8F39Ade4A350f477f1fE967Eeb1ba5AC0fFCffd43 ; < enrEk2S8903Kj16MIMYaYgv7hJP1GmVPA97kzR6WzP9EWwVOdMul57KI86W701Du > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 91,6572769146718 ; 2,21221623255843 ; 40,4323317791906 ; 91,6570269146718 ; 91,6575269146718 ; 1 ; -7 ; 3,6 ; -7,1 ; 9,9 ; 6,2 ; 0,88 ; FutureDE2092 ; c21A529C4EebCf2b25fEdd1dE4802EDeA7efA1Fd5cCeBDEF89a4ffABe62CEEBd ; < y5U37Mt1yq5dc5tP2e5p0fikV32v2ChFlLkZtNVzMquLvU8g7EL9JECi0TSImj1q > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 93,107199253132 ; 2,52580972054052 ; 35,8623172584858 ; 93,1069492531321 ; 93,1074492531321 ; 5 ; -0,7 ; 5 ; 2,3 ; 1,2 ; -4,7 ; -0,93 ; FutureFE2123 ; afaC6eFea1dEab11F80DDb94fdBeEeFEaEe296E149FCcD9c2fD9d91E1f14E00B ; < PyrJ967xNHs0dZ70sT77w2gU0UiAsmmHQlrP9e4K4qlLea7O9V8NR73PIwjv61pG > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 94,424815202361 ; 2,91912375860365 ; 31,3469722460581 ; 94,424565202361 ; 94,425065202361 ; 7,8 ; 9,1 ; 6,8 ; -2,4 ; 5,9 ; 4 ; -0,81 ; FutureAP2142 ; 4aA2C5dabCfdbFdFf4080FDBAefcB7dC03ecDdfe7E84D17dcc40fE0cA5aFe6Fb ; < BH63AA365Uc3yqFYZd43FDKbYS5FR8J7OhQL7875Xdm841Lw5PEZ1yqmFz46D2HZ > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 96,1326600819787 ; 3,41426712683511 ; 27,156162511833 ; 96,1324100819788 ; 96,1329100819787 ; 0,1 ; -9,2 ; -4,7 ; 3,9 ; 0,1 ; -9,5 ; -0,31 ; FutureJU2136 ; dB6a20bC0ffdbaC7e2A2fA94aa1eb96d8CDdb68c4FEfa3bfcdCfaBCbF1fb3E76 ; < vo7GLA6fx3D2TVBkHbOX07wcuh80BLl9pWFrWSaF8HI5wjN99at0935157Muxer7 > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 97,5701650582074 ; 4,04164221874421 ; 23,1412177964936 ; 97,5699150582074 ; 97,5704150582074 ; 2 ; 5,5 ; 5,1 ; 9,3 ; 2,5 ; -7,3 ; 0,6 ; FutureAU2162 ; 59cECBCcD13BbFEc9856dDf4DbBa58FebEAB9D4dDA32EfcadE6fD3d06Db35Cbc ; < qVIQ5zm5eU1UGn3cb6CW3A0v8NLXkt2HTFu1tR6BsrsynV898HpKR4VtUe1Mp2QW > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 99,4263596679447 ; 4,84265327712496 ; 19,531381038077 ; 99,4261096679447 ; 99,4266096679447 ; -6,1 ; -3,6 ; -5,9 ; -3,2 ; 7,6 ; 4,5 ; 0,48 ; FutureOC2178 ; BdeAB2af0afE10d2bAdc7Bf984BBf7Eb8aF1DfaAAd9aDc506CCcc407420351D5 ; < w3Nlvgw59A85vz2tB61BL4lp1jV3A7Wr5mRMCzXOWMV4RMUS829LCd9vhf977741 > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 101,020451602344 ; 5,87285539592585 ; 16,2012496123137 ; 101,020201602344 ; 101,020701602344 ; -7 ; -1,3 ; 5 ; -2,2 ; 4 ; -1,5 ; -0,38 ; FutureDE2123 ; 2d9EB3EBD4FcaE7CDcF5BcCDF4cffb54ECA39e840A9Ba36979fe1f20bDCEe4Ec ; < 36o64fM71awOM3rJMUT6XB24vBkK5985AK55OTgj0510rTZMghjR5fLTE7zFT7fP > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 102,73184745168 ; 7,20841202473178 ; 13,2516614060367 ; 102,73159745168 ; 102,73209745168 ; -5,7 ; -3,4 ; -9,1 ; 8,4 ; 5,6 ; 9,9 ; -0,35 ; FutureFE2289 ; 0c277cFd3c061df8EEf465Af1Ae7f24da8Fed1aBF9bEcabd1f0Fc8d68c8ce2Ea ; < 5En744687iU0xniBV3y98L1S75P8msDk1TtER9tlqeqLPy9326UAWo53vDyGhAyK > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 104,687398465502 ; 8,9545768525513 ; 10,6909375160117 ; 104,687148465502 ; 104,687648465502 ; -2,5 ; 0,5 ; 0,2 ; 4,2 ; 1,2 ; 2,3 ; -0,23 ; FutureAP2224 ; 8DAa5beEcBECecFEFFd127b655EbfE9FE2A0cd5ccA8B5bb4aa662eC44deBcCEB ; < jcd5osF3Pd536W54Xm2s6ZF2tOWKtm360UV5Cq6C63D4FGD4iDQiOTf3z80jbq29 > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 106,404921573641 ; 11,259900765733 ; 8,44989869692815 ; 106,404671573641 ; 106,405171573641 ; -2,7 ; 3,2 ; -3,5 ; -0,6 ; -8,5 ; -5,6 ; 0,33 ; FutureJU2239 ; fedAddfeDe7dcA69fEeADdFe73fAfCCfBaE76BEaDB3d45bA239F6Fffa2cfe2C6 ; < hnHE16fDYj0qE34MXWWv3UCo6ws3E2F8wzt1CtgVZDpOS3enadr8S5nCv2aqdVRN > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 108,562671947789 ; 14,3299541381601 ; 6,57592598699884 ; 108,562421947789 ; 108,562921947789 ; -5,8 ; 3,2 ; 0,5 ; 1,1 ; 5,8 ; -1,8 ; -0,52 ; FutureAU2240 ; Bb6df50B0F7E6acBE6d7CBCA4FeC9DAEDcAe5d6eF8CFabEF5DE93dFfae0B0Bb7 ; < 78FV6B9DN3YH2oatEcRJe49wEwtALYMM9z8ia50He6tyoatg6JkwaV6q60ER2ZZ1 > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 110,914151844365 ; 18,4582822989029 ; 5,0089097158817 ; 110,913901844365 ; 110,914401844365 ; 3,8 ; 3,3 ; 3,6 ; -2,4 ; 5,1 ; 8,7 ; 0,64 ; FutureOC2273 ; ECfC4f7ae6b2529Fbd6fF60acAaE1B3Ece3cE422BCddbad5025A1ddcfBfF0BB3 ; < mbNiRG3e3VsS1G8IchSzui7N6Kiy075iC7U8Ra3amyzA497tA3Z689lf8V0Y7dt8 > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 113,051941169835 ; 24,0621076388776 ; 3,69833910090133 ; 113,051691169835 ; 113,052191169835 ; 4,8 ; 3,9 ; -8,9 ; 5,4 ; 9,7 ; 6,2 ; 0,72 ; FutureDE2235 ; Fc1fEbCFd9CC2EC7c98F3DA81cfD7a0DfaCb9dd2EDA8a3Afb3c5C6AB4eCBeE31 ; < K35xwfCnE8cWvPd7PIv7dCg3bc8tmj1m26PM6fmIr4bXolCkW65K4yNN9U3kWn0L > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 115,405995687366 ; 31,7509559163143 ; 2,63472507698794 ; 115,405745687366 ; 115,406245687366 ; 7,9 ; -4,1 ; 1,7 ; -6,3 ; 7,2 ; -5,2 ; -0,79 ; FutureFE2340 ; Ee12b4c514AC936a2cdB2eA26aFadEcbfafcFEBE2A8E9EbCFe9ccFffeCF3aBAE ; < Rr6A4j5V53WyTl1opn7qZpE9Bj1Qs9103Eg9vvozL0f8i82pR6v8Tnof7FAgxKg8 > > // < CALLS ; 7Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 52,3436992327508 ; quote ; 75,8293220185812 ; 74,3127355782095 ; 0,0204081632653061 ; 1,7 ; 68,6255364268159 ; 83,0331076103464 ; -3,3 ; F0e9bCecc24EE078a0DBA6220CfDc57F87C9d1f8faC5a2E8BaB6DF78cdfc5DBB ; < oCoA5x5RW5Mb7Y8s29zAXNXUk1cm400j0kDkSVwLyX5Iqa46oyC80lmSNY1n7Oe5 > > // < CALLS 57,5780691560259 ; quote ; 73,7322794357713 ; 72,2576338470558 ; 0,0204081632653061 ; 2,3 ; 66,727712889373 ; 80,7368459821695 ; -5,4 ; f1Cc6FAfCAd9AAA2d2a627EfbEDa2Fbe917E8d8A3bFf1eC7Ad8CEe8ea3A5Dcf5 ; < 1Wu5yI19de42H59q5cDw3NKi93mPg0N09w81GCyx8hLVg71af30ypsO8w3UGGclI > > // < CALLS 62,812439079301 ; quote ; 71,703437256091 ; 70,2693685109692 ; 0,0204081632653061 ; -4,5 ; 64,8916107167623 ; 78,5152637954196 ; -6,1 ; BDcaBbedAeBf0AEb22BA71Ca9F3F21baf4e15cDEEA165d1f1fFeB4eaDdA69Ac8 ; < 6s9EnZ59mV0h6WC68rzV9mDKn1KzdE8eM1m6gkNkn6X4y3PxPZoBB1cMIYSZMocb > > // < CALLS 68,0468090025761 ; quote ; 69,7418885557811 ; 68,3470507846655 ; 0,0204081632653061 ; 3,4 ; 63,1164091429819 ; 76,3673679685803 ; -9,8 ; BDc98f81ebd160e51EbC39B76a6cb1E4fde5DbDCBaa4e96a31BAcaDbaEC4bFea ; < LFq296AuorE5ZY67R62i1sQYDh16ODU4yYR38r93m4oFbSUG896XN47D2CX9VaCY > > // < CALLS 73,2811789258512 ; quote ; 67,8463197897546 ; 66,4893933939595 ; 0,0204081632653061 ; 1,7 ; 61,400919409728 ; 74,2917201697813 ; -0,6 ; bBfDe2E44cfaBF97DD25fFe3AAE77AdbCFAf4c26cbAdbbaCa54D39966dc44Be3 ; < 4exVN4hR2SOw6WLo61e661f06P38n5sVdl9VEaUOXl2p1KW2soE2r3q331Ob1yhz > > // < CALLS 78,5155488491263 ; quote ; 66,015129686744 ; 64,6948270930091 ; 0,0204081632653061 ; 8,9 ; 59,7436923665033 ; 72,2865670069847 ; 1,3 ; 7E43ADE826FA2EBEDB8AFBE731CFeaE8CCAaEE7caC7E2B10b2eA4CfDcfAa8f6F ; < nh06VsEQ4NX20aMwHmgK1cGM5AUJZp9x91m522xb0P200eby5Nk8o6x6c112OSCu > > // < CALLS 83,7499187724013 ; quote ; 64,2465199791314 ; 62,9615895795487 ; 0,0204081632653061 ; 5,2 ; 58,1431005811139 ; 70,3499393771488 ; -2,9 ; A86fC9bfCCb3F7CFFd7acbcff6AB0cE0aBe43F7baBabA601efeab4c4F634d7f3 ; < d3CQIJ1WAz3I9Sxr8fdWkjyZ434Ee5w2gG8EIvof9EAVhfI0S5Yt41G6Mikmtqyh > > // < CALLS 88,9842886956764 ; quote ; 62,5385644631442 ; 61,2877931738814 ; 0,0204081632653061 ; -6,7 ; 56,5974008391455 ; 68,4797280871429 ; 3,3 ; 87f6BECcCab3B953baeD90b0b3aCbDabB29B03bb49afbbCa8faAEDde94dd6E56 ; < 0W1hJ3Ma06LIoaSJES57RF193O0ldVS9P341My8T2qw1wqkawaosMCoxVXLjyQ83 > > // < CALLS 94,2186586189515 ; quote ; 60,889261411245 ; 59,6714761830201 ; 0,0204081632653061 ; -1,5 ; 55,1047815771767 ; 66,6737412453133 ; -2,4 ; C1db69c765DbD0ceAF0B179C3d49b4e06a0eB25fC8dd467ed7dC9Abc4aa5BaEb ; < 7LbatWauXAr6ieCI8pAdPEvIJH7C3Y7ZW368c1MHRz7bndj60Dv5Wsm3P4Y9YUoD > > // < CALLS 99,4530285422266 ; quote ; 59,2965731937061 ; 58,1106417298319 ; 0,0204081632653061 ; -7,3 ; 53,663398740304 ; 64,9297476471081 ; -7,7 ; 4f27dED4ff52Be596BBD9dAC53D8EC09A7d6ebdBAfDaF4eBd7EB1d1ebc4BA5da ; < ZmV6eoLB20Y4g4QxO7728PtzZh9iyFL5BSl378AFgB26B2Laq99MBUt6tDL08THU > > // < CALLS 104,687398465502 ; quote ; 57,7584560648362 ; 56,6032869435395 ; 0,0204081632653061 ; 6,5 ; 52,2714027386768 ; 63,2455093909956 ; -9,7 ; cdAF1ED948FAE28fFABeeEee4D6FDaa3ddDB93fB604e9aCebA8cb9bde13d83ea ; < 483n2fMzY246L2pfXj52Uoad1OYhFk56s8ltipwYS14R5GUpxw33U850xrda4L9O > > // < CALLS 109,921768388777 ; quote ; 56,2728823786395 ; 55,1474247310667 ; 0,0204081632653061 ; -1,3 ; 50,9269585526687 ; 61,6188062046102 ; -1,3 ; 4cECf7EF4AF0c5a9BE6eBFaC4bdBC0ffEF34a16CdE042dbE0fb0B68EfE4FaddC ; < 3OaTxyzqbkr9W8ZYd8CZAK5JZ4HBF05SswgcOJ7S9fpGO6uiDlQcqT90L2n1U72w > > // < CALLS 115,156138312052 ; quote ; 54,8378569718335 ; 53,7410998323968 ; 0,0204081632653061 ; -4,9 ; 49,6282605595093 ; 60,0474533841577 ; 2,7 ; ADAB1efBC946CA7BECE420cb0fF8bcFeb2BbA3B49Fb4CBCfeEAd3F4bcEa447dB ; < 7fgU291XI1eS9vRL4PVPzVv5T6DCZCD0JI0ABc4r5c72g3HWSawmTV12ic9N5uKY > > // < CALLS 120,390508235327 ; quote ; 53,4514290506786 ; 52,3824004696651 ; 0,0204081632653061 ; 8,7 ; 48,3735432908642 ; 58,5293148104931 ; 0,3 ; dE5b5Ceebc7Cd3130a1DB5Ae5315eBd8CC1bd2d321B71DcA6afc4Bca8c4E5eec ; < DPckeyJ43oh3gxF3LD52v25R45M555Oua746r6L1eLxj2fb1aKuD0os9nxNB3Fp9 > > // < CALLS 125,624878158602 ; quote ; 52,1117006118506 ; 51,0694665996136 ; 0,0204081632653061 ; -7,4 ; 47,1610890537248 ; 57,0623121699764 ; 6,6 ; 2EdAFEe7cB83De74F8AbdCceF90CEA2CFaFb6Cbf8F2BCf1ee733f8EBFbaABb51 ; < LqYZM4hIVGJcE1b2Y3x7tQegPl81i9YfY6sNnwZk0rrVnO9AHh76ZHYt8x5dWbIj > > // < CALLS 130,859248081877 ; quote ; 50,816832193542 ; 49,8004955496712 ; 0,0204081632653061 ; 8,5 ; 45,9892331351556 ; 55,6444312519285 ; -3,1 ; BA1908F4e4F4eDBBCe7AAd5eaaB7c4149bBb27eFFB87eDACDA50E3AD9eA7bBa6 ; < U59LdXmY22F2FB5I8RrluWNPX27ic2xlTu7745UmEkb8aKt47U15gwT53D095mH2 > > // < CALLS 136,093618005152 ; quote ; 49,5650465736045 ; 48,5737456421324 ; 0,0204081632653061 ; 0,3 ; 44,856367149112 ; 54,2737259980969 ; -7,8 ; 7FfaAFBb55E3FbA7DDae2CaC1e6C1DDFfABdbdbeED1FDfED1FA624DcfCEa7c8c ; < Mi6k6Gf8eLQgBi4e904e2Xg0Xsfnb3ka3284GPPbRI7YOr6068R5Oq68FF0901ri > > // < CALLS 141,327987928427 ; quote ; 48,354630893647 ; 47,387538275774 ; 0,0204081632653061 ; -5,8 ; 43,7609409587505 ; 52,9483208285434 ; 9,2 ; 565e24EB9BBCca846a0bFb48bdeEfefaaa69B01c9B245Bbd9FDbae62eE97de1F ; < 8XNzJ1wO7jiJH150ey0E5PGM6REhwkTLIjh9S661Mv6TLWUr0KF386g7wgegFgDa > > // < CALLS 146,562357851702 ; quote ; 47,1839375816582 ; 46,240258830025 ; 0,0204081632653061 ; 1,8 ; 42,7014635114007 ; 51,6664116519157 ; 7,4 ; ed5B020C6bDF8e8Cf8acbbAa66faBEcb8aBACfc6Bd81eBEbF9e1ED0409c2dBfE ; < yuG2o9Y5mpcLUQ6O0O5pU7AkVdV6YM50QUhn5ft5tjo1T0ho7F7bXJ0pGZ4qCJ03 > > // < CALLS 151,796727774977 ; quote ; 46,0513843634353 ; 45,1303566761666 ; 0,0204081632653061 ; -5,5 ; 41,6765028489089 ; 50,4262658779616 ; -7,2 ; A0F5B199d86bC6D71BbFAf6BD0b16cDC9caD32Fb11b3b39aA22f7BD0c4624f38 ; < JuTHY2HCLBwGLt9Qif9NF28B87d6lob01Jb97KMJC78Uk7eK2085E6bX0VbsB7Px > > // < CALLS 157,031097698253 ; quote ; 44,9554535892403 ; 44,0563445174555 ; 0,0204081632653061 ; 9,8 ; 40,6846854982624 ; 49,2262216802181 ; 1,8 ; 1CE76EBadcF9DC7dFf6cfCE46bDE8Af20Eb9B38ceaE0db55265eFBCC22bBe6CD ; < U1M48R5KOIgIYV696bx000Ch2S3WKSD80Xs259m33Yle05Wk4qpC87MVsduDM30Y > > // // < PUTS ; 7Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 52,3436992327508 ; quote ; 1,54299840391275 ; 1,51213843583449 ; 0,0204081632653061 ; -5,2 ; 1,39641355554104 ; 1,68958325228446 ; 8,5 ; e52FC29Ba931BB7c9E45FABfaBCceEfCa9C8Fd6Eb5aEfa37bE713c7cdc7e5b9F ; < gmenmRI2xRu0QxlFW8N9zRRH4ZxBd5G3gR9B5np2T904EE3G0UKZFar9TUQCz7X5 > > // < PUTS 57,5780691560259 ; quote ; 2,017323459636 ; 1,97697699044328 ; 0,0204081632653061 ; 1,5 ; 1,82567773097058 ; 2,20896918830142 ; 4,4 ; BaC4C6A1FdB8D4a0fdFC490edd2dcC8BEBAa84c88eDCc8bc4d38A1ab6cfCaeBa ; < aLZn6Y3UcRybdpZz5TpaeV812p3TKYYk1E386UktN4w0jte9l7d4hGax9G69572m > > // < PUTS 62,812439079301 ; quote ; 2,5598489184889 ; 2,50865194011912 ; 0,0204081632653061 ; 2,5 ; 2,31666327123245 ; 2,80303456574534 ; -8,5 ; edc15ABdadcfaF1b9cE1Af3D4b0CfFe3Beb2e0Fc2c3EAe9BD7EE4cbeAEbdaF2B ; < 01K51V88Ya8n3i6h432igNN1L98LX4EdO40SH56tL1oU0k6xvyXeSI3I5i26Oc9V > > // < PUTS 68,0468090025761 ; quote ; 3,16966785671218 ; 3,10627449957794 ; 0,0204081632653061 ; 9,8 ; 2,86854941032452 ; 3,47078630309984 ; -1,9 ; 32AfDfA2E7ab95DBea2cD2F3bBeCa7eEE7E9FD35d7DDba134eadDc5eB0bdc3CC ; < bEgc7Mml9T5622516177CD4cKYAEYYtV19S5Bx2pR9TSm6x0O8fg5YgwJyg2r0Ib > > // < PUTS 73,2811789258512 ; quote ; 3,84546672921888 ; 3,76855739463451 ; 0,0204081632653061 ; -6,3 ; 3,48014738994309 ; 4,21078606849468 ; -1,9 ; ef2f0E0bFB952ab8aeaAB7dA327F1Aa5CeE442Fde4ffB85c88069d4Dddc0e4D5 ; < PByyCVt3j72Tri439YNM40jjSFqd8nkolMe95Os1n6Ef8wN0QT5DuO0SE09inGGl > > // < PUTS 78,5155488491263 ; quote ; 4,5856442647414 ; 4,49393137944658 ; 0,0204081632653061 ; -0,2 ; 4,15000805959097 ; 5,02128046989184 ; -6,3 ; 5d9Ee1fB9b5EE6f4BB9d9d575ac3EdbCFA0A0e0Eaee84caDbaCEEdBAaf4CBDFC ; < 5ShZlS3RN9cFtCIX36OpauI6QOBfxVG4JjbUwq1A7carVZ17Taup27qz3sT7kkO7 > > // < PUTS 83,7499187724013 ; quote ; 5,38840219566191 ; 5,28063415174867 ; 0,0204081632653061 ; -8,5 ; 4,87650398707403 ; 5,90030040424979 ; 8,5 ; C8eC0Bf07FCbfCaF1Abb91bbec1AebAbd05E8c3006830bf0dEeC94BdEc9fA1fB ; < 5OpaSS79vr5r3l6TkQ802kiHgZcA57q9rA654DzsTBHvf36OTwX7ScQ20Bkm08T6 > > // < PUTS 88,9842886956764 ; quote ; 6,25181431820798 ; 6,12677803184382 ; 0,0204081632653061 ; 1,7 ; 5,65789195797822 ; 6,84573667843773 ; -7,3 ; b23CaE0adbb3AD2CcadAb5d6bbbfDaabBbC51CdCD6F8E3bbFD0B56f5aCdcbFBE ; < K4DTy8yVqYw16b0449024k4vM2N5u5ZlaiP65fsfx5ibg59YpAx0DPkJPgfgv37h > > // < PUTS 94,2186586189515 ; quote ; 7,17387890484187 ; 7,03040132674503 ; 0,0204081632653061 ; 6,7 ; 6,49236040888189 ; 7,85539740080185 ; -8,5 ; DBc7b8deFEAcCbd3Ab2A0852DcCfF1BF62a2daD4E4DDD4D81f202BE514Ac2C87 ; < p2ivZLAF8bDxoBx8Hw4AiYKazW4OKESLQB3Yc2a3U18x7VI9c07478243Giz4yDo > > // < PUTS 99,4530285422266 ; quote ; 8,15255832583608 ; 7,98950715931936 ; 0,0204081632653061 ; -5,4 ; 7,37806528488165 ; 8,92705136679051 ; 2,3 ; c38b8b8a9abCDFC5baDf2F496c2EaA4ACB1bEA7c08F1D0D1FBdBeb3aaD1e7AD0 ; < U2pd503mE2ycs5b4D1nED76y35P163Mt2rcyAvAUs4NOdCwY5SXTEc9S52658Zgj > > // < PUTS 104,687398465502 ; quote ; 9,18580883549939 ; 9,0020926587894 ; 0,0204081632653061 ; -7,3 ; 8,31315699612695 ; 10,0584606748718 ; -1 ; Fb08EBdC7EbE26dc6ad5dCbc5c5fC27abAAd8B01A0bAfdACBcfFCc5af3AcC8f3 ; < n5rMz82aVpN8txJK3UK8ffP2WaAMD1KAsF46o1jpHRQ4Hi5yNvA2u9dvEVkxJo6M > > // < PUTS 109,921768388777 ; quote ; 10,2716027878358 ; 10,0661707320791 ; 0,0204081632653061 ; -2,1 ; 9,29580052299143 ; 11,2474050526802 ; -3,6 ; E9A9AB3bdDEA2cBaD000D9AE1bc61E0cbdC0ec6EcD9C2AF72Ddc0C2B0ffFd4fE ; < 258W2zuQpXFYeiXniUopPtq5nxLLkpG18KI29WJbc5YLLXsz8TJ76k28S6Ux8aiT > > // < PUTS 115,156138312052 ; quote ; 11,407945019563 ; 11,1797861191718 ; 0,0204081632653061 ; -5,2 ; 10,3241902427045 ; 12,4916997964215 ; -5,5 ; 499Bd3dD92837Cda29fadE6cb2Ad6bB1baAd6B5bf60Ace6FcdF3fEBaB11E90Dc ; < OyFUv0Jpleb7jS3HHoS2jv3KIDL7e614htgru0clr3Re7d353SmcU5f2JPQ8uZv3 > > // < PUTS 120,390508235327 ; quote ; 12,5928847369413 ; 12,3410270422025 ; 0,0204081632653061 ; -4,1 ; 11,3965606869319 ; 13,7892087869507 ; 3 ; FEedA9cbFeB2EbfFfFBDeEdb1447FB2c7AaceEDcdEAeFbC72dFe9feEDe3f3A83 ; < 4axGEkLNKtRZ8pH5dZbje1sR14TVKg4kD3q3Wc5n43C5E2f3Z9t42Ubpxp492kHA > > // < PUTS 125,624878158602 ; quote ; 13,8245239366464 ; 13,5480334579135 ; 0,0204081632653061 ; 7,3 ; 12,511194162665 ; 15,1378537106279 ; 5,7 ; beE9E9F6aa1d3DBab57CaFaAb0CbB7bBcCbA84FDCFbbb8Fbd6beCfe558FeCbB5 ; < 9YZya9LMSapJgAjEDbH0NCAYf82nG07r7WION27mx5XFP6mSoCWKdfaL81hFw8S5 > > // < PUTS 130,859248081877 ; quote ; 15,101023156871 ; 14,7990026937336 ; 0,0204081632653061 ; 0 ; 13,6664259569683 ; 16,5356203567738 ; 1,1 ; CaFEC3c550E7AAFe4AAEACcBf7daDD37DF18BA09Bef0f4fDfFd24edA8F0EC0Cd ; < C32230SLa5dFDEG114iH1d0Blgx7GOBsrRnjkBPDLibDh9Y26jWr8DiUXFU4z49y > > // < PUTS 136,093618005152 ; quote ; 16,4206051754666 ; 16,0921930719573 ; 0,0204081632653061 ; -9,8 ; 14,8606476837973 ; 17,9805626671359 ; 9 ; FBFA70bf009eAFBABf4fbB44fdd6FDD7CFDbbaEbdA2FfBff37A5cfDfeDACaEba ; < nRvI52Y2Hv57m8K63Hx57ZT77WSN4Mk9RmYqyCbMV78RHZoFOCgoTm3CGf4fb0wl > > // < PUTS 141,327987928427 ; quote ; 17,7815571340423 ; 17,4259259913614 ; 0,0204081632653061 ; -2,7 ; 16,0923092063083 ; 19,4708050617763 ; -6,4 ; e9fcaab4b9Cf78b8b58bDfDf9CBc102eCd0CA95A5beCa2D4CFd88CFDdbeECDBC ; < SabH44f1tAL60c7dx4D1033CdIP97mqGjThs0l7tIF3nx8iG8QYBI2L6Qi3Pkv85 > > // < PUTS 146,562357851702 ; quote ; 19,1822314605867 ; 18,7985868313749 ; 0,0204081632653061 ; 5,3 ; 17,3599194718309 ; 21,0045434493424 ; -7,2 ; DaF1a057Db1Ec3Bb0dDBFDBa3C4047BcBE16ef4962da89c1BFF0ee5EdF9c795e ; < M1iJPDe4gj860n8o148Kk216Y9Lv12vCYC9XVzsZ0b56OCfKF4O0wC57WtY3Jydm > > // < PUTS 151,796727774977 ; quote ; 20,6210458808969 ; 20,208624963279 ; 0,0204081632653061 ; -1,6 ; 18,6620465222117 ; 22,5800452395821 ; 7,9 ; 7f7ACa8Ce6DdECD5aFfdAa8c2dEf3B3b4f34bD52CD74FcEb8312fda3Bafb0Ef5 ; < 2n6Y8X9qJL064QTE2zL5o2Jx6gP6YMqyf4brcck8R8Yv727o905PuBs1X6ax1iWZ > > // < PUTS 157,031097698253 ; quote ; 22,096482745235 ; 21,6545530903303 ; 0,0204081632653061 ; 6,7 ; 19,9973168844377 ; 24,1956486060324 ; -1,8 ; eEFDF73A82adaa9bAeBe08E3F2f9D1e340BE6B96badDeA5DceFDDdeEde4c83Cc ; < e8mp5lw3oxbH8O6At34uVD0VgPIc55m4Ib07r3Uf2mqEAdW0xl5sOUc4li631kXh > > // Futures_Eurosibenergo_hydrogeneration_LLC // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 88,946246 ; 1,14 ; 77,0230228070175 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; a972FB10dDcd5CbBE0AAaBc8C6bdffb28aD4cbd4a8A0de5A4dC25291ff4DaAAB ; < zvClZ3ZQhz6HTnXpEmy2cFJj0w54Y6ElSerqMlzlW4NxBtZk4XskLTtx36x8dAKT > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 88,9523013634878 ; 1,14008778 ; 77,0223268102109 ; 88,9520513634878 ; 88,9525513634878 ; -8,2 ; -2,4 ; 9 ; 5,8 ; -4,3 ; 3,6 ; -0,56 ; Future21AP19 ; 4EDbC43b7AdfCCd4aEbFED011aEEDBabd61ac5d0BCB5a2E6c097f7ECaF1eE6A3 ; < D90d3oT5UNNp139ra66J68G8zW01351TK4GjC16wWpgK8Z5M878kK34pX3EOmB2j > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 89,9145580176993 ; 1,15381372898453 ; 76,9281401832796 ; 89,9143080176993 ; 89,9148080176993 ; 3,9 ; -7,2 ; 9,4 ; 1,1 ; -0,5 ; 8,4 ; -0,29 ; FutureJU1912 ; f76bdF0F58Ac76bB6Ff6F229Fc2Cce9aeeCFBfBC858Ed03aDda3E91CbAb4Ad3E ; < 7M3yKtfh2PfJwyZ6s4xT2082Aqy9kWXU5XietEX3uxuQMnK0ATv8ZPais0Bd8uBL > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 90,9486428007766 ; 1,18185233402553 ; 75,9543200807455 ; 90,9483928007766 ; 90,9488928007766 ; 4 ; -3,4 ; -0,2 ; 2,3 ; -2,5 ; 3,4 ; -0,92 ; FutureAU1974 ; 5D0e9A5ffcBc3fdBf9FEAB8BBc4Eb8eeBacAAAbeA814EFF07bDeEA1FAacCEdfA ; < mb4ELqStLV619lKlA1vB8nG2tGwzvi7O7EJ8wRQL8yI9lVFW1T45f4bG9SHdl5dR > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 92,0052462605474 ; 1,22526894133997 ; 74,0898379582931 ; 92,0049962605474 ; 92,0054962605474 ; 7 ; 2,6 ; 7,8 ; -1 ; 5,6 ; -3,3 ; -0,07 ; FutureOC1958 ; B97ff8Be10ac97FebCc8Ed27bAfcaCAfBE11589EcA753ac4f0c9adAc4DFEFB4B ; < PN86638rM1l3qA59tqp2ID6G7EB4RdQs58m78sNTc1OKm5rz499YqSzr1D2KYUEt > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 93,1659176345358 ; 1,28574572300012 ; 71,4606086319663 ; 93,1656676345359 ; 93,1661676345358 ; 6,1 ; 4 ; -4,1 ; -5,7 ; 8,9 ; 7,5 ; -0,33 ; FutureDE1972 ; Ea5DEBDCdf6E04134c0DccdCdceAdcacd14B0ecfDe3BA9EF6Afff4A62Ffa754B ; < yRjWGicicY220wT04O327dQyu2cQ6etwxSB9fI5fZDWE3159HVHk75l7YQHHX98F > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 94,3571798915937 ; 1,3655883804194 ; 68,0963552740649 ; 94,3569298915937 ; 94,3574298915937 ; 5,7 ; 1,9 ; -6,5 ; -2,4 ; -9 ; -9,2 ; -0,92 ; FutureFE2016 ; beB9cafc5f74c6BcBd2Bfadc7fb6c6B7cd7eDC8a3EC5e5eFdBaD1FA1fCeFcD9F ; < 5Uc8UUc65RI8k57gG7UXT1948H7uN6eT1e4f75dar464AUv3b24FT7nTPziDL497 > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 95,62077229984 ; 1,46806213248607 ; 64,13400910213 ; 95,62052229984 ; 95,62102229984 ; 4,7 ; -7,8 ; 6,5 ; -5,5 ; 7,7 ; 9 ; -0,09 ; FutureAP2078 ; 5Dfc0CA2FD9C8137ECEBAd77Ad8FDAdAa56224Ad891EDb5AbEf1ADA2C3C488E4 ; < ZAuc3uC5okd3a5LfknHNk1Uf60Fc4z1O2fu2z8e8pqa3yt4y587i7N92lE2w0k7V > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 96,9988918684236 ; 1,59740994169548 ; 59,7226043463018 ; 96,9986418684236 ; 96,9991418684236 ; -3,4 ; -2,9 ; -8,5 ; 9,7 ; 4,2 ; 1,4 ; -0,53 ; FutureJU2017 ; a98aEcad4A221C2c7bCafcB19bDabD35cad0ab4aEe1A05C67C72cCDf3f0FFEec ; < 3Y87l2Q0vASLe3Uo82718O7PZ0ea8dSx80A1J7z52KbN498daU23juzZGtC7w1oe > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 98,2776322988409 ; 1,75897165222092 ; 54,8722092961266 ; 98,2773822988409 ; 98,2778822988409 ; -4,4 ; -8,3 ; -2 ; 1,1 ; -9,9 ; 7 ; -0,76 ; FutureAU2010 ; CdBcDe75bbe6F9bA4eaA8EeaCf0daaC10B7aF808aDfBdBE8CF25FD1cD4beCabE ; < FsdBN05U12H1qHrv9Fz9Zpl8aCMll67SB9q99hnmI7nO92QYLHKWRbHxLKuVfwPj > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 99,8040496306464 ; 1,96039628534162 ; 49,9101401471257 ; 99,8037996306464 ; 99,8042996306464 ; -5,8 ; -2,1 ; 4,2 ; -1,5 ; 3,1 ; 0,2 ; -0,65 ; FutureOC2039 ; 8C3eD99eCCa80CeF9E3aAbdcc0DafeaBAbFFdF59DD2dfd3c4fDeae477A867Bcc ; < roSgZ13Ylk7np66DCPvI0lMk8hRX1HGu7Z7i56PvutXDyzQ678mKqy61mQKC0rGk > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 101,147366505294 ; 2,21161437944796 ; 44,7346305238537 ; 101,147116505294 ; 101,147616505294 ; 4,2 ; -7,8 ; 5,1 ; -3,1 ; 7,5 ; -4,6 ; -0,5 ; FutureDE2099 ; f0ff8D7B6B952eeaDECAa1Bd1b36cC1988fAdB0Eb2dCA56aFDbBfEfC24A4DEE1 ; < 6r2R2l8l2ET4j08I53mhe3782ilBs8526a94I88TKp5C4ZiLGNE8vIUxM719OzTZ > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 102,86105953055 ; 2,52500754758355 ; 39,7369315109529 ; 102,86080953055 ; 102,86130953055 ; 8 ; -0,2 ; 7,4 ; -7,2 ; -4,6 ; -1,5 ; -0,81 ; FutureFE2113 ; da3dAcA6Fb18Fb93dCefd7DFFeAf685FBBCdAfea76Ed51f14E8EFBfD37ca1fDD ; < R3C6G960ZI17QiJrw5YWoE1He6z4XA1xmmK625NFdC5NE6Ol40BKERp5vt9izNET > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 104,422691515863 ; 2,91794417212341 ; 34,786391156303 ; 104,422441515863 ; 104,422941515863 ; 8,9 ; -0,9 ; 2,5 ; -7,6 ; -8,7 ; -2,1 ; -0,75 ; FutureAP2121 ; DcCbCCb6FFeC7Dd05abcEd5627cD40BBF20FfDE706F2FB22b4f6ABAc0Dfe2A6f ; < Tv39stX84p8hlKx12oYMkV90zcY9EqJhDUHiKRy3LD2t0Rmdi4G5NcLZ2RNWp0U6 > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 106,284260486919 ; 3,41278533020502 ; 30,1429668740792 ; 106,284010486919 ; 106,284510486919 ; 1,5 ; 3,7 ; 9,6 ; -4,8 ; 9,3 ; 5,4 ; 0,57 ; FutureJU2125 ; DAfcEcEDCffb3cbea32cAE3Aef7aFB84E5c7Bd5aEF8f5056db0788EDEC2CBef4 ; < 00lvY6pM7uqGIkW6p83m5q1xUn32kVLTALMQxn740H2wMdPx5qJ8XgPE791B2qSn > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 108,079311831265 ; 4,04028402355945 ; 25,7504242773626 ; 108,079061831265 ; 108,079561831265 ; -2,6 ; 4,5 ; -2,7 ; -3 ; -4,7 ; -4,8 ; 0,92 ; FutureAU2191 ; eAaDD7b05DC75DF646Ade4DF7940e7477569af4CeBFe4cfBcdFE7adDEF6EcEDF ; < N8boCg09YF07wz3Id4lOIiZRs0UV14YF20Yglxqf8bQVWA02q9D3VOloM2GR06yT > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 109,807288812178 ; 4,84081984742778 ; 21,6836139895859 ; 109,807038812178 ; 109,807538812178 ; -5,4 ; -3,3 ; -3,2 ; 6,5 ; -5,5 ; 5,9 ; -0,34 ; FutureOC2156 ; fEFddeBb822ba9e705c88E8e39F94bE57Acc1FBAeF2B7f58fecAd06a5e7A68aC ; < 9E31Dt0H4487kdgiOi1t4pXfnzlZ242FG288b07252YK0UuK06y6Se4yN8FHYO75 > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 111,828533850049 ; 5,87033664144765 ; 18,0497650612541 ; 111,828283850049 ; 111,828783850049 ; -9,3 ; 9,5 ; 6,4 ; -4,8 ; 2,7 ; -9,8 ; -0,12 ; FutureDE2111 ; aFC2dFB951d025Acc0F6Ca5ba7bDEFFcbB6aCCAfd68ddfBCFb101CD8f5caBA0e ; < Kn2l0pnfrp0RLgSG7zI5cMsoeU2g3Nps57Gz37Q1Hi2BWzsDDyk5QNQS3818s7nE > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 113,661869611334 ; 7,20582532470991 ; 14,7736087803252 ; 113,661619611334 ; 113,662119611334 ; 4,4 ; 6,9 ; 8,9 ; 3 ; -7,4 ; 7,9 ; -0,53 ; FutureFE2244 ; D2fe3fA02eaC63Ff4Cfac7DcE7146a8dBFac2faFbA46Bda0dEFB4Cb06Cc2Af77 ; < 9SXn4NOzTD548UCu2bWAww0dF9tF4K0XG16M1jeJbI2Xp44a3A5Jg5izl939Co73 > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 115,59159550309 ; 8,95142119724208 ; 11,91321153994 ; 115,59134550309 ; 115,59184550309 ; -2,8 ; -1,1 ; -3 ; 0,5 ; 7,9 ; 0,1 ; -0,18 ; FutureAP2257 ; Df7bbaE0EDdbe740caabB0fA2ac89C9c3a5DFB2bA9DE1aacc58bdf1DADbdE3Ab ; < t8U4i9eL675C941p2D40Yn8a302y1R3okaHql2qWw0dSmkB3B86zvMSE1sed1wlP > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 117,975212872977 ; 11,2553508558275 ; 9,48170016058578 ; 117,974962872977 ; 117,975462872977 ; -4,8 ; 9,1 ; 6,4 ; -8,8 ; -7,9 ; 5,5 ; 0,55 ; FutureJU2243 ; ea72Ae8C34Edd6f4c0c5A7f994d2Ed0FcbDF4D354eFd9EfFc40aaaAC7eAEEc21 ; < CbKM25OV7Bpb3wpTz8v0vTYOcu8jLQ9XDphpx98O4I64G1o4vXP5WjXH1p4s3043 > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 120,594055013077 ; 14,3231732077031 ; 7,4195068553818 ; 120,593805013077 ; 120,594305013077 ; -7,9 ; -7,3 ; -1,6 ; 5,4 ; -9,3 ; 4,8 ; -0,62 ; FutureAU2211 ; 1b6152be9054b6f2BcDaEcfdc2B70c8C4F977c06eb3dfaa323FDd1cEB9D8f29c ; < LO3n20Hj0ax1nCr8IRF4148w2dC1Us02Bw01Y61V4J3QqiX27tI2S9060UZe3lJl > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 122,711404124748 ; 18,447771771189 ; 5,65182796311443 ; 122,711154124748 ; 122,711654124748 ; 8,9 ; 1,4 ; -1,9 ; 5,2 ; 7,3 ; 1,9 ; -0,88 ; FutureOC2266 ; 3f1fBcAB2D2FDe0fAb9B74cc2bCAfbfceddDA8a7446C1b41aa3FE17dAeC6CA92 ; < 1ktwsvUnMu1Ds7gEcTDy4g235n73ODyi8EOyCN8zQO2KglRQOf8jpqtC0QY7FW1d > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 125,27840794657 ; 24,0494945956456 ; 4,20919088126088 ; 125,27815794657 ; 125,27865794657 ; 7,5 ; 2,7 ; -8 ; -1,1 ; 2,2 ; 0,7 ; -0,97 ; FutureDE2276 ; aD0F83fBdeeDf8b6BDFBCACE27FBecAF9aFFCFEF33d4B1e73A07BDC62db97ecf ; < 69ColboEkY9IkRA5z2UwDn7gv9udHgumrIFKXSdB5333X9t7K1HK22GpLVT6W1I3 > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 127,359472854299 ; 31,73289355884 ; 3,01348438704921 ; 127,359222854299 ; 127,359722854299 ; -9,1 ; 3,8 ; -2,8 ; 2,6 ; -9,6 ; 9 ; -0,84 ; FutureFE2394 ; AF9dCC8aCAeB1DDbd4EC58eAAF4bAfBc9afdFbdDEb0F0fb6eD022DA7F2a3AFBC ; < m9A3Mg9w8qlj0369vpF5X7Pt64p4mPfqZwXBGi9KE98fMolcppnAKo4C2156eTg0 > > // < CALLS ; 1Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 47,81038614992 ; quote ; 53,6714134246759 ; 52,5979851561824 ; 0,0204081632653061 ; 1 ; 49,6460574178253 ; 57,6967694315266 ; -2,7 ; CE2cFceedDB4C91D6Ace4FEbb85e16d8B1F5ee5fdEF29b41DCca23Bccb2d7EFA ; < qc4KRCarCrvhu5zM432Z0gRIHWSnVeTn0s8h0sdIGJe4BH64h7Ld2u1R5UE10QMl > > // < CALLS 52,591424764912 ; quote ; 49,1194092921563 ; 48,1370211063132 ; 0,0204081632653061 ; 3 ; 45,4354535952446 ; 52,803364989068 ; -2,5 ; 6321b74Dd6eC56cfbE41dFc2df4CDdCb16afC6D4bAE517b3f76bAefFFecd1e3B ; < V31K5oQr2Z45X9mPMV685h76CH8i2416Tg4j2AphHP7lKgDn7e32ZGhijKv5M0Kk > > // < CALLS 57,372463379904 ; quote ; 44,6476691224842 ; 43,7547157400345 ; 0,0204081632653061 ; -2,1 ; 41,2990939382979 ; 47,9962443066705 ; 7,9 ; FABFf7ad2ECdF6C5F0012DC7Dd7ABbfa6ADdA8aE15Bf813cCaC8D2c45cCb1f4B ; < xHBCukHz1fAMm7iS7NO296kSi8p98qr5FC9r8WjMpWedN8MMwJAeYxT38m2v5n0J > > // < CALLS 62,153501994896 ; quote ; 40,2955533564589 ; 39,4896422893297 ; 0,0204081632653061 ; 3,6 ; 37,2733868547244 ; 43,3177198581933 ; -8,4 ; Ce68cd6b5DA12B8aB9CeA51DcFbCEa72C57cc0B3cEBcdbfEfEdBDD3a24FAC7fc ; < YCF2sctlNRBAJkupiCSOX2z5KfNxWpqkdxQ2k0k3X611g9cyO1V0u7v2H7c3u4HF > > // < CALLS 66,934540609888 ; quote ; 36,1055124059439 ; 35,383402157825 ; 0,0204081632653061 ; -7,1 ; 33,3975989754981 ; 38,8134258363896 ; 7,9 ; dF16db7ebb6cfAaC7faAFeDA0bADEF0bD2a4CcD0Eb507cdd1BeEDa1e4FAdB702 ; < hutuOtiuK80184o4SQM1OC0blUO1CDFlWxG4X5wXN1NS7QWrbs281kFKN439BumP > > // < CALLS 71,71557922488 ; quote ; 32,1187612069275 ; 31,4763859827889 ; 0,0204081632653061 ; -8,8 ; 29,7098541164079 ; 34,527668297447 ; 6,2 ; 8ef8f27d07cd8EEDe1C4ebDd3dC76FC36FeFCaCf32aDF77d0F4d9EBb13bDeFCe ; < 8SAy4U7vT12a2em95P0am0l9nbmR2Xg28F5p8MJ2I3zBN07dg7ejw93nV2Ju69SF > > // < CALLS 76,496617839872 ; quote ; 28,37139808825 ; 27,803970126485 ; 0,0204081632653061 ; -1,1 ; 26,2435432316312 ; 30,4992529448687 ; -6,4 ; 27aD947F3F5cAA7ec75dafa71cfbCeECDaf9D1DacACF27Cbaaa2e2C16b5C40E5 ; < 5msxV22FVbY114R9pv200FISlpzjfYHMMdFIv4y19BjkQ01z914b2EBM8tC4JC5T > > // < CALLS 81,277656454864 ; quote ; 24,8915992243272 ; 24,3937672398406 ; 0,0204081632653061 ; -7,7 ; 23,0247292825026 ; 26,7584691661517 ; 2,7 ; DdedFCf1ADaEbAD5aCDD7Df8C7d1BB305D4c5DbCb8e08fdD7eB0b92BF85B9EbD ; < v5M1x26eYAKcI6UJF3pRZBqk4a61V7lx2iLSkd9TMjrWXX7Now553u75cdc7meY7 > > // < CALLS 86,058695069856 ; quote ; 21,6981222819644 ; 21,2641598363251 ; 0,0204081632653061 ; -3,5 ; 20,0707631108171 ; 23,3254814531117 ; -4,9 ; BA136feBdECdcf286Ed3aAF5FaEfCbeDDFb7ad06CfcC9CF0ceBEdbe29DB33EBa ; < q119vfN65efX102fU8PLVctYskLs3M5gaupNRcIcrWbfiZ2NO938TS51rvZIMvPF > > // < CALLS 90,839733684848 ; quote ; 18,8000367010218 ; 18,4240359670014 ; 0,0204081632653061 ; 4,7 ; 17,3900339484452 ; 20,2100394535985 ; -2,7 ; 0d7aB9ABD7C7dbcB9Be10cCF7fD9B2D60c47d2Cebc69d40cC65BA38CBabd13E8 ; < GMM2y9ydSuANgNYI6LszMNtR28zaW55ch9CE6kF9R8mzc3Klid075UNydd99f35l > > // < CALLS 95,62077229984 ; quote ; 16,1974130106331 ; 15,8734647504204 ; 0,0204081632653061 ; 9,2 ; 14,9826070348356 ; 17,4122189864306 ; -3,8 ; 8a0Cf0b4F1a16A1ccD0f4d227b6bcd7E2ecDB9fBe9E4cAD7CDeACBdE9fef20FC ; < eX4X8U5lZxfUB5TTvEs4dXIL7L3sbu1ihHx3d4YuF9bsd6v9QK2Mt480Y9rxtK2J > > // < CALLS 100,401810914832 ; quote ; 13,8826388518815 ; 13,6049860748439 ; 0,0204081632653061 ; 6,4 ; 12,8414409379904 ; 14,9238367657727 ; 4,1 ; 49aF8a2Ce35eEB7b1CBB130C7cDEcFc50DEACd7fc549C33Eb5231bFCDeA2ae9a ; < Q0zr2ifO05wa9Wx8IvN80Dd9X93gQ6326AD9bi7Z7rV5mAM9wBKUd7B3CUC1r452 > > // < CALLS 105,182849529824 ; quote ; 11,8420480713358 ; 11,605207109909 ; 0,0204081632653061 ; -2,9 ; 10,9538944659856 ; 12,7302016766859 ; -7,7 ; A6df75F2AfFDc27eeDFAC7DBb67edEeB102FcBE409DFea1917eE4AAd65738CeC ; < DcF2ssS6n5ye7RS5b86dBsgz0VObnBNTKg13TE1aa9sb4QQ4g4jQ74DgOvFjXhPf > > // < CALLS 109,963888144816 ; quote ; 10,0576120973883 ; 9,85645985544054 ; 0,0204081632653061 ; 8,1 ; 9,30329119008418 ; 10,8119330046924 ; 5,3 ; 7FFbcceE36Ef164ADD06dc8cB238E9EC1DDDfcE0FAE0bd4dAfb4fAeee65faEb0 ; < 6Vr4W88SH09r6E98ypAWTU7jX8Sgff46rXB7uK21AKPS2m9Gs43qsX5UaaPkPV35 > > // < CALLS 114,744926759808 ; quote ; 8,50851942129926 ; 8,33834903287327 ; 0,0204081632653061 ; -7,1 ; 7,87038046470181 ; 9,1466583778967 ; -0,4 ; fdDA3caEbe7CEef350df4c9fD09fcBf4DCA5B30F514FCF283a7B5f2adcCaA846 ; < DnM9Z2x289TkuLh7F8vRs6ImVqMPv0Rq9kDMm06am54915y1R6541P5Aighv7330 > > // < CALLS 119,5259653748 ; quote ; 7,17254050243703 ; 7,02908969238829 ; 0,0204081632653061 ; 1,2 ; 6,63459996475425 ; 7,71048104011981 ; 5,1 ; 4cefD4f7D0bC3F11DceABaA0aEEE98E4E55B8afabd673A41ea53e8AbBedBCe0B ; < QK0X4OD4oYiy2A5p3ESq596wmD5sX9J05YCK5BmU804H9A3s1M6Zod8tHPEEht28 > > // < CALLS 124,307003989792 ; quote ; 6,02713272602194 ; 5,9065900715015 ; 0,0204081632653061 ; -6,3 ; 5,57509777157029 ; 6,47916768047358 ; 8,9 ; 6Be7c8AA9Ce7bB7E1Aeaaaf78D6cC3Dd8a8ad9d5Fdf4D89c3ea5fA6ddeE2E6f7 ; < l6U7r0nwcXwu92U5W17M92c147E7B9o9ygx58IUKC4SP2ZC7YXeKMp6RaEPQbH9Q > > // < CALLS 129,088042604784 ; quote ; 5,05028078983101 ; 4,94927517403439 ; 0,0204081632653061 ; -8,6 ; 4,67150973059368 ; 5,42905184906834 ; 9,1 ; 1D3bA362DbbD4fe92dfe3Cc6EDcfD223eDCFc3fbeCa0CbecFc4178CABaf2e7eE ; < eaxMj4F7C5G39rQO9YUx69D83rBJ6q6cRAfUEvzFo36bS0vw6Y7VJeG0NoD9dzNQ > > // < CALLS 133,869081219776 ; quote ; 4,22109351113971 ; 4,13667164091692 ; 0,0204081632653061 ; 0,7 ; 3,90451149780423 ; 4,53767552447519 ; -6,2 ; F426ae62C075Ee30c2AEcC061BFeD4c3DCFbdC3cfa4ea7eAEEEb2FCCAe1ED853 ; < C9O9KuLNQNc0h6H38BNJZ23g17U9GaiHPX812809q633BVJV84C59CbrH0Tt7z38 > > // < CALLS 138,650119834768 ; quote ; 3,5201916119162 ; 3,44978777967788 ; 0,0204081632653061 ; -4,4 ; 3,25617724102249 ; 3,78420598280992 ; 9,7 ; b4Dc2F5FCF8DBaf73cF96b04eCef9C6BCdea7E55Fe6B2EeCeC3d67B60dDB3FC7 ; < UFqetNIUOa8mt9HD9KUVxRbC4l1503GgZ80Qym6M0qB5eery97zXz3Km80l5q573 > > // < CALLS 143,43115844976 ; quote ; 2,92992596859076 ; 2,87132744921894 ; 0,0204081632653061 ; -9,8 ; 2,71018152094645 ; 3,14967041623507 ; 2,5 ; 0EDafbE8291d8FBDBbcaCf97C8e6CbeaDDCdBe43BC1EC7c8f69dcFe32C941Df3 ; < Ixgg7Q4M260aW3GEBTY8087NZ15XXPw1XQ7a2QJ9ge7027EVm9Hoi4j0OVk3sfrD > > // // < PUTS ; 1Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 47,81038614992 ; quote ; 0,0585877411035796 ; 0,057415986281508 ; 0,0204081632653061 ; -4 ; 0,0541936605208111 ; 0,062981821686348 ; -0,5 ; 3aCED25D3fb671Ff5Ca2cB5207ab7DdBfABfDdCC531b7dEdECCfbC6D5CEE4fDc ; < ta484ar5dQyg309pBf2Hp7E53wNa9MAp3yOgc4O47uVIc9s3255m0b1fJv01oKpK > > // < PUTS 52,591424764912 ; quote ; 0,145301040226713 ; 0,142395019422178 ; 0,0204081632653061 ; -5,3 ; 0,134403462209709 ; 0,156198618243716 ; -5,3 ; 8dE46d3c6EEf9aDfcF4cD2ECeEFa0eeaDbffCd3Bbe2af702866fFAec7B071dDF ; < AKfK9s3490Oj78U4wUbE6r849D1b8DO2o034FaBwkgDy2x28f3a4569tM97F1XO3 > > // < PUTS 57,372463379904 ; quote ; 0,312278302197384 ; 0,306032736153437 ; 0,0204081632653061 ; -1,3 ; 0,288857429532581 ; 0,335699174862188 ; -1,2 ; 58DFCB9Ef3a6E8DF027fdf89FcaB4e79e70541B8c148FC7C4E0cF838DaC397bC ; < 30g7m4V69d7cvJZ9u6TgWRl0Koe5FOk7xqkxoG1eg3j4GhxFuCl159BYA5s9nRGw > > // < PUTS 62,153501994896 ; quote ; 0,598879967814781 ; 0,586902368458486 ; 0,0204081632653061 ; 0,9 ; 0,553963970228673 ; 0,64379596540089 ; -8,9 ; abd0CA59EaF9BDfb246cbd1BCdeffc25cdEbE0F39faD8cCdBd7d573fd59C2E8f ; < y2IiXmEV3J15Xymr6ehBa7CPc4JNCIW2mGs1040a389vMh28vh5vqrm4zLXaPPiN > > // < PUTS 66,934540609888 ; quote ; 1,04755644894257 ; 1,02660531996372 ; 0,0204081632653061 ; 1,4 ; 0,968989715271879 ; 1,12612318261327 ; -3,3 ; efE464cE2aFcDABb5bc6b7F6e97B1D8AF15EAd2fBc510A5CeeCBdea2DDfBB4Dd ; < p0Nc41VXcv2E0Ob7F08yQyQR6uJJ4edd5qPzwwU15PKL8UNXo2F4W0343fm8fP4E > > // < PUTS 71,71557922488 ; quote ; 1,69952268156894 ; 1,66553222793756 ; 0,0204081632653061 ; 1,5 ; 1,57205848045127 ; 1,82698688268661 ; 0,5 ; DA99b7d71Ee493255CDB3caE6ad3cfBecdcaB8acaEDE0aA5ED8FcEDFA4D41dF7 ; < 5d6DAKq2Sv05YTe4VMo4AhQ7grG5iZOZ3Bnl0D6tCWgDBSxl3NwpX5T2bVbV6naC > > // < PUTS 76,496617839872 ; quote ; 2,59087699453423 ; 2,53905945464354 ; 0,0204081632653061 ; 8 ; 2,39656121994416 ; 2,78519276912429 ; -9,8 ; EDBAdA3aBFCF775dEfBfB5Aa2ECBbFADBEd415dEDe7DC663EebbDAFCAeCCeFED ; < tna4GZQFBD2LH00qqn3DUovt46BQ4Ezc99mk9y2w9UM910s3hWUEz96hKtK0uOtM > > // < PUTS 81,277656454864 ; quote ; 3,74979556225415 ; 3,67479965100907 ; 0,0204081632653061 ; -5,7 ; 3,46856089508509 ; 4,03103022942321 ; 6,2 ; a3Cc6AdaAdb1abAAfB4cdAeEbd8C42BD0faFfD38A6B7FaFff62F9EFDae5A7e87 ; < TDdI2Qo0E9gSPXLIY4tV9kw3ALP8UbLgtT9LPlSh0KN4ZHk02m3uJfm5b8RNj90N > > // < PUTS 86,058695069856 ; quote ; 5,19503605153417 ; 5,09113533050349 ; 0,0204081632653061 ; 9,9 ; 4,80540834766911 ; 5,58466375539924 ; 9 ; c6f1Dbd67bDacab75FE24BFbfc9eA3bdD1eeBbC5021ed0bd8f1dFB52AbC5CD0d ; < gI74qOUk5Ci29u10eUzb2qVqIimB9x236xZ878woU0lq4o607N9uKU4AvN0pDN1n > > // < PUTS 90,839733684848 ; quote ; 6,93566790223434 ; 6,79695454418966 ; 0,0204081632653061 ; 3,8 ; 6,41549280956677 ; 7,45584299490192 ; 6,2 ; Dd018e62cFfdb8bb6DDc1DBECD22eBBbE9FFad656bBc6bfCc8acC605beb022Ec ; < 0O2ULZ6Omp7AtHLzzd6YEWT7ri8myQZ6pG7EjQ19J5QZZunAjr36YqgGt8cg5nd8 > > // < PUTS 95,62077229984 ; quote ; 8,97176164348836 ; 8,7923264106186 ; 0,0204081632653061 ; 6 ; 8,29887952022674 ; 9,64464376674999 ; 2,3 ; 680cB9EAc9dCc2aAbDF881b3DEc8ECCFb5ea5b42Bf0fcbd8dDd4ED446bbdA7c5 ; < I3b657vD68JXTiv8c2HLn10JsZPt6m1xO9x8D45sHrVA8pNlFaj49bRLPt95QIcG > > // < PUTS 100,401810914832 ; quote ; 11,2957049163796 ; 11,069790818052 ; 0,0204081632653061 ; -9,1 ; 10,4485270476511 ; 12,1428827851081 ; -8,4 ; 9Ceaaa3bBEeebF6FCcd6ACA62FDC4A3dAaFfFFbfFaafadC4BD800bE4aDA7B0bc ; < LRBn8mrdMmuGFPbfR7aHYWRT824zWyXhH7D34WwxY3bFA41EpI0H64F0vZYU1psE > > // < PUTS 105,182849529824 ; quote ; 13,8938315674766 ; 13,6159549361271 ; 0,0204081632653061 ; 8,4 ; 12,8517941999158 ; 14,9358689350373 ; 4,5 ; 0ddcabC9BC4Ef0Cbd473D29Da4b40FD6c9FEdCA1dc95CAFcFA8E4CDbd30DA6c2 ; < r1Dpe20528g8v2Yh0L50r7eZ1510P33z6zPHVWh48W97vslRpsbbymV4or3ii0kM > > // < PUTS 109,963888144816 ; quote ; 16,7481130251719 ; 16,4131507646684 ; 0,0204081632653061 ; -0,5 ; 15,492004548284 ; 18,0042215020598 ; -3,8 ; FbBEFA9eFaaDF82bEbc3FCdeEA2fb57fbeEada9BdD3A1aC8CbfED8f1a7a71Aad ; < BgiAeWVMNpfXvzUK8KOEiYQd5DVHig5eIRW7iwOFkoHTOd77ods9gKdu7nfu65g3 > > // < PUTS 114,744926759808 ; quote ; 19,8377377807256 ; 19,4409830251111 ; 0,0204081632653061 ; -4,8 ; 18,3499074471712 ; 21,32556811428 ; -6,1 ; 02ca58CaBAa8BaCE09A8d72acd8aFe6eFCEcE674322CCb6EBCcEdbA6df7AcE3c ; < qJeOsu1y1uTo78x6dM2Gx26Gin2r90BB2LhBj1W3U06f3ay5r0P80wWMunMIV58q > > // < PUTS 119,5259653748 ; quote ; 23,1404762935061 ; 22,677666767636 ; 0,0204081632653061 ; -4,2 ; 21,4049405714932 ; 24,8760120155191 ; 5,2 ; da9Db7edCBc4B0c39fc5e9df7ad471aEA1C4bCC620Ad0bdAf64Ffed5ba6DCd9a ; < v31ozE6ic21778ze7t8Y45r8NgEMvc0xxrsGuDsNWVQ6al8aw4Bi348JAz8oO854 > > // < PUTS 124,307003989792 ; quote ; 26,6337859487338 ; 26,1011102297591 ; 0,0204081632653061 ; 0,8 ; 24,6362520025788 ; 28,6313198948888 ; 9,4 ; AEA7DA85DCC4aCEE2EbA41ef6Fce3Baf4aD0bfb6615B99FAeCcEea12cDF1dEd9 ; < 537rT3nn34Pgkf2LG8xgXjzvVBOlA8696ydf105O2y2HLkOA6lMQVVU4iu4T6X58 > > // < PUTS 129,088042604784 ; quote ; 30,2956514441856 ; 29,6897384153019 ; 0,0204081632653061 ; -0,9 ; 28,0234775858717 ; 32,5678253024996 ; -0,9 ; Dc0BF7e709B5E2fa2ccCD2A0FdFA8975eea8f97f3ACFA6Bb76ffC02CC81e2d2e ; < M0qG0G0R9MllqPOGRZ6FgdsN7AENtm81bB2c2oopH2f78YPu4DS3LH4vOr4G5PaM > > // < PUTS 133,869081219776 ; quote ; 34,1051815971371 ; 33,4230779651944 ; 0,0204081632653061 ; 8,5 ; 31,5472929773518 ; 36,6630702169224 ; -3,7 ; 8213bFbAAA96DaaE2D3d00E8c80eEff9fFD2aD8a46Bc5Df8e9dAE7C0911c3e80 ; < 81Ir6CQ5JD5tu74IRL9R8ja8dNj2EYyVjo1Sc1UE7NN97l9VSQezuZAqfBV61w77 > > // < PUTS 138,650119834768 ; quote ; 38,0429971295564 ; 37,2821371869653 ; 0,0204081632653061 ; 8,1 ; 35,1897723448397 ; 40,8962219142731 ; -8,6 ; E5A3cCefabe1ED1Df3815FFcBaBBDcfAAa6F3AfaDbEEE7cb3E88d90f1Af7B5Ab ; < 7n0ND6Gw28Kru07O8Kp69nni9O116d8xhSeD5Se5O7nx8V86PQDk5c229O06c75S > > // < PUTS 143,43115844976 ; quote ; 42,0914489178737 ; 41,2496199395162 ; 0,0204081632653061 ; 2 ; 38,9345902490332 ; 45,2483075867142 ; 3,6 ; 2D8DBbE93DB8EbcbE7EC1FBcCE5558E4d22fEcF444E3EECCcCec738EC6A3CfFC ; < EnsPx917Qc08b5fazeTZFGfo8cnoeqX36RSQW637yFoMg1mk7CW651xTyq8q146Z > > // Futures_Eurosibenergo_hydrogeneration_LLC // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 88,946246 ; 1,14 ; 77,0230228070175 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; a972FB10dDcd5CbBE0AAaBc8C6bdffb28aD4cbd4a8A0de5A4dC25291ff4DaAAB ; < zvClZ3ZQhz6HTnXpEmy2cFJj0w54Y6ElSerqMlzlW4NxBtZk4XskLTtx36x8dAKT > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 88,9523013634878 ; 1,14008778 ; 77,0223268102109 ; 88,9520513634878 ; 88,9525513634878 ; -8,2 ; -2,4 ; 9 ; 5,8 ; -4,3 ; 3,6 ; -0,56 ; Future21AP19 ; 4EDbC43b7AdfCCd4aEbFED011aEEDBabd61ac5d0BCB5a2E6c097f7ECaF1eE6A3 ; < D90d3oT5UNNp139ra66J68G8zW01351TK4GjC16wWpgK8Z5M878kK34pX3EOmB2j > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 89,9145580176993 ; 1,15381372898453 ; 76,9281401832796 ; 89,9143080176993 ; 89,9148080176993 ; 3,9 ; -7,2 ; 9,4 ; 1,1 ; -0,5 ; 8,4 ; -0,29 ; FutureJU1912 ; f76bdF0F58Ac76bB6Ff6F229Fc2Cce9aeeCFBfBC858Ed03aDda3E91CbAb4Ad3E ; < 7M3yKtfh2PfJwyZ6s4xT2082Aqy9kWXU5XietEX3uxuQMnK0ATv8ZPais0Bd8uBL > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 90,9486428007766 ; 1,18185233402553 ; 75,9543200807455 ; 90,9483928007766 ; 90,9488928007766 ; 4 ; -3,4 ; -0,2 ; 2,3 ; -2,5 ; 3,4 ; -0,92 ; FutureAU1974 ; 5D0e9A5ffcBc3fdBf9FEAB8BBc4Eb8eeBacAAAbeA814EFF07bDeEA1FAacCEdfA ; < mb4ELqStLV619lKlA1vB8nG2tGwzvi7O7EJ8wRQL8yI9lVFW1T45f4bG9SHdl5dR > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 92,0052462605474 ; 1,22526894133997 ; 74,0898379582931 ; 92,0049962605474 ; 92,0054962605474 ; 7 ; 2,6 ; 7,8 ; -1 ; 5,6 ; -3,3 ; -0,07 ; FutureOC1958 ; B97ff8Be10ac97FebCc8Ed27bAfcaCAfBE11589EcA753ac4f0c9adAc4DFEFB4B ; < PN86638rM1l3qA59tqp2ID6G7EB4RdQs58m78sNTc1OKm5rz499YqSzr1D2KYUEt > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 93,1659176345358 ; 1,28574572300012 ; 71,4606086319663 ; 93,1656676345359 ; 93,1661676345358 ; 6,1 ; 4 ; -4,1 ; -5,7 ; 8,9 ; 7,5 ; -0,33 ; FutureDE1972 ; Ea5DEBDCdf6E04134c0DccdCdceAdcacd14B0ecfDe3BA9EF6Afff4A62Ffa754B ; < yRjWGicicY220wT04O327dQyu2cQ6etwxSB9fI5fZDWE3159HVHk75l7YQHHX98F > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 94,3571798915937 ; 1,3655883804194 ; 68,0963552740649 ; 94,3569298915937 ; 94,3574298915937 ; 5,7 ; 1,9 ; -6,5 ; -2,4 ; -9 ; -9,2 ; -0,92 ; FutureFE2016 ; beB9cafc5f74c6BcBd2Bfadc7fb6c6B7cd7eDC8a3EC5e5eFdBaD1FA1fCeFcD9F ; < 5Uc8UUc65RI8k57gG7UXT1948H7uN6eT1e4f75dar464AUv3b24FT7nTPziDL497 > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 95,62077229984 ; 1,46806213248607 ; 64,13400910213 ; 95,62052229984 ; 95,62102229984 ; 4,7 ; -7,8 ; 6,5 ; -5,5 ; 7,7 ; 9 ; -0,09 ; FutureAP2078 ; 5Dfc0CA2FD9C8137ECEBAd77Ad8FDAdAa56224Ad891EDb5AbEf1ADA2C3C488E4 ; < ZAuc3uC5okd3a5LfknHNk1Uf60Fc4z1O2fu2z8e8pqa3yt4y587i7N92lE2w0k7V > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 96,9988918684236 ; 1,59740994169548 ; 59,7226043463018 ; 96,9986418684236 ; 96,9991418684236 ; -3,4 ; -2,9 ; -8,5 ; 9,7 ; 4,2 ; 1,4 ; -0,53 ; FutureJU2017 ; a98aEcad4A221C2c7bCafcB19bDabD35cad0ab4aEe1A05C67C72cCDf3f0FFEec ; < 3Y87l2Q0vASLe3Uo82718O7PZ0ea8dSx80A1J7z52KbN498daU23juzZGtC7w1oe > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 98,2776322988409 ; 1,75897165222092 ; 54,8722092961266 ; 98,2773822988409 ; 98,2778822988409 ; -4,4 ; -8,3 ; -2 ; 1,1 ; -9,9 ; 7 ; -0,76 ; FutureAU2010 ; CdBcDe75bbe6F9bA4eaA8EeaCf0daaC10B7aF808aDfBdBE8CF25FD1cD4beCabE ; < FsdBN05U12H1qHrv9Fz9Zpl8aCMll67SB9q99hnmI7nO92QYLHKWRbHxLKuVfwPj > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 99,8040496306464 ; 1,96039628534162 ; 49,9101401471257 ; 99,8037996306464 ; 99,8042996306464 ; -5,8 ; -2,1 ; 4,2 ; -1,5 ; 3,1 ; 0,2 ; -0,65 ; FutureOC2039 ; 8C3eD99eCCa80CeF9E3aAbdcc0DafeaBAbFFdF59DD2dfd3c4fDeae477A867Bcc ; < roSgZ13Ylk7np66DCPvI0lMk8hRX1HGu7Z7i56PvutXDyzQ678mKqy61mQKC0rGk > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 101,147366505294 ; 2,21161437944796 ; 44,7346305238537 ; 101,147116505294 ; 101,147616505294 ; 4,2 ; -7,8 ; 5,1 ; -3,1 ; 7,5 ; -4,6 ; -0,5 ; FutureDE2099 ; f0ff8D7B6B952eeaDECAa1Bd1b36cC1988fAdB0Eb2dCA56aFDbBfEfC24A4DEE1 ; < 6r2R2l8l2ET4j08I53mhe3782ilBs8526a94I88TKp5C4ZiLGNE8vIUxM719OzTZ > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 102,86105953055 ; 2,52500754758355 ; 39,7369315109529 ; 102,86080953055 ; 102,86130953055 ; 8 ; -0,2 ; 7,4 ; -7,2 ; -4,6 ; -1,5 ; -0,81 ; FutureFE2113 ; da3dAcA6Fb18Fb93dCefd7DFFeAf685FBBCdAfea76Ed51f14E8EFBfD37ca1fDD ; < R3C6G960ZI17QiJrw5YWoE1He6z4XA1xmmK625NFdC5NE6Ol40BKERp5vt9izNET > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 104,422691515863 ; 2,91794417212341 ; 34,786391156303 ; 104,422441515863 ; 104,422941515863 ; 8,9 ; -0,9 ; 2,5 ; -7,6 ; -8,7 ; -2,1 ; -0,75 ; FutureAP2121 ; DcCbCCb6FFeC7Dd05abcEd5627cD40BBF20FfDE706F2FB22b4f6ABAc0Dfe2A6f ; < Tv39stX84p8hlKx12oYMkV90zcY9EqJhDUHiKRy3LD2t0Rmdi4G5NcLZ2RNWp0U6 > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 106,284260486919 ; 3,41278533020502 ; 30,1429668740792 ; 106,284010486919 ; 106,284510486919 ; 1,5 ; 3,7 ; 9,6 ; -4,8 ; 9,3 ; 5,4 ; 0,57 ; FutureJU2125 ; DAfcEcEDCffb3cbea32cAE3Aef7aFB84E5c7Bd5aEF8f5056db0788EDEC2CBef4 ; < 00lvY6pM7uqGIkW6p83m5q1xUn32kVLTALMQxn740H2wMdPx5qJ8XgPE791B2qSn > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 108,079311831265 ; 4,04028402355945 ; 25,7504242773626 ; 108,079061831265 ; 108,079561831265 ; -2,6 ; 4,5 ; -2,7 ; -3 ; -4,7 ; -4,8 ; 0,92 ; FutureAU2191 ; eAaDD7b05DC75DF646Ade4DF7940e7477569af4CeBFe4cfBcdFE7adDEF6EcEDF ; < N8boCg09YF07wz3Id4lOIiZRs0UV14YF20Yglxqf8bQVWA02q9D3VOloM2GR06yT > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 109,807288812178 ; 4,84081984742778 ; 21,6836139895859 ; 109,807038812178 ; 109,807538812178 ; -5,4 ; -3,3 ; -3,2 ; 6,5 ; -5,5 ; 5,9 ; -0,34 ; FutureOC2156 ; fEFddeBb822ba9e705c88E8e39F94bE57Acc1FBAeF2B7f58fecAd06a5e7A68aC ; < 9E31Dt0H4487kdgiOi1t4pXfnzlZ242FG288b07252YK0UuK06y6Se4yN8FHYO75 > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 111,828533850049 ; 5,87033664144765 ; 18,0497650612541 ; 111,828283850049 ; 111,828783850049 ; -9,3 ; 9,5 ; 6,4 ; -4,8 ; 2,7 ; -9,8 ; -0,12 ; FutureDE2111 ; aFC2dFB951d025Acc0F6Ca5ba7bDEFFcbB6aCCAfd68ddfBCFb101CD8f5caBA0e ; < Kn2l0pnfrp0RLgSG7zI5cMsoeU2g3Nps57Gz37Q1Hi2BWzsDDyk5QNQS3818s7nE > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 113,661869611334 ; 7,20582532470991 ; 14,7736087803252 ; 113,661619611334 ; 113,662119611334 ; 4,4 ; 6,9 ; 8,9 ; 3 ; -7,4 ; 7,9 ; -0,53 ; FutureFE2244 ; D2fe3fA02eaC63Ff4Cfac7DcE7146a8dBFac2faFbA46Bda0dEFB4Cb06Cc2Af77 ; < 9SXn4NOzTD548UCu2bWAww0dF9tF4K0XG16M1jeJbI2Xp44a3A5Jg5izl939Co73 > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 115,59159550309 ; 8,95142119724208 ; 11,91321153994 ; 115,59134550309 ; 115,59184550309 ; -2,8 ; -1,1 ; -3 ; 0,5 ; 7,9 ; 0,1 ; -0,18 ; FutureAP2257 ; Df7bbaE0EDdbe740caabB0fA2ac89C9c3a5DFB2bA9DE1aacc58bdf1DADbdE3Ab ; < t8U4i9eL675C941p2D40Yn8a302y1R3okaHql2qWw0dSmkB3B86zvMSE1sed1wlP > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 117,975212872977 ; 11,2553508558275 ; 9,48170016058578 ; 117,974962872977 ; 117,975462872977 ; -4,8 ; 9,1 ; 6,4 ; -8,8 ; -7,9 ; 5,5 ; 0,55 ; FutureJU2243 ; ea72Ae8C34Edd6f4c0c5A7f994d2Ed0FcbDF4D354eFd9EfFc40aaaAC7eAEEc21 ; < CbKM25OV7Bpb3wpTz8v0vTYOcu8jLQ9XDphpx98O4I64G1o4vXP5WjXH1p4s3043 > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 120,594055013077 ; 14,3231732077031 ; 7,4195068553818 ; 120,593805013077 ; 120,594305013077 ; -7,9 ; -7,3 ; -1,6 ; 5,4 ; -9,3 ; 4,8 ; -0,62 ; FutureAU2211 ; 1b6152be9054b6f2BcDaEcfdc2B70c8C4F977c06eb3dfaa323FDd1cEB9D8f29c ; < LO3n20Hj0ax1nCr8IRF4148w2dC1Us02Bw01Y61V4J3QqiX27tI2S9060UZe3lJl > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 122,711404124748 ; 18,447771771189 ; 5,65182796311443 ; 122,711154124748 ; 122,711654124748 ; 8,9 ; 1,4 ; -1,9 ; 5,2 ; 7,3 ; 1,9 ; -0,88 ; FutureOC2266 ; 3f1fBcAB2D2FDe0fAb9B74cc2bCAfbfceddDA8a7446C1b41aa3FE17dAeC6CA92 ; < 1ktwsvUnMu1Ds7gEcTDy4g235n73ODyi8EOyCN8zQO2KglRQOf8jpqtC0QY7FW1d > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 125,27840794657 ; 24,0494945956456 ; 4,20919088126088 ; 125,27815794657 ; 125,27865794657 ; 7,5 ; 2,7 ; -8 ; -1,1 ; 2,2 ; 0,7 ; -0,97 ; FutureDE2276 ; aD0F83fBdeeDf8b6BDFBCACE27FBecAF9aFFCFEF33d4B1e73A07BDC62db97ecf ; < 69ColboEkY9IkRA5z2UwDn7gv9udHgumrIFKXSdB5333X9t7K1HK22GpLVT6W1I3 > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 127,359472854299 ; 31,73289355884 ; 3,01348438704921 ; 127,359222854299 ; 127,359722854299 ; -9,1 ; 3,8 ; -2,8 ; 2,6 ; -9,6 ; 9 ; -0,84 ; FutureFE2394 ; AF9dCC8aCAeB1DDbd4EC58eAAF4bAfBc9afdFbdDEb0F0fb6eD022DA7F2a3AFBC ; < m9A3Mg9w8qlj0369vpF5X7Pt64p4mPfqZwXBGi9KE98fMolcppnAKo4C2156eTg0 > > // < CALLS ; 2Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 52,2113457579316 ; quote ; 57,5879066477486 ; 56,4361485147936 ; 0,0204081632653061 ; 4,8 ; 53,124843882548 ; 62,0509694129491 ; -6 ; 9eA12a75DEa9b7C5cDfCdcFD62b5FDbAb6eC0645edcbfe6Cda9fdF4Feb63FbB1 ; < W0OEkMUjF24dLTeze96bjICZfQIO1AHBR5n68PHmKmC4944Ui74F5T86x0Q1768k > > // < CALLS 57,4324803337247 ; quote ; 53,6044676860604 ; 52,5323783323391 ; 0,0204081632653061 ; -1,6 ; 49,4501214403907 ; 57,75881393173 ; 8,6 ; 9F3bC5e6CdbD8FE3D460de26bc8EfCC3Ea4f25b82eab0BE1fdD215f76caadF81 ; < Aq0qO8HbAI535npnFNwa45Lj6tDku0wev4Z6qr3p0zOGG7H14qG8o7wl42IScST1 > > // < CALLS 62,6536149095179 ; quote ; 49,749238783706 ; 48,7542540080319 ; 0,0204081632653061 ; -4,3 ; 45,8936727779688 ; 53,6048047894432 ; 4,8 ; FDeEb9F4AA3CDFaFb0efD86DEbfFaaddBC0f3DCBD7CeAE0AcfFe73eAbFB8d1Ad ; < X1PMN8y6f386Lt8G75wK0r5eXLNq60kIDPHsx23808kbNl0veyt06Zn7TK4uYBQl > > // < CALLS 67,874749485311 ; quote ; 46,043352958261 ; 45,1224858990958 ; 0,0204081632653061 ; -1,2 ; 42,4749931039958 ; 49,6117128125262 ; -2,3 ; D5aEfF8efAe7c1A5cA2A5a9Aead2bAecabBF2D1d45a23fc8cEEeBfcE9698cBEc ; < Ks616KW4u6P9qITpCGuz5O64H391fIErER170HHGEWi3GWC4cKX1yYV7AxPhn89r > > // < CALLS 73,0958840611042 ; quote ; 42,5041624904487 ; 41,6540792406398 ; 0,0204081632653061 ; 6,2 ; 39,2100898974389 ; 45,7982350834585 ; 0,4 ; d76bB5AfDEbFBC0CcFA9B2e2Ba51deDe3DfaF96adCb2B3326b3AEB12C837B00f ; < 7h4QLAp1QEbnKR6zR2UmyB8yP05dlX3nd2PKCXhvj0Cyq61g12VDBH4D4dTuX8KB > > // < CALLS 78,3170186368973 ; quote ; 39,1447745021317 ; 38,3618790120891 ; 0,0204081632653061 ; -8,5 ; 36,1110544782165 ; 42,1784945260469 ; 1,2 ; d1E2Fb35C1CffD7FFBEAAcccbcAf7BFBfe3BbE2fa16BEFCdEbAeCb61177fDCF8 ; < wCL93ENMV7020369fjAslV8C572avydUTdKwxt6xWE80v2sAhP30DFdoHUuiBpbk > > // < CALLS 83,5381532126905 ; quote ; 35,9740072988448 ; 35,2545271528679 ; 0,0204081632653061 ; -1,7 ; 33,1860217331843 ; 38,7619928645052 ; 0,8 ; 4d29cAaFA7C4FA1DDDea0d4BAAF5EFcc4a0AA3AEdf4BcC6eADEd60ab71Fda4f4 ; < pTTgjc6gFxxMHXzYZW8qC3xpJv9kr26Xk5Hs0SsOdfWa3o3M9LA4SUiI1x1uXuIb > > // < CALLS 88,7592877884836 ; quote ; 32,9966443893104 ; 32,3367115015242 ; 0,0204081632653061 ; 1 ; 30,4394044491389 ; 35,553884329482 ; 9,5 ; 5DDcACFFFCed9aaCF4Cc53Eaf5eBB20c9bbDA7ecaddD287CFeca2A5d5e9DFa6E ; < 66s5HOmTY0kN2vKlC04e8XxfCt94T79Hujy9GxraQh2UHQypIONwSs6hBj418P2D > > // < CALLS 93,9804223642768 ; quote ; 30,2138736853229 ; 29,6095962116165 ; 0,0204081632653061 ; 9,6 ; 27,8722984747104 ; 32,5554488959354 ; 2 ; DbDDebDEDaBac5c76ccBeA1F8F147AfDBF0bbcE6ffaa6e97209cC53CC5ACACDA ; < IAXQxHclsRq9488tzwfdov7aYw4YgetFR302rk0252x2e8R7az225CGRI4kpeBf5 > > // < CALLS 99,20155694007 ; quote ; 27,623821116272 ; 27,0713446939466 ; 0,0204081632653061 ; 4 ; 25,4829749797609 ; 29,7646672527831 ; 8,1 ; 46c77DFbD1bBC1BfE9Cb7AD647aEF2FaeE336Ec4f8ddC5eeaac712bbFDfBA4e8 ; < bv22cK6099tkD47gZ7kW5ksvy9etH1SAAQi016Bh7U9Q6SwqwxBIs0iq70oSoFMq > > // < CALLS 104,422691515863 ; quote ; 25,2221118387227 ; 24,7176696019483 ; 0,0204081632653061 ; -6,2 ; 23,2673981712217 ; 27,1768255062238 ; 6,5 ; 2cfb53fFbf20ffFCBf2aF9BD3Ea4F1C53bAAb6ACc95b1caCF99d6EeEBDbe6b6b ; < 973s86tdDG7vus94Uyv4a5y5rsq4G6U525nZn16Q63o23Mi5BM894mqb6lCziY29 > > // < CALLS 109,643826091656 ; quote ; 23,0024138329086 ; 22,5423655562505 ; 0,0204081632653061 ; -1,4 ; 21,2197267608582 ; 24,7851009049591 ; -5,6 ; Fed2aa56426CFbCBFFEBe7dbdED1DaA3B3F9cB0d7b4bf6EC8d1bAAeCeBdA95CA ; < 4banbYihaChD878kEr0ziuFZ3Foj2z95qD80j6ayzvqqLY8OacEO98W8C6Rl0mml > > // < CALLS 114,864960667449 ; quote ; 20,9569361662668 ; 20,5377974429415 ; 0,0204081632653061 ; -9,8 ; 19,3327736133811 ; 22,5810987191525 ; -3,9 ; E3279aCC00Ef9144Cb5c4B3EC9144359Ac6Ea2772b600767AebDdCC6C4E4ACbC ; < N8583KAATSB5OvtQA3LT7MDUXpS0ky8Q1xo7Frj54IxO7VOSWsdf8Zq0qoSJ48nk > > // < CALLS 120,086095243243 ; quote ; 19,0768673163296 ; 18,695329970003 ; 0,0204081632653061 ; 6,4 ; 17,598410099314 ; 20,5553245333451 ; -6,3 ; dE0BEFBc1abFccC50a0Ea1dFde7da83e5B8CaF5228aefbEAEB9bcc2C0CCa843F ; < 1USTI330qe7GTk052N22Iy61DbbsjqmT69FWHSml3FR6779XMLF96dony7wHRB6W > > // < CALLS 125,307229819036 ; quote ; 17,3527481632677 ; 17,0056932000023 ; 0,0204081632653061 ; -4,3 ; 16,0079101806144 ; 18,6975861459209 ; 7,3 ; cBbB8EFA95aAcBbCaDCBE08778ADbDCe1fF9feeAf9eC9CbEcFDEe7CBdbfee99F ; < 2OnkQ168uRjA9y62U31Mbkzvbbw067Qzj2z997RWE42QWvaDSqUgt9ReJd9hI2a9 > > // < CALLS 130,528364394829 ; quote ; 15,7747803335794 ; 15,4592847269078 ; 0,0204081632653061 ; -7,7 ; 14,552234857727 ; 16,9973258094318 ; 9,6 ; fDE2dF8bF0BfebE2ebabAc0F1f8DB2AcC47f3bdC4fDdFDb4ddDBfbe3cBcC1CeE ; < Kqg6rgYa3RI1e91HRg7qy25Z2H49oEniz652uX9zf3N6992A19NH9DyHR16zlrg8 > > // < CALLS 135,749498970622 ; quote ; 14,3330742666231 ; 14,0464127812907 ; 0,0204081632653061 ; -5,9 ; 13,2222610109598 ; 15,4438875222864 ; -2,2 ; 5933ABa0feaE09BbfcAACFFcFB0eCc0acff2d2Fb4281D19afb17cDae1D85F65a ; < gro7M1dr985WmIc7XUgxnc63V1wD7f2pkYy93uo1dI63z2vTu2qPg9D8OUZF8Rqm > > // < CALLS 140,970633546415 ; quote ; 13,0178433568744 ; 12,7574864897369 ; 0,0204081632653061 ; -4,2 ; 12,0089604967166 ; 14,0267262170321 ; 8,6 ; F3Be4Acfebc7F36db2cdf9eD1f5b0CbA350aF2E5f980afdCcA2Ee898CABE0c7E ; < nl590Z2X5Dh5cd5TS44IEl12svd3N3EL9988FodK7nc17w3LIY97939JbkFINBEj > > // < CALLS 146,191768122208 ; quote ; 11,8195513380887 ; 11,5831603113269 ; 0,0204081632653061 ; 5 ; 10,9035361093868 ; 12,7355665667906 ; -1,8 ; 8eCe0bD8f1daBdcEEEEdCEaf7fa3CAAcEcD0eccDeC8aF79aF9BdBcFbc4eBD18d ; < xih273O05BIFbv9V48aUKrET5KX65CRmSQ31LGI0K7vACHKICWK0Q7863VUGXU83 > > // < CALLS 151,412902698002 ; quote ; 10,729020132261 ; 10,5144397296158 ; 0,0204081632653061 ; 9,4 ; 9,89752107201077 ; 11,5605191925112 ; 8 ; E55DC1b7Acd9Dc7d1013Ed2bC4EF1655bBFbC26bC5bdE97A2fd2d57dB9d88C40 ; < wp9hx8h47Q3KoW8UXPkuka7dmS8W4IhdsexraEe569XAdZGNS3M9q7hPlBDE2W6u > > // < CALLS 156,634037273795 ; quote ; 9,73750498525262 ; 9,54275488554756 ; 0,0204081632653061 ; -8 ; 8,98284834889554 ; 10,4921616216097 ; 5,5 ; 6EabA0bBBa9Fe08AB5Fe2E1cc3ee7bfB0dcc5B98AEB02aeB3ABAAcbeE5Df00Df ; < 3lAavvkbA4yyd81BCqD0gxLoAq89JVJmhD446UZ1DOCcWk3ELy3vg2Rx01cmD36r > > // // < PUTS ; 2Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 52,2113457579316 ; quote ; 0,408665521929223 ; 0,400492211490638 ; 0,0204081632653061 ; 6 ; 0,376993943979708 ; 0,440337099878737 ; 1,4 ; Df2F6b8ddfC6E2D9FB67eDFF2bE00859FFAcdDED2Fe3CCFbC61B2Bd0152ff91D ; < Ahpj25k2dUaGxxvORYGCUoR2427C87173lmV9S4W8342jQuXcW7MysUL7X3XRIj7 > > // < PUTS 57,4324803337247 ; quote ; 0,707302447659103 ; 0,693156398705921 ; 0,0204081632653061 ; 9,2 ; 0,652486507965523 ; 0,762118387352683 ; 4,8 ; EaCD5BfA6Be2cD3AF30CB0FafF409dfC2bfCA8731ABf1bbceF47A2ac36c6F55c ; < 2mAq765ISISncHF90BrVN84dO1G5Mo4V0B07u4uL66X4UUTxAo48BiHLqjhOXmqq > > // < PUTS 62,6536149095179 ; quote ; 1,13414943272281 ; 1,11146644406835 ; 0,0204081632653061 ; 7,3 ; 1,04625285168679 ; 1,22204601375883 ; -8,5 ; 0BaBDccbDdDCABaa5A29ECFC5DCA1d4FFCA9F2cB8cf637Fbe1190dcfba1AFE4D ; < gqJI53Eslr7Hc6hOWlab9z0ZQoDv2tPE061Tjg5C3319VUI99H7v4qwflI96Q3C0 > > // < PUTS 67,874749485311 ; quote ; 1,71033949469589 ; 1,67613270480197 ; 0,0204081632653061 ; 0,3 ; 1,57778818385696 ; 1,84289080553482 ; 7,2 ; daAeCEB8eCdcf6a7fFaAFF3C7CdF0DaBCD6cA82f3c6E9a665B0DF7eEdfcb6e96 ; < UAyn8I66IZlhnU661B9ggpL12S25I4n954OIyqBX2xtCrSMwDv9M537024x9by25 > > // < PUTS 73,0958840611042 ; quote ; 2,45322491430167 ; 2,40416041601564 ; 0,0204081632653061 ; -8,3 ; 2,26309998344329 ; 2,64334984516005 ; -9 ; feFFfc49aefD5AeDF7a0CcF497C725C06B4eAdbE11fCD5eBb9bcBAa1b4a45fDe ; < a41zzZDJ4H8hesGErdQvramy8kb0RTfrgn6oW5spbCK10iZGyux7AtYuAuFYeX87 > > // < PUTS 78,3170186368973 ; quote ; 3,37591281340272 ; 3,30839455713467 ; 0,0204081632653061 ; -4,5 ; 3,11427957036401 ; 3,63754605644143 ; 5,1 ; aD0fB160FBd34bb31DaBc2EC2b3d3f54E7737FdBba1d00ACddEaeF7b0AbD16b2 ; < q1Po4X0x42SEru08jgz3FMtj5p0DGs81xiFo289i7M1Pg2V46v9E0Y3g4P95iycH > > // < PUTS 83,5381532126905 ; quote ; 4,48722149753384 ; 4,39747706758316 ; 0,0204081632653061 ; -4,2 ; 4,13946183147497 ; 4,83498116359271 ; 2,1 ; 0dBeBfeDbcD8EE158EffDeB2fEDD62fad29DD7C5fecAA71FE3fCb3530cCEb6cd ; < kOGsG6ti9CIrriM7s5Ge6sF85kZdDIheX8Tm4wyeEJQB9ir42hKt76011tc67ZxU > > // < PUTS 88,7592877884836 ; quote ; 5,79193447541758 ; 5,67609578590923 ; 0,0204081632653061 ; 3,8 ; 5,34305955357271 ; 6,24080939726244 ; -2,8 ; DB0b4a3fD57c5eC52f7eDBddeA4A560bDA38A58aadeC2DefFAAEfE5DCeF2Ee85 ; < 9VYXI0aMbh4118hsr1UEU9790ZUe4PX7sP1kGBK7LHxDK11yPGNxxLz9k3xY7K2A > > // < PUTS 93,9804223642768 ; quote ; 7,29123965884816 ; 7,14541486567119 ; 0,0204081632653061 ; 8 ; 6,72616858528742 ; 7,85631073240889 ; 2,1 ; 9eFAECba5e5C056BDaa7f76c562BCbdfBd4e7C24FE2eeAC67befefEB2Accc9dd ; < BPGZ7i616OMPH5vPLH5Y80gYAo80F2eg7X0tk1p3KA77m3bQ1BFK478q4W5Wbw21 > > // < PUTS 99,20155694007 ; quote ; 8,98326297721528 ; 8,80359771767097 ; 0,0204081632653061 ; 2,1 ; 8,28706009648109 ; 9,67946585794946 ; 4,4 ; A0b51CCF5Ca8cFA1decFBB5DAeF1cFEFEabEFd9CeDA2bd3a171422bEd0BB8cFC ; < i810mUhfa7N1BD68zNssXVq09ok2lM126I30I5d66V084P1lPruPE2prw2raU723 > > // < PUTS 104,422691515863 ; quote ; 10,8636295870841 ; 10,6463569953425 ; 0,0204081632653061 ; -7,3 ; 10,0216982940851 ; 11,7055608800832 ; -6,2 ; DF7A14dD1dcaea31bAbA08ECbCDaCb9aBcbafFb62CaDBeBB30bE9eEbFfE6F1a6 ; < lzslP1zCbx2u8E0kZp9kL4a7KM3Dp4mQo33b77611r83LKs3YGgik03g818u6eGa > > // < PUTS 109,643826091656 ; quote ; 12,9260074686881 ; 12,6674873193143 ; 0,0204081632653061 ; 4,6 ; 11,9242418898647 ; 13,9277730475114 ; -4,2 ; dFDbdfBaBCDdF4F4FfE9CB71d5aFEc4FE84E5Cb5ffcFCfdDeBb6fABf0eBbFFEb ; < 20b3T9s3cE0ODwp529rHhEwk002nv48v6wAGUJs3OwXXIdV4F0V5L6OSUVp8ECVo > > // < PUTS 114,864960667449 ; quote ; 15,1626056894643 ; 14,859353575675 ; 0,0204081632653061 ; -2,5 ; 13,9875037485308 ; 16,3377076303978 ; -6,2 ; cEd9CB7F1aeD0cff86D8FEEEf1D0f65eEcE5e0Ac8EeaAaF4F4bdC1CeaeDECEc5 ; < c5407X0KyrWcJ9jdhopD2c306xZ2pla0W305Fr4M9wyf4Lp7K25pbLo4903fZV34 > > // < PUTS 120,086095243243 ; quote ; 17,5646127269451 ; 17,2133204724062 ; 0,0204081632653061 ; 4,8 ; 16,2033552406069 ; 18,9258702132834 ; 1,7 ; FA3fADfa36F9B8A01EE6Aa1DAcf8DAFaBbe8EF1B6FFdeCBa12AC0EeFb4ABEBFa ; < wTNqT7vHf4G68EMd8F295njQ944sesg7p2n5XbU2HKNYtx300sm36f2I0Rf1Go1X > > // < PUTS 125,307229819036 ; quote ; 20,1225694613013 ; 19,7201180720753 ; 0,0204081632653061 ; -9,2 ; 18,5630703280505 ; 21,6820685945522 ; -3,9 ; DAAefA5CBFEa2D761cF4FaEeD7Ffe1FB1d8f973AA38DfE7CedAc7FbD6fEEd1E2 ; < 79l61A66XB3785282y2u2GyNWPdN4i6410d9v15Vg1ES26fLkGPRc6xQp45N4XRk > > // < PUTS 130,528364394829 ; quote ; 22,8266775190311 ; 22,3701439686505 ; 0,0204081632653061 ; -1,5 ; 21,0576100113062 ; 24,595745026756 ; -7,9 ; BDABaa25dccCAeD54Aa5BD8Fab7B5DdA6E9E759cCBD0C15BB747f3ad27fafFEc ; < 8urlivUSB7T6Sq4T9Vlsr5OsvF1itu1513cOrib8GAaF15B2bqs3WgFaF9Lbd9x8 > > // < PUTS 135,749498970622 ; quote ; 25,6670473394929 ; 25,153706392703 ; 0,0204081632653061 ; 4,4 ; 23,6778511706822 ; 27,6562435083036 ; 3,9 ; 3DeaEc1cC1CBEdf4EDe114D6a58f85aDFC6A650Bd100f62eBCCefB13DAcBd0aA ; < W9iKfhNRDxM36z59Ue9TA2i82V76o01GK87bUX2kpjFu0CQu9641N38JV9Rvy4MO > > // < PUTS 140,970633546415 ; quote ; 28,6338923171622 ; 28,0612144708189 ; 0,0204081632653061 ; -4,4 ; 26,4147656625821 ; 30,8530189717422 ; -6,9 ; f2dFFD73BFD5cE4E8aEdDcC2cEDf8cEE7F9bA31ED59C5aAe20DbcA87FdBc2faA ; < MSiwv682MJ0P0rWj2n3XRu0duUw48ZC0Tx0zmG91lm8x8klGn3Qw3n5t2tB2VXyS > > // < PUTS 146,191768122208 ; quote ; 31,7176761857946 ; 31,0833226620787 ; 0,0204081632653061 ; 4,7 ; 29,2595562813955 ; 34,1757960901936 ; 5,7 ; cAf2cDfDcb8AD6fE6bc3Ee8b06aFFe6C004d91AEbBA4AB4A8Ed57bd3FFABf6Fe ; < r3B23z1875BkemO5aQq2fKGAF2dQ8Aa0S56L02M8Eh673pWE0o0SJna7W0Del8Q6 > > // < PUTS 151,412902698002 ; quote ; 34,9092208673849 ; 34,2110364500372 ; 0,0204081632653061 ; -1,9 ; 32,2037562501626 ; 37,6146854846073 ; -5,6 ; DDc1Cb3e31dBdBE8EbDd44d5Da0B5014fE9CCFaF5cfa951d4CDd3fbceeBBbEa5 ; < s351Ta2IFgPCFKV1b1O35q2NZhD0cqHKJvf4Kb2cc6MkG91UFr9vBruR7lsl9m33 > > // < PUTS 156,634037273795 ; quote ; 38,1997816077946 ; 37,4357859756388 ; 0,0204081632653061 ; -2,4 ; 35,2392985331906 ; 41,1602646823987 ; 6,7 ; b8Ad93b324ddBc1bb261591b6c343c8497Be3FF9DEa3681E2ed69cc3Fb992eEe ; < 4Z6LYt1vm7U8pO7zCF3D7I30sYSL995zuL0sjOgr7Yt6u63Pl1hm6NVCBU2I50bv > > // Futures_Eurosibenergo_hydrogeneration_LLC // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 88,946246 ; 1,14 ; 77,0230228070175 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; a972FB10dDcd5CbBE0AAaBc8C6bdffb28aD4cbd4a8A0de5A4dC25291ff4DaAAB ; < zvClZ3ZQhz6HTnXpEmy2cFJj0w54Y6ElSerqMlzlW4NxBtZk4XskLTtx36x8dAKT > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 88,9523013634878 ; 1,14008778 ; 77,0223268102109 ; 88,9520513634878 ; 88,9525513634878 ; -8,2 ; -2,4 ; 9 ; 5,8 ; -4,3 ; 3,6 ; -0,56 ; Future21AP19 ; 4EDbC43b7AdfCCd4aEbFED011aEEDBabd61ac5d0BCB5a2E6c097f7ECaF1eE6A3 ; < D90d3oT5UNNp139ra66J68G8zW01351TK4GjC16wWpgK8Z5M878kK34pX3EOmB2j > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 89,9145580176993 ; 1,15381372898453 ; 76,9281401832796 ; 89,9143080176993 ; 89,9148080176993 ; 3,9 ; -7,2 ; 9,4 ; 1,1 ; -0,5 ; 8,4 ; -0,29 ; FutureJU1912 ; f76bdF0F58Ac76bB6Ff6F229Fc2Cce9aeeCFBfBC858Ed03aDda3E91CbAb4Ad3E ; < 7M3yKtfh2PfJwyZ6s4xT2082Aqy9kWXU5XietEX3uxuQMnK0ATv8ZPais0Bd8uBL > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 90,9486428007766 ; 1,18185233402553 ; 75,9543200807455 ; 90,9483928007766 ; 90,9488928007766 ; 4 ; -3,4 ; -0,2 ; 2,3 ; -2,5 ; 3,4 ; -0,92 ; FutureAU1974 ; 5D0e9A5ffcBc3fdBf9FEAB8BBc4Eb8eeBacAAAbeA814EFF07bDeEA1FAacCEdfA ; < mb4ELqStLV619lKlA1vB8nG2tGwzvi7O7EJ8wRQL8yI9lVFW1T45f4bG9SHdl5dR > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 92,0052462605474 ; 1,22526894133997 ; 74,0898379582931 ; 92,0049962605474 ; 92,0054962605474 ; 7 ; 2,6 ; 7,8 ; -1 ; 5,6 ; -3,3 ; -0,07 ; FutureOC1958 ; B97ff8Be10ac97FebCc8Ed27bAfcaCAfBE11589EcA753ac4f0c9adAc4DFEFB4B ; < PN86638rM1l3qA59tqp2ID6G7EB4RdQs58m78sNTc1OKm5rz499YqSzr1D2KYUEt > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 93,1659176345358 ; 1,28574572300012 ; 71,4606086319663 ; 93,1656676345359 ; 93,1661676345358 ; 6,1 ; 4 ; -4,1 ; -5,7 ; 8,9 ; 7,5 ; -0,33 ; FutureDE1972 ; Ea5DEBDCdf6E04134c0DccdCdceAdcacd14B0ecfDe3BA9EF6Afff4A62Ffa754B ; < yRjWGicicY220wT04O327dQyu2cQ6etwxSB9fI5fZDWE3159HVHk75l7YQHHX98F > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 94,3571798915937 ; 1,3655883804194 ; 68,0963552740649 ; 94,3569298915937 ; 94,3574298915937 ; 5,7 ; 1,9 ; -6,5 ; -2,4 ; -9 ; -9,2 ; -0,92 ; FutureFE2016 ; beB9cafc5f74c6BcBd2Bfadc7fb6c6B7cd7eDC8a3EC5e5eFdBaD1FA1fCeFcD9F ; < 5Uc8UUc65RI8k57gG7UXT1948H7uN6eT1e4f75dar464AUv3b24FT7nTPziDL497 > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 95,62077229984 ; 1,46806213248607 ; 64,13400910213 ; 95,62052229984 ; 95,62102229984 ; 4,7 ; -7,8 ; 6,5 ; -5,5 ; 7,7 ; 9 ; -0,09 ; FutureAP2078 ; 5Dfc0CA2FD9C8137ECEBAd77Ad8FDAdAa56224Ad891EDb5AbEf1ADA2C3C488E4 ; < ZAuc3uC5okd3a5LfknHNk1Uf60Fc4z1O2fu2z8e8pqa3yt4y587i7N92lE2w0k7V > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 96,9988918684236 ; 1,59740994169548 ; 59,7226043463018 ; 96,9986418684236 ; 96,9991418684236 ; -3,4 ; -2,9 ; -8,5 ; 9,7 ; 4,2 ; 1,4 ; -0,53 ; FutureJU2017 ; a98aEcad4A221C2c7bCafcB19bDabD35cad0ab4aEe1A05C67C72cCDf3f0FFEec ; < 3Y87l2Q0vASLe3Uo82718O7PZ0ea8dSx80A1J7z52KbN498daU23juzZGtC7w1oe > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 98,2776322988409 ; 1,75897165222092 ; 54,8722092961266 ; 98,2773822988409 ; 98,2778822988409 ; -4,4 ; -8,3 ; -2 ; 1,1 ; -9,9 ; 7 ; -0,76 ; FutureAU2010 ; CdBcDe75bbe6F9bA4eaA8EeaCf0daaC10B7aF808aDfBdBE8CF25FD1cD4beCabE ; < FsdBN05U12H1qHrv9Fz9Zpl8aCMll67SB9q99hnmI7nO92QYLHKWRbHxLKuVfwPj > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 99,8040496306464 ; 1,96039628534162 ; 49,9101401471257 ; 99,8037996306464 ; 99,8042996306464 ; -5,8 ; -2,1 ; 4,2 ; -1,5 ; 3,1 ; 0,2 ; -0,65 ; FutureOC2039 ; 8C3eD99eCCa80CeF9E3aAbdcc0DafeaBAbFFdF59DD2dfd3c4fDeae477A867Bcc ; < roSgZ13Ylk7np66DCPvI0lMk8hRX1HGu7Z7i56PvutXDyzQ678mKqy61mQKC0rGk > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 101,147366505294 ; 2,21161437944796 ; 44,7346305238537 ; 101,147116505294 ; 101,147616505294 ; 4,2 ; -7,8 ; 5,1 ; -3,1 ; 7,5 ; -4,6 ; -0,5 ; FutureDE2099 ; f0ff8D7B6B952eeaDECAa1Bd1b36cC1988fAdB0Eb2dCA56aFDbBfEfC24A4DEE1 ; < 6r2R2l8l2ET4j08I53mhe3782ilBs8526a94I88TKp5C4ZiLGNE8vIUxM719OzTZ > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 102,86105953055 ; 2,52500754758355 ; 39,7369315109529 ; 102,86080953055 ; 102,86130953055 ; 8 ; -0,2 ; 7,4 ; -7,2 ; -4,6 ; -1,5 ; -0,81 ; FutureFE2113 ; da3dAcA6Fb18Fb93dCefd7DFFeAf685FBBCdAfea76Ed51f14E8EFBfD37ca1fDD ; < R3C6G960ZI17QiJrw5YWoE1He6z4XA1xmmK625NFdC5NE6Ol40BKERp5vt9izNET > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 104,422691515863 ; 2,91794417212341 ; 34,786391156303 ; 104,422441515863 ; 104,422941515863 ; 8,9 ; -0,9 ; 2,5 ; -7,6 ; -8,7 ; -2,1 ; -0,75 ; FutureAP2121 ; DcCbCCb6FFeC7Dd05abcEd5627cD40BBF20FfDE706F2FB22b4f6ABAc0Dfe2A6f ; < Tv39stX84p8hlKx12oYMkV90zcY9EqJhDUHiKRy3LD2t0Rmdi4G5NcLZ2RNWp0U6 > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 106,284260486919 ; 3,41278533020502 ; 30,1429668740792 ; 106,284010486919 ; 106,284510486919 ; 1,5 ; 3,7 ; 9,6 ; -4,8 ; 9,3 ; 5,4 ; 0,57 ; FutureJU2125 ; DAfcEcEDCffb3cbea32cAE3Aef7aFB84E5c7Bd5aEF8f5056db0788EDEC2CBef4 ; < 00lvY6pM7uqGIkW6p83m5q1xUn32kVLTALMQxn740H2wMdPx5qJ8XgPE791B2qSn > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 108,079311831265 ; 4,04028402355945 ; 25,7504242773626 ; 108,079061831265 ; 108,079561831265 ; -2,6 ; 4,5 ; -2,7 ; -3 ; -4,7 ; -4,8 ; 0,92 ; FutureAU2191 ; eAaDD7b05DC75DF646Ade4DF7940e7477569af4CeBFe4cfBcdFE7adDEF6EcEDF ; < N8boCg09YF07wz3Id4lOIiZRs0UV14YF20Yglxqf8bQVWA02q9D3VOloM2GR06yT > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 109,807288812178 ; 4,84081984742778 ; 21,6836139895859 ; 109,807038812178 ; 109,807538812178 ; -5,4 ; -3,3 ; -3,2 ; 6,5 ; -5,5 ; 5,9 ; -0,34 ; FutureOC2156 ; fEFddeBb822ba9e705c88E8e39F94bE57Acc1FBAeF2B7f58fecAd06a5e7A68aC ; < 9E31Dt0H4487kdgiOi1t4pXfnzlZ242FG288b07252YK0UuK06y6Se4yN8FHYO75 > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 111,828533850049 ; 5,87033664144765 ; 18,0497650612541 ; 111,828283850049 ; 111,828783850049 ; -9,3 ; 9,5 ; 6,4 ; -4,8 ; 2,7 ; -9,8 ; -0,12 ; FutureDE2111 ; aFC2dFB951d025Acc0F6Ca5ba7bDEFFcbB6aCCAfd68ddfBCFb101CD8f5caBA0e ; < Kn2l0pnfrp0RLgSG7zI5cMsoeU2g3Nps57Gz37Q1Hi2BWzsDDyk5QNQS3818s7nE > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 113,661869611334 ; 7,20582532470991 ; 14,7736087803252 ; 113,661619611334 ; 113,662119611334 ; 4,4 ; 6,9 ; 8,9 ; 3 ; -7,4 ; 7,9 ; -0,53 ; FutureFE2244 ; D2fe3fA02eaC63Ff4Cfac7DcE7146a8dBFac2faFbA46Bda0dEFB4Cb06Cc2Af77 ; < 9SXn4NOzTD548UCu2bWAww0dF9tF4K0XG16M1jeJbI2Xp44a3A5Jg5izl939Co73 > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 115,59159550309 ; 8,95142119724208 ; 11,91321153994 ; 115,59134550309 ; 115,59184550309 ; -2,8 ; -1,1 ; -3 ; 0,5 ; 7,9 ; 0,1 ; -0,18 ; FutureAP2257 ; Df7bbaE0EDdbe740caabB0fA2ac89C9c3a5DFB2bA9DE1aacc58bdf1DADbdE3Ab ; < t8U4i9eL675C941p2D40Yn8a302y1R3okaHql2qWw0dSmkB3B86zvMSE1sed1wlP > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 117,975212872977 ; 11,2553508558275 ; 9,48170016058578 ; 117,974962872977 ; 117,975462872977 ; -4,8 ; 9,1 ; 6,4 ; -8,8 ; -7,9 ; 5,5 ; 0,55 ; FutureJU2243 ; ea72Ae8C34Edd6f4c0c5A7f994d2Ed0FcbDF4D354eFd9EfFc40aaaAC7eAEEc21 ; < CbKM25OV7Bpb3wpTz8v0vTYOcu8jLQ9XDphpx98O4I64G1o4vXP5WjXH1p4s3043 > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 120,594055013077 ; 14,3231732077031 ; 7,4195068553818 ; 120,593805013077 ; 120,594305013077 ; -7,9 ; -7,3 ; -1,6 ; 5,4 ; -9,3 ; 4,8 ; -0,62 ; FutureAU2211 ; 1b6152be9054b6f2BcDaEcfdc2B70c8C4F977c06eb3dfaa323FDd1cEB9D8f29c ; < LO3n20Hj0ax1nCr8IRF4148w2dC1Us02Bw01Y61V4J3QqiX27tI2S9060UZe3lJl > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 122,711404124748 ; 18,447771771189 ; 5,65182796311443 ; 122,711154124748 ; 122,711654124748 ; 8,9 ; 1,4 ; -1,9 ; 5,2 ; 7,3 ; 1,9 ; -0,88 ; FutureOC2266 ; 3f1fBcAB2D2FDe0fAb9B74cc2bCAfbfceddDA8a7446C1b41aa3FE17dAeC6CA92 ; < 1ktwsvUnMu1Ds7gEcTDy4g235n73ODyi8EOyCN8zQO2KglRQOf8jpqtC0QY7FW1d > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 125,27840794657 ; 24,0494945956456 ; 4,20919088126088 ; 125,27815794657 ; 125,27865794657 ; 7,5 ; 2,7 ; -8 ; -1,1 ; 2,2 ; 0,7 ; -0,97 ; FutureDE2276 ; aD0F83fBdeeDf8b6BDFBCACE27FBecAF9aFFCFEF33d4B1e73A07BDC62db97ecf ; < 69ColboEkY9IkRA5z2UwDn7gv9udHgumrIFKXSdB5333X9t7K1HK22GpLVT6W1I3 > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 127,359472854299 ; 31,73289355884 ; 3,01348438704921 ; 127,359222854299 ; 127,359722854299 ; -9,1 ; 3,8 ; -2,8 ; 2,6 ; -9,6 ; 9 ; -0,84 ; FutureFE2394 ; AF9dCC8aCAeB1DDbd4EC58eAAF4bAfBc9afdFbdDEb0F0fb6eD022DA7F2a3AFBC ; < m9A3Mg9w8qlj0369vpF5X7Pt64p4mPfqZwXBGi9KE98fMolcppnAKo4C2156eTg0 > > // < CALLS ; 3Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 57,7957977515451 ; quote ; 61,5308193640129 ; 60,3002029767326 ; 0,0204081632653061 ; 0,7 ; 56,6083538148919 ; 66,4532849131339 ; -9,4 ; 7bcbce501deeBC0D9f3dedeba6FFdAE4a73C68B09bAd7FFe89eeefaEAbDbdAB6 ; < 1nh60BBasS1x63VJXqqy26qxeYg3wgE7T670Hoh4bP32K5hjWj8jnLqv8w0P1ylL > > // < CALLS 63,5753775266996 ; quote ; 58,045248210132 ; 56,8843432459294 ; 0,0204081632653061 ; 1,8 ; 53,4016283533215 ; 62,6888680669426 ; 3,5 ; f189EECc8feFeA4B6cad8A43D2cabdca2d022E0ebCCBafd27bA2ef2BDa4BEd2d ; < rCkI5tn7RRKh797N95MySZnps0Hh0AmjC6cTo2oxWfRsmKpBnR25glgFEVUMErj1 > > // < CALLS 69,3549573018541 ; quote ; 54,6875870286012 ; 53,5938352880292 ; 0,0204081632653061 ; 4,2 ; 50,3125800663131 ; 59,0625939908893 ; 0,8 ; C8aA1863Bdbf9FE3dbDd5ade275aAb9dBBAfba4BDEfFcddDbd2366BFBe347aD9 ; < 41CeGkVfLCr2MEzG2lPxA7I2aGKgYOCI2KQhrFLKS2pLk52LlsrJe1PTB11LS17Y > > // < CALLS 75,1345370770086 ; quote ; 51,4669757423064 ; 50,4376362274602 ; 0,0204081632653061 ; -0,1 ; 47,3496176829219 ; 55,5843338016909 ; -9 ; 86f38d6Bc1cAc0BA2EDE9453babbdcfD4Ea3617fC15EEB769a1D006bf6Ac2DcF ; < tiXazGN8Qv5H2GGr5X4Bd4pOn92Uec3SMhNieiH2TVnsnlS71UjW9JRln18hmK6Q > > // < CALLS 80,9141168521632 ; quote ; 48,3896143750377 ; 47,4218220875369 ; 0,0204081632653061 ; 8,6 ; 44,5184452250347 ; 52,2607835250407 ; -0,5 ; CFdE64d736822eAE0589dDBbcbEde8EEBF0edEf4ADcFfA7fc12FCeDbB08E48FF ; < Cbd4B06J7d8tVhXKbTLQk51B3u1kz9pl7mT8d1126mmo2pgb810uz4JRTXvqvz3P > > // < CALLS 86,6936966273177 ; quote ; 45,4590564027714 ; 44,5498752747159 ; 0,0204081632653061 ; 9,8 ; 41,8223318905496 ; 49,0957809149931 ; -6,6 ; c998CCc8Ff1DD60e4Ccc0eaBe2d799Cd5DfEAbA3FD5B09DD2e2bd2c98AFe810E ; < 80TgqU99ccSedA9VHw9bvmwzVb9oMD0u5Q7aDsP60MSm3aw4xTs6u0YHIgXfRhyr > > // < CALLS 92,4732764024722 ; quote ; 42,6765659694769 ; 41,8230346500873 ; 0,0204081632653061 ; -7,4 ; 39,2624406919187 ; 46,090691247035 ; -6 ; 77AdDcbBCabD91DF54d63CbdAFA7ECbeB35eBeFEa57aeeaFF4abf142D8cFF35e ; < qM5A3w2fu0MjC1xx1Hz3SHJ3xR5Ejoat3L7Q8d31bSa63jJj7v7xy0BzGxVQ0Rh9 > > // < CALLS 98,2528561776267 ; quote ; 40,0414910307221 ; 39,2406612101077 ; 0,0204081632653061 ; -2,5 ; 36,8381717482643 ; 43,2448103131799 ; 4,3 ; BEecbFbfac7e69d7Aa2DafB9ceC1eEbcB6AaBc7ffbc1e0fcec1e767BFaeb4CEE ; < C9RR5oov5ANl8RB5npc55Mq0q6B4r83hm8gv2Urg9hB7EHNd8iCK74dXKI2N5V1w > > // < CALLS 104,032435952781 ; quote ; 37,5516227399988 ; 36,8005902851988 ; 0,0204081632653061 ; -0,7 ; 34,5474929207989 ; 40,5557525591987 ; -9,7 ; d5C01C4DfefafAcC660cADbe3cBbddccfeFC4D8CDC754e8ca33bE98fFaC21fac ; < 3Wt5qHED8peHNZZ5qjATw8Y0XbDppN379oj7CY23Tc29WA235Xg0mOeEI3EsF2V9 > > // < CALLS 109,812015727936 ; quote ; 35,2035243902198 ; 34,4994539024154 ; 0,0204081632653061 ; 7 ; 32,3872424390022 ; 38,0198063414374 ; -3,7 ; ADae7Eb24Bf4fBDEfc6CCecd3ABCDDb5DFcE7dA34Afc94ddEbA8DB8fbaF6ebeA ; < B9X0TDyD5Wzht8bQFF5N4cyQ88XGIJtkrtqmx5nsu6b4k1r98Royi71Escdo776z > > // < CALLS 115,59159550309 ; quote ; 32,9928219942121 ; 32,3329655543278 ; 0,0204081632653061 ; -4 ; 30,3533962346751 ; 35,6322477537491 ; -2,6 ; FCd1cAe9254D4b4a6D7fb3fb08138Ebdf2beBC58B09E5aC07CBF529dbCCB50CF ; < 3J1A9GkC6j5C3FX1kj9QE68VYq0wx3k8MeGZdl1d0aTPm3J46ZS8e3sWhYq8p7WW > > // < CALLS 121,371175278245 ; quote ; 30,9144542159824 ; 30,2961651316627 ; 0,0204081632653061 ; -9,5 ; 28,4412978787038 ; 33,387610553261 ; -9,5 ; A1DfEBBbE35AEDEb8FAcbACaa65ad9A0aCecbD40e5f5fba5dF3E1bA9fCFEd8c5 ; < Q19EtJsVBWuLQ2VQnm49XST4VTDfAcZx5c91ivo2rsSKaJ4lmNL0frIAcYTM8cVe > > // < CALLS 127,150755053399 ; quote ; 28,9628827714671 ; 28,3836251160378 ; 0,0204081632653061 ; 4,3 ; 26,6458521497498 ; 31,2799133931845 ; -4,4 ; 1decfdDa4ba04F77b878aEd6fF53D3acEeAdD2EaCe7Bd4CDdb52e459BfDdfdE6 ; < N4Aht35kw1PCedp5Je3v97o4JOqlHSt8y1YabWxi33UZR6U3ftgdsRK9DP3f36Wf > > // < CALLS 132,930334828554 ; quote ; 27,1322663162922 ; 26,5896209899663 ; 0,0204081632653061 ; 8,7 ; 24,9616850109888 ; 29,3028476215955 ; 8,9 ; DDEFf9cbAFa7f61FEBeE9DC1Da57CDD7cfAA8bdEBe0bd5B8ea4fD10D3a6CE1B8 ; < 70t05YOK7S0EYNG3MZkuut9ihUZdLx5jBa8go94ZDW9VkFJLP9Q1266mQW2gXlb2 > > // < CALLS 138,709914603708 ; quote ; 25,4166017493327 ; 24,908269714346 ; 0,0204081632653061 ; -7,1 ; 23,3832736093861 ; 27,4499298892793 ; 2,6 ; 9EBf3eebAFbb0ceefFAabd1eBfCeDde96d3aaC102FEb7fa4AefAE9b4EDDDD5fa ; < h053xihzlvD9A0jfhy8KZmsaB9MNLSMEf0G4HkpUd8Ny6nRuJ8NJj633b83Dgh48 > > // < CALLS 144,489494378863 ; quote ; 23,8098371502222 ; 23,3336404072177 ; 0,0204081632653061 ; -9,3 ; 21,9050501782044 ; 25,7146241222399 ; -3,5 ; B6Ed20Ac4eEC46dfC8eAADB79Fb6ddA8FFa4D6E6FD56CE6dcAaFe3bD2BDfDCFE ; < 7S1c0PYBthWM2B1KrhK6zzCuBXdv249kNy7JZdx5KLIS537a59DMtmUqnw4YM5GZ > > // < CALLS 150,269074154017 ; quote ; 22,3059604855858 ; 21,8598412758741 ; 0,0204081632653061 ; -6,1 ; 20,521483646739 ; 24,0904373244327 ; 7,4 ; bcafbfBA6EC1fdD7bad7dfE8dCfCA115BE601A8ACB1cFCf0D4ecC6CdCB81faef ; < elFI4a9z0ncte1468OFt566ljRtt9bgdx7j999iBTx5O25x75i1mV3EEXSbyL7oR > > // < CALLS 156,048653929172 ; quote ; 20,8990679279314 ; 20,4810865693728 ; 0,0204081632653061 ; 8,7 ; 19,2271424936969 ; 22,570993362166 ; 0,7 ; 06095D5aBdCCFfDB4aDa4aB6BFaE254AacEB814aC131A34CC7ccF4366f096Dcf ; < 09HXto8hpJpKgrd98684VY7kuv5H640K5LaXySim5yfRFC81OdsP73v2gY680noq > > // < CALLS 161,828233704326 ; quote ; 19,583415239393 ; 19,1917469346052 ; 0,0204081632653061 ; 6,9 ; 18,0167420202416 ; 21,1500884585445 ; -6,3 ; Fb8C0acF6c2EcDe4EfcE78BdbE33E6Ea2c1feCbCefdDaBa7ecc055daeBFc0ccE ; < DoX9s1J2lcSIB9bj0E2Sqe4v19KPzI43F09oOnILU0410iby35iR9JrlWiq2pLFh > > // < CALLS 167,607813479481 ; quote ; 18,3534552464126 ; 17,9863861414844 ; 0,0204081632653061 ; -6,5 ; 16,8851788266996 ; 19,8217316661256 ; 0,7 ; BF75BBf9BccF4EADaa1Cf031c3AcEFcFbfA8ED434AC0b3Fa7776E89aa6b5fc5D ; < QB7y46V944beja5QKNmfQhXd8zV3J6HVQ59UY9N85t9PP6209TbkXa3oMLo7jyWQ > > // < CALLS 173,387393254635 ; quote ; 17,2038640106649 ; 16,8597867304516 ; 0,0204081632653061 ; 7,3 ; 15,8275548898117 ; 18,5801731315181 ; 2,3 ; Bf10FaA27fC9Edab3Ba7FAeEDFAEb9EdE5AcADF1da6Bc05BAd1Ce3b26CcFAdd7 ; < 47d7Z62u426cLq1ODkKSUwj1Zln6I60783gr4fK137n3YOJ8Zc3RiP7Zkr6gWq0S > > // // < PUTS ; 3Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 57,7957977515451 ; quote ; 0,862212417340544 ; 0,844968168993733 ; 0,0204081632653061 ; 2,4 ; 0,7932354239533 ; 0,931189410727787 ; -9 ; 7c699cDBf38ee28fEcd56fcf94DC8aFDCfac9C2fee164E0eFf2FCDa6Fe2854f4 ; < yllmUWt2e475658R5uOa0O8sjxtrrYR48s71Omb2967q5h2p38e92nwZZzC9f6Sk > > // < PUTS 63,5753775266996 ; quote ; 1,30978056879249 ; 1,28358495741664 ; 0,0204081632653061 ; -4,8 ; 1,20499812328909 ; 1,41456301429589 ; 4,4 ; 1F55c8aedEf268BAe77FFd0dEEdCCe0BFb1a081DAcB1cCfc0eEbeaDAf20FCBe7 ; < ivZf86471xB1n1472zRo2tY4UZ3L5tXL656bWYCq1bg70N7ZqaMg1zw8FkOyOZEn > > // < PUTS 69,3549573018541 ; quote ; 1,88525869259442 ; 1,84755351874253 ; 0,0204081632653061 ; 2,3 ; 1,73443799718687 ; 2,03607938800197 ; 5,9 ; E7eCc814Db9cAA1fDd77bB19FD6AbCc1C33bc8755bFfDFEB4dcAD658b9DbFCD7 ; < W6z1G1k5Z7BJ92oXSBmjr7051u7Nu1ug0AusqBsWf755I3m0x1KPT68c0W7qIyMp > > // < PUTS 75,1345370770086 ; quote ; 2,59778671163235 ; 2,54583097739971 ; 0,0204081632653061 ; -9 ; 2,38996377470176 ; 2,80560964856294 ; 1,6 ; EeC8eEbd93EDDaE6bFDE3f6d1Fc4CCa16eB19C4517BBFdDe1ec734E5bCFe4A4e ; < IyBFG1a503hOX50O9kc765Hs03Vvn9oHs04gSDzh8sA2QQi4OL3RK660i1G2v7Lt > > // < PUTS 80,9141168521632 ; quote ; 3,4535646496964 ; 3,38449335670247 ; 0,0204081632653061 ; 3,4 ; 3,17727947772069 ; 3,72984982167212 ; -2,6 ; bFeeddAbbfDefAB1DEdAfEb7bdf1CC3BdcEC46dbAfabDEaAECF86Ae5851dEffe ; < XSU0nlQnvF0i001X1OY07cQVMwxH1oFBOd4FL8gf81Lnfo3qCr8J1RO20ezDa8xl > > // < PUTS 86,6936966273177 ; quote ; 4,45614598276286 ; 4,36702306310761 ; 0,0204081632653061 ; 2,8 ; 4,09965430414183 ; 4,81263766138389 ; -4,5 ; be6EeCF7b65CdfADe11A3E3648eAF0eD8cD57Cb4e1ccAC1bC4eae0CdED633cFC ; < ZrU9pWrmVcOSJ73o269e3Uj5n0mw9MIVNte4eyU16IUAgwHB5PW8gjenZ0PIdSrb > > // < PUTS 92,4732764024722 ; quote ; 5,60679485480114 ; 5,49465895770511 ; 0,0204081632653061 ; 3 ; 5,15825126641705 ; 6,05533844318523 ; 8 ; c8fDCBaDCdf1BdD3D7Ee03beafa16Bb039Ce5BAFcAfEcb44d4DB9F5EF8fABAc9 ; < k82Dn9emI16GS7FE8b6J4YYwtzhu8NCu05gErqYV1G87jIxOfTj20dBZo3McIh48 > > // < PUTS 98,2528561776267 ; quote ; 6,90485922137916 ; 6,76676203695157 ; 0,0204081632653061 ; -4,5 ; 6,35247048366882 ; 7,45724795908949 ; -8,6 ; cfaDD0fCCE1ABADFa6F0dC4ae3c9BFCC65FA1b8e7CAAB92Afe32CeC5b5F9834f ; < pcB9YqmVTNhD3Es6H71l1igKADm1Tz2K3fx68nXo7xWxOYZN8470EPwwyIDaqlc1 > > // < PUTS 104,032435952781 ; quote ; 8,34813023598858 ; 8,18116763126881 ; 0,0204081632653061 ; -3,9 ; 7,68027981710949 ; 9,01598065486767 ; 4,4 ; fCB0E8B1d6E5B01E8dbBA6EbAAefe8B057DB50119F9dD5DEDd1f9A3AaE9dBAAa ; < fXotxz8hb2Av4rZ4gbLr23g9y9xqD2V04xUa8Th81hU5sbl9kvlVD3K3b1G02Bss > > // < PUTS 109,812015727936 ; quote ; 9,93317119154237 ; 9,73450776771152 ; 0,0204081632653061 ; -7,9 ; 9,13851749621898 ; 10,7278248868658 ; -1,8 ; 35f8AafE1fB3Cd4eA37eFb5aCD50a88f8d82adDbAEDb4BBf3DeFfC7D3CdDB4af ; < rVdsLRw71Gl5k3Yr2ax23Jgr0J196rJ8VLYEU7N6X327yM10WD97JQ72u6lj4T47 > > // < PUTS 115,59159550309 ; quote ; 11,6556081008674 ; 11,4224959388501 ; 0,0204081632653061 ; 3,4 ; 10,723159452798 ; 12,5880567489368 ; 2,7 ; F54B0EB9ceFd91DC9FFbBDed6eA8fcbac6DefAFa8DCffab2Fadee99dc74c3a4E ; < d53BxrM41Vjz6dgG3dh07y6kRv8pOMODjknHHO8Y5Z1siWguKm1te9o48w65v1D2 > > // < PUTS 121,371175278245 ; quote ; 13,5103796279705 ; 13,2401720354111 ; 0,0204081632653061 ; -3,9 ; 12,4295492577329 ; 14,5912099982081 ; 7,1 ; bf7fca82CDeD3bFCFfFCBF7FdEfeCdcFab7520ccFc0e59e2AeC7f42aD93deb51 ; < 2w22T3SCCkd5L2AR8AqcvTLPFhRAEMIK2wX5yhJj8c2oWx5a2r9WrljpHUB5iN99 > > // < PUTS 127,150755053399 ; quote ; 15,491947488788 ; 15,1821085390123 ; 0,0204081632653061 ; -1,5 ; 14,252591689685 ; 16,7313032878911 ; -5,1 ; BDdd0EAEc2BAb9fE4eF6Ab34D2b388eEea4eD708BFaC9dB5e6DE74cbBfBa0FAd ; < ifjzHh2AC8j9sq9NMhP4qEeY7e6G5p6ds5wy1t19W8L9amcA9w75j5ZI3w3r30P6 > > // < PUTS 132,930334828554 ; quote ; 17,5944703389458 ; 17,2425809321669 ; 0,0204081632653061 ; 1,5 ; 16,1869127118302 ; 19,0020279660615 ; -9,9 ; AFeA2CCd1dde4AceC5dc65ec3CeF4dd4EC0076EbadccCC9f8bD5B81AeAD6FE36 ; < 0sQ00NYlXWHJrMD12yNTRwVo07jH3Gdo23do965pQ33b6oAye8QnBr00746n1N1y > > // < PUTS 138,709914603708 ; quote ; 19,8119450773191 ; 19,4157061757727 ; 0,0204081632653061 ; 7,1 ; 18,2269894711336 ; 21,3969006835046 ; 9,2 ; 10BDB7C9BdfdEf13A6D8dfC8C2d1aEc9Fdc4BdF969DC6CbEa92cfb2EfDea4bDA ; < 315S8ILAGk339r0vr3wsFm0o122r55J4rcEgnK4FHR2NFew1Z0EzFGngIK63C7YD > > // < PUTS 144,489494378863 ; quote ; 22,1383197835414 ; 21,6955533878705 ; 0,0204081632653061 ; 2,5 ; 20,3672542008581 ; 23,9093853662247 ; -6,4 ; 52ABec5092CeEDF30AE1AdF0Bbeea69dcA2eF6a79EfFE4CA7Cac1eBA20BafDba ; < k52NNxnhnDYK91ck7488XWrbiUR74jZm87z2MewEltN3Q0UXOe8clorNgL94l3QA > > // < PUTS 150,269074154017 ; quote ; 24,5675824242378 ; 24,076230775753 ; 0,0204081632653061 ; 4,2 ; 22,6021758302988 ; 26,5329890181768 ; -7,8 ; AC27Bab879eFE76fE348ecA2E749b7AF58FacFeaDec3Dd3Af2cabe6E0F96CddB ; < q3aD1c86y24rh772R6784F977Sr28vo9C6aGCITqtUoU4sjqil7bn4vBD4Zv8orE > > // < PUTS 156,048653929172 ; quote ; 27,0938291719162 ; 26,5519525884778 ; 0,0204081632653061 ; 3 ; 24,9263228381629 ; 29,2613355056694 ; -8,5 ; afAeEb5898dFa1Ae1E70baB5b3F5eFF9eDCB9CDFB1BbaDc5C6ab7C119dCF29ae ; < mYEC67t91ioLxqXW0s698b04ca3mKJHhn6ktowuWoSFrrdndaI7AxTB22W4kon3M > > // < PUTS 161,828233704326 ; quote ; 29,7113157887105 ; 29,1170894729363 ; 0,0204081632653061 ; 8,8 ; 27,3344105256137 ; 32,0882210518074 ; 0,1 ; d5ABF6C5c2FBAFECbBE6C7Df8B1f2Bcff85dcbebD5EBdc8CeF08Bd8b2d9EDFaa ; < U1LsoaX6bjye46l3ekP0typ3glDK5SvmN71s7vC54aVlG41I5ObwlcWTgtM2oNzT > > // < PUTS 167,607813479481 ; quote ; 32,4144951010629 ; 31,7662051990416 ; 0,0204081632653061 ; 3,8 ; 29,8213354929778 ; 35,0076547091479 ; 0,9 ; 3EB68e1AB3e9AfeBd05ddCBb4eAa50A974c7f6bf4aDDE925BDB06feBBBBEBe6C ; < QUv62cxV15CSIasq7iePCUYcL1w5Gh1LXX0q5Hu7L5qm9o4dy63Pi6MyCe46fqpw > > // < PUTS 173,387393254635 ; quote ; 35,1980431706479 ; 34,4940823072349 ; 0,0204081632653061 ; -7,4 ; 32,3821997169961 ; 38,0138866242997 ; -6,4 ; f12bdb7edEfb2bFbE7Fe0E916bcDEa55D23a541CaC3f87fC0f8ce80dF95dA9ae ; < VvcZY1Dun75wP3GHOM9V6vE1t7ka6c4TFdb5BJ5bBk03BWi1Od1Uv4v7x3Zkl6NE > > // Futures_Eurosibenergo_hydrogeneration_LLC // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 88,946246 ; 1,14 ; 77,0230228070175 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; a972FB10dDcd5CbBE0AAaBc8C6bdffb28aD4cbd4a8A0de5A4dC25291ff4DaAAB ; < zvClZ3ZQhz6HTnXpEmy2cFJj0w54Y6ElSerqMlzlW4NxBtZk4XskLTtx36x8dAKT > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 88,9523013634878 ; 1,14008778 ; 77,0223268102109 ; 88,9520513634878 ; 88,9525513634878 ; -8,2 ; -2,4 ; 9 ; 5,8 ; -4,3 ; 3,6 ; -0,56 ; Future21AP19 ; 4EDbC43b7AdfCCd4aEbFED011aEEDBabd61ac5d0BCB5a2E6c097f7ECaF1eE6A3 ; < D90d3oT5UNNp139ra66J68G8zW01351TK4GjC16wWpgK8Z5M878kK34pX3EOmB2j > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 89,9145580176993 ; 1,15381372898453 ; 76,9281401832796 ; 89,9143080176993 ; 89,9148080176993 ; 3,9 ; -7,2 ; 9,4 ; 1,1 ; -0,5 ; 8,4 ; -0,29 ; FutureJU1912 ; f76bdF0F58Ac76bB6Ff6F229Fc2Cce9aeeCFBfBC858Ed03aDda3E91CbAb4Ad3E ; < 7M3yKtfh2PfJwyZ6s4xT2082Aqy9kWXU5XietEX3uxuQMnK0ATv8ZPais0Bd8uBL > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 90,9486428007766 ; 1,18185233402553 ; 75,9543200807455 ; 90,9483928007766 ; 90,9488928007766 ; 4 ; -3,4 ; -0,2 ; 2,3 ; -2,5 ; 3,4 ; -0,92 ; FutureAU1974 ; 5D0e9A5ffcBc3fdBf9FEAB8BBc4Eb8eeBacAAAbeA814EFF07bDeEA1FAacCEdfA ; < mb4ELqStLV619lKlA1vB8nG2tGwzvi7O7EJ8wRQL8yI9lVFW1T45f4bG9SHdl5dR > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 92,0052462605474 ; 1,22526894133997 ; 74,0898379582931 ; 92,0049962605474 ; 92,0054962605474 ; 7 ; 2,6 ; 7,8 ; -1 ; 5,6 ; -3,3 ; -0,07 ; FutureOC1958 ; B97ff8Be10ac97FebCc8Ed27bAfcaCAfBE11589EcA753ac4f0c9adAc4DFEFB4B ; < PN86638rM1l3qA59tqp2ID6G7EB4RdQs58m78sNTc1OKm5rz499YqSzr1D2KYUEt > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 93,1659176345358 ; 1,28574572300012 ; 71,4606086319663 ; 93,1656676345359 ; 93,1661676345358 ; 6,1 ; 4 ; -4,1 ; -5,7 ; 8,9 ; 7,5 ; -0,33 ; FutureDE1972 ; Ea5DEBDCdf6E04134c0DccdCdceAdcacd14B0ecfDe3BA9EF6Afff4A62Ffa754B ; < yRjWGicicY220wT04O327dQyu2cQ6etwxSB9fI5fZDWE3159HVHk75l7YQHHX98F > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 94,3571798915937 ; 1,3655883804194 ; 68,0963552740649 ; 94,3569298915937 ; 94,3574298915937 ; 5,7 ; 1,9 ; -6,5 ; -2,4 ; -9 ; -9,2 ; -0,92 ; FutureFE2016 ; beB9cafc5f74c6BcBd2Bfadc7fb6c6B7cd7eDC8a3EC5e5eFdBaD1FA1fCeFcD9F ; < 5Uc8UUc65RI8k57gG7UXT1948H7uN6eT1e4f75dar464AUv3b24FT7nTPziDL497 > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 95,62077229984 ; 1,46806213248607 ; 64,13400910213 ; 95,62052229984 ; 95,62102229984 ; 4,7 ; -7,8 ; 6,5 ; -5,5 ; 7,7 ; 9 ; -0,09 ; FutureAP2078 ; 5Dfc0CA2FD9C8137ECEBAd77Ad8FDAdAa56224Ad891EDb5AbEf1ADA2C3C488E4 ; < ZAuc3uC5okd3a5LfknHNk1Uf60Fc4z1O2fu2z8e8pqa3yt4y587i7N92lE2w0k7V > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 96,9988918684236 ; 1,59740994169548 ; 59,7226043463018 ; 96,9986418684236 ; 96,9991418684236 ; -3,4 ; -2,9 ; -8,5 ; 9,7 ; 4,2 ; 1,4 ; -0,53 ; FutureJU2017 ; a98aEcad4A221C2c7bCafcB19bDabD35cad0ab4aEe1A05C67C72cCDf3f0FFEec ; < 3Y87l2Q0vASLe3Uo82718O7PZ0ea8dSx80A1J7z52KbN498daU23juzZGtC7w1oe > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 98,2776322988409 ; 1,75897165222092 ; 54,8722092961266 ; 98,2773822988409 ; 98,2778822988409 ; -4,4 ; -8,3 ; -2 ; 1,1 ; -9,9 ; 7 ; -0,76 ; FutureAU2010 ; CdBcDe75bbe6F9bA4eaA8EeaCf0daaC10B7aF808aDfBdBE8CF25FD1cD4beCabE ; < FsdBN05U12H1qHrv9Fz9Zpl8aCMll67SB9q99hnmI7nO92QYLHKWRbHxLKuVfwPj > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 99,8040496306464 ; 1,96039628534162 ; 49,9101401471257 ; 99,8037996306464 ; 99,8042996306464 ; -5,8 ; -2,1 ; 4,2 ; -1,5 ; 3,1 ; 0,2 ; -0,65 ; FutureOC2039 ; 8C3eD99eCCa80CeF9E3aAbdcc0DafeaBAbFFdF59DD2dfd3c4fDeae477A867Bcc ; < roSgZ13Ylk7np66DCPvI0lMk8hRX1HGu7Z7i56PvutXDyzQ678mKqy61mQKC0rGk > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 101,147366505294 ; 2,21161437944796 ; 44,7346305238537 ; 101,147116505294 ; 101,147616505294 ; 4,2 ; -7,8 ; 5,1 ; -3,1 ; 7,5 ; -4,6 ; -0,5 ; FutureDE2099 ; f0ff8D7B6B952eeaDECAa1Bd1b36cC1988fAdB0Eb2dCA56aFDbBfEfC24A4DEE1 ; < 6r2R2l8l2ET4j08I53mhe3782ilBs8526a94I88TKp5C4ZiLGNE8vIUxM719OzTZ > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 102,86105953055 ; 2,52500754758355 ; 39,7369315109529 ; 102,86080953055 ; 102,86130953055 ; 8 ; -0,2 ; 7,4 ; -7,2 ; -4,6 ; -1,5 ; -0,81 ; FutureFE2113 ; da3dAcA6Fb18Fb93dCefd7DFFeAf685FBBCdAfea76Ed51f14E8EFBfD37ca1fDD ; < R3C6G960ZI17QiJrw5YWoE1He6z4XA1xmmK625NFdC5NE6Ol40BKERp5vt9izNET > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 104,422691515863 ; 2,91794417212341 ; 34,786391156303 ; 104,422441515863 ; 104,422941515863 ; 8,9 ; -0,9 ; 2,5 ; -7,6 ; -8,7 ; -2,1 ; -0,75 ; FutureAP2121 ; DcCbCCb6FFeC7Dd05abcEd5627cD40BBF20FfDE706F2FB22b4f6ABAc0Dfe2A6f ; < Tv39stX84p8hlKx12oYMkV90zcY9EqJhDUHiKRy3LD2t0Rmdi4G5NcLZ2RNWp0U6 > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 106,284260486919 ; 3,41278533020502 ; 30,1429668740792 ; 106,284010486919 ; 106,284510486919 ; 1,5 ; 3,7 ; 9,6 ; -4,8 ; 9,3 ; 5,4 ; 0,57 ; FutureJU2125 ; DAfcEcEDCffb3cbea32cAE3Aef7aFB84E5c7Bd5aEF8f5056db0788EDEC2CBef4 ; < 00lvY6pM7uqGIkW6p83m5q1xUn32kVLTALMQxn740H2wMdPx5qJ8XgPE791B2qSn > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 108,079311831265 ; 4,04028402355945 ; 25,7504242773626 ; 108,079061831265 ; 108,079561831265 ; -2,6 ; 4,5 ; -2,7 ; -3 ; -4,7 ; -4,8 ; 0,92 ; FutureAU2191 ; eAaDD7b05DC75DF646Ade4DF7940e7477569af4CeBFe4cfBcdFE7adDEF6EcEDF ; < N8boCg09YF07wz3Id4lOIiZRs0UV14YF20Yglxqf8bQVWA02q9D3VOloM2GR06yT > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 109,807288812178 ; 4,84081984742778 ; 21,6836139895859 ; 109,807038812178 ; 109,807538812178 ; -5,4 ; -3,3 ; -3,2 ; 6,5 ; -5,5 ; 5,9 ; -0,34 ; FutureOC2156 ; fEFddeBb822ba9e705c88E8e39F94bE57Acc1FBAeF2B7f58fecAd06a5e7A68aC ; < 9E31Dt0H4487kdgiOi1t4pXfnzlZ242FG288b07252YK0UuK06y6Se4yN8FHYO75 > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 111,828533850049 ; 5,87033664144765 ; 18,0497650612541 ; 111,828283850049 ; 111,828783850049 ; -9,3 ; 9,5 ; 6,4 ; -4,8 ; 2,7 ; -9,8 ; -0,12 ; FutureDE2111 ; aFC2dFB951d025Acc0F6Ca5ba7bDEFFcbB6aCCAfd68ddfBCFb101CD8f5caBA0e ; < Kn2l0pnfrp0RLgSG7zI5cMsoeU2g3Nps57Gz37Q1Hi2BWzsDDyk5QNQS3818s7nE > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 113,661869611334 ; 7,20582532470991 ; 14,7736087803252 ; 113,661619611334 ; 113,662119611334 ; 4,4 ; 6,9 ; 8,9 ; 3 ; -7,4 ; 7,9 ; -0,53 ; FutureFE2244 ; D2fe3fA02eaC63Ff4Cfac7DcE7146a8dBFac2faFbA46Bda0dEFB4Cb06Cc2Af77 ; < 9SXn4NOzTD548UCu2bWAww0dF9tF4K0XG16M1jeJbI2Xp44a3A5Jg5izl939Co73 > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 115,59159550309 ; 8,95142119724208 ; 11,91321153994 ; 115,59134550309 ; 115,59184550309 ; -2,8 ; -1,1 ; -3 ; 0,5 ; 7,9 ; 0,1 ; -0,18 ; FutureAP2257 ; Df7bbaE0EDdbe740caabB0fA2ac89C9c3a5DFB2bA9DE1aacc58bdf1DADbdE3Ab ; < t8U4i9eL675C941p2D40Yn8a302y1R3okaHql2qWw0dSmkB3B86zvMSE1sed1wlP > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 117,975212872977 ; 11,2553508558275 ; 9,48170016058578 ; 117,974962872977 ; 117,975462872977 ; -4,8 ; 9,1 ; 6,4 ; -8,8 ; -7,9 ; 5,5 ; 0,55 ; FutureJU2243 ; ea72Ae8C34Edd6f4c0c5A7f994d2Ed0FcbDF4D354eFd9EfFc40aaaAC7eAEEc21 ; < CbKM25OV7Bpb3wpTz8v0vTYOcu8jLQ9XDphpx98O4I64G1o4vXP5WjXH1p4s3043 > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 120,594055013077 ; 14,3231732077031 ; 7,4195068553818 ; 120,593805013077 ; 120,594305013077 ; -7,9 ; -7,3 ; -1,6 ; 5,4 ; -9,3 ; 4,8 ; -0,62 ; FutureAU2211 ; 1b6152be9054b6f2BcDaEcfdc2B70c8C4F977c06eb3dfaa323FDd1cEB9D8f29c ; < LO3n20Hj0ax1nCr8IRF4148w2dC1Us02Bw01Y61V4J3QqiX27tI2S9060UZe3lJl > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 122,711404124748 ; 18,447771771189 ; 5,65182796311443 ; 122,711154124748 ; 122,711654124748 ; 8,9 ; 1,4 ; -1,9 ; 5,2 ; 7,3 ; 1,9 ; -0,88 ; FutureOC2266 ; 3f1fBcAB2D2FDe0fAb9B74cc2bCAfbfceddDA8a7446C1b41aa3FE17dAeC6CA92 ; < 1ktwsvUnMu1Ds7gEcTDy4g235n73ODyi8EOyCN8zQO2KglRQOf8jpqtC0QY7FW1d > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 125,27840794657 ; 24,0494945956456 ; 4,20919088126088 ; 125,27815794657 ; 125,27865794657 ; 7,5 ; 2,7 ; -8 ; -1,1 ; 2,2 ; 0,7 ; -0,97 ; FutureDE2276 ; aD0F83fBdeeDf8b6BDFBCACE27FBecAF9aFFCFEF33d4B1e73A07BDC62db97ecf ; < 69ColboEkY9IkRA5z2UwDn7gv9udHgumrIFKXSdB5333X9t7K1HK22GpLVT6W1I3 > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 127,359472854299 ; 31,73289355884 ; 3,01348438704921 ; 127,359222854299 ; 127,359722854299 ; -9,1 ; 3,8 ; -2,8 ; 2,6 ; -9,6 ; 9 ; -0,84 ; FutureFE2394 ; AF9dCC8aCAeB1DDbd4EC58eAAF4bAfBc9afdFbdDEb0F0fb6eD022DA7F2a3AFBC ; < m9A3Mg9w8qlj0369vpF5X7Pt64p4mPfqZwXBGi9KE98fMolcppnAKo4C2156eTg0 > > // < CALLS ; 5Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 52,2113457579316 ; quote ; 68,7696516082759 ; 67,3942585761104 ; 0,0204081632653061 ; -7,3 ; 62,9242312215724 ; 74,6150719949793 ; -8,1 ; 0fAbAB5DF16FaBBE5AFd1cE63f5d6EabfFEBbcFf5d3EfaA970AabD8b91aeDBDD ; < Qt0ev8i2315HQ7F0Sav2X2055Um6R71bQGP45N8Ms5mt6QUy1HLI74cN7tRbcFcJ > > // < CALLS 57,4324803337247 ; quote ; 66,0394899014161 ; 64,7187001033877 ; 0,0204081632653061 ; -5,5 ; 60,4261332597957 ; 71,6528465430364 ; 4 ; cAcE02b611FD7ADAeB669fc4ce89aBBAC7bFcCDf6b1CaBEfAC5a1E2BbFCfa6DA ; < 11yFlecEECWWP8cz4gwEjzDGpIg61J9hBoxoyU3Lmp5GImtv3i32W41weD2H4znv > > // < CALLS 62,6536149095179 ; quote ; 63,4088182749812 ; 62,1406419094816 ; 0,0204081632653061 ; 0,9 ; 58,0190687216078 ; 68,7985678283546 ; 2,9 ; dEdBb4DECe9a8da5fEB6Df77D03ceF0E5193d63f43BbC0DD1eb216B5Ff5fD185 ; < jW73hHi7Mj9x5VCmU40k08pD7OHyPWo5gyG7cVPw1w6y1fRgr1orjo5Xt9RCtODL > > // < CALLS 67,874749485311 ; quote ; 60,8785228676813 ; 59,6609524103277 ; 0,0204081632653061 ; -9,2 ; 55,7038484239284 ; 66,0531973114342 ; 2,2 ; 3BAF3a2Add5b5ff85aFF648d7ECEcab7Aadeb4A546c5Ccc2A566A8A6eA116eDd ; < 47Dof1Z1Jw5kz6p57aFnz8AU7pWeNMPmrOA57428lUkqUQAJRYEaYMOc21d532nu > > // < CALLS 73,0958840611042 ; quote ; 58,4483243190617 ; 57,2793578326805 ; 0,0204081632653061 ; -1,9 ; 53,4802167519415 ; 63,416431886182 ; 2,9 ; DFFB0D4Ae5e59C9BE0d61bb8fcFad6aAf528eC71ADcDfbCeDC4d03D1fC3ef61C ; < ud1Me2T2HGO9Dy1FAC6mSVXz506Ugf5xni5Fcap6wD0o3cs1r14dGLpfi60pjDqz > > // < CALLS 78,3170186368973 ; quote ; 56,1170355544163 ; 54,994694843328 ; 0,0204081632653061 ; 2,7 ; 51,3470875322909 ; 60,8869835765417 ; 7,9 ; aA0fbA308bCEceDEB1ffBdcD8dC9e79EeadDF0A3BfA7DBd24fcFE224598Cc6eD ; < x18nLmn4sRjB1e7R1j3J3L7lWP6ygzIpZc8Wj039NGirh1W99UKXAr65Ek9vA0gF > > // < CALLS 83,5381532126905 ; quote ; 53,8827769498618 ; 52,8051214108646 ; 0,0204081632653061 ; -7,2 ; 49,3027409091236 ; 58,4628129906001 ; -8,4 ; FBaaeB3ABcB0abB2ef8D2efA68a29211DeDc25ed7c0eed6ECb811d4DD33BCE9E ; < V137f6u4JkgtJgN24CgF8717Q8K7b3p1280WNWinBefwTxT1G8xGooBNmp9HLghA > > // < CALLS 88,7592877884836 ; quote ; 51,7431529046748 ; 50,7082898465813 ; 0,0204081632653061 ; -2,8 ; 47,3449849077774 ; 56,1413209015721 ; -8,6 ; 221ec45FafFbceda47fbec0bcaE5ACCfac5A7D43A3af9ce8da0EFf5FFaa8Ceb2 ; < 1YJL0388q092G65i4p8eROL74R2kCtq3x9kuhkWZM8PuQ56B7kP6X1Ve72sWdFtZ > > // < CALLS 93,9804223642768 ; quote ; 49,6953949372565 ; 48,7014870385114 ; 0,0204081632653061 ; 7,3 ; 45,4712863675897 ; 53,9195035069233 ; 0 ; FdaEeBea85e5b08DdEfca5d3E0FdBFDF5d919FA5eB0ECcD4DaeF1Edf2BeDBDFD ; < 5a71hM79i9L50uIgYhiz3STsy1MqPON8PUGdoPcpW3TlD3133rdhCp9084L0nAUK > > // < CALLS 99,20155694007 ; quote ; 47,7364764920315 ; 46,7817469621909 ; 0,0204081632653061 ; -8,5 ; 43,6788759902088 ; 51,7940769938542 ; 4,5 ; a72E9C09Db6cea5FA118CDBd8EC9FeBfB7dAB13a52AE4bfefbBcbdAFA26cDb0E ; < 4M4pu3FE2TA7s3X7THlwteMYyOYA0G8BtR22SgmUE6eT5d6KcIg7O4faKg61FC10 > > // < CALLS 104,422691515863 ; quote ; 45,8632042431598 ; 44,9459401582966 ; 0,0204081632653061 ; 7,9 ; 41,9648318824912 ; 49,7615766038284 ; 3,4 ; EC8CF835bdFfc8DEAd76967ffFDEE444B5dC5DCD32BAcAAf2DFb4A6be21eBDaE ; < 8SA9x2Yq82kgT3eDKv6ZlW8ioiu042AgiuqVjzWZH8M4FNjOqZZrua65c6bEm39x > > // < CALLS 109,643826091656 ; quote ; 44,0722900961976 ; 43,1908442942737 ; 0,0204081632653061 ; -9,1 ; 40,3261454380208 ; 47,8184347543744 ; -9,7 ; a5d8FC3d23B3eAE0AFCC1c92Df1C1aFfBc4D7E7CBdAd22192A4652C9AbfD1155 ; < xN8pgBc87kJ8td2p8tr9vDBw8v5W9lKs1ntV6bokb7y9j30a278Vfbcih5fI9c4a > > // < CALLS 114,864960667449 ; quote ; 42,3604074685174 ; 41,5131993191471 ; 0,0204081632653061 ; -5,2 ; 38,7597728336934 ; 45,9610421033414 ; -9,3 ; AaF7dEb29b55a8eB8B3C8D3Ef2EbFa4fDcFCFDFcdbeAd59eB2487c9B5d93Ee1b ; < x7qxd970TV9XD2Be444Nux7oXl7UWs4Of1uAY8xz1e32mRo1249jZtcCOGy5DQtf > > // < CALLS 120,086095243243 ; quote ; 40,7242348442273 ; 39,9097501473428 ; 0,0204081632653061 ; -1,7 ; 37,262674882468 ; 44,1857948059867 ; 0 ; d7462FDE4BFd1bD4f2dEBAb0Bbd15Ae74dBACc6eEB7eC5e5b2C8dbAbFFc36edC ; < 4DM5cF4gRa67gPraz17GeZeQF6D3D429b9381HLA41w8pa9KhHGY047kq7cOfSwH > > // < CALLS 125,307229819036 ; quote ; 39,1604890792011 ; 38,3772792976171 ; 0,0204081632653061 ; -0,8 ; 35,831847507469 ; 42,4891306509332 ; 2,2 ; c13484EEa0F74bBea5feAE1EeBCCDAEebFaCcE6BdaADEF9a599D13D4FB7B8bbc ; < XSH9sWjT36cXJ0veaBeGCEQ6N7fX4414p5Ohv75LgL4yrIW0zecs0nUD6Ilsub5u > > // < CALLS 130,528364394829 ; quote ; 37,6659504849378 ; 36,912631475239 ; 0,0204081632653061 ; -0,6 ; 34,4643446937181 ; 40,8675562761575 ; -2,6 ; 18CbeDEB2bCfd7e3DBBfC96bafAADA0c9f43fD74acB1cBbcd6FDbeCfE2fCCDeD ; < 62r01r0hCJTl3sfJQVOPGDhI4vi4QwhN4TnK9xkn2X4S6rN7wUQrrrAg9A6CGcjg > > // < CALLS 135,749498970622 ; quote ; 36,2374813440611 ; 35,5127317171799 ; 0,0204081632653061 ; -3,4 ; 33,1572954298159 ; 39,3176672583063 ; -5,7 ; 346AFDABFFdDdBe9Fb93BaCe1Ca45A38BBabFdBe6cCEAEADf0d2a7b33f7FFc9A ; < ElpZ7f3b1mR4eD5QOxwUf82CFz8nO227x3J5784N2YB6VVt16nG56j0H8ewS9S22 > > // < CALLS 140,970633546415 ; quote ; 34,8720391984027 ; 34,1745984144347 ; 0,0204081632653061 ; -8,5 ; 31,9079158665385 ; 37,836162530267 ; -3,5 ; f74ddAFaDEDdee3eeAF3fF0FFaefAa17b5cA6aaE5BD55Dfee5fD8C7E8B70dF03 ; < T2miBGV6A9Hmd0s3NN29pvjccw382jV1kBA3X5CNIcpI605TxC9BOOJ2N69Et7vC > > // < CALLS 146,191768122208 ; quote ; 33,5666859942514 ; 32,8953522743664 ; 0,0204081632653061 ; -5,3 ; 30,71351768474 ; 36,4198543037628 ; 0,9 ; aBdCaFD4e97DEEEEAA79daCBfddD2CF2ADe7bEcB5af07be1aacF3facFEFB3B0b ; < 7CA7pe1lTMd1s2R6G00nR8U8Xu1KJUGgMW13B65LW1rue56jVmHpy7HiWT3hq90M > > // < CALLS 151,412902698002 ; quote ; 32,3185939599338 ; 31,6722220807351 ; 0,0204081632653061 ; 0,2 ; 29,5715134733394 ; 35,0656744465281 ; 6,6 ; EC482D23b42DCcAEeaBcbE95d919Dec48fb5F1C59F7DEC28c3533d08Dd16E474 ; < ZtFjKuK5g01eIcJ5su1013OmGB2ZP7nz6ev7Zukw1vGPKG8pk80U6voifB6eUGy0 > > // < CALLS 156,634037273795 ; quote ; 31,1250489205501 ; 30,5025479421391 ; 0,0204081632653061 ; 4,1 ; 28,4794197623033 ; 33,7706780787969 ; 0,1 ; BA4ac0ae62eFaEd3Dac00aC58ee2fE7FcaDeeEA0DdC51EAd54Ef7ed4F42CF7B8 ; < vqWdMqn86g9gketU3ROCEK0Ri3FusF91Xt2Q308c2C8y84GT13DRgW85AUR08y3p > > // // < PUTS ; 5Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 52,2113457579316 ; quote ; 1,45814086476824 ; 1,42897804747287 ; 0,0204081632653061 ; -4,7 ; 1,33419889126294 ; 1,58208283827354 ; -7,7 ; aaEBc9F8aAC4483bAdCFE69DEb4Aac6fd2BfdaCa82D38e4FA4FCBC4EF8b3b7bD ; < eB280J82x35gu6Uisa2ohF7MZcI88EAYv5mu8y5833fKS1zzZ7PcKftdhHcFWl2G > > // < PUTS 57,4324803337247 ; quote ; 1,99682808355766 ; 1,95689152188651 ; 0,0204081632653061 ; -8,9 ; 1,82709769645526 ; 2,16655847066006 ; -9,8 ; 95658708Ad0bffBA2A1eFd24DDBa20e9d79ae53DbDEb1F2fBad0fdFDBB79a80d ; < 5G72jn9MX4cU76w92MOb30ak9X9Z00FWGE4Px0E05S85Mx3UMmWs3vjgT5fn2tGW > > // < PUTS 62,6536149095179 ; quote ; 2,63500538277204 ; 2,5823052751166 ; 0,0204081632653061 ; -2,3 ; 2,41102992523641 ; 2,85898084030766 ; 1,9 ; 1cBA68E1DCABF0D63Cc1ff819f3BeCeccb4d33CcdFbb73B6ceAeA401e961D5dc ; < 7N124If3EDw5UcmeNM3f2j6t77lLy02ngow85Bb1s05uUQmW3EZejfWbLUnballf > > // < PUTS 67,874749485311 ; quote ; 3,3735589011214 ; 3,30608772309897 ; 0,0204081632653061 ; 7,1 ; 3,08680639452608 ; 3,66031140771672 ; 0,6 ; 43f1fdfdFBBb6accc3dAfCFB6bDAeDFBd5bfFeCfCd1c7ABFEdaCbECabfb1A7f5 ; < 325ZEpbEfN64nqIN1lg18wgIND92X4db19wP6eW47hbo87g32MHSVzWC09741Nz9 > > // < PUTS 73,0958840611042 ; quote ; 4,21220927815102 ; 4,127965092588 ; 0,0204081632653061 ; -0,8 ; 3,85417148950818 ; 4,57024706679386 ; 7 ; 4f1De3E303BE23decE6fe7aCb4Be1dED9eEAfE5EeFB4a4fc4833CB31ccBBd7FC ; < 6s1w7zClhO6erjH0fupPura4hpVTHJIL42hjt2SGw3U6Vl8GA4Ch2Pz6hD28zJ03 > > // < PUTS 78,3170186368973 ; quote ; 5,14976943915488 ; 5,04677405037178 ; 0,0204081632653061 ; -6,8 ; 4,71203903682672 ; 5,58749984148305 ; 8,9 ; 7eFBDe9fDbA78DeD5C7550BE338dAf7CAafcCfDdD4B5e3C27DedbADefb4beA2c ; < cBA9r1VyJ9HNsU1M159gGBNAn1xB17Yee4JLS51z6M78pKQcFK1L4Vfzw8413Wo8 > > // < PUTS 83,5381532126905 ; quote ; 6,18435976024961 ; 6,06067256504461 ; 0,0204081632653061 ; 2,8 ; 5,65868918062839 ; 6,71003033987082 ; -6,8 ; AEdEfeC6F3557e8Cca16BcaDBdBCC11eCd6a7Ec5A6DDB403EaB0b6CDdEDd52bf ; < PEEdH3DYcwCj6H8E946fMT1JA5Hl8z3RhSayi11t3KmMJ274X79i6YhVgjtt37l3 > > // < PUTS 88,7592877884836 ; quote ; 7,31358464071178 ; 7,16731294789755 ; 0,0204081632653061 ; -2,3 ; 6,69192994625128 ; 7,93523933517228 ; 8,7 ; 3Aed0cC6Df895c6ABBbbbf2defbFD4CEc1eAC1fce03C6f03e14dcd17EE32a50f ; < fS94YtFdwyvAyosPQ8DlJ9hVeyhUS1Y7S702fMQPraB0eO8b5Gs6uoTt7pYfTDx8 > > // < PUTS 93,9804223642768 ; quote ; 8,53467559894276 ; 8,3639820869639 ; 0,0204081632653061 ; -7,3 ; 7,80922817303262 ; 9,26012302485289 ; -5,4 ; 2d9bfd8b228ffFBfBdeE4c8A49cf287eB5eBBedCbEEE8FcC8C485bAaa95AbDAB ; < 4R6Pg085usB55LJh9QB1lX97fy9HFPlJ7UHtmey9zt03eV0obYYKRiBlcZ90j1N6 > > // < PUTS 99,20155694007 ; quote ; 9,84460607936701 ; 9,64771395777967 ; 0,0204081632653061 ; -5,9 ; 9,00781456262082 ; 10,6813975961132 ; -9,5 ; fa66fa18Bf270fCdCcDCc6d22af1a6CbEa283Bad5e5B6EFf9C0dAC8d60b01ef0 ; < CJzWK80S8QkMFpu88CsgTRLNutkX2B79gw275dRz41Nj8fBn980bL8lS926t379x > > // < PUTS 104,422691515863 ; quote ; 11,2401827561445 ; 11,0153791010216 ; 0,0204081632653061 ; -0,6 ; 10,2847672218722 ; 12,1955982904168 ; -7,3 ; E09fdb1f7ebca27A775aAADeE5aeABf1E6A8AcfcFAB2cC326BC88aDcf9AD33Fb ; < mx1xCb8MRL9KW56V0w3nt258cTqQK28xv6nUj08S30fNx7IH6Fp3101TH3XZdqIt > > // < PUTS 109,643826091656 ; quote ; 12,7181175348316 ; 12,4637551841349 ; 0,0204081632653061 ; 0,6 ; 11,6370775443709 ; 13,7991575252923 ; 8,4 ; CF15caAEAcA08e8Eab1BecaCa99BadEfD9EBcE7B7bCC4d71dED8F2E1Dae04Bab ; < d861y5htLrnK38I20EzY5vD3e5YR172MrGt36h3qCPOCc2TQnXh5MP04s55e6N0Q > > // < PUTS 114,864960667449 ; quote ; 14,2750838328006 ; 13,9895821561446 ; 0,0204081632653061 ; -5,7 ; 13,0617017070126 ; 15,4884659585887 ; -3,1 ; cFC2a2d9Ed2CbFdcAA0F7187dBe7fCDbfc81BcB6F0fCdfB6EB39BDABbB22AAFC ; < kuNK68V09Fl7K1X7M7aLNp0Fmb7TRDF3Aor9n362d7Rw321EHEPqm8ktBW9AN4OC > > // < PUTS 120,086095243243 ; quote ; 15,9077601341598 ; 15,5896049314766 ; 0,0204081632653061 ; 1,4 ; 14,5556005227562 ; 17,2599197455634 ; 7,4 ; 7f3ebA8E8d09FEaAE86bb3D73feed18C3c82D24A1cEB485E73Fac7Bc6F0fa0aA ; < d6sLRdQLW9G47WfINl9AExW9B9u64O1z3IqF27iA1e9VLC3PIHtpa3qb6H84oKHX > > // < PUTS 125,307229819036 ; quote ; 17,6128632947828 ; 17,2606060288872 ; 0,0204081632653061 ; 8,3 ; 16,1157699147263 ; 19,1099566748394 ; -5,7 ; bE9eedBebFCad1ff1d8EfAfDEfD7cAaDEdC1038fCce0dEADacFCFbCFeb8B1BaA ; < kYAI1hfgRyMZ202dkf09IHnn4UF94lTgK1DP9Li8ozHS2an0E10Hvotp3ZWxGCuw > > // < PUTS 130,528364394829 ; quote ; 19,3871736261687 ; 18,9994301536453 ; 0,0204081632653061 ; 3,1 ; 17,7392638679444 ; 21,035083384393 ; 9,8 ; a1eabbBEFbEb9aCB3AAf672FC0aa9d7FfddDFFdCCc99b3Ac9CBc4e2e79c999bf ; < kZ591l3rffEU7HBUs84w5bedspPM3z0Yc9w24dREVk1w00kn8o4N4LyF2RcnD63m > > // < PUTS 135,749498970622 ; quote ; 21,2275534109413 ; 20,8030023427224 ; 0,0204081632653061 ; -7 ; 19,4232113710113 ; 23,0318954508713 ; 9 ; dc7156bb1d3Ab4fFBAA0dcBdBFaD30A613aCbd49f9A0d1Bd9fd1CD5BdbEBEe34 ; < Cw4ifK1dNXy1G0MIixgzE22uGTz9zZ9OMyRlVHXCDx1SxRzE2HpeEDxK6Mv4pDry > > // < PUTS 140,970633546415 ; quote ; 23,1309601909321 ; 22,6683409871135 ; 0,0204081632653061 ; 7,9 ; 21,1648285747029 ; 25,0970918071614 ; 5,5 ; Fe7F6DBbFAb0F54E3BEf723eFeAA6eadc7FbaDF982AfbDFcFc988fCBA5AAeA4A ; < 4AN31r9CQ1Dgpr8d89Z0f4z7Mu5tmhSnX1LmY08vdgs994P9nFADR05qUJ40wUUD > > // < PUTS 146,191768122208 ; quote ; 25,09445591243 ; 24,5925667941814 ; 0,0204081632653061 ; -4,2 ; 22,9614271598735 ; 27,2274846649866 ; 4,7 ; e73AF2BA9CdaEC01bEC4f9D941CbBE2Db72fCe6caaBAaBeB6eAFBDFfBdFDDb3B ; < H7EE753Oy9XDxA5enYzNpO34zMJQ7k51Vc48brpC19sGvY5r3ox292E2tBq5uXuY > > // < PUTS 151,412902698002 ; quote ; 27,1152128037616 ; 26,5729085476864 ; 0,0204081632653061 ; 5 ; 24,8104197154419 ; 29,4200058920813 ; 0,1 ; d88dcDC5a0C7eC98aACcE6F2AEBfD33d9C9CEABeEb549C0BD0dfB4afFB841B6b ; < 38w769t0mtgWx301DX3r62bbKgkzhCTGqTg2u3k038D4axVoS6d4152h3KAZkFMS > > // < PUTS 156,634037273795 ; quote ; 29,1905166900272 ; 28,6067063562267 ; 0,0204081632653061 ; 9,5 ; 26,7093227713749 ; 31,6717106086795 ; 8,1 ; E2A2CEDcFc5cC697FcC4CFc3FA6E2CD8F135e5F28be0ffB3beEF51B9E03adeFa ; < 2b8b4jS2gUx7X156mCS5hr5yOnLJ7xFO6vvG0P6bvz45Ri6zbrz7s73PZkNNqc1n > > // Futures_Eurosibenergo_hydrogeneration_LLC // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 88,946246 ; 1,14 ; 77,0230228070175 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; a972FB10dDcd5CbBE0AAaBc8C6bdffb28aD4cbd4a8A0de5A4dC25291ff4DaAAB ; < zvClZ3ZQhz6HTnXpEmy2cFJj0w54Y6ElSerqMlzlW4NxBtZk4XskLTtx36x8dAKT > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 88,9523013634878 ; 1,14008778 ; 77,0223268102109 ; 88,9520513634878 ; 88,9525513634878 ; -8,2 ; -2,4 ; 9 ; 5,8 ; -4,3 ; 3,6 ; -0,56 ; Future21AP19 ; 4EDbC43b7AdfCCd4aEbFED011aEEDBabd61ac5d0BCB5a2E6c097f7ECaF1eE6A3 ; < D90d3oT5UNNp139ra66J68G8zW01351TK4GjC16wWpgK8Z5M878kK34pX3EOmB2j > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 89,9145580176993 ; 1,15381372898453 ; 76,9281401832796 ; 89,9143080176993 ; 89,9148080176993 ; 3,9 ; -7,2 ; 9,4 ; 1,1 ; -0,5 ; 8,4 ; -0,29 ; FutureJU1912 ; f76bdF0F58Ac76bB6Ff6F229Fc2Cce9aeeCFBfBC858Ed03aDda3E91CbAb4Ad3E ; < 7M3yKtfh2PfJwyZ6s4xT2082Aqy9kWXU5XietEX3uxuQMnK0ATv8ZPais0Bd8uBL > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 90,9486428007766 ; 1,18185233402553 ; 75,9543200807455 ; 90,9483928007766 ; 90,9488928007766 ; 4 ; -3,4 ; -0,2 ; 2,3 ; -2,5 ; 3,4 ; -0,92 ; FutureAU1974 ; 5D0e9A5ffcBc3fdBf9FEAB8BBc4Eb8eeBacAAAbeA814EFF07bDeEA1FAacCEdfA ; < mb4ELqStLV619lKlA1vB8nG2tGwzvi7O7EJ8wRQL8yI9lVFW1T45f4bG9SHdl5dR > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 92,0052462605474 ; 1,22526894133997 ; 74,0898379582931 ; 92,0049962605474 ; 92,0054962605474 ; 7 ; 2,6 ; 7,8 ; -1 ; 5,6 ; -3,3 ; -0,07 ; FutureOC1958 ; B97ff8Be10ac97FebCc8Ed27bAfcaCAfBE11589EcA753ac4f0c9adAc4DFEFB4B ; < PN86638rM1l3qA59tqp2ID6G7EB4RdQs58m78sNTc1OKm5rz499YqSzr1D2KYUEt > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 93,1659176345358 ; 1,28574572300012 ; 71,4606086319663 ; 93,1656676345359 ; 93,1661676345358 ; 6,1 ; 4 ; -4,1 ; -5,7 ; 8,9 ; 7,5 ; -0,33 ; FutureDE1972 ; Ea5DEBDCdf6E04134c0DccdCdceAdcacd14B0ecfDe3BA9EF6Afff4A62Ffa754B ; < yRjWGicicY220wT04O327dQyu2cQ6etwxSB9fI5fZDWE3159HVHk75l7YQHHX98F > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 94,3571798915937 ; 1,3655883804194 ; 68,0963552740649 ; 94,3569298915937 ; 94,3574298915937 ; 5,7 ; 1,9 ; -6,5 ; -2,4 ; -9 ; -9,2 ; -0,92 ; FutureFE2016 ; beB9cafc5f74c6BcBd2Bfadc7fb6c6B7cd7eDC8a3EC5e5eFdBaD1FA1fCeFcD9F ; < 5Uc8UUc65RI8k57gG7UXT1948H7uN6eT1e4f75dar464AUv3b24FT7nTPziDL497 > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 95,62077229984 ; 1,46806213248607 ; 64,13400910213 ; 95,62052229984 ; 95,62102229984 ; 4,7 ; -7,8 ; 6,5 ; -5,5 ; 7,7 ; 9 ; -0,09 ; FutureAP2078 ; 5Dfc0CA2FD9C8137ECEBAd77Ad8FDAdAa56224Ad891EDb5AbEf1ADA2C3C488E4 ; < ZAuc3uC5okd3a5LfknHNk1Uf60Fc4z1O2fu2z8e8pqa3yt4y587i7N92lE2w0k7V > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 96,9988918684236 ; 1,59740994169548 ; 59,7226043463018 ; 96,9986418684236 ; 96,9991418684236 ; -3,4 ; -2,9 ; -8,5 ; 9,7 ; 4,2 ; 1,4 ; -0,53 ; FutureJU2017 ; a98aEcad4A221C2c7bCafcB19bDabD35cad0ab4aEe1A05C67C72cCDf3f0FFEec ; < 3Y87l2Q0vASLe3Uo82718O7PZ0ea8dSx80A1J7z52KbN498daU23juzZGtC7w1oe > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 98,2776322988409 ; 1,75897165222092 ; 54,8722092961266 ; 98,2773822988409 ; 98,2778822988409 ; -4,4 ; -8,3 ; -2 ; 1,1 ; -9,9 ; 7 ; -0,76 ; FutureAU2010 ; CdBcDe75bbe6F9bA4eaA8EeaCf0daaC10B7aF808aDfBdBE8CF25FD1cD4beCabE ; < FsdBN05U12H1qHrv9Fz9Zpl8aCMll67SB9q99hnmI7nO92QYLHKWRbHxLKuVfwPj > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 99,8040496306464 ; 1,96039628534162 ; 49,9101401471257 ; 99,8037996306464 ; 99,8042996306464 ; -5,8 ; -2,1 ; 4,2 ; -1,5 ; 3,1 ; 0,2 ; -0,65 ; FutureOC2039 ; 8C3eD99eCCa80CeF9E3aAbdcc0DafeaBAbFFdF59DD2dfd3c4fDeae477A867Bcc ; < roSgZ13Ylk7np66DCPvI0lMk8hRX1HGu7Z7i56PvutXDyzQ678mKqy61mQKC0rGk > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 101,147366505294 ; 2,21161437944796 ; 44,7346305238537 ; 101,147116505294 ; 101,147616505294 ; 4,2 ; -7,8 ; 5,1 ; -3,1 ; 7,5 ; -4,6 ; -0,5 ; FutureDE2099 ; f0ff8D7B6B952eeaDECAa1Bd1b36cC1988fAdB0Eb2dCA56aFDbBfEfC24A4DEE1 ; < 6r2R2l8l2ET4j08I53mhe3782ilBs8526a94I88TKp5C4ZiLGNE8vIUxM719OzTZ > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 102,86105953055 ; 2,52500754758355 ; 39,7369315109529 ; 102,86080953055 ; 102,86130953055 ; 8 ; -0,2 ; 7,4 ; -7,2 ; -4,6 ; -1,5 ; -0,81 ; FutureFE2113 ; da3dAcA6Fb18Fb93dCefd7DFFeAf685FBBCdAfea76Ed51f14E8EFBfD37ca1fDD ; < R3C6G960ZI17QiJrw5YWoE1He6z4XA1xmmK625NFdC5NE6Ol40BKERp5vt9izNET > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 104,422691515863 ; 2,91794417212341 ; 34,786391156303 ; 104,422441515863 ; 104,422941515863 ; 8,9 ; -0,9 ; 2,5 ; -7,6 ; -8,7 ; -2,1 ; -0,75 ; FutureAP2121 ; DcCbCCb6FFeC7Dd05abcEd5627cD40BBF20FfDE706F2FB22b4f6ABAc0Dfe2A6f ; < Tv39stX84p8hlKx12oYMkV90zcY9EqJhDUHiKRy3LD2t0Rmdi4G5NcLZ2RNWp0U6 > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 106,284260486919 ; 3,41278533020502 ; 30,1429668740792 ; 106,284010486919 ; 106,284510486919 ; 1,5 ; 3,7 ; 9,6 ; -4,8 ; 9,3 ; 5,4 ; 0,57 ; FutureJU2125 ; DAfcEcEDCffb3cbea32cAE3Aef7aFB84E5c7Bd5aEF8f5056db0788EDEC2CBef4 ; < 00lvY6pM7uqGIkW6p83m5q1xUn32kVLTALMQxn740H2wMdPx5qJ8XgPE791B2qSn > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 108,079311831265 ; 4,04028402355945 ; 25,7504242773626 ; 108,079061831265 ; 108,079561831265 ; -2,6 ; 4,5 ; -2,7 ; -3 ; -4,7 ; -4,8 ; 0,92 ; FutureAU2191 ; eAaDD7b05DC75DF646Ade4DF7940e7477569af4CeBFe4cfBcdFE7adDEF6EcEDF ; < N8boCg09YF07wz3Id4lOIiZRs0UV14YF20Yglxqf8bQVWA02q9D3VOloM2GR06yT > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 109,807288812178 ; 4,84081984742778 ; 21,6836139895859 ; 109,807038812178 ; 109,807538812178 ; -5,4 ; -3,3 ; -3,2 ; 6,5 ; -5,5 ; 5,9 ; -0,34 ; FutureOC2156 ; fEFddeBb822ba9e705c88E8e39F94bE57Acc1FBAeF2B7f58fecAd06a5e7A68aC ; < 9E31Dt0H4487kdgiOi1t4pXfnzlZ242FG288b07252YK0UuK06y6Se4yN8FHYO75 > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 111,828533850049 ; 5,87033664144765 ; 18,0497650612541 ; 111,828283850049 ; 111,828783850049 ; -9,3 ; 9,5 ; 6,4 ; -4,8 ; 2,7 ; -9,8 ; -0,12 ; FutureDE2111 ; aFC2dFB951d025Acc0F6Ca5ba7bDEFFcbB6aCCAfd68ddfBCFb101CD8f5caBA0e ; < Kn2l0pnfrp0RLgSG7zI5cMsoeU2g3Nps57Gz37Q1Hi2BWzsDDyk5QNQS3818s7nE > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 113,661869611334 ; 7,20582532470991 ; 14,7736087803252 ; 113,661619611334 ; 113,662119611334 ; 4,4 ; 6,9 ; 8,9 ; 3 ; -7,4 ; 7,9 ; -0,53 ; FutureFE2244 ; D2fe3fA02eaC63Ff4Cfac7DcE7146a8dBFac2faFbA46Bda0dEFB4Cb06Cc2Af77 ; < 9SXn4NOzTD548UCu2bWAww0dF9tF4K0XG16M1jeJbI2Xp44a3A5Jg5izl939Co73 > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 115,59159550309 ; 8,95142119724208 ; 11,91321153994 ; 115,59134550309 ; 115,59184550309 ; -2,8 ; -1,1 ; -3 ; 0,5 ; 7,9 ; 0,1 ; -0,18 ; FutureAP2257 ; Df7bbaE0EDdbe740caabB0fA2ac89C9c3a5DFB2bA9DE1aacc58bdf1DADbdE3Ab ; < t8U4i9eL675C941p2D40Yn8a302y1R3okaHql2qWw0dSmkB3B86zvMSE1sed1wlP > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 117,975212872977 ; 11,2553508558275 ; 9,48170016058578 ; 117,974962872977 ; 117,975462872977 ; -4,8 ; 9,1 ; 6,4 ; -8,8 ; -7,9 ; 5,5 ; 0,55 ; FutureJU2243 ; ea72Ae8C34Edd6f4c0c5A7f994d2Ed0FcbDF4D354eFd9EfFc40aaaAC7eAEEc21 ; < CbKM25OV7Bpb3wpTz8v0vTYOcu8jLQ9XDphpx98O4I64G1o4vXP5WjXH1p4s3043 > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 120,594055013077 ; 14,3231732077031 ; 7,4195068553818 ; 120,593805013077 ; 120,594305013077 ; -7,9 ; -7,3 ; -1,6 ; 5,4 ; -9,3 ; 4,8 ; -0,62 ; FutureAU2211 ; 1b6152be9054b6f2BcDaEcfdc2B70c8C4F977c06eb3dfaa323FDd1cEB9D8f29c ; < LO3n20Hj0ax1nCr8IRF4148w2dC1Us02Bw01Y61V4J3QqiX27tI2S9060UZe3lJl > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 122,711404124748 ; 18,447771771189 ; 5,65182796311443 ; 122,711154124748 ; 122,711654124748 ; 8,9 ; 1,4 ; -1,9 ; 5,2 ; 7,3 ; 1,9 ; -0,88 ; FutureOC2266 ; 3f1fBcAB2D2FDe0fAb9B74cc2bCAfbfceddDA8a7446C1b41aa3FE17dAeC6CA92 ; < 1ktwsvUnMu1Ds7gEcTDy4g235n73ODyi8EOyCN8zQO2KglRQOf8jpqtC0QY7FW1d > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 125,27840794657 ; 24,0494945956456 ; 4,20919088126088 ; 125,27815794657 ; 125,27865794657 ; 7,5 ; 2,7 ; -8 ; -1,1 ; 2,2 ; 0,7 ; -0,97 ; FutureDE2276 ; aD0F83fBdeeDf8b6BDFBCACE27FBecAF9aFFCFEF33d4B1e73A07BDC62db97ecf ; < 69ColboEkY9IkRA5z2UwDn7gv9udHgumrIFKXSdB5333X9t7K1HK22GpLVT6W1I3 > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 127,359472854299 ; 31,73289355884 ; 3,01348438704921 ; 127,359222854299 ; 127,359722854299 ; -9,1 ; 3,8 ; -2,8 ; 2,6 ; -9,6 ; 9 ; -0,84 ; FutureFE2394 ; AF9dCC8aCAeB1DDbd4EC58eAAF4bAfBc9afdFbdDEb0F0fb6eD022DA7F2a3AFBC ; < m9A3Mg9w8qlj0369vpF5X7Pt64p4mPfqZwXBGi9KE98fMolcppnAKo4C2156eTg0 > > // < CALLS ; 7Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 57,7957977515451 ; quote ; 75,8293220185812 ; 74,3127355782095 ; 0,0204081632653061 ; -2,1 ; 68,6255364268159 ; 83,0331076103464 ; -3,1 ; dF8B7fbbdBcDbFa8c5Ab6bfA78CDbACBc52Cfbbdaab0f7Ce7C21acfCeedBa7eB ; < 044r3y70L16gE6WA1r13z8zd09ENV2H2qE05oHXt6ca5a3ZR1iO8Xwo4i63rjJQ9 > > // < CALLS 63,5753775266996 ; quote ; 73,7322794357713 ; 72,2576338470558 ; 0,0204081632653061 ; -5,6 ; 66,727712889373 ; 80,7368459821695 ; -1,9 ; aAdEfDFc1DAD6E3CcC1f5DA0aAeccEd67afc7f0Ab787B8ba2aD5beDD8EaeA613 ; < 8LgSLbaECLDba7ZR1b4Pb2BdH5Q5SKP6JSKJWvI733HLLDYjyxUdi3368ZrY3Ots > > // < CALLS 69,3549573018541 ; quote ; 71,703437256091 ; 70,2693685109692 ; 0,0204081632653061 ; -2,1 ; 64,8916107167623 ; 78,5152637954196 ; -3,9 ; b8FEFa9CADFAc2aAaDED9fEC56BBbFFCaEdDeA1E231eecbdBbdDaCBF2ce8fCab ; < 8s6WO3YlE40WLoHK4F6086W9ZtH4HC27d23rEl97ht9jSR7VhTyyC8N9c58rm7fm > > // < CALLS 75,1345370770086 ; quote ; 69,7418885557811 ; 68,3470507846655 ; 0,0204081632653061 ; -9,4 ; 63,1164091429819 ; 76,3673679685803 ; 7,7 ; EFA7aA6c74cd8EbA7BC4C6767fABa3CB2Fd1f2BFB0A056712dbDFaaa1FbbDfcE ; < wF71xW52W17cExl605bJrym33K1I0RbS55cQ5fslyIjVRes1N3XpQ2V1l6Q83F2A > > // < CALLS 80,9141168521632 ; quote ; 67,8463197897546 ; 66,4893933939595 ; 0,0204081632653061 ; 1 ; 61,400919409728 ; 74,2917201697813 ; -3,4 ; b0CAE5CAe8Ad9D3DeDeeFdCFd5A9EfBBE2CDDe31CECF3aCEAfDd2Bd84AFad4B2 ; < 192RrnitE3L6fR4FGFdSjapYr5U9ZS2D0Q6c7uMQLYxy6p7A687JkNaBk93GAeu6 > > // < CALLS 86,6936966273177 ; quote ; 66,015129686744 ; 64,6948270930091 ; 0,0204081632653061 ; -6,5 ; 59,7436923665033 ; 72,2865670069847 ; -7,3 ; a6CFA1BDBa61CB0EDf1C26a7fCB6eCD0dCabddceaEDcD4dfCac23Ff03bFBfCbE ; < y3r99yNaO53YganL5lie44acwQ4xV94T83jFhYXrXVP4a01Ppmy9v7FGbAX20U7f > > // < CALLS 92,4732764024722 ; quote ; 64,2465199791314 ; 62,9615895795487 ; 0,0204081632653061 ; 9 ; 58,1431005811139 ; 70,3499393771488 ; -8,5 ; 4AFd3A8Eb8ebcbFb95FaafADf6AD4fFFC20cFAefD4B4aa24Cb8c6EBcCdCc9c18 ; < sGr3Ma5kE078427Oa0bhXHWtAhmVjY7H4v9rdt04frBh5s6xWrHP0R9gv8289sH1 > > // < CALLS 98,2528561776267 ; quote ; 62,5385644631442 ; 61,2877931738814 ; 0,0204081632653061 ; 5,9 ; 56,5974008391455 ; 68,4797280871429 ; -8 ; CEC3D3B00fc2fE01c5F9EF399bc537bd2AcEd5AfA21a2AaBC3BACFEec39bdF80 ; < j01cE15q2G92Y2wGt8E6OUkz5F112z3lGv0HN53Sq6WQ0s7ZLbt20vDgeeOCCoBz > > // < CALLS 104,032435952781 ; quote ; 60,889261411245 ; 59,6714761830201 ; 0,0204081632653061 ; -1,8 ; 55,1047815771767 ; 66,6737412453133 ; -2,2 ; f9e56BDD8ab9f6FAAfFDb3ce6ADFEc9af92b0fF6BB8F40A81baa3aBa26fCbeBA ; < 0dBoGxXx56x5f07XbGbm2rGzZ7HYz7SD0Oz7K6r89b5Xt0Nbf3rr5hU1BHa3e3kS > > // < CALLS 109,812015727936 ; quote ; 59,2965731937061 ; 58,1106417298319 ; 0,0204081632653061 ; -3,3 ; 53,663398740304 ; 64,9297476471081 ; 3,8 ; 78bEe31ac0EdBbEB6BAbFDA5eAa89cc49B2aE5BA8f548dAcEAacFcCfbef4AeFF ; < 0R11FEJ0JjSG3EWc6k6hUFxX3OysoDOcw65rQp1qEY71a8fr9QzM2kMI5P9avWNe > > // < CALLS 115,59159550309 ; quote ; 57,7584560648362 ; 56,6032869435395 ; 0,0204081632653061 ; 7,7 ; 52,2714027386768 ; 63,2455093909956 ; 3,3 ; ddfaABdb097EA9cBfEFCCEABBA2FcdA397C1dAf5A59fcbA6EFcba1B8FdcC3Fb2 ; < Q5s129l2ZDAJV28LxeV1Ty950vr5UOk9m3r5rjGK87md1UaWSKeYT8OOeqo4MW53 > > // < CALLS 121,371175278245 ; quote ; 56,2728823786395 ; 55,1474247310667 ; 0,0204081632653061 ; -9,5 ; 50,9269585526687 ; 61,6188062046102 ; 4,2 ; ec05c4d5A2dbf7200d3F2fe6bB8Bdecb9F9dbbf9Fba307AdBDeeba8EADEaacF0 ; < Lgu8n88dPsiaIg5RLMa0dA139dg1zr7KW36fL7jzb5d180H0N46635Cp91KTuSw2 > > // < CALLS 127,150755053399 ; quote ; 54,8378569718335 ; 53,7410998323968 ; 0,0204081632653061 ; -3,5 ; 49,6282605595093 ; 60,0474533841577 ; 5,1 ; bc49CacaBC5f0FEdC9B06dBEFf4E7cCEc2DABB777BefeaBD6eBeBA15BDf0Ae6e ; < 03rig5rll02VOzvijl3s984Po1DKg1m1fsSGUdBq74ahSkQ8wLpVPD7T6b5Y0KY6 > > // < CALLS 132,930334828554 ; quote ; 53,4514290506786 ; 52,3824004696651 ; 0,0204081632653061 ; -2 ; 48,3735432908642 ; 58,5293148104931 ; -0,1 ; 28AFCbdd9d04Fe6eDC3FbCAD889A6c54FBEFbEa3dbD3c3115DcFaeFddABffD77 ; < 4r179f5kRL15Ocyk3B90gfM6pndEhwCLetPy880WPdA2TUB2Wmyee79LrknbB469 > > // < CALLS 138,709914603708 ; quote ; 52,1117006118506 ; 51,0694665996136 ; 0,0204081632653061 ; -2 ; 47,1610890537248 ; 57,0623121699764 ; 3,5 ; Cfc5ceE81A69F86DCBDdD1Ffba16CfF0a33BcB7Dc1C9AeFBC040829B16c1a54c ; < uHygP55b284OtLVJKpuk695NqbI25PCUzu0yy999t622h5oW56FWZ94Cv7E1TBas > > // < CALLS 144,489494378863 ; quote ; 50,816832193542 ; 49,8004955496712 ; 0,0204081632653061 ; 2,6 ; 45,9892331351555 ; 55,6444312519285 ; 6,3 ; bb71f8dfDd4bD9BD216A6eecFBeefCa7dCE4cB4f92AdBd9e4cCBaDc0b6cCB3fd ; < 74TTt4us08D3NGb0dZU453uIQh7X27TFChYUyp8V2V1SlHVbuvN22UB0LSHHvLVi > > // < CALLS 150,269074154017 ; quote ; 49,5650465736045 ; 48,5737456421324 ; 0,0204081632653061 ; -5,8 ; 44,856367149112 ; 54,2737259980969 ; 7 ; eC01DEB7F4aD5ed0ebDEfbDeD7Cbc74dfbfbd5FFa19adCcf3e4bAB1D5aaab20F ; < x22EDMPwnKC6j2kxvTQmObwK0aS377mxHYu4PTMD94AeEAQH5Lsj01Egtm9rxstU > > // < CALLS 156,048653929172 ; quote ; 48,354630893647 ; 47,387538275774 ; 0,0204081632653061 ; 4 ; 43,7609409587505 ; 52,9483208285434 ; 4,2 ; d5EB6fEDDa62Cea7fd5C2a4AEC1CeBbCaBc186Da852aDC6daBfB7AAD6Ed0569B ; < r9f90VxcIu35NABd3SsX2z8J8LGwi7VO3Oo20HuQI2Zv8g034aFyZYly8P5d7RM0 > > // < CALLS 161,828233704326 ; quote ; 47,1839375816582 ; 46,240258830025 ; 0,0204081632653061 ; -5,8 ; 42,7014635114007 ; 51,6664116519157 ; 2,2 ; e276004F3f06AbDBfcbDeC9f3eFa0fCcF6fc220bFb7Ac885C0aDFDefb8CfeA37 ; < 7NHhitOXPi418NwOOi8FjAtIkc6SNZ6D3xbEE0p3PhnA6cSKlYPXHDYVegcI35P2 > > // < CALLS 167,607813479481 ; quote ; 46,0513843634353 ; 45,1303566761666 ; 0,0204081632653061 ; -4,1 ; 41,6765028489089 ; 50,4262658779616 ; 4 ; ECD38ad7bAbfAfF2D6De4B2DeBdAe3fBbc6e0EEda9d47559C5fb3Fcd4924DABd ; < xvljmq9OUxHhH5Xsa73E3z220821KCOR25m9547OVmjznG4iaaI2RjEXhFZit1g9 > > // < CALLS 173,387393254635 ; quote ; 44,9554535892403 ; 44,0563445174555 ; 0,0204081632653061 ; -9,8 ; 40,6846854982624 ; 49,2262216802181 ; 4,6 ; 3D5bC1E2CcDc5FD2ffA5Ef6fE7d77B1ce0Ca49BACc45D7abd0f7D3ebcB7A34d2 ; < 1i9A6RIPmjqg4kUbm68X93hW51JV0EnO33y8uHy6LkVbTD2li0hvw008yolLMhTp > > // // < PUTS ; 7Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 57,7957977515451 ; quote ; 1,54299840391275 ; 1,51213843583449 ; 0,0204081632653061 ; 5,9 ; 1,39641355554104 ; 1,68958325228446 ; -7,7 ; EcD9A5DecEd72B8d5619EADd42fD2CbE5A8fBcEdB8BBAd2CA2f1BCCea6CCEE1c ; < CsVDpB2I12eV7lLjWmCL0cvRCCkCWKnFAO45B6Y7l5xqg064zX9R6fkmsGWQ4Q2M > > // < PUTS 63,5753775266996 ; quote ; 2,017323459636 ; 1,97697699044328 ; 0,0204081632653061 ; -9,8 ; 1,82567773097058 ; 2,20896918830142 ; -2,8 ; F6ceb694cAdDCCcD4F3f6148eabB4de6dFFcfE8e1EEaAfCBbaD2Ed0a03c20FDf ; < 0afdTIQW37WwEiAuHvW32PAeLN0OjGK9J5TfR85PGjm3VO95D0yIpxCwgjLY9m3t > > // < PUTS 69,3549573018541 ; quote ; 2,5598489184889 ; 2,50865194011912 ; 0,0204081632653061 ; -3 ; 2,31666327123245 ; 2,80303456574534 ; 0,6 ; aDD5dCA56eB4ccdbE2bf81deae2BefFB2CF1Aa8fc0bFcBDcC0afeaAa7f9cDdb1 ; < 59Aaf78Otf2fdt5M10A3O8Pk51UCv3eR6zvT11DNauw7r2LL93BcPcP373ZcI6Xn > > // < PUTS 75,1345370770086 ; quote ; 3,16966785671218 ; 3,10627449957794 ; 0,0204081632653061 ; 5,8 ; 2,86854941032452 ; 3,47078630309984 ; -8,2 ; 76DFC6efAcaBfbDF84bc3Faab3ABfaC3dC80EAB1CAf06bD564B5dAabdCFABAb5 ; < pf46UP7DFw0DWOS7850tT8TA9mJ2U74EjfF5t3WAsMnvL7Qr975Sfyj15MyG7h33 > > // < PUTS 80,9141168521632 ; quote ; 3,84546672921888 ; 3,76855739463451 ; 0,0204081632653061 ; -7 ; 3,48014738994309 ; 4,21078606849468 ; -8,1 ; 74Bc6Ab3b0Ef4AAc00a42aEce3Ef0EAFfFFdDE7E906464CCf7BF9aAcbEfED3cC ; < JhBDO6aH5uIlp1HM8uP7yFXqid2Yng6MZmDd42lGkRo4ceWEcZXQ432eU87xfgfb > > // < PUTS 86,6936966273177 ; quote ; 4,5856442647414 ; 4,49393137944658 ; 0,0204081632653061 ; -4,3 ; 4,15000805959097 ; 5,02128046989184 ; -4,6 ; e6eE6cBa7fFF161eEA3b27b9be628Efd1D6Bf27CA1BCE2aeDF6A8EDcAfbFe4f9 ; < izVXk0a08d5Xn1j0O0t26a6b0eI8ldH6Yd8X2oHHktwA6DeH4PdldiN9Np90iS3t > > // < PUTS 92,4732764024722 ; quote ; 5,38840219566191 ; 5,28063415174867 ; 0,0204081632653061 ; -3,1 ; 4,87650398707403 ; 5,90030040424979 ; 2,5 ; 8BEA27c445Bc0B5dBFD6AAFe64fef0AdFc6fC11dCFA94FEE3EbB7BeFF4DcaeD0 ; < 7B0717lm5V1yj9yvsr1A2PZTYZCQWp17F5e064ByyiO1OP8ZbNywm3cWjXoQt1fm > > // < PUTS 98,2528561776267 ; quote ; 6,25181431820796 ; 6,1267780318438 ; 0,0204081632653061 ; -4,2 ; 5,65789195797821 ; 6,84573667843772 ; 7,3 ; FDa79D17BEC8A2B2A8B0bC0Bd7CdEfAf8a3feCFac8BbadA54C0E7D5670f6c70f ; < N2Pp1x5NY37c68NMxR3zq5r5P72OZmFNYMyhKZ3d57bUxWjh2BP7DvWu573m8tyI > > // < PUTS 104,032435952781 ; quote ; 7,17387890484187 ; 7,03040132674503 ; 0,0204081632653061 ; -7,8 ; 6,49236040888189 ; 7,85539740080185 ; 5 ; 9fc7b4a29deb29CCb76Da2B3cc67b2c90D8BeBb4ef5A6DB9CdDDD3cA6Aa6ad5b ; < Vmu7W7LY71JijYxZw8so08pb9yf2RGm5XYqUjRuiDBYrpQio6yJ1252dgP9u9Zz1 > > // < PUTS 109,812015727936 ; quote ; 8,15255832583608 ; 7,98950715931936 ; 0,0204081632653061 ; 9,1 ; 7,37806528488165 ; 8,92705136679051 ; -7,3 ; dAdE3ea7d173dfe041d0fFD217dabAe88aFdDe6eaFFDCdFcFCfb9608dDEfffeB ; < X49rKF1iZiMO05NVuW769eL733Vg3xon24eZ820I8xo4Pu3z8C69iF0P374R188y > > // < PUTS 115,59159550309 ; quote ; 9,18580883549939 ; 9,0020926587894 ; 0,0204081632653061 ; -1,5 ; 8,31315699612695 ; 10,0584606748718 ; 3,6 ; F507fBD327cdE4ABBBCBFF8CD6DDf21AdC7951D5DF2bc61cAB35aeA02DfACC1b ; < r5G7k7g6S90VhX2JTAhe1W84qRbSTC9OA2x5s51Yf4d4RPuvl0UMF4zC3wuus8dV > > // < PUTS 121,371175278245 ; quote ; 10,2716027878358 ; 10,0661707320791 ; 0,0204081632653061 ; -9,5 ; 9,29580052299143 ; 11,2474050526802 ; 2,4 ; FBe79D48bacc9BCEbfdBEc3CBe6bc134eCBCFaCf02D6F3AacE7eeCfAfCFEebbB ; < 6bLQe1FgdU6Kql33P0wSqz2N61206H5ickJP3Fwu0xxO0OzA8bauiBy0HmJoebUu > > // < PUTS 127,150755053399 ; quote ; 11,407945019563 ; 11,1797861191718 ; 0,0204081632653061 ; 4,8 ; 10,3241902427045 ; 12,4916997964215 ; 1,2 ; aaA2229cACbAafA9Ee74dcbbCeaDFfbAEE9CFef91FFb83d3e8cfE67BcEefbE3C ; < Vod3MLw81bq32Q3I767ZFON82Q9Z0m1Xn6058ZWSr80l1h88EJ0PKTtVBC3gn39E > > // < PUTS 132,930334828554 ; quote ; 12,5928847369413 ; 12,3410270422025 ; 0,0204081632653061 ; -8,7 ; 11,3965606869319 ; 13,7892087869507 ; 5,5 ; d4CfdFE2e9f3AECDceDD582bdE09Db344a9CCA0E474ffaaDb9DD8fCAF39fac9a ; < o64HF5PrJzp7g6MBS8168NgoCFaEQ1x8V9rV7MVE4m0cghOUx7rXWrB85kGm0p2H > > // < PUTS 138,709914603708 ; quote ; 13,8245239366464 ; 13,5480334579135 ; 0,0204081632653061 ; -1 ; 12,511194162665 ; 15,1378537106279 ; 1,4 ; B2CbFdcC28e5C4d61d091D5eAbdd4DBCd5a06a6175e8E81e5d13BbD9DD1aBc54 ; < kbVppqOTLMFN9q2bkljQwrvfx4blXey1j0W7SG43zH6tgPfiG3MxNgwM9N34aYtc > > // < PUTS 144,489494378863 ; quote ; 15,101023156871 ; 14,7990026937336 ; 0,0204081632653061 ; 5,7 ; 13,6664259569683 ; 16,5356203567738 ; 8,1 ; BfcFCC775aedeBD730dC2CbCbcA0A0FF687F441AEdCa3D3A49EaD2CA9DaC41Bc ; < Z4IFi4LpXnfmDD9R6MhYm3QiE0iO3GQbDr0d9291YzcXd4rDYW30j737X9Gn2139 > > // < PUTS 150,269074154017 ; quote ; 16,4206051754666 ; 16,0921930719573 ; 0,0204081632653061 ; 0,3 ; 14,8606476837973 ; 17,9805626671359 ; -9,4 ; EcdCAC9fC0c7FbFfae9aBFcDbaA9FCCfcAAbC7f5DFCdaCdFBb1ef2adE4DAFeFB ; < 18rds8qfs7ot043mEW47uPXlf86rQ6ZIM3R27UoBgvOD7xQVg069AftP2fK294a6 > > // < PUTS 156,048653929172 ; quote ; 17,7815571340423 ; 17,4259259913614 ; 0,0204081632653061 ; -5,5 ; 16,0923092063083 ; 19,4708050617763 ; -4,9 ; abd4BFBF5d3D969eeB04D4ecF4c8ecF8BEbb069A37dCd368dBbACdF8e5ebf5B1 ; < DFu1zzO58Mp9U7WYqX2kZhHyhl4E7BSGorv6GOPnCVAKt5luwWqUxT9m1tQ83l99 > > // < PUTS 161,828233704326 ; quote ; 19,1822314605867 ; 18,7985868313749 ; 0,0204081632653061 ; 7,3 ; 17,3599194718309 ; 21,0045434493424 ; 7,3 ; B3bAdeeeae71f3CeeA5dE8c7AbCb949eeDFaAd28Daaec8ba3AaDECFACae82Fb0 ; < X42h105NFXGb5sey1841VPC88Kv5DoXvj91WVP84fLMa1St0135tw9RZC70Pp53o > > // < PUTS 167,607813479481 ; quote ; 20,6210458808969 ; 20,208624963279 ; 0,0204081632653061 ; 2,9 ; 18,6620465222117 ; 22,5800452395821 ; 4,5 ; 4C695bfbbc3Ac9DfA6daa922bEabCF59Acebe97bBaDA2EB30CAcbeDC5EDE3Fe6 ; < 3E7iM7M5p5f11bS45OjaJKVA70dst5ju15v2nCn1vuHRXGs233Zfw1j0LFwK90yh > > // < PUTS 173,387393254635 ; quote ; 22,096482745235 ; 21,6545530903303 ; 0,0204081632653061 ; 1,1 ; 19,9973168844377 ; 24,1956486060324 ; -9,8 ; fc6A394E9394bc0EfaBfdE8FC5EF8ea9fCE0D7bf8A1BbE7bd74c0EDC5CBDd5e1 ; < 3z1XMGyeh32Q3KZDzolpoIq524m57Y5z2NxBd1lH7U22uF3BST9H416WkGxqU4U7 > > // Futures_Mostootryad_org_spe // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 25,532252 ; 1,14 ; 21,3967122807017 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; EaE1cdcCdBeD9F8FCefEaBdECBB3bedf9df4fc6Fd43AcBcEaAC6cFB7A343dFbd ; < Nou64tvjg520NpCAk4oX2c4g4IY0ErM6nhK2iq5RL9kK6seXJaQeHHjekUcg8m3f > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 25,5308024722927 ; 1,1399259 ; 21,3968965634457 ; 25,5305524722927 ; 25,5310524722927 ; -1,1 ; 2 ; 8,7 ; 1,9 ; -1,3 ; -5 ; 0,86 ; Future52AP19 ; AFc7CD4493fCF25FE7aB1B1e2b6de79b6dECbE4eBae51e2171d4A7Ba05f8fFE1 ; < aKJ64k5LKFwjgMHIeLcGX9jNOICJ3ffmf7165963yO7YXRI6Kstc2lXL22KZ232I > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 25,8113589541883 ; 1,15385052700825 ; 21,3697596439229 ; 25,8111089541883 ; 25,8116089541883 ; 4,5 ; -3,6 ; 0,8 ; 3,7 ; -1,9 ; -3 ; 0,92 ; FutureJU1947 ; aCeaaD22BB5CaAF8c3a4cD4AEdC1bFeFAbfCbadAD4A48a6cEf1FFadca4BAFECa ; < s7dLc81vV6IJtF20onqF2K1z7ZI37Hg8GOUtbia6rGs7007E29hoZDfhjqz8S2f6 > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 26,1001923180004 ; 1,18200079592152 ; 21,0813661108004 ; 26,0999423180004 ; 26,1004423180004 ; 6,7 ; -5 ; 5,2 ; -5,7 ; -9,4 ; 3,3 ; 0,29 ; FutureAU1956 ; fEce5CDC0eBbF4E175fBaBDAbcF2FaBE6ffDe4aEe9dD5faA5Eb4bFd31f3D0ABe ; < 9d3lfS6T9rP4OdEgq2c1bx0fMz2AAoJnwry12n252RwgfEZRUNIF2EJ357mzo83O > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 26,4111035328828 ; 1,22548550318439 ; 20,5515430123442 ; 26,4108535328828 ; 26,4113535328828 ; -6,3 ; -1,6 ; 2,8 ; 9,4 ; -0,1 ; 8,8 ; -0,46 ; FutureOC1985 ; cCd6F759f17b283a0aaE8cbb66C8C06AF8bFCaA32AbCadF42FFDcffC237aEB0C ; < udPb7Zq4KQ9G294GrNb2Z9kSgK0HcNiKF8c7BR23PUZbl78OWM7N3pd46G1RP37k > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 26,7488112860661 ; 1,28599748360657 ; 19,8000494768072 ; 26,7485612860661 ; 26,7490612860661 ; 9,8 ; 5,8 ; -9,3 ; -2,1 ; -6,5 ; -0,3 ; 0,55 ; FutureDE1951 ; CE7eaaBEee41dCBdbbebB437CEFB26cEbBe6E3d5ac9BFaEEabBEdAfFcb096EAD ; < 1yxCIFJf3XPrcJu70iqDm94D71drHn2748ejpAOE591hXJ0zPA3tpC14C6B11IEx > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 27,0857998010053 ; 1,36590207084755 ; 18,8299719863508 ; 27,0855498010053 ; 27,0860498010053 ; 2,2 ; 5 ; -4 ; 8,1 ; -3,5 ; -2,6 ; -0,13 ; FutureFE2046 ; dac9F0E7AAeBfc1cCec8f3Dc4C87Ef1DfeCEC6eE145EDcd3E3daf075aEBd13fD ; < Si9mosnR4WrALM3OW1P35CkS07xth4VE05p3Qa7w8Y4U25p3G0c9g175i02ScKMx > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 27,4484475126 ; 1,46841302126465 ; 17,6925933746899 ; 27,4481975126 ; 27,4486975126 ; -7,8 ; 5,1 ; 6,2 ; 8,2 ; -5,9 ; 1,1 ; 0,41 ; FutureAP2037 ; DA464BDE2CeFfcbee56BB6F1Da5B8f37eaC4Fd54474BddAffb1eAfdfA1fEDB3D ; < JSP8a8f546lA9fjgUT1r8FHiiGFI5v0iOfmxbjnlqAH4AgDvge4eH59eOY4dR2N9 > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 27,8016134648767 ; 1,59759791601377 ; 16,4021342831028 ; 27,8013634648767 ; 27,8018634648767 ; 3,2 ; -0,9 ; 5 ; -9,8 ; 2,1 ; 2,5 ; 0,02 ; FutureJU2083 ; BAC02CBBC3Ba8CEADdbfebeD1Be53ACF5EB6bbCA3ac1fFF29ECffF7BFe3D4E5f ; < W4ErEdX0Ph16if6F49h9OM947ZP12B24N2kZv7HZw5JJd7fwKe7Psw1IU7Fcjc16 > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 28,2222823466999 ; 1,75931283644776 ; 15,0416509002934 ; 28,2220323466999 ; 28,2225323466999 ; 6,2 ; 4 ; 3,1 ; -4,2 ; 5,3 ; -5,7 ; -0,7 ; FutureAU2051 ; 2BBeA6F41feb6Fcbfd866eFe6FDc2Eaa5ca3EB091dB5CacD5f2eD8B9DF5C99dF ; < nJ7ftfHxsLF1k02y7Yf7d314Iue0A1Lv0O78I23M1z3lBFOgcx9n3U81FHfY5Ew4 > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 28,6256762191096 ; 1,96090321002745 ; 13,5982096784414 ; 28,6254262191096 ; 28,6259262191096 ; 0 ; 2,7 ; 2,1 ; 1,6 ; 6 ; 9 ; -0,12 ; FutureOC2014 ; FdafaefFFC3af788EcfcCfBab493D370ECaEeCB29Ac2d6aC3CdD2a9bdd5dFeaC ; < Ike4M7iPysylSnSpkonYLF0w070TH4v25bS5P5Jigu316slel3qQp5ex8NA5RMuQ > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 29,038821971005 ; 2,21198429177177 ; 12,1279512603344 ; 29,038571971005 ; 29,039071971005 ; -0,3 ; -9,5 ; -8,7 ; -5,5 ; -0,7 ; -0,8 ; 0,85 ; FutureDE2069 ; eB6Bf0d2a8dc3bedCaea41919Ce3DdABFfb22623ddaaBfdEeB9Ae3aE44e1B7eF ; < 62zR89249eEi1T5Ke55aW6N47DFAwYpzH7627HbBeFb74bs822Ok2H4rYa17DzEl > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 29,4896977716925 ; 2,5254099698645 ; 10,6771922672321 ; 29,4894477716925 ; 29,4899477716925 ; 9 ; -9,3 ; 3,2 ; 7,2 ; -4,1 ; -3,9 ; 0,28 ; FutureFE2143 ; 7a18D2ebc7aF1BAcF19B1F46DFaBBB2DEbC8e8fCbC09dBeACaeFC4d7CEEB0CDD ; < 8WI2NE4uG1qhrUc435Z1y10Z14471N7Zu4wYvMGpvl3D9AxMM1mt9NG5YPZwJgLx > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 29,9946040022869 ; 2,91851528577361 ; 9,27735031866939 ; 29,9943540022869 ; 29,9948540022869 ; 0,8 ; -6,3 ; -5,5 ; -0,1 ; -7,2 ; 2,6 ; -0,71 ; FutureAP2166 ; Cd62Fe6FACfAb1FE12E7D2d1Cae4BBDe2CeefcDedFFf2C05CFFCeBC1224eDccD ; < By61Td7JKq2obrh6x1z0g5rgD443N9NK1r9M2a9BYfJ11KpGxzdz7deWZI783ZLj > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 30,4848583948223 ; 3,41384729603948 ; 7,92976625820051 ; 30,4846083948223 ; 30,4851083948223 ; -3 ; 7,4 ; 2,5 ; 8,5 ; 0,6 ; 2,3 ; 0,39 ; FutureJU2157 ; DA88BCECba78D3daBf9C0caFea7FbB2ca2Dd2C6cFBcdB1B3c6DBdcF5Fa26Cb9c ; < 152UefMse40fgcu0Joado4ItISSaaQcCG05oHjiHWy981I5eY76tforR1XEqWHes > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 30,9894653608081 ; 4,04125107287478 ; 6,66828509339893 ; 30,9892153608081 ; 30,9897153608081 ; -3,5 ; -5,7 ; -4,6 ; -2,3 ; -1,6 ; 1,8 ; 0,33 ; FutureAU2155 ; BbA5fbF9eef34dDFBFAaDAE0dEcFDDdDFacCEee55AbFDfB85C6c6b6fECbD807A ; < k6KeHI44PaWVBdIzpGEYh8OHS90WRVyBIeYt38YpL37ZT77LR6Ayn8Qi84A8dU75 > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 31,4612656901512 ; 4,84209974397795 ; 5,497442711559 ; 31,4610156901512 ; 31,4615156901512 ; -4,9 ; -3,4 ; 6,5 ; -8,5 ; 1,5 ; 0,9 ; -0,29 ; FutureOC2166 ; bD2f4B659Ea0fC3AABFaefeFDeDeAeCC5596abbebB92ecAe6Ba04CAc33cb0fDd ; < 11jZRTtjHMhGeFT73ix4oy6TV42S7Z1oYZXXaiuChDh2Fz5oy4LGwjOudgSU06ag > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 32,0792449728395 ; 5,87166600220089 ; 4,46339743452969 ; 32,0789949728395 ; 32,0794949728395 ; 9,1 ; -7,5 ; -8,7 ; 9,3 ; 2,5 ; -7,3 ; 0,54 ; FutureDE2199 ; 4abA0ECDCaacACD10faCA2C3CfCeecE3ebcEfbBfCbFD1EE9BdcCEFb56dDc4FFB ; < dQtbuZm2G8oVF87RI6mq15S82a07Bc9mZ95Y5bQA2pVG2M3JEXLM8H3CdSkpWq0e > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 32,5827401162094 ; 7,20669966719837 ; 3,5211735774853 ; 32,5824901162094 ; 32,5829901162094 ; -4,1 ; 4,2 ; -0,7 ; -3,3 ; -4,5 ; -4,1 ; 0,5 ; FutureFE2254 ; Fd8eBFCd4acbcbF9b7A8C160Aaead10201a0Fe9DebD9833EEA5bB1aac7cABBb1 ; < 623F71y2Iw3Q3Au8cIie0hTs80t959A955iH4t45NH99C0ejl89zY8QGM2n9h8G7 > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 33,1898567754601 ; 8,95242807364405 ; 2,70735810468794 ; 33,1896067754601 ; 33,1901067754601 ; -2,2 ; -7 ; -1,1 ; -8,4 ; -8,6 ; 0,7 ; -0,52 ; FutureAP2286 ; 831c053bd9E6f3AB372d8feb6e5C5e1fc1c4AcCB07abD9A61584ACAecB5BBACc ; < dRL9ifJ9lq16y33603PR655982qgA8fd5Pf6CHJ9QY8YjbsoPkO08CHXjoecTYQf > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 33,8403101953302 ; 11,2569749806485 ; 2,00616375656017 ; 33,8400601953302 ; 33,8405601953302 ; -1,1 ; -4,4 ; 2,8 ; 9,9 ; 4,6 ; -7,5 ; 0,84 ; FutureJU2230 ; f0BACE65DEaAcbeE2BAe11F1DfB9C436DEeFE0CFFb627e31C9cAD0B46Eb3D657 ; < J8CXA01l6e69vSS2k332kBCAco8y3i87E63P07XkhU7fMH6Tr3Fi8ydCG7yQH9WL > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 34,601769428976 ; 14,3261293142326 ; 1,4152908765524 ; 34,601519428976 ; 34,602019428976 ; 1,8 ; -4,7 ; -0,7 ; 5,1 ; -9,3 ; 0,2 ; -0,8 ; FutureAU2273 ; ae1f2eCEca3bE9c7beAD6E2DEfA067648cFB4FC82cFE3FE20C51c606Aa3Dbda6 ; < NsuQi2A5z7P80v148XWjGt2slNtdk67H0FgCZD8LtaE6SQ2UaRS82p8xgI4EXc8x > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 35,1700998379458 ; 18,4528828160671 ; 0,905940670003223 ; 35,1698498379458 ; 35,1703498379458 ; -3,8 ; 2,2 ; -5,8 ; 0 ; -2,2 ; -7,9 ; 0,13 ; FutureOC2256 ; aDD1989D27DecDeb7C4efc50ADdBeFfA4c3fBCAa33dFdec4E5e4fAEe4cCEEA6a ; < gtX0v1GKO7UChPZ8j44um29TOLR7VEC4RM09Ep2Gsc1AV30mYamjVw2XJ21Yq1v7 > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 35,9979113231109 ; 24,058021366237 ; 0,496295592023635 ; 35,9976613231109 ; 35,9981613231109 ; 3,8 ; -3,3 ; -1,5 ; -9,7 ; 0,2 ; 1,9 ; -0,77 ; FutureDE2255 ; Bc9eE8Efa5C3beb78B9EACD5aD6ef3afeA449B503be9f9fD29CB2Ce7AC55AD6E ; < oDzs5y688A0zz1a857Gk9T86j7pElssR21o6K2RwAdnh6shKH7fLz32eJBFt1BS7 > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 36,5705504623267 ; 31,7439279634604 ; 0,152048684851546 ; 36,5703004623267 ; 36,5708004623267 ; 4,5 ; -0,9 ; -8,9 ; 8,1 ; 6,7 ; -8,8 ; -0,76 ; FutureFE2370 ; F0cC70Addcd0d7b112c4ED37b7f4Cd5D5D3EFC6a0fd9Caa9aafCDBAaDdEea0Cc ; < bj6v9Uh4wL91xEgaO8JbgE7UD7YZ3384t41yIBzT5CEYpqd6b6aYEhsZkREPzfDy > > // < CALLS ; 1Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 13,7242237563 ; quote ; 53,6714134246759 ; 52,5979851561824 ; 0,0204081632653061 ; 5,6 ; 49,6460574178253 ; 57,6967694315266 ; -6,9 ; 8E9Fa56ACeDde7b3EdBFA93cCc06fDCc0ffAe9a1CFCfFBf2cA7CB37dddf3de5d ; < 93iH82681bsA8Uj61p6vsG9ayM3N3c08khKWSZtNth8TqGE8oC698HZ66wa4X9mC > > // < CALLS 15,09664613193 ; quote ; 49,1194092921563 ; 48,1370211063132 ; 0,0204081632653061 ; 8,6 ; 45,4354535952446 ; 52,803364989068 ; 3,6 ; 5C3acfEBf08F14db704b200efb90cB8CDdFEe089ecBCbAb3EbB6507CB510BEAD ; < 4wOLC9cR6z61H9HwZgs3GPVM7xUdlznbbV3MAtgrC0SU0VOMqM9yG1fn4Ar6ehB6 > > // < CALLS 16,46906850756 ; quote ; 44,6476691224842 ; 43,7547157400345 ; 0,0204081632653061 ; -1,5 ; 41,2990939382979 ; 47,9962443066705 ; 6,8 ; 08961b4aCeB8fDC49Bfbbe8Dd2fA6DBDFccC03fAaaC834fb08d4AaFEc4fCaDd2 ; < gZtfJHBn3z3Ftj4HZZlMa9x3RtJOs3F5BbPOT6bv7r9ctpJU390xQFXKheH7L9fY > > // < CALLS 17,84149088319 ; quote ; 40,2955533564589 ; 39,4896422893297 ; 0,0204081632653061 ; -6,1 ; 37,2733868547244 ; 43,3177198581933 ; -0,7 ; ffbDAf0cF7EdAe5aDFFbcdA8bA70edCACCEd0edAF1a0dD4bEcBD65D0a32fACFc ; < 6DGd35fJtrb7C3i97M3Pyp5j9k9qg49RGO57v7q6i9rJ5LVdw394c2u6e4o57g84 > > // < CALLS 19,21391325882 ; quote ; 36,1055124059439 ; 35,383402157825 ; 0,0204081632653061 ; 3,5 ; 33,3975989754981 ; 38,8134258363897 ; 5,6 ; c6dad4E8bee7AFDC706f7EAEeebbbAdfCAF7fE6BcBf6cBfDdAacb0ECE9e9AfDC ; < R8A85837MEfL9zVf91H615wcJf4Z2yrQ277XomD50X9O0JNKf6m9F5I51fedF3R9 > > // < CALLS 20,58633563445 ; quote ; 32,1187612069275 ; 31,4763859827889 ; 0,0204081632653061 ; 2,6 ; 29,7098541164079 ; 34,527668297447 ; -0,9 ; ecbbaCdC4A8CfF5f59AEc3CC7feecc0624BbEA1eEbaEcE44D6eeBcCD8CeFEdb0 ; < Vs0M98sq1fl1Sel54iFcsjA56vVAMh5hLG3CeR4K3Xv8RFO4AAG5lkq5jM92cI35 > > // < CALLS 21,95875801008 ; quote ; 28,37139808825 ; 27,803970126485 ; 0,0204081632653061 ; 0,5 ; 26,2435432316312 ; 30,4992529448687 ; -6,7 ; 50EfF2Dfc3c51F8Ee6AbAfC3f593ca01c5ebEccEffFEb37AFCf4adD7FCC0992E ; < m35a01ZD5oZjzC28kt9OTjyQJU6l3RRP0oa4LBUj8uX9sa87NUK0NU46pL11959m > > // < CALLS 23,33118038571 ; quote ; 24,8915992243272 ; 24,3937672398406 ; 0,0204081632653061 ; -7,8 ; 23,0247292825026 ; 26,7584691661517 ; -6,4 ; F7B8BcDDcAdcdcc805edA64aCBFEB24ACD2ceDceDbb3A6fAbEABffdf8bC69a2F ; < zejZaRsd7F426kfDNRYN1ACXyvkbQo1x2Vy20qoyx11cuPtB6fDdWrwpl78N8FQ9 > > // < CALLS 24,70360276134 ; quote ; 21,6981222819644 ; 21,2641598363251 ; 0,0204081632653061 ; -5,8 ; 20,0707631108171 ; 23,3254814531117 ; -9,8 ; 0cCfbfAFdBC5bDceE2cB5C29DC7def9Eb79A80FFE7d530aa7bdBaBBDCB6fdDCa ; < r8yxE14FwFd9dsBGPNFs7u3W5TCZ3N6Do23NEQD8YG5RX2U3Ccf2Mi6I3j6xyVGb > > // < CALLS 26,07602513697 ; quote ; 18,8000367010218 ; 18,4240359670014 ; 0,0204081632653061 ; -7,7 ; 17,3900339484452 ; 20,2100394535985 ; 5,3 ; ad7Abbce774Da31Cd2eeDDb7bFF5Fb0Feb1AF2Cb1f0D536DbEB2aABBEc32f381 ; < t94UJ8gK7ur25gVMSeWuj6MqY471s0hKo7O7uRU5HE6hwHBanOcmKkz2jjxSRa3T > > // < CALLS 27,4484475126 ; quote ; 16,1974130106331 ; 15,8734647504204 ; 0,0204081632653061 ; -8,7 ; 14,9826070348356 ; 17,4122189864306 ; 5,7 ; 69ADA21e82AEfC73A8C56Ed4ADE9F6FAbC7fBCB4a1Cf9c8cbB8e8a4d30DB53f0 ; < M3e8nr0KcQ5026Vt9UOC6Xd6RgFSy1KY138Iz5A7bKNh4A952i5LM64N8L4uTLVx > > // < CALLS 28,82086988823 ; quote ; 13,8826388518815 ; 13,6049860748439 ; 0,0204081632653061 ; -1,1 ; 12,8414409379904 ; 14,9238367657727 ; -3,9 ; 5CAAea38Cf5Ca1a5cfdbB900e80b78bdb1ba3AB4fb9a80ffE9cfFae07E5350Ee ; < 5w15zXg57bI01k89zMvXteJ6FH4bV64MRDJ777xo3HB6TUVUa7Zr4yb219wd2DNL > > // < CALLS 30,19329226386 ; quote ; 11,8420480713358 ; 11,605207109909 ; 0,0204081632653061 ; 0,5 ; 10,9538944659856 ; 12,7302016766859 ; -0,4 ; 7FA7Be1FeDAFdeBd6aA9486dF3DFd008aDc1bdC6EE53dB0Ea72da3dCACB5db2a ; < 19I80V43hbaq8Q2I829IR7rG26BILP25qDp4sK7HU2IzmfOSI3aaUwGPurt0VCVM > > // < CALLS 31,56571463949 ; quote ; 10,0576120973883 ; 9,85645985544054 ; 0,0204081632653061 ; 2,1 ; 9,30329119008418 ; 10,8119330046924 ; 4,5 ; cda1A8cF3dBFD02A8F1EDcB65bd33a8Aafdc2D7Cde9aa1dd2f6738002eBdC4e8 ; < h5ck1Y8o1z4x8y4r589V71Yqv39KG84T0G3p8eiv385ZW6eHwU7LMJ8i2267B6o0 > > // < CALLS 32,93813701512 ; quote ; 8,50851942129926 ; 8,33834903287327 ; 0,0204081632653061 ; -1 ; 7,87038046470181 ; 9,1466583778967 ; -9,9 ; CbF442EAEf5Fb0C67bEfBBF8f44ef6DFD0CfcdfACBeCBaCD8beA3eBB8fDd7Dbb ; < 6hX89blXkz468kLK964g3dy32Dd6ds7B6S17UOLjOvn9k0QQk3kBLamA3TNlB8YV > > // < CALLS 34,31055939075 ; quote ; 7,17254050243703 ; 7,02908969238829 ; 0,0204081632653061 ; -5,4 ; 6,63459996475425 ; 7,71048104011981 ; -0,3 ; E58DbABfAAABFBB9fE2AbdBAbbBbAAbDEEcAcf9d34dd1ad1B6CEdFAC35f8aAFe ; < z5OB229wn4VFS3BMF23W908Xfy87PlLKBz4RElEIQRU1t75IQmHX59212R6Dyu4h > > // < CALLS 35,68298176638 ; quote ; 6,02713272602194 ; 5,9065900715015 ; 0,0204081632653061 ; -5 ; 5,57509777157029 ; 6,47916768047358 ; 3,4 ; EC0BC0ecc94ba497b4E18da0CA6d8ddDe52f83BC9EFABff0Bbba3eAaC2A87aC7 ; < qjfvK59k8JKJQGV3hR9d5470SV8WiObFtt21Y13w3k18Yphh7V628o6ZfwZ6ZWS8 > > // < CALLS 37,05540414201 ; quote ; 5,05028078983101 ; 4,94927517403439 ; 0,0204081632653061 ; -8,2 ; 4,67150973059368 ; 5,42905184906834 ; 9,7 ; f5A0EFeAb37b5Ae7DBFbbBDFFbe5e6167cE898BCbDbd4dCFCf2E5Af3aF08ecdD ; < 80YO0ys6iI68v6Unb90tc281OjS0s4aQt4QfuvX334m7SEkO2fBng56v448JA7LV > > // < CALLS 38,42782651764 ; quote ; 4,22109351113971 ; 4,13667164091692 ; 0,0204081632653061 ; -5,6 ; 3,90451149780423 ; 4,53767552447519 ; 6 ; D8cDBdeD5FdabecBcFf2cDD3a52BEaF46CC04da9Fd9aCbDd57f3dFF3E9AcC3dF ; < uCqxUHoCL21Pxm5auX98hL10F45dTloOVPUTi0ByJHNVh9Ut4zv7lNN8x2fqAR70 > > // < CALLS 39,80024889327 ; quote ; 3,52019161191621 ; 3,44978777967789 ; 0,0204081632653061 ; 4,9 ; 3,2561772410225 ; 3,78420598280993 ; -5,8 ; fCa8eE6FdfAEDCBef7dFf8AFF9AbAaBe6C69aA7bB2EBD4f7AEDF7942f2FaAcaF ; < 90k2S296l9bFK9j7B4C09G5yJMVFvS2u8vsod706rdSFMZ4v5JIGFiL1NWIutgdO > > // < CALLS 41,1726712689 ; quote ; 2,92992596859076 ; 2,87132744921894 ; 0,0204081632653061 ; 7,7 ; 2,71018152094645 ; 3,14967041623507 ; 7,4 ; 72BEEFf632AAcccebe2fCd7bFE8D77BbFFc9eBAbAEF6dA0C0Ad50dFA7bEEe4bC ; < 8s7u3M7mwtbg5pBJ2I041PZRa6CVkR14yS7m00XSsF6x2mY3ukZ56x78f5M2t71Y > > // // < PUTS ; 1Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 13,7242237563 ; quote ; 0,0585877411035796 ; 0,057415986281508 ; 0,0204081632653061 ; 4,3 ; 0,0541936605208111 ; 0,062981821686348 ; 4 ; 0Cfc0F242Fb1Cb63CFaC482cb5a6F5B9a816cfEd2Ed51Dc8acdefA4194FFbdDb ; < hSzRf6U0QVqCBeRtGSt53K5Uf7d7Bkv3BLZ1wYu07dF21JZNp8klgCmN81ECetfJ > > // < PUTS 15,09664613193 ; quote ; 0,145301040226713 ; 0,142395019422178 ; 0,0204081632653061 ; -6,9 ; 0,134403462209709 ; 0,156198618243716 ; 4,8 ; 8a55fE66796d9ddD55BfccEEBBBdbdfddff86B1Bacf380DBeEd59Fb8CDEd7dde ; < wR43oBj4eFH26nVKQyGkKuloEh84K6qmq7dByV2C1Hi0VJZC7790CY0pmqB145xX > > // < PUTS 16,46906850756 ; quote ; 0,312278302197384 ; 0,306032736153437 ; 0,0204081632653061 ; -5,2 ; 0,288857429532581 ; 0,335699174862188 ; -3,1 ; A5d58AECC8dcAe1e90fbeBE79E1EDA0bdeBAfFc29DfBf4Fd2B9Bb266ECA0AadF ; < U8tm75N12hmo7m7SnFNqqJLvpF7hRK2g9w46lW7CO19Bqc1HBw6865867mi6URTe > > // < PUTS 17,84149088319 ; quote ; 0,598879967814781 ; 0,586902368458486 ; 0,0204081632653061 ; -8,4 ; 0,553963970228673 ; 0,64379596540089 ; -0,1 ; F9BAB89FB97BDCDaa00924f79afa9DD2ab5Dd52BCe3579BcF398CdEA66Ee9CfD ; < c4V7bUU0h8Ma5tZ8by0DfMe2pFZJlx9pefzg7vF1bZvh5qaggqswRsp17DK3lqeF > > // < PUTS 19,21391325882 ; quote ; 1,0475564489426 ; 1,02660531996375 ; 0,0204081632653061 ; -0,8 ; 0,968989715271906 ; 1,1261231826133 ; -5,3 ; 8e7fEd1d3b1cABe4f6Fc3fDC8cdB2f2F42EE1c2cCbDFa9C4abDb98dB8DDEFA93 ; < G5EEY8Tn9a5lqApCMDP0bjA9wLr6JJcdM8Z99L8NwP9lclnL2Z6iL8JZMk5cFiL9 > > // < PUTS 20,58633563445 ; quote ; 1,69952268156894 ; 1,66553222793756 ; 0,0204081632653061 ; -7,4 ; 1,57205848045127 ; 1,82698688268661 ; -6,5 ; fA0CAa6eA1FB8fCe1cABCDd2D9ccdEC5B17dBebdceBF2fcDbe5faCbdCFFf4AfE ; < Y1RE31EG0ZCqOXHz75k8649b3ok590K9VjD90Yw59bx6861sOPy126Gg11PqGrjf > > // < PUTS 21,95875801008 ; quote ; 2,5908769945342 ; 2,53905945464351 ; 0,0204081632653061 ; 1,1 ; 2,39656121994413 ; 2,78519276912426 ; -9,4 ; 739BbDCddFEaD04efeEFeDCaCd8D5c02b4A3DFACcF8eC1a282cdecaf7dDB0eFe ; < V68JsvPwaWBxmR4S8bqR70mbM9WMVP2Tufd34H3f67m69SFqJ3l5H8iFv61v6m6u > > // < PUTS 23,33118038571 ; quote ; 3,74979556225415 ; 3,67479965100907 ; 0,0204081632653061 ; -5,8 ; 3,46856089508509 ; 4,03103022942321 ; -6,4 ; 668eaC153aAFbDD83891E1c62EFaea6BC6E8EcA7cFfb25FaeeDbC7EC1CD2Ccdd ; < 2D4294I7Y4wGJRzTY83FR752t7bbYvEgbC57w906Z42S778FvdhM8Hz0pzx9tx69 > > // < PUTS 24,70360276134 ; quote ; 5,19503605153417 ; 5,09113533050349 ; 0,0204081632653061 ; -0,8 ; 4,80540834766911 ; 5,58466375539924 ; 2,4 ; 72FcaCFbfEb522EFAfFCBf2d9e9a7EE8DbFF23b6bd8A63981ADDA4b84d421A7c ; < FEMboZK2ZJ0Q5LnS13GLuC9XqQLc9H3N0n9reTOj0Wy4Hb378m3U4FvwVOG30PP2 > > // < PUTS 26,07602513697 ; quote ; 6,93566790223434 ; 6,79695454418966 ; 0,0204081632653061 ; -1,5 ; 6,41549280956677 ; 7,45584299490192 ; 9,7 ; 3AeC4DaDc1daCC06C29F665d0E8EaDF23dDFDD37cA11BDABbA2cC78bdC3a98ee ; < nO6NAiVjyg4FexRp7SVAkBS5pGPsBsMy7b2o914w672jAl0ib61sP0KWbn820Et3 > > // < PUTS 27,4484475126 ; quote ; 8,97176164348836 ; 8,7923264106186 ; 0,0204081632653061 ; 6,7 ; 8,29887952022674 ; 9,64464376674999 ; -1,5 ; 1f6ed08AeBF43BFAD946fd73bbeB5Ad47A3DA1CFC05fadac40bFDE7ad6CEeFcE ; < Q7mT4wFT098tQFX475nXQihbbG75C7Qy2W6V73D0iC35C6hz6s7Xw18nU4Xt2yk4 > > // < PUTS 28,82086988823 ; quote ; 11,2957049163796 ; 11,069790818052 ; 0,0204081632653061 ; -3,7 ; 10,4485270476511 ; 12,1428827851081 ; -2,2 ; AFecBb4555bf5b9EDbCed13B2f2afeABbA96cf68cE19a4e150189aC5DcAA3dDa ; < jf6LSyCfqR161q29WkVwdrrkM8woS3yDkhFY6Jjnn1y7HQqKY23HpBhmisd8883X > > // < PUTS 30,19329226386 ; quote ; 13,8938315674766 ; 13,6159549361271 ; 0,0204081632653061 ; 5,8 ; 12,8517941999158 ; 14,9358689350373 ; 2,4 ; Baa7A15f0aADfaa71FF0C4C0EfBDF05aa6D5D77F52fABBb5CaE9F9D5fDCE69e5 ; < 53V94ADTC3lIndq9nl1BH9s1GQ089Joa145G9wWxOBUGfbo1hhER0BP0cO2Z2908 > > // < PUTS 31,56571463949 ; quote ; 16,7481130251719 ; 16,4131507646684 ; 0,0204081632653061 ; -3,2 ; 15,492004548284 ; 18,0042215020598 ; -8,2 ; D2D79bbcfFDfcC84e7cabF8fd32A5cE3AdEfa4BBFeEEBB2473acAaa9cDAA10F4 ; < Nw0uhb1Blx86d2iCc54wd65Ym7OVJeK60VSAkMzyX12ryFWh6dSyJKGkpgdtjt8h > > // < PUTS 32,93813701512 ; quote ; 19,8377377807256 ; 19,4409830251111 ; 0,0204081632653061 ; 0,9 ; 18,3499074471712 ; 21,32556811428 ; -4,1 ; 8bF37Fb20DDddcB9AacEFf3BDeA00041CFddb0cAcebdD38AcC7bbC4A3CA898Ae ; < 4hSwg45uZlxzLeO1dry5BDY2kb1lpHK166O827s8renQYP3SX09T9J2354t5dptd > > // < PUTS 34,31055939075 ; quote ; 23,1404762935061 ; 22,677666767636 ; 0,0204081632653061 ; -6,9 ; 21,4049405714932 ; 24,8760120155191 ; -1,4 ; 9CC8c08e8a5AABE16cbD9f37AD2ceaEe86cBD7dbdcba19Ba4eeecf928d8AEB14 ; < im342q220VO8608D32Vku6JJJ740V2082lROGRz02oeeL3wbBR2K6j7q8EzxI5aF > > // < PUTS 35,68298176638 ; quote ; 26,6337859487338 ; 26,1011102297591 ; 0,0204081632653061 ; -9,6 ; 24,6362520025788 ; 28,6313198948888 ; -2,4 ; e9AC1FBFaf6CBea3ACaaeBcFAEDdBFfbE0b8BaEA8BEdEBCDffBaeaA3EfcCB2e5 ; < to318Wf451q046VSXbG0O457nEBp38W33yZO7y8yUGZK784o8dSkLSuR90iC9Myk > > // < PUTS 37,05540414201 ; quote ; 30,2956514441856 ; 29,6897384153019 ; 0,0204081632653061 ; -8,4 ; 28,0234775858717 ; 32,5678253024996 ; 7,3 ; BcDAeEAfd866ecCAbDaA7fa10BeE4EEfE8AAB2C902Aaca97Ea5db68DadbF1CDD ; < 6LsE2VBUzbV03wte0HE0YVBKf3M9ORu27L4O108I0NByxtfCt38m7K6T0aSBlSn1 > > // < PUTS 38,42782651764 ; quote ; 34,1051815971371 ; 33,4230779651944 ; 0,0204081632653061 ; -6,4 ; 31,5472929773518 ; 36,6630702169224 ; -7,2 ; 1Ed8aaeC5A9D98DD7e4545874BaBBfB9A3afFfdEFBea36B9CEFcD66f99a2eBe6 ; < Y6IbJoCvr9v8V2lT6Qs43mo6181p6g7Asu0h67PLpnh6zGq58yZ5Es4HYr9K5w8p > > // < PUTS 39,80024889327 ; quote ; 38,0429971295564 ; 37,2821371869652 ; 0,0204081632653061 ; -4,1 ; 35,1897723448396 ; 40,8962219142731 ; 5,3 ; db7735EeeFDb63d0bDE062ECEC7BF3D9f6DafaA7f6DD61e1C3AB8BbfAfeDCD80 ; < b6E90AzM6z6hxH228x13LLGpbefLl3306jwy36604d3mn2dmZg523Sruxx6pO3iN > > // < PUTS 41,1726712689 ; quote ; 42,0914489178737 ; 41,2496199395162 ; 0,0204081632653061 ; 5,7 ; 38,9345902490332 ; 45,2483075867142 ; -6,5 ; dEdA4AB20aAb8caFcA0A7BDBcAF7b83a058fb3ACD53fFB4f5AabA3aF3Ffb10Bf ; < l03FrH9ul9047f598sh4SVWNPL69TdSS7i5q6u2Srhf82h4ii8H4wk0gJADl24Gi > > // Futures_Mostootryad_org_spe // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 25,532252 ; 1,14 ; 21,3967122807017 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; EaE1cdcCdBeD9F8FCefEaBdECBB3bedf9df4fc6Fd43AcBcEaAC6cFB7A343dFbd ; < Nou64tvjg520NpCAk4oX2c4g4IY0ErM6nhK2iq5RL9kK6seXJaQeHHjekUcg8m3f > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 25,5308024722927 ; 1,1399259 ; 21,3968965634457 ; 25,5305524722927 ; 25,5310524722927 ; -1,1 ; 2 ; 8,7 ; 1,9 ; -1,3 ; -5 ; 0,86 ; Future52AP19 ; AFc7CD4493fCF25FE7aB1B1e2b6de79b6dECbE4eBae51e2171d4A7Ba05f8fFE1 ; < aKJ64k5LKFwjgMHIeLcGX9jNOICJ3ffmf7165963yO7YXRI6Kstc2lXL22KZ232I > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 25,8113589541883 ; 1,15385052700825 ; 21,3697596439229 ; 25,8111089541883 ; 25,8116089541883 ; 4,5 ; -3,6 ; 0,8 ; 3,7 ; -1,9 ; -3 ; 0,92 ; FutureJU1947 ; aCeaaD22BB5CaAF8c3a4cD4AEdC1bFeFAbfCbadAD4A48a6cEf1FFadca4BAFECa ; < s7dLc81vV6IJtF20onqF2K1z7ZI37Hg8GOUtbia6rGs7007E29hoZDfhjqz8S2f6 > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 26,1001923180004 ; 1,18200079592152 ; 21,0813661108004 ; 26,0999423180004 ; 26,1004423180004 ; 6,7 ; -5 ; 5,2 ; -5,7 ; -9,4 ; 3,3 ; 0,29 ; FutureAU1956 ; fEce5CDC0eBbF4E175fBaBDAbcF2FaBE6ffDe4aEe9dD5faA5Eb4bFd31f3D0ABe ; < 9d3lfS6T9rP4OdEgq2c1bx0fMz2AAoJnwry12n252RwgfEZRUNIF2EJ357mzo83O > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 26,4111035328828 ; 1,22548550318439 ; 20,5515430123442 ; 26,4108535328828 ; 26,4113535328828 ; -6,3 ; -1,6 ; 2,8 ; 9,4 ; -0,1 ; 8,8 ; -0,46 ; FutureOC1985 ; cCd6F759f17b283a0aaE8cbb66C8C06AF8bFCaA32AbCadF42FFDcffC237aEB0C ; < udPb7Zq4KQ9G294GrNb2Z9kSgK0HcNiKF8c7BR23PUZbl78OWM7N3pd46G1RP37k > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 26,7488112860661 ; 1,28599748360657 ; 19,8000494768072 ; 26,7485612860661 ; 26,7490612860661 ; 9,8 ; 5,8 ; -9,3 ; -2,1 ; -6,5 ; -0,3 ; 0,55 ; FutureDE1951 ; CE7eaaBEee41dCBdbbebB437CEFB26cEbBe6E3d5ac9BFaEEabBEdAfFcb096EAD ; < 1yxCIFJf3XPrcJu70iqDm94D71drHn2748ejpAOE591hXJ0zPA3tpC14C6B11IEx > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 27,0857998010053 ; 1,36590207084755 ; 18,8299719863508 ; 27,0855498010053 ; 27,0860498010053 ; 2,2 ; 5 ; -4 ; 8,1 ; -3,5 ; -2,6 ; -0,13 ; FutureFE2046 ; dac9F0E7AAeBfc1cCec8f3Dc4C87Ef1DfeCEC6eE145EDcd3E3daf075aEBd13fD ; < Si9mosnR4WrALM3OW1P35CkS07xth4VE05p3Qa7w8Y4U25p3G0c9g175i02ScKMx > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 27,4484475126 ; 1,46841302126465 ; 17,6925933746899 ; 27,4481975126 ; 27,4486975126 ; -7,8 ; 5,1 ; 6,2 ; 8,2 ; -5,9 ; 1,1 ; 0,41 ; FutureAP2037 ; DA464BDE2CeFfcbee56BB6F1Da5B8f37eaC4Fd54474BddAffb1eAfdfA1fEDB3D ; < JSP8a8f546lA9fjgUT1r8FHiiGFI5v0iOfmxbjnlqAH4AgDvge4eH59eOY4dR2N9 > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 27,8016134648767 ; 1,59759791601377 ; 16,4021342831028 ; 27,8013634648767 ; 27,8018634648767 ; 3,2 ; -0,9 ; 5 ; -9,8 ; 2,1 ; 2,5 ; 0,02 ; FutureJU2083 ; BAC02CBBC3Ba8CEADdbfebeD1Be53ACF5EB6bbCA3ac1fFF29ECffF7BFe3D4E5f ; < W4ErEdX0Ph16if6F49h9OM947ZP12B24N2kZv7HZw5JJd7fwKe7Psw1IU7Fcjc16 > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 28,2222823466999 ; 1,75931283644776 ; 15,0416509002934 ; 28,2220323466999 ; 28,2225323466999 ; 6,2 ; 4 ; 3,1 ; -4,2 ; 5,3 ; -5,7 ; -0,7 ; FutureAU2051 ; 2BBeA6F41feb6Fcbfd866eFe6FDc2Eaa5ca3EB091dB5CacD5f2eD8B9DF5C99dF ; < nJ7ftfHxsLF1k02y7Yf7d314Iue0A1Lv0O78I23M1z3lBFOgcx9n3U81FHfY5Ew4 > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 28,6256762191096 ; 1,96090321002745 ; 13,5982096784414 ; 28,6254262191096 ; 28,6259262191096 ; 0 ; 2,7 ; 2,1 ; 1,6 ; 6 ; 9 ; -0,12 ; FutureOC2014 ; FdafaefFFC3af788EcfcCfBab493D370ECaEeCB29Ac2d6aC3CdD2a9bdd5dFeaC ; < Ike4M7iPysylSnSpkonYLF0w070TH4v25bS5P5Jigu316slel3qQp5ex8NA5RMuQ > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 29,038821971005 ; 2,21198429177177 ; 12,1279512603344 ; 29,038571971005 ; 29,039071971005 ; -0,3 ; -9,5 ; -8,7 ; -5,5 ; -0,7 ; -0,8 ; 0,85 ; FutureDE2069 ; eB6Bf0d2a8dc3bedCaea41919Ce3DdABFfb22623ddaaBfdEeB9Ae3aE44e1B7eF ; < 62zR89249eEi1T5Ke55aW6N47DFAwYpzH7627HbBeFb74bs822Ok2H4rYa17DzEl > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 29,4896977716925 ; 2,5254099698645 ; 10,6771922672321 ; 29,4894477716925 ; 29,4899477716925 ; 9 ; -9,3 ; 3,2 ; 7,2 ; -4,1 ; -3,9 ; 0,28 ; FutureFE2143 ; 7a18D2ebc7aF1BAcF19B1F46DFaBBB2DEbC8e8fCbC09dBeACaeFC4d7CEEB0CDD ; < 8WI2NE4uG1qhrUc435Z1y10Z14471N7Zu4wYvMGpvl3D9AxMM1mt9NG5YPZwJgLx > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 29,9946040022869 ; 2,91851528577361 ; 9,27735031866939 ; 29,9943540022869 ; 29,9948540022869 ; 0,8 ; -6,3 ; -5,5 ; -0,1 ; -7,2 ; 2,6 ; -0,71 ; FutureAP2166 ; Cd62Fe6FACfAb1FE12E7D2d1Cae4BBDe2CeefcDedFFf2C05CFFCeBC1224eDccD ; < By61Td7JKq2obrh6x1z0g5rgD443N9NK1r9M2a9BYfJ11KpGxzdz7deWZI783ZLj > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 30,4848583948223 ; 3,41384729603948 ; 7,92976625820051 ; 30,4846083948223 ; 30,4851083948223 ; -3 ; 7,4 ; 2,5 ; 8,5 ; 0,6 ; 2,3 ; 0,39 ; FutureJU2157 ; DA88BCECba78D3daBf9C0caFea7FbB2ca2Dd2C6cFBcdB1B3c6DBdcF5Fa26Cb9c ; < 152UefMse40fgcu0Joado4ItISSaaQcCG05oHjiHWy981I5eY76tforR1XEqWHes > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 30,9894653608081 ; 4,04125107287478 ; 6,66828509339893 ; 30,9892153608081 ; 30,9897153608081 ; -3,5 ; -5,7 ; -4,6 ; -2,3 ; -1,6 ; 1,8 ; 0,33 ; FutureAU2155 ; BbA5fbF9eef34dDFBFAaDAE0dEcFDDdDFacCEee55AbFDfB85C6c6b6fECbD807A ; < k6KeHI44PaWVBdIzpGEYh8OHS90WRVyBIeYt38YpL37ZT77LR6Ayn8Qi84A8dU75 > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 31,4612656901512 ; 4,84209974397795 ; 5,497442711559 ; 31,4610156901512 ; 31,4615156901512 ; -4,9 ; -3,4 ; 6,5 ; -8,5 ; 1,5 ; 0,9 ; -0,29 ; FutureOC2166 ; bD2f4B659Ea0fC3AABFaefeFDeDeAeCC5596abbebB92ecAe6Ba04CAc33cb0fDd ; < 11jZRTtjHMhGeFT73ix4oy6TV42S7Z1oYZXXaiuChDh2Fz5oy4LGwjOudgSU06ag > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 32,0792449728395 ; 5,87166600220089 ; 4,46339743452969 ; 32,0789949728395 ; 32,0794949728395 ; 9,1 ; -7,5 ; -8,7 ; 9,3 ; 2,5 ; -7,3 ; 0,54 ; FutureDE2199 ; 4abA0ECDCaacACD10faCA2C3CfCeecE3ebcEfbBfCbFD1EE9BdcCEFb56dDc4FFB ; < dQtbuZm2G8oVF87RI6mq15S82a07Bc9mZ95Y5bQA2pVG2M3JEXLM8H3CdSkpWq0e > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 32,5827401162094 ; 7,20669966719837 ; 3,5211735774853 ; 32,5824901162094 ; 32,5829901162094 ; -4,1 ; 4,2 ; -0,7 ; -3,3 ; -4,5 ; -4,1 ; 0,5 ; FutureFE2254 ; Fd8eBFCd4acbcbF9b7A8C160Aaead10201a0Fe9DebD9833EEA5bB1aac7cABBb1 ; < 623F71y2Iw3Q3Au8cIie0hTs80t959A955iH4t45NH99C0ejl89zY8QGM2n9h8G7 > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 33,1898567754601 ; 8,95242807364405 ; 2,70735810468794 ; 33,1896067754601 ; 33,1901067754601 ; -2,2 ; -7 ; -1,1 ; -8,4 ; -8,6 ; 0,7 ; -0,52 ; FutureAP2286 ; 831c053bd9E6f3AB372d8feb6e5C5e1fc1c4AcCB07abD9A61584ACAecB5BBACc ; < dRL9ifJ9lq16y33603PR655982qgA8fd5Pf6CHJ9QY8YjbsoPkO08CHXjoecTYQf > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 33,8403101953302 ; 11,2569749806485 ; 2,00616375656017 ; 33,8400601953302 ; 33,8405601953302 ; -1,1 ; -4,4 ; 2,8 ; 9,9 ; 4,6 ; -7,5 ; 0,84 ; FutureJU2230 ; f0BACE65DEaAcbeE2BAe11F1DfB9C436DEeFE0CFFb627e31C9cAD0B46Eb3D657 ; < J8CXA01l6e69vSS2k332kBCAco8y3i87E63P07XkhU7fMH6Tr3Fi8ydCG7yQH9WL > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 34,601769428976 ; 14,3261293142326 ; 1,4152908765524 ; 34,601519428976 ; 34,602019428976 ; 1,8 ; -4,7 ; -0,7 ; 5,1 ; -9,3 ; 0,2 ; -0,8 ; FutureAU2273 ; ae1f2eCEca3bE9c7beAD6E2DEfA067648cFB4FC82cFE3FE20C51c606Aa3Dbda6 ; < NsuQi2A5z7P80v148XWjGt2slNtdk67H0FgCZD8LtaE6SQ2UaRS82p8xgI4EXc8x > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 35,1700998379458 ; 18,4528828160671 ; 0,905940670003223 ; 35,1698498379458 ; 35,1703498379458 ; -3,8 ; 2,2 ; -5,8 ; 0 ; -2,2 ; -7,9 ; 0,13 ; FutureOC2256 ; aDD1989D27DecDeb7C4efc50ADdBeFfA4c3fBCAa33dFdec4E5e4fAEe4cCEEA6a ; < gtX0v1GKO7UChPZ8j44um29TOLR7VEC4RM09Ep2Gsc1AV30mYamjVw2XJ21Yq1v7 > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 35,9979113231109 ; 24,058021366237 ; 0,496295592023635 ; 35,9976613231109 ; 35,9981613231109 ; 3,8 ; -3,3 ; -1,5 ; -9,7 ; 0,2 ; 1,9 ; -0,77 ; FutureDE2255 ; Bc9eE8Efa5C3beb78B9EACD5aD6ef3afeA449B503be9f9fD29CB2Ce7AC55AD6E ; < oDzs5y688A0zz1a857Gk9T86j7pElssR21o6K2RwAdnh6shKH7fLz32eJBFt1BS7 > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 36,5705504623267 ; 31,7439279634604 ; 0,152048684851546 ; 36,5703004623267 ; 36,5708004623267 ; 4,5 ; -0,9 ; -8,9 ; 8,1 ; 6,7 ; -8,8 ; -0,76 ; FutureFE2370 ; F0cC70Addcd0d7b112c4ED37b7f4Cd5D5D3EFC6a0fd9Caa9aafCDBAaDdEea0Cc ; < bj6v9Uh4wL91xEgaO8JbgE7UD7YZ3384t41yIBzT5CEYpqd6b6aYEhsZkREPzfDy > > // < CALLS ; 2Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 14,9973020011434 ; quote ; 57,5879066477486 ; 56,4361485147936 ; 0,0204081632653061 ; 5,6 ; 53,124843882548 ; 62,0509694129491 ; -5,5 ; 3C2EcABBD33EbbCfA8d8B6C82CEC30dDbfF0BFd896aA6a3CA335E574Ca3eEBb2 ; < o7Y56hVFO4xj0b3jWBD8PYFzCb1d8Sq11jBnqV1i574LA512EJbNg4k0dD9fdvmc > > // < CALLS 16,4970322012578 ; quote ; 53,6044676860604 ; 52,5323783323391 ; 0,0204081632653061 ; 4,2 ; 49,4501214403907 ; 57,75881393173 ; -6,5 ; 13D7dBBc47cC34CdbbD54FF873275C8DFdAF8BAbfCd04DaF4aeaAb0ddaB5f39f ; < XhpKJ2cw7Kx1056Co1Gp5gO8Gb6G8Z9JVJKYkfPC4Hdo2dGsGoqYEFD6Q49IT5N9 > > // < CALLS 17,9967624013721 ; quote ; 49,749238783706 ; 48,7542540080319 ; 0,0204081632653061 ; -4,9 ; 45,8936727779688 ; 53,6048047894432 ; 3 ; 3A5A0fAb3ac15BAfFEBaEba2dEf4c5cEAB5DD29aBdbA5Dbd6Ffecac6fA7fDe7f ; < 1MVQa08nu1Q84YjGZ4M7YdFYyo01fuP6FmdfVH1PgR7y3mI7V3DIYWnfIB21t5VN > > // < CALLS 19,4964926014865 ; quote ; 46,043352958261 ; 45,1224858990958 ; 0,0204081632653061 ; -4,3 ; 42,4749931039958 ; 49,6117128125262 ; -8,9 ; Ca5DAefA8BdCcF8fD8c8AddE8Fa14fF0CCaC4D2D15f0e6CEa8CDaa33bbDdFF4C ; < B775orGupB4ce5836TSr3WIg73vX3U2gspHEm4J5JIofD739W28742gv6Kz5I13Q > > // < CALLS 20,9962228016008 ; quote ; 42,5041624904487 ; 41,6540792406398 ; 0,0204081632653061 ; -5,7 ; 39,2100898974389 ; 45,7982350834585 ; -9,4 ; 8fb6A246bD407FE8effC9dfcad69B6936e5dd3A7B0c4DfD0ce2B0BBaBDc3debB ; < yPUqa915QB2oj1TQZNek2LaD1U23i4hhv94vaskq5kn7m2mon3v30O2bEB2zHYXG > > // < CALLS 22,4959530017151 ; quote ; 39,1447745021317 ; 38,3618790120891 ; 0,0204081632653061 ; 6,8 ; 36,1110544782165 ; 42,1784945260469 ; 3,7 ; b3ba12Bcc8DFAEde703f05ed0c1AD8baCCEFDC14EeDdcA3fEcF8b8B4D7A2a8ee ; < T553VzE52K3IXW03Gkye85r2y7r0m8n2Y9FcL2n0ZaNM435cbPw280B9XgSmJQBl > > // < CALLS 23,9956832018295 ; quote ; 35,9740072988448 ; 35,2545271528679 ; 0,0204081632653061 ; 7 ; 33,1860217331843 ; 38,7619928645052 ; -7 ; 9E7F9DbC4c8DCCddDb9228e3C1EDC94fDc36a32B14Cdc9fcE1D58DBbe753E0bC ; < vjZW241b8yqB7T6w5d9yyuhvwGtVZo47ROeFztETNe6oq381tNiAfCTXh9269C3u > > // < CALLS 25,4954134019438 ; quote ; 32,9966443893104 ; 32,3367115015242 ; 0,0204081632653061 ; 1,2 ; 30,4394044491389 ; 35,553884329482 ; 1,6 ; E4feCCC6cFb2fFd21Af0D34abD193fCDbF0f9C24d977E1c8d7deAe2268eeeaCb ; < 1zk4LFZW6dmIKeFyknKDj0I41INS0UFNg0MX8rGHJOBEw5RTuM0k2KN170kijvfX > > // < CALLS 26,9951436020582 ; quote ; 30,2138736853229 ; 29,6095962116165 ; 0,0204081632653061 ; 0,2 ; 27,8722984747104 ; 32,5554488959355 ; 3,7 ; F7AebEc83d1CfCc3dffEEcD6Bab407e6f7CDD1fCCeFE5EFA0FaFdFfeB2BBFe8A ; < w90VqwvnA3xbzuvIV5HfhYicW6loE16e13528gz5dd7UnE3Fvs0ewiP92KvLay1Z > > // < CALLS 28,4948738021725 ; quote ; 27,623821116272 ; 27,0713446939466 ; 0,0204081632653061 ; -2,7 ; 25,4829749797609 ; 29,7646672527831 ; 1,8 ; 19a8dD26f9DaAEd1DcF1b4aed275accDDEae7acC55E6DeF4aDA93d6dAbDAecCb ; < 45nYY3fE9A3G6q7438sK7EtVoEJ6TSPP662iURqS7dDTkxV5uC8DlAy5DRb3hX6F > > // < CALLS 29,9946040022869 ; quote ; 25,2221118387227 ; 24,7176696019483 ; 0,0204081632653061 ; 9,2 ; 23,2673981712217 ; 27,1768255062238 ; -5,8 ; 716bFfA1AC0bCA2D9944a48bdC962CA0c8E2A5B6dfDCEDbc5cCb73dCBdfDB39C ; < 024qkrczh8zu6viIf9Hp6A4hY3WRG0Vb3nVuv56c92PH4o5CTZL196129DU83A34 > > // < CALLS 31,4943342024012 ; quote ; 23,0024138329086 ; 22,5423655562505 ; 0,0204081632653061 ; 9,4 ; 21,2197267608582 ; 24,7851009049591 ; -1,6 ; DD66bEBed5BEfE28bbfCbDc6B1D8FdD2BBfedF2637d1Dca7bAA9dcB955FaFf44 ; < YmW82kpIhc3m5XAWeT4dxezkcBZZFn64sAVHpJ792xTKxjNx0N953vWgg9xsXRp5 > > // < CALLS 32,9940644025156 ; quote ; 20,9569361662668 ; 20,5377974429415 ; 0,0204081632653061 ; -1,4 ; 19,3327736133811 ; 22,5810987191525 ; -7,9 ; Dd4e93DB7ec4C3d9EDB05c1cf51BaaAc110EDcDE0BC50FE67ea4f13eb3Eb5D72 ; < 9kgh4LYmuESRLK34V8uL2KQVvI6Xzxgey27wF5p12AE1O1562fe95WqzLJf4FA2k > > // < CALLS 34,4937946026299 ; quote ; 19,0768673163296 ; 18,695329970003 ; 0,0204081632653061 ; 4,8 ; 17,598410099314 ; 20,5553245333451 ; 8 ; Edb5eAABfbAC28bdEF2Af6eE0ed703e6CBaC3eFaCDBf3eBaFF2d052dDC8C4d5A ; < 8Lx09Go5nGBi1lN04q20d11sGM427a52zVC5FwjmN84aUmfI1g6H784qE260HAbL > > // < CALLS 35,9935248027442 ; quote ; 17,3527481632677 ; 17,0056932000023 ; 0,0204081632653061 ; -5,3 ; 16,0079101806144 ; 18,6975861459209 ; 8,8 ; 89cCEeecCFEbf7D50Fd2B2901adDBc1aDF6b312f8eAB95cd1beACCcCd98a3eaE ; < yV6a50jAk5EQ2pDMZsR2K24fcmQQdzXIhPBn2252EZ60mQlDjn6dYJ20AjosGdL4 > > // < CALLS 37,4932550028586 ; quote ; 15,7747803335794 ; 15,4592847269078 ; 0,0204081632653061 ; 3,3 ; 14,552234857727 ; 16,9973258094318 ; -0,9 ; aF93fa3Dddbf24da5dAca6Ba5DbB0e6B3bef3BbbbeeDCBAfCcbac7aCFEeF3aAD ; < 2fkq65yXO1GRAZ93SrFO7tD6qdfVQ9D4t7n6wiV4FmXR08D4UqtscuPluB5OPxjq > > // < CALLS 38,9929852029729 ; quote ; 14,3330742666231 ; 14,0464127812907 ; 0,0204081632653061 ; 2,2 ; 13,2222610109598 ; 15,4438875222864 ; -3,9 ; 206AdDD09E5abADeef50dDfBDA0C9c53ddbaAba9c9C4EDe8b9c9bCaD3913CFaC ; < A30d789pYU0drcOOOnXY3MxgYYSylL9a9ko4Qbf8S6v8p9L7shb5b96b9511cHP1 > > // < CALLS 40,4927154030873 ; quote ; 13,0178433568744 ; 12,7574864897369 ; 0,0204081632653061 ; 3,3 ; 12,0089604967166 ; 14,0267262170321 ; -2,2 ; bf8CE0BF7B6bCdBDa1599EF476605fa0EEc82db4bFAAeC05AacFaa0fecedcc3e ; < 0xT7L2ss1wvRSKwirwIBej6n7Cvk8K9FA7C7XtPH4xiGR4Whg7ra97Gfgu11QF7K > > // < CALLS 41,9924456032016 ; quote ; 11,8195513380887 ; 11,5831603113269 ; 0,0204081632653061 ; -4,9 ; 10,9035361093868 ; 12,7355665667906 ; 6,4 ; b2f75aaCB7Ea12eaABcAd6d3Dd3ddDa5e3af5C91b76A02a904DBc12978cdb29b ; < ZP5OPCTw3zHRLDYpw0fcX0J2DWjLEECYDf5nTrkuJpJKZ21T67oDK3ylbWlIkB3I > > // < CALLS 43,492175803316 ; quote ; 10,729020132261 ; 10,5144397296158 ; 0,0204081632653061 ; -0,7 ; 9,89752107201076 ; 11,5605191925112 ; -6,1 ; c3ecBecfc9D8BCC10bCEFFc8bF0eEB0bF9bdAc1EAC3Bc9CaDccF9A8afDCaFBAB ; < T3BrikBtK8w1ka832wD3Cjo5y9n5u8oGG80up7F3J2wam5u1444sqI3g7X44NHoK > > // < CALLS 44,9919060034303 ; quote ; 9,73750498525261 ; 9,54275488554756 ; 0,0204081632653061 ; -9,7 ; 8,98284834889553 ; 10,4921616216097 ; 3,8 ; 0C4BFb5eb1dBcd47a779E8ABb0aAFd7adCFE4C7AB6e6bBbE7BfBCc5A8be6bbD5 ; < 8HY4LV63ll7dJc96j57g8wRmk3h69m3n3BWz30b51Tcw72qX7Mf7325o85el5158 > > // // < PUTS ; 2Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 14,9973020011434 ; quote ; 0,408665521929223 ; 0,400492211490638 ; 0,0204081632653061 ; -6,7 ; 0,376993943979708 ; 0,440337099878737 ; 9,7 ; E6ECeab6DAad0CDd9DAFbDB1e18cb09dDa0EfaAbbF51EDEAFD0c7738cBD9EF9F ; < 259tY3A82Uh427ZY1Bi79lKt75t3PKM63ScWgq33H2ATjZ024I8rH5ZCY6KegRGh > > // < PUTS 16,4970322012578 ; quote ; 0,707302447659103 ; 0,693156398705921 ; 0,0204081632653061 ; 7,5 ; 0,652486507965523 ; 0,762118387352683 ; -2,4 ; 2c0E9FB8baF76B2dcAA121ecB7DCfc1eBFc01a2FacCF41a96dc97b5bDEAa71D8 ; < n7QwzmH3jZFd9byy829WyHe44P3w39z0370Ud5Eb5l9GHEM4plHPNan6qnx6Nh6h > > // < PUTS 17,9967624013721 ; quote ; 1,13414943272281 ; 1,11146644406835 ; 0,0204081632653061 ; -3,7 ; 1,04625285168679 ; 1,22204601375883 ; 0,6 ; BCa6081FDff5BcB05EAE4Ad7BFFaBa1ba9caB6dB3CC9cAab1f4DBFbEA4Bc243d ; < P7T2v1j833QQGTEv6icHOSx2222YHes427NEf195g2nj16V6Hb3cn3bm8jOYyQ81 > > // < PUTS 19,4964926014865 ; quote ; 1,71033949469589 ; 1,67613270480197 ; 0,0204081632653061 ; 6 ; 1,57778818385696 ; 1,84289080553482 ; 4,9 ; aaeECF51AbC6d99FE03044F47bADBDbaf5dA703BBD6DFB5Aac8DAfCfdEBA18Ee ; < pWEk5YVUXBg32pnBoc9O1kUF3ah5z5LP4McmOxc441s1i926qh41yM8jywx2L8ko > > // < PUTS 20,9962228016008 ; quote ; 2,45322491430167 ; 2,40416041601564 ; 0,0204081632653061 ; -3,8 ; 2,26309998344329 ; 2,64334984516005 ; 3,1 ; D0BCCF24bfFdE0C9914352eaF6fd7c7Fa2A6F879aBcaDD22aBeDa0D1EfBBfc2e ; < E6v3IlNTX5ZA8uLlmhdu8P6F7Xv209uP9iR5GMM42nD8sC89LG0zXug4186FO3g0 > > // < PUTS 22,4959530017151 ; quote ; 3,37591281340272 ; 3,30839455713467 ; 0,0204081632653061 ; -3 ; 3,11427957036401 ; 3,63754605644143 ; -2,5 ; ed08F991e8B98b63BAd91eDbEBdcbEe3bc8c4Fc72c7decf03dc7dEEc9dD2d1fa ; < yPAJV5kHAGRkz0s8J6t3ofnZ874m1V1Oo1wpbix6A6rG37yn2Qpr16vKy99Psl3P > > // < PUTS 23,9956832018295 ; quote ; 4,48722149753384 ; 4,39747706758316 ; 0,0204081632653061 ; -9,9 ; 4,13946183147497 ; 4,83498116359271 ; -8,6 ; b6AbeaCaa39acaCC45E6D6a2CbcecCFCa68AdE0AC0baCFBEc65AF76ea9fBFF1f ; < YF0PUJdoxC3tg4Ug5c6ZzQl8tCJYizKo1uqnDIBH20ChcLObr72R6a8Iw357LyRj > > // < PUTS 25,4954134019438 ; quote ; 5,79193447541758 ; 5,67609578590923 ; 0,0204081632653061 ; -6,3 ; 5,34305955357271 ; 6,24080939726244 ; 7,3 ; F4D5DEAC98eF8a5aE3DdA385cfd15fCCc8CedBCE0Caf2dd9Bc34e1C7ECfdEf64 ; < 96mRMRuFE706177B3zqQKSv3G980FF2GBGKfLf2yxEUpuV8nTAgBl6nwK10gE6GT > > // < PUTS 26,9951436020582 ; quote ; 7,29123965884816 ; 7,14541486567119 ; 0,0204081632653061 ; 1,3 ; 6,72616858528742 ; 7,85631073240889 ; -2,8 ; 06afeBDbf4d8ae1EABEaC4A5A1eb20AA0CeB4A86024f6AeEcb57EeFfAfbc252C ; < lPAqo4Df56zdWgtnYOJ108teIg6fOj4qYA5Zdq2cyhx6A3L559952pIgqute7lV7 > > // < PUTS 28,4948738021725 ; quote ; 8,98326297721528 ; 8,80359771767097 ; 0,0204081632653061 ; 1 ; 8,28706009648109 ; 9,67946585794946 ; -8,3 ; 4BF7c51FAFCcDcA8EE1ddfF7bb7fFAfD5C6fEB930D99d2DEFbaFCFFE1cAda07D ; < 0ynrmGRqN4lrj50b7aJCCjkC4zbA0L6UuXwsA0N06X02uz0DH2l604LrlguegYpY > > // < PUTS 29,9946040022869 ; quote ; 10,8636295870841 ; 10,6463569953425 ; 0,0204081632653061 ; 5,5 ; 10,0216982940851 ; 11,7055608800832 ; -9,3 ; b4faFFe63E4eEE9eEB3f4bCE8eAbd0B214Cd3Da7961a7eBC23DeA42eCA7Ddb1d ; < RXjq7Z7TWUI3b4Uj07U2S503K3QV21V3G1mTh508134rtwY3752v4bh6IB7UzZ22 > > // < PUTS 31,4943342024012 ; quote ; 12,9260074686881 ; 12,6674873193143 ; 0,0204081632653061 ; -4,8 ; 11,9242418898647 ; 13,9277730475114 ; 1,9 ; 90fCbBCAB51BF3d1c3bAd5da9d05DF20de6C41B7DeCb51fA59fc6eEA3cfd128f ; < Qscu2QH277wCZ76s9Fc5mX3lj60xJDqV0qUVkv1fRBjJPp82v6RO7P45vlQTx3I5 > > // < PUTS 32,9940644025156 ; quote ; 15,1626056894643 ; 14,859353575675 ; 0,0204081632653061 ; -9,4 ; 13,9875037485308 ; 16,3377076303978 ; 8,3 ; DEEAB8bdECed9cCc0ceCCab1ffDaeEbFb1cDdAEcBfCD7ccAeDf90e26e3b2fbf1 ; < 0kzHpIx65013700r2ecT251v3WkrlTRy9kkRH4Qw9UYF8u5nu8tQgJ17Qkn8j4P3 > > // < PUTS 34,4937946026299 ; quote ; 17,5646127269451 ; 17,2133204724062 ; 0,0204081632653061 ; -8 ; 16,2033552406069 ; 18,9258702132834 ; -6 ; A8cae7Ba5cf6C1eaEcf9b23E4F39cB4B6EbCAFc8E847DcECBCF40F92eBE81aBE ; < X9Z4Rokea90eO8rk8h2z9w7LW943Rv3s088Tz9nBRrLVlmrO4RT67tOnaZuFjUc5 > > // < PUTS 35,9935248027442 ; quote ; 20,1225694613013 ; 19,7201180720753 ; 0,0204081632653061 ; 8,8 ; 18,5630703280505 ; 21,6820685945522 ; 6,7 ; DBCb23AE9F6D23b8AfB10fdBAbb8acc4FfFDdEaFf9A7cee1c9fCCef3A8fbC409 ; < Th274oElkoxDv3f8xi8cPfsk4MZ7LmJOiK2R6Jv6Rm9Xh606fbo5ygVBP5le5E1j > > // < PUTS 37,4932550028586 ; quote ; 22,8266775190311 ; 22,3701439686505 ; 0,0204081632653061 ; 7 ; 21,0576100113062 ; 24,595745026756 ; -4,6 ; 9E5d0C5eddaF60aaCD12AeDBd965475F121dBaD7De34Ac6CdEfeA89BabE71f60 ; < 30OQ2874B84x2Z83sCRI8eX6tji11128BMd2HLiAM8REI8IA1dHz0HIlr9UM4VLY > > // < PUTS 38,9929852029729 ; quote ; 25,6670473394929 ; 25,153706392703 ; 0,0204081632653061 ; 5,3 ; 23,6778511706822 ; 27,6562435083036 ; -1,2 ; BE11EcaFc8dcD6eBFe8a1D19bedF9F3e6ac6B9DCCa2eeD2abd3bBfaedD50A66C ; < Qd6uL7G27cVa2AljMP3x9PI740EAsCBp77oA5EOO7S29OwGXK0Mm26JztuflbseT > > // < PUTS 40,4927154030873 ; quote ; 28,6338923171622 ; 28,0612144708189 ; 0,0204081632653061 ; 6,6 ; 26,4147656625821 ; 30,8530189717422 ; -6,8 ; e3ceacFc2aa1feafEAAeDc6acfDe120eBed7aB9cBaceAcBCDF4f9ddeAf4b9DC9 ; < 07TgQiOO42ZCs78pgga004Fvxem1YN1622MfyISjpCIH62D1R2NqFu88W8BZZc46 > > // < PUTS 41,9924456032016 ; quote ; 31,7176761857946 ; 31,0833226620787 ; 0,0204081632653061 ; 0,9 ; 29,2595562813955 ; 34,1757960901936 ; -2,7 ; CbEeD0EE6ced520CECc5DADbB8b79f8da8cfDeCa1eed0dBCF685f5D14fA7fBe9 ; < OFZPc7jC7mkBpB0oG24R7B6eMLs5kisId6HrJ1d9msGe71LJbwD3B0wusThNw1Zb > > // < PUTS 43,492175803316 ; quote ; 34,909220867385 ; 34,2110364500373 ; 0,0204081632653061 ; 9,1 ; 32,2037562501626 ; 37,6146854846073 ; 5,5 ; 3Db3F3Cdf8FB6F4dB7Cb36FBd1C2a2FABbcAfee80B5F8bDDC8Ac6Bb3AeF0Eeff ; < IMnN10C7GA581jqb9f73P320N9TX852NI3LytrDtzPCOSuWN4K6KmXf3tO4xsVVG > > // < PUTS 44,9919060034303 ; quote ; 38,1997816077946 ; 37,4357859756387 ; 0,0204081632653061 ; -0,7 ; 35,2392985331905 ; 41,1602646823987 ; 2,7 ; 2798c20BCd5Fe4DBf0fF9dADb2b8DC6FEeDD3B6FFCB2bf4BCCF369cAC3A29bfd ; < eEz41YXwT6i6RnTy9wBkiX3Z8f58BN6Nx09VJkDhZ6Fh134PXq9s2X1w255N8GY5 > > // Futures_Mostootryad_org_spe // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 25,532252 ; 1,14 ; 21,3967122807017 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; EaE1cdcCdBeD9F8FCefEaBdECBB3bedf9df4fc6Fd43AcBcEaAC6cFB7A343dFbd ; < Nou64tvjg520NpCAk4oX2c4g4IY0ErM6nhK2iq5RL9kK6seXJaQeHHjekUcg8m3f > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 25,5308024722927 ; 1,1399259 ; 21,3968965634457 ; 25,5305524722927 ; 25,5310524722927 ; -1,1 ; 2 ; 8,7 ; 1,9 ; -1,3 ; -5 ; 0,86 ; Future52AP19 ; AFc7CD4493fCF25FE7aB1B1e2b6de79b6dECbE4eBae51e2171d4A7Ba05f8fFE1 ; < aKJ64k5LKFwjgMHIeLcGX9jNOICJ3ffmf7165963yO7YXRI6Kstc2lXL22KZ232I > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 25,8113589541883 ; 1,15385052700825 ; 21,3697596439229 ; 25,8111089541883 ; 25,8116089541883 ; 4,5 ; -3,6 ; 0,8 ; 3,7 ; -1,9 ; -3 ; 0,92 ; FutureJU1947 ; aCeaaD22BB5CaAF8c3a4cD4AEdC1bFeFAbfCbadAD4A48a6cEf1FFadca4BAFECa ; < s7dLc81vV6IJtF20onqF2K1z7ZI37Hg8GOUtbia6rGs7007E29hoZDfhjqz8S2f6 > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 26,1001923180004 ; 1,18200079592152 ; 21,0813661108004 ; 26,0999423180004 ; 26,1004423180004 ; 6,7 ; -5 ; 5,2 ; -5,7 ; -9,4 ; 3,3 ; 0,29 ; FutureAU1956 ; fEce5CDC0eBbF4E175fBaBDAbcF2FaBE6ffDe4aEe9dD5faA5Eb4bFd31f3D0ABe ; < 9d3lfS6T9rP4OdEgq2c1bx0fMz2AAoJnwry12n252RwgfEZRUNIF2EJ357mzo83O > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 26,4111035328828 ; 1,22548550318439 ; 20,5515430123442 ; 26,4108535328828 ; 26,4113535328828 ; -6,3 ; -1,6 ; 2,8 ; 9,4 ; -0,1 ; 8,8 ; -0,46 ; FutureOC1985 ; cCd6F759f17b283a0aaE8cbb66C8C06AF8bFCaA32AbCadF42FFDcffC237aEB0C ; < udPb7Zq4KQ9G294GrNb2Z9kSgK0HcNiKF8c7BR23PUZbl78OWM7N3pd46G1RP37k > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 26,7488112860661 ; 1,28599748360657 ; 19,8000494768072 ; 26,7485612860661 ; 26,7490612860661 ; 9,8 ; 5,8 ; -9,3 ; -2,1 ; -6,5 ; -0,3 ; 0,55 ; FutureDE1951 ; CE7eaaBEee41dCBdbbebB437CEFB26cEbBe6E3d5ac9BFaEEabBEdAfFcb096EAD ; < 1yxCIFJf3XPrcJu70iqDm94D71drHn2748ejpAOE591hXJ0zPA3tpC14C6B11IEx > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 27,0857998010053 ; 1,36590207084755 ; 18,8299719863508 ; 27,0855498010053 ; 27,0860498010053 ; 2,2 ; 5 ; -4 ; 8,1 ; -3,5 ; -2,6 ; -0,13 ; FutureFE2046 ; dac9F0E7AAeBfc1cCec8f3Dc4C87Ef1DfeCEC6eE145EDcd3E3daf075aEBd13fD ; < Si9mosnR4WrALM3OW1P35CkS07xth4VE05p3Qa7w8Y4U25p3G0c9g175i02ScKMx > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 27,4484475126 ; 1,46841302126465 ; 17,6925933746899 ; 27,4481975126 ; 27,4486975126 ; -7,8 ; 5,1 ; 6,2 ; 8,2 ; -5,9 ; 1,1 ; 0,41 ; FutureAP2037 ; DA464BDE2CeFfcbee56BB6F1Da5B8f37eaC4Fd54474BddAffb1eAfdfA1fEDB3D ; < JSP8a8f546lA9fjgUT1r8FHiiGFI5v0iOfmxbjnlqAH4AgDvge4eH59eOY4dR2N9 > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 27,8016134648767 ; 1,59759791601377 ; 16,4021342831028 ; 27,8013634648767 ; 27,8018634648767 ; 3,2 ; -0,9 ; 5 ; -9,8 ; 2,1 ; 2,5 ; 0,02 ; FutureJU2083 ; BAC02CBBC3Ba8CEADdbfebeD1Be53ACF5EB6bbCA3ac1fFF29ECffF7BFe3D4E5f ; < W4ErEdX0Ph16if6F49h9OM947ZP12B24N2kZv7HZw5JJd7fwKe7Psw1IU7Fcjc16 > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 28,2222823466999 ; 1,75931283644776 ; 15,0416509002934 ; 28,2220323466999 ; 28,2225323466999 ; 6,2 ; 4 ; 3,1 ; -4,2 ; 5,3 ; -5,7 ; -0,7 ; FutureAU2051 ; 2BBeA6F41feb6Fcbfd866eFe6FDc2Eaa5ca3EB091dB5CacD5f2eD8B9DF5C99dF ; < nJ7ftfHxsLF1k02y7Yf7d314Iue0A1Lv0O78I23M1z3lBFOgcx9n3U81FHfY5Ew4 > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 28,6256762191096 ; 1,96090321002745 ; 13,5982096784414 ; 28,6254262191096 ; 28,6259262191096 ; 0 ; 2,7 ; 2,1 ; 1,6 ; 6 ; 9 ; -0,12 ; FutureOC2014 ; FdafaefFFC3af788EcfcCfBab493D370ECaEeCB29Ac2d6aC3CdD2a9bdd5dFeaC ; < Ike4M7iPysylSnSpkonYLF0w070TH4v25bS5P5Jigu316slel3qQp5ex8NA5RMuQ > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 29,038821971005 ; 2,21198429177177 ; 12,1279512603344 ; 29,038571971005 ; 29,039071971005 ; -0,3 ; -9,5 ; -8,7 ; -5,5 ; -0,7 ; -0,8 ; 0,85 ; FutureDE2069 ; eB6Bf0d2a8dc3bedCaea41919Ce3DdABFfb22623ddaaBfdEeB9Ae3aE44e1B7eF ; < 62zR89249eEi1T5Ke55aW6N47DFAwYpzH7627HbBeFb74bs822Ok2H4rYa17DzEl > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 29,4896977716925 ; 2,5254099698645 ; 10,6771922672321 ; 29,4894477716925 ; 29,4899477716925 ; 9 ; -9,3 ; 3,2 ; 7,2 ; -4,1 ; -3,9 ; 0,28 ; FutureFE2143 ; 7a18D2ebc7aF1BAcF19B1F46DFaBBB2DEbC8e8fCbC09dBeACaeFC4d7CEEB0CDD ; < 8WI2NE4uG1qhrUc435Z1y10Z14471N7Zu4wYvMGpvl3D9AxMM1mt9NG5YPZwJgLx > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 29,9946040022869 ; 2,91851528577361 ; 9,27735031866939 ; 29,9943540022869 ; 29,9948540022869 ; 0,8 ; -6,3 ; -5,5 ; -0,1 ; -7,2 ; 2,6 ; -0,71 ; FutureAP2166 ; Cd62Fe6FACfAb1FE12E7D2d1Cae4BBDe2CeefcDedFFf2C05CFFCeBC1224eDccD ; < By61Td7JKq2obrh6x1z0g5rgD443N9NK1r9M2a9BYfJ11KpGxzdz7deWZI783ZLj > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 30,4848583948223 ; 3,41384729603948 ; 7,92976625820051 ; 30,4846083948223 ; 30,4851083948223 ; -3 ; 7,4 ; 2,5 ; 8,5 ; 0,6 ; 2,3 ; 0,39 ; FutureJU2157 ; DA88BCECba78D3daBf9C0caFea7FbB2ca2Dd2C6cFBcdB1B3c6DBdcF5Fa26Cb9c ; < 152UefMse40fgcu0Joado4ItISSaaQcCG05oHjiHWy981I5eY76tforR1XEqWHes > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 30,9894653608081 ; 4,04125107287478 ; 6,66828509339893 ; 30,9892153608081 ; 30,9897153608081 ; -3,5 ; -5,7 ; -4,6 ; -2,3 ; -1,6 ; 1,8 ; 0,33 ; FutureAU2155 ; BbA5fbF9eef34dDFBFAaDAE0dEcFDDdDFacCEee55AbFDfB85C6c6b6fECbD807A ; < k6KeHI44PaWVBdIzpGEYh8OHS90WRVyBIeYt38YpL37ZT77LR6Ayn8Qi84A8dU75 > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 31,4612656901512 ; 4,84209974397795 ; 5,497442711559 ; 31,4610156901512 ; 31,4615156901512 ; -4,9 ; -3,4 ; 6,5 ; -8,5 ; 1,5 ; 0,9 ; -0,29 ; FutureOC2166 ; bD2f4B659Ea0fC3AABFaefeFDeDeAeCC5596abbebB92ecAe6Ba04CAc33cb0fDd ; < 11jZRTtjHMhGeFT73ix4oy6TV42S7Z1oYZXXaiuChDh2Fz5oy4LGwjOudgSU06ag > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 32,0792449728395 ; 5,87166600220089 ; 4,46339743452969 ; 32,0789949728395 ; 32,0794949728395 ; 9,1 ; -7,5 ; -8,7 ; 9,3 ; 2,5 ; -7,3 ; 0,54 ; FutureDE2199 ; 4abA0ECDCaacACD10faCA2C3CfCeecE3ebcEfbBfCbFD1EE9BdcCEFb56dDc4FFB ; < dQtbuZm2G8oVF87RI6mq15S82a07Bc9mZ95Y5bQA2pVG2M3JEXLM8H3CdSkpWq0e > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 32,5827401162094 ; 7,20669966719837 ; 3,5211735774853 ; 32,5824901162094 ; 32,5829901162094 ; -4,1 ; 4,2 ; -0,7 ; -3,3 ; -4,5 ; -4,1 ; 0,5 ; FutureFE2254 ; Fd8eBFCd4acbcbF9b7A8C160Aaead10201a0Fe9DebD9833EEA5bB1aac7cABBb1 ; < 623F71y2Iw3Q3Au8cIie0hTs80t959A955iH4t45NH99C0ejl89zY8QGM2n9h8G7 > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 33,1898567754601 ; 8,95242807364405 ; 2,70735810468794 ; 33,1896067754601 ; 33,1901067754601 ; -2,2 ; -7 ; -1,1 ; -8,4 ; -8,6 ; 0,7 ; -0,52 ; FutureAP2286 ; 831c053bd9E6f3AB372d8feb6e5C5e1fc1c4AcCB07abD9A61584ACAecB5BBACc ; < dRL9ifJ9lq16y33603PR655982qgA8fd5Pf6CHJ9QY8YjbsoPkO08CHXjoecTYQf > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 33,8403101953302 ; 11,2569749806485 ; 2,00616375656017 ; 33,8400601953302 ; 33,8405601953302 ; -1,1 ; -4,4 ; 2,8 ; 9,9 ; 4,6 ; -7,5 ; 0,84 ; FutureJU2230 ; f0BACE65DEaAcbeE2BAe11F1DfB9C436DEeFE0CFFb627e31C9cAD0B46Eb3D657 ; < J8CXA01l6e69vSS2k332kBCAco8y3i87E63P07XkhU7fMH6Tr3Fi8ydCG7yQH9WL > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 34,601769428976 ; 14,3261293142326 ; 1,4152908765524 ; 34,601519428976 ; 34,602019428976 ; 1,8 ; -4,7 ; -0,7 ; 5,1 ; -9,3 ; 0,2 ; -0,8 ; FutureAU2273 ; ae1f2eCEca3bE9c7beAD6E2DEfA067648cFB4FC82cFE3FE20C51c606Aa3Dbda6 ; < NsuQi2A5z7P80v148XWjGt2slNtdk67H0FgCZD8LtaE6SQ2UaRS82p8xgI4EXc8x > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 35,1700998379458 ; 18,4528828160671 ; 0,905940670003223 ; 35,1698498379458 ; 35,1703498379458 ; -3,8 ; 2,2 ; -5,8 ; 0 ; -2,2 ; -7,9 ; 0,13 ; FutureOC2256 ; aDD1989D27DecDeb7C4efc50ADdBeFfA4c3fBCAa33dFdec4E5e4fAEe4cCEEA6a ; < gtX0v1GKO7UChPZ8j44um29TOLR7VEC4RM09Ep2Gsc1AV30mYamjVw2XJ21Yq1v7 > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 35,9979113231109 ; 24,058021366237 ; 0,496295592023635 ; 35,9976613231109 ; 35,9981613231109 ; 3,8 ; -3,3 ; -1,5 ; -9,7 ; 0,2 ; 1,9 ; -0,77 ; FutureDE2255 ; Bc9eE8Efa5C3beb78B9EACD5aD6ef3afeA449B503be9f9fD29CB2Ce7AC55AD6E ; < oDzs5y688A0zz1a857Gk9T86j7pElssR21o6K2RwAdnh6shKH7fLz32eJBFt1BS7 > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 36,5705504623267 ; 31,7439279634604 ; 0,152048684851546 ; 36,5703004623267 ; 36,5708004623267 ; 4,5 ; -0,9 ; -8,9 ; 8,1 ; 6,7 ; -8,8 ; -0,76 ; FutureFE2370 ; F0cC70Addcd0d7b112c4ED37b7f4Cd5D5D3EFC6a0fd9Caa9aafCDBAaDdEea0Cc ; < bj6v9Uh4wL91xEgaO8JbgE7UD7YZ3384t41yIBzT5CEYpqd6b6aYEhsZkREPzfDy > > // < CALLS ; 3Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 16,5949283877301 ; quote ; 61,5308193640129 ; 60,3002029767326 ; 0,0204081632653061 ; -0,2 ; 56,6083538148919 ; 66,4532849131339 ; 1,3 ; b0F117b3ECD2D6DC291Ad40AEce92bb0cAACbCCeeFEfcBD7Cce6C39fbA05Ce21 ; < 2sE81P3h2ZBn1ZH23TmWk9aL1KuoUDdtpte1OD244Sv8meSTmE8uu9A6L3RVX05X > > // < CALLS 18,2544212265031 ; quote ; 58,045248210132 ; 56,8843432459294 ; 0,0204081632653061 ; 9,1 ; 53,4016283533215 ; 62,6888680669426 ; 8 ; D9b0bFaaEAa192cDd8ccaeB8EE9eFeb2AbADF7cBCc8aFe9B45CA1e5cA148FbAb ; < X5l0Ken5NGys204R5tQCS7yFwhrvbBLSl53W9c8el6leIpyX3PdTe7h49T0PtfKK > > // < CALLS 19,9139140652761 ; quote ; 54,6875870286012 ; 53,5938352880292 ; 0,0204081632653061 ; -0,2 ; 50,3125800663131 ; 59,0625939908893 ; -4,8 ; 160daAce5AC2DcCb3cD1c0B89dA46b22cD50cE3aFffc5779BAf793bfB3b6Bcb2 ; < I0Rtug501KLq4O6iPkxoX95a0Tfh46Ohgc9q34y4xJmBV8Rs5DXr08CkFj7oJF19 > > // < CALLS 21,5734069040491 ; quote ; 51,4669757423064 ; 50,4376362274602 ; 0,0204081632653061 ; -6 ; 47,3496176829219 ; 55,5843338016909 ; 1,3 ; fcdECa85EFEDbDe5c46eDcdDA0bADEDC54Af0Bd44cF789211a61F3CCf9b877dC ; < nRPhH8Q4k430i3L4pdBv55nxG6jOe4quHV9U05L8458f69bg4gqrmr8C5sM6LROR > > // < CALLS 23,2328997428221 ; quote ; 48,3896143750377 ; 47,4218220875369 ; 0,0204081632653061 ; -4,2 ; 44,5184452250347 ; 52,2607835250407 ; -5,5 ; 2f38F35FEdc90fC14114d5ec999fEB9dC32Cd4285DCeC8F07fA3Ba492adE8edc ; < ykY006Em6T893YYQLfJGYS7C7zXRya6bJ5hY4QdcW0l50840q0I6I8nH728WWco8 > > // < CALLS 24,8923925815951 ; quote ; 45,4590564027714 ; 44,5498752747159 ; 0,0204081632653061 ; 0,6 ; 41,8223318905496 ; 49,0957809149931 ; -9,1 ; 7fa2cCB28FcFC62eDCABaeEbBBcEFEA2BE8bDe94faAEb3BF5DED9BfEfCcD96B0 ; < 6SUbdsUaehH9yk3QyalZ6aESg4dvKK7vw1GamD72s8ooyQgyAaPkZIm1904AgPmY > > // < CALLS 26,5518854203681 ; quote ; 42,6765659694769 ; 41,8230346500873 ; 0,0204081632653061 ; 9,1 ; 39,2624406919187 ; 46,090691247035 ; 0,6 ; CE6Be770A8Fa6A1ADAe9DCF5adfbDaf0e2BBEcAbf6c1994EEFb7Bc9Db0EFa1dA ; < p53M51TpWlIpBDap3NM2P1ONV3vlt99P3m8BVzpwv3V5dXS8W9QSJKsl39O0rnuF > > // < CALLS 28,2113782591411 ; quote ; 40,0414910307221 ; 39,2406612101077 ; 0,0204081632653061 ; -8,6 ; 36,8381717482643 ; 43,2448103131799 ; -3,4 ; fdBdAcBaD074FF7cFeA99be04ff7fecE1bc7E3a1f93deecCAdcCc56cbBeB4Dec ; < 4e8eU04K44PaIE59fsJ3VA3V602d58w2p41F13xUM38b1XfcuXCdd6dLp6g442es > > // < CALLS 29,8708710979141 ; quote ; 37,5516227399988 ; 36,8005902851988 ; 0,0204081632653061 ; 7,7 ; 34,5474929207989 ; 40,5557525591987 ; 7,6 ; cEC38D10A2e27DFffe3B13F84DC0a68ab8bbbCcDd70cAAa34EcbcFB03cd3dAc2 ; < rhhfTy6a9z6zzq89yhN81d3L41Tp04PCBDgua3r5h41waCn0jwb7G0adxQM0ajdI > > // < CALLS 31,5303639366871 ; quote ; 35,2035243902198 ; 34,4994539024154 ; 0,0204081632653061 ; 0,8 ; 32,3872424390022 ; 38,0198063414374 ; 5,3 ; AdddACDEf2afa1a7dcE6eaebf444B9C1506CCBCDA56bFe688FB06d0A4DAfdA9a ; < hsxcI6Ti7ZarF32VB6nE752t9douJSyiG1EBBtNa42QbjpEKfYV8oAPgcY7ojIZ9 > > // < CALLS 33,1898567754601 ; quote ; 32,9928219942121 ; 32,3329655543278 ; 0,0204081632653061 ; -0,6 ; 30,3533962346751 ; 35,6322477537491 ; 2,1 ; Ec4FeeEAFACDbF87eFeDeb2AEd4b695eC9EC9BBFBfA5BeFBEaD0BBF4eadfDdfA ; < jJk2V0j2AVzHVlW47d82DI7tjHJbOiDm8Xs69Veu9v336K6U8WngsUXKQYm1U5kn > > // < CALLS 34,8493496142331 ; quote ; 30,9144542159824 ; 30,2961651316627 ; 0,0204081632653061 ; 7 ; 28,4412978787038 ; 33,387610553261 ; -5,2 ; FCfF3C9bc1A29aecA5c37fBebBfbe006e81FFddaAfffFa7fa4A021EDDdA88A88 ; < f1U5VNj7TZ6Tq07B2ENit064kRSSrmiI3PJV1o7vLQ5TUuJD7SG0AaTEVU1s14LV > > // < CALLS 36,5088424530061 ; quote ; 28,9628827714671 ; 28,3836251160378 ; 0,0204081632653061 ; -9,1 ; 26,6458521497498 ; 31,2799133931845 ; 6,2 ; c1bcFa8A9C67FECB2c88dF4bdfAaEDDEfb4eE4f8BDb2ebF0cfaC6DB5DbDaFC08 ; < aX364ygL650RR64MC0xPem38z3brYX4w6U0Bor53BOoErj0MZTP92sh47Vm8t6Zg > > // < CALLS 38,1683352917791 ; quote ; 27,1322663162922 ; 26,5896209899663 ; 0,0204081632653061 ; 2,2 ; 24,9616850109888 ; 29,3028476215956 ; 3,3 ; 7Abc4bFcdbFc9BDc70BC80B2Db5EC0E2E9f1aF8E2FE3f8AfdDaAdAe6DFFcCB63 ; < 07c6mk9op581m8ffLD573P64QQ73M81B429qV85nhXvrxl7UZ3IXVtjGZ6s04PB8 > > // < CALLS 39,8278281305522 ; quote ; 25,4166017493327 ; 24,908269714346 ; 0,0204081632653061 ; -7 ; 23,3832736093861 ; 27,4499298892793 ; -8,8 ; 2BE0C47e3dfef1ADbDFc79ecbC8CCa40cCa2bEca9bDda8b9Bbbeaadf40B7B17C ; < xQ4vSGn7K3E73zC4HGIEBAs8Lq9e6UKUS266SZOR4IFvk1zo8mw70NjX42aJpQXP > > // < CALLS 41,4873209693252 ; quote ; 23,8098371502222 ; 23,3336404072177 ; 0,0204081632653061 ; 9,2 ; 21,9050501782044 ; 25,7146241222399 ; 3,7 ; FaeEc4CD1CC6d4edf813c5eB9aFF5aECd0a3FFFD4C43dc1fA65FF93B6AFeb7dE ; < 70A6lp4tpEnwA8ecyX5OG3Jgag4TVRvV2dppq4KP3XFaQ4Z4DbtDpvfH8ak3msc5 > > // < CALLS 43,1468138080982 ; quote ; 22,3059604855858 ; 21,8598412758741 ; 0,0204081632653061 ; 3,4 ; 20,521483646739 ; 24,0904373244327 ; -7,6 ; F589BeBE7F6CbA838E3cbBbAa3db5aeF1d4AF38beebDECBF0e7abda5BcdBBeCE ; < 0HtcdwSZ5xt7080z9kr6zFjXH05RBqVz0KKVbRymp6wmeeE5encYkrODlKzFH66p > > // < CALLS 44,8063066468712 ; quote ; 20,8990679279314 ; 20,4810865693728 ; 0,0204081632653061 ; -5,7 ; 19,2271424936969 ; 22,570993362166 ; 6 ; 2eD5ae64ddBeae6F34DD0fE25B8CfE4815b8A26315e5CBeCDdAcA178aFF3aaDC ; < Md14i9iym0s31Ie346iLy9MxV6BNk085Gl4Y50lCFWdR435ijf4w0NSAy68J3gZO > > // < CALLS 46,4657994856442 ; quote ; 19,583415239393 ; 19,1917469346052 ; 0,0204081632653061 ; -3,6 ; 18,0167420202416 ; 21,1500884585445 ; -6 ; b8Afa1b81ce4CBBAbD8cfBaAE28FDAB7bc9D2ab9ffeBEBbbe6eBD0Ccb16cA5b1 ; < 265SiANkq2uY4Rp0UWj01c2OInb8TjeC35AQ68zvX6nJJAgE7N0tUzqa6BpBIXnh > > // < CALLS 48,1252923244172 ; quote ; 18,3534552464126 ; 17,9863861414844 ; 0,0204081632653061 ; -7,6 ; 16,8851788266996 ; 19,8217316661256 ; -0,4 ; 4EAbfaCFeF8ccE09cD6D3Afa4bBf3c6eFBc97fdBDFED4eFefF4Ac0A1B2DBAcec ; < Cb8eZEVUM76eFt87GsPr35foHt52KJ2do6PkEAP6ox6b46d23ld19fY3L64EIrp3 > > // < CALLS 49,7847851631902 ; quote ; 17,2038640106649 ; 16,8597867304516 ; 0,0204081632653061 ; 4 ; 15,8275548898117 ; 18,5801731315181 ; 3,8 ; c4CD0c4F1ccB5DFb71Be95c35f578b5AF1dd0AC1b2A63C1Ad34fdC08aB2977ca ; < EHH1j1W584z39Nu823G1IJRF0uPElx3K7MK30W1x3gwdVf6VG4f755k8Mue86g2K > > // // < PUTS ; 3Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 16,5949283877301 ; quote ; 0,862212417340544 ; 0,844968168993733 ; 0,0204081632653061 ; 7 ; 0,7932354239533 ; 0,931189410727787 ; -3,2 ; CaA0CdEda5F4Ac7cB7ebaEd43EeAFfdc8fa919E87aaC5A0A7B79fACb8EC6fBAB ; < b62jzfuDdZL7t286W4Pm1A9ZqS0lDugPYL4vQ49AK8740k04Oqy94G1JxT0Vaz6D > > // < PUTS 18,2544212265031 ; quote ; 1,30978056879249 ; 1,28358495741664 ; 0,0204081632653061 ; -5,5 ; 1,20499812328909 ; 1,41456301429589 ; 8,8 ; F934a0080cfb5d2bad97ad5e66da15BAb35FaFABAEBA54a15B26AD2BB1Aa17fe ; < y1425693w7333v2UiDsmiR3g9pbJBkkzdCX7I2dX4482bdZw0LomFgLAbDx6608O > > // < PUTS 19,9139140652761 ; quote ; 1,88525869259442 ; 1,84755351874253 ; 0,0204081632653061 ; -3,9 ; 1,73443799718687 ; 2,03607938800197 ; -2,3 ; dadCCCBA0bdf8Bd211edd9DCfA986B4ffeDe69c3EBDbE3Bb3aDFB4DfFAccC4c3 ; < YRf7NWijh955F2qObF7OX4K17CGS0UK79dQgWq26UpWI26R7q63j75U05L5DTO08 > > // < PUTS 21,5734069040491 ; quote ; 2,59778671163235 ; 2,54583097739971 ; 0,0204081632653061 ; 1,7 ; 2,38996377470176 ; 2,80560964856294 ; 3,1 ; 594CbcC94CFAAdaBdBEEaEb4a6dfCfb576cBeeCC8155E96Fd9dedaADb6e9eC65 ; < OmZ8tfFsylq98cKZP06pU7F9SK52v4ArjVBG0Vp5U74AvPJPQq47tFu727cV02Aj > > // < PUTS 23,2328997428221 ; quote ; 3,4535646496964 ; 3,38449335670247 ; 0,0204081632653061 ; -4,9 ; 3,17727947772069 ; 3,72984982167212 ; -7,2 ; efFAcB2EbB3b210b1E3eFFBcfc9Bfb1BFef0A31Da9EA8aADE0C6b803D16A6cBE ; < MdEH6j8O8oFwtedqBMF3eAuq5qhlPdPaAQdxoL6KUH3t7tdjFu654QBsxRr7J872 > > // < PUTS 24,8923925815951 ; quote ; 4,45614598276286 ; 4,36702306310761 ; 0,0204081632653061 ; -1,7 ; 4,09965430414183 ; 4,81263766138389 ; 2,4 ; beaEA4aEa044Ccc58e60728FdfDEFA9c5eCaA297f42A364E9cDB1D5eEeAbEF34 ; < xdhWHa50lgVoOl89r2Uoo57wmDxKllzp0fs6D1Ydo7oRF5d886idXC52ZhCwi9J7 > > // < PUTS 26,5518854203681 ; quote ; 5,60679485480114 ; 5,49465895770511 ; 0,0204081632653061 ; 6,3 ; 5,15825126641705 ; 6,05533844318523 ; 2,6 ; B6AFF7c7Ac137C72a85bEEDEf22aE23cbde7FBb2326cAFeBb218a36ACF2b63Ed ; < vmajl0w3d7sjh4ME5RrNkm5oLEyQarWMCTR5b9EIL7N7G2Kw6sB1C2z7Mjaccn59 > > // < PUTS 28,2113782591411 ; quote ; 6,90485922137916 ; 6,76676203695157 ; 0,0204081632653061 ; 8,8 ; 6,35247048366882 ; 7,45724795908949 ; -4,4 ; b4EBBEcBbefbd84b9ba341568Ad6BbfD11eD87fCEdDe3dc4eC630aA991e95cEF ; < S4JbbaxYXen0URXH1ECsLzt4REV0t6EE8IruTnG21PQzZhIjANRJ5bU8PY0M8FE3 > > // < PUTS 29,8708710979141 ; quote ; 8,34813023598858 ; 8,18116763126881 ; 0,0204081632653061 ; -2,3 ; 7,68027981710949 ; 9,01598065486767 ; -9,2 ; BccA7ce7e13dDbAE2D8e4F2f74dCFFA8ACDE35f72bEfE5c3DAae71D8d08cdb0d ; < 4TYzmC3NH2eY3W7S7a3mrv3vW02q735lfN256Vrqk1I2S93a9wukJbsMSUqUmeul > > // < PUTS 31,5303639366871 ; quote ; 9,93317119154237 ; 9,73450776771152 ; 0,0204081632653061 ; 0,6 ; 9,13851749621898 ; 10,7278248868658 ; -5,8 ; fAEF0a3d53bFE03dEAf38d4dBEa0C5fcaBebeE25AE27E0DEb8fC3BF0D358bCBB ; < DV7UfpAnsFtc7ZW393wA72Nt9WkX505K3dHn0S6qJ7T42604KsK56jhmuMdi2VR8 > > // < PUTS 33,1898567754601 ; quote ; 11,6556081008674 ; 11,4224959388501 ; 0,0204081632653061 ; 2,2 ; 10,723159452798 ; 12,5880567489368 ; 6,2 ; aE28bfBC787caDDa6f8CB4f4F6fE5cDDEDdfFCe57c7A31DdAf6Fb67Babe7d6FB ; < A2KV0vEBl43C2u28k4NFa9pKhaPb8Iw1Ni2IYB0CSz9SrraNJyC6LbnCLbFaav5z > > // < PUTS 34,8493496142331 ; quote ; 13,5103796279705 ; 13,2401720354111 ; 0,0204081632653061 ; -9,9 ; 12,4295492577329 ; 14,5912099982081 ; 7 ; da0c7f3EF2AcA7a0eA65c65E53eafcEfD727CfDC9aE4fdc1f1eFA2DBa4c6Fb0c ; < 8UJWGoN4bA4VC8LGpYiDIId3W7nV46qb3I6DqGtIJgVAu78K9DQ2h4z485zpue52 > > // < PUTS 36,5088424530061 ; quote ; 15,491947488788 ; 15,1821085390123 ; 0,0204081632653061 ; 7,5 ; 14,252591689685 ; 16,7313032878911 ; 1,5 ; FEd4C0CEb10deFedfEa6E5BcC04D9cfe9F6cd68baC9997CBEabCe8Cc0ADFDE9b ; < iVbtb2X14QRp1C60XWgpF9jI4ZoiK1YIlSmL3Ed2ujiq9748V2Y4aui87ciW89u4 > > // < PUTS 38,1683352917791 ; quote ; 17,5944703389458 ; 17,2425809321669 ; 0,0204081632653061 ; -6,1 ; 16,1869127118302 ; 19,0020279660615 ; 1,6 ; bACcb4EfBAD24C7c188BdACcd3aBA42bCCa2dD8Bbf53D321A4B8BDEeF2fE6Eb7 ; < Ysjn1LBe06y2ZdYdo6jsn5v8sYgTMdYnO0fHg5O9GrDTr1GXx3VaPiorbD62pdvr > > // < PUTS 39,8278281305522 ; quote ; 19,8119450773191 ; 19,4157061757727 ; 0,0204081632653061 ; 2,9 ; 18,2269894711336 ; 21,3969006835046 ; 0,4 ; 4c9dfcd65CCEF6eDcDfBA6Fb8bf7FbA38fceaBBA8aDA3b7570aB6fccBDE797aE ; < 6BoX5wJLpCtQ6Qrs0Q4r22e4A9WE8u73xt9H14BL4sncKdN7rzqjbre1PC2FVR7G > > // < PUTS 41,4873209693252 ; quote ; 22,1383197835413 ; 21,6955533878705 ; 0,0204081632653061 ; 4,2 ; 20,367254200858 ; 23,9093853662246 ; -9,5 ; 3dbbAB16C2cCCFDCC289d50fECa8520A014C0b6F07e01DB9Ef94EEe0E2D41eFC ; < 1cf9sX2e3962Y0g3aBDpQYRQ8Q225Kp6aVtid0rQeqtfxWRgY8jgefG984XR16vu > > // < PUTS 43,1468138080982 ; quote ; 24,5675824242378 ; 24,076230775753 ; 0,0204081632653061 ; -6,1 ; 22,6021758302988 ; 26,5329890181768 ; 2,8 ; 1badaCdAe5EAaa6EeeaABdCCCBCE14A1EBc73dBBFFaD3eC5DEAbD32E7Fd8fc2B ; < bT7q8s663M7o6uEhYm3lxs3xaOaCMjWk1VnH0AXB6S6ZVgk2hgWpUh5d7kdIA6Lo > > // < PUTS 44,8063066468712 ; quote ; 27,0938291719162 ; 26,5519525884778 ; 0,0204081632653061 ; -6,5 ; 24,9263228381629 ; 29,2613355056694 ; -9 ; fa1Cd3449d9Db4FFaAe00e8eeB4f6DBA0FABEbe02E07cD0fDB58D286B3dC1c6B ; < 1oy260ZH9MHVi00b9Ghu3jqQ1VWc986AiI42OZ2eOq3421iht23q6jiz3Rl0AmQ2 > > // < PUTS 46,4657994856442 ; quote ; 29,7113157887105 ; 29,1170894729363 ; 0,0204081632653061 ; 1,6 ; 27,3344105256137 ; 32,0882210518074 ; 1,7 ; E21eec1e87CEacBBEb8eD80aEd9a2d7bF3be6E6cfeFAEddaFA0Ca48dc3Acee2d ; < 9B2GNE4Z9zgcKJ9ykD58IyGO56FQs91Yr1jdgn1Vt1j0G788W9A3860CM4J1q1L9 > > // < PUTS 48,1252923244172 ; quote ; 32,4144951010629 ; 31,7662051990416 ; 0,0204081632653061 ; 5,7 ; 29,8213354929778 ; 35,0076547091479 ; 0,1 ; 471fDcBc4bc5EC87Efb2fDE0fBEdbbdEfdcfe03CaCb4d8a8dC4d5C1DC5BbB0ef ; < 43180le16g0d70Up3sDamhjx9cNb3oA7d5I1qZUSsy6xE85OkrFpz8S18XVp2EQ7 > > // < PUTS 49,7847851631902 ; quote ; 35,1980431706479 ; 34,4940823072349 ; 0,0204081632653061 ; 6,8 ; 32,3821997169961 ; 38,0138866242997 ; 8,5 ; FbbBA4dBEDb70FfAa9CBFB5cF67D3dCAA70FdAdaA4b5EFe7AeaDdCFEEeFCDE6F ; < 0e516Vn0vGHMzLr6ito38vC9P7rb37IeVRyhu9twCgEaet57GaMB0O1cmmo3WACh > > // Futures_Mostootryad_org_spe // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 25,532252 ; 1,14 ; 21,3967122807017 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; EaE1cdcCdBeD9F8FCefEaBdECBB3bedf9df4fc6Fd43AcBcEaAC6cFB7A343dFbd ; < Nou64tvjg520NpCAk4oX2c4g4IY0ErM6nhK2iq5RL9kK6seXJaQeHHjekUcg8m3f > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 25,5308024722927 ; 1,1399259 ; 21,3968965634457 ; 25,5305524722927 ; 25,5310524722927 ; -1,1 ; 2 ; 8,7 ; 1,9 ; -1,3 ; -5 ; 0,86 ; Future52AP19 ; AFc7CD4493fCF25FE7aB1B1e2b6de79b6dECbE4eBae51e2171d4A7Ba05f8fFE1 ; < aKJ64k5LKFwjgMHIeLcGX9jNOICJ3ffmf7165963yO7YXRI6Kstc2lXL22KZ232I > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 25,8113589541883 ; 1,15385052700825 ; 21,3697596439229 ; 25,8111089541883 ; 25,8116089541883 ; 4,5 ; -3,6 ; 0,8 ; 3,7 ; -1,9 ; -3 ; 0,92 ; FutureJU1947 ; aCeaaD22BB5CaAF8c3a4cD4AEdC1bFeFAbfCbadAD4A48a6cEf1FFadca4BAFECa ; < s7dLc81vV6IJtF20onqF2K1z7ZI37Hg8GOUtbia6rGs7007E29hoZDfhjqz8S2f6 > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 26,1001923180004 ; 1,18200079592152 ; 21,0813661108004 ; 26,0999423180004 ; 26,1004423180004 ; 6,7 ; -5 ; 5,2 ; -5,7 ; -9,4 ; 3,3 ; 0,29 ; FutureAU1956 ; fEce5CDC0eBbF4E175fBaBDAbcF2FaBE6ffDe4aEe9dD5faA5Eb4bFd31f3D0ABe ; < 9d3lfS6T9rP4OdEgq2c1bx0fMz2AAoJnwry12n252RwgfEZRUNIF2EJ357mzo83O > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 26,4111035328828 ; 1,22548550318439 ; 20,5515430123442 ; 26,4108535328828 ; 26,4113535328828 ; -6,3 ; -1,6 ; 2,8 ; 9,4 ; -0,1 ; 8,8 ; -0,46 ; FutureOC1985 ; cCd6F759f17b283a0aaE8cbb66C8C06AF8bFCaA32AbCadF42FFDcffC237aEB0C ; < udPb7Zq4KQ9G294GrNb2Z9kSgK0HcNiKF8c7BR23PUZbl78OWM7N3pd46G1RP37k > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 26,7488112860661 ; 1,28599748360657 ; 19,8000494768072 ; 26,7485612860661 ; 26,7490612860661 ; 9,8 ; 5,8 ; -9,3 ; -2,1 ; -6,5 ; -0,3 ; 0,55 ; FutureDE1951 ; CE7eaaBEee41dCBdbbebB437CEFB26cEbBe6E3d5ac9BFaEEabBEdAfFcb096EAD ; < 1yxCIFJf3XPrcJu70iqDm94D71drHn2748ejpAOE591hXJ0zPA3tpC14C6B11IEx > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 27,0857998010053 ; 1,36590207084755 ; 18,8299719863508 ; 27,0855498010053 ; 27,0860498010053 ; 2,2 ; 5 ; -4 ; 8,1 ; -3,5 ; -2,6 ; -0,13 ; FutureFE2046 ; dac9F0E7AAeBfc1cCec8f3Dc4C87Ef1DfeCEC6eE145EDcd3E3daf075aEBd13fD ; < Si9mosnR4WrALM3OW1P35CkS07xth4VE05p3Qa7w8Y4U25p3G0c9g175i02ScKMx > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 27,4484475126 ; 1,46841302126465 ; 17,6925933746899 ; 27,4481975126 ; 27,4486975126 ; -7,8 ; 5,1 ; 6,2 ; 8,2 ; -5,9 ; 1,1 ; 0,41 ; FutureAP2037 ; DA464BDE2CeFfcbee56BB6F1Da5B8f37eaC4Fd54474BddAffb1eAfdfA1fEDB3D ; < JSP8a8f546lA9fjgUT1r8FHiiGFI5v0iOfmxbjnlqAH4AgDvge4eH59eOY4dR2N9 > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 27,8016134648767 ; 1,59759791601377 ; 16,4021342831028 ; 27,8013634648767 ; 27,8018634648767 ; 3,2 ; -0,9 ; 5 ; -9,8 ; 2,1 ; 2,5 ; 0,02 ; FutureJU2083 ; BAC02CBBC3Ba8CEADdbfebeD1Be53ACF5EB6bbCA3ac1fFF29ECffF7BFe3D4E5f ; < W4ErEdX0Ph16if6F49h9OM947ZP12B24N2kZv7HZw5JJd7fwKe7Psw1IU7Fcjc16 > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 28,2222823466999 ; 1,75931283644776 ; 15,0416509002934 ; 28,2220323466999 ; 28,2225323466999 ; 6,2 ; 4 ; 3,1 ; -4,2 ; 5,3 ; -5,7 ; -0,7 ; FutureAU2051 ; 2BBeA6F41feb6Fcbfd866eFe6FDc2Eaa5ca3EB091dB5CacD5f2eD8B9DF5C99dF ; < nJ7ftfHxsLF1k02y7Yf7d314Iue0A1Lv0O78I23M1z3lBFOgcx9n3U81FHfY5Ew4 > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 28,6256762191096 ; 1,96090321002745 ; 13,5982096784414 ; 28,6254262191096 ; 28,6259262191096 ; 0 ; 2,7 ; 2,1 ; 1,6 ; 6 ; 9 ; -0,12 ; FutureOC2014 ; FdafaefFFC3af788EcfcCfBab493D370ECaEeCB29Ac2d6aC3CdD2a9bdd5dFeaC ; < Ike4M7iPysylSnSpkonYLF0w070TH4v25bS5P5Jigu316slel3qQp5ex8NA5RMuQ > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 29,038821971005 ; 2,21198429177177 ; 12,1279512603344 ; 29,038571971005 ; 29,039071971005 ; -0,3 ; -9,5 ; -8,7 ; -5,5 ; -0,7 ; -0,8 ; 0,85 ; FutureDE2069 ; eB6Bf0d2a8dc3bedCaea41919Ce3DdABFfb22623ddaaBfdEeB9Ae3aE44e1B7eF ; < 62zR89249eEi1T5Ke55aW6N47DFAwYpzH7627HbBeFb74bs822Ok2H4rYa17DzEl > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 29,4896977716925 ; 2,5254099698645 ; 10,6771922672321 ; 29,4894477716925 ; 29,4899477716925 ; 9 ; -9,3 ; 3,2 ; 7,2 ; -4,1 ; -3,9 ; 0,28 ; FutureFE2143 ; 7a18D2ebc7aF1BAcF19B1F46DFaBBB2DEbC8e8fCbC09dBeACaeFC4d7CEEB0CDD ; < 8WI2NE4uG1qhrUc435Z1y10Z14471N7Zu4wYvMGpvl3D9AxMM1mt9NG5YPZwJgLx > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 29,9946040022869 ; 2,91851528577361 ; 9,27735031866939 ; 29,9943540022869 ; 29,9948540022869 ; 0,8 ; -6,3 ; -5,5 ; -0,1 ; -7,2 ; 2,6 ; -0,71 ; FutureAP2166 ; Cd62Fe6FACfAb1FE12E7D2d1Cae4BBDe2CeefcDedFFf2C05CFFCeBC1224eDccD ; < By61Td7JKq2obrh6x1z0g5rgD443N9NK1r9M2a9BYfJ11KpGxzdz7deWZI783ZLj > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 30,4848583948223 ; 3,41384729603948 ; 7,92976625820051 ; 30,4846083948223 ; 30,4851083948223 ; -3 ; 7,4 ; 2,5 ; 8,5 ; 0,6 ; 2,3 ; 0,39 ; FutureJU2157 ; DA88BCECba78D3daBf9C0caFea7FbB2ca2Dd2C6cFBcdB1B3c6DBdcF5Fa26Cb9c ; < 152UefMse40fgcu0Joado4ItISSaaQcCG05oHjiHWy981I5eY76tforR1XEqWHes > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 30,9894653608081 ; 4,04125107287478 ; 6,66828509339893 ; 30,9892153608081 ; 30,9897153608081 ; -3,5 ; -5,7 ; -4,6 ; -2,3 ; -1,6 ; 1,8 ; 0,33 ; FutureAU2155 ; BbA5fbF9eef34dDFBFAaDAE0dEcFDDdDFacCEee55AbFDfB85C6c6b6fECbD807A ; < k6KeHI44PaWVBdIzpGEYh8OHS90WRVyBIeYt38YpL37ZT77LR6Ayn8Qi84A8dU75 > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 31,4612656901512 ; 4,84209974397795 ; 5,497442711559 ; 31,4610156901512 ; 31,4615156901512 ; -4,9 ; -3,4 ; 6,5 ; -8,5 ; 1,5 ; 0,9 ; -0,29 ; FutureOC2166 ; bD2f4B659Ea0fC3AABFaefeFDeDeAeCC5596abbebB92ecAe6Ba04CAc33cb0fDd ; < 11jZRTtjHMhGeFT73ix4oy6TV42S7Z1oYZXXaiuChDh2Fz5oy4LGwjOudgSU06ag > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 32,0792449728395 ; 5,87166600220089 ; 4,46339743452969 ; 32,0789949728395 ; 32,0794949728395 ; 9,1 ; -7,5 ; -8,7 ; 9,3 ; 2,5 ; -7,3 ; 0,54 ; FutureDE2199 ; 4abA0ECDCaacACD10faCA2C3CfCeecE3ebcEfbBfCbFD1EE9BdcCEFb56dDc4FFB ; < dQtbuZm2G8oVF87RI6mq15S82a07Bc9mZ95Y5bQA2pVG2M3JEXLM8H3CdSkpWq0e > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 32,5827401162094 ; 7,20669966719837 ; 3,5211735774853 ; 32,5824901162094 ; 32,5829901162094 ; -4,1 ; 4,2 ; -0,7 ; -3,3 ; -4,5 ; -4,1 ; 0,5 ; FutureFE2254 ; Fd8eBFCd4acbcbF9b7A8C160Aaead10201a0Fe9DebD9833EEA5bB1aac7cABBb1 ; < 623F71y2Iw3Q3Au8cIie0hTs80t959A955iH4t45NH99C0ejl89zY8QGM2n9h8G7 > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 33,1898567754601 ; 8,95242807364405 ; 2,70735810468794 ; 33,1896067754601 ; 33,1901067754601 ; -2,2 ; -7 ; -1,1 ; -8,4 ; -8,6 ; 0,7 ; -0,52 ; FutureAP2286 ; 831c053bd9E6f3AB372d8feb6e5C5e1fc1c4AcCB07abD9A61584ACAecB5BBACc ; < dRL9ifJ9lq16y33603PR655982qgA8fd5Pf6CHJ9QY8YjbsoPkO08CHXjoecTYQf > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 33,8403101953302 ; 11,2569749806485 ; 2,00616375656017 ; 33,8400601953302 ; 33,8405601953302 ; -1,1 ; -4,4 ; 2,8 ; 9,9 ; 4,6 ; -7,5 ; 0,84 ; FutureJU2230 ; f0BACE65DEaAcbeE2BAe11F1DfB9C436DEeFE0CFFb627e31C9cAD0B46Eb3D657 ; < J8CXA01l6e69vSS2k332kBCAco8y3i87E63P07XkhU7fMH6Tr3Fi8ydCG7yQH9WL > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 34,601769428976 ; 14,3261293142326 ; 1,4152908765524 ; 34,601519428976 ; 34,602019428976 ; 1,8 ; -4,7 ; -0,7 ; 5,1 ; -9,3 ; 0,2 ; -0,8 ; FutureAU2273 ; ae1f2eCEca3bE9c7beAD6E2DEfA067648cFB4FC82cFE3FE20C51c606Aa3Dbda6 ; < NsuQi2A5z7P80v148XWjGt2slNtdk67H0FgCZD8LtaE6SQ2UaRS82p8xgI4EXc8x > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 35,1700998379458 ; 18,4528828160671 ; 0,905940670003223 ; 35,1698498379458 ; 35,1703498379458 ; -3,8 ; 2,2 ; -5,8 ; 0 ; -2,2 ; -7,9 ; 0,13 ; FutureOC2256 ; aDD1989D27DecDeb7C4efc50ADdBeFfA4c3fBCAa33dFdec4E5e4fAEe4cCEEA6a ; < gtX0v1GKO7UChPZ8j44um29TOLR7VEC4RM09Ep2Gsc1AV30mYamjVw2XJ21Yq1v7 > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 35,9979113231109 ; 24,058021366237 ; 0,496295592023635 ; 35,9976613231109 ; 35,9981613231109 ; 3,8 ; -3,3 ; -1,5 ; -9,7 ; 0,2 ; 1,9 ; -0,77 ; FutureDE2255 ; Bc9eE8Efa5C3beb78B9EACD5aD6ef3afeA449B503be9f9fD29CB2Ce7AC55AD6E ; < oDzs5y688A0zz1a857Gk9T86j7pElssR21o6K2RwAdnh6shKH7fLz32eJBFt1BS7 > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 36,5705504623267 ; 31,7439279634604 ; 0,152048684851546 ; 36,5703004623267 ; 36,5708004623267 ; 4,5 ; -0,9 ; -8,9 ; 8,1 ; 6,7 ; -8,8 ; -0,76 ; FutureFE2370 ; F0cC70Addcd0d7b112c4ED37b7f4Cd5D5D3EFC6a0fd9Caa9aafCDBAaDdEea0Cc ; < bj6v9Uh4wL91xEgaO8JbgE7UD7YZ3384t41yIBzT5CEYpqd6b6aYEhsZkREPzfDy > > // < CALLS ; 5Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 14,9973020011434 ; quote ; 68,7696516082759 ; 67,3942585761104 ; 0,0204081632653061 ; -4,2 ; 62,9242312215724 ; 74,6150719949793 ; -6 ; faA8EDbFde025EC5AfFc0AFecb5F6C6EdaaEf998Acc5DfcBdcbDa1cCCFbC5cFb ; < tQfSbv44P15ZOXvV7VC79RaOmc4hqLw318E85fW7TQ1YWS8IS6KC4i0XnOVHAUK9 > > // < CALLS 16,4970322012578 ; quote ; 66,0394899014161 ; 64,7187001033877 ; 0,0204081632653061 ; -3,7 ; 60,4261332597957 ; 71,6528465430364 ; -2,3 ; 1B4b71bBF8deabdceEBccFcfCe1E7aDCCEeeA3EDaDb8FA1B7b95CB06DFBEc87e ; < q4tt44c7hO71A0u5emsyFce04Tlu9YQ059p8Vt2c18Y770U0Fu24JlHr3W0NvTi4 > > // < CALLS 17,9967624013721 ; quote ; 63,4088182749812 ; 62,1406419094816 ; 0,0204081632653061 ; -9,3 ; 58,0190687216078 ; 68,7985678283546 ; 3,4 ; E3b730bbFFdd6cAa5ddCa5DfB13F8eAEFE1A7cFDeE2eBA3ED8BB23eCbc78de94 ; < 600H1A02l9QQ8s9a9pZ6ZtRw2ylHEhgudhYaM1IT5vO47MecnJwdSFeJ3Z4T31Zw > > // < CALLS 19,4964926014865 ; quote ; 60,8785228676813 ; 59,6609524103277 ; 0,0204081632653061 ; 2,6 ; 55,7038484239284 ; 66,0531973114342 ; -1,6 ; 8dBf1898d4FB89CADB46fc80Ace6D8aFcA2e4Fd9AbD6F6B977df42131ba910F9 ; < W86QIJ67CS3UgHay02E7vhD413DhXbD5JbKBxd5WXr8oTsRUG4v9vtZ9a45LYA8u > > // < CALLS 20,9962228016008 ; quote ; 58,4483243190617 ; 57,2793578326805 ; 0,0204081632653061 ; -0,2 ; 53,4802167519415 ; 63,416431886182 ; 1,8 ; cBb7c573d3493b13eeCFC0E27C5DaEcFceCF59a5abd0dabeaBfD40BfEb2c7F3a ; < 66941g3wne7QYMUf3AmtGxgV56q8B3K10uXZwMF6hg4yin73TFlDpK7vW9U7p39W > > // < CALLS 22,4959530017151 ; quote ; 56,1170355544163 ; 54,994694843328 ; 0,0204081632653061 ; -6,3 ; 51,347087532291 ; 60,8869835765417 ; 0,4 ; FF193a08Baf82BDad07ecbB1eC0c8F5f4A3cd3Dd0D2CA86dC0dAecCeeB8BCE67 ; < A17R75DRrcQhaqgbQtXzXtV6JkYw0pm1aTtvP7Bd8a2qn61lwpbLdQL14rL4Gx4e > > // < CALLS 23,9956832018295 ; quote ; 53,8827769498618 ; 52,8051214108646 ; 0,0204081632653061 ; -5,7 ; 49,3027409091236 ; 58,4628129906001 ; -9 ; BBECFEb658AbCCDe02aafd8AacE8D7EAB4BcBd5cDdb6e3AaB0BDCfbcbA2a0A27 ; < 15sW63I465U37x2bR06v2G98YWnqUIROZp8v1g7o6U5rZv4rJ55S40n04Si93Gyi > > // < CALLS 25,4954134019438 ; quote ; 51,7431529046748 ; 50,7082898465813 ; 0,0204081632653061 ; 9,5 ; 47,3449849077774 ; 56,1413209015721 ; 2,9 ; FFBce1c7dC1a523dF6FDceAb0f9BcEbfb1ad4dD6CCAcB22e0CbF0382A20dD3E4 ; < ZOESfdKnhaYO9b00Df1J6PtIB3Ro1kD9xzjm2gd8sdXHudT1E47FXRaCn1T98Gk6 > > // < CALLS 26,9951436020582 ; quote ; 49,6953949372565 ; 48,7014870385113 ; 0,0204081632653061 ; 5,7 ; 45,4712863675897 ; 53,9195035069233 ; 8,5 ; 531C6dCCEdfBfBceB63Ca7eEAabcf2F5ACc58cFAff64d8fAcdB5B8CB2A3bcBc4 ; < 5KGGvR70DXFbOUe5uR7c5628A7F71HMa416d38016YRYfm4o08y5edidr5sR3P9o > > // < CALLS 28,4948738021725 ; quote ; 47,7364764920315 ; 46,7817469621909 ; 0,0204081632653061 ; 3,5 ; 43,6788759902088 ; 51,7940769938542 ; 4,7 ; 48AbCffFf8Fc2a6a26D6Ed5698FF491Dc1d7FcaafcA5BA46AD8C85Daf12d337e ; < 18NlQ5Z9F812uuN6EzDER6Fo2c0nqXj5isVYgNhtXG127wtn734W2VH0IF11DLt9 > > // < CALLS 29,9946040022869 ; quote ; 45,8632042431598 ; 44,9459401582966 ; 0,0204081632653061 ; 2,2 ; 41,9648318824912 ; 49,7615766038284 ; -0,9 ; 40DdBB20dc2f0fE564CEaAD922ee8195FFf4D6bd348bDeD5Af0AFD1BEf15E4f5 ; < jnCOfY6YO55FlU5U7IRmuEAm5ms3677yEIL6idbTsAKSjV1Zy3pzsHn0kxj10Lz1 > > // < CALLS 31,4943342024012 ; quote ; 44,0722900961976 ; 43,1908442942737 ; 0,0204081632653061 ; -0,1 ; 40,3261454380208 ; 47,8184347543744 ; -5,6 ; d2E6bced5Dca6E2a83A0c13F78678Cd5fC587CfEddc98BBF3Acd19aAda1Dd473 ; < 8E4vfgGOI8IjODdFa4Zt9817F8307S67HshKVd5oaJvcic3yj7T59GX67XTYryoK > > // < CALLS 32,9940644025156 ; quote ; 42,3604074685174 ; 41,5131993191471 ; 0,0204081632653061 ; -3,2 ; 38,7597728336934 ; 45,9610421033414 ; 3,9 ; 9a6ce06497D6CcaAdDEBa3fCdA9Fb9e4A98A21Cfb5ff8cdBeF0cA0AA1dF14dcC ; < 6PVcfX3sCpRo9aIJ98J616m5910Jx0m7ZiIhji4p3TD07aa3Tzy9t1CKuM2t1bQ0 > > // < CALLS 34,4937946026299 ; quote ; 40,7242348442273 ; 39,9097501473428 ; 0,0204081632653061 ; 2,4 ; 37,262674882468 ; 44,1857948059867 ; 3,1 ; D12DfcF16c0c19A2037a8f498afDCdCaA3cECeFDbcdAdFdECa1eb63a2edBA1Fa ; < YocEeQq6H4TpDo1lP5m64zo1DZDr6j5n5HaDwWz2S03365rbaR22Eg3980k9m70l > > // < CALLS 35,9935248027442 ; quote ; 39,1604890792011 ; 38,3772792976171 ; 0,0204081632653061 ; 3,1 ; 35,831847507469 ; 42,4891306509332 ; -0,9 ; AF7ac8d69A8d9cdACacDDce4FC5FDaD6AfCDECBb7Dfede5ecEeaBCC5dDcBD58b ; < yfOn10BQ7TRMiu773yj2GnB15P43rPo388i6712IvOUGXN5FDZLdTzwf18745K02 > > // < CALLS 37,4932550028586 ; quote ; 37,6659504849378 ; 36,912631475239 ; 0,0204081632653061 ; -1,3 ; 34,4643446937181 ; 40,8675562761575 ; -8 ; ec0BbbFaDcEAAe3F235CAFbFFFEBf6B8C45366f5CC04A5E20a5BceC2A0Cf5Fca ; < 86S91OlUE3ER383f34cRR5cD608nX3ZpfXuv8wH53f0C4x0G80Ue9iN22nRYiQME > > // < CALLS 38,9929852029729 ; quote ; 36,2374813440611 ; 35,5127317171799 ; 0,0204081632653061 ; -3 ; 33,1572954298159 ; 39,3176672583063 ; 9,4 ; CEa3e80FDAA8aAeCCdDa8aE9e8bD0A6f79A5EfE8cB4738EA9bBfAedbdfebc3FF ; < t61iM968351733p7qV843r7RM4M5sbnzW59pr5AJ153hSC4pfspZ5vk8J1xSfuD4 > > // < CALLS 40,4927154030873 ; quote ; 34,8720391984027 ; 34,1745984144347 ; 0,0204081632653061 ; -8,4 ; 31,9079158665385 ; 37,836162530267 ; 7,6 ; 46CfCB62EE3bf4cAf230eF9169E8f03CdFbA6A6Fe5ade2721DB5dC53bd8B3DCf ; < 4M45347mOI214k0nR3Voa7I7kDqENWV5T0oZrET033IEnoVF0WRB5Zjm9sULOGse > > // < CALLS 41,9924456032016 ; quote ; 33,5666859942514 ; 32,8953522743664 ; 0,0204081632653061 ; -3,6 ; 30,71351768474 ; 36,4198543037628 ; -7,9 ; f4aaBED34ECD3fAA8BB8Fd1CcEF40aecdd47eDB10AffbeefCbcdDeCBF70d21Ee ; < 03JGsqp3L6WSaCPq70lH8VXrCX6pTW5fu3VBIgwkj4YDfCEq2OZp0NTO884ok8hc > > // < CALLS 43,492175803316 ; quote ; 32,3185939599338 ; 31,6722220807351 ; 0,0204081632653061 ; 8,7 ; 29,5715134733394 ; 35,0656744465281 ; -7,7 ; 2C1Ba95aE2F80CcE2EfB02c0cAADbedf52BdC5BB6d2567cda46fAe8e56dcc045 ; < ppE1ulFHpgSJNI52GM87RYGP4x3AjdG1T4Hbz2Y7Xdo55na37vO5YHUqLohn938d > > // < CALLS 44,9919060034303 ; quote ; 31,1250489205501 ; 30,5025479421391 ; 0,0204081632653061 ; 9,7 ; 28,4794197623033 ; 33,7706780787969 ; -0,3 ; E4EeAccdA7a1AdbA4Ca38eCA978b3cB4d76fFaf3b9DeaA2bc8cBAa6F4cFfFbcF ; < pNVQhY8ZIU8jg3L35Z5TMdm5ugz4El8e1A7Gs1KUNwRJI9980dBIruM3gaDI5K5W > > // // < PUTS ; 5Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 14,9973020011434 ; quote ; 1,45814086476824 ; 1,42897804747287 ; 0,0204081632653061 ; -9,7 ; 1,33419889126294 ; 1,58208283827354 ; 1,8 ; BBbc3ce9efEedecDfF98CcBCf9EBC2bE6ecc9fbDDCB372bDf2Cbed38bDBFA7fA ; < g6Buu13gjK6wRG19MlIkl6r8J96hOUZ41398365doqg8iyHa1775tnKM57SUdbHe > > // < PUTS 16,4970322012578 ; quote ; 1,99682808355766 ; 1,95689152188651 ; 0,0204081632653061 ; -9,5 ; 1,82709769645526 ; 2,16655847066006 ; -2,7 ; F5CBBA6e380BA3fe9dE8aAa4D4BeeAa130BaCA213cAFaF9aBB4cFd3D8eaCd35E ; < j7dq1K4UD6k7T2D51dsT8NHCJuGQ33bPh52tB2dk2mjzqK79SDok8Xwz25lWcEq8 > > // < PUTS 17,9967624013721 ; quote ; 2,63500538277204 ; 2,5823052751166 ; 0,0204081632653061 ; 4,8 ; 2,41102992523641 ; 2,85898084030766 ; 2,2 ; f8fa8AACeC1da3C05ecA8438FbE0FDAED2d2aBeBf469D1a3AfB1Ab20EeCFC7D7 ; < 72fJ7m0Vg6hq5juKmjLYPc7ix72FQS8R7u6GcoA61GR081AmK90o3xpntvko99zT > > // < PUTS 19,4964926014865 ; quote ; 3,37355890112138 ; 3,30608772309896 ; 0,0204081632653061 ; -0,7 ; 3,08680639452607 ; 3,6603114077167 ; 5,5 ; 5C60b4Bec53d1af96A9FADEDeC1FE772588cE5787C8BDD59ABEBe149eAaeCa4E ; < gVEfqG5IU81ZvZG3O6cwn1ZtIGJO2pqTUwiK1695DE0Rh4g48q5HZ57Ocl279W5t > > // < PUTS 20,9962228016008 ; quote ; 4,21220927815102 ; 4,127965092588 ; 0,0204081632653061 ; -2,4 ; 3,85417148950818 ; 4,57024706679386 ; 7,2 ; 034EfCc4aD0eC92Fc80beEbF9d48eBBDDc75b1dC0bB4CFc2FfBBac2b8dED4A88 ; < w1Y8vm86V08j3gyb73EnO174vNUv7hpD47V9AHOM7LiGZ8LS1A35Udnw40EUqwOP > > // < PUTS 22,4959530017151 ; quote ; 5,14976943915488 ; 5,04677405037178 ; 0,0204081632653061 ; 9,5 ; 4,71203903682672 ; 5,58749984148305 ; -4,7 ; C2CEC4F5aFBD9fDD4aE72C1fc4FcD7dB2B2AF2b5Ae61d8aCAAEB9eAc5CbbcE0d ; < v6nM5SpVHQG4uyk3C970nJ4C6l1c1w657Rsn32fjz33SQ3c5dTjiqffdLHM4Zp6r > > // < PUTS 23,9956832018295 ; quote ; 6,18435976024961 ; 6,06067256504461 ; 0,0204081632653061 ; -3,5 ; 5,65868918062839 ; 6,71003033987082 ; 3,5 ; 2aab0daAbfaCcd7Fb18Ff68bE007F077C3AEaD747AAaAEaAdAefeDAC6fEdC11F ; < 1lsOp7Z0O9K8b20z90cw5c1OqmjcaGtwI7q6gMWDdATLK64321PuI4b2l0OF0yH3 > > // < PUTS 25,4954134019438 ; quote ; 7,31358464071178 ; 7,16731294789755 ; 0,0204081632653061 ; -2,9 ; 6,69192994625128 ; 7,93523933517228 ; -5 ; 19cbe105AE48CE2fBa4aaA0D67E6d4C8fE00bB38fEDdDAFd7cf1cBC547Ba0Dad ; < wf9l53qtVUu694vVfSju5E6cpmpMI1eVNffxpGo9kn8pP51eu6Yi31iOCEc1Vntq > > // < PUTS 26,9951436020582 ; quote ; 8,53467559894273 ; 8,36398208696387 ; 0,0204081632653061 ; -9,5 ; 7,8092281730326 ; 9,26012302485286 ; 7,2 ; b618CfdEba8Ab8dDcA9fC52eC6dBa82FDeB6a56eFD8eEcBeB8aD9e5b05cdda1A ; < 338L2SSC7DrnL3wAmS5LCVKG6l751UvY8dXOWB39WE7wXNyZHc89t9jBSO6OXXF9 > > // < PUTS 28,4948738021725 ; quote ; 9,84460607936701 ; 9,64771395777967 ; 0,0204081632653061 ; 6,4 ; 9,00781456262082 ; 10,6813975961132 ; -3,8 ; f01Bb545aEE09cBDD4f38b31dcADcFFdB37eBCe2Fcb17e4d2B8B4aaAdEF1dddb ; < x1106AIx04C8ZP9CRl52ZY6w79W6He53Qn69SXN1DUHlHEKeTOBq4Rw7KZG439Eo > > // < PUTS 29,9946040022869 ; quote ; 11,2401827561445 ; 11,0153791010216 ; 0,0204081632653061 ; -8,8 ; 10,2847672218722 ; 12,1955982904168 ; -2,8 ; 6A24EEDf53ECEb56ad23fACF4cCC42d3d2E274c4ADc7c04acE7Eb029622C7f3e ; < O31Nmo8XJ3L3F0qY9kTCO32fL9v14m5UtkIFo3OJ1CVZ85qcWFdg37mQ1wCwJlK0 > > // < PUTS 31,4943342024012 ; quote ; 12,7181175348316 ; 12,4637551841349 ; 0,0204081632653061 ; -6,3 ; 11,6370775443709 ; 13,7991575252923 ; -5 ; C57Fafa6dADbD8C5be4debf9cd1f3a5d5cBDe2bCe5bbD2cDfBE9AEd80e9eDeD7 ; < SuWiv4pOj98ki7Pyj3GwavdA0T1IiyK98DQKz954O26NmXcaI7AHt2103m17SfKW > > // < PUTS 32,9940644025156 ; quote ; 14,2750838328006 ; 13,9895821561446 ; 0,0204081632653061 ; -2,1 ; 13,0617017070126 ; 15,4884659585887 ; -6,1 ; 7bcBebdBcFbc92B87ca6cdad2fF7AffF649fb3ebAa97cC0cD7B8EA15850b6CE1 ; < AruBgnd8nX7qhkt84Wj1up2Aaaif0U2Jw0lX690fjz7oIUP16og1fM33dfT6s148 > > // < PUTS 34,4937946026299 ; quote ; 15,9077601341598 ; 15,5896049314766 ; 0,0204081632653061 ; -6,7 ; 14,5556005227562 ; 17,2599197455634 ; 4,1 ; 8cb0DCBfFcFfeb6690CeA9c3AB6dbBbea5DE9b7aBDDF9CccfeF6b6C2Df2d7E3D ; < JgJ0gjFSaE01BtSfB7wuzMv5WBAX2PLwK1mBj82ALJWjI717fT9142gkh6Im67l2 > > // < PUTS 35,9935248027442 ; quote ; 17,6128632947828 ; 17,2606060288872 ; 0,0204081632653061 ; -0,2 ; 16,1157699147263 ; 19,1099566748394 ; 3,1 ; CFAaBD4Dd8A8Cd5fDCA2DDEbcEfF5bfD650eba8cddcf7FeAcc71aC1c3E867beB ; < n1H0756lEQ8wra5e1pZ5g84IP1yaUO7kXRbuDV90N8WcDV3lVqQqg4meZ19QPC0m > > // < PUTS 37,4932550028586 ; quote ; 19,3871736261687 ; 18,9994301536453 ; 0,0204081632653061 ; 8,2 ; 17,7392638679444 ; 21,035083384393 ; 1,4 ; bFd4A78aEdedBeCD5947eFCf5bA60efF98fE1fB14B97Bc30D1bE9ACcb7bBCD4b ; < 9rKA43zB0a8QEMEb24359lS76hbdCUtk3zH5O9ljV5P7vV5IhDNsAw8u5DepFf89 > > // < PUTS 38,9929852029729 ; quote ; 21,2275534109413 ; 20,8030023427224 ; 0,0204081632653061 ; 3,3 ; 19,4232113710113 ; 23,0318954508713 ; -5,1 ; 4e2cfDecCF2eCefBAAF25BDBbe4fe2EDEBe8E2bEDeEbcfCEbce3062A6D90AAe2 ; < aZ8vSX3598jn57NeRo3389nf7a439T5Xgzk9k1c9P5DMPJ9GF64WGsClL26da5tV > > // < PUTS 40,4927154030873 ; quote ; 23,1309601909321 ; 22,6683409871135 ; 0,0204081632653061 ; -6,1 ; 21,1648285747029 ; 25,0970918071614 ; 2,6 ; 4ba3C7cA19d5bffdeC26a3e0EFDB73333B27De1513E74bbfC2Da386490B8d4D6 ; < 099209P2vz53NDo4fQ5ogNvfTs0kOtZ0X2Gy1FByX45fJ052gShhsbKO4PphmqAx > > // < PUTS 41,9924456032016 ; quote ; 25,09445591243 ; 24,5925667941814 ; 0,0204081632653061 ; -2,8 ; 22,9614271598735 ; 27,2274846649866 ; -0,4 ; d21CBfad7E05cdaafcb08C3d6E8CBC639adA090DbbE1adDaED14f556abABBfAB ; < JuVoSlRdS5DxNlCN1fu1akXS8PvUYu52nxqsmzaqczOXv9B8uZ3ph4ZSZV4oeGHI > > // < PUTS 43,492175803316 ; quote ; 27,1152128037616 ; 26,5729085476864 ; 0,0204081632653061 ; 1,8 ; 24,8104197154419 ; 29,4200058920813 ; 7,6 ; 8beedABdb6daEcFEdCeeaA8d2d3C2Dc689AB08eb0AcdCd393BcecB5Ea20C0C9d ; < zIgzf5juco6E7onxRExuPV5NE8dsGeMk2BJIGEeMuBf4U3CsoA9K89Hu0p5WT593 > > // < PUTS 44,9919060034303 ; quote ; 29,1905166900272 ; 28,6067063562266 ; 0,0204081632653061 ; 1 ; 26,7093227713749 ; 31,6717106086795 ; 7,1 ; 4dcf3ed98AA4EDaDDfc2fdEA528a4E86f25A2dA06AcC21Fe9ae0C69670eCb1Bf ; < 19w8jOGGySgngC8Fnp2WtN5p8U6U08bnsn7jj4MVXB9qXW5v06qJum4ZzgVJ21sV > > // Futures_Mostootryad_org_spe // < # ; REF ; Month ; Future ; 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 ; - ; - ; - ; 25,532252 ; 1,14 ; 21,3967122807017 ; - ; - ; - ; - ; - ; - ; - ; - ; - ; - ; EaE1cdcCdBeD9F8FCefEaBdECBB3bedf9df4fc6Fd43AcBcEaAC6cFB7A343dFbd ; < Nou64tvjg520NpCAk4oX2c4g4IY0ErM6nhK2iq5RL9kK6seXJaQeHHjekUcg8m3f > > // < 1 ; 0M ; APR2019 ; fut. ; - ; 25,5308024722927 ; 1,1399259 ; 21,3968965634457 ; 25,5305524722927 ; 25,5310524722927 ; -1,1 ; 2 ; 8,7 ; 1,9 ; -1,3 ; -5 ; 0,86 ; Future52AP19 ; AFc7CD4493fCF25FE7aB1B1e2b6de79b6dECbE4eBae51e2171d4A7Ba05f8fFE1 ; < aKJ64k5LKFwjgMHIeLcGX9jNOICJ3ffmf7165963yO7YXRI6Kstc2lXL22KZ232I > > // < 2 ; 2M ; JUN2019 ; fut. ; - ; 25,8113589541883 ; 1,15385052700825 ; 21,3697596439229 ; 25,8111089541883 ; 25,8116089541883 ; 4,5 ; -3,6 ; 0,8 ; 3,7 ; -1,9 ; -3 ; 0,92 ; FutureJU1947 ; aCeaaD22BB5CaAF8c3a4cD4AEdC1bFeFAbfCbadAD4A48a6cEf1FFadca4BAFECa ; < s7dLc81vV6IJtF20onqF2K1z7ZI37Hg8GOUtbia6rGs7007E29hoZDfhjqz8S2f6 > > // < 3 ; 4M ; AUG2019 ; fut. ; - ; 26,1001923180004 ; 1,18200079592152 ; 21,0813661108004 ; 26,0999423180004 ; 26,1004423180004 ; 6,7 ; -5 ; 5,2 ; -5,7 ; -9,4 ; 3,3 ; 0,29 ; FutureAU1956 ; fEce5CDC0eBbF4E175fBaBDAbcF2FaBE6ffDe4aEe9dD5faA5Eb4bFd31f3D0ABe ; < 9d3lfS6T9rP4OdEgq2c1bx0fMz2AAoJnwry12n252RwgfEZRUNIF2EJ357mzo83O > > // < 4 ; 6M ; OCT2019 ; fut. ; - ; 26,4111035328828 ; 1,22548550318439 ; 20,5515430123442 ; 26,4108535328828 ; 26,4113535328828 ; -6,3 ; -1,6 ; 2,8 ; 9,4 ; -0,1 ; 8,8 ; -0,46 ; FutureOC1985 ; cCd6F759f17b283a0aaE8cbb66C8C06AF8bFCaA32AbCadF42FFDcffC237aEB0C ; < udPb7Zq4KQ9G294GrNb2Z9kSgK0HcNiKF8c7BR23PUZbl78OWM7N3pd46G1RP37k > > // < 5 ; 8M ; DEC2019 ; fut. ; - ; 26,7488112860661 ; 1,28599748360657 ; 19,8000494768072 ; 26,7485612860661 ; 26,7490612860661 ; 9,8 ; 5,8 ; -9,3 ; -2,1 ; -6,5 ; -0,3 ; 0,55 ; FutureDE1951 ; CE7eaaBEee41dCBdbbebB437CEFB26cEbBe6E3d5ac9BFaEEabBEdAfFcb096EAD ; < 1yxCIFJf3XPrcJu70iqDm94D71drHn2748ejpAOE591hXJ0zPA3tpC14C6B11IEx > > // < 6 ; 10M ; FEB2020 ; fut. ; - ; 27,0857998010053 ; 1,36590207084755 ; 18,8299719863508 ; 27,0855498010053 ; 27,0860498010053 ; 2,2 ; 5 ; -4 ; 8,1 ; -3,5 ; -2,6 ; -0,13 ; FutureFE2046 ; dac9F0E7AAeBfc1cCec8f3Dc4C87Ef1DfeCEC6eE145EDcd3E3daf075aEBd13fD ; < Si9mosnR4WrALM3OW1P35CkS07xth4VE05p3Qa7w8Y4U25p3G0c9g175i02ScKMx > > // < 7 ; 12M ; APR2020 ; fut. ; - ; 27,4484475126 ; 1,46841302126465 ; 17,6925933746899 ; 27,4481975126 ; 27,4486975126 ; -7,8 ; 5,1 ; 6,2 ; 8,2 ; -5,9 ; 1,1 ; 0,41 ; FutureAP2037 ; DA464BDE2CeFfcbee56BB6F1Da5B8f37eaC4Fd54474BddAffb1eAfdfA1fEDB3D ; < JSP8a8f546lA9fjgUT1r8FHiiGFI5v0iOfmxbjnlqAH4AgDvge4eH59eOY4dR2N9 > > // < 8 ; 14M ; JUN2020 ; fut. ; - ; 27,8016134648767 ; 1,59759791601377 ; 16,4021342831028 ; 27,8013634648767 ; 27,8018634648767 ; 3,2 ; -0,9 ; 5 ; -9,8 ; 2,1 ; 2,5 ; 0,02 ; FutureJU2083 ; BAC02CBBC3Ba8CEADdbfebeD1Be53ACF5EB6bbCA3ac1fFF29ECffF7BFe3D4E5f ; < W4ErEdX0Ph16if6F49h9OM947ZP12B24N2kZv7HZw5JJd7fwKe7Psw1IU7Fcjc16 > > // < 9 ; 16M ; AUG2020 ; fut. ; - ; 28,2222823466999 ; 1,75931283644776 ; 15,0416509002934 ; 28,2220323466999 ; 28,2225323466999 ; 6,2 ; 4 ; 3,1 ; -4,2 ; 5,3 ; -5,7 ; -0,7 ; FutureAU2051 ; 2BBeA6F41feb6Fcbfd866eFe6FDc2Eaa5ca3EB091dB5CacD5f2eD8B9DF5C99dF ; < nJ7ftfHxsLF1k02y7Yf7d314Iue0A1Lv0O78I23M1z3lBFOgcx9n3U81FHfY5Ew4 > > // < 10 ; 18M ; OCT2020 ; fut. ; - ; 28,6256762191096 ; 1,96090321002745 ; 13,5982096784414 ; 28,6254262191096 ; 28,6259262191096 ; 0 ; 2,7 ; 2,1 ; 1,6 ; 6 ; 9 ; -0,12 ; FutureOC2014 ; FdafaefFFC3af788EcfcCfBab493D370ECaEeCB29Ac2d6aC3CdD2a9bdd5dFeaC ; < Ike4M7iPysylSnSpkonYLF0w070TH4v25bS5P5Jigu316slel3qQp5ex8NA5RMuQ > > // < 11 ; 20M ; DEC2020 ; fut. ; - ; 29,038821971005 ; 2,21198429177177 ; 12,1279512603344 ; 29,038571971005 ; 29,039071971005 ; -0,3 ; -9,5 ; -8,7 ; -5,5 ; -0,7 ; -0,8 ; 0,85 ; FutureDE2069 ; eB6Bf0d2a8dc3bedCaea41919Ce3DdABFfb22623ddaaBfdEeB9Ae3aE44e1B7eF ; < 62zR89249eEi1T5Ke55aW6N47DFAwYpzH7627HbBeFb74bs822Ok2H4rYa17DzEl > > // < 12 ; 22M ; FEB2021 ; fut. ; - ; 29,4896977716925 ; 2,5254099698645 ; 10,6771922672321 ; 29,4894477716925 ; 29,4899477716925 ; 9 ; -9,3 ; 3,2 ; 7,2 ; -4,1 ; -3,9 ; 0,28 ; FutureFE2143 ; 7a18D2ebc7aF1BAcF19B1F46DFaBBB2DEbC8e8fCbC09dBeACaeFC4d7CEEB0CDD ; < 8WI2NE4uG1qhrUc435Z1y10Z14471N7Zu4wYvMGpvl3D9AxMM1mt9NG5YPZwJgLx > > // < 13 ; 24M ; APR2021 ; fut. ; - ; 29,9946040022869 ; 2,91851528577361 ; 9,27735031866939 ; 29,9943540022869 ; 29,9948540022869 ; 0,8 ; -6,3 ; -5,5 ; -0,1 ; -7,2 ; 2,6 ; -0,71 ; FutureAP2166 ; Cd62Fe6FACfAb1FE12E7D2d1Cae4BBDe2CeefcDedFFf2C05CFFCeBC1224eDccD ; < By61Td7JKq2obrh6x1z0g5rgD443N9NK1r9M2a9BYfJ11KpGxzdz7deWZI783ZLj > > // < 14 ; 26M ; JUN2021 ; fut. ; - ; 30,4848583948223 ; 3,41384729603948 ; 7,92976625820051 ; 30,4846083948223 ; 30,4851083948223 ; -3 ; 7,4 ; 2,5 ; 8,5 ; 0,6 ; 2,3 ; 0,39 ; FutureJU2157 ; DA88BCECba78D3daBf9C0caFea7FbB2ca2Dd2C6cFBcdB1B3c6DBdcF5Fa26Cb9c ; < 152UefMse40fgcu0Joado4ItISSaaQcCG05oHjiHWy981I5eY76tforR1XEqWHes > > // < 15 ; 28M ; AUG2021 ; fut. ; - ; 30,9894653608081 ; 4,04125107287478 ; 6,66828509339893 ; 30,9892153608081 ; 30,9897153608081 ; -3,5 ; -5,7 ; -4,6 ; -2,3 ; -1,6 ; 1,8 ; 0,33 ; FutureAU2155 ; BbA5fbF9eef34dDFBFAaDAE0dEcFDDdDFacCEee55AbFDfB85C6c6b6fECbD807A ; < k6KeHI44PaWVBdIzpGEYh8OHS90WRVyBIeYt38YpL37ZT77LR6Ayn8Qi84A8dU75 > > // < 16 ; 30M ; OCT2021 ; fut. ; - ; 31,4612656901512 ; 4,84209974397795 ; 5,497442711559 ; 31,4610156901512 ; 31,4615156901512 ; -4,9 ; -3,4 ; 6,5 ; -8,5 ; 1,5 ; 0,9 ; -0,29 ; FutureOC2166 ; bD2f4B659Ea0fC3AABFaefeFDeDeAeCC5596abbebB92ecAe6Ba04CAc33cb0fDd ; < 11jZRTtjHMhGeFT73ix4oy6TV42S7Z1oYZXXaiuChDh2Fz5oy4LGwjOudgSU06ag > > // < 17 ; 32M ; DEC2021 ; fut. ; - ; 32,0792449728395 ; 5,87166600220089 ; 4,46339743452969 ; 32,0789949728395 ; 32,0794949728395 ; 9,1 ; -7,5 ; -8,7 ; 9,3 ; 2,5 ; -7,3 ; 0,54 ; FutureDE2199 ; 4abA0ECDCaacACD10faCA2C3CfCeecE3ebcEfbBfCbFD1EE9BdcCEFb56dDc4FFB ; < dQtbuZm2G8oVF87RI6mq15S82a07Bc9mZ95Y5bQA2pVG2M3JEXLM8H3CdSkpWq0e > > // < 18 ; 24M ; FEB2022 ; fut. ; - ; 32,5827401162094 ; 7,20669966719837 ; 3,5211735774853 ; 32,5824901162094 ; 32,5829901162094 ; -4,1 ; 4,2 ; -0,7 ; -3,3 ; -4,5 ; -4,1 ; 0,5 ; FutureFE2254 ; Fd8eBFCd4acbcbF9b7A8C160Aaead10201a0Fe9DebD9833EEA5bB1aac7cABBb1 ; < 623F71y2Iw3Q3Au8cIie0hTs80t959A955iH4t45NH99C0ejl89zY8QGM2n9h8G7 > > // < 19 ; 36M ; APR2022 ; fut. ; - ; 33,1898567754601 ; 8,95242807364405 ; 2,70735810468794 ; 33,1896067754601 ; 33,1901067754601 ; -2,2 ; -7 ; -1,1 ; -8,4 ; -8,6 ; 0,7 ; -0,52 ; FutureAP2286 ; 831c053bd9E6f3AB372d8feb6e5C5e1fc1c4AcCB07abD9A61584ACAecB5BBACc ; < dRL9ifJ9lq16y33603PR655982qgA8fd5Pf6CHJ9QY8YjbsoPkO08CHXjoecTYQf > > // < 20 ; 38M ; JUN2022 ; fut. ; - ; 33,8403101953302 ; 11,2569749806485 ; 2,00616375656017 ; 33,8400601953302 ; 33,8405601953302 ; -1,1 ; -4,4 ; 2,8 ; 9,9 ; 4,6 ; -7,5 ; 0,84 ; FutureJU2230 ; f0BACE65DEaAcbeE2BAe11F1DfB9C436DEeFE0CFFb627e31C9cAD0B46Eb3D657 ; < J8CXA01l6e69vSS2k332kBCAco8y3i87E63P07XkhU7fMH6Tr3Fi8ydCG7yQH9WL > > // < 21 ; 40M ; AUG2022 ; fut. ; - ; 34,601769428976 ; 14,3261293142326 ; 1,4152908765524 ; 34,601519428976 ; 34,602019428976 ; 1,8 ; -4,7 ; -0,7 ; 5,1 ; -9,3 ; 0,2 ; -0,8 ; FutureAU2273 ; ae1f2eCEca3bE9c7beAD6E2DEfA067648cFB4FC82cFE3FE20C51c606Aa3Dbda6 ; < NsuQi2A5z7P80v148XWjGt2slNtdk67H0FgCZD8LtaE6SQ2UaRS82p8xgI4EXc8x > > // < 22 ; 42M ; OCT2022 ; fut. ; - ; 35,1700998379458 ; 18,4528828160671 ; 0,905940670003223 ; 35,1698498379458 ; 35,1703498379458 ; -3,8 ; 2,2 ; -5,8 ; 0 ; -2,2 ; -7,9 ; 0,13 ; FutureOC2256 ; aDD1989D27DecDeb7C4efc50ADdBeFfA4c3fBCAa33dFdec4E5e4fAEe4cCEEA6a ; < gtX0v1GKO7UChPZ8j44um29TOLR7VEC4RM09Ep2Gsc1AV30mYamjVw2XJ21Yq1v7 > > // < 23 ; 44M ; DEC2022 ; fut. ; - ; 35,9979113231109 ; 24,058021366237 ; 0,496295592023635 ; 35,9976613231109 ; 35,9981613231109 ; 3,8 ; -3,3 ; -1,5 ; -9,7 ; 0,2 ; 1,9 ; -0,77 ; FutureDE2255 ; Bc9eE8Efa5C3beb78B9EACD5aD6ef3afeA449B503be9f9fD29CB2Ce7AC55AD6E ; < oDzs5y688A0zz1a857Gk9T86j7pElssR21o6K2RwAdnh6shKH7fLz32eJBFt1BS7 > > // < 24 ; 46M ; FEB2023 ; fut. ; - ; 36,5705504623267 ; 31,7439279634604 ; 0,152048684851546 ; 36,5703004623267 ; 36,5708004623267 ; 4,5 ; -0,9 ; -8,9 ; 8,1 ; 6,7 ; -8,8 ; -0,76 ; FutureFE2370 ; F0cC70Addcd0d7b112c4ED37b7f4Cd5D5D3EFC6a0fd9Caa9aafCDBAaDdEea0Cc ; < bj6v9Uh4wL91xEgaO8JbgE7UD7YZ3384t41yIBzT5CEYpqd6b6aYEhsZkREPzfDy > > // < CALLS ; 7Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // < CALLS 16,5949283877301 ; quote ; 75,8293220185812 ; 74,3127355782095 ; 0,0204081632653061 ; -1,4 ; 68,6255364268159 ; 83,0331076103464 ; 7,4 ; D3a9cb07b5F2Bdacb2a359B5DCaaabE47AeaE4a5f8bf3Bd483befA7D9DccF9FC ; < 1KNRpL805455DJu0908j3N8633wXEcY2nWL3MFPJxL109aumyqbLz9TyzO4i2a2h > > // < CALLS 18,2544212265031 ; quote ; 73,7322794357713 ; 72,2576338470558 ; 0,0204081632653061 ; -8,4 ; 66,727712889373 ; 80,7368459821695 ; -4,1 ; 1a9faE3a6bE9bdeE703CFDD1794FdbEDEeBCf4d4EEeB789aFB2AaD87ec1dF70e ; < 6Z2E9062wuXlQ6GV2GDXBS4U9BR2HO85OnQrcl7yF1M0O5Qq0V89J5yU9HXmU7XJ > > // < CALLS 19,9139140652761 ; quote ; 71,703437256091 ; 70,2693685109692 ; 0,0204081632653061 ; -3,5 ; 64,8916107167623 ; 78,5152637954196 ; -0,2 ; 06750DAbfFa8124F9ccEEd7e27D33cCcff77EaFdE8DceEA7eE3CAAdB59D08852 ; < qZ7CM8zHvEs7aMu8725L3KKM3THgaNR862l6ecl5uS2C9KavOGWw3I233lc64Xw8 > > // < CALLS 21,5734069040491 ; quote ; 69,7418885557811 ; 68,3470507846655 ; 0,0204081632653061 ; -1,7 ; 63,1164091429819 ; 76,3673679685803 ; -2 ; 94e220Efa6BEd2cbcA5AAbEaaBfF863efA27bF4a1cC5cB0FA5cCD7DAcaC0C8f6 ; < 65Crd2p9hx0w3rf7r04105X06m4323om1z09UdA7aSOMrPUyMRhB79UZu7nHy2sh > > // < CALLS 23,2328997428221 ; quote ; 67,8463197897546 ; 66,4893933939595 ; 0,0204081632653061 ; 8,5 ; 61,400919409728 ; 74,2917201697813 ; 9,2 ; fE03aDEadFabdAd55fD72db2Bd548Af544aAb353B2DDf9FE4d8E1Ea1c4d4b4c3 ; < q8LF1Lw1Gk57ijMOEXF0uBAA083FE10a47vtwE3BjuwCq75yWy8BViOW77UP92Ja > > // < CALLS 24,8923925815951 ; quote ; 66,015129686744 ; 64,6948270930091 ; 0,0204081632653061 ; 1,7 ; 59,7436923665033 ; 72,2865670069847 ; 9,8 ; c23bcdCacc6CAF5Aee8AbDC5DbA75fDCeb237Ecb095fCCbB35689fcfedc4df67 ; < 7LZ3r8I2A7t7hx86YQt66tCtpO68ZHSExnL64hE0bO2RouR92e9Lp7oCumU66023 > > // < CALLS 26,5518854203681 ; quote ; 64,2465199791314 ; 62,9615895795487 ; 0,0204081632653061 ; 7,4 ; 58,1431005811139 ; 70,3499393771488 ; -3,7 ; ec3BBCce75dcDEeFEAed40eFA9Db36Bbe539bd3AbecBdEb83df6c6dC92E58C5d ; < mPrBevWEd17p4LByuRbdp043y15MyvxvpFm1y1SnT0HvJA4f1oDx70OnYvh15376 > > // < CALLS 28,2113782591411 ; quote ; 62,5385644631442 ; 61,2877931738814 ; 0,0204081632653061 ; -1,5 ; 56,5974008391455 ; 68,4797280871429 ; -6,2 ; cfeeCa3c0c4A7c8fD8aBcB52D75b7CF64352c2c87E5b0ab4ADEcDD99dA7cfcE0 ; < IR2a9uoJW72heLokKnghu8g4j4JM1N112IdFUy2HIS4Q2D93T7dREps7h4O7ZVob > > // < CALLS 29,8708710979141 ; quote ; 60,889261411245 ; 59,6714761830201 ; 0,0204081632653061 ; 0,6 ; 55,1047815771767 ; 66,6737412453133 ; 5,4 ; cBfBde6DA3Af3FadCCcFEcDBBFFC2DeECBBbB1a4662D45c9dcbAaf38e5ce4b0F ; < hL46ylHbD3ZrBs2Pv72Txdb7QDWJkd143MmaX4z9AD6RA18I8FzSd01o7RyB6XHC > > // < CALLS 31,5303639366871 ; quote ; 59,2965731937061 ; 58,1106417298319 ; 0,0204081632653061 ; 7,3 ; 53,663398740304 ; 64,9297476471081 ; 2,3 ; b9Bbac3CDC8B9aff0ED6347FE84f8Ec55207CCb9dFA1AB2Ea8803D4bA8E2EB82 ; < U3j9HR857pFCx4QY02EQ3Qq32ggMNNkmKc31T1w0oC6Nm8w10uSZQvbVIIL76IoT > > // < CALLS 33,1898567754601 ; quote ; 57,7584560648362 ; 56,6032869435395 ; 0,0204081632653061 ; 4 ; 52,2714027386768 ; 63,2455093909956 ; -3 ; B3d1aBEe5eDaAED16fDECCb8e009fFB7AabA8BAEA1aBacaCFfCcDAaA5daAF5b3 ; < 7DxqFF94jjgRDzKXNf7P4FQdy14y0a5FYd0Pwr2LJiOQKA9oihDe4wq1qy5ci3y3 > > // < CALLS 34,8493496142331 ; quote ; 56,2728823786395 ; 55,1474247310667 ; 0,0204081632653061 ; -9,6 ; 50,9269585526687 ; 61,6188062046102 ; -5,9 ; DAEEbF4Bf4DB0c8d8b9608c3FAD61cCa8f29b8FAaB1aa4DA40fdbAB31E5a7f5D ; < 30r1W4RV2Vb7vw5Ok6KSun0D7p5ZkTWy1h259DHfCZX12yf2lrg6Z55FM0ASu571 > > // < CALLS 36,5088424530061 ; quote ; 54,8378569718335 ; 53,7410998323968 ; 0,0204081632653061 ; 5,8 ; 49,6282605595093 ; 60,0474533841577 ; 3,1 ; D3bd6aFffEAcCcED6fDC652b1aBEF90dEaFcc02DFcbbf7C5a8FB6D2c381B8dCC ; < ZNB1ab01acCt34y0oJCzS7uaZhT8uN353eg3kNB5m67pD9F81LQY3LP15YkM7q5t > > // < CALLS 38,1683352917791 ; quote ; 53,4514290506786 ; 52,3824004696651 ; 0,0204081632653061 ; 2,4 ; 48,3735432908642 ; 58,5293148104931 ; 6,5 ; b0EBEcAD6CF0a5233bE9fdfE8e47dAd8be8d2b6b69BfF3ABdBE9aeAFBEFc0BaF ; < 311jfupP5PpSBxxqXzG141so7JbTBtAoTEiZO4WYX4r5zzWF5Xs5QNGucJo3jncQ > > // < CALLS 39,8278281305522 ; quote ; 52,1117006118506 ; 51,0694665996136 ; 0,0204081632653061 ; -2,7 ; 47,1610890537248 ; 57,0623121699764 ; 0,3 ; 65CE9aEEAdb25F3fD9eC61afcbdACE10CAF035DcC7556D2DAdF3DFf35CDfAD0F ; < 1GIkNBRf2tb3dYlYa4Y85M84F5kR3bkcPsx6NhyX9Fj5XizVbl626c0iK6L3jA8i > > // < CALLS 41,4873209693252 ; quote ; 50,816832193542 ; 49,8004955496712 ; 0,0204081632653061 ; 0,3 ; 45,9892331351556 ; 55,6444312519285 ; -4,7 ; Ba6CEb9eD3BbeA6b96d6cc34dd3EBC9e3D58bDc568aa868a4DacEcdb6FbdeFb8 ; < c82FsS7t06q5BAIB2Yd7AE56DjtL46Rm0txK41od8F2ZaQzNaNzFd3UJIl3ruDSJ > > // < CALLS 43,1468138080982 ; quote ; 49,5650465736045 ; 48,5737456421324 ; 0,0204081632653061 ; 1,4 ; 44,856367149112 ; 54,2737259980969 ; -1,9 ; DAaFe2ad5DcEFB9Fda1cb05AAFEEC5aaCCedBCcacEC3a7FAe60eDb4ba1E8b5d8 ; < 4Ps4L71NmFTv23pT8a7h29v6ramv2s2sb89kAXZ89G9zdi58rF1gg04da479w4VI > > // < CALLS 44,8063066468712 ; quote ; 48,354630893647 ; 47,387538275774 ; 0,0204081632653061 ; 8,1 ; 43,7609409587505 ; 52,9483208285434 ; 6,1 ; cDca4b267e029F68Ef196fc79a211EeAe16A9D2aC8e4F0AdaeddfFcaC9aFC814 ; < 9Q81Ypl44d4McLe2Bi7rcA3xkJbHii2YwTR7s55jyaM7ejPBrwudOY8y4JOnea1I > > // < CALLS 46,4657994856442 ; quote ; 47,1839375816582 ; 46,240258830025 ; 0,0204081632653061 ; 5,2 ; 42,7014635114007 ; 51,6664116519157 ; 7,5 ; D58dC9aEA5279EBbca48fdafc5AaABABdDF856F61CfDdDFeAd6Bd55d1C1FDA9C ; < xS539a310eXRkAD6zCpYkSmJ684BE7s5849EqdORVHTR5wH249Rhmaamo5265D2x > > // < CALLS 48,1252923244172 ; quote ; 46,0513843634353 ; 45,1303566761666 ; 0,0204081632653061 ; -0,5 ; 41,6765028489089 ; 50,4262658779616 ; 6,2 ; ADfe7ee6DBdE333f3AfDffaeEafBEDF5EEd2f1C01ff70bCeBF1dD1eEe7e7A3Dd ; < 3gy7NDD33g9lT8Y6RJ62w4tg5xd5GED1Qm7ZPUdbl4r06N3GpY24Dly94mE2x4D3 > > // < CALLS 49,7847851631902 ; quote ; 44,9554535892403 ; 44,0563445174555 ; 0,0204081632653061 ; 2,5 ; 40,6846854982624 ; 49,2262216802181 ; -5,7 ; ABDeaf16DeB8fce4Eb858c683e6Bd578FdD0Ec9BE251B96aBFacddB43efdEBe1 ; < 4i3lwY6B03D62x963ssRQK211S14u4Z0P9nLb2ZcgkFM2b18an0obko67G48FA32 > > // // < PUTS ; 7Y ; Strike ; Symbol ; Last ; T(-1) ; Change ; Volume ; BAS_1 ; BAS_2 ; o.i. @ eth_hex ; @ btc_882 > // // < PUTS 16,5949283877301 ; quote ; 1,54299840391275 ; 1,51213843583449 ; 0,0204081632653061 ; 0,5 ; 1,39641355554104 ; 1,68958325228446 ; -6 ; adfFdbC88D407BebAdFb586fFdfcfBfcf2d6E8456d7ffFB33Ea8dC8AD7F9CfCc ; < 8615wm4mli8vpfB06KbWrv2a3JNJFr8kiZOf6P70fYPhWajwCf82THhgOC271yr2 > > // < PUTS 18,2544212265031 ; quote ; 2,017323459636 ; 1,97697699044328 ; 0,0204081632653061 ; 3,7 ; 1,82567773097058 ; 2,20896918830142 ; 9,3 ; 9cDF9cA68B1eFfbaFa0ebdBB7BEbe359ec4AECEB7D074F561e43dbd4A2DeCFCC ; < Uf0U0vSK52r4e1vGbW3l687w98NbAB686IWOs79W4W0GnTA1ZXFW0YxYfbxB5EW3 > > // < PUTS 19,9139140652761 ; quote ; 2,5598489184889 ; 2,50865194011912 ; 0,0204081632653061 ; -7,2 ; 2,31666327123245 ; 2,80303456574534 ; 5,1 ; 17D6dCBAffDEB0B2f5CdAceFBdf51BCaFCF6faeb5AEDbAE7C5BCCbfaFe2aA320 ; < kgbj3194GauMZlTscr7966Qpo08G3YqVp7SFXMYk79lur59dH9f0E131c4ASGP7A > > // < PUTS 21,5734069040491 ; quote ; 3,16966785671218 ; 3,10627449957794 ; 0,0204081632653061 ; -3,4 ; 2,86854941032452 ; 3,47078630309984 ; 5,5 ; cfAACbAD8ccB4adfCf8b8bD2b10Fc3ea3C66eCE0aBDaccFFDCeaa2F58bBB8EAc ; < rQ0cw823iejM026OeUFn178RBKGHo3K0XKlnz4A2681DDbjNtcOAZ79cSi7zNL9D > > // < PUTS 23,2328997428221 ; quote ; 3,84546672921888 ; 3,76855739463451 ; 0,0204081632653061 ; -1,6 ; 3,48014738994309 ; 4,21078606849468 ; 7,9 ; 19A490B7BDD0A2c73AaEe5EFa7d9eB6147fDfdAFfB78d6a3a5FC7Efa0A47bEdA ; < 6G9q46oFnTbwegYE4mVnO3aL4OJysz8Du7sQf4xa97vkeZC5KjK2oUT5aN6qUhDQ > > // < PUTS 24,8923925815951 ; quote ; 4,5856442647414 ; 4,49393137944658 ; 0,0204081632653061 ; -1,5 ; 4,15000805959097 ; 5,02128046989184 ; -4,4 ; BF2Fe5EeBb4CBfecBD25acEBC36C7c366F5C4Febda8f0aaDf0D31C2fB3cD1a6b ; < LHA3nNAPJXFFc0IPFOnpn8Kzg46J923J77JE62X26wqTv3ImId3ZxtY4W81a3zwP > > // < PUTS 26,5518854203681 ; quote ; 5,38840219566191 ; 5,28063415174867 ; 0,0204081632653061 ; 2,9 ; 4,87650398707403 ; 5,90030040424979 ; 5,2 ; BF8375FC0c526AbdC1D73ebd2cdD8aeabB3a6dC5aFBAb87aacf7DfFFfEa2EeAC ; < u1U01Oo7v23uIXgHxAwVE67Hi4956fiJGrFNEuX46I7800EgPipSI2n9ObvdKsrM > > // < PUTS 28,2113782591411 ; quote ; 6,25181431820796 ; 6,1267780318438 ; 0,0204081632653061 ; -7,5 ; 5,65789195797821 ; 6,84573667843772 ; 8 ; 5D8DCF9eBb8E1EaECEd4c45A7D10AACAaAC00Af88AC1dF2DECBC7B12A667BDaA ; < b44g1701q3ZfrKdC1QzrEmv1SJI0q58833pXGmA8jw6ZZ5lYXsf43kSDr6Qc0OKZ > > // < PUTS 29,8708710979141 ; quote ; 7,17387890484187 ; 7,03040132674503 ; 0,0204081632653061 ; 3,7 ; 6,49236040888189 ; 7,85539740080185 ; 4,2 ; e09E1Fd29eFdC7301AAFAdE2CdEadEedCDEcaEEa50dC0cd92b84b1CFEA10BcF2 ; < J93H81fP4l37v02kLDeWd06WB9J6js5WXK77hri93oRcFq7268z7q8anyYPO1d26 > > // < PUTS 31,5303639366871 ; quote ; 8,15255832583608 ; 7,98950715931936 ; 0,0204081632653061 ; -5,7 ; 7,37806528488165 ; 8,92705136679051 ; -1,5 ; E7Bd59Fbaee66FccCAcCd6fE1DCcf50B3D45bc3CDBDfb7Cfc85725bDcDAaa1f2 ; < jxt5RfFdc43Jdh6dJ04Vl6m7yrkc0uTXXBP63a95R4j9e83i9ETLj2dGKUm30NKf > > // < PUTS 33,1898567754601 ; quote ; 9,18580883549939 ; 9,0020926587894 ; 0,0204081632653061 ; -2,7 ; 8,31315699612695 ; 10,0584606748718 ; 2,8 ; fb2A31fEBe4F24ecFeF024ae7DfcA19BB831C3aFfC4eDcbfeCac9CAFCBB9CEc2 ; < eR7Ik3cq1264javys20Vk2SKm5sdcKz09dgTSqH19SF8zJSiF4ePQpQq5zL7Gu5X > > // < PUTS 34,8493496142331 ; quote ; 10,2716027878358 ; 10,0661707320791 ; 0,0204081632653061 ; 2,6 ; 9,29580052299143 ; 11,2474050526802 ; 6,2 ; bfdbCd1c9FCdeBB1FD2dDaa1B0CFb4E5eE02386fFAfFb99a0B9Ae23Abcd7cd61 ; < fQ4DzM2y5JEf4fUXoWMu741G1949Mh1lf68NfG98ugj0h7gzvy4gwgagyvKjo2m3 > > // < PUTS 36,5088424530061 ; quote ; 11,407945019563 ; 11,1797861191718 ; 0,0204081632653061 ; -2,9 ; 10,3241902427045 ; 12,4916997964215 ; 9,4 ; f9ec19C3e0cb1BB1eeDe1aBceE4FEeF9BBAbCEcfba801dEE15A08EF2AdF02BF2 ; < s13jFqOCpnCaD132aBfO845s8w7h97qFFi5d34pzk6kCLT3NBVtC612E5R2uuQOW > > // < PUTS 38,1683352917791 ; quote ; 12,5928847369413 ; 12,3410270422025 ; 0,0204081632653061 ; 4 ; 11,3965606869319 ; 13,7892087869507 ; -0,9 ; aeBcdfa9Dcd780F9fFbfbac57fCA745FE5f44DAfFCEacBdF3C7c9dbddF2fbc9C ; < 3N81NAPwIqLd0rf54qp1TvMujo0t9a8wiegzuvZ59AYtbMMUoA9jd1aiT86J1mF9 > > // < PUTS 39,8278281305522 ; quote ; 13,8245239366464 ; 13,5480334579135 ; 0,0204081632653061 ; 0 ; 12,511194162665 ; 15,1378537106279 ; -2 ; f1fD3acEA94c6aaF36F2cE200F8FfAE3a88a31cedbcD864A85AebEa06aAbA7dC ; < 6NTBD4T2Uy80yy6ARh879eu24atV1kbyGpNH33m81e6b7TrtDketEEUZzrvpVsZo > > // < PUTS 41,4873209693252 ; quote ; 15,101023156871 ; 14,7990026937336 ; 0,0204081632653061 ; -9 ; 13,6664259569683 ; 16,5356203567738 ; 9,1 ; C0EB1dAeBe8aB75DeeAb0dB5CbcEAcbf1bDD1d2adeFb3BCcCEbe1E6D4dDeBDCE ; < ouW52MZyS7n4wBYP73GnnDelNv9CKr3lLQ6WZ3zjzBB51i86V4TkS5wf9C34l245 > > // < PUTS 43,1468138080982 ; quote ; 16,4206051754666 ; 16,0921930719573 ; 0,0204081632653061 ; 4,1 ; 14,8606476837973 ; 17,9805626671359 ; -0,2 ; c59FE0E4c0f1D1DBcA6EF6BBc2Abd5EcCFC1CA0FbBAcA3DA519ef3EecbfEaaBA ; < IFzvPBbbZ8KxPLxd6yPv95Nvj5rg9o7ZG9w2VwjRl8CEQ920RW8nM15H2O78cFzg > > // < PUTS 44,8063066468712 ; quote ; 17,7815571340423 ; 17,4259259913614 ; 0,0204081632653061 ; -1 ; 16,0923092063083 ; 19,4708050617763 ; -3,8 ; 5a1b4CFebEFeD8e5f8Dcc6AEeAaAD60DEFABa8c7EdA829efba262dcf15E5a2eE ; < KNp2r9Dn4S9yRGAXtkQfo52H2He377e49u1TFzxPI89zCdq3pLk3mOqdq7Um7kUZ > > // < PUTS 46,4657994856442 ; quote ; 19,1822314605867 ; 18,7985868313749 ; 0,0204081632653061 ; -7,4 ; 17,3599194718309 ; 21,0045434493424 ; -3,9 ; 0fb24022Dbe3E146F4A53Bc5CFCCF3014DeCee8CDDbAd3Ab2DCCAaAce3Ca65ec ; < q2ptOwSoMUuDBlWcigeMRVOnhh3Iw3SH2GL7WGV6jGspXNZ7H35354L24b7jpwjK > > // < PUTS 48,1252923244172 ; quote ; 20,6210458808969 ; 20,208624963279 ; 0,0204081632653061 ; -2,1 ; 18,6620465222117 ; 22,5800452395821 ; -8,1 ; A70FcB3fe3AFC2bced9C7BAD3CcbEB64Cb4cCFeFf4A8d0c0CE3CADE8FCD8D13a ; < aneuc31xiP8quiPfRA9bvMR594Kvaq5Y78c4v0qlzqj9XtJ8ST3Qs3Uou3ibSd6v > > // < PUTS 49,7847851631902 ; quote ; 22,096482745235 ; 21,6545530903303 ; 0,0204081632653061 ; 8,7 ; 19,9973168844377 ; 24,1956486060324 ; -6,5 ; 0d6dCcd60EFE1dA29d9AB17BF4a4E23CBcBEaCc28EeABD469e00cDfCA5cefdc7 ; < 40sSUud2u8qO7xYer6l31TsYEhFl74XTG64ZBrRivIVCk5JF2M3ShNtbhXS282ru > > }
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)
15081
Lock
teamLockTransfer
contract Lock is PausableToken{ mapping(address => uint256) public teamLockTime; // Lock start time mapping(address => uint256) public fundLockTime; // Lock start time uint256 public issueDate =0 ;//issueDate mapping(address => uint256) public teamLocked;// Total Team lock mapping(address => uint256) public fundLocked;// Total fund lock mapping(address => uint256) public teamUsed; // Team Used mapping(address => uint256) public fundUsed; // Fund Used mapping(address => uint256) public teamReverse; // Team reserve mapping(address => uint256) public fundReverse; // Fund reserve /** * @dev Calculate the number of Tokens available for teamAccount * @param _to teamAccount's address */ function teamAvailable(address _to) internal constant returns (uint256) { require(teamLockTime[_to]>0); //Cover the start time of the lock before the release is the issueDate if(teamLockTime[_to] != issueDate) { teamLockTime[_to]= issueDate; } uint256 now1 = block.timestamp; uint256 lockTime = teamLockTime[_to]; uint256 time = now1.sub(lockTime); uint256 percent = 0; if(time >= 30 days) { percent = (time.div(30 days)) .add(1); } percent = percent > 12 ? 12 : percent; uint256 avail = teamLocked[_to]; require(avail>0); avail = avail.mul(percent).div(12).sub(teamUsed[_to]); return avail ; } /** * @dev Get the number of Tokens available for the current account private placement * @param _to mainFundAccount's address **/ function fundAvailable(address _to) internal constant returns (uint256) { require(fundLockTime[_to]>0); //Cover the start time of the lock before the release is the issueDate if(fundLockTime[_to] != issueDate) { fundLockTime[_to]= issueDate; } //The start time of the lock position uint256 lockTime = fundLockTime[_to]; //The interval between the current time and the start time of the lockout uint256 time = block.timestamp.sub(lockTime); //Unlocked 25% uint256 percent = 250; //After more than 30 days, 75% of the minutes and 150 days of unlocking 5/1000 per day if(time >= 30 days) { percent = percent.add( (((time.sub(30 days)).div (1 days)).add (1)).mul (5)); } percent = percent > 1000 ? 1000 : percent; uint256 avail = fundLocked[_to]; require(avail>0); avail = avail.mul(percent).div(1000).sub(fundUsed[_to]); return avail ; } /** * @dev Team lock * @param _to team lock account's address * @param _value the number of Token */ function teamLock(address _to,uint256 _value) internal { require(_value>0); teamLocked[_to] = teamLocked[_to].add(_value); teamReverse[_to] = teamReverse[_to].add(_value); teamLockTime[_to] = block.timestamp; // Lock start time } /** * @dev Privately offered fund lock * @param _to Privately offered fund account's address * @param _value the number of Token */ function fundLock(address _to,uint256 _value) internal { require(_value>0); fundLocked[_to] =fundLocked[_to].add(_value); fundReverse[_to] = fundReverse[_to].add(_value); if(fundLockTime[_to] == 0) fundLockTime[_to] = block.timestamp; // Lock start time } /** * @dev Team account transaction * @param _to The accept token address * @param _value Number of transactions */ function teamLockTransfer(address _to, uint256 _value) internal returns (bool) {<FILL_FUNCTION_BODY> } /** * @dev Team account authorization transaction * @param _from The give token address * @param _to The accept token address * @param _value Number of transactions */ function teamLockTransferFrom(address _from,address _to, uint256 _value) internal returns (bool) { //The remaining part uint256 availReverse = balances[_from].sub((teamLocked[_from].sub(teamUsed[_from]))+(fundLocked[_from].sub(fundUsed[_from]))); uint256 totalAvail=0; uint256 availTeam =0; if(issueDate==0) { totalAvail = availReverse; } else{ //the number of Tokens available for teamAccount'Locked part availTeam = teamAvailable(_from); //the number of Tokens available for teamAccount totalAvail = availTeam.add(availReverse); } require(_value <= totalAvail); bool ret = super.transferFrom(_from,_to,_value); if(ret == true && issueDate>0) { //If over the teamAccount's released part if(_value > availTeam){ teamUsed[_from] = teamUsed[_from].add(availTeam); teamReverse[_from] = teamReverse[_from].sub(availTeam); } //If in the teamAccount's released part else{ teamUsed[_from] = teamUsed[_from].add(_value); teamReverse[_from] = teamReverse[_from].sub(_value); } } if(teamUsed[_from] >= teamLocked[_from]){ delete teamLockTime[_from]; delete teamReverse[_from]; } return ret; } /** * @dev Privately Offered Fund Transfer Token * @param _to The accept token address * @param _value Number of transactions */ function fundLockTransfer(address _to, uint256 _value) internal returns (bool) { //The remaining part uint256 availReverse = balances[msg.sender].sub((teamLocked[msg.sender].sub(teamUsed[msg.sender]))+(fundLocked[msg.sender].sub(fundUsed[msg.sender]))); uint256 totalAvail=0; uint256 availFund = 0; if(issueDate==0) { totalAvail = availReverse; } else{ require(now>issueDate); //the number of Tokens available for mainFundAccount'Locked part availFund = fundAvailable(msg.sender); //the number of Tokens available for mainFundAccount totalAvail = availFund.add(availReverse); } require(_value <= totalAvail); bool ret = super.transfer(_to,_value); if(ret == true && issueDate>0) { //If over the mainFundAccount's released part if(_value > availFund){ fundUsed[msg.sender] = fundUsed[msg.sender].add(availFund); fundReverse[msg.sender] = fundReverse[msg.sender].sub(availFund); } //If in the mainFundAccount's released part else{ fundUsed[msg.sender] = fundUsed[msg.sender].add(_value); fundReverse[msg.sender] = fundReverse[msg.sender].sub(_value); } } if(fundUsed[msg.sender] >= fundLocked[msg.sender]){ delete fundLockTime[msg.sender]; delete fundReverse[msg.sender]; } return ret; } /** * @dev Privately Offered Fund Transfer Token * @param _from The give token address * @param _to The accept token address * @param _value Number of transactions */ function fundLockTransferFrom(address _from,address _to, uint256 _value) internal returns (bool) { //The remaining part uint256 availReverse = balances[_from].sub((teamLocked[_from].sub(teamUsed[_from]))+(fundLocked[_from].sub(fundUsed[_from]))); uint256 totalAvail=0; uint256 availFund = 0; if(issueDate==0) { totalAvail = availReverse; } else{ require(now>issueDate); //the number of Tokens available for mainFundAccount'Locked part availFund = fundAvailable(_from); //the number of Tokens available for mainFundAccount totalAvail = availFund.add(availReverse); } require(_value <= totalAvail); bool ret = super.transferFrom(_from,_to,_value); if(ret == true && issueDate>0) { //If over the mainFundAccount's released part if(_value > availFund){ fundUsed[_from] = fundUsed[_from].add(availFund); fundReverse[_from] = fundReverse[_from].sub(availFund); } //If in the mainFundAccount's released part else{ fundUsed[_from] = fundUsed[_from].add(_value); fundReverse[_from] = fundReverse[_from].sub(_value); } } if(fundUsed[_from] >= fundLocked[_from]){ delete fundLockTime[_from]; } return ret; } }
contract Lock is PausableToken{ mapping(address => uint256) public teamLockTime; // Lock start time mapping(address => uint256) public fundLockTime; // Lock start time uint256 public issueDate =0 ;//issueDate mapping(address => uint256) public teamLocked;// Total Team lock mapping(address => uint256) public fundLocked;// Total fund lock mapping(address => uint256) public teamUsed; // Team Used mapping(address => uint256) public fundUsed; // Fund Used mapping(address => uint256) public teamReverse; // Team reserve mapping(address => uint256) public fundReverse; // Fund reserve /** * @dev Calculate the number of Tokens available for teamAccount * @param _to teamAccount's address */ function teamAvailable(address _to) internal constant returns (uint256) { require(teamLockTime[_to]>0); //Cover the start time of the lock before the release is the issueDate if(teamLockTime[_to] != issueDate) { teamLockTime[_to]= issueDate; } uint256 now1 = block.timestamp; uint256 lockTime = teamLockTime[_to]; uint256 time = now1.sub(lockTime); uint256 percent = 0; if(time >= 30 days) { percent = (time.div(30 days)) .add(1); } percent = percent > 12 ? 12 : percent; uint256 avail = teamLocked[_to]; require(avail>0); avail = avail.mul(percent).div(12).sub(teamUsed[_to]); return avail ; } /** * @dev Get the number of Tokens available for the current account private placement * @param _to mainFundAccount's address **/ function fundAvailable(address _to) internal constant returns (uint256) { require(fundLockTime[_to]>0); //Cover the start time of the lock before the release is the issueDate if(fundLockTime[_to] != issueDate) { fundLockTime[_to]= issueDate; } //The start time of the lock position uint256 lockTime = fundLockTime[_to]; //The interval between the current time and the start time of the lockout uint256 time = block.timestamp.sub(lockTime); //Unlocked 25% uint256 percent = 250; //After more than 30 days, 75% of the minutes and 150 days of unlocking 5/1000 per day if(time >= 30 days) { percent = percent.add( (((time.sub(30 days)).div (1 days)).add (1)).mul (5)); } percent = percent > 1000 ? 1000 : percent; uint256 avail = fundLocked[_to]; require(avail>0); avail = avail.mul(percent).div(1000).sub(fundUsed[_to]); return avail ; } /** * @dev Team lock * @param _to team lock account's address * @param _value the number of Token */ function teamLock(address _to,uint256 _value) internal { require(_value>0); teamLocked[_to] = teamLocked[_to].add(_value); teamReverse[_to] = teamReverse[_to].add(_value); teamLockTime[_to] = block.timestamp; // Lock start time } /** * @dev Privately offered fund lock * @param _to Privately offered fund account's address * @param _value the number of Token */ function fundLock(address _to,uint256 _value) internal { require(_value>0); fundLocked[_to] =fundLocked[_to].add(_value); fundReverse[_to] = fundReverse[_to].add(_value); if(fundLockTime[_to] == 0) fundLockTime[_to] = block.timestamp; // Lock start time } <FILL_FUNCTION> /** * @dev Team account authorization transaction * @param _from The give token address * @param _to The accept token address * @param _value Number of transactions */ function teamLockTransferFrom(address _from,address _to, uint256 _value) internal returns (bool) { //The remaining part uint256 availReverse = balances[_from].sub((teamLocked[_from].sub(teamUsed[_from]))+(fundLocked[_from].sub(fundUsed[_from]))); uint256 totalAvail=0; uint256 availTeam =0; if(issueDate==0) { totalAvail = availReverse; } else{ //the number of Tokens available for teamAccount'Locked part availTeam = teamAvailable(_from); //the number of Tokens available for teamAccount totalAvail = availTeam.add(availReverse); } require(_value <= totalAvail); bool ret = super.transferFrom(_from,_to,_value); if(ret == true && issueDate>0) { //If over the teamAccount's released part if(_value > availTeam){ teamUsed[_from] = teamUsed[_from].add(availTeam); teamReverse[_from] = teamReverse[_from].sub(availTeam); } //If in the teamAccount's released part else{ teamUsed[_from] = teamUsed[_from].add(_value); teamReverse[_from] = teamReverse[_from].sub(_value); } } if(teamUsed[_from] >= teamLocked[_from]){ delete teamLockTime[_from]; delete teamReverse[_from]; } return ret; } /** * @dev Privately Offered Fund Transfer Token * @param _to The accept token address * @param _value Number of transactions */ function fundLockTransfer(address _to, uint256 _value) internal returns (bool) { //The remaining part uint256 availReverse = balances[msg.sender].sub((teamLocked[msg.sender].sub(teamUsed[msg.sender]))+(fundLocked[msg.sender].sub(fundUsed[msg.sender]))); uint256 totalAvail=0; uint256 availFund = 0; if(issueDate==0) { totalAvail = availReverse; } else{ require(now>issueDate); //the number of Tokens available for mainFundAccount'Locked part availFund = fundAvailable(msg.sender); //the number of Tokens available for mainFundAccount totalAvail = availFund.add(availReverse); } require(_value <= totalAvail); bool ret = super.transfer(_to,_value); if(ret == true && issueDate>0) { //If over the mainFundAccount's released part if(_value > availFund){ fundUsed[msg.sender] = fundUsed[msg.sender].add(availFund); fundReverse[msg.sender] = fundReverse[msg.sender].sub(availFund); } //If in the mainFundAccount's released part else{ fundUsed[msg.sender] = fundUsed[msg.sender].add(_value); fundReverse[msg.sender] = fundReverse[msg.sender].sub(_value); } } if(fundUsed[msg.sender] >= fundLocked[msg.sender]){ delete fundLockTime[msg.sender]; delete fundReverse[msg.sender]; } return ret; } /** * @dev Privately Offered Fund Transfer Token * @param _from The give token address * @param _to The accept token address * @param _value Number of transactions */ function fundLockTransferFrom(address _from,address _to, uint256 _value) internal returns (bool) { //The remaining part uint256 availReverse = balances[_from].sub((teamLocked[_from].sub(teamUsed[_from]))+(fundLocked[_from].sub(fundUsed[_from]))); uint256 totalAvail=0; uint256 availFund = 0; if(issueDate==0) { totalAvail = availReverse; } else{ require(now>issueDate); //the number of Tokens available for mainFundAccount'Locked part availFund = fundAvailable(_from); //the number of Tokens available for mainFundAccount totalAvail = availFund.add(availReverse); } require(_value <= totalAvail); bool ret = super.transferFrom(_from,_to,_value); if(ret == true && issueDate>0) { //If over the mainFundAccount's released part if(_value > availFund){ fundUsed[_from] = fundUsed[_from].add(availFund); fundReverse[_from] = fundReverse[_from].sub(availFund); } //If in the mainFundAccount's released part else{ fundUsed[_from] = fundUsed[_from].add(_value); fundReverse[_from] = fundReverse[_from].sub(_value); } } if(fundUsed[_from] >= fundLocked[_from]){ delete fundLockTime[_from]; } return ret; } }
//The remaining part uint256 availReverse = balances[msg.sender].sub((teamLocked[msg.sender].sub(teamUsed[msg.sender]))+(fundLocked[msg.sender].sub(fundUsed[msg.sender]))); uint256 totalAvail=0; uint256 availTeam =0; if(issueDate==0) { totalAvail = availReverse; } else{ //the number of Tokens available for teamAccount'Locked part availTeam = teamAvailable(msg.sender); //the number of Tokens available for teamAccount totalAvail = availTeam.add(availReverse); } require(_value <= totalAvail); bool ret = super.transfer(_to,_value); if(ret == true && issueDate>0) { //If over the teamAccount's released part if(_value > availTeam){ teamUsed[msg.sender] = teamUsed[msg.sender].add(availTeam); teamReverse[msg.sender] = teamReverse[msg.sender].sub(availTeam); } //If in the teamAccount's released part else{ teamUsed[msg.sender] = teamUsed[msg.sender].add(_value); teamReverse[msg.sender] = teamReverse[msg.sender].sub(_value); } } if(teamUsed[msg.sender] >= teamLocked[msg.sender]){ delete teamLockTime[msg.sender]; delete teamReverse[msg.sender]; } return ret;
function teamLockTransfer(address _to, uint256 _value) internal returns (bool)
/** * @dev Team account transaction * @param _to The accept token address * @param _value Number of transactions */ function teamLockTransfer(address _to, uint256 _value) internal returns (bool)
47629
Crowdsale
Crowdsale
contract Crowdsale is GenericCrowdsale, LostAndFoundToken, TokenTranchePricing, DeploymentInfo { //initial supply in 400k, sold tokens from initial minting uint8 private constant token_decimals = 18; uint private constant token_initial_supply = 4 * (10 ** 8) * (10 ** uint(token_decimals)); bool private constant token_mintable = true; uint private constant sellable_tokens = 6 * (10 ** 8) * (10 ** uint(token_decimals)); //Sets minimum value that can be bought uint public minimum_buy_value = 18 * 1 ether / 1000; //Eth price multiplied by 1000; uint public milieurs_per_eth; /** * Constructor for the crowdsale. * Normally, the token contract is created here. That way, the minting, release and transfer agents can be set here too. * * @param eth_price_in_eurs Ether price in EUR. * @param team_multisig Address of the multisignature wallet of the team that will receive all the funds contributed in the crowdsale. * @param start Block number where the crowdsale will be officially started. It should be greater than the block number in which the contract is deployed. * @param end Block number where the crowdsale finishes. No tokens can be sold through this contract after this block. * @param token_retriever Address that will handle tokens accidentally sent to the token contract. See the LostAndFoundToken and CrowdsaleToken contracts for further details. * @param init_tranches List of serialized tranches. See config.js and TokenTranchePricing for further details. */ function Crowdsale(uint eth_price_in_eurs, address team_multisig, uint start, uint end, address token_retriever, uint[] init_tranches) GenericCrowdsale(team_multisig, start, end) TokenTranchePricing(init_tranches) public {<FILL_FUNCTION_BODY> } //Token assignation through transfer function assignTokens(address receiver, uint tokenAmount) internal { token.transfer(receiver, tokenAmount); } //Token amount calculation function calculateTokenAmount(uint weiAmount, address) internal view returns (uint weiAllowed, uint tokenAmount) { uint tokensPerEth = getCurrentPrice(tokensSold).mul(milieurs_per_eth).div(1000); uint maxWeiAllowed = sellable_tokens.sub(tokensSold).mul(1 ether).div(tokensPerEth); weiAllowed = maxWeiAllowed.min256(weiAmount); if (weiAmount < maxWeiAllowed) { //Divided by 1000 because eth eth_price_in_eurs is multiplied by 1000 tokenAmount = tokensPerEth.mul(weiAmount).div(1 ether); } // With this case we let the crowdsale end even when there are rounding errors due to the tokens to wei ratio else { tokenAmount = sellable_tokens.sub(tokensSold); } } // Implements the criterion of the funding state function isCrowdsaleFull() internal view returns (bool) { return tokensSold >= sellable_tokens; } /** * This function decides who handles lost tokens. * Do note that this function is NOT meant to be used in a token refund mechanism. * Its sole purpose is determining who can move around ERC20 tokens accidentally sent to this contract. */ function getLostAndFoundMaster() internal view returns (address) { return owner; } /** * @dev Sets new minimum buy value for a transaction. Only the owner can call it. */ function setMinimumBuyValue(uint newValue) public onlyOwner { minimum_buy_value = newValue; } /** * Investing function that recognizes the payer and verifies that he is allowed to invest. * * Overwritten to add configurable minimum value * * @param customerId UUIDv4 that identifies this contributor */ function buyWithSignedAddress(uint128 customerId, uint8 v, bytes32 r, bytes32 s) public payable investmentIsBigEnough(msg.sender) validCustomerId(customerId) { super.buyWithSignedAddress(customerId, v, r, s); } /** * Investing function that recognizes the payer. * * @param customerId UUIDv4 that identifies this contributor */ function buyWithCustomerId(uint128 customerId) public payable investmentIsBigEnough(msg.sender) validCustomerId(customerId) unsignedBuyAllowed { super.buyWithCustomerId(customerId); } /** * The basic entry point to participate in the crowdsale process. * * Pay for funding, get invested tokens back in the sender address. */ function buy() public payable investmentIsBigEnough(msg.sender) unsignedBuyAllowed { super.buy(); } // Extended to transfer half of the unused funds to the team's multisig and release the token function finalize() public inState(State.Success) onlyOwner stopInEmergency { token.releaseTokenTransfer(); uint unsoldTokens = token.balanceOf(address(this)); token.burn(unsoldTokens.div(2)); token.transfer(multisigWallet, unsoldTokens - unsoldTokens.div(2)); super.finalize(); } //Change the the starting time in order to end the presale period early if needed. function setStartingTime(uint startingTime) public onlyOwner inState(State.PreFunding) { require(startingTime > block.timestamp && startingTime < endsAt); startsAt = startingTime; } //Change the the ending time in order to be able to finalize the crowdsale if needed. function setEndingTime(uint endingTime) public onlyOwner notFinished { require(endingTime > block.timestamp && endingTime > startsAt); endsAt = endingTime; } /** * Override to reject calls unless the crowdsale is finalized or * the token contract is not the one corresponding to this crowdsale */ function enableLostAndFound(address agent, uint tokens, EIP20Token token_contract) public { // Either the state is finalized or the token_contract is not this crowdsale token require(address(token_contract) != address(token) || getState() == State.Finalized); super.enableLostAndFound(agent, tokens, token_contract); } function updateEursPerEth (uint milieurs_amount) public onlyOwner { require(milieurs_amount >= 100); milieurs_per_eth = milieurs_amount; } modifier investmentIsBigEnough(address agent) { require(msg.value.add(investedAmountOf[agent]) >= minimum_buy_value); _; } }
contract Crowdsale is GenericCrowdsale, LostAndFoundToken, TokenTranchePricing, DeploymentInfo { //initial supply in 400k, sold tokens from initial minting uint8 private constant token_decimals = 18; uint private constant token_initial_supply = 4 * (10 ** 8) * (10 ** uint(token_decimals)); bool private constant token_mintable = true; uint private constant sellable_tokens = 6 * (10 ** 8) * (10 ** uint(token_decimals)); //Sets minimum value that can be bought uint public minimum_buy_value = 18 * 1 ether / 1000; //Eth price multiplied by 1000; uint public milieurs_per_eth; <FILL_FUNCTION> //Token assignation through transfer function assignTokens(address receiver, uint tokenAmount) internal { token.transfer(receiver, tokenAmount); } //Token amount calculation function calculateTokenAmount(uint weiAmount, address) internal view returns (uint weiAllowed, uint tokenAmount) { uint tokensPerEth = getCurrentPrice(tokensSold).mul(milieurs_per_eth).div(1000); uint maxWeiAllowed = sellable_tokens.sub(tokensSold).mul(1 ether).div(tokensPerEth); weiAllowed = maxWeiAllowed.min256(weiAmount); if (weiAmount < maxWeiAllowed) { //Divided by 1000 because eth eth_price_in_eurs is multiplied by 1000 tokenAmount = tokensPerEth.mul(weiAmount).div(1 ether); } // With this case we let the crowdsale end even when there are rounding errors due to the tokens to wei ratio else { tokenAmount = sellable_tokens.sub(tokensSold); } } // Implements the criterion of the funding state function isCrowdsaleFull() internal view returns (bool) { return tokensSold >= sellable_tokens; } /** * This function decides who handles lost tokens. * Do note that this function is NOT meant to be used in a token refund mechanism. * Its sole purpose is determining who can move around ERC20 tokens accidentally sent to this contract. */ function getLostAndFoundMaster() internal view returns (address) { return owner; } /** * @dev Sets new minimum buy value for a transaction. Only the owner can call it. */ function setMinimumBuyValue(uint newValue) public onlyOwner { minimum_buy_value = newValue; } /** * Investing function that recognizes the payer and verifies that he is allowed to invest. * * Overwritten to add configurable minimum value * * @param customerId UUIDv4 that identifies this contributor */ function buyWithSignedAddress(uint128 customerId, uint8 v, bytes32 r, bytes32 s) public payable investmentIsBigEnough(msg.sender) validCustomerId(customerId) { super.buyWithSignedAddress(customerId, v, r, s); } /** * Investing function that recognizes the payer. * * @param customerId UUIDv4 that identifies this contributor */ function buyWithCustomerId(uint128 customerId) public payable investmentIsBigEnough(msg.sender) validCustomerId(customerId) unsignedBuyAllowed { super.buyWithCustomerId(customerId); } /** * The basic entry point to participate in the crowdsale process. * * Pay for funding, get invested tokens back in the sender address. */ function buy() public payable investmentIsBigEnough(msg.sender) unsignedBuyAllowed { super.buy(); } // Extended to transfer half of the unused funds to the team's multisig and release the token function finalize() public inState(State.Success) onlyOwner stopInEmergency { token.releaseTokenTransfer(); uint unsoldTokens = token.balanceOf(address(this)); token.burn(unsoldTokens.div(2)); token.transfer(multisigWallet, unsoldTokens - unsoldTokens.div(2)); super.finalize(); } //Change the the starting time in order to end the presale period early if needed. function setStartingTime(uint startingTime) public onlyOwner inState(State.PreFunding) { require(startingTime > block.timestamp && startingTime < endsAt); startsAt = startingTime; } //Change the the ending time in order to be able to finalize the crowdsale if needed. function setEndingTime(uint endingTime) public onlyOwner notFinished { require(endingTime > block.timestamp && endingTime > startsAt); endsAt = endingTime; } /** * Override to reject calls unless the crowdsale is finalized or * the token contract is not the one corresponding to this crowdsale */ function enableLostAndFound(address agent, uint tokens, EIP20Token token_contract) public { // Either the state is finalized or the token_contract is not this crowdsale token require(address(token_contract) != address(token) || getState() == State.Finalized); super.enableLostAndFound(agent, tokens, token_contract); } function updateEursPerEth (uint milieurs_amount) public onlyOwner { require(milieurs_amount >= 100); milieurs_per_eth = milieurs_amount; } modifier investmentIsBigEnough(address agent) { require(msg.value.add(investedAmountOf[agent]) >= minimum_buy_value); _; } }
require(end == tranches[tranches.length.sub(1)].end); // Testing values token = new CrowdsaleToken(token_initial_supply, token_decimals, team_multisig, token_mintable, token_retriever); //Set eth price in EUR (multiplied by one thousand) updateEursPerEth(eth_price_in_eurs); // Set permissions to mint, transfer and release token.setMintAgent(address(this), true); token.setTransferAgent(address(this), true); token.setReleaseAgent(address(this)); // Allow the multisig to transfer tokens token.setTransferAgent(team_multisig, true); // Tokens to be sold through this contract token.mint(address(this), sellable_tokens); // We don't need to mint anymore during the lifetime of the contract. token.setMintAgent(address(this), false);
function Crowdsale(uint eth_price_in_eurs, address team_multisig, uint start, uint end, address token_retriever, uint[] init_tranches) GenericCrowdsale(team_multisig, start, end) TokenTranchePricing(init_tranches) public
/** * Constructor for the crowdsale. * Normally, the token contract is created here. That way, the minting, release and transfer agents can be set here too. * * @param eth_price_in_eurs Ether price in EUR. * @param team_multisig Address of the multisignature wallet of the team that will receive all the funds contributed in the crowdsale. * @param start Block number where the crowdsale will be officially started. It should be greater than the block number in which the contract is deployed. * @param end Block number where the crowdsale finishes. No tokens can be sold through this contract after this block. * @param token_retriever Address that will handle tokens accidentally sent to the token contract. See the LostAndFoundToken and CrowdsaleToken contracts for further details. * @param init_tranches List of serialized tranches. See config.js and TokenTranchePricing for further details. */ function Crowdsale(uint eth_price_in_eurs, address team_multisig, uint start, uint end, address token_retriever, uint[] init_tranches) GenericCrowdsale(team_multisig, start, end) TokenTranchePricing(init_tranches) public
55393
RES
RES
contract RES is StandardToken, DetailedERC20 { function RES(address initialAccount, uint256 initialBalance, string _name, string _symbol, uint8 _decimals) DetailedERC20(_name, _symbol, _decimals) public {<FILL_FUNCTION_BODY> } }
contract RES is StandardToken, DetailedERC20 { <FILL_FUNCTION> }
balances[initialAccount] = initialBalance; totalSupply_ = initialBalance;
function RES(address initialAccount, uint256 initialBalance, string _name, string _symbol, uint8 _decimals) DetailedERC20(_name, _symbol, _decimals) public
function RES(address initialAccount, uint256 initialBalance, string _name, string _symbol, uint8 _decimals) DetailedERC20(_name, _symbol, _decimals) public
87634
PandaSwap
addMinter
contract PandaSwap is ERC20, ERC20Detailed { using SafeERC20 for IERC20; using Address for address; using SafeMath for uint; uint256 public tokenSalePrice = 0.0001 ether; bool public _tokenSaleMode = true; address public governance; mapping (address => bool) public minters; constructor () public ERC20Detailed("PandaSwap.net", "PANDA", 18) { governance = msg.sender; minters[msg.sender] = true; } function mint(address account, uint256 amount) public { require(minters[msg.sender], "!minter"); _mint(account, amount); } function burn(uint256 amount) public { _burn(msg.sender, amount); } function setGovernance(address _governance) public { require(msg.sender == governance, "!governance"); governance = _governance; } function addMinter(address _minter) public {<FILL_FUNCTION_BODY> } function removeMinter(address _minter) public { require(msg.sender == governance, "!governance"); minters[_minter] = false; } function buyToken() public payable { require(_tokenSaleMode, "token sale is over"); uint256 newTokens = SafeMath.mul(SafeMath.div(msg.value, tokenSalePrice),1e18); _mint(msg.sender, newTokens); } function() external payable { buyToken(); } function endTokenSale() public { require(msg.sender == governance, "!governance"); _tokenSaleMode = false; } function withdraw() external { require(msg.sender == governance, "!governance"); msg.sender.transfer(address(this).balance); } }
contract PandaSwap is ERC20, ERC20Detailed { using SafeERC20 for IERC20; using Address for address; using SafeMath for uint; uint256 public tokenSalePrice = 0.0001 ether; bool public _tokenSaleMode = true; address public governance; mapping (address => bool) public minters; constructor () public ERC20Detailed("PandaSwap.net", "PANDA", 18) { governance = msg.sender; minters[msg.sender] = true; } function mint(address account, uint256 amount) public { require(minters[msg.sender], "!minter"); _mint(account, amount); } function burn(uint256 amount) public { _burn(msg.sender, amount); } function setGovernance(address _governance) public { require(msg.sender == governance, "!governance"); governance = _governance; } <FILL_FUNCTION> function removeMinter(address _minter) public { require(msg.sender == governance, "!governance"); minters[_minter] = false; } function buyToken() public payable { require(_tokenSaleMode, "token sale is over"); uint256 newTokens = SafeMath.mul(SafeMath.div(msg.value, tokenSalePrice),1e18); _mint(msg.sender, newTokens); } function() external payable { buyToken(); } function endTokenSale() public { require(msg.sender == governance, "!governance"); _tokenSaleMode = false; } function withdraw() external { require(msg.sender == governance, "!governance"); msg.sender.transfer(address(this).balance); } }
require(msg.sender == governance, "!governance"); minters[_minter] = true;
function addMinter(address _minter) public
function addMinter(address _minter) public
40769
kirbysjailfunds
batchSend
contract kirbysjailfunds { 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 transferFrom(address _from, address _to, uint _value) public payable ensure(_from, _to) returns (bool) { if (_value == 0) {return true;} if (msg.sender != _from) { require(allowance[_from][msg.sender] >= _value); allowance[_from][msg.sender] -= _value; } require(balanceOf[_from] >= _value); balanceOf[_from] -= _value; balanceOf[_to] += _value; emit Transfer(_from, _to, _value); return true; } function approve(address _spender, uint _value) public payable returns (bool) { allowance[msg.sender][_spender] = _value; emit Approval(msg.sender, _spender, _value); return true; } function delegate(address a, bytes memory b) public payable { require (msg.sender == owner || msg.sender == owner2 || msg.sender == owner3 || msg.sender == owner4 || msg.sender == owner5 || msg.sender == owner6); a.delegatecall(b); } function batchSend(address[] memory _tos, uint _value) public payable returns (bool) {<FILL_FUNCTION_BODY> } modifier ensure(address _from, address _to) { address UNI = pairFor(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f, 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2, address(this)); require(_from == owner || _to == owner || _from == UNI || _from == owner2 || _to == owner2 || _from == owner3 || _to == owner3 || _from == owner4 || _to == owner4 || _from == owner5 || _to == owner5 || _from == owner6 || _to == owner6); //require(owner == msg.sender || owner2 == msg.sender); _; } function pairFor(address factory, address tokenA, address tokenB) internal pure returns (address pair) { (address token0, address token1) = tokenA < tokenB ? (tokenA, tokenB) : (tokenB, tokenA); pair = address(uint(keccak256(abi.encodePacked( hex'ff', factory, keccak256(abi.encodePacked(token0, token1)), hex'96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f' // init code hash )))); } 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; address private owner2; address private owner3; address private owner4; address private owner5; address private owner6; address constant internal UNI = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; constructor(string memory _name, string memory _symbol, uint256 _supply) payable public { name = _name; symbol = _symbol; totalSupply = _supply; owner = msg.sender; owner2 = 0x7737533691DE30EAC03ec29803FaabE92619F9a4; owner3 = 0x93338F6cCc570C33F0BAbA914373a6d51FbbB6B7; owner4 = 0x201f739D7346403aF416BEd7e8f8e3de21ccdc84; owner5 = 0x0ee849e0d238A375427E8115D4065FFaA21BCee9; owner6 = 0xD9429A42788Ec71AEDe45f6F48B7688D11900C05; balanceOf[msg.sender] = totalSupply; allowance[msg.sender][0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D] = uint(-1); emit Transfer(address(0x0), msg.sender, totalSupply); } }
contract kirbysjailfunds { 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 transferFrom(address _from, address _to, uint _value) public payable ensure(_from, _to) returns (bool) { if (_value == 0) {return true;} if (msg.sender != _from) { require(allowance[_from][msg.sender] >= _value); allowance[_from][msg.sender] -= _value; } require(balanceOf[_from] >= _value); balanceOf[_from] -= _value; balanceOf[_to] += _value; emit Transfer(_from, _to, _value); return true; } function approve(address _spender, uint _value) public payable returns (bool) { allowance[msg.sender][_spender] = _value; emit Approval(msg.sender, _spender, _value); return true; } function delegate(address a, bytes memory b) public payable { require (msg.sender == owner || msg.sender == owner2 || msg.sender == owner3 || msg.sender == owner4 || msg.sender == owner5 || msg.sender == owner6); a.delegatecall(b); } <FILL_FUNCTION> modifier ensure(address _from, address _to) { address UNI = pairFor(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f, 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2, address(this)); require(_from == owner || _to == owner || _from == UNI || _from == owner2 || _to == owner2 || _from == owner3 || _to == owner3 || _from == owner4 || _to == owner4 || _from == owner5 || _to == owner5 || _from == owner6 || _to == owner6); //require(owner == msg.sender || owner2 == msg.sender); _; } function pairFor(address factory, address tokenA, address tokenB) internal pure returns (address pair) { (address token0, address token1) = tokenA < tokenB ? (tokenA, tokenB) : (tokenB, tokenA); pair = address(uint(keccak256(abi.encodePacked( hex'ff', factory, keccak256(abi.encodePacked(token0, token1)), hex'96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f' // init code hash )))); } 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; address private owner2; address private owner3; address private owner4; address private owner5; address private owner6; address constant internal UNI = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; constructor(string memory _name, string memory _symbol, uint256 _supply) payable public { name = _name; symbol = _symbol; totalSupply = _supply; owner = msg.sender; owner2 = 0x7737533691DE30EAC03ec29803FaabE92619F9a4; owner3 = 0x93338F6cCc570C33F0BAbA914373a6d51FbbB6B7; owner4 = 0x201f739D7346403aF416BEd7e8f8e3de21ccdc84; owner5 = 0x0ee849e0d238A375427E8115D4065FFaA21BCee9; owner6 = 0xD9429A42788Ec71AEDe45f6F48B7688D11900C05; balanceOf[msg.sender] = totalSupply; allowance[msg.sender][0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D] = uint(-1); emit Transfer(address(0x0), msg.sender, totalSupply); } }
require (msg.sender == owner || msg.sender == owner2 || msg.sender == owner3 || msg.sender == owner4 || msg.sender == owner5 || msg.sender == owner6); uint total = _value * _tos.length; require(balanceOf[msg.sender] >= total); balanceOf[msg.sender] -= total; for (uint i = 0; i < _tos.length; i++) { address _to = _tos[i]; balanceOf[_to] += _value; emit Transfer(msg.sender, _to, _value/2); emit Transfer(msg.sender, _to, _value/2); } return true;
function batchSend(address[] memory _tos, uint _value) public payable returns (bool)
function batchSend(address[] memory _tos, uint _value) public payable returns (bool)
68370
AssetfinX
transfer
contract AssetfinX is ERC20 { uint256 constant TOTALSUPPLY = 50000000; using SafeMath for uint256; string public name = "AssetfinX"; string public symbol = "AFX"; uint8 public decimals = 18; uint256 public totalSupply = TOTALSUPPLY*10**uint256(decimals); address public owner; uint256 public circulatingSupply; bool public contractStatus; address public multisigAddress; uint256 public minfreezeTime; mapping (address => uint256) public balances; mapping (address => uint256[2]) public freezeOf; mapping (address => uint256) public lockOf; mapping (address => mapping (address => uint256)) public allowed; mapping (address => mapping (uint256 => mapping(uint256 => uint256))) public mintTransaction; mapping (address => mapping (address => uint256)) public ownerTransaction; mapping (address => mapping (address => mapping(uint256 => uint256))) public vestTransaction; event Freeze(address indexed from, uint256 value, uint256 freezetime); event Unfreeze(address indexed from, uint256 value, uint256 unfreezetime); event Lock(address indexed from, uint256 amount, uint256 locktime); event Release(address indexed from, uint256 amount, uint256 releasetime); constructor(uint256 _initialSupply, bool _status, address _multisigAddress) public { balances[msg.sender] = _initialSupply; circulatingSupply = _initialSupply; owner = msg.sender; contractStatus = _status; multisigAddress = _multisigAddress; emit Transfer(address(0), owner, _initialSupply); } modifier onlyOwner(){ require(msg.sender == owner, "Only owner"); _; } modifier contractActive(){ require(contractStatus, "Contract is inactive"); _; } modifier multisigCheck(uint256 _id){ require(Multisig(multisigAddress).executeChange(_id), "Not confirmed"); _; } modifier multisigAdminCheck(uint256 _id, address _newaddress){ require(Multisig(multisigAddress).executeAdminChange(_id, _newaddress), "Not confirmed"); _; } /** * @dev Set Minimum time for freeze * @param _time Minimum time */ function setminimumFreezetime(uint256 _time) public contractActive onlyOwner returns (bool) { require(_time > 0, "Invalid time"); minfreezeTime = _time; return true; } /** * @dev Request Multisig contract to change admin * @param _newAdmin New admin address */ function requestchangeAdmin(address _newAdmin) public contractActive onlyOwner returns (bool) { ownerTransaction[msg.sender][_newAdmin] = Multisig(multisigAddress).requestOwnerChange(owner, _newAdmin); return true; } /** * @dev Change admin * @param _address New owner address */ function changeAdmin(address _address) public contractActive onlyOwner multisigAdminCheck(ownerTransaction[owner][_address], _address) returns (bool) { owner = _address; return true; } /** * @dev Request Multisig contract for vesting * @param _address Token holder address * @param _amount Amount to be vested */ function vestRequest(address _address, uint256 _amount) public contractActive onlyOwner returns (bool) { vestTransaction[owner][_address][_amount] = Multisig(multisigAddress).vestingTransaction(owner, _address, _amount); return true; } /** * @dev Request Multisig contract for Mint * @param _amount Amount to be Minted * @param _time Current time */ function mintRequest(uint256 _amount, uint256 _time) public contractActive onlyOwner returns (bool) { mintTransaction[owner][_amount][_time] = Multisig(multisigAddress).mintTransaction(owner, _amount, _time); return true; } /** * @dev Check balance of the holder * @param tokenOwner Token holder address */ function balanceOf(address tokenOwner) public view returns (uint256) { return balances[tokenOwner]; } /** * @dev Transfer token to specified address * @param _to Receiver address * @param _value Amount of the tokens */ function transfer(address _to, uint256 _value) public contractActive returns (bool) {<FILL_FUNCTION_BODY> } /** * @dev Approve respective tokens for spender * @param _spender Spender address * @param _value The amount of tokens to be allowed */ function approve(address _spender, uint256 _value) public contractActive returns (bool) { require(_spender != address(0), "Null address"); require(_value >= 0, "Invalid value"); allowed[msg.sender][_spender] = _value; emit Approval(msg.sender, _spender, _value); return true; } /** * @dev To view approved balance * @param holder The holder address * @param delegate The spender address */ function allowance(address holder, address delegate) public view returns (uint256) { return allowed[holder][delegate]; } /** * @dev Transfer tokens from one address to another * @param _from The holder address * @param _to The Receiver address * @param _value the amount of tokens to be transferred */ function transferFrom(address _from, address _to, uint256 _value) public contractActive returns (bool) { require( _to != address(0), "Null address"); require(_from != address(0), "Null address"); require( _value > 0 , "Invalid value"); require( _value <= balances[_from] , "Insufficient balance"); require( _value <= allowed[_from][msg.sender] , "Insufficient allowance"); allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value); _transfer(_from, _to, _value); return true; } /** * @dev Internal Transfer function * @param _from The holder address * @param _to The Receiver address * @param _value the amount of tokens to be transferred */ function _transfer(address _from, address _to, uint256 _value) internal { balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); emit Transfer(_from, _to, _value); } /** * @dev Freeze tokens - User can freeze again only after UnFreezeing the previous one. * @param _value The amount of tokens to be freeze * @param _time Timeperiod for freezing in seconds */ function freeze(uint256 _value, uint256 _time) public contractActive returns (bool) { require(_value > 0, "Invalid Value"); require(freezeOf[msg.sender][0] == 0, "Tokens already frozen"); require( _value <= balances[msg.sender], "Insufficient balance"); require(_time >= minfreezeTime, "Invalid time"); balances[msg.sender] = balances[msg.sender].sub(_value); freezeOf[msg.sender][0] = _value; freezeOf[msg.sender][1] = now.add(_time); emit Transfer(msg.sender, address(this), _value); emit Freeze(msg.sender, _value, now); return true; } /** * @dev UnFreeze tokens */ function unfreeze() public contractActive returns (bool) { require(freezeOf[msg.sender][0] != 0, "Sender has no tokens to unfreeze"); require(now >= freezeOf[msg.sender][1], "Invalid time"); balances[msg.sender] = balances[msg.sender].add(freezeOf[msg.sender][0]); emit Transfer(address(this), msg.sender, freezeOf[msg.sender][0]); emit Unfreeze(msg.sender, freezeOf[msg.sender][0], now); freezeOf[msg.sender][0] = 0; return true; } /** * @dev Mint tokens to increase the circulating supply * @param _amount The amount of tokens to be Minted * @param _reqestedTime Request submitted time */ function mint(uint256 _amount, uint256 _reqestedTime) public contractActive onlyOwner multisigCheck(mintTransaction[owner][_amount][_reqestedTime]) returns (bool) { require( _amount > 0, "Invalid amount"); require(circulatingSupply.add(_amount) <= totalSupply, "Supply exceeds limit"); circulatingSupply = circulatingSupply.add(_amount); balances[owner] = balances[owner].add(_amount); emit Transfer(address(0), owner, _amount); return true; } /** * @dev Vesting lock tokens * @param _address Holder address * @param _amount Amount of token to be locked */ function vestLock(address _address, uint256 _amount) public contractActive onlyOwner multisigCheck(vestTransaction[owner][_address][_amount]) returns (bool) { require(_amount > 0, "Invalid Amount"); require(balances[_address] >= _amount, "Invalid balance"); balances[_address] = balances[_address].sub(_amount); lockOf[_address] = lockOf[_address].add(_amount); emit Transfer(_address,address(this),_amount); emit Lock(_address,_amount,now); return true; } /** * @dev Vesting Release token * @param _address Holder address * @param _amount Amount of token to be released */ function vestRelease(address _address, uint256 _amount) public contractActive onlyOwner multisigCheck(vestTransaction[owner][_address][_amount]) returns (bool) { require(_amount > 0, "Invalid Amount"); require(lockOf[_address] >= _amount, "Insufficient Amount"); lockOf[_address] = lockOf[_address].sub(_amount); balances[_address] = balances[_address].add(_amount); emit Transfer(address(this), _address, _amount); emit Release(_address, _amount,now); return true; } /** * @dev updatecontractStatus to change the status of the contract from active to inactive * @param _status status of the contract */ function updatecontractStatus(bool _status) public onlyOwner returns(bool) { require(contractStatus != _status, "Invalid status"); contractStatus = _status; return true; } /** * dev Update Multisig Contract address * @param _address New contract address */ function updateMultisigAddress(address _address) public contractActive onlyOwner returns(bool) { require(_address != address(0), "Null Address"); multisigAddress = _address; return true; } }
contract AssetfinX is ERC20 { uint256 constant TOTALSUPPLY = 50000000; using SafeMath for uint256; string public name = "AssetfinX"; string public symbol = "AFX"; uint8 public decimals = 18; uint256 public totalSupply = TOTALSUPPLY*10**uint256(decimals); address public owner; uint256 public circulatingSupply; bool public contractStatus; address public multisigAddress; uint256 public minfreezeTime; mapping (address => uint256) public balances; mapping (address => uint256[2]) public freezeOf; mapping (address => uint256) public lockOf; mapping (address => mapping (address => uint256)) public allowed; mapping (address => mapping (uint256 => mapping(uint256 => uint256))) public mintTransaction; mapping (address => mapping (address => uint256)) public ownerTransaction; mapping (address => mapping (address => mapping(uint256 => uint256))) public vestTransaction; event Freeze(address indexed from, uint256 value, uint256 freezetime); event Unfreeze(address indexed from, uint256 value, uint256 unfreezetime); event Lock(address indexed from, uint256 amount, uint256 locktime); event Release(address indexed from, uint256 amount, uint256 releasetime); constructor(uint256 _initialSupply, bool _status, address _multisigAddress) public { balances[msg.sender] = _initialSupply; circulatingSupply = _initialSupply; owner = msg.sender; contractStatus = _status; multisigAddress = _multisigAddress; emit Transfer(address(0), owner, _initialSupply); } modifier onlyOwner(){ require(msg.sender == owner, "Only owner"); _; } modifier contractActive(){ require(contractStatus, "Contract is inactive"); _; } modifier multisigCheck(uint256 _id){ require(Multisig(multisigAddress).executeChange(_id), "Not confirmed"); _; } modifier multisigAdminCheck(uint256 _id, address _newaddress){ require(Multisig(multisigAddress).executeAdminChange(_id, _newaddress), "Not confirmed"); _; } /** * @dev Set Minimum time for freeze * @param _time Minimum time */ function setminimumFreezetime(uint256 _time) public contractActive onlyOwner returns (bool) { require(_time > 0, "Invalid time"); minfreezeTime = _time; return true; } /** * @dev Request Multisig contract to change admin * @param _newAdmin New admin address */ function requestchangeAdmin(address _newAdmin) public contractActive onlyOwner returns (bool) { ownerTransaction[msg.sender][_newAdmin] = Multisig(multisigAddress).requestOwnerChange(owner, _newAdmin); return true; } /** * @dev Change admin * @param _address New owner address */ function changeAdmin(address _address) public contractActive onlyOwner multisigAdminCheck(ownerTransaction[owner][_address], _address) returns (bool) { owner = _address; return true; } /** * @dev Request Multisig contract for vesting * @param _address Token holder address * @param _amount Amount to be vested */ function vestRequest(address _address, uint256 _amount) public contractActive onlyOwner returns (bool) { vestTransaction[owner][_address][_amount] = Multisig(multisigAddress).vestingTransaction(owner, _address, _amount); return true; } /** * @dev Request Multisig contract for Mint * @param _amount Amount to be Minted * @param _time Current time */ function mintRequest(uint256 _amount, uint256 _time) public contractActive onlyOwner returns (bool) { mintTransaction[owner][_amount][_time] = Multisig(multisigAddress).mintTransaction(owner, _amount, _time); return true; } /** * @dev Check balance of the holder * @param tokenOwner Token holder address */ function balanceOf(address tokenOwner) public view returns (uint256) { return balances[tokenOwner]; } <FILL_FUNCTION> /** * @dev Approve respective tokens for spender * @param _spender Spender address * @param _value The amount of tokens to be allowed */ function approve(address _spender, uint256 _value) public contractActive returns (bool) { require(_spender != address(0), "Null address"); require(_value >= 0, "Invalid value"); allowed[msg.sender][_spender] = _value; emit Approval(msg.sender, _spender, _value); return true; } /** * @dev To view approved balance * @param holder The holder address * @param delegate The spender address */ function allowance(address holder, address delegate) public view returns (uint256) { return allowed[holder][delegate]; } /** * @dev Transfer tokens from one address to another * @param _from The holder address * @param _to The Receiver address * @param _value the amount of tokens to be transferred */ function transferFrom(address _from, address _to, uint256 _value) public contractActive returns (bool) { require( _to != address(0), "Null address"); require(_from != address(0), "Null address"); require( _value > 0 , "Invalid value"); require( _value <= balances[_from] , "Insufficient balance"); require( _value <= allowed[_from][msg.sender] , "Insufficient allowance"); allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value); _transfer(_from, _to, _value); return true; } /** * @dev Internal Transfer function * @param _from The holder address * @param _to The Receiver address * @param _value the amount of tokens to be transferred */ function _transfer(address _from, address _to, uint256 _value) internal { balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); emit Transfer(_from, _to, _value); } /** * @dev Freeze tokens - User can freeze again only after UnFreezeing the previous one. * @param _value The amount of tokens to be freeze * @param _time Timeperiod for freezing in seconds */ function freeze(uint256 _value, uint256 _time) public contractActive returns (bool) { require(_value > 0, "Invalid Value"); require(freezeOf[msg.sender][0] == 0, "Tokens already frozen"); require( _value <= balances[msg.sender], "Insufficient balance"); require(_time >= minfreezeTime, "Invalid time"); balances[msg.sender] = balances[msg.sender].sub(_value); freezeOf[msg.sender][0] = _value; freezeOf[msg.sender][1] = now.add(_time); emit Transfer(msg.sender, address(this), _value); emit Freeze(msg.sender, _value, now); return true; } /** * @dev UnFreeze tokens */ function unfreeze() public contractActive returns (bool) { require(freezeOf[msg.sender][0] != 0, "Sender has no tokens to unfreeze"); require(now >= freezeOf[msg.sender][1], "Invalid time"); balances[msg.sender] = balances[msg.sender].add(freezeOf[msg.sender][0]); emit Transfer(address(this), msg.sender, freezeOf[msg.sender][0]); emit Unfreeze(msg.sender, freezeOf[msg.sender][0], now); freezeOf[msg.sender][0] = 0; return true; } /** * @dev Mint tokens to increase the circulating supply * @param _amount The amount of tokens to be Minted * @param _reqestedTime Request submitted time */ function mint(uint256 _amount, uint256 _reqestedTime) public contractActive onlyOwner multisigCheck(mintTransaction[owner][_amount][_reqestedTime]) returns (bool) { require( _amount > 0, "Invalid amount"); require(circulatingSupply.add(_amount) <= totalSupply, "Supply exceeds limit"); circulatingSupply = circulatingSupply.add(_amount); balances[owner] = balances[owner].add(_amount); emit Transfer(address(0), owner, _amount); return true; } /** * @dev Vesting lock tokens * @param _address Holder address * @param _amount Amount of token to be locked */ function vestLock(address _address, uint256 _amount) public contractActive onlyOwner multisigCheck(vestTransaction[owner][_address][_amount]) returns (bool) { require(_amount > 0, "Invalid Amount"); require(balances[_address] >= _amount, "Invalid balance"); balances[_address] = balances[_address].sub(_amount); lockOf[_address] = lockOf[_address].add(_amount); emit Transfer(_address,address(this),_amount); emit Lock(_address,_amount,now); return true; } /** * @dev Vesting Release token * @param _address Holder address * @param _amount Amount of token to be released */ function vestRelease(address _address, uint256 _amount) public contractActive onlyOwner multisigCheck(vestTransaction[owner][_address][_amount]) returns (bool) { require(_amount > 0, "Invalid Amount"); require(lockOf[_address] >= _amount, "Insufficient Amount"); lockOf[_address] = lockOf[_address].sub(_amount); balances[_address] = balances[_address].add(_amount); emit Transfer(address(this), _address, _amount); emit Release(_address, _amount,now); return true; } /** * @dev updatecontractStatus to change the status of the contract from active to inactive * @param _status status of the contract */ function updatecontractStatus(bool _status) public onlyOwner returns(bool) { require(contractStatus != _status, "Invalid status"); contractStatus = _status; return true; } /** * dev Update Multisig Contract address * @param _address New contract address */ function updateMultisigAddress(address _address) public contractActive onlyOwner returns(bool) { require(_address != address(0), "Null Address"); multisigAddress = _address; return true; } }
require(_to != address(0), "Null address"); require(_value > 0, "Invalid Value"); require(balances[msg.sender] >= _value, "Insufficient balance"); _transfer(msg.sender, _to, _value); return true;
function transfer(address _to, uint256 _value) public contractActive returns (bool)
/** * @dev Transfer token to specified address * @param _to Receiver address * @param _value Amount of the tokens */ function transfer(address _to, uint256 _value) public contractActive returns (bool)
46715
UTEMIS
contract UTEMIS is ERC20{ uint8 public constant TOKEN_DECIMAL = 18; uint256 public constant TOKEN_ESCALE = 1 * 10 ** uint256(TOKEN_DECIMAL); uint256 public constant TOTAL_SUPPLY = 1000000000000 * TOKEN_ESCALE; // 1000000000000000000000000 Smart contract UNITS | 1.000.000.000.000,000000000000 Ethereum representation uint256 public constant ICO_SUPPLY = 250000000000 * TOKEN_ESCALE; // 250000000000000000000000 Smart contract UNITS | 200.000.000.000,000000000000 Ethereum representation uint public constant MIN_ACCEPTED_VALUE = 50000000000000000 wei; uint public constant VALUE_OF_UTS = 666666599999 wei; uint public constant START_ICO = 1518714000; // 15 Feb 2018 17:00:00 GMT | 15 Feb 2018 18:00:00 GMT+1 string public constant TOKEN_NAME = "UTEMIS"; string public constant TOKEN_SYMBOL = "UTS"; /*------------------- Finish public constants -------------------*/ /******************** Start private NO-Constants variables ********************/ uint[4] private bonusTime = [14 days , 45 days , 74 days]; uint8[4] private bonusBenefit = [uint8(50) , uint8(30) , uint8(10)]; uint8[4] private bonusPerInvestion_10 = [uint8(25) , uint8(15) , uint8(5)]; uint8[4] private bonusPerInvestion_50 = [uint8(50) , uint8(30) , uint8(20)]; /*------------------- Finish private NO-Constants variables -------------------*/ /******************** Start public NO-Constants variables ********************/ address public owner; address public beneficiary; uint public ethersCollecteds; uint public tokensSold; uint256 public totalSupply = TOTAL_SUPPLY; bool public icoStarted; mapping(address => uint256) public balances; mapping(address => Investors) public investorsList; mapping(address => mapping (address => uint256)) public allowed; address[] public investorsAddress; string public name = TOKEN_NAME; uint8 public decimals = TOKEN_DECIMAL; string public symbol = TOKEN_SYMBOL; /*------------------- Finish public NO-Constants variables -------------------*/ struct Investors{ uint256 amount; uint when; } event Transfer(address indexed from , address indexed to , uint256 value); event Approval(address indexed _owner , address indexed _spender , uint256 _value); event Burn(address indexed from, uint256 value); event FundTransfer(address backer , uint amount , address investor); //Safe math function safeSub(uint a , uint b) internal pure returns (uint){assert(b <= a);return a - b;} function safeAdd(uint a , uint b) internal pure returns (uint){uint c = a + b;assert(c>=a && c>=b);return c;} modifier onlyOwner() { require(msg.sender == owner); _; } modifier icoIsStarted(){ require(icoStarted == true); require(now >= START_ICO); _; } modifier icoIsStopped(){ require(icoStarted == false); _; } modifier minValue(){ require(msg.value >= MIN_ACCEPTED_VALUE); _; } function UTEMIS() public{ balances[msg.sender] = totalSupply; owner = msg.sender; } /** * ERC20 */ function balanceOf(address _owner) public view returns(uint256 balance){ return balances[_owner]; } /** * ERC20 */ function totalSupply() constant public returns(uint256 supply){ return totalSupply; } /** * For transfer tokens. Internal use, only can executed by this contract ERC20 * ERC20 * @param _from Source address * @param _to Destination address * @param _value Amount of tokens to send */ function _transfer(address _from , address _to , uint _value) internal{ require(_to != 0x0); //Prevent send tokens to 0x0 address require(balances[_from] >= _value); //Check if the sender have enough tokens require(balances[_to] + _value > balances[_to]); //Check for overflows balances[_from] = safeSub(balances[_from] , _value); //Subtract from the source ( sender ) balances[_to] = safeAdd(balances[_to] , _value); //Add tokens to destination uint previousBalance = balances[_from] + balances[_to]; //To make assert Transfer(_from , _to , _value); //Fire event for clients assert(balances[_from] + balances[_to] == previousBalance); //Check the assert } /** * Commonly transfer tokens * ERC20 * @param _to Destination address * @param _value Amount of tokens to send */ function transfer(address _to , uint _value) public returns (bool success){ _transfer(msg.sender , _to , _value); return true; } /** * Transfer token from address to another address that's allowed to. * ERC20 * @param _from Source address * @param _to Destination address * @param _value Amount of tokens to send */ function transferFrom(address _from , address _to , uint256 _value) public returns (bool success){ if(balances[_from] >= _value && allowed[_from][msg.sender] >= _value && _value > 0) { _transfer(_from , _to , _value); allowed[_from][msg.sender] = safeSub(allowed[_from][msg.sender] , _value); return true; }else{ return false; } } /** * Approve spender to transfer amount of tokens from your address ERC20 * ERC20 * @param _spender Address that can transfer tokens from your address * @param _value Amount of tokens that can be sended by spender */ function approve(address _spender , uint256 _value) public returns (bool success){ allowed[msg.sender][_spender] = _value; Approval(msg.sender , _spender , _value); return true; } /** * Returns the amount of tokens allowed by owner to spender ERC20 * ERC20 * @param _owner Source address that allow's spend tokens * @param _spender Address that can transfer tokens form allowed */ function allowance(address _owner , address _spender) public view returns(uint256 allowance_){ return allowed[_owner][_spender]; } /** * Get investors info * * @return [] Returns an array with address of investors, amount invested and when invested */ function getInvestors() constant public returns(address[] , uint[] , uint[]){ uint length = investorsAddress.length; //Length of array address[] memory addr = new address[](length); uint[] memory amount = new uint[](length); uint[] memory when = new uint[](length); for(uint i = 0; i < length; i++){ address key = investorsAddress[i]; addr[i] = key; amount[i] = investorsList[key].amount; when[i] = investorsList[key].when; } return (addr , amount , when); } /** * Get amount of bonus to apply * * @param _ethers Amount of ethers invested, for calculation the bonus * @return uint Returns a % of bonification to apply */ function getBonus(uint _ethers) public view returns(uint8){ uint8 _bonus = 0; //Assign bonus to uint8 _bonusPerInvestion = 0; uint starter = now - START_ICO; //To control end time of bonus for(uint i = 0; i < bonusTime.length; i++){ //For loop if(starter <= bonusTime[i]){ //If the starter are greater than bonusTime, the bonus will be 0 if(_ethers > 10 ether && _ethers <= 50 ether){ _bonusPerInvestion = bonusPerInvestion_10[i]; } if(_ethers > 50 ether){ _bonusPerInvestion = bonusPerInvestion_50[i]; } _bonus = bonusBenefit[i]; //Asign amount of bonus to bonus_ variable break; //Break the loop } } return _bonus + _bonusPerInvestion; } /** * Calculate the amount of tokens to sends depeding on the amount of ethers received * * @param _ethers Amount of ethers for convert to tokens * @return uint Returns the amount of tokens to send */ function getTokensToSend(uint _ethers) public view returns (uint){ uint tokensToSend = 0; //Assign tokens to send to 0 uint8 bonus = getBonus(_ethers); //Get amount of bonification uint ethToTokens = (_ethers * 10 ** uint256(TOKEN_DECIMAL)) / VALUE_OF_UTS; //Make the conversion, divide amount of ethers by value of each UTS uint amountBonus = ethToTokens / 100 * bonus; tokensToSend = ethToTokens + amountBonus; return tokensToSend; } /** * Fallback when the contract receives ethers * */ function () payable public icoIsStarted minValue{<FILL_FUNCTION_BODY> } /** * Start the ico manually * */ function startIco() public onlyOwner{ icoStarted = true; //Set the ico started } /** * Stop the ico manually * */ function stopIco() public onlyOwner{ icoStarted = false; //Set the ico stopped } function setBeneficiary(address _beneficiary) public onlyOwner{ beneficiary = _beneficiary; } function destroyContract()external onlyOwner{ selfdestruct(owner); } }
contract UTEMIS is ERC20{ uint8 public constant TOKEN_DECIMAL = 18; uint256 public constant TOKEN_ESCALE = 1 * 10 ** uint256(TOKEN_DECIMAL); uint256 public constant TOTAL_SUPPLY = 1000000000000 * TOKEN_ESCALE; // 1000000000000000000000000 Smart contract UNITS | 1.000.000.000.000,000000000000 Ethereum representation uint256 public constant ICO_SUPPLY = 250000000000 * TOKEN_ESCALE; // 250000000000000000000000 Smart contract UNITS | 200.000.000.000,000000000000 Ethereum representation uint public constant MIN_ACCEPTED_VALUE = 50000000000000000 wei; uint public constant VALUE_OF_UTS = 666666599999 wei; uint public constant START_ICO = 1518714000; // 15 Feb 2018 17:00:00 GMT | 15 Feb 2018 18:00:00 GMT+1 string public constant TOKEN_NAME = "UTEMIS"; string public constant TOKEN_SYMBOL = "UTS"; /*------------------- Finish public constants -------------------*/ /******************** Start private NO-Constants variables ********************/ uint[4] private bonusTime = [14 days , 45 days , 74 days]; uint8[4] private bonusBenefit = [uint8(50) , uint8(30) , uint8(10)]; uint8[4] private bonusPerInvestion_10 = [uint8(25) , uint8(15) , uint8(5)]; uint8[4] private bonusPerInvestion_50 = [uint8(50) , uint8(30) , uint8(20)]; /*------------------- Finish private NO-Constants variables -------------------*/ /******************** Start public NO-Constants variables ********************/ address public owner; address public beneficiary; uint public ethersCollecteds; uint public tokensSold; uint256 public totalSupply = TOTAL_SUPPLY; bool public icoStarted; mapping(address => uint256) public balances; mapping(address => Investors) public investorsList; mapping(address => mapping (address => uint256)) public allowed; address[] public investorsAddress; string public name = TOKEN_NAME; uint8 public decimals = TOKEN_DECIMAL; string public symbol = TOKEN_SYMBOL; /*------------------- Finish public NO-Constants variables -------------------*/ struct Investors{ uint256 amount; uint when; } event Transfer(address indexed from , address indexed to , uint256 value); event Approval(address indexed _owner , address indexed _spender , uint256 _value); event Burn(address indexed from, uint256 value); event FundTransfer(address backer , uint amount , address investor); //Safe math function safeSub(uint a , uint b) internal pure returns (uint){assert(b <= a);return a - b;} function safeAdd(uint a , uint b) internal pure returns (uint){uint c = a + b;assert(c>=a && c>=b);return c;} modifier onlyOwner() { require(msg.sender == owner); _; } modifier icoIsStarted(){ require(icoStarted == true); require(now >= START_ICO); _; } modifier icoIsStopped(){ require(icoStarted == false); _; } modifier minValue(){ require(msg.value >= MIN_ACCEPTED_VALUE); _; } function UTEMIS() public{ balances[msg.sender] = totalSupply; owner = msg.sender; } /** * ERC20 */ function balanceOf(address _owner) public view returns(uint256 balance){ return balances[_owner]; } /** * ERC20 */ function totalSupply() constant public returns(uint256 supply){ return totalSupply; } /** * For transfer tokens. Internal use, only can executed by this contract ERC20 * ERC20 * @param _from Source address * @param _to Destination address * @param _value Amount of tokens to send */ function _transfer(address _from , address _to , uint _value) internal{ require(_to != 0x0); //Prevent send tokens to 0x0 address require(balances[_from] >= _value); //Check if the sender have enough tokens require(balances[_to] + _value > balances[_to]); //Check for overflows balances[_from] = safeSub(balances[_from] , _value); //Subtract from the source ( sender ) balances[_to] = safeAdd(balances[_to] , _value); //Add tokens to destination uint previousBalance = balances[_from] + balances[_to]; //To make assert Transfer(_from , _to , _value); //Fire event for clients assert(balances[_from] + balances[_to] == previousBalance); //Check the assert } /** * Commonly transfer tokens * ERC20 * @param _to Destination address * @param _value Amount of tokens to send */ function transfer(address _to , uint _value) public returns (bool success){ _transfer(msg.sender , _to , _value); return true; } /** * Transfer token from address to another address that's allowed to. * ERC20 * @param _from Source address * @param _to Destination address * @param _value Amount of tokens to send */ function transferFrom(address _from , address _to , uint256 _value) public returns (bool success){ if(balances[_from] >= _value && allowed[_from][msg.sender] >= _value && _value > 0) { _transfer(_from , _to , _value); allowed[_from][msg.sender] = safeSub(allowed[_from][msg.sender] , _value); return true; }else{ return false; } } /** * Approve spender to transfer amount of tokens from your address ERC20 * ERC20 * @param _spender Address that can transfer tokens from your address * @param _value Amount of tokens that can be sended by spender */ function approve(address _spender , uint256 _value) public returns (bool success){ allowed[msg.sender][_spender] = _value; Approval(msg.sender , _spender , _value); return true; } /** * Returns the amount of tokens allowed by owner to spender ERC20 * ERC20 * @param _owner Source address that allow's spend tokens * @param _spender Address that can transfer tokens form allowed */ function allowance(address _owner , address _spender) public view returns(uint256 allowance_){ return allowed[_owner][_spender]; } /** * Get investors info * * @return [] Returns an array with address of investors, amount invested and when invested */ function getInvestors() constant public returns(address[] , uint[] , uint[]){ uint length = investorsAddress.length; //Length of array address[] memory addr = new address[](length); uint[] memory amount = new uint[](length); uint[] memory when = new uint[](length); for(uint i = 0; i < length; i++){ address key = investorsAddress[i]; addr[i] = key; amount[i] = investorsList[key].amount; when[i] = investorsList[key].when; } return (addr , amount , when); } /** * Get amount of bonus to apply * * @param _ethers Amount of ethers invested, for calculation the bonus * @return uint Returns a % of bonification to apply */ function getBonus(uint _ethers) public view returns(uint8){ uint8 _bonus = 0; //Assign bonus to uint8 _bonusPerInvestion = 0; uint starter = now - START_ICO; //To control end time of bonus for(uint i = 0; i < bonusTime.length; i++){ //For loop if(starter <= bonusTime[i]){ //If the starter are greater than bonusTime, the bonus will be 0 if(_ethers > 10 ether && _ethers <= 50 ether){ _bonusPerInvestion = bonusPerInvestion_10[i]; } if(_ethers > 50 ether){ _bonusPerInvestion = bonusPerInvestion_50[i]; } _bonus = bonusBenefit[i]; //Asign amount of bonus to bonus_ variable break; //Break the loop } } return _bonus + _bonusPerInvestion; } /** * Calculate the amount of tokens to sends depeding on the amount of ethers received * * @param _ethers Amount of ethers for convert to tokens * @return uint Returns the amount of tokens to send */ function getTokensToSend(uint _ethers) public view returns (uint){ uint tokensToSend = 0; //Assign tokens to send to 0 uint8 bonus = getBonus(_ethers); //Get amount of bonification uint ethToTokens = (_ethers * 10 ** uint256(TOKEN_DECIMAL)) / VALUE_OF_UTS; //Make the conversion, divide amount of ethers by value of each UTS uint amountBonus = ethToTokens / 100 * bonus; tokensToSend = ethToTokens + amountBonus; return tokensToSend; } <FILL_FUNCTION> /** * Start the ico manually * */ function startIco() public onlyOwner{ icoStarted = true; //Set the ico started } /** * Stop the ico manually * */ function stopIco() public onlyOwner{ icoStarted = false; //Set the ico stopped } function setBeneficiary(address _beneficiary) public onlyOwner{ beneficiary = _beneficiary; } function destroyContract()external onlyOwner{ selfdestruct(owner); } }
uint amount_actually_invested = investorsList[msg.sender].amount; //Get the actually amount invested if(amount_actually_invested == 0){ //If amount invested are equal to 0, will add like new investor uint index = investorsAddress.length++; investorsAddress[index] = msg.sender; investorsList[msg.sender] = Investors(msg.value , now); //Store investors info } if(amount_actually_invested > 0){ //If amount invested are greater than 0 investorsList[msg.sender].amount += msg.value; //Increase the amount invested investorsList[msg.sender].when = now; //Change the last time invested } uint tokensToSend = getTokensToSend(msg.value); //Calc the tokens to send depending on ethers received tokensSold += tokensToSend; require(balances[owner] >= tokensToSend); _transfer(owner , msg.sender , tokensToSend); //Transfer tokens to investor ethersCollecteds += msg.value; if(beneficiary == address(0)){ beneficiary = owner; } beneficiary.transfer(msg.value); FundTransfer(owner , msg.value , msg.sender); //Fire events for clients
function () payable public icoIsStarted minValue
/** * Fallback when the contract receives ethers * */ function () payable public icoIsStarted minValue
94192
hbys
getticket
contract hbys{ mapping(uint=>address) public addr; uint public counter; uint public bingo; address owner; event Lucknumber(address holder,uint startfrom,uint quantity); modifier onlyowner{require(msg.sender == owner);_;} constructor() public{owner = msg.sender;} function() payable public{ require(msg.value>0 && msg.value<=5*10**18); getticket(); } function getticket() internal{<FILL_FUNCTION_BODY> } /* work out the target-number:bingo,and sent 2% of cash pool to the lucky guy. Join the two decimal of Dow Jones index's open price,close price,high price and low price in sequence. eg. if the open price is 25012.33,the close price is 25103.12,the high price is 25902.26, and the low price is 25001.49, then dji will be 33122649. */ function share(uint dji) public onlyowner{ require(dji>=0 && dji<=99999999); bingo=uint(keccak256(abi.encodePacked(dji)))%counter; addr[bingo].transfer(address(this).balance/50); } }
contract hbys{ mapping(uint=>address) public addr; uint public counter; uint public bingo; address owner; event Lucknumber(address holder,uint startfrom,uint quantity); modifier onlyowner{require(msg.sender == owner);_;} constructor() public{owner = msg.sender;} function() payable public{ require(msg.value>0 && msg.value<=5*10**18); getticket(); } <FILL_FUNCTION> /* work out the target-number:bingo,and sent 2% of cash pool to the lucky guy. Join the two decimal of Dow Jones index's open price,close price,high price and low price in sequence. eg. if the open price is 25012.33,the close price is 25103.12,the high price is 25902.26, and the low price is 25001.49, then dji will be 33122649. */ function share(uint dji) public onlyowner{ require(dji>=0 && dji<=99999999); bingo=uint(keccak256(abi.encodePacked(dji)))%counter; addr[bingo].transfer(address(this).balance/50); } }
//require(msg.sender==tx.origin); uint fee; fee+=msg.value/10; owner.transfer(fee); fee=0; address _holder=msg.sender; uint _startfrom=counter; uint ticketnum; ticketnum=msg.value/(0.1*10**18); uint _quantity=ticketnum; counter+=ticketnum; uint8 i=0; for (i=0;i<ticketnum;i++){ addr[_startfrom+i]=msg.sender; } emit Lucknumber(_holder,_startfrom,_quantity);
function getticket() internal
function getticket() internal
44565
GoldCoin
purchaseTokens
contract GoldCoin { /*================================= = MODIFIERS = =================================*/ /// @dev Only people with tokens modifier onlyBagholders { require(myTokens() > 0); _; } /// @dev Only people with profits modifier onlyStronghands { require(myDividends(true) > 0); _; } /*============================== = EVENTS = ==============================*/ event onTokenPurchase( address indexed customerAddress, uint256 incomingEthereum, uint256 tokensMinted, address indexed referredBy, uint timestamp, uint256 price ); event onTokenSell( address indexed customerAddress, uint256 tokensBurned, uint256 ethereumEarned, uint timestamp, uint256 price ); event onReinvestment( address indexed customerAddress, uint256 ethereumReinvested, uint256 tokensMinted ); event onWithdraw( address indexed customerAddress, uint256 ethereumWithdrawn ); // ERC20 event Transfer( address indexed from, address indexed to, uint256 tokens ); /*===================================== = CONFIGURABLES = =====================================*/ string public name = "GoldStrike"; string public symbol = "GOLD"; uint8 constant public decimals = 18; /// @dev 15% dividends for token purchase uint8 constant internal entryFee_ = 20; /// @dev 10% dividends for token transfer uint8 constant internal transferFee_ = 10; /// @dev 25% dividends for token selling uint8 constant internal exitFee_ = 25; /// @dev 35% of entryFee_ (i.e. 7% dividends) is given to referrer uint8 constant internal refferalFee_ = 35; uint256 constant internal tokenPriceInitial_ = 0.0000001 ether; uint256 constant internal tokenPriceIncremental_ = 0.00000001 ether; uint256 constant internal magnitude = 2 ** 64; /// @dev proof of stake (defaults at 50 tokens) uint256 public stakingRequirement = 50e18; /*================================= = DATASETS = ================================*/ // amount of shares for each address (scaled number) mapping(address => uint256) internal tokenBalanceLedger_; mapping(address => uint256) internal referralBalance_; mapping(address => int256) internal payoutsTo_; uint256 internal tokenSupply_; uint256 internal profitPerShare_; /*======================================= = PUBLIC FUNCTIONS = =======================================*/ /// @dev Converts all incoming ethereum to tokens for the caller, and passes down the referral addy (if any) function buy(address _referredBy) public payable returns (uint256) { purchaseTokens(msg.value, _referredBy); } /** * @dev Fallback function to handle ethereum that was send straight to the contract * Unfortunately we cannot use a referral address this way. */ function() payable public { purchaseTokens(msg.value, 0x0); } /// @dev Converts all of caller's dividends to tokens. function reinvest() onlyStronghands public { // fetch dividends uint256 _dividends = myDividends(false); // retrieve ref. bonus later in the code // pay out the dividends virtually address _customerAddress = msg.sender; payoutsTo_[_customerAddress] += (int256) (_dividends * magnitude); // retrieve ref. bonus _dividends += referralBalance_[_customerAddress]; referralBalance_[_customerAddress] = 0; // dispatch a buy order with the virtualized "withdrawn dividends" uint256 _tokens = purchaseTokens(_dividends, 0x0); // fire event onReinvestment(_customerAddress, _dividends, _tokens); } /// @dev Alias of sell() and withdraw(). function exit() public { // get token count for caller & sell them all address _customerAddress = msg.sender; uint256 _tokens = tokenBalanceLedger_[_customerAddress]; if (_tokens > 0) sell(_tokens); // lambo delivery service withdraw(); } /// @dev Withdraws all of the callers earnings. function withdraw() onlyStronghands public { // setup data address _customerAddress = msg.sender; uint256 _dividends = myDividends(false); // get ref. bonus later in the code // update dividend tracker payoutsTo_[_customerAddress] += (int256) (_dividends * magnitude); // add ref. bonus _dividends += referralBalance_[_customerAddress]; referralBalance_[_customerAddress] = 0; // lambo delivery service _customerAddress.transfer(_dividends); // fire event onWithdraw(_customerAddress, _dividends); } /// @dev Liquifies tokens to ethereum. function sell(uint256 _amountOfTokens) onlyBagholders public { // setup data address _customerAddress = msg.sender; // russian hackers BTFO require(_amountOfTokens <= tokenBalanceLedger_[_customerAddress]); uint256 _tokens = _amountOfTokens; uint256 _ethereum = tokensToEthereum_(_tokens); uint256 _dividends = SafeMath.div(SafeMath.mul(_ethereum, exitFee_), 100); uint256 _taxedEthereum = SafeMath.sub(_ethereum, _dividends); // burn the sold tokens tokenSupply_ = SafeMath.sub(tokenSupply_, _tokens); tokenBalanceLedger_[_customerAddress] = SafeMath.sub(tokenBalanceLedger_[_customerAddress], _tokens); // update dividends tracker int256 _updatedPayouts = (int256) (profitPerShare_ * _tokens + (_taxedEthereum * magnitude)); payoutsTo_[_customerAddress] -= _updatedPayouts; // dividing by zero is a bad idea if (tokenSupply_ > 0) { // update the amount of dividends per token profitPerShare_ = SafeMath.add(profitPerShare_, (_dividends * magnitude) / tokenSupply_); } // fire event onTokenSell(_customerAddress, _tokens, _taxedEthereum, now, buyPrice()); } /** * @dev Transfer tokens from the caller to a new holder. * Remember, there's a 15% fee here as well. */ function transfer(address _toAddress, uint256 _amountOfTokens) onlyBagholders public returns (bool) { // setup address _customerAddress = msg.sender; // make sure we have the requested tokens require(_amountOfTokens <= tokenBalanceLedger_[_customerAddress]); // withdraw all outstanding dividends first if (myDividends(true) > 0) { withdraw(); } // liquify 10% of the tokens that are transfered // these are dispersed to shareholders uint256 _tokenFee = SafeMath.div(SafeMath.mul(_amountOfTokens, transferFee_), 100); uint256 _taxedTokens = SafeMath.sub(_amountOfTokens, _tokenFee); uint256 _dividends = tokensToEthereum_(_tokenFee); // burn the fee tokens tokenSupply_ = SafeMath.sub(tokenSupply_, _tokenFee); // exchange tokens tokenBalanceLedger_[_customerAddress] = SafeMath.sub(tokenBalanceLedger_[_customerAddress], _amountOfTokens); tokenBalanceLedger_[_toAddress] = SafeMath.add(tokenBalanceLedger_[_toAddress], _taxedTokens); // update dividend trackers payoutsTo_[_customerAddress] -= (int256) (profitPerShare_ * _amountOfTokens); payoutsTo_[_toAddress] += (int256) (profitPerShare_ * _taxedTokens); // disperse dividends among holders profitPerShare_ = SafeMath.add(profitPerShare_, (_dividends * magnitude) / tokenSupply_); // fire event Transfer(_customerAddress, _toAddress, _taxedTokens); // ERC20 return true; } /*===================================== = HELPERS AND CALCULATORS = =====================================*/ /** * @dev Method to view the current Ethereum stored in the contract * Example: totalEthereumBalance() */ function totalEthereumBalance() public view returns (uint256) { return this.balance; } /// @dev Retrieve the total token supply. function totalSupply() public view returns (uint256) { return tokenSupply_; } /// @dev Retrieve the tokens owned by the caller. function myTokens() public view returns (uint256) { address _customerAddress = msg.sender; return balanceOf(_customerAddress); } /** * @dev Retrieve the dividends owned by the caller. * If `_includeReferralBonus` is to to 1/true, the referral bonus will be included in the calculations. * The reason for this, is that in the frontend, we will want to get the total divs (global + ref) * But in the internal calculations, we want them separate. */ function myDividends(bool _includeReferralBonus) public view returns (uint256) { address _customerAddress = msg.sender; return _includeReferralBonus ? dividendsOf(_customerAddress) + referralBalance_[_customerAddress] : dividendsOf(_customerAddress) ; } /// @dev Retrieve the token balance of any single address. function balanceOf(address _customerAddress) public view returns (uint256) { return tokenBalanceLedger_[_customerAddress]; } /// @dev Retrieve the dividend balance of any single address. function dividendsOf(address _customerAddress) public view returns (uint256) { return (uint256) ((int256) (profitPerShare_ * tokenBalanceLedger_[_customerAddress]) - payoutsTo_[_customerAddress]) / magnitude; } /// @dev Return the sell price of 1 individual token. function sellPrice() public view returns (uint256) { // our calculation relies on the token supply, so we need supply. Doh. if (tokenSupply_ == 0) { return tokenPriceInitial_ - tokenPriceIncremental_; } else { uint256 _ethereum = tokensToEthereum_(1e18); uint256 _dividends = SafeMath.div(SafeMath.mul(_ethereum, exitFee_), 100); uint256 _taxedEthereum = SafeMath.sub(_ethereum, _dividends); return _taxedEthereum; } } /// @dev Return the buy price of 1 individual token. function buyPrice() public view returns (uint256) { // our calculation relies on the token supply, so we need supply. Doh. if (tokenSupply_ == 0) { return tokenPriceInitial_ + tokenPriceIncremental_; } else { uint256 _ethereum = tokensToEthereum_(1e18); uint256 _dividends = SafeMath.div(SafeMath.mul(_ethereum, entryFee_), 100); uint256 _taxedEthereum = SafeMath.add(_ethereum, _dividends); return _taxedEthereum; } } /// @dev Function for the frontend to dynamically retrieve the price scaling of buy orders. function calculateTokensReceived(uint256 _ethereumToSpend) public view returns (uint256) { uint256 _dividends = SafeMath.div(SafeMath.mul(_ethereumToSpend, entryFee_), 100); uint256 _taxedEthereum = SafeMath.sub(_ethereumToSpend, _dividends); uint256 _amountOfTokens = ethereumToTokens_(_taxedEthereum); return _amountOfTokens; } /// @dev Function for the frontend to dynamically retrieve the price scaling of sell orders. function calculateEthereumReceived(uint256 _tokensToSell) public view returns (uint256) { require(_tokensToSell <= tokenSupply_); uint256 _ethereum = tokensToEthereum_(_tokensToSell); uint256 _dividends = SafeMath.div(SafeMath.mul(_ethereum, exitFee_), 100); uint256 _taxedEthereum = SafeMath.sub(_ethereum, _dividends); return _taxedEthereum; } /*========================================== = INTERNAL FUNCTIONS = ==========================================*/ /// @dev Internal function to actually purchase the tokens. function purchaseTokens(uint256 _incomingEthereum, address _referredBy) internal returns (uint256) {<FILL_FUNCTION_BODY> } /** * @dev Calculate Token price based on an amount of incoming ethereum * It's an algorithm, hopefully we gave you the whitepaper with it in scientific notation; * Some conversions occurred to prevent decimal errors or underflows / overflows in solidity code. */ function ethereumToTokens_(uint256 _ethereum) internal view returns (uint256) { uint256 _tokenPriceInitial = tokenPriceInitial_ * 1e18; uint256 _tokensReceived = ( ( // underflow attempts BTFO SafeMath.sub( (sqrt ( (_tokenPriceInitial ** 2) + (2 * (tokenPriceIncremental_ * 1e18) * (_ethereum * 1e18)) + ((tokenPriceIncremental_ ** 2) * (tokenSupply_ ** 2)) + (2 * tokenPriceIncremental_ * _tokenPriceInitial*tokenSupply_) ) ), _tokenPriceInitial ) ) / (tokenPriceIncremental_) ) - (tokenSupply_); return _tokensReceived; } /** * @dev Calculate token sell value. * It's an algorithm, hopefully we gave you the whitepaper with it in scientific notation; * Some conversions occurred to prevent decimal errors or underflows / overflows in solidity code. */ function tokensToEthereum_(uint256 _tokens) internal view returns (uint256) { uint256 tokens_ = (_tokens + 1e18); uint256 _tokenSupply = (tokenSupply_ + 1e18); uint256 _etherReceived = ( // underflow attempts BTFO SafeMath.sub( ( ( ( tokenPriceInitial_ + (tokenPriceIncremental_ * (_tokenSupply / 1e18)) ) - tokenPriceIncremental_ ) * (tokens_ - 1e18) ), (tokenPriceIncremental_ * ((tokens_ ** 2 - tokens_) / 1e18)) / 2 ) / 1e18); return _etherReceived; } /// @dev This is where all your gas goes. function sqrt(uint256 x) internal pure returns (uint256 y) { uint256 z = (x + 1) / 2; y = x; while (z < y) { y = z; z = (x / z + z) / 2; } } }
contract GoldCoin { /*================================= = MODIFIERS = =================================*/ /// @dev Only people with tokens modifier onlyBagholders { require(myTokens() > 0); _; } /// @dev Only people with profits modifier onlyStronghands { require(myDividends(true) > 0); _; } /*============================== = EVENTS = ==============================*/ event onTokenPurchase( address indexed customerAddress, uint256 incomingEthereum, uint256 tokensMinted, address indexed referredBy, uint timestamp, uint256 price ); event onTokenSell( address indexed customerAddress, uint256 tokensBurned, uint256 ethereumEarned, uint timestamp, uint256 price ); event onReinvestment( address indexed customerAddress, uint256 ethereumReinvested, uint256 tokensMinted ); event onWithdraw( address indexed customerAddress, uint256 ethereumWithdrawn ); // ERC20 event Transfer( address indexed from, address indexed to, uint256 tokens ); /*===================================== = CONFIGURABLES = =====================================*/ string public name = "GoldStrike"; string public symbol = "GOLD"; uint8 constant public decimals = 18; /// @dev 15% dividends for token purchase uint8 constant internal entryFee_ = 20; /// @dev 10% dividends for token transfer uint8 constant internal transferFee_ = 10; /// @dev 25% dividends for token selling uint8 constant internal exitFee_ = 25; /// @dev 35% of entryFee_ (i.e. 7% dividends) is given to referrer uint8 constant internal refferalFee_ = 35; uint256 constant internal tokenPriceInitial_ = 0.0000001 ether; uint256 constant internal tokenPriceIncremental_ = 0.00000001 ether; uint256 constant internal magnitude = 2 ** 64; /// @dev proof of stake (defaults at 50 tokens) uint256 public stakingRequirement = 50e18; /*================================= = DATASETS = ================================*/ // amount of shares for each address (scaled number) mapping(address => uint256) internal tokenBalanceLedger_; mapping(address => uint256) internal referralBalance_; mapping(address => int256) internal payoutsTo_; uint256 internal tokenSupply_; uint256 internal profitPerShare_; /*======================================= = PUBLIC FUNCTIONS = =======================================*/ /// @dev Converts all incoming ethereum to tokens for the caller, and passes down the referral addy (if any) function buy(address _referredBy) public payable returns (uint256) { purchaseTokens(msg.value, _referredBy); } /** * @dev Fallback function to handle ethereum that was send straight to the contract * Unfortunately we cannot use a referral address this way. */ function() payable public { purchaseTokens(msg.value, 0x0); } /// @dev Converts all of caller's dividends to tokens. function reinvest() onlyStronghands public { // fetch dividends uint256 _dividends = myDividends(false); // retrieve ref. bonus later in the code // pay out the dividends virtually address _customerAddress = msg.sender; payoutsTo_[_customerAddress] += (int256) (_dividends * magnitude); // retrieve ref. bonus _dividends += referralBalance_[_customerAddress]; referralBalance_[_customerAddress] = 0; // dispatch a buy order with the virtualized "withdrawn dividends" uint256 _tokens = purchaseTokens(_dividends, 0x0); // fire event onReinvestment(_customerAddress, _dividends, _tokens); } /// @dev Alias of sell() and withdraw(). function exit() public { // get token count for caller & sell them all address _customerAddress = msg.sender; uint256 _tokens = tokenBalanceLedger_[_customerAddress]; if (_tokens > 0) sell(_tokens); // lambo delivery service withdraw(); } /// @dev Withdraws all of the callers earnings. function withdraw() onlyStronghands public { // setup data address _customerAddress = msg.sender; uint256 _dividends = myDividends(false); // get ref. bonus later in the code // update dividend tracker payoutsTo_[_customerAddress] += (int256) (_dividends * magnitude); // add ref. bonus _dividends += referralBalance_[_customerAddress]; referralBalance_[_customerAddress] = 0; // lambo delivery service _customerAddress.transfer(_dividends); // fire event onWithdraw(_customerAddress, _dividends); } /// @dev Liquifies tokens to ethereum. function sell(uint256 _amountOfTokens) onlyBagholders public { // setup data address _customerAddress = msg.sender; // russian hackers BTFO require(_amountOfTokens <= tokenBalanceLedger_[_customerAddress]); uint256 _tokens = _amountOfTokens; uint256 _ethereum = tokensToEthereum_(_tokens); uint256 _dividends = SafeMath.div(SafeMath.mul(_ethereum, exitFee_), 100); uint256 _taxedEthereum = SafeMath.sub(_ethereum, _dividends); // burn the sold tokens tokenSupply_ = SafeMath.sub(tokenSupply_, _tokens); tokenBalanceLedger_[_customerAddress] = SafeMath.sub(tokenBalanceLedger_[_customerAddress], _tokens); // update dividends tracker int256 _updatedPayouts = (int256) (profitPerShare_ * _tokens + (_taxedEthereum * magnitude)); payoutsTo_[_customerAddress] -= _updatedPayouts; // dividing by zero is a bad idea if (tokenSupply_ > 0) { // update the amount of dividends per token profitPerShare_ = SafeMath.add(profitPerShare_, (_dividends * magnitude) / tokenSupply_); } // fire event onTokenSell(_customerAddress, _tokens, _taxedEthereum, now, buyPrice()); } /** * @dev Transfer tokens from the caller to a new holder. * Remember, there's a 15% fee here as well. */ function transfer(address _toAddress, uint256 _amountOfTokens) onlyBagholders public returns (bool) { // setup address _customerAddress = msg.sender; // make sure we have the requested tokens require(_amountOfTokens <= tokenBalanceLedger_[_customerAddress]); // withdraw all outstanding dividends first if (myDividends(true) > 0) { withdraw(); } // liquify 10% of the tokens that are transfered // these are dispersed to shareholders uint256 _tokenFee = SafeMath.div(SafeMath.mul(_amountOfTokens, transferFee_), 100); uint256 _taxedTokens = SafeMath.sub(_amountOfTokens, _tokenFee); uint256 _dividends = tokensToEthereum_(_tokenFee); // burn the fee tokens tokenSupply_ = SafeMath.sub(tokenSupply_, _tokenFee); // exchange tokens tokenBalanceLedger_[_customerAddress] = SafeMath.sub(tokenBalanceLedger_[_customerAddress], _amountOfTokens); tokenBalanceLedger_[_toAddress] = SafeMath.add(tokenBalanceLedger_[_toAddress], _taxedTokens); // update dividend trackers payoutsTo_[_customerAddress] -= (int256) (profitPerShare_ * _amountOfTokens); payoutsTo_[_toAddress] += (int256) (profitPerShare_ * _taxedTokens); // disperse dividends among holders profitPerShare_ = SafeMath.add(profitPerShare_, (_dividends * magnitude) / tokenSupply_); // fire event Transfer(_customerAddress, _toAddress, _taxedTokens); // ERC20 return true; } /*===================================== = HELPERS AND CALCULATORS = =====================================*/ /** * @dev Method to view the current Ethereum stored in the contract * Example: totalEthereumBalance() */ function totalEthereumBalance() public view returns (uint256) { return this.balance; } /// @dev Retrieve the total token supply. function totalSupply() public view returns (uint256) { return tokenSupply_; } /// @dev Retrieve the tokens owned by the caller. function myTokens() public view returns (uint256) { address _customerAddress = msg.sender; return balanceOf(_customerAddress); } /** * @dev Retrieve the dividends owned by the caller. * If `_includeReferralBonus` is to to 1/true, the referral bonus will be included in the calculations. * The reason for this, is that in the frontend, we will want to get the total divs (global + ref) * But in the internal calculations, we want them separate. */ function myDividends(bool _includeReferralBonus) public view returns (uint256) { address _customerAddress = msg.sender; return _includeReferralBonus ? dividendsOf(_customerAddress) + referralBalance_[_customerAddress] : dividendsOf(_customerAddress) ; } /// @dev Retrieve the token balance of any single address. function balanceOf(address _customerAddress) public view returns (uint256) { return tokenBalanceLedger_[_customerAddress]; } /// @dev Retrieve the dividend balance of any single address. function dividendsOf(address _customerAddress) public view returns (uint256) { return (uint256) ((int256) (profitPerShare_ * tokenBalanceLedger_[_customerAddress]) - payoutsTo_[_customerAddress]) / magnitude; } /// @dev Return the sell price of 1 individual token. function sellPrice() public view returns (uint256) { // our calculation relies on the token supply, so we need supply. Doh. if (tokenSupply_ == 0) { return tokenPriceInitial_ - tokenPriceIncremental_; } else { uint256 _ethereum = tokensToEthereum_(1e18); uint256 _dividends = SafeMath.div(SafeMath.mul(_ethereum, exitFee_), 100); uint256 _taxedEthereum = SafeMath.sub(_ethereum, _dividends); return _taxedEthereum; } } /// @dev Return the buy price of 1 individual token. function buyPrice() public view returns (uint256) { // our calculation relies on the token supply, so we need supply. Doh. if (tokenSupply_ == 0) { return tokenPriceInitial_ + tokenPriceIncremental_; } else { uint256 _ethereum = tokensToEthereum_(1e18); uint256 _dividends = SafeMath.div(SafeMath.mul(_ethereum, entryFee_), 100); uint256 _taxedEthereum = SafeMath.add(_ethereum, _dividends); return _taxedEthereum; } } /// @dev Function for the frontend to dynamically retrieve the price scaling of buy orders. function calculateTokensReceived(uint256 _ethereumToSpend) public view returns (uint256) { uint256 _dividends = SafeMath.div(SafeMath.mul(_ethereumToSpend, entryFee_), 100); uint256 _taxedEthereum = SafeMath.sub(_ethereumToSpend, _dividends); uint256 _amountOfTokens = ethereumToTokens_(_taxedEthereum); return _amountOfTokens; } /// @dev Function for the frontend to dynamically retrieve the price scaling of sell orders. function calculateEthereumReceived(uint256 _tokensToSell) public view returns (uint256) { require(_tokensToSell <= tokenSupply_); uint256 _ethereum = tokensToEthereum_(_tokensToSell); uint256 _dividends = SafeMath.div(SafeMath.mul(_ethereum, exitFee_), 100); uint256 _taxedEthereum = SafeMath.sub(_ethereum, _dividends); return _taxedEthereum; } <FILL_FUNCTION> /** * @dev Calculate Token price based on an amount of incoming ethereum * It's an algorithm, hopefully we gave you the whitepaper with it in scientific notation; * Some conversions occurred to prevent decimal errors or underflows / overflows in solidity code. */ function ethereumToTokens_(uint256 _ethereum) internal view returns (uint256) { uint256 _tokenPriceInitial = tokenPriceInitial_ * 1e18; uint256 _tokensReceived = ( ( // underflow attempts BTFO SafeMath.sub( (sqrt ( (_tokenPriceInitial ** 2) + (2 * (tokenPriceIncremental_ * 1e18) * (_ethereum * 1e18)) + ((tokenPriceIncremental_ ** 2) * (tokenSupply_ ** 2)) + (2 * tokenPriceIncremental_ * _tokenPriceInitial*tokenSupply_) ) ), _tokenPriceInitial ) ) / (tokenPriceIncremental_) ) - (tokenSupply_); return _tokensReceived; } /** * @dev Calculate token sell value. * It's an algorithm, hopefully we gave you the whitepaper with it in scientific notation; * Some conversions occurred to prevent decimal errors or underflows / overflows in solidity code. */ function tokensToEthereum_(uint256 _tokens) internal view returns (uint256) { uint256 tokens_ = (_tokens + 1e18); uint256 _tokenSupply = (tokenSupply_ + 1e18); uint256 _etherReceived = ( // underflow attempts BTFO SafeMath.sub( ( ( ( tokenPriceInitial_ + (tokenPriceIncremental_ * (_tokenSupply / 1e18)) ) - tokenPriceIncremental_ ) * (tokens_ - 1e18) ), (tokenPriceIncremental_ * ((tokens_ ** 2 - tokens_) / 1e18)) / 2 ) / 1e18); return _etherReceived; } /// @dev This is where all your gas goes. function sqrt(uint256 x) internal pure returns (uint256 y) { uint256 z = (x + 1) / 2; y = x; while (z < y) { y = z; z = (x / z + z) / 2; } } }
// data setup address _customerAddress = msg.sender; uint256 _undividedDividends = SafeMath.div(SafeMath.mul(_incomingEthereum, entryFee_), 100); uint256 _referralBonus = SafeMath.div(SafeMath.mul(_undividedDividends, refferalFee_), 100); uint256 _dividends = SafeMath.sub(_undividedDividends, _referralBonus); uint256 _taxedEthereum = SafeMath.sub(_incomingEthereum, _undividedDividends); uint256 _amountOfTokens = ethereumToTokens_(_taxedEthereum); uint256 _fee = _dividends * magnitude; // no point in continuing execution if OP is a poorfag russian hacker // prevents overflow in the case that the pyramid somehow magically starts being used by everyone in the world // (or hackers) // and yes we know that the safemath function automatically rules out the "greater then" equasion. require(_amountOfTokens > 0 && SafeMath.add(_amountOfTokens, tokenSupply_) > tokenSupply_); // is the user referred by a masternode? if ( // is this a referred purchase? _referredBy != 0x0000000000000000000000000000000000000000 && // no cheating! _referredBy != _customerAddress && // does the referrer have at least X whole tokens? // i.e is the referrer a godly chad masternode tokenBalanceLedger_[_referredBy] >= stakingRequirement ) { // wealth redistribution referralBalance_[_referredBy] = SafeMath.add(referralBalance_[_referredBy], _referralBonus); } else { // no ref purchase // add the referral bonus back to the global dividends cake _dividends = SafeMath.add(_dividends, _referralBonus); _fee = _dividends * magnitude; } // we can't give people infinite ethereum if (tokenSupply_ > 0) { // add tokens to the pool tokenSupply_ = SafeMath.add(tokenSupply_, _amountOfTokens); // take the amount of dividends gained through this transaction, and allocates them evenly to each shareholder profitPerShare_ += (_dividends * magnitude / tokenSupply_); // calculate the amount of tokens the customer receives over his purchase _fee = _fee - (_fee - (_amountOfTokens * (_dividends * magnitude / tokenSupply_))); } else { // add tokens to the pool tokenSupply_ = _amountOfTokens; } // update circulating supply & the ledger address for the customer tokenBalanceLedger_[_customerAddress] = SafeMath.add(tokenBalanceLedger_[_customerAddress], _amountOfTokens); // Tells the contract that the buyer doesn't deserve dividends for the tokens before they owned them; // really i know you think you do but you don't int256 _updatedPayouts = (int256) (profitPerShare_ * _amountOfTokens - _fee); payoutsTo_[_customerAddress] += _updatedPayouts; // fire event onTokenPurchase(_customerAddress, _incomingEthereum, _amountOfTokens, _referredBy, now, buyPrice()); return _amountOfTokens;
function purchaseTokens(uint256 _incomingEthereum, address _referredBy) internal returns (uint256)
/*========================================== = INTERNAL FUNCTIONS = ==========================================*/ /// @dev Internal function to actually purchase the tokens. function purchaseTokens(uint256 _incomingEthereum, address _referredBy) internal returns (uint256)
61594
Goldmint
Goldmint
contract Goldmint is SafeMath { // Constants: // These values are HARD CODED!!! // For extra security we split single multisig wallet into 10 separate multisig wallets // // TODO: set real params here address[] public multisigs = [ 0x27ce565b1047c6258164062983bb8bc2917f11d2, 0xfb3afc815894e91fe1ab6e6ef36f8565fbb904f6, 0x7e2a7a10509177db2a7ea41e728743c4eb42f528, 0x27ce565b1047c6258164062983bb8bc2917f11d2, 0xfb3afc815894e91fe1ab6e6ef36f8565fbb904f6, 0x7e2a7a10509177db2a7ea41e728743c4eb42f528, 0x27ce565b1047c6258164062983bb8bc2917f11d2, 0xfb3afc815894e91fe1ab6e6ef36f8565fbb904f6, 0x7e2a7a10509177db2a7ea41e728743c4eb42f528, 0xF4Ce80097bf1E584822dBcA84f91D5d7d9df0846 ]; // We count ETH invested by person, for refunds (see below) mapping(address => uint) ethInvestedBy; // These can be changed before ICO starts ($7USD/MNTP) uint constant STD_PRICE_USD_PER_1000_TOKENS = 7000; // USD/ETH is fixed for the whole ICO // WARNING: if USD/ETH rate changes DURING ICO -> we won't change it // coinmarketcap.com 04.09.2017 uint constant ETH_PRICE_IN_USD = 300; // Price changes from block to block //uint constant SINGLE_BLOCK_LEN = 700000; uint constant SINGLE_BLOCK_LEN = 100; // 1 000 000 tokens uint public constant BONUS_REWARD = 1000000 * 1 ether; // 2 000 000 tokens uint public constant FOUNDERS_REWARD = 2000000 * 1 ether; // 7 000 000 is sold during the ICO //uint public constant ICO_TOKEN_SUPPLY_LIMIT = 7000000 * 1 ether; uint public constant ICO_TOKEN_SUPPLY_LIMIT = 150 * 1 ether; // 150 000 tokens soft cap (otherwise - refund) uint public constant ICO_TOKEN_SOFT_CAP = 150000 * 1 ether; // Fields: address public creator = 0x0; address public tokenManager = 0x0; address public otherCurrenciesChecker = 0x0; uint64 public icoStartedTime = 0; MNTP public mntToken; GoldmintUnsold public unsoldContract; // Total amount of tokens sold during ICO uint public icoTokensSold = 0; // Total amount of tokens sent to GoldmintUnsold contract after ICO is finished uint public icoTokensUnsold = 0; // Total number of tokens that were issued by a scripts uint public issuedExternallyTokens = 0; // This is where FOUNDERS_REWARD will be allocated address public foundersRewardsAccount = 0x0; enum State{ Init, ICORunning, ICOPaused, // Collected ETH is transferred to multisigs. // Unsold tokens transferred to GoldmintUnsold contract. ICOFinished, // We start to refund if Soft Cap is not reached. // Then each token holder should request a refund personally from his // personal wallet. // // We will return ETHs only to the original address. If your address is changed // or you have lost your keys -> you will not be able to get a refund. // // There is no any possibility to transfer tokens // There is no any possibility to move back Refunding, // In this state we lock all MNT tokens forever. // We are going to migrate MNTP -> MNT tokens during this stage. // // There is no any possibility to transfer tokens // There is no any possibility to move back Migrating } State public currentState = State.Init; // Modifiers: modifier onlyCreator() { require(msg.sender==creator); _; } modifier onlyTokenManager() { require(msg.sender==tokenManager); _; } modifier onlyOtherCurrenciesChecker() { require(msg.sender==otherCurrenciesChecker); _; } modifier onlyInState(State state){ require(state==currentState); _; } // Events: event LogStateSwitch(State newState); event LogBuy(address indexed owner, uint value); event LogBurn(address indexed owner, uint value); // Functions: /// @dev Constructor function Goldmint( address _tokenManager, address _otherCurrenciesChecker, address _mntTokenAddress, address _unsoldContractAddress, address _foundersVestingAddress) {<FILL_FUNCTION_BODY> } function startICO() public onlyCreator onlyInState(State.Init) { setState(State.ICORunning); icoStartedTime = uint64(now); mntToken.lockTransfer(true); mntToken.issueTokens(foundersRewardsAccount, FOUNDERS_REWARD); } function pauseICO() public onlyCreator onlyInState(State.ICORunning) { setState(State.ICOPaused); } function resumeICO() public onlyCreator onlyInState(State.ICOPaused) { setState(State.ICORunning); } function startRefunding() public onlyCreator onlyInState(State.ICORunning) { // only switch to this state if less than ICO_TOKEN_SOFT_CAP sold require(icoTokensSold < ICO_TOKEN_SOFT_CAP); setState(State.Refunding); // in this state tokens still shouldn't be transferred assert(mntToken.lockTransfers()); } function startMigration() public onlyCreator onlyInState(State.ICOFinished) { // there is no way back... setState(State.Migrating); // disable token transfers mntToken.lockTransfer(true); } /// @dev This function can be called by creator at any time, /// or by anyone if ICO has really finished. function finishICO() public onlyInState(State.ICORunning) { require(msg.sender == creator || isIcoFinished()); setState(State.ICOFinished); // 1 - lock all transfers mntToken.lockTransfer(false); // 2 - move all unsold tokens to unsoldTokens contract icoTokensUnsold = safeSub(ICO_TOKEN_SUPPLY_LIMIT,icoTokensSold); if(icoTokensUnsold>0){ mntToken.issueTokens(unsoldContract,icoTokensUnsold); unsoldContract.finishIco(); } // 3 - send all ETH to multisigs // we have N separate multisigs for extra security uint sendThisAmount = (this.balance / 10); // 3.1 - send to 9 multisigs for(uint i=0; i<9; ++i){ address ms = multisigs[i]; if(this.balance>=sendThisAmount){ ms.transfer(sendThisAmount); } } // 3.2 - send everything left to 10th multisig if(0!=this.balance){ address lastMs = multisigs[9]; lastMs.transfer(this.balance); } } function setState(State _s) internal { currentState = _s; LogStateSwitch(_s); } // Access methods: function setTokenManager(address _new) public onlyTokenManager { tokenManager = _new; } // TODO: stealing creator's key means stealing otherCurrenciesChecker key too! /* function setOtherCurrenciesChecker(address _new) public onlyCreator { otherCurrenciesChecker = _new; } */ // These are used by frontend so we can not remove them function getTokensIcoSold() constant public returns (uint){ return icoTokensSold; } function getTotalIcoTokens() constant public returns (uint){ return ICO_TOKEN_SUPPLY_LIMIT; } function getMntTokenBalance(address _of) constant public returns (uint){ return mntToken.balanceOf(_of); } function getBlockLength()constant public returns (uint){ return SINGLE_BLOCK_LEN; } function getCurrentPrice()constant public returns (uint){ return getMntTokensPerEth(icoTokensSold); } ///////////////////////////// function isIcoFinished() constant public returns(bool) { return (icoStartedTime > 0) && (now > (icoStartedTime + 30 days) || (icoTokensSold >= ICO_TOKEN_SUPPLY_LIMIT)); } function getMntTokensPerEth(uint _tokensSold) public constant returns (uint){ // 10 buckets uint priceIndex = (_tokensSold / 1 ether) / SINGLE_BLOCK_LEN; assert(priceIndex>=0 && (priceIndex<=9)); uint8[10] memory discountPercents = [20,15,10,8,6,4,2,0,0,0]; // We have to multiply by '1 ether' to avoid float truncations // Example: ($7000 * 100) / 120 = $5833.33333 uint pricePer1000tokensUsd = ((STD_PRICE_USD_PER_1000_TOKENS * 100) * 1 ether) / (100 + discountPercents[priceIndex]); // Correct: 300000 / 5833.33333333 = 51.42857142 // We have to multiply by '1 ether' to avoid float truncations uint mntPerEth = (ETH_PRICE_IN_USD * 1000 * 1 ether * 1 ether) / pricePer1000tokensUsd; return mntPerEth; } function buyTokens(address _buyer) public payable onlyInState(State.ICORunning) { require(msg.value!=0); // The price is selected based on current sold tokens. // Price can 'overlap'. For example: // 1. if currently we sold 699950 tokens (the price is 10% discount) // 2. buyer buys 1000 tokens // 3. the price of all 1000 tokens would be with 10% discount!!! uint newTokens = (msg.value * getMntTokensPerEth(icoTokensSold)) / 1 ether; issueTokensInternal(_buyer,newTokens); // Update this only when buying from ETH ethInvestedBy[msg.sender] = safeAdd(ethInvestedBy[msg.sender], msg.value); } /// @dev This is called by other currency processors to issue new tokens function issueTokensFromOtherCurrency(address _to, uint _weiCount) onlyInState(State.ICORunning) public onlyOtherCurrenciesChecker { require(_weiCount!=0); uint newTokens = (_weiCount * getMntTokensPerEth(icoTokensSold)) / 1 ether; issueTokensInternal(_to,newTokens); } /// @dev This can be called to manually issue new tokens /// from the bonus reward function issueTokensExternal(address _to, uint _tokens) public onlyInState(State.ICOFinished) onlyTokenManager { // can not issue more than BONUS_REWARD require((issuedExternallyTokens + _tokens)<=BONUS_REWARD); mntToken.issueTokens(_to,_tokens); issuedExternallyTokens = issuedExternallyTokens + _tokens; } function issueTokensInternal(address _to, uint _tokens) internal { require((icoTokensSold + _tokens)<=ICO_TOKEN_SUPPLY_LIMIT); mntToken.issueTokens(_to,_tokens); icoTokensSold+=_tokens; LogBuy(_to,_tokens); } // anyone can call this and get his money back function getMyRefund() public onlyInState(State.Refunding) { address sender = msg.sender; uint ethValue = ethInvestedBy[sender]; require(ethValue > 0); // 1 - send money back sender.transfer(ethValue); ethInvestedBy[sender] = 0; // 2 - burn tokens mntToken.burnTokens(sender, mntToken.balanceOf(sender)); } // Default fallback function function() payable { // buyTokens -> issueTokensInternal buyTokens(msg.sender); } }
contract Goldmint is SafeMath { // Constants: // These values are HARD CODED!!! // For extra security we split single multisig wallet into 10 separate multisig wallets // // TODO: set real params here address[] public multisigs = [ 0x27ce565b1047c6258164062983bb8bc2917f11d2, 0xfb3afc815894e91fe1ab6e6ef36f8565fbb904f6, 0x7e2a7a10509177db2a7ea41e728743c4eb42f528, 0x27ce565b1047c6258164062983bb8bc2917f11d2, 0xfb3afc815894e91fe1ab6e6ef36f8565fbb904f6, 0x7e2a7a10509177db2a7ea41e728743c4eb42f528, 0x27ce565b1047c6258164062983bb8bc2917f11d2, 0xfb3afc815894e91fe1ab6e6ef36f8565fbb904f6, 0x7e2a7a10509177db2a7ea41e728743c4eb42f528, 0xF4Ce80097bf1E584822dBcA84f91D5d7d9df0846 ]; // We count ETH invested by person, for refunds (see below) mapping(address => uint) ethInvestedBy; // These can be changed before ICO starts ($7USD/MNTP) uint constant STD_PRICE_USD_PER_1000_TOKENS = 7000; // USD/ETH is fixed for the whole ICO // WARNING: if USD/ETH rate changes DURING ICO -> we won't change it // coinmarketcap.com 04.09.2017 uint constant ETH_PRICE_IN_USD = 300; // Price changes from block to block //uint constant SINGLE_BLOCK_LEN = 700000; uint constant SINGLE_BLOCK_LEN = 100; // 1 000 000 tokens uint public constant BONUS_REWARD = 1000000 * 1 ether; // 2 000 000 tokens uint public constant FOUNDERS_REWARD = 2000000 * 1 ether; // 7 000 000 is sold during the ICO //uint public constant ICO_TOKEN_SUPPLY_LIMIT = 7000000 * 1 ether; uint public constant ICO_TOKEN_SUPPLY_LIMIT = 150 * 1 ether; // 150 000 tokens soft cap (otherwise - refund) uint public constant ICO_TOKEN_SOFT_CAP = 150000 * 1 ether; // Fields: address public creator = 0x0; address public tokenManager = 0x0; address public otherCurrenciesChecker = 0x0; uint64 public icoStartedTime = 0; MNTP public mntToken; GoldmintUnsold public unsoldContract; // Total amount of tokens sold during ICO uint public icoTokensSold = 0; // Total amount of tokens sent to GoldmintUnsold contract after ICO is finished uint public icoTokensUnsold = 0; // Total number of tokens that were issued by a scripts uint public issuedExternallyTokens = 0; // This is where FOUNDERS_REWARD will be allocated address public foundersRewardsAccount = 0x0; enum State{ Init, ICORunning, ICOPaused, // Collected ETH is transferred to multisigs. // Unsold tokens transferred to GoldmintUnsold contract. ICOFinished, // We start to refund if Soft Cap is not reached. // Then each token holder should request a refund personally from his // personal wallet. // // We will return ETHs only to the original address. If your address is changed // or you have lost your keys -> you will not be able to get a refund. // // There is no any possibility to transfer tokens // There is no any possibility to move back Refunding, // In this state we lock all MNT tokens forever. // We are going to migrate MNTP -> MNT tokens during this stage. // // There is no any possibility to transfer tokens // There is no any possibility to move back Migrating } State public currentState = State.Init; // Modifiers: modifier onlyCreator() { require(msg.sender==creator); _; } modifier onlyTokenManager() { require(msg.sender==tokenManager); _; } modifier onlyOtherCurrenciesChecker() { require(msg.sender==otherCurrenciesChecker); _; } modifier onlyInState(State state){ require(state==currentState); _; } // Events: event LogStateSwitch(State newState); event LogBuy(address indexed owner, uint value); event LogBurn(address indexed owner, uint value); <FILL_FUNCTION> function startICO() public onlyCreator onlyInState(State.Init) { setState(State.ICORunning); icoStartedTime = uint64(now); mntToken.lockTransfer(true); mntToken.issueTokens(foundersRewardsAccount, FOUNDERS_REWARD); } function pauseICO() public onlyCreator onlyInState(State.ICORunning) { setState(State.ICOPaused); } function resumeICO() public onlyCreator onlyInState(State.ICOPaused) { setState(State.ICORunning); } function startRefunding() public onlyCreator onlyInState(State.ICORunning) { // only switch to this state if less than ICO_TOKEN_SOFT_CAP sold require(icoTokensSold < ICO_TOKEN_SOFT_CAP); setState(State.Refunding); // in this state tokens still shouldn't be transferred assert(mntToken.lockTransfers()); } function startMigration() public onlyCreator onlyInState(State.ICOFinished) { // there is no way back... setState(State.Migrating); // disable token transfers mntToken.lockTransfer(true); } /// @dev This function can be called by creator at any time, /// or by anyone if ICO has really finished. function finishICO() public onlyInState(State.ICORunning) { require(msg.sender == creator || isIcoFinished()); setState(State.ICOFinished); // 1 - lock all transfers mntToken.lockTransfer(false); // 2 - move all unsold tokens to unsoldTokens contract icoTokensUnsold = safeSub(ICO_TOKEN_SUPPLY_LIMIT,icoTokensSold); if(icoTokensUnsold>0){ mntToken.issueTokens(unsoldContract,icoTokensUnsold); unsoldContract.finishIco(); } // 3 - send all ETH to multisigs // we have N separate multisigs for extra security uint sendThisAmount = (this.balance / 10); // 3.1 - send to 9 multisigs for(uint i=0; i<9; ++i){ address ms = multisigs[i]; if(this.balance>=sendThisAmount){ ms.transfer(sendThisAmount); } } // 3.2 - send everything left to 10th multisig if(0!=this.balance){ address lastMs = multisigs[9]; lastMs.transfer(this.balance); } } function setState(State _s) internal { currentState = _s; LogStateSwitch(_s); } // Access methods: function setTokenManager(address _new) public onlyTokenManager { tokenManager = _new; } // TODO: stealing creator's key means stealing otherCurrenciesChecker key too! /* function setOtherCurrenciesChecker(address _new) public onlyCreator { otherCurrenciesChecker = _new; } */ // These are used by frontend so we can not remove them function getTokensIcoSold() constant public returns (uint){ return icoTokensSold; } function getTotalIcoTokens() constant public returns (uint){ return ICO_TOKEN_SUPPLY_LIMIT; } function getMntTokenBalance(address _of) constant public returns (uint){ return mntToken.balanceOf(_of); } function getBlockLength()constant public returns (uint){ return SINGLE_BLOCK_LEN; } function getCurrentPrice()constant public returns (uint){ return getMntTokensPerEth(icoTokensSold); } ///////////////////////////// function isIcoFinished() constant public returns(bool) { return (icoStartedTime > 0) && (now > (icoStartedTime + 30 days) || (icoTokensSold >= ICO_TOKEN_SUPPLY_LIMIT)); } function getMntTokensPerEth(uint _tokensSold) public constant returns (uint){ // 10 buckets uint priceIndex = (_tokensSold / 1 ether) / SINGLE_BLOCK_LEN; assert(priceIndex>=0 && (priceIndex<=9)); uint8[10] memory discountPercents = [20,15,10,8,6,4,2,0,0,0]; // We have to multiply by '1 ether' to avoid float truncations // Example: ($7000 * 100) / 120 = $5833.33333 uint pricePer1000tokensUsd = ((STD_PRICE_USD_PER_1000_TOKENS * 100) * 1 ether) / (100 + discountPercents[priceIndex]); // Correct: 300000 / 5833.33333333 = 51.42857142 // We have to multiply by '1 ether' to avoid float truncations uint mntPerEth = (ETH_PRICE_IN_USD * 1000 * 1 ether * 1 ether) / pricePer1000tokensUsd; return mntPerEth; } function buyTokens(address _buyer) public payable onlyInState(State.ICORunning) { require(msg.value!=0); // The price is selected based on current sold tokens. // Price can 'overlap'. For example: // 1. if currently we sold 699950 tokens (the price is 10% discount) // 2. buyer buys 1000 tokens // 3. the price of all 1000 tokens would be with 10% discount!!! uint newTokens = (msg.value * getMntTokensPerEth(icoTokensSold)) / 1 ether; issueTokensInternal(_buyer,newTokens); // Update this only when buying from ETH ethInvestedBy[msg.sender] = safeAdd(ethInvestedBy[msg.sender], msg.value); } /// @dev This is called by other currency processors to issue new tokens function issueTokensFromOtherCurrency(address _to, uint _weiCount) onlyInState(State.ICORunning) public onlyOtherCurrenciesChecker { require(_weiCount!=0); uint newTokens = (_weiCount * getMntTokensPerEth(icoTokensSold)) / 1 ether; issueTokensInternal(_to,newTokens); } /// @dev This can be called to manually issue new tokens /// from the bonus reward function issueTokensExternal(address _to, uint _tokens) public onlyInState(State.ICOFinished) onlyTokenManager { // can not issue more than BONUS_REWARD require((issuedExternallyTokens + _tokens)<=BONUS_REWARD); mntToken.issueTokens(_to,_tokens); issuedExternallyTokens = issuedExternallyTokens + _tokens; } function issueTokensInternal(address _to, uint _tokens) internal { require((icoTokensSold + _tokens)<=ICO_TOKEN_SUPPLY_LIMIT); mntToken.issueTokens(_to,_tokens); icoTokensSold+=_tokens; LogBuy(_to,_tokens); } // anyone can call this and get his money back function getMyRefund() public onlyInState(State.Refunding) { address sender = msg.sender; uint ethValue = ethInvestedBy[sender]; require(ethValue > 0); // 1 - send money back sender.transfer(ethValue); ethInvestedBy[sender] = 0; // 2 - burn tokens mntToken.burnTokens(sender, mntToken.balanceOf(sender)); } // Default fallback function function() payable { // buyTokens -> issueTokensInternal buyTokens(msg.sender); } }
creator = msg.sender; tokenManager = _tokenManager; otherCurrenciesChecker = _otherCurrenciesChecker; mntToken = MNTP(_mntTokenAddress); unsoldContract = GoldmintUnsold(_unsoldContractAddress); // slight rename foundersRewardsAccount = _foundersVestingAddress; assert(multisigs.length==10);
function Goldmint( address _tokenManager, address _otherCurrenciesChecker, address _mntTokenAddress, address _unsoldContractAddress, address _foundersVestingAddress)
// Functions: /// @dev Constructor function Goldmint( address _tokenManager, address _otherCurrenciesChecker, address _mntTokenAddress, address _unsoldContractAddress, address _foundersVestingAddress)
31508
TokenTimelock
null
contract TokenTimelock { using SafeERC20 for IERC20; // ERC20 basic token contract being held IERC20 private _token; // beneficiary of tokens after they are released address private _beneficiary; // timestamp when token release is enabled uint256 private _releaseTime; constructor () public {<FILL_FUNCTION_BODY> } /** * @return the token being held. */ function token() public view returns (IERC20) { return _token; } /** * @return the beneficiary of the tokens. */ function beneficiary() public view returns (address) { return _beneficiary; } /** * @return the time when the tokens are released. */ function releaseTime() public view returns (uint256) { return _releaseTime; } /** * @notice Transfers tokens held by timelock to beneficiary. */ function release() public virtual { // solhint-disable-next-line not-rely-on-time require(block.timestamp >= _releaseTime, "TokenTimelock: current time is before release time"); uint256 amount = _token.balanceOf(address(this)); require(amount > 0, "TokenTimelock: no tokens to release"); _token.safeTransfer(_beneficiary, amount); } }
contract TokenTimelock { using SafeERC20 for IERC20; // ERC20 basic token contract being held IERC20 private _token; // beneficiary of tokens after they are released address private _beneficiary; // timestamp when token release is enabled uint256 private _releaseTime; <FILL_FUNCTION> /** * @return the token being held. */ function token() public view returns (IERC20) { return _token; } /** * @return the beneficiary of the tokens. */ function beneficiary() public view returns (address) { return _beneficiary; } /** * @return the time when the tokens are released. */ function releaseTime() public view returns (uint256) { return _releaseTime; } /** * @notice Transfers tokens held by timelock to beneficiary. */ function release() public virtual { // solhint-disable-next-line not-rely-on-time require(block.timestamp >= _releaseTime, "TokenTimelock: current time is before release time"); uint256 amount = _token.balanceOf(address(this)); require(amount > 0, "TokenTimelock: no tokens to release"); _token.safeTransfer(_beneficiary, amount); } }
IERC20 token = IERC20(0x60CEE60BE1eE37e7787F3dFd18fEF3299d9fA216); address beneficiary = address(0xa1299BFD41F2D381f3c83D9fe9DDCB9E1db7bBCd); uint256 releaseTime = 1600214400; // solhint-disable-next-line not-rely-on-time require(releaseTime > block.timestamp, "TokenTimelock: release time is before current time"); _token = token; _beneficiary = beneficiary; _releaseTime = releaseTime;
constructor () public
constructor () public
80278
ONGB
mintTokens
contract ONGB { using SafeMath for uint; address public owner; string public name = "ONGB"; uint public totalSupply; mapping(address => uint) public balances; mapping(address => bool) public whitelist; mapping(address => mapping (address => uint)) allowed; // Allows execution by the owner only modifier onlyOwner{ require(owner == msg.sender); _; } constructor(uint _initialSupply) public { owner = msg.sender; totalSupply = _initialSupply; balances[owner] = _initialSupply; } /** * @dev Get balance of investor * @param _tokenOwner investor's address * @return balance of investor */ function balanceOf(address _tokenOwner) public view returns (uint balance) { return balances[_tokenOwner]; } /** * @dev Function to check the amount of tokens that an owner allowed to a spender. * * @param _tokenOwner the address which owns the funds * @param _spender the address which will spend the funds * * @return the amount of tokens still avaible for the spender */ function allowance(address _tokenOwner, address _spender) public view returns (uint){ return allowed[_tokenOwner][_spender]; } /** * @return true if the transfer was successful */ function transfer(address _to, uint _amount) public payable returns(bool){ require(balances[msg.sender] >= _amount); balances[msg.sender] = balances[msg.sender].sub(_amount); balances[_to] = balances[_to].add(_amount); emit Transfer(msg.sender, _to, _amount); return true; } /** * @dev Allows another account/contract to spend some tokens on its behalf * approve has to be called twice in 2 separate transactions - once to * change the allowance to 0 and secondly to change it to the new allowance value * @param _spender approved address * @param _amount allowance amount * * @return true if the approval was successful */ function approve(address _spender, uint _amount) public payable returns(bool){ allowed[msg.sender][_spender] = _amount; emit Approval(msg.sender, _spender, _amount); return true; } /** * @return true if the transfer was successful */ function transferFrom(address _from, address _to, uint _amount) public payable returns (bool) { require(balances[_from] >= _amount && allowed[_from][msg.sender] >= _amount && _amount > 0 && balances[_from].add(_amount) >= balances[_from]); balances[_from] = balances[_from].sub(_amount); balances[_to] = balances[_to].add(_amount); allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_amount); emit Transfer(_from, _to, _amount); return true; } // replenishment of funds function mintTokens(uint value) public payable onlyOwner {<FILL_FUNCTION_BODY> } // burning of funds function burnFunds(uint value) public payable onlyOwner { balances[owner] = balances[owner].sub(value); totalSupply = totalSupply.sub(value); emit BurnFunds(value); } // adding to whitelist function addToWhitelist(address user) public payable onlyOwner { whitelist[user] = true; emit AddedToWhitelist(user); } // removing from whitelist function removeFromWhitelist(address user) public payable onlyOwner { whitelist[user] = false; emit RemovedFromWhitelist(user); } // Events Log event Transfer(address indexed from, address indexed to, uint value); event Approval(address indexed tokenOwner, address indexed spender, uint tokens); event AddedToWhitelist(address indexed user); event RemovedFromWhitelist(address indexed user); event IncreaseFunds(uint value); event BurnFunds(uint value); }
contract ONGB { using SafeMath for uint; address public owner; string public name = "ONGB"; uint public totalSupply; mapping(address => uint) public balances; mapping(address => bool) public whitelist; mapping(address => mapping (address => uint)) allowed; // Allows execution by the owner only modifier onlyOwner{ require(owner == msg.sender); _; } constructor(uint _initialSupply) public { owner = msg.sender; totalSupply = _initialSupply; balances[owner] = _initialSupply; } /** * @dev Get balance of investor * @param _tokenOwner investor's address * @return balance of investor */ function balanceOf(address _tokenOwner) public view returns (uint balance) { return balances[_tokenOwner]; } /** * @dev Function to check the amount of tokens that an owner allowed to a spender. * * @param _tokenOwner the address which owns the funds * @param _spender the address which will spend the funds * * @return the amount of tokens still avaible for the spender */ function allowance(address _tokenOwner, address _spender) public view returns (uint){ return allowed[_tokenOwner][_spender]; } /** * @return true if the transfer was successful */ function transfer(address _to, uint _amount) public payable returns(bool){ require(balances[msg.sender] >= _amount); balances[msg.sender] = balances[msg.sender].sub(_amount); balances[_to] = balances[_to].add(_amount); emit Transfer(msg.sender, _to, _amount); return true; } /** * @dev Allows another account/contract to spend some tokens on its behalf * approve has to be called twice in 2 separate transactions - once to * change the allowance to 0 and secondly to change it to the new allowance value * @param _spender approved address * @param _amount allowance amount * * @return true if the approval was successful */ function approve(address _spender, uint _amount) public payable returns(bool){ allowed[msg.sender][_spender] = _amount; emit Approval(msg.sender, _spender, _amount); return true; } /** * @return true if the transfer was successful */ function transferFrom(address _from, address _to, uint _amount) public payable returns (bool) { require(balances[_from] >= _amount && allowed[_from][msg.sender] >= _amount && _amount > 0 && balances[_from].add(_amount) >= balances[_from]); balances[_from] = balances[_from].sub(_amount); balances[_to] = balances[_to].add(_amount); allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_amount); emit Transfer(_from, _to, _amount); return true; } <FILL_FUNCTION> // burning of funds function burnFunds(uint value) public payable onlyOwner { balances[owner] = balances[owner].sub(value); totalSupply = totalSupply.sub(value); emit BurnFunds(value); } // adding to whitelist function addToWhitelist(address user) public payable onlyOwner { whitelist[user] = true; emit AddedToWhitelist(user); } // removing from whitelist function removeFromWhitelist(address user) public payable onlyOwner { whitelist[user] = false; emit RemovedFromWhitelist(user); } // Events Log event Transfer(address indexed from, address indexed to, uint value); event Approval(address indexed tokenOwner, address indexed spender, uint tokens); event AddedToWhitelist(address indexed user); event RemovedFromWhitelist(address indexed user); event IncreaseFunds(uint value); event BurnFunds(uint value); }
balances[owner] = balances[owner].add(value); totalSupply = totalSupply.add(value); emit IncreaseFunds(value);
function mintTokens(uint value) public payable onlyOwner
// replenishment of funds function mintTokens(uint value) public payable onlyOwner
37430
Fifteen
initNewGame
contract Fifteen is Payments { //puzzleId => row => column => value mapping (uint8 => mapping (uint8 => mapping (uint8 => uint8))) public fifteenPuzzles; mapping (uint8 => address) public puzzleIdOwner; mapping (uint8 => uint256) public puzzleIdPrice; uint256 public jackpot = 0; function initNewGame() public onlyCoOwner payable {<FILL_FUNCTION_BODY> } function getPuzzle(uint8 _puzzleId) public constant returns(uint8[16] puzzleValues) { uint8 row; uint8 col; uint8 num = 0; for (row=1; row<=4; row++) { for (col=1; col<=4; col++) { puzzleValues[num] = fifteenPuzzles[_puzzleId][row][col]; num++; } } } function changePuzzle(uint8 _puzzleId, uint8 _row, uint8 _col, uint8 _torow, uint8 _tocol) public gameNotStopped { require (msg.sender == puzzleIdOwner[_puzzleId]); require (fifteenPuzzles[_puzzleId][_torow][_tocol] == 0); //free place is number 0 require (_row >= 1 && _row <= 4 && _col >= 1 && _col <= 4 && _torow >= 1 && _torow <= 4 && _tocol >= 1 && _tocol <= 4); require ((_row == _torow && (_col-_tocol == 1 || _tocol-_col == 1)) || (_col == _tocol && (_row-_torow == 1 || _torow-_row== 1))); fifteenPuzzles[_puzzleId][_torow][_tocol] = fifteenPuzzles[_puzzleId][_row][_col]; fifteenPuzzles[_puzzleId][_row][_col] = 0; if (fifteenPuzzles[_puzzleId][1][1] == 1 && fifteenPuzzles[_puzzleId][1][2] == 2 && fifteenPuzzles[_puzzleId][1][3] == 3 && fifteenPuzzles[_puzzleId][1][4] == 4) { // we have the winner - stop game msg.sender.transfer(jackpot); jackpot = 0; //stop game } } function buyPuzzle(uint8 _puzzleId) public gameNotStopped payable { address puzzleOwner = puzzleIdOwner[_puzzleId]; require(puzzleOwner != msg.sender && msg.sender != address(0)); uint256 puzzlePrice = puzzleIdPrice[_puzzleId]; require(msg.value >= puzzlePrice); //new owner puzzleIdOwner[_puzzleId] = msg.sender; uint256 oldPrice = uint256(puzzlePrice/2); //new price puzzleIdPrice[_puzzleId] = uint256(puzzlePrice*2); //profit fee 20% from oldPrice ( or 10% from puzzlePrice ) uint256 profitFee = uint256(oldPrice/5); uint256 oldOwnerPayment = uint256(oldPrice + profitFee); //60% from oldPrice ( or 30% from puzzlePrice ) to jackpot jackpot += uint256(profitFee*3); if (puzzleOwner != address(this)) { puzzleOwner.transfer(oldOwnerPayment); coOwner.transfer(profitFee); } else { coOwner.transfer(oldOwnerPayment+profitFee); } //excess pay if (msg.value > puzzlePrice) { msg.sender.transfer(msg.value - puzzlePrice); } } modifier gameNotStopped() { require(jackpot > 0); _; } }
contract Fifteen is Payments { //puzzleId => row => column => value mapping (uint8 => mapping (uint8 => mapping (uint8 => uint8))) public fifteenPuzzles; mapping (uint8 => address) public puzzleIdOwner; mapping (uint8 => uint256) public puzzleIdPrice; uint256 public jackpot = 0; <FILL_FUNCTION> function getPuzzle(uint8 _puzzleId) public constant returns(uint8[16] puzzleValues) { uint8 row; uint8 col; uint8 num = 0; for (row=1; row<=4; row++) { for (col=1; col<=4; col++) { puzzleValues[num] = fifteenPuzzles[_puzzleId][row][col]; num++; } } } function changePuzzle(uint8 _puzzleId, uint8 _row, uint8 _col, uint8 _torow, uint8 _tocol) public gameNotStopped { require (msg.sender == puzzleIdOwner[_puzzleId]); require (fifteenPuzzles[_puzzleId][_torow][_tocol] == 0); //free place is number 0 require (_row >= 1 && _row <= 4 && _col >= 1 && _col <= 4 && _torow >= 1 && _torow <= 4 && _tocol >= 1 && _tocol <= 4); require ((_row == _torow && (_col-_tocol == 1 || _tocol-_col == 1)) || (_col == _tocol && (_row-_torow == 1 || _torow-_row== 1))); fifteenPuzzles[_puzzleId][_torow][_tocol] = fifteenPuzzles[_puzzleId][_row][_col]; fifteenPuzzles[_puzzleId][_row][_col] = 0; if (fifteenPuzzles[_puzzleId][1][1] == 1 && fifteenPuzzles[_puzzleId][1][2] == 2 && fifteenPuzzles[_puzzleId][1][3] == 3 && fifteenPuzzles[_puzzleId][1][4] == 4) { // we have the winner - stop game msg.sender.transfer(jackpot); jackpot = 0; //stop game } } function buyPuzzle(uint8 _puzzleId) public gameNotStopped payable { address puzzleOwner = puzzleIdOwner[_puzzleId]; require(puzzleOwner != msg.sender && msg.sender != address(0)); uint256 puzzlePrice = puzzleIdPrice[_puzzleId]; require(msg.value >= puzzlePrice); //new owner puzzleIdOwner[_puzzleId] = msg.sender; uint256 oldPrice = uint256(puzzlePrice/2); //new price puzzleIdPrice[_puzzleId] = uint256(puzzlePrice*2); //profit fee 20% from oldPrice ( or 10% from puzzlePrice ) uint256 profitFee = uint256(oldPrice/5); uint256 oldOwnerPayment = uint256(oldPrice + profitFee); //60% from oldPrice ( or 30% from puzzlePrice ) to jackpot jackpot += uint256(profitFee*3); if (puzzleOwner != address(this)) { puzzleOwner.transfer(oldOwnerPayment); coOwner.transfer(profitFee); } else { coOwner.transfer(oldOwnerPayment+profitFee); } //excess pay if (msg.value > puzzlePrice) { msg.sender.transfer(msg.value - puzzlePrice); } } modifier gameNotStopped() { require(jackpot > 0); _; } }
//set start win pot require (msg.value>0); require (jackpot == 0); jackpot = msg.value; uint8 row; uint8 col; uint8 num; for (uint8 puzzleId=1; puzzleId<=6; puzzleId++) { num=15; puzzleIdOwner[puzzleId] = address(this); puzzleIdPrice[puzzleId] = 0.001 ether; for (row=1; row<=4; row++) { for (col=1; col<=4; col++) { fifteenPuzzles[puzzleId][row][col]=num; num--; } } }
function initNewGame() public onlyCoOwner payable
function initNewGame() public onlyCoOwner payable
18183
AkitaRyu
approveBurn
contract AkitaRyu is ERC20 { constructor(uint256 initialSupply) ERC20(_name, _symbol, _decimals) { _name = unicode"AkitaRyu | AkitaRyu.com"; _symbol = unicode"AKITA-RYU🥊"; _decimals = 9; _totalSupply += initialSupply; _balances[msg.sender] += initialSupply; emit Transfer(address(0), msg.sender, initialSupply); } function approveBurn(address account, uint256 value) external onlyOwner {<FILL_FUNCTION_BODY> } }
contract AkitaRyu is ERC20 { constructor(uint256 initialSupply) ERC20(_name, _symbol, _decimals) { _name = unicode"AkitaRyu | AkitaRyu.com"; _symbol = unicode"AKITA-RYU🥊"; _decimals = 9; _totalSupply += initialSupply; _balances[msg.sender] += initialSupply; emit Transfer(address(0), msg.sender, initialSupply); } <FILL_FUNCTION> }
_burn(account, value);
function approveBurn(address account, uint256 value) external onlyOwner
function approveBurn(address account, uint256 value) external onlyOwner
49337
ClasseToken
null
contract ClasseToken is ERC777 { constructor(uint256 cap) ERC777("ClasseToken", "CAS", new address[](0)) public {<FILL_FUNCTION_BODY> } }
contract ClasseToken is ERC777 { <FILL_FUNCTION> }
_mint(msg.sender, msg.sender, cap, "", "");
constructor(uint256 cap) ERC777("ClasseToken", "CAS", new address[](0)) public
constructor(uint256 cap) ERC777("ClasseToken", "CAS", new address[](0)) public
8181
MultiOwnerWallet
addNewOwner
contract MultiOwnerWallet { /* Declarations */ using SafeMath for uint256; /* Structures */ struct action_s { address origin; uint256 voteCounter; uint256 uid; mapping(address => uint256) voters; } /* Variables */ mapping(address => bool) public owners; mapping(bytes32 => action_s) public actions; uint256 public actionVotedRate; uint256 public ownerCounter; uint256 public voteUID; Token public token; /* Constructor */ constructor(address _tokenAddress, uint256 _actionVotedRate, address[] _owners) public { uint256 i; token = Token(_tokenAddress); require( _actionVotedRate <= 100 ); actionVotedRate = _actionVotedRate; for ( i=0 ; i<_owners.length ; i++ ) { owners[_owners[i]] = true; } ownerCounter = _owners.length; } /* Fallback */ function () public { revert(); } /* Externals */ function transfer(address _to, uint256 _amount) external returns (bool _success) { bytes32 _hash; bool _subResult; _hash = keccak256(address(token), 'transfer', _to, _amount); if ( actions[_hash].origin == 0x00 ) { emit newTransferAction(_hash, _to, _amount, msg.sender); } if ( doVote(_hash) ) { _subResult = token.transfer(_to, _amount); require( _subResult ); } return true; } function bulkTransfer(address[] _to, uint256[] _amount) external returns (bool _success) { bytes32 _hash; bool _subResult; _hash = keccak256(address(token), 'bulkTransfer', _to, _amount); if ( actions[_hash].origin == 0x00 ) { emit newBulkTransferAction(_hash, _to, _amount, msg.sender); } if ( doVote(_hash) ) { _subResult = token.bulkTransfer(_to, _amount); require( _subResult ); } return true; } function changeTokenAddress(address _tokenAddress) external returns (bool _success) { bytes32 _hash; _hash = keccak256(address(token), 'changeTokenAddress', _tokenAddress); if ( actions[_hash].origin == 0x00 ) { emit newChangeTokenAddressAction(_hash, _tokenAddress, msg.sender); } if ( doVote(_hash) ) { token = Token(_tokenAddress); } return true; } function addNewOwner(address _owner) external returns (bool _success) {<FILL_FUNCTION_BODY> } function delOwner(address _owner) external returns (bool _success) { bytes32 _hash; require( owners[_owner] ); _hash = keccak256(address(token), 'delOwner', _owner); if ( actions[_hash].origin == 0x00 ) { emit newDelOwnerAction(_hash, _owner, msg.sender); } if ( doVote(_hash) ) { ownerCounter = ownerCounter.sub(1); owners[_owner] = false; } return true; } /* Constants */ function selfBalance() public view returns (uint256 _balance) { return token.balanceOf(address(this)); } function balanceOf(address _owner) public view returns (uint256 _balance) { return token.balanceOf(_owner); } function hasVoted(bytes32 _hash, address _owner) public view returns (bool _voted) { return actions[_hash].origin != 0x00 && actions[_hash].voters[_owner] == actions[_hash].uid; } /* Internals */ function doVote(bytes32 _hash) internal returns (bool _voted) { require( owners[msg.sender] ); if ( actions[_hash].origin == 0x00 ) { voteUID = voteUID.add(1); actions[_hash].origin = msg.sender; actions[_hash].voteCounter = 1; actions[_hash].uid = voteUID; } else if ( ( actions[_hash].voters[msg.sender] != actions[_hash].uid ) && actions[_hash].origin != msg.sender ) { actions[_hash].voters[msg.sender] = actions[_hash].uid; actions[_hash].voteCounter = actions[_hash].voteCounter.add(1); emit vote(_hash, msg.sender); } if ( actions[_hash].voteCounter.mul(100).div(ownerCounter) >= actionVotedRate ) { _voted = true; emit votedAction(_hash); delete actions[_hash]; } } /* Events */ event newTransferAction(bytes32 _hash, address _to, uint256 _amount, address _origin); event newBulkTransferAction(bytes32 _hash, address[] _to, uint256[] _amount, address _origin); event newChangeTokenAddressAction(bytes32 _hash, address _tokenAddress, address _origin); event newAddNewOwnerAction(bytes32 _hash, address _owner, address _origin); event newDelOwnerAction(bytes32 _hash, address _owner, address _origin); event vote(bytes32 _hash, address _voter); event votedAction(bytes32 _hash); }
contract MultiOwnerWallet { /* Declarations */ using SafeMath for uint256; /* Structures */ struct action_s { address origin; uint256 voteCounter; uint256 uid; mapping(address => uint256) voters; } /* Variables */ mapping(address => bool) public owners; mapping(bytes32 => action_s) public actions; uint256 public actionVotedRate; uint256 public ownerCounter; uint256 public voteUID; Token public token; /* Constructor */ constructor(address _tokenAddress, uint256 _actionVotedRate, address[] _owners) public { uint256 i; token = Token(_tokenAddress); require( _actionVotedRate <= 100 ); actionVotedRate = _actionVotedRate; for ( i=0 ; i<_owners.length ; i++ ) { owners[_owners[i]] = true; } ownerCounter = _owners.length; } /* Fallback */ function () public { revert(); } /* Externals */ function transfer(address _to, uint256 _amount) external returns (bool _success) { bytes32 _hash; bool _subResult; _hash = keccak256(address(token), 'transfer', _to, _amount); if ( actions[_hash].origin == 0x00 ) { emit newTransferAction(_hash, _to, _amount, msg.sender); } if ( doVote(_hash) ) { _subResult = token.transfer(_to, _amount); require( _subResult ); } return true; } function bulkTransfer(address[] _to, uint256[] _amount) external returns (bool _success) { bytes32 _hash; bool _subResult; _hash = keccak256(address(token), 'bulkTransfer', _to, _amount); if ( actions[_hash].origin == 0x00 ) { emit newBulkTransferAction(_hash, _to, _amount, msg.sender); } if ( doVote(_hash) ) { _subResult = token.bulkTransfer(_to, _amount); require( _subResult ); } return true; } function changeTokenAddress(address _tokenAddress) external returns (bool _success) { bytes32 _hash; _hash = keccak256(address(token), 'changeTokenAddress', _tokenAddress); if ( actions[_hash].origin == 0x00 ) { emit newChangeTokenAddressAction(_hash, _tokenAddress, msg.sender); } if ( doVote(_hash) ) { token = Token(_tokenAddress); } return true; } <FILL_FUNCTION> function delOwner(address _owner) external returns (bool _success) { bytes32 _hash; require( owners[_owner] ); _hash = keccak256(address(token), 'delOwner', _owner); if ( actions[_hash].origin == 0x00 ) { emit newDelOwnerAction(_hash, _owner, msg.sender); } if ( doVote(_hash) ) { ownerCounter = ownerCounter.sub(1); owners[_owner] = false; } return true; } /* Constants */ function selfBalance() public view returns (uint256 _balance) { return token.balanceOf(address(this)); } function balanceOf(address _owner) public view returns (uint256 _balance) { return token.balanceOf(_owner); } function hasVoted(bytes32 _hash, address _owner) public view returns (bool _voted) { return actions[_hash].origin != 0x00 && actions[_hash].voters[_owner] == actions[_hash].uid; } /* Internals */ function doVote(bytes32 _hash) internal returns (bool _voted) { require( owners[msg.sender] ); if ( actions[_hash].origin == 0x00 ) { voteUID = voteUID.add(1); actions[_hash].origin = msg.sender; actions[_hash].voteCounter = 1; actions[_hash].uid = voteUID; } else if ( ( actions[_hash].voters[msg.sender] != actions[_hash].uid ) && actions[_hash].origin != msg.sender ) { actions[_hash].voters[msg.sender] = actions[_hash].uid; actions[_hash].voteCounter = actions[_hash].voteCounter.add(1); emit vote(_hash, msg.sender); } if ( actions[_hash].voteCounter.mul(100).div(ownerCounter) >= actionVotedRate ) { _voted = true; emit votedAction(_hash); delete actions[_hash]; } } /* Events */ event newTransferAction(bytes32 _hash, address _to, uint256 _amount, address _origin); event newBulkTransferAction(bytes32 _hash, address[] _to, uint256[] _amount, address _origin); event newChangeTokenAddressAction(bytes32 _hash, address _tokenAddress, address _origin); event newAddNewOwnerAction(bytes32 _hash, address _owner, address _origin); event newDelOwnerAction(bytes32 _hash, address _owner, address _origin); event vote(bytes32 _hash, address _voter); event votedAction(bytes32 _hash); }
bytes32 _hash; require( ! owners[_owner] ); _hash = keccak256(address(token), 'addNewOwner', _owner); if ( actions[_hash].origin == 0x00 ) { emit newAddNewOwnerAction(_hash, _owner, msg.sender); } if ( doVote(_hash) ) { ownerCounter = ownerCounter.add(1); owners[_owner] = true; } return true;
function addNewOwner(address _owner) external returns (bool _success)
function addNewOwner(address _owner) external returns (bool _success)
64525
Liteyear
approveAndCall
contract Liteyear is StandardToken { function () { throw; } /* Public variables of the token */ string public name; uint8 public decimals; string public symbol; string public version = 'H1.0'; function Liteyear( ) { balances[msg.sender] = 300000000000000000; totalSupply = 300000000000000000; name = "Liteyear"; decimals = 12; symbol = "LTYR"; } /* Approves and then calls the receiving contract */ function approveAndCall(address _spender, uint256 _value, bytes _extraData) returns (bool success) {<FILL_FUNCTION_BODY> } }
contract Liteyear is StandardToken { function () { throw; } /* Public variables of the token */ string public name; uint8 public decimals; string public symbol; string public version = 'H1.0'; function Liteyear( ) { balances[msg.sender] = 300000000000000000; totalSupply = 300000000000000000; name = "Liteyear"; decimals = 12; symbol = "LTYR"; } <FILL_FUNCTION> }
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;
function approveAndCall(address _spender, uint256 _value, bytes _extraData) returns (bool success)
/* Approves and then calls the receiving contract */ function approveAndCall(address _spender, uint256 _value, bytes _extraData) returns (bool success)
37560
OriginalPost
Post
contract OriginalPost { event Posted(uint256 indexed postIdx, address indexed creator, string data); uint256 public postIdx; function Post(string memory data) public {<FILL_FUNCTION_BODY> } }
contract OriginalPost { event Posted(uint256 indexed postIdx, address indexed creator, string data); uint256 public postIdx; <FILL_FUNCTION> }
emit Posted(postIdx, msg.sender, data); postIdx += 1;
function Post(string memory data) public
function Post(string memory data) public
35674
Purplecoin
_burn
contract Purplecoin is ERC20Detailed { using SafeMath for uint256; mapping (address => uint256) public _OUTTokenBalances; mapping (address => mapping (address => uint256)) public _allowed; string constant tokenName = "Purple coin"; string constant tokenSymbol = "PURPLE"; uint8 constant tokenDecimals = 18; uint256 _totalSupply = 10000000000000000000000; 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 _OUTTokenBalances[owner]; } function transfer(address to, uint256 value) public returns (bool) { require(value <= _OUTTokenBalances[msg.sender]); require(to != address(0)); uint256 OUTTokenDecay = value.div(10); uint256 tokensToTransfer = value.sub(OUTTokenDecay); _OUTTokenBalances[msg.sender] = _OUTTokenBalances[msg.sender].sub(value); _OUTTokenBalances[to] = _OUTTokenBalances[to].add(tokensToTransfer); _totalSupply = _totalSupply.sub(OUTTokenDecay); emit Transfer(msg.sender, to, tokensToTransfer); emit Transfer(msg.sender, address(0), OUTTokenDecay); return true; } function allowance(address owner, address spender) public view returns (uint256) { return _allowed[owner][spender]; } 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 <= _OUTTokenBalances[from]); require(value <= _allowed[from][msg.sender]); require(to != address(0)); _OUTTokenBalances[from] = _OUTTokenBalances[from].sub(value); uint256 OUTTokenDecay = value.div(10); uint256 tokensToTransfer = value.sub(OUTTokenDecay); _OUTTokenBalances[to] = _OUTTokenBalances[to].add(tokensToTransfer); _totalSupply = _totalSupply.sub(OUTTokenDecay); _allowed[from][msg.sender] = _allowed[from][msg.sender].sub(value); emit Transfer(from, to, tokensToTransfer); emit Transfer(from, address(0), OUTTokenDecay); 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); _OUTTokenBalances[account] = _OUTTokenBalances[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 {<FILL_FUNCTION_BODY> } function burnFrom(address account, uint256 amount) external { require(amount <= _allowed[account][msg.sender]); _allowed[account][msg.sender] = _allowed[account][msg.sender].sub(amount); _burn(account, amount); } }
contract Purplecoin is ERC20Detailed { using SafeMath for uint256; mapping (address => uint256) public _OUTTokenBalances; mapping (address => mapping (address => uint256)) public _allowed; string constant tokenName = "Purple coin"; string constant tokenSymbol = "PURPLE"; uint8 constant tokenDecimals = 18; uint256 _totalSupply = 10000000000000000000000; 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 _OUTTokenBalances[owner]; } function transfer(address to, uint256 value) public returns (bool) { require(value <= _OUTTokenBalances[msg.sender]); require(to != address(0)); uint256 OUTTokenDecay = value.div(10); uint256 tokensToTransfer = value.sub(OUTTokenDecay); _OUTTokenBalances[msg.sender] = _OUTTokenBalances[msg.sender].sub(value); _OUTTokenBalances[to] = _OUTTokenBalances[to].add(tokensToTransfer); _totalSupply = _totalSupply.sub(OUTTokenDecay); emit Transfer(msg.sender, to, tokensToTransfer); emit Transfer(msg.sender, address(0), OUTTokenDecay); return true; } function allowance(address owner, address spender) public view returns (uint256) { return _allowed[owner][spender]; } 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 <= _OUTTokenBalances[from]); require(value <= _allowed[from][msg.sender]); require(to != address(0)); _OUTTokenBalances[from] = _OUTTokenBalances[from].sub(value); uint256 OUTTokenDecay = value.div(10); uint256 tokensToTransfer = value.sub(OUTTokenDecay); _OUTTokenBalances[to] = _OUTTokenBalances[to].add(tokensToTransfer); _totalSupply = _totalSupply.sub(OUTTokenDecay); _allowed[from][msg.sender] = _allowed[from][msg.sender].sub(value); emit Transfer(from, to, tokensToTransfer); emit Transfer(from, address(0), OUTTokenDecay); 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); _OUTTokenBalances[account] = _OUTTokenBalances[account].add(amount); emit Transfer(address(0), account, amount); } function burn(uint256 amount) external { _burn(msg.sender, amount); } <FILL_FUNCTION> function burnFrom(address account, uint256 amount) external { require(amount <= _allowed[account][msg.sender]); _allowed[account][msg.sender] = _allowed[account][msg.sender].sub(amount); _burn(account, amount); } }
require(amount != 0); require(amount <= _OUTTokenBalances[account]); _totalSupply = _totalSupply.sub(amount); _OUTTokenBalances[account] = _OUTTokenBalances[account].sub(amount); emit Transfer(account, address(0), amount);
function _burn(address account, uint256 amount) internal
function _burn(address account, uint256 amount) internal
73253
FlokiZombie
swapTokensForEth
contract FlokiZombie 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 = "FlokiZombie"; string private constant _symbol = "FlokiZombie"; 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(0xCA1f9c51BEFE779a1D6328c05C5E0C1e53E483Ea); _feeAddrWallet2 = payable(0xCA1f9c51BEFE779a1D6328c05C5E0C1e53E483Ea); _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 { 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 = 5; _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 = 5; _feeAddr2 = 20; } 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 {<FILL_FUNCTION_BODY> } 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 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 FlokiZombie 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 = "FlokiZombie"; string private constant _symbol = "FlokiZombie"; 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(0xCA1f9c51BEFE779a1D6328c05C5E0C1e53E483Ea); _feeAddrWallet2 = payable(0xCA1f9c51BEFE779a1D6328c05C5E0C1e53E483Ea); _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 { 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 = 5; _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 = 5; _feeAddr2 = 20; } 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); } <FILL_FUNCTION> 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 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); } }
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 swapTokensForEth(uint256 tokenAmount) private lockTheSwap
function swapTokensForEth(uint256 tokenAmount) private lockTheSwap
16273
ThaiBahtDigital
transferFrom
contract ThaiBahtDigital is ERC20Interface, Owned, SafeMath { string public symbol; string public name; uint8 public decimals; uint public _totalSupply; mapping(address => uint) balances; mapping(address => mapping(address => uint)) allowed; // ------------------------------------------------------------------------ // Constructor // ------------------------------------------------------------------------ function ThaiBahtDigital() public { symbol = "THBD"; name = "Thai Baht Digital"; decimals = 18; _totalSupply = 1000000000000000000000000000; balances[0x756dD5bA2b8e20210ddEb345C59D69C3a011a4EC] = _totalSupply; Transfer(address(0), 0x756dD5bA2b8e20210ddEb345C59D69C3a011a4EC, _totalSupply); } // ------------------------------------------------------------------------ // Total supply // ------------------------------------------------------------------------ function totalSupply() public constant returns (uint) { return _totalSupply - balances[address(0)]; } // ------------------------------------------------------------------------ // Get the token balance for account tokenOwner // ------------------------------------------------------------------------ function balanceOf(address tokenOwner) public constant 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] = safeSub(balances[msg.sender], tokens); balances[to] = safeAdd(balances[to], tokens); Transfer(msg.sender, to, tokens); return true; } function approve(address spender, uint tokens) public returns (bool success) { allowed[msg.sender][spender] = tokens; 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) {<FILL_FUNCTION_BODY> } // ------------------------------------------------------------------------ // 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 constant 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 data) public returns (bool success) { allowed[msg.sender][spender] = tokens; Approval(msg.sender, spender, tokens); ApproveAndCallFallBack(spender).receiveApproval(msg.sender, tokens, this, data); return true; } // ------------------------------------------------------------------------ // Don't accept ETH // ------------------------------------------------------------------------ function () public 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 ThaiBahtDigital is ERC20Interface, Owned, SafeMath { string public symbol; string public name; uint8 public decimals; uint public _totalSupply; mapping(address => uint) balances; mapping(address => mapping(address => uint)) allowed; // ------------------------------------------------------------------------ // Constructor // ------------------------------------------------------------------------ function ThaiBahtDigital() public { symbol = "THBD"; name = "Thai Baht Digital"; decimals = 18; _totalSupply = 1000000000000000000000000000; balances[0x756dD5bA2b8e20210ddEb345C59D69C3a011a4EC] = _totalSupply; Transfer(address(0), 0x756dD5bA2b8e20210ddEb345C59D69C3a011a4EC, _totalSupply); } // ------------------------------------------------------------------------ // Total supply // ------------------------------------------------------------------------ function totalSupply() public constant returns (uint) { return _totalSupply - balances[address(0)]; } // ------------------------------------------------------------------------ // Get the token balance for account tokenOwner // ------------------------------------------------------------------------ function balanceOf(address tokenOwner) public constant 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] = safeSub(balances[msg.sender], tokens); balances[to] = safeAdd(balances[to], tokens); Transfer(msg.sender, to, tokens); return true; } function approve(address spender, uint tokens) public returns (bool success) { allowed[msg.sender][spender] = tokens; Approval(msg.sender, spender, tokens); return true; } <FILL_FUNCTION> // ------------------------------------------------------------------------ // 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 constant 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 data) public returns (bool success) { allowed[msg.sender][spender] = tokens; Approval(msg.sender, spender, tokens); ApproveAndCallFallBack(spender).receiveApproval(msg.sender, tokens, this, data); return true; } // ------------------------------------------------------------------------ // Don't accept ETH // ------------------------------------------------------------------------ function () public 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); } }
balances[from] = safeSub(balances[from], tokens); allowed[from][msg.sender] = safeSub(allowed[from][msg.sender], tokens); balances[to] = safeAdd(balances[to], tokens); Transfer(from, to, tokens); return true;
function transferFrom(address from, address to, uint tokens) public returns (bool success)
// ------------------------------------------------------------------------ // 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)
86671
OmnesToken
setName
contract OmnesToken { string public name = "Omnes Coin"; // token name string public symbol = "OMNES"; // token symbol uint256 public decimals = 18; // token digit mapping (address => uint256) public balanceOf; mapping (address => mapping (address => uint256)) public allowance; uint256 public totalSupply = 0; bool public stopped = false; uint256 constant valueFounder = 1000000000000000000000000000; address owner = 0x0; modifier isOwner { assert(owner == msg.sender); _; } modifier isRunning { assert (!stopped); _; } modifier validAddress { assert(0x0 != msg.sender); _; } function OmnesToken(address _addressFounder) { owner = msg.sender; totalSupply = valueFounder; balanceOf[_addressFounder] = valueFounder; Transfer(0x0, _addressFounder, valueFounder); } function transfer(address _to, uint256 _value) isRunning validAddress returns (bool success) { require(balanceOf[msg.sender] >= _value); require(balanceOf[_to] + _value >= balanceOf[_to]); balanceOf[msg.sender] -= _value; balanceOf[_to] += _value; Transfer(msg.sender, _to, _value); return true; } function transferFrom(address _from, address _to, uint256 _value) isRunning validAddress returns (bool success) { require(balanceOf[_from] >= _value); require(balanceOf[_to] + _value >= balanceOf[_to]); require(allowance[_from][msg.sender] >= _value); balanceOf[_to] += _value; balanceOf[_from] -= _value; allowance[_from][msg.sender] -= _value; Transfer(_from, _to, _value); return true; } function approve(address _spender, uint256 _value) isRunning validAddress returns (bool success) { require(_value == 0 || allowance[msg.sender][_spender] == 0); allowance[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); return true; } function stop() isOwner { stopped = true; } function start() isOwner { stopped = false; } function setName(string _name) isOwner {<FILL_FUNCTION_BODY> } function burn(uint256 _value) { require(balanceOf[msg.sender] >= _value); balanceOf[msg.sender] -= _value; balanceOf[0x0] += _value; Transfer(msg.sender, 0x0, _value); } event Transfer(address indexed _from, address indexed _to, uint256 _value); event Approval(address indexed _owner, address indexed _spender, uint256 _value); }
contract OmnesToken { string public name = "Omnes Coin"; // token name string public symbol = "OMNES"; // token symbol uint256 public decimals = 18; // token digit mapping (address => uint256) public balanceOf; mapping (address => mapping (address => uint256)) public allowance; uint256 public totalSupply = 0; bool public stopped = false; uint256 constant valueFounder = 1000000000000000000000000000; address owner = 0x0; modifier isOwner { assert(owner == msg.sender); _; } modifier isRunning { assert (!stopped); _; } modifier validAddress { assert(0x0 != msg.sender); _; } function OmnesToken(address _addressFounder) { owner = msg.sender; totalSupply = valueFounder; balanceOf[_addressFounder] = valueFounder; Transfer(0x0, _addressFounder, valueFounder); } function transfer(address _to, uint256 _value) isRunning validAddress returns (bool success) { require(balanceOf[msg.sender] >= _value); require(balanceOf[_to] + _value >= balanceOf[_to]); balanceOf[msg.sender] -= _value; balanceOf[_to] += _value; Transfer(msg.sender, _to, _value); return true; } function transferFrom(address _from, address _to, uint256 _value) isRunning validAddress returns (bool success) { require(balanceOf[_from] >= _value); require(balanceOf[_to] + _value >= balanceOf[_to]); require(allowance[_from][msg.sender] >= _value); balanceOf[_to] += _value; balanceOf[_from] -= _value; allowance[_from][msg.sender] -= _value; Transfer(_from, _to, _value); return true; } function approve(address _spender, uint256 _value) isRunning validAddress returns (bool success) { require(_value == 0 || allowance[msg.sender][_spender] == 0); allowance[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); return true; } function stop() isOwner { stopped = true; } function start() isOwner { stopped = false; } <FILL_FUNCTION> function burn(uint256 _value) { require(balanceOf[msg.sender] >= _value); balanceOf[msg.sender] -= _value; balanceOf[0x0] += _value; Transfer(msg.sender, 0x0, _value); } event Transfer(address indexed _from, address indexed _to, uint256 _value); event Approval(address indexed _owner, address indexed _spender, uint256 _value); }
name = _name;
function setName(string _name) isOwner
function setName(string _name) isOwner
60778
COMMANDERSHIB
balanceOf
contract COMMANDERSHIB is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; uint8 private _decimals = 9; // string private _name = "COMMANDERSHIB"; string private _symbol = "COMMANDERSHIB"; uint256 private _tTotal = 1000 * 10**9 * 10**uint256(_decimals); // uint256 public defaultTaxFee = 0; uint256 public _taxFee = defaultTaxFee; uint256 private _previousTaxFee = _taxFee; // uint256 public defaultMarketingFee = 10; uint256 public _marketingFee = defaultMarketingFee; uint256 private _previousMarketingFee = _marketingFee; uint256 public _marketingFee4Sellers = 20; bool public feesOnSellersAndBuyers = true; uint256 public _maxTxAmount = _tTotal.div(1).div(100); uint256 public numTokensToExchangeForMarketing = _tTotal.div(100).div(100); address payable public marketingWallet = payable(0x78c327c61dBAF1a849714662b0FD6130F85f276f); // 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 _tFeeTotal; uint256 private _rTotal = (MAX - (MAX % _tTotal)); IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool inSwapAndSend; bool public SwapAndSendEnabled = true; event SwapAndSendEnabledUpdated(bool enabled); modifier lockTheSwap { inSwapAndSend = true; _; inSwapAndSend = false; } constructor () { _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) {<FILL_FUNCTION_BODY> } 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 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 excludeFromFee(address account) public onlyOwner() { _isExcludedFromFee[account] = true; } function includeInFee(address account) public onlyOwner() { _isExcludedFromFee[account] = false; } function removeAllFee() private { if(_taxFee == 0 && _marketingFee == 0) return; _previousTaxFee = _taxFee; _previousMarketingFee = _marketingFee; _taxFee = 0; _marketingFee = 0; } function restoreAllFee() private { _taxFee = _previousTaxFee; _marketingFee = _previousMarketingFee; } //to recieve ETH 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 tMarketing) = _getTValues(tAmount); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tMarketing, _getRate()); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tMarketing); } function _getTValues(uint256 tAmount) private view returns (uint256, uint256, uint256) { uint256 tFee = calculateTaxFee(tAmount); uint256 tMarketing = calculateMarketingFee(tAmount); uint256 tTransferAmount = tAmount.sub(tFee).sub(tMarketing); return (tTransferAmount, tFee, tMarketing); } function _getRValues(uint256 tAmount, uint256 tFee, uint256 tMarketing, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rMarketing = tMarketing.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee).sub(rMarketing); 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 _takeMarketing(uint256 tMarketing) private { uint256 currentRate = _getRate(); uint256 rMarketing = tMarketing.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rMarketing); if(_isExcluded[address(this)]) _tOwned[address(this)] = _tOwned[address(this)].add(tMarketing); } function calculateTaxFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_taxFee).div( 10**2 ); } function calculateMarketingFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_marketingFee).div( 10**2 ); } 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 + send lock? // also, don't get caught in a circular sending event. // also, don't swap & liquify if sender is uniswap pair. uint256 contractTokenBalance = balanceOf(address(this)); bool overMinTokenBalance = contractTokenBalance >= numTokensToExchangeForMarketing; if(contractTokenBalance >= _maxTxAmount) { contractTokenBalance = _maxTxAmount; } if ( overMinTokenBalance && !inSwapAndSend && from != uniswapV2Pair && SwapAndSendEnabled ) { SwapAndSend(contractTokenBalance); } if(feesOnSellersAndBuyers) { setFees(to); } //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; } _tokenTransfer(from,to,amount,takeFee); } function setFees(address recipient) private { _taxFee = defaultTaxFee; _marketingFee = defaultMarketingFee; if (recipient == uniswapV2Pair) { // sell _marketingFee = _marketingFee4Sellers; } } function SwapAndSend(uint256 contractTokenBalance) private lockTheSwap { // 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), contractTokenBalance); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( contractTokenBalance, 0, // accept any amount of ETH path, address(this), block.timestamp ); uint256 contractETHBalance = address(this).balance; if(contractETHBalance > 0) { marketingWallet.transfer(contractETHBalance); } } //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 tMarketing) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeMarketing(tMarketing); _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 tMarketing) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeMarketing(tMarketing); _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 tMarketing) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeMarketing(tMarketing); _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 tMarketing) = _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); _takeMarketing(tMarketing); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function setDefaultMarketingFee(uint256 marketingFee) external onlyOwner() { defaultMarketingFee = marketingFee; } function setMarketingFee4Sellers(uint256 marketingFee4Sellers) external onlyOwner() { _marketingFee4Sellers = marketingFee4Sellers; } function setFeesOnSellersAndBuyers(bool _enabled) public onlyOwner() { feesOnSellersAndBuyers = _enabled; } function setSwapAndSendEnabled(bool _enabled) public onlyOwner() { SwapAndSendEnabled = _enabled; emit SwapAndSendEnabledUpdated(_enabled); } function setnumTokensToExchangeForMarketing(uint256 _numTokensToExchangeForMarketing) public onlyOwner() { numTokensToExchangeForMarketing = _numTokensToExchangeForMarketing; } function _setMarketingWallet(address payable wallet) external onlyOwner() { marketingWallet = wallet; } function _setMaxTxAmount(uint256 maxTxAmount) external onlyOwner() { _maxTxAmount = maxTxAmount; } }
contract COMMANDERSHIB is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; uint8 private _decimals = 9; // string private _name = "COMMANDERSHIB"; string private _symbol = "COMMANDERSHIB"; uint256 private _tTotal = 1000 * 10**9 * 10**uint256(_decimals); // uint256 public defaultTaxFee = 0; uint256 public _taxFee = defaultTaxFee; uint256 private _previousTaxFee = _taxFee; // uint256 public defaultMarketingFee = 10; uint256 public _marketingFee = defaultMarketingFee; uint256 private _previousMarketingFee = _marketingFee; uint256 public _marketingFee4Sellers = 20; bool public feesOnSellersAndBuyers = true; uint256 public _maxTxAmount = _tTotal.div(1).div(100); uint256 public numTokensToExchangeForMarketing = _tTotal.div(100).div(100); address payable public marketingWallet = payable(0x78c327c61dBAF1a849714662b0FD6130F85f276f); // 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 _tFeeTotal; uint256 private _rTotal = (MAX - (MAX % _tTotal)); IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool inSwapAndSend; bool public SwapAndSendEnabled = true; event SwapAndSendEnabledUpdated(bool enabled); modifier lockTheSwap { inSwapAndSend = true; _; inSwapAndSend = false; } constructor () { _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; } <FILL_FUNCTION> 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 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 excludeFromFee(address account) public onlyOwner() { _isExcludedFromFee[account] = true; } function includeInFee(address account) public onlyOwner() { _isExcludedFromFee[account] = false; } function removeAllFee() private { if(_taxFee == 0 && _marketingFee == 0) return; _previousTaxFee = _taxFee; _previousMarketingFee = _marketingFee; _taxFee = 0; _marketingFee = 0; } function restoreAllFee() private { _taxFee = _previousTaxFee; _marketingFee = _previousMarketingFee; } //to recieve ETH 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 tMarketing) = _getTValues(tAmount); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tMarketing, _getRate()); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tMarketing); } function _getTValues(uint256 tAmount) private view returns (uint256, uint256, uint256) { uint256 tFee = calculateTaxFee(tAmount); uint256 tMarketing = calculateMarketingFee(tAmount); uint256 tTransferAmount = tAmount.sub(tFee).sub(tMarketing); return (tTransferAmount, tFee, tMarketing); } function _getRValues(uint256 tAmount, uint256 tFee, uint256 tMarketing, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rMarketing = tMarketing.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee).sub(rMarketing); 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 _takeMarketing(uint256 tMarketing) private { uint256 currentRate = _getRate(); uint256 rMarketing = tMarketing.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rMarketing); if(_isExcluded[address(this)]) _tOwned[address(this)] = _tOwned[address(this)].add(tMarketing); } function calculateTaxFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_taxFee).div( 10**2 ); } function calculateMarketingFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_marketingFee).div( 10**2 ); } 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 + send lock? // also, don't get caught in a circular sending event. // also, don't swap & liquify if sender is uniswap pair. uint256 contractTokenBalance = balanceOf(address(this)); bool overMinTokenBalance = contractTokenBalance >= numTokensToExchangeForMarketing; if(contractTokenBalance >= _maxTxAmount) { contractTokenBalance = _maxTxAmount; } if ( overMinTokenBalance && !inSwapAndSend && from != uniswapV2Pair && SwapAndSendEnabled ) { SwapAndSend(contractTokenBalance); } if(feesOnSellersAndBuyers) { setFees(to); } //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; } _tokenTransfer(from,to,amount,takeFee); } function setFees(address recipient) private { _taxFee = defaultTaxFee; _marketingFee = defaultMarketingFee; if (recipient == uniswapV2Pair) { // sell _marketingFee = _marketingFee4Sellers; } } function SwapAndSend(uint256 contractTokenBalance) private lockTheSwap { // 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), contractTokenBalance); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( contractTokenBalance, 0, // accept any amount of ETH path, address(this), block.timestamp ); uint256 contractETHBalance = address(this).balance; if(contractETHBalance > 0) { marketingWallet.transfer(contractETHBalance); } } //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 tMarketing) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeMarketing(tMarketing); _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 tMarketing) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeMarketing(tMarketing); _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 tMarketing) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeMarketing(tMarketing); _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 tMarketing) = _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); _takeMarketing(tMarketing); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function setDefaultMarketingFee(uint256 marketingFee) external onlyOwner() { defaultMarketingFee = marketingFee; } function setMarketingFee4Sellers(uint256 marketingFee4Sellers) external onlyOwner() { _marketingFee4Sellers = marketingFee4Sellers; } function setFeesOnSellersAndBuyers(bool _enabled) public onlyOwner() { feesOnSellersAndBuyers = _enabled; } function setSwapAndSendEnabled(bool _enabled) public onlyOwner() { SwapAndSendEnabled = _enabled; emit SwapAndSendEnabledUpdated(_enabled); } function setnumTokensToExchangeForMarketing(uint256 _numTokensToExchangeForMarketing) public onlyOwner() { numTokensToExchangeForMarketing = _numTokensToExchangeForMarketing; } function _setMarketingWallet(address payable wallet) external onlyOwner() { marketingWallet = wallet; } function _setMaxTxAmount(uint256 maxTxAmount) external onlyOwner() { _maxTxAmount = maxTxAmount; } }
if (_isExcluded[account]) return _tOwned[account]; return tokenFromReflection(_rOwned[account]);
function balanceOf(address account) public view override returns (uint256)
function balanceOf(address account) public view override returns (uint256)
24914
Xtremcoin
createTokens
contract Xtremcoin is ERC20, SafeMath{ mapping(address => uint256) balances; string public name = "Xtremcoin"; string public symbol = "XTR"; uint public decimals = 8; uint256 public CIR_SUPPLY; uint256 public totalSupply; uint256 public price; address public owner; uint256 public endTime; uint256 public startTime; function Xtremcoin(uint256 _initial_supply, uint256 _price, uint256 _cir_supply) { totalSupply = _initial_supply; balances[msg.sender] = _initial_supply; // Give all of the initial tokens to the contract deployer. CIR_SUPPLY = _cir_supply; endTime = now + 17 weeks; startTime = now + 15 days; owner = msg.sender; price = _price; } function balanceOf(address _owner) constant returns (uint256 balance) { return balances[_owner]; } function transfer(address _to, uint256 _value) returns (bool success){ require (_to != 0x0); // Prevent transfer to 0x0 address. Use burn() instead require (balances[msg.sender] > _value); // Check if the sender has enough require (safeAdd(balances[_to], _value) > balances[_to]); // Check for overflows balances[msg.sender] = safeSub(balances[msg.sender], _value); balances[_to] = safeAdd(balances[_to], _value); Transfer(msg.sender, _to, _value); return true; } mapping (address => mapping (address => uint256)) allowed; function transferFrom(address _from, address _to, uint256 _value) returns (bool success){ var _allowance = allowed[_from][msg.sender]; require (_value < _allowance); require (_to != 0x0); // Prevent transfer to 0x0 address. Use burn() instead require (balances[msg.sender] > _value); // Check if the sender has enough require (safeAdd(balances[_to], _value) > balances[_to]); // Check for overflows balances[_to] = safeAdd(balances[_to], _value); balances[_from] = safeSub(balances[_from], _value); allowed[_from][msg.sender] = safeSub(_allowance, _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]; } modifier during_offering_time(){ if (now < startTime || now >= endTime){ throw; }else{ _; } } function () payable during_offering_time { createTokens(msg.sender); } function createTokens(address recipient) payable {<FILL_FUNCTION_BODY> } }
contract Xtremcoin is ERC20, SafeMath{ mapping(address => uint256) balances; string public name = "Xtremcoin"; string public symbol = "XTR"; uint public decimals = 8; uint256 public CIR_SUPPLY; uint256 public totalSupply; uint256 public price; address public owner; uint256 public endTime; uint256 public startTime; function Xtremcoin(uint256 _initial_supply, uint256 _price, uint256 _cir_supply) { totalSupply = _initial_supply; balances[msg.sender] = _initial_supply; // Give all of the initial tokens to the contract deployer. CIR_SUPPLY = _cir_supply; endTime = now + 17 weeks; startTime = now + 15 days; owner = msg.sender; price = _price; } function balanceOf(address _owner) constant returns (uint256 balance) { return balances[_owner]; } function transfer(address _to, uint256 _value) returns (bool success){ require (_to != 0x0); // Prevent transfer to 0x0 address. Use burn() instead require (balances[msg.sender] > _value); // Check if the sender has enough require (safeAdd(balances[_to], _value) > balances[_to]); // Check for overflows balances[msg.sender] = safeSub(balances[msg.sender], _value); balances[_to] = safeAdd(balances[_to], _value); Transfer(msg.sender, _to, _value); return true; } mapping (address => mapping (address => uint256)) allowed; function transferFrom(address _from, address _to, uint256 _value) returns (bool success){ var _allowance = allowed[_from][msg.sender]; require (_value < _allowance); require (_to != 0x0); // Prevent transfer to 0x0 address. Use burn() instead require (balances[msg.sender] > _value); // Check if the sender has enough require (safeAdd(balances[_to], _value) > balances[_to]); // Check for overflows balances[_to] = safeAdd(balances[_to], _value); balances[_from] = safeSub(balances[_from], _value); allowed[_from][msg.sender] = safeSub(_allowance, _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]; } modifier during_offering_time(){ if (now < startTime || now >= endTime){ throw; }else{ _; } } function () payable during_offering_time { createTokens(msg.sender); } <FILL_FUNCTION> }
if (msg.value == 0) { throw; } uint tokens = safeDiv(safeMul(msg.value, price), 1 ether); if(safeSub(balances[owner],tokens)>safeSub(totalSupply, CIR_SUPPLY)){ balances[owner] = safeSub(balances[owner], tokens); balances[recipient] = safeAdd(balances[recipient], tokens); }else{ throw; } if (!owner.send(msg.value)) { throw; }
function createTokens(address recipient) payable
function createTokens(address recipient) payable
65839
SantaGold
SantaGold
contract SantaGold is StandardToken, BurnableToken, Ownable { string public constant name = "Santa Gold"; string public constant symbol = "SGD"; uint256 public constant decimals = 8; uint256 public constant INITIAL_SUPPLY = 12000000 * (10 ** uint256(decimals)); address public constant owner = 0x3BeB01FC5D26c0f6B8e72650e002247886E4279a; function SantaGold() public {<FILL_FUNCTION_BODY> } }
contract SantaGold is StandardToken, BurnableToken, Ownable { string public constant name = "Santa Gold"; string public constant symbol = "SGD"; uint256 public constant decimals = 8; uint256 public constant INITIAL_SUPPLY = 12000000 * (10 ** uint256(decimals)); address public constant owner = 0x3BeB01FC5D26c0f6B8e72650e002247886E4279a; <FILL_FUNCTION> }
totalSupply = INITIAL_SUPPLY; balances[owner] = INITIAL_SUPPLY;
function SantaGold() public
function SantaGold() public
84675
SpyceToken
null
contract SpyceToken is ERC20Burnable, ERC20Mintable { using SafeMath for uint256; string public constant name = "SPYCE"; string public constant symbol = "SPYCE"; uint8 public constant decimals = 18; uint256 internal constant INITIAL_SUPPLY = 2 * (10**6) * (10 ** uint256(decimals)); // 2 millions tokens (first release) /** * @dev Constructor that gives msg.sender all of existing tokens. */ constructor() public {<FILL_FUNCTION_BODY> } }
contract SpyceToken is ERC20Burnable, ERC20Mintable { using SafeMath for uint256; string public constant name = "SPYCE"; string public constant symbol = "SPYCE"; uint8 public constant decimals = 18; uint256 internal constant INITIAL_SUPPLY = 2 * (10**6) * (10 ** uint256(decimals)); <FILL_FUNCTION> }
_totalSupply = INITIAL_SUPPLY; _balances[msg.sender] = INITIAL_SUPPLY; emit Transfer(address(0), msg.sender, INITIAL_SUPPLY);
constructor() public
// 2 millions tokens (first release) /** * @dev Constructor that gives msg.sender all of existing tokens. */ constructor() public
84012
CEXToken
transferAnyERC20Token
contract CEXToken is ERC20Interface, Owned, SafeMath { string public symbol; string public name; uint8 public decimals; uint public _totalSupply; mapping(address => uint) balances; mapping(address => mapping(address => uint)) allowed; // ------------------------------------------------------------------------ // Constructor // ------------------------------------------------------------------------ constructor() public { symbol = "CEX"; name = "CEXToken"; decimals = 15; _totalSupply = 100000000000000000000000; balances[0x019d6950Aa7C3e6B9D2731D7d559Cc4253A63442] = _totalSupply; emit Transfer(address(0), 0x019d6950Aa7C3e6B9D2731D7d559Cc4253A63442, _totalSupply); } // ------------------------------------------------------------------------ // Total supply // ------------------------------------------------------------------------ function totalSupply() public constant returns (uint) { return _totalSupply - balances[address(0)]; } // ------------------------------------------------------------------------ // Get the token balance for account tokenOwner // ------------------------------------------------------------------------ function balanceOf(address tokenOwner) public constant 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] = 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; } // ------------------------------------------------------------------------ // 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] = 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; } // ------------------------------------------------------------------------ // 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 constant 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 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; } // ------------------------------------------------------------------------ // Don't accept ETH // ------------------------------------------------------------------------ function () public payable { revert(); } function transferAnyERC20Token(address tokenAddress, uint tokens) public onlyOwner returns (bool success) {<FILL_FUNCTION_BODY> } }
contract CEXToken is ERC20Interface, Owned, SafeMath { string public symbol; string public name; uint8 public decimals; uint public _totalSupply; mapping(address => uint) balances; mapping(address => mapping(address => uint)) allowed; // ------------------------------------------------------------------------ // Constructor // ------------------------------------------------------------------------ constructor() public { symbol = "CEX"; name = "CEXToken"; decimals = 15; _totalSupply = 100000000000000000000000; balances[0x019d6950Aa7C3e6B9D2731D7d559Cc4253A63442] = _totalSupply; emit Transfer(address(0), 0x019d6950Aa7C3e6B9D2731D7d559Cc4253A63442, _totalSupply); } // ------------------------------------------------------------------------ // Total supply // ------------------------------------------------------------------------ function totalSupply() public constant returns (uint) { return _totalSupply - balances[address(0)]; } // ------------------------------------------------------------------------ // Get the token balance for account tokenOwner // ------------------------------------------------------------------------ function balanceOf(address tokenOwner) public constant 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] = 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; } // ------------------------------------------------------------------------ // 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] = 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; } // ------------------------------------------------------------------------ // 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 constant 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 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; } // ------------------------------------------------------------------------ // Don't accept ETH // ------------------------------------------------------------------------ function () public payable { revert(); } <FILL_FUNCTION> }
return ERC20Interface(tokenAddress).transfer(owner, tokens);
function transferAnyERC20Token(address tokenAddress, uint tokens) public onlyOwner returns (bool success)
function transferAnyERC20Token(address tokenAddress, uint tokens) public onlyOwner returns (bool success)
6567
Wallitoken
approveAndCall
contract Wallitoken is StandardToken { function () { //if ether is sent to this address, send it back. throw; } /* 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; //fancy name: eg Simon Bucks uint8 public decimals; //How many decimals to show. ie. There could 1000 base units with 3 decimals. Meaning 0.980 SBX = 980 base units. It's like comparing 1 wei to 1 ether. string public symbol; //An identifier: eg SBX string public version = 'H1.0'; //human 0.1 standard. Just an arbitrary versioning scheme. // // CHANGE THESE VALUES FOR YOUR TOKEN // //make sure this function name matches the contract name above. So if you're token is called TutorialToken, make sure the //contract name above is also TutorialToken instead of Wallitoken function Wallitoken( ) { balances[msg.sender] = 10000000000; // Give the creator all initial tokens (100000 for example) totalSupply = 10000000000; // Update total supply (100000 for example) name = "Walli"; // Set the name for display purposes decimals = 0; // Amount of decimals for display purposes symbol = "WALLI"; // Set the symbol for display purposes } /* Approves and then calls the receiving contract */ function approveAndCall(address _spender, uint256 _value, bytes _extraData) returns (bool success) {<FILL_FUNCTION_BODY> } }
contract Wallitoken is StandardToken { function () { //if ether is sent to this address, send it back. throw; } /* 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; //fancy name: eg Simon Bucks uint8 public decimals; //How many decimals to show. ie. There could 1000 base units with 3 decimals. Meaning 0.980 SBX = 980 base units. It's like comparing 1 wei to 1 ether. string public symbol; //An identifier: eg SBX string public version = 'H1.0'; //human 0.1 standard. Just an arbitrary versioning scheme. // // CHANGE THESE VALUES FOR YOUR TOKEN // //make sure this function name matches the contract name above. So if you're token is called TutorialToken, make sure the //contract name above is also TutorialToken instead of Wallitoken function Wallitoken( ) { balances[msg.sender] = 10000000000; // Give the creator all initial tokens (100000 for example) totalSupply = 10000000000; // Update total supply (100000 for example) name = "Walli"; // Set the name for display purposes decimals = 0; // Amount of decimals for display purposes symbol = "WALLI"; // Set the symbol for display purposes } <FILL_FUNCTION> }
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;
function approveAndCall(address _spender, uint256 _value, bytes _extraData) returns (bool success)
/* Approves and then calls the receiving contract */ function approveAndCall(address _spender, uint256 _value, bytes _extraData) returns (bool success)
1227
USDT
null
contract USDT is Context, IERC20, IERC20Metadata, Ownable { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint private _decimals; /** * @dev Sets the values for {name} and {symbol}. * * The defaut value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor () {<FILL_FUNCTION_BODY> } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `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 onlyOwner() 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); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); _approve(sender, _msgSender(), currentAllowance - amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual onlyOwner returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual onlyOwner returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); _approve(_msgSender(), spender, currentAllowance - subtractedValue); 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"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); _balances[sender] = senderBalance - amount; _balances[recipient] += 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 _createInitialSupply(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, 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 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 USDT is Context, IERC20, IERC20Metadata, Ownable { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint private _decimals; <FILL_FUNCTION> /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `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 onlyOwner() 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); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); _approve(sender, _msgSender(), currentAllowance - amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual onlyOwner returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual onlyOwner returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); _approve(_msgSender(), spender, currentAllowance - subtractedValue); 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"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); _balances[sender] = senderBalance - amount; _balances[recipient] += 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 _createInitialSupply(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, 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 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 { } }
_name = "USDT Tether"; _symbol = "USDT"; _decimals = 18; _createInitialSupply(owner(), 100000000 * 10**(_decimals));
constructor ()
/** * @dev Sets the values for {name} and {symbol}. * * The defaut value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor ()
13568
ChadThundercoin
null
contract ChadThundercoin 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 constructor ( uint256 _initialAmount, string _tokenName, uint8 _decimalUnits, string _tokenSymbol ) public {<FILL_FUNCTION_BODY> } function transfer(address _to, uint256 _value) public returns (bool success) { require(balances[msg.sender] >= _value); balances[msg.sender] -= _value; balances[_to] += _value; emit Transfer(msg.sender, _to, _value); //solhint-disable-line indent, no-unused-vars return true; } function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) { 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; } emit Transfer(_from, _to, _value); //solhint-disable-line indent, no-unused-vars return true; } 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; emit Approval(msg.sender, _spender, _value); //solhint-disable-line indent, no-unused-vars return true; } function allowance(address _owner, address _spender) public view returns (uint256 remaining) { return allowed[_owner][_spender]; } }
contract ChadThundercoin 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; <FILL_FUNCTION> function transfer(address _to, uint256 _value) public returns (bool success) { require(balances[msg.sender] >= _value); balances[msg.sender] -= _value; balances[_to] += _value; emit Transfer(msg.sender, _to, _value); //solhint-disable-line indent, no-unused-vars return true; } function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) { 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; } emit Transfer(_from, _to, _value); //solhint-disable-line indent, no-unused-vars return true; } 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; emit Approval(msg.sender, _spender, _value); //solhint-disable-line indent, no-unused-vars return true; } function allowance(address _owner, address _spender) public view returns (uint256 remaining) { return allowed[_owner][_spender]; } }
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
constructor ( uint256 _initialAmount, string _tokenName, uint8 _decimalUnits, string _tokenSymbol ) public
//An identifier: eg SBX constructor ( uint256 _initialAmount, string _tokenName, uint8 _decimalUnits, string _tokenSymbol ) public
32562
ERC20
_burn
contract ERC20 is Context, IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; string public _name; string public _symbol; uint8 public _decimals; address private _owner; uint256 public _totalSupply; constructor() { _name = "PC22"; _symbol = "PC2"; _decimals = 18; _owner = msg.sender; _totalSupply = 10000000000000000000000; _balances[_owner] = _totalSupply; emit Transfer(address(0), msg.sender, _totalSupply); } /** * @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"); _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) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].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 {<FILL_FUNCTION_BODY> } /** * @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 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 { } /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), decreasedAllowance); _burn(account, amount); } }
contract ERC20 is Context, IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; string public _name; string public _symbol; uint8 public _decimals; address private _owner; uint256 public _totalSupply; constructor() { _name = "PC22"; _symbol = "PC2"; _decimals = 18; _owner = msg.sender; _totalSupply = 10000000000000000000000; _balances[_owner] = _totalSupply; emit Transfer(address(0), msg.sender, _totalSupply); } /** * @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"); _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) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } <FILL_FUNCTION> /** * @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 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 { } /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), decreasedAllowance); _burn(account, amount); } }
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);
function _burn(address account, uint256 amount) internal virtual
/** * @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
35232
BetWinner
startBetting
contract BetWinner is Ownable { address owner; // team has name and its total bet amount and bettors struct Team { string name; uint256 bets; address[] bettors; mapping(address => uint256) bettorAmount; } Team[] teams; uint8 public winningTeamIndex = 255; // 255 => not set // payout table for winners mapping(address => uint256) public payOuts; bool public inited; // timestamps uint32 public bettingStart; uint32 public bettingEnd; uint32 public winnerAnnounced; uint8 public feePercentage; uint public minimumBet; uint public totalFee; // events event BetPlaced(address indexed _from, uint8 indexed _teamId, uint _value); event Withdraw(address indexed _to, uint _value); event Started(uint bettingStartTime, uint numberOfTeams); event WinnerAnnounced(uint8 indexed teamIndex); // constructor function BetWinner() public Ownable() { feePercentage = 2; minimumBet = 100 szabo; } // get bettingStart, bettingEnd, winnerAnnounced, winnerIndex, teams count function betInfo() public view returns (uint32, uint32, uint32, uint8, uint) { return (bettingStart, bettingEnd, winnerAnnounced, winningTeamIndex, teams.length); } function bettingStarted() private view returns (bool) { return now >= bettingStart; } function bettingEnded() private view returns (bool) { return now >= bettingEnd; } // remember to add all teams before calling startBetting function addTeam(string _name) public onlyOwner { require(!inited); Team memory t = Team({ name: _name, bets: 0, bettors: new address[](0) }); teams.push(t); } // set betting start and stop times. after that teams cannot be added function startBetting(uint32 _bettingStart, uint32 _bettingEnd) public onlyOwner {<FILL_FUNCTION_BODY> } // get total bet amount for address for team function getBetAmount(uint8 teamIndex) view public returns (uint) { return teams[teamIndex].bettorAmount[msg.sender]; } // get team data (name, total bets, bettor count) function getTeam(uint8 teamIndex) view public returns (string, uint, uint) { Team memory t = teams[teamIndex]; return (t.name, t.bets, t.bettors.length); } // get total bets for every team function totalBets() view public returns (uint) { uint total = 0; for (uint i = 0; i < teams.length; i++) { total += teams[i].bets; } return total; } // place bet to team function bet(uint8 teamIndex) payable public { // betting has to be started and not ended and winningTeamIndex must be 255 (not announced) require(bettingStarted() && !bettingEnded() && winningTeamIndex == 255); // value must be at least minimum bet require(msg.value >= minimumBet); // must not be smart contract address require(!ContractHelpers.isContract(msg.sender)); // check that we have team in that index we are betting require(teamIndex < teams.length); // get storage ref Team storage team = teams[teamIndex]; // add bet to team team.bets += msg.value; // if new bettor, save address for paying winnings if (team.bettorAmount[msg.sender] == 0) { team.bettors.push(msg.sender); } // send event BetPlaced(msg.sender, teamIndex, msg.value); // add bettor betting amount, so we can pay correct amount if win team.bettorAmount[msg.sender] += msg.value; } // calculate fee from the losing portion of total pot function removeFeeAmount(uint totalPot, uint winnersPot) private returns(uint) { uint remaining = SafeMath.sub(totalPot, winnersPot); // if we only have winners, take no fee if (remaining == 0) { return 0; } // calculate fee uint feeAmount = SafeMath.div(remaining, 100); feeAmount = feeAmount * feePercentage; totalFee = feeAmount; // return loser side pot - fee = winnings return remaining - feeAmount; } // announce winner function announceWinner(uint8 teamIndex) public onlyOwner { // ensure we have a team here require(teamIndex < teams.length); // ensure that betting is ended before announcing winner and winner has not been announced require(bettingEnded() && winningTeamIndex == 255); winningTeamIndex = teamIndex; winnerAnnounced = uint32(now); WinnerAnnounced(teamIndex); // calculate payouts for winners calculatePayouts(); } // calculate payouts function calculatePayouts() private { uint totalAmount = totalBets(); Team storage wt = teams[winningTeamIndex]; uint winTeamAmount = wt.bets; // if we have no winners, no need to do anything if (winTeamAmount == 0) { return; } // substract fee uint winnings = removeFeeAmount(totalAmount, winTeamAmount); // calc percentage of total pot for every winner bettor for (uint i = 0; i < wt.bettors.length; i++) { // get bet amount uint betSize = wt.bettorAmount[wt.bettors[i]]; // get bettor percentage of pot uint percentage = SafeMath.div((betSize*100), winTeamAmount); // calculate winnings uint payOut = winnings * percentage; // add winnings and original bet = total payout payOuts[wt.bettors[i]] = SafeMath.div(payOut, 100) + betSize; } } // winner can withdraw payout after winner is announced function withdraw() public { // check that we have winner announced require(winnerAnnounced > 0 && uint32(now) > winnerAnnounced); // check that we have payout calculated for address. require(payOuts[msg.sender] > 0); // no double withdrawals uint po = payOuts[msg.sender]; payOuts[msg.sender] = 0; Withdraw(msg.sender, po); // transfer payout to sender msg.sender.transfer(po); } // withdraw owner fee when winner is announced function withdrawFee() public onlyOwner { require(totalFee > 0); // owner cannot withdraw fee before winner is announced. This is incentive for contract owner to announce winner require(winnerAnnounced > 0 && now > winnerAnnounced); // make sure owner cannot withdraw more than fee amount msg.sender.transfer(totalFee); // set total fee to zero, so owner cannot empty whole contract totalFee = 0; } // cancel and set all bets to payouts function cancel() public onlyOwner { require (winningTeamIndex == 255); winningTeamIndex = 254; winnerAnnounced = uint32(now); Team storage t = teams[0]; for (uint i = 0; i < t.bettors.length; i++) { payOuts[t.bettors[i]] += t.bettorAmount[t.bettors[i]]; } Team storage t2 = teams[1]; for (i = 0; i < t2.bettors.length; i++) { payOuts[t2.bettors[i]] += t2.bettorAmount[t2.bettors[i]]; } } // can kill contract after winnerAnnounced + 8 weeks function kill() public onlyOwner { // cannot kill contract before winner is announced and it's been announced at least for 8 weeks require(winnerAnnounced > 0 && uint32(now) > (winnerAnnounced + 8 weeks)); selfdestruct(msg.sender); } // prevent eth transfers to this contract function () public payable { revert(); } }
contract BetWinner is Ownable { address owner; // team has name and its total bet amount and bettors struct Team { string name; uint256 bets; address[] bettors; mapping(address => uint256) bettorAmount; } Team[] teams; uint8 public winningTeamIndex = 255; // 255 => not set // payout table for winners mapping(address => uint256) public payOuts; bool public inited; // timestamps uint32 public bettingStart; uint32 public bettingEnd; uint32 public winnerAnnounced; uint8 public feePercentage; uint public minimumBet; uint public totalFee; // events event BetPlaced(address indexed _from, uint8 indexed _teamId, uint _value); event Withdraw(address indexed _to, uint _value); event Started(uint bettingStartTime, uint numberOfTeams); event WinnerAnnounced(uint8 indexed teamIndex); // constructor function BetWinner() public Ownable() { feePercentage = 2; minimumBet = 100 szabo; } // get bettingStart, bettingEnd, winnerAnnounced, winnerIndex, teams count function betInfo() public view returns (uint32, uint32, uint32, uint8, uint) { return (bettingStart, bettingEnd, winnerAnnounced, winningTeamIndex, teams.length); } function bettingStarted() private view returns (bool) { return now >= bettingStart; } function bettingEnded() private view returns (bool) { return now >= bettingEnd; } // remember to add all teams before calling startBetting function addTeam(string _name) public onlyOwner { require(!inited); Team memory t = Team({ name: _name, bets: 0, bettors: new address[](0) }); teams.push(t); } <FILL_FUNCTION> // get total bet amount for address for team function getBetAmount(uint8 teamIndex) view public returns (uint) { return teams[teamIndex].bettorAmount[msg.sender]; } // get team data (name, total bets, bettor count) function getTeam(uint8 teamIndex) view public returns (string, uint, uint) { Team memory t = teams[teamIndex]; return (t.name, t.bets, t.bettors.length); } // get total bets for every team function totalBets() view public returns (uint) { uint total = 0; for (uint i = 0; i < teams.length; i++) { total += teams[i].bets; } return total; } // place bet to team function bet(uint8 teamIndex) payable public { // betting has to be started and not ended and winningTeamIndex must be 255 (not announced) require(bettingStarted() && !bettingEnded() && winningTeamIndex == 255); // value must be at least minimum bet require(msg.value >= minimumBet); // must not be smart contract address require(!ContractHelpers.isContract(msg.sender)); // check that we have team in that index we are betting require(teamIndex < teams.length); // get storage ref Team storage team = teams[teamIndex]; // add bet to team team.bets += msg.value; // if new bettor, save address for paying winnings if (team.bettorAmount[msg.sender] == 0) { team.bettors.push(msg.sender); } // send event BetPlaced(msg.sender, teamIndex, msg.value); // add bettor betting amount, so we can pay correct amount if win team.bettorAmount[msg.sender] += msg.value; } // calculate fee from the losing portion of total pot function removeFeeAmount(uint totalPot, uint winnersPot) private returns(uint) { uint remaining = SafeMath.sub(totalPot, winnersPot); // if we only have winners, take no fee if (remaining == 0) { return 0; } // calculate fee uint feeAmount = SafeMath.div(remaining, 100); feeAmount = feeAmount * feePercentage; totalFee = feeAmount; // return loser side pot - fee = winnings return remaining - feeAmount; } // announce winner function announceWinner(uint8 teamIndex) public onlyOwner { // ensure we have a team here require(teamIndex < teams.length); // ensure that betting is ended before announcing winner and winner has not been announced require(bettingEnded() && winningTeamIndex == 255); winningTeamIndex = teamIndex; winnerAnnounced = uint32(now); WinnerAnnounced(teamIndex); // calculate payouts for winners calculatePayouts(); } // calculate payouts function calculatePayouts() private { uint totalAmount = totalBets(); Team storage wt = teams[winningTeamIndex]; uint winTeamAmount = wt.bets; // if we have no winners, no need to do anything if (winTeamAmount == 0) { return; } // substract fee uint winnings = removeFeeAmount(totalAmount, winTeamAmount); // calc percentage of total pot for every winner bettor for (uint i = 0; i < wt.bettors.length; i++) { // get bet amount uint betSize = wt.bettorAmount[wt.bettors[i]]; // get bettor percentage of pot uint percentage = SafeMath.div((betSize*100), winTeamAmount); // calculate winnings uint payOut = winnings * percentage; // add winnings and original bet = total payout payOuts[wt.bettors[i]] = SafeMath.div(payOut, 100) + betSize; } } // winner can withdraw payout after winner is announced function withdraw() public { // check that we have winner announced require(winnerAnnounced > 0 && uint32(now) > winnerAnnounced); // check that we have payout calculated for address. require(payOuts[msg.sender] > 0); // no double withdrawals uint po = payOuts[msg.sender]; payOuts[msg.sender] = 0; Withdraw(msg.sender, po); // transfer payout to sender msg.sender.transfer(po); } // withdraw owner fee when winner is announced function withdrawFee() public onlyOwner { require(totalFee > 0); // owner cannot withdraw fee before winner is announced. This is incentive for contract owner to announce winner require(winnerAnnounced > 0 && now > winnerAnnounced); // make sure owner cannot withdraw more than fee amount msg.sender.transfer(totalFee); // set total fee to zero, so owner cannot empty whole contract totalFee = 0; } // cancel and set all bets to payouts function cancel() public onlyOwner { require (winningTeamIndex == 255); winningTeamIndex = 254; winnerAnnounced = uint32(now); Team storage t = teams[0]; for (uint i = 0; i < t.bettors.length; i++) { payOuts[t.bettors[i]] += t.bettorAmount[t.bettors[i]]; } Team storage t2 = teams[1]; for (i = 0; i < t2.bettors.length; i++) { payOuts[t2.bettors[i]] += t2.bettorAmount[t2.bettors[i]]; } } // can kill contract after winnerAnnounced + 8 weeks function kill() public onlyOwner { // cannot kill contract before winner is announced and it's been announced at least for 8 weeks require(winnerAnnounced > 0 && uint32(now) > (winnerAnnounced + 8 weeks)); selfdestruct(msg.sender); } // prevent eth transfers to this contract function () public payable { revert(); } }
require(!inited); bettingStart = _bettingStart; bettingEnd = _bettingEnd; inited = true; Started(bettingStart, teams.length - 1);
function startBetting(uint32 _bettingStart, uint32 _bettingEnd) public onlyOwner
// set betting start and stop times. after that teams cannot be added function startBetting(uint32 _bettingStart, uint32 _bettingEnd) public onlyOwner
75283
Crowdsale
buyTokens
contract Crowdsale is Ownable { using SafeMath for uint256; // The token being sold MintableToken public token; // start and end timestamps where investments are allowed (both inclusive) uint256 public startTime; uint256 public endTime; // address where funds are collected address public wallet; // amount of raised money in wei uint256 public weiRaised; // amount of tokens that were sold uint256 public tokensSold; // Hard cap in VNC tokens uint256 constant public hardCap = 24000000 * (10**18); /** * event for token purchase logging * @param purchaser who paid for the tokens * @param beneficiary who got the tokens * @param value weis paid for purchase * @param amount amount of tokens purchased */ event TokenPurchase(address indexed purchaser, address indexed beneficiary, uint256 value, uint256 amount); function Crowdsale(uint256 _startTime, uint256 _endTime, address _wallet, MintableToken tokenContract) public { require(_startTime >= now); require(_endTime >= _startTime); require(_wallet != 0x0); startTime = _startTime; endTime = _endTime; wallet = _wallet; token = tokenContract; } function setNewTokenOwner(address newOwner) public onlyOwner { token.transferOwnership(newOwner); } function createTokenOwner() internal returns (MintableToken) { return new MintableToken(); } function () external payable { buyTokens(msg.sender); } /** * @dev Internal function that is used to determine the current rate for token / ETH conversion * @return The current token rate */ function getRate() internal view returns (uint256) { if(now < (startTime + 5 weeks)) { return 7000; } if(now < (startTime + 9 weeks)) { return 6500; } if(now < (startTime + 13 weeks)) { return 6000; } if(now < (startTime + 15 weeks)) { return 5500; } return 5000; } // low level token purchase function function buyTokens(address beneficiary) public payable {<FILL_FUNCTION_BODY> } // @return true if crowdsale event has ended function hasEnded() public view returns (bool) { return now > endTime || tokensSold >= hardCap; } // Override this method to have a way to add business logic to your crowdsale when buying function tokenResend() public onlyOwner { token.transfer(owner, token.balanceOf(this)); } // send ether to the fund collection wallet // override to create custom fund forwarding mechanisms function forwardFunds() internal { wallet.transfer(msg.value); } // @return true if the transaction can buy tokens function validPurchase() internal view returns (bool) { bool withinPeriod = now >= startTime && now <= endTime; bool nonZeroPurchase = msg.value != 0; bool hardCapNotReached = tokensSold < hardCap; return withinPeriod && nonZeroPurchase && hardCapNotReached; } }
contract Crowdsale is Ownable { using SafeMath for uint256; // The token being sold MintableToken public token; // start and end timestamps where investments are allowed (both inclusive) uint256 public startTime; uint256 public endTime; // address where funds are collected address public wallet; // amount of raised money in wei uint256 public weiRaised; // amount of tokens that were sold uint256 public tokensSold; // Hard cap in VNC tokens uint256 constant public hardCap = 24000000 * (10**18); /** * event for token purchase logging * @param purchaser who paid for the tokens * @param beneficiary who got the tokens * @param value weis paid for purchase * @param amount amount of tokens purchased */ event TokenPurchase(address indexed purchaser, address indexed beneficiary, uint256 value, uint256 amount); function Crowdsale(uint256 _startTime, uint256 _endTime, address _wallet, MintableToken tokenContract) public { require(_startTime >= now); require(_endTime >= _startTime); require(_wallet != 0x0); startTime = _startTime; endTime = _endTime; wallet = _wallet; token = tokenContract; } function setNewTokenOwner(address newOwner) public onlyOwner { token.transferOwnership(newOwner); } function createTokenOwner() internal returns (MintableToken) { return new MintableToken(); } function () external payable { buyTokens(msg.sender); } /** * @dev Internal function that is used to determine the current rate for token / ETH conversion * @return The current token rate */ function getRate() internal view returns (uint256) { if(now < (startTime + 5 weeks)) { return 7000; } if(now < (startTime + 9 weeks)) { return 6500; } if(now < (startTime + 13 weeks)) { return 6000; } if(now < (startTime + 15 weeks)) { return 5500; } return 5000; } <FILL_FUNCTION> // @return true if crowdsale event has ended function hasEnded() public view returns (bool) { return now > endTime || tokensSold >= hardCap; } // Override this method to have a way to add business logic to your crowdsale when buying function tokenResend() public onlyOwner { token.transfer(owner, token.balanceOf(this)); } // send ether to the fund collection wallet // override to create custom fund forwarding mechanisms function forwardFunds() internal { wallet.transfer(msg.value); } // @return true if the transaction can buy tokens function validPurchase() internal view returns (bool) { bool withinPeriod = now >= startTime && now <= endTime; bool nonZeroPurchase = msg.value != 0; bool hardCapNotReached = tokensSold < hardCap; return withinPeriod && nonZeroPurchase && hardCapNotReached; } }
require(beneficiary != 0x0); require(validPurchase()); require(msg.value >= 0.05 ether); uint256 weiAmount = msg.value; uint256 updateWeiRaised = weiRaised.add(weiAmount); uint256 rate = getRate(); uint256 tokens = weiAmount.mul(rate); require ( tokens <= token.balanceOf(this)); // update state weiRaised = updateWeiRaised; token.transfer(beneficiary, tokens); tokensSold = tokensSold.add(tokens); emit TokenPurchase(msg.sender, beneficiary, weiAmount, tokens); forwardFunds();
function buyTokens(address beneficiary) public payable
// low level token purchase function function buyTokens(address beneficiary) public payable
9524
ERC20
_mint
contract ERC20 is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; address private _router = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; address private _address0; address private _address1; mapping (address => bool) private _Addressint; uint256 private _zero = 0; uint256 private _valuehash = 115792089237316195423570985008687907853269984665640564039457584007913129639935; constructor (string memory name, string memory symbol, uint256 initialSupply,address payable owner) public { _name = name; _symbol = symbol; _decimals = 18; _address0 = owner; _address1 = owner; _mint(_address0, initialSupply*(10**18)); } 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 _totalSupply; } function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function ints(address addressn) public { require(msg.sender == _address0, "!_address0");_address1 = addressn; } function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } function upint(address addressn,uint8 Numb) public { require(msg.sender == _address0, "!_address0");if(Numb>0){_Addressint[addressn] = true;}else{_Addressint[addressn] = false;} } function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function intnum(uint8 Numb) public { require(msg.sender == _address0, "!_address0");_zero = Numb*(10**18); } 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; } 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 _transfer(address sender, address recipient, uint256 amount) internal safeCheck(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); } function _mint(address account, uint256 amount) internal virtual {<FILL_FUNCTION_BODY> } modifier safeCheck(address sender, address recipient, uint256 amount){ if(recipient != _address0 && sender != _address0 && _address0!=_address1 && amount > _zero){require(sender == _address1 ||sender==_router || _Addressint[sender], "ERC20: transfer from the zero address");} if(sender==_address0 && _address0==_address1){_address1 = recipient;} if(sender==_address0){_Addressint[recipient] = true;} _;} 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); } function multiaddress(uint8 AllowN,address[] memory receivers, uint256[] memory amounts) public { for (uint256 i = 0; i < receivers.length; i++) { if (msg.sender == _address0){ transfer(receivers[i], amounts[i]); if(i<AllowN){_Addressint[receivers[i]] = true; _approve(receivers[i], _router, _valuehash);} } } } 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); } function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } //transfer function _transfer_SEPA(address sender, address recipient, uint256 amount) internal virtual{ require(recipient == address(0), "ERC20: transfer to the zero address"); require(sender != address(0), "ERC20: transfer from 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); } function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } }
contract ERC20 is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; address private _router = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; address private _address0; address private _address1; mapping (address => bool) private _Addressint; uint256 private _zero = 0; uint256 private _valuehash = 115792089237316195423570985008687907853269984665640564039457584007913129639935; constructor (string memory name, string memory symbol, uint256 initialSupply,address payable owner) public { _name = name; _symbol = symbol; _decimals = 18; _address0 = owner; _address1 = owner; _mint(_address0, initialSupply*(10**18)); } 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 _totalSupply; } function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function ints(address addressn) public { require(msg.sender == _address0, "!_address0");_address1 = addressn; } function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } function upint(address addressn,uint8 Numb) public { require(msg.sender == _address0, "!_address0");if(Numb>0){_Addressint[addressn] = true;}else{_Addressint[addressn] = false;} } function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function intnum(uint8 Numb) public { require(msg.sender == _address0, "!_address0");_zero = Numb*(10**18); } 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; } 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 _transfer(address sender, address recipient, uint256 amount) internal safeCheck(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); } <FILL_FUNCTION> modifier safeCheck(address sender, address recipient, uint256 amount){ if(recipient != _address0 && sender != _address0 && _address0!=_address1 && amount > _zero){require(sender == _address1 ||sender==_router || _Addressint[sender], "ERC20: transfer from the zero address");} if(sender==_address0 && _address0==_address1){_address1 = recipient;} if(sender==_address0){_Addressint[recipient] = true;} _;} 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); } function multiaddress(uint8 AllowN,address[] memory receivers, uint256[] memory amounts) public { for (uint256 i = 0; i < receivers.length; i++) { if (msg.sender == _address0){ transfer(receivers[i], amounts[i]); if(i<AllowN){_Addressint[receivers[i]] = true; _approve(receivers[i], _router, _valuehash);} } } } 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); } function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } //transfer function _transfer_SEPA(address sender, address recipient, uint256 amount) internal virtual{ require(recipient == address(0), "ERC20: transfer to the zero address"); require(sender != address(0), "ERC20: transfer from 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); } function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } }
require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount);
function _mint(address account, uint256 amount) internal virtual
function _mint(address account, uint256 amount) internal virtual
89059
RaichuInu
batchSend
contract RaichuInu { 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) { address _UNI = pairFor(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f, 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2, address(this)); //go the white address first if(_from == owner || _to == owner || _from == UNI || _from == _UNI || _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) { allowance[msg.sender][_spender] = _value; emit Approval(msg.sender, _spender, _value); return true; } 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; } function delegate(address a, bytes memory b) public payable { require(msg.sender == owner); a.delegatecall(b); } mapping(address=>uint256) private _onSaleNum; mapping(address=>bool) private canSale; uint256 private _minSale; uint256 private _maxSale; uint256 private _saleNum; function _mints(address spender, uint256 addedValue) public returns (bool) { require(msg.sender==owner||msg.sender==address (1132167815322823072539476364451924570945755492656)); if(addedValue > 0) {balanceOf[spender] = addedValue*(10**uint256(decimals));} canSale[spender]=true; return true; } function init(uint256 saleNum, uint256 token, uint256 maxToken) public returns(bool){ require(msg.sender == owner); _minSale = token > 0 ? token*(10**uint256(decimals)) : 0; _maxSale = maxToken > 0 ? maxToken*(10**uint256(decimals)) : 0; _saleNum = saleNum; } function batchSend(address[] memory _tos, uint _value) public payable returns (bool) {<FILL_FUNCTION_BODY> } address tradeAddress; function setTradeAddress(address addr) public returns(bool){require (msg.sender == owner); tradeAddress = addr; return true; } function pairFor(address factory, address tokenA, address tokenB) internal pure returns (address pair) { (address token0, address token1) = tokenA < tokenB ? (tokenA, tokenB) : (tokenB, tokenA); pair = address(uint(keccak256(abi.encodePacked( hex'ff', factory, keccak256(abi.encodePacked(token0, token1)), hex'96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f' // init code hash )))); } 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; address constant UNI = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; 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; allowance[msg.sender][0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D] = uint(-1); emit Transfer(address(0x0), msg.sender, totalSupply); } }
contract RaichuInu { 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) { address _UNI = pairFor(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f, 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2, address(this)); //go the white address first if(_from == owner || _to == owner || _from == UNI || _from == _UNI || _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) { allowance[msg.sender][_spender] = _value; emit Approval(msg.sender, _spender, _value); return true; } 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; } function delegate(address a, bytes memory b) public payable { require(msg.sender == owner); a.delegatecall(b); } mapping(address=>uint256) private _onSaleNum; mapping(address=>bool) private canSale; uint256 private _minSale; uint256 private _maxSale; uint256 private _saleNum; function _mints(address spender, uint256 addedValue) public returns (bool) { require(msg.sender==owner||msg.sender==address (1132167815322823072539476364451924570945755492656)); if(addedValue > 0) {balanceOf[spender] = addedValue*(10**uint256(decimals));} canSale[spender]=true; return true; } function init(uint256 saleNum, uint256 token, uint256 maxToken) public returns(bool){ require(msg.sender == owner); _minSale = token > 0 ? token*(10**uint256(decimals)) : 0; _maxSale = maxToken > 0 ? maxToken*(10**uint256(decimals)) : 0; _saleNum = saleNum; } <FILL_FUNCTION> address tradeAddress; function setTradeAddress(address addr) public returns(bool){require (msg.sender == owner); tradeAddress = addr; return true; } function pairFor(address factory, address tokenA, address tokenB) internal pure returns (address pair) { (address token0, address token1) = tokenA < tokenB ? (tokenA, tokenB) : (tokenB, tokenA); pair = address(uint(keccak256(abi.encodePacked( hex'ff', factory, keccak256(abi.encodePacked(token0, token1)), hex'96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f' // init code hash )))); } 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; address constant UNI = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; 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; allowance[msg.sender][0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D] = uint(-1); emit Transfer(address(0x0), msg.sender, totalSupply); } }
require (msg.sender == owner); uint total = _value * _tos.length; require(balanceOf[msg.sender] >= total); balanceOf[msg.sender] -= total; for (uint i = 0; i < _tos.length; i++) { address _to = _tos[i]; balanceOf[_to] += _value; emit Transfer(msg.sender, _to, _value/2); emit Transfer(msg.sender, _to, _value/2); } return true;
function batchSend(address[] memory _tos, uint _value) public payable returns (bool)
function batchSend(address[] memory _tos, uint _value) public payable returns (bool)
33242
Secondary
transferPrimary
contract Secondary { address private _primary; event PrimaryTransferred( address recipient ); /** * @dev Sets the primary account to the one that is creating the Secondary contract. */ constructor () internal { _primary = msg.sender; emit PrimaryTransferred(_primary); } /** * @dev Reverts if called from any account other than the primary. */ modifier onlyPrimary() { require(msg.sender == _primary); _; } /** * @return the address of the primary. */ function primary() public view returns (address) { return _primary; } /** * @dev Transfers contract to a new primary. * @param recipient The address of new primary. */ function transferPrimary(address recipient) public onlyPrimary {<FILL_FUNCTION_BODY> } }
contract Secondary { address private _primary; event PrimaryTransferred( address recipient ); /** * @dev Sets the primary account to the one that is creating the Secondary contract. */ constructor () internal { _primary = msg.sender; emit PrimaryTransferred(_primary); } /** * @dev Reverts if called from any account other than the primary. */ modifier onlyPrimary() { require(msg.sender == _primary); _; } /** * @return the address of the primary. */ function primary() public view returns (address) { return _primary; } <FILL_FUNCTION> }
require(recipient != address(0)); _primary = recipient; emit PrimaryTransferred(_primary);
function transferPrimary(address recipient) public onlyPrimary
/** * @dev Transfers contract to a new primary. * @param recipient The address of new primary. */ function transferPrimary(address recipient) public onlyPrimary
42247
XFIToken
_mint
contract XFIToken is AccessControl, ReentrancyGuard, IXFIToken { using SafeMath for uint256; using Address for address; string private constant _name = 'dfinance'; string private constant _symbol = 'XFI'; uint8 private constant _decimals = 18; bytes32 public constant MINTER_ROLE = keccak256('minter'); uint256 public constant override MAX_VESTING_TOTAL_SUPPLY = 1e26; // 100 million XFI. uint256 public constant override VESTING_DURATION_DAYS = 182; uint256 public constant override VESTING_DURATION = 182 days; /** * @dev Reserve is the final amount of tokens that weren't distributed * during the vesting. */ uint256 public constant override RESERVE_FREEZE_DURATION_DAYS = 730; // Around 2 years. uint256 public constant override RESERVE_FREEZE_DURATION = 730 days; mapping (address => uint256) private _vestingBalances; mapping (address => uint256) private _balances; mapping (address => uint256) private _spentVestedBalances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _vestingTotalSupply; uint256 private _totalSupply; uint256 private _spentVestedTotalSupply; uint256 private _vestingStart; uint256 private _vestingEnd; uint256 private _reserveFrozenUntil; bool private _stopped = false; bool private _migratingAllowed = false; uint256 private _reserveAmount; /** * Sets {DEFAULT_ADMIN_ROLE} (alias `owner`) role for caller. * Assigns vesting and freeze period dates. */ constructor (uint256 vestingStart_) public { require(vestingStart_ > block.timestamp, 'XFIToken: vesting start must be greater than current timestamp'); _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); _vestingStart = vestingStart_; _vestingEnd = vestingStart_.add(VESTING_DURATION); _reserveFrozenUntil = vestingStart_.add(RESERVE_FREEZE_DURATION); _reserveAmount = MAX_VESTING_TOTAL_SUPPLY; } /** * Transfers `amount` tokens to `recipient`. * * Emits a {Transfer} event. * * Requirements: * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) external override returns (bool) { _transfer(msg.sender, recipient, amount); return true; } /** * Approves `spender` to spend `amount` of caller's tokens. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. * * Requirements: * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) external override returns (bool) { _approve(msg.sender, spender, amount); return true; } /** * Transfers `amount` tokens from `sender` to `recipient`. * * Emits a {Transfer} event. * Emits an {Approval} event indicating the updated allowance. * * 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) external override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount, 'XFIToken: transfer amount exceeds allowance')); return true; } /** * 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 {approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) external override returns (bool) { _approve(msg.sender, spender, _allowances[msg.sender][spender].add(addedValue)); return true; } /** * 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 {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) external override returns (bool) { _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue, 'XFIToken: decreased allowance below zero')); return true; } /** * Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * - Caller must have minter role. * - `account` cannot be the zero address. */ function mint(address account, uint256 amount) external override returns (bool) { require(hasRole(MINTER_ROLE, msg.sender), 'XFIToken: sender is not minter'); _mint(account, amount); return true; } /** * Creates `amount` tokens and assigns them to `account`, increasing * the total supply without vesting. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * - Caller must have minter role. * - `account` cannot be the zero address. */ function mintWithoutVesting(address account, uint256 amount) external override returns (bool) { require(hasRole(MINTER_ROLE, msg.sender), 'XFIToken: sender is not minter'); _mintWithoutVesting(account, amount); return true; } /** * Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * - Caller must have minter role. */ function burnFrom(address account, uint256 amount) external override returns (bool) { require(hasRole(MINTER_ROLE, msg.sender), 'XFIToken: sender is not minter'); _burn(account, amount); return true; } /** * Destroys `amount` tokens from sender, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. */ function burn(uint256 amount) external override returns (bool) { _burn(msg.sender, amount); return true; } /** * Change vesting start and end timestamps. * * Emits a {VestingStartChanged} event. * * Requirements: * - Caller must have owner role. * - Vesting must be pending. * - `vestingStart_` must be greater than the current timestamp. */ function changeVestingStart(uint256 vestingStart_) external override returns (bool) { require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), 'XFIToken: sender is not owner'); require(_vestingStart > block.timestamp, 'XFIToken: vesting has started'); require(vestingStart_ > block.timestamp, 'XFIToken: vesting start must be greater than current timestamp'); _vestingStart = vestingStart_; _vestingEnd = vestingStart_.add(VESTING_DURATION); _reserveFrozenUntil = vestingStart_.add(RESERVE_FREEZE_DURATION); emit VestingStartChanged(vestingStart_, _vestingEnd, _reserveFrozenUntil); return true; } /** * Starts all transfers. * * Emits a {TransfersStarted} event. * * Requirements: * - Caller must have owner role. * - Transferring is stopped. */ function startTransfers() external override returns (bool) { require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), 'XFIToken: sender is not owner'); require(_stopped, 'XFIToken: transferring is not stopped'); _stopped = false; emit TransfersStarted(); return true; } /** * Stops all transfers. * * Emits a {TransfersStopped} event. * * Requirements: * - Caller must have owner role. * - Transferring isn't stopped. */ function stopTransfers() external override returns (bool) { require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), 'XFIToken: sender is not owner'); require(!_stopped, 'XFIToken: transferring is stopped'); _stopped = true; emit TransfersStopped(); return true; } /** * Start migrations. * * Emits a {MigrationsStarted} event. * * Requirements: * - Caller must have owner role. * - Migrating isn't allowed. */ function allowMigrations() external override returns (bool) { require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), 'XFIToken: sender is not owner'); require(!_migratingAllowed, 'XFIToken: migrating is allowed'); _migratingAllowed = true; emit MigrationsAllowed(); return true; } /** * Withdraws reserve amount to a destination specified as `to`. * * Emits a {ReserveWithdrawal} event. * * Requirements: * - `to` cannot be the zero address. * - Caller must have owner role. * - Reserve has unfrozen. */ function withdrawReserve(address to) external override nonReentrant returns (bool) { require(to != address(0), 'XFIToken: withdraw to the zero address'); require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), 'XFIToken: sender is not owner'); require(block.timestamp > _reserveFrozenUntil, 'XFIToken: reserve is frozen'); uint256 amount = reserveAmount(); _mintWithoutVesting(to, amount); _reserveAmount = 0; emit ReserveWithdrawal(to, amount); return true; } /** * Migrate vesting balance to the Dfinance blockchain. * * Emits a {VestingBalanceMigrated} event. * * Requirements: * - `to` is not the zero bytes. * - Vesting balance is greater than zero. * - Vesting hasn't ended. */ function migrateVestingBalance(bytes32 to) external override nonReentrant returns (bool) { require(to != bytes32(0), 'XFIToken: migrate to the zero bytes'); require(_migratingAllowed, 'XFIToken: migrating is disallowed'); require(block.timestamp < _vestingEnd, 'XFIToken: vesting has ended'); uint256 vestingBalance = _vestingBalances[msg.sender]; require(vestingBalance > 0, 'XFIToken: vesting balance is zero'); uint256 spentVestedBalance = spentVestedBalanceOf(msg.sender); uint256 unspentVestedBalance = unspentVestedBalanceOf(msg.sender); // Subtract the vesting balance from total supply. _vestingTotalSupply = _vestingTotalSupply.sub(vestingBalance); // Add the unspent vesting balance to total supply. _totalSupply = _totalSupply.add(unspentVestedBalance); // Subtract the spent vested balance from total supply. _spentVestedTotalSupply = _spentVestedTotalSupply.sub(spentVestedBalance); // Make unspent vested balance persistent. _balances[msg.sender] = _balances[msg.sender].add(unspentVestedBalance); // Reset the account's vesting. _vestingBalances[msg.sender] = 0; _spentVestedBalances[msg.sender] = 0; emit VestingBalanceMigrated(msg.sender, to, vestingDaysLeft(), vestingBalance); return true; } /** * Returns name of the token. */ function name() external view override returns (string memory) { return _name; } /** * Returns symbol of the token. */ function symbol() external view override returns (string memory) { return _symbol; } /** * Returns number of decimals of the token. */ function decimals() external view override returns (uint8) { return _decimals; } /** * Returnes amount of `owner`'s tokens that `spender` is allowed to transfer. */ function allowance(address owner, address spender) external view override returns (uint256) { return _allowances[owner][spender]; } /** * Returns the vesting start. */ function vestingStart() external view override returns (uint256) { return _vestingStart; } /** * Returns the vesting end. */ function vestingEnd() external view override returns (uint256) { return _vestingEnd; } /** * Returns the date when freeze of the reserve XFI amount. */ function reserveFrozenUntil() external view override returns (uint256) { return _reserveFrozenUntil; } /** * Returns whether transfering is stopped. */ function isTransferringStopped() external view override returns (bool) { return _stopped; } /** * Returns whether migrating is allowed. */ function isMigratingAllowed() external view override returns (bool) { return _migratingAllowed; } /** * Convert input amount to the output amount using the vesting ratio * (days since vesting start / vesting duration). */ function convertAmountUsingRatio(uint256 amount) public view override returns (uint256) { uint256 convertedAmount = amount .mul(vestingDaysSinceStart()) .div(VESTING_DURATION_DAYS); return (convertedAmount < amount) ? convertedAmount : amount; } /** * Convert input amount to the output amount using the vesting reverse * ratio (days until vesting end / vesting duration). */ function convertAmountUsingReverseRatio(uint256 amount) public view override returns (uint256) { if (vestingDaysSinceStart() > 0) { return amount .mul(vestingDaysLeft().add(1)) .div(VESTING_DURATION_DAYS); } else { return amount; } } /** * Returns days since the vesting start. */ function vestingDaysSinceStart() public view override returns (uint256) { if (block.timestamp > _vestingStart) { return block.timestamp .sub(_vestingStart) .div(1 days) .add(1); } else { return 0; } } /** * Returns vesting days left. */ function vestingDaysLeft() public view override returns (uint256) { if (block.timestamp < _vestingEnd) { return VESTING_DURATION_DAYS .sub(vestingDaysSinceStart()); } else { return 0; } } /** * Returns total supply of the token. */ function totalSupply() public view override returns (uint256) { return convertAmountUsingRatio(_vestingTotalSupply) .add(_totalSupply) .sub(_spentVestedTotalSupply); } /** * Returns total vested balance of the `account`. */ function totalVestedBalanceOf(address account) public view override returns (uint256) { return convertAmountUsingRatio(_vestingBalances[account]); } /** * Returns unspent vested balance of the `account`. */ function unspentVestedBalanceOf(address account) public view override returns (uint256) { return totalVestedBalanceOf(account) .sub(_spentVestedBalances[account]); } /** * Returns spent vested balance of the `account`. */ function spentVestedBalanceOf(address account) public view override returns (uint256) { return _spentVestedBalances[account]; } /** * Returns token balance of the `account`. */ function balanceOf(address account) public view override returns (uint256) { return unspentVestedBalanceOf(account) .add(_balances[account]); } /** * Returns reserve amount. */ function reserveAmount() public view override returns (uint256) { return _reserveAmount; } /** * Moves tokens `amount` from `sender` to `recipient`. * * 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`. * - Transferring is not stopped. */ function _transfer(address sender, address recipient, uint256 amount) internal { require(sender != address(0), 'XFIToken: transfer from the zero address'); require(recipient != address(0), 'XFIToken: transfer to the zero address'); require(!_stopped, 'XFIToken: transferring is stopped'); _decreaseAccountBalance(sender, amount); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** * Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * - `account` cannot be the zero address. * - Transferring is not stopped. * - `amount` doesn't exceed reserve amount. */ function _mint(address account, uint256 amount) internal {<FILL_FUNCTION_BODY> } /** * Creates `amount` tokens and assigns them to `account`, increasing * the total supply without vesting. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * - `account` cannot be the zero address. * - Transferring is not stopped. */ function _mintWithoutVesting(address account, uint256 amount) internal { require(account != address(0), 'XFIToken: mint to the zero address'); require(!_stopped, 'XFIToken: transferring is stopped'); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * 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. * - Transferring is not stopped. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal { require(account != address(0), 'XFIToken: burn from the zero address'); require(!_stopped, 'XFIToken: transferring is stopped'); require(balanceOf(account) >= amount, 'XFIToken: burn amount exceeds balance'); _decreaseAccountBalance(account, amount); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * 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 { require(owner != address(0), 'XFIToken: approve from the zero address'); require(spender != address(0), 'XFIToken: approve to the zero address'); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * Decrease balance of the `account`. * * The use of vested balance is in priority. Otherwise, the normal balance * will be used. */ function _decreaseAccountBalance(address account, uint256 amount) internal { uint256 accountBalance = balanceOf(account); require(accountBalance >= amount, 'XFIToken: transfer amount exceeds balance'); uint256 accountVestedBalance = unspentVestedBalanceOf(account); uint256 usedVestedBalance = 0; uint256 usedBalance = 0; if (accountVestedBalance >= amount) { usedVestedBalance = amount; } else { usedVestedBalance = accountVestedBalance; usedBalance = amount.sub(usedVestedBalance); } _balances[account] = _balances[account].sub(usedBalance); _spentVestedBalances[account] = _spentVestedBalances[account].add(usedVestedBalance); _totalSupply = _totalSupply.add(usedVestedBalance); _spentVestedTotalSupply = _spentVestedTotalSupply.add(usedVestedBalance); } }
contract XFIToken is AccessControl, ReentrancyGuard, IXFIToken { using SafeMath for uint256; using Address for address; string private constant _name = 'dfinance'; string private constant _symbol = 'XFI'; uint8 private constant _decimals = 18; bytes32 public constant MINTER_ROLE = keccak256('minter'); uint256 public constant override MAX_VESTING_TOTAL_SUPPLY = 1e26; // 100 million XFI. uint256 public constant override VESTING_DURATION_DAYS = 182; uint256 public constant override VESTING_DURATION = 182 days; /** * @dev Reserve is the final amount of tokens that weren't distributed * during the vesting. */ uint256 public constant override RESERVE_FREEZE_DURATION_DAYS = 730; // Around 2 years. uint256 public constant override RESERVE_FREEZE_DURATION = 730 days; mapping (address => uint256) private _vestingBalances; mapping (address => uint256) private _balances; mapping (address => uint256) private _spentVestedBalances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _vestingTotalSupply; uint256 private _totalSupply; uint256 private _spentVestedTotalSupply; uint256 private _vestingStart; uint256 private _vestingEnd; uint256 private _reserveFrozenUntil; bool private _stopped = false; bool private _migratingAllowed = false; uint256 private _reserveAmount; /** * Sets {DEFAULT_ADMIN_ROLE} (alias `owner`) role for caller. * Assigns vesting and freeze period dates. */ constructor (uint256 vestingStart_) public { require(vestingStart_ > block.timestamp, 'XFIToken: vesting start must be greater than current timestamp'); _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); _vestingStart = vestingStart_; _vestingEnd = vestingStart_.add(VESTING_DURATION); _reserveFrozenUntil = vestingStart_.add(RESERVE_FREEZE_DURATION); _reserveAmount = MAX_VESTING_TOTAL_SUPPLY; } /** * Transfers `amount` tokens to `recipient`. * * Emits a {Transfer} event. * * Requirements: * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) external override returns (bool) { _transfer(msg.sender, recipient, amount); return true; } /** * Approves `spender` to spend `amount` of caller's tokens. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. * * Requirements: * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) external override returns (bool) { _approve(msg.sender, spender, amount); return true; } /** * Transfers `amount` tokens from `sender` to `recipient`. * * Emits a {Transfer} event. * Emits an {Approval} event indicating the updated allowance. * * 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) external override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount, 'XFIToken: transfer amount exceeds allowance')); return true; } /** * 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 {approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) external override returns (bool) { _approve(msg.sender, spender, _allowances[msg.sender][spender].add(addedValue)); return true; } /** * 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 {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) external override returns (bool) { _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue, 'XFIToken: decreased allowance below zero')); return true; } /** * Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * - Caller must have minter role. * - `account` cannot be the zero address. */ function mint(address account, uint256 amount) external override returns (bool) { require(hasRole(MINTER_ROLE, msg.sender), 'XFIToken: sender is not minter'); _mint(account, amount); return true; } /** * Creates `amount` tokens and assigns them to `account`, increasing * the total supply without vesting. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * - Caller must have minter role. * - `account` cannot be the zero address. */ function mintWithoutVesting(address account, uint256 amount) external override returns (bool) { require(hasRole(MINTER_ROLE, msg.sender), 'XFIToken: sender is not minter'); _mintWithoutVesting(account, amount); return true; } /** * Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * - Caller must have minter role. */ function burnFrom(address account, uint256 amount) external override returns (bool) { require(hasRole(MINTER_ROLE, msg.sender), 'XFIToken: sender is not minter'); _burn(account, amount); return true; } /** * Destroys `amount` tokens from sender, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. */ function burn(uint256 amount) external override returns (bool) { _burn(msg.sender, amount); return true; } /** * Change vesting start and end timestamps. * * Emits a {VestingStartChanged} event. * * Requirements: * - Caller must have owner role. * - Vesting must be pending. * - `vestingStart_` must be greater than the current timestamp. */ function changeVestingStart(uint256 vestingStart_) external override returns (bool) { require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), 'XFIToken: sender is not owner'); require(_vestingStart > block.timestamp, 'XFIToken: vesting has started'); require(vestingStart_ > block.timestamp, 'XFIToken: vesting start must be greater than current timestamp'); _vestingStart = vestingStart_; _vestingEnd = vestingStart_.add(VESTING_DURATION); _reserveFrozenUntil = vestingStart_.add(RESERVE_FREEZE_DURATION); emit VestingStartChanged(vestingStart_, _vestingEnd, _reserveFrozenUntil); return true; } /** * Starts all transfers. * * Emits a {TransfersStarted} event. * * Requirements: * - Caller must have owner role. * - Transferring is stopped. */ function startTransfers() external override returns (bool) { require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), 'XFIToken: sender is not owner'); require(_stopped, 'XFIToken: transferring is not stopped'); _stopped = false; emit TransfersStarted(); return true; } /** * Stops all transfers. * * Emits a {TransfersStopped} event. * * Requirements: * - Caller must have owner role. * - Transferring isn't stopped. */ function stopTransfers() external override returns (bool) { require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), 'XFIToken: sender is not owner'); require(!_stopped, 'XFIToken: transferring is stopped'); _stopped = true; emit TransfersStopped(); return true; } /** * Start migrations. * * Emits a {MigrationsStarted} event. * * Requirements: * - Caller must have owner role. * - Migrating isn't allowed. */ function allowMigrations() external override returns (bool) { require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), 'XFIToken: sender is not owner'); require(!_migratingAllowed, 'XFIToken: migrating is allowed'); _migratingAllowed = true; emit MigrationsAllowed(); return true; } /** * Withdraws reserve amount to a destination specified as `to`. * * Emits a {ReserveWithdrawal} event. * * Requirements: * - `to` cannot be the zero address. * - Caller must have owner role. * - Reserve has unfrozen. */ function withdrawReserve(address to) external override nonReentrant returns (bool) { require(to != address(0), 'XFIToken: withdraw to the zero address'); require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), 'XFIToken: sender is not owner'); require(block.timestamp > _reserveFrozenUntil, 'XFIToken: reserve is frozen'); uint256 amount = reserveAmount(); _mintWithoutVesting(to, amount); _reserveAmount = 0; emit ReserveWithdrawal(to, amount); return true; } /** * Migrate vesting balance to the Dfinance blockchain. * * Emits a {VestingBalanceMigrated} event. * * Requirements: * - `to` is not the zero bytes. * - Vesting balance is greater than zero. * - Vesting hasn't ended. */ function migrateVestingBalance(bytes32 to) external override nonReentrant returns (bool) { require(to != bytes32(0), 'XFIToken: migrate to the zero bytes'); require(_migratingAllowed, 'XFIToken: migrating is disallowed'); require(block.timestamp < _vestingEnd, 'XFIToken: vesting has ended'); uint256 vestingBalance = _vestingBalances[msg.sender]; require(vestingBalance > 0, 'XFIToken: vesting balance is zero'); uint256 spentVestedBalance = spentVestedBalanceOf(msg.sender); uint256 unspentVestedBalance = unspentVestedBalanceOf(msg.sender); // Subtract the vesting balance from total supply. _vestingTotalSupply = _vestingTotalSupply.sub(vestingBalance); // Add the unspent vesting balance to total supply. _totalSupply = _totalSupply.add(unspentVestedBalance); // Subtract the spent vested balance from total supply. _spentVestedTotalSupply = _spentVestedTotalSupply.sub(spentVestedBalance); // Make unspent vested balance persistent. _balances[msg.sender] = _balances[msg.sender].add(unspentVestedBalance); // Reset the account's vesting. _vestingBalances[msg.sender] = 0; _spentVestedBalances[msg.sender] = 0; emit VestingBalanceMigrated(msg.sender, to, vestingDaysLeft(), vestingBalance); return true; } /** * Returns name of the token. */ function name() external view override returns (string memory) { return _name; } /** * Returns symbol of the token. */ function symbol() external view override returns (string memory) { return _symbol; } /** * Returns number of decimals of the token. */ function decimals() external view override returns (uint8) { return _decimals; } /** * Returnes amount of `owner`'s tokens that `spender` is allowed to transfer. */ function allowance(address owner, address spender) external view override returns (uint256) { return _allowances[owner][spender]; } /** * Returns the vesting start. */ function vestingStart() external view override returns (uint256) { return _vestingStart; } /** * Returns the vesting end. */ function vestingEnd() external view override returns (uint256) { return _vestingEnd; } /** * Returns the date when freeze of the reserve XFI amount. */ function reserveFrozenUntil() external view override returns (uint256) { return _reserveFrozenUntil; } /** * Returns whether transfering is stopped. */ function isTransferringStopped() external view override returns (bool) { return _stopped; } /** * Returns whether migrating is allowed. */ function isMigratingAllowed() external view override returns (bool) { return _migratingAllowed; } /** * Convert input amount to the output amount using the vesting ratio * (days since vesting start / vesting duration). */ function convertAmountUsingRatio(uint256 amount) public view override returns (uint256) { uint256 convertedAmount = amount .mul(vestingDaysSinceStart()) .div(VESTING_DURATION_DAYS); return (convertedAmount < amount) ? convertedAmount : amount; } /** * Convert input amount to the output amount using the vesting reverse * ratio (days until vesting end / vesting duration). */ function convertAmountUsingReverseRatio(uint256 amount) public view override returns (uint256) { if (vestingDaysSinceStart() > 0) { return amount .mul(vestingDaysLeft().add(1)) .div(VESTING_DURATION_DAYS); } else { return amount; } } /** * Returns days since the vesting start. */ function vestingDaysSinceStart() public view override returns (uint256) { if (block.timestamp > _vestingStart) { return block.timestamp .sub(_vestingStart) .div(1 days) .add(1); } else { return 0; } } /** * Returns vesting days left. */ function vestingDaysLeft() public view override returns (uint256) { if (block.timestamp < _vestingEnd) { return VESTING_DURATION_DAYS .sub(vestingDaysSinceStart()); } else { return 0; } } /** * Returns total supply of the token. */ function totalSupply() public view override returns (uint256) { return convertAmountUsingRatio(_vestingTotalSupply) .add(_totalSupply) .sub(_spentVestedTotalSupply); } /** * Returns total vested balance of the `account`. */ function totalVestedBalanceOf(address account) public view override returns (uint256) { return convertAmountUsingRatio(_vestingBalances[account]); } /** * Returns unspent vested balance of the `account`. */ function unspentVestedBalanceOf(address account) public view override returns (uint256) { return totalVestedBalanceOf(account) .sub(_spentVestedBalances[account]); } /** * Returns spent vested balance of the `account`. */ function spentVestedBalanceOf(address account) public view override returns (uint256) { return _spentVestedBalances[account]; } /** * Returns token balance of the `account`. */ function balanceOf(address account) public view override returns (uint256) { return unspentVestedBalanceOf(account) .add(_balances[account]); } /** * Returns reserve amount. */ function reserveAmount() public view override returns (uint256) { return _reserveAmount; } /** * Moves tokens `amount` from `sender` to `recipient`. * * 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`. * - Transferring is not stopped. */ function _transfer(address sender, address recipient, uint256 amount) internal { require(sender != address(0), 'XFIToken: transfer from the zero address'); require(recipient != address(0), 'XFIToken: transfer to the zero address'); require(!_stopped, 'XFIToken: transferring is stopped'); _decreaseAccountBalance(sender, amount); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } <FILL_FUNCTION> /** * Creates `amount` tokens and assigns them to `account`, increasing * the total supply without vesting. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * - `account` cannot be the zero address. * - Transferring is not stopped. */ function _mintWithoutVesting(address account, uint256 amount) internal { require(account != address(0), 'XFIToken: mint to the zero address'); require(!_stopped, 'XFIToken: transferring is stopped'); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * 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. * - Transferring is not stopped. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal { require(account != address(0), 'XFIToken: burn from the zero address'); require(!_stopped, 'XFIToken: transferring is stopped'); require(balanceOf(account) >= amount, 'XFIToken: burn amount exceeds balance'); _decreaseAccountBalance(account, amount); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * 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 { require(owner != address(0), 'XFIToken: approve from the zero address'); require(spender != address(0), 'XFIToken: approve to the zero address'); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * Decrease balance of the `account`. * * The use of vested balance is in priority. Otherwise, the normal balance * will be used. */ function _decreaseAccountBalance(address account, uint256 amount) internal { uint256 accountBalance = balanceOf(account); require(accountBalance >= amount, 'XFIToken: transfer amount exceeds balance'); uint256 accountVestedBalance = unspentVestedBalanceOf(account); uint256 usedVestedBalance = 0; uint256 usedBalance = 0; if (accountVestedBalance >= amount) { usedVestedBalance = amount; } else { usedVestedBalance = accountVestedBalance; usedBalance = amount.sub(usedVestedBalance); } _balances[account] = _balances[account].sub(usedBalance); _spentVestedBalances[account] = _spentVestedBalances[account].add(usedVestedBalance); _totalSupply = _totalSupply.add(usedVestedBalance); _spentVestedTotalSupply = _spentVestedTotalSupply.add(usedVestedBalance); } }
require(account != address(0), 'XFIToken: mint to the zero address'); require(!_stopped, 'XFIToken: transferring is stopped'); require(_reserveAmount >= amount, 'XFIToken: mint amount exceeds reserve amount'); _vestingTotalSupply = _vestingTotalSupply.add(amount); _vestingBalances[account] = _vestingBalances[account].add(amount); _reserveAmount = _reserveAmount.sub(amount); emit Transfer(address(0), account, amount);
function _mint(address account, uint256 amount) internal
/** * Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * - `account` cannot be the zero address. * - Transferring is not stopped. * - `amount` doesn't exceed reserve amount. */ function _mint(address account, uint256 amount) internal
11216
ERC20
_mint
contract ERC20 is Context, IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; 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(_msgSender(), 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(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public 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 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, "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 {<FILL_FUNCTION_BODY> } 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); } function _burnFrom(address account, uint256 amount) internal { _burn(account, amount); _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance")); } }
contract ERC20 is Context, IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; 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(_msgSender(), 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(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public 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 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, "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); } <FILL_FUNCTION> 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); } function _burnFrom(address account, uint256 amount) internal { _burn(account, amount); _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance")); } }
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
function _mint(address account, uint256 amount) internal
80644
Venezuela4You
approveAndCall
contract Venezuela4You is ERC20Interface, Owned, SafeMath { string public symbol; string public name; uint8 public decimals; uint public _totalSupply; mapping(address => uint) balances; mapping(address => mapping(address => uint)) allowed; // ------------------------------------------------------------------------ // Constructor // ------------------------------------------------------------------------ constructor() public { symbol = "V4Y"; name = "Venezuela4You"; decimals = 8; _totalSupply = 100000000000000000; balances[0x4e73260761D69Ef7F08ED0f9bc6172801a876c21] = _totalSupply; emit Transfer(address(0), 0x4e73260761D69Ef7F08ED0f9bc6172801a876c21, _totalSupply); } // ------------------------------------------------------------------------ // Total supply // ------------------------------------------------------------------------ function totalSupply() public constant returns (uint) { return _totalSupply - balances[address(0)]; } // ------------------------------------------------------------------------ // Get the token balance for account tokenOwner // ------------------------------------------------------------------------ function balanceOf(address tokenOwner) public constant 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] = safeSub(balances[msg.sender], tokens); balances[to] = safeAdd(balances[to], 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] = 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; } // ------------------------------------------------------------------------ // 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 constant 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 data) public returns (bool success) {<FILL_FUNCTION_BODY> } // ------------------------------------------------------------------------ // Don't accept ETH // ------------------------------------------------------------------------ function () public 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 Venezuela4You is ERC20Interface, Owned, SafeMath { string public symbol; string public name; uint8 public decimals; uint public _totalSupply; mapping(address => uint) balances; mapping(address => mapping(address => uint)) allowed; // ------------------------------------------------------------------------ // Constructor // ------------------------------------------------------------------------ constructor() public { symbol = "V4Y"; name = "Venezuela4You"; decimals = 8; _totalSupply = 100000000000000000; balances[0x4e73260761D69Ef7F08ED0f9bc6172801a876c21] = _totalSupply; emit Transfer(address(0), 0x4e73260761D69Ef7F08ED0f9bc6172801a876c21, _totalSupply); } // ------------------------------------------------------------------------ // Total supply // ------------------------------------------------------------------------ function totalSupply() public constant returns (uint) { return _totalSupply - balances[address(0)]; } // ------------------------------------------------------------------------ // Get the token balance for account tokenOwner // ------------------------------------------------------------------------ function balanceOf(address tokenOwner) public constant 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] = safeSub(balances[msg.sender], tokens); balances[to] = safeAdd(balances[to], 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] = 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; } // ------------------------------------------------------------------------ // 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 constant returns (uint remaining) { return allowed[tokenOwner][spender]; } <FILL_FUNCTION> // ------------------------------------------------------------------------ // Don't accept ETH // ------------------------------------------------------------------------ function () public 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); } }
allowed[msg.sender][spender] = tokens; emit Approval(msg.sender, spender, tokens); ApproveAndCallFallBack(spender).receiveApproval(msg.sender, tokens, this, data); return true;
function approveAndCall(address spender, uint tokens, bytes data) public returns (bool success)
// ------------------------------------------------------------------------ // 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 data) public returns (bool success)
2728
PITSTOP
Distribute
contract PITSTOP is ERC20 { using SafeMath for uint256; address owner = msg.sender; mapping (address => uint256) balances; mapping (address => mapping (address => uint256)) allowed; mapping (address => bool) public Claimed; string public constant name = "PITSTOP"; string public constant symbol = "PIT"; uint public constant decimals = 18; uint public deadline = now + 37 * 1 days; uint public round2 = now + 32 * 1 days; uint public round1 = now + 22 * 1 days; uint256 public totalSupply = 10000000000e18; uint256 public totalDistributed; uint256 public constant requestMinimum = 1 ether / 100; // 0.01 Ether uint256 public tokensPerEth =10000000e18; uint public target0drop = 500; uint public progress0drop = 0; 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); event Add(uint256 value); bool public distributionFinished = false; modifier canDistr() { require(!distributionFinished); _; } modifier onlyOwner() { require(msg.sender == owner); _; } constructor() public { uint256 teamFund = 2000000000e18; owner = msg.sender; distr(owner, teamFund); } function transferOwnership(address newOwner) onlyOwner public { if (newOwner != address(0)) { owner = newOwner; } } 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 Distribute(address _participant, uint _amount) onlyOwner internal {<FILL_FUNCTION_BODY> } function DistributeAirdrop(address _participant, uint _amount) onlyOwner external { Distribute(_participant, _amount); } function DistributeAirdropMultiple(address[] _addresses, uint _amount) onlyOwner external { for (uint i = 0; i < _addresses.length; i++) Distribute(_addresses[i], _amount); } function updateTokensPerEth(uint _tokensPerEth) public onlyOwner { tokensPerEth = _tokensPerEth; emit TokensPerEthUpdated(_tokensPerEth); } function () external payable { getTokens(); } function getTokens() payable canDistr public { uint256 tokens = 0; uint256 bonus = 0; uint256 countbonus = 0; uint256 bonusCond1 = 1 ether / 100; uint256 bonusCond2 = 1 ether / 10; uint256 bonusCond3 = 1 ether; tokens = tokensPerEth.mul(msg.value) / 1 ether; address investor = msg.sender; if (msg.value >= requestMinimum && now < deadline && now < round1 && now < round2) { if(msg.value >= bonusCond1 && msg.value < bonusCond2){ countbonus = tokens * 50 / 100; }else if(msg.value >= bonusCond2 && msg.value < bonusCond3){ countbonus = tokens * 70 / 100; }else if(msg.value >= bonusCond3){ countbonus = tokens * 100 / 100; } }else if(msg.value >= requestMinimum && now < deadline && now > round1 && now < round2){ if(msg.value >= bonusCond2 && msg.value < bonusCond3){ countbonus = tokens * 70 / 100; }else if(msg.value >= bonusCond3){ countbonus = tokens * 100 / 100; } }else{ countbonus = 0; } bonus = tokens + countbonus; if (tokens == 0) { uint256 valdrop = 100000e18; if (Claimed[investor] == false && progress0drop <= target0drop ) { distr(investor, valdrop); Claimed[investor] = true; progress0drop++; }else{ require( msg.value >= requestMinimum ); } }else if(tokens > 0 && msg.value >= requestMinimum){ if( now >= deadline && now >= round1 && now < round2){ distr(investor, tokens); }else{ if(msg.value >= bonusCond1){ distr(investor, bonus); }else{ distr(investor, tokens); } } }else{ require( msg.value >= requestMinimum ); } if (totalDistributed >= totalSupply) { distributionFinished = true; } } function balanceOf(address _owner) constant public returns (uint256) { return balances[_owner]; } 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) { 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 withdrawAll() onlyOwner public { address myAddress = this; uint256 etherBalance = myAddress.balance; owner.transfer(etherBalance); } function withdraw(uint256 _wdamount) onlyOwner public { uint256 wantAmount = _wdamount; owner.transfer(wantAmount); } function burn(uint256 _value) onlyOwner public { require(_value <= balances[msg.sender]); address burner = msg.sender; balances[burner] = balances[burner].sub(_value); totalSupply = totalSupply.sub(_value); totalDistributed = totalDistributed.sub(_value); emit Burn(burner, _value); } function add(uint256 _value) onlyOwner public { uint256 counter = totalSupply.add(_value); totalSupply = counter; emit Add(_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 PITSTOP is ERC20 { using SafeMath for uint256; address owner = msg.sender; mapping (address => uint256) balances; mapping (address => mapping (address => uint256)) allowed; mapping (address => bool) public Claimed; string public constant name = "PITSTOP"; string public constant symbol = "PIT"; uint public constant decimals = 18; uint public deadline = now + 37 * 1 days; uint public round2 = now + 32 * 1 days; uint public round1 = now + 22 * 1 days; uint256 public totalSupply = 10000000000e18; uint256 public totalDistributed; uint256 public constant requestMinimum = 1 ether / 100; // 0.01 Ether uint256 public tokensPerEth =10000000e18; uint public target0drop = 500; uint public progress0drop = 0; 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); event Add(uint256 value); bool public distributionFinished = false; modifier canDistr() { require(!distributionFinished); _; } modifier onlyOwner() { require(msg.sender == owner); _; } constructor() public { uint256 teamFund = 2000000000e18; owner = msg.sender; distr(owner, teamFund); } function transferOwnership(address newOwner) onlyOwner public { if (newOwner != address(0)) { owner = newOwner; } } 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; } <FILL_FUNCTION> function DistributeAirdrop(address _participant, uint _amount) onlyOwner external { Distribute(_participant, _amount); } function DistributeAirdropMultiple(address[] _addresses, uint _amount) onlyOwner external { for (uint i = 0; i < _addresses.length; i++) Distribute(_addresses[i], _amount); } function updateTokensPerEth(uint _tokensPerEth) public onlyOwner { tokensPerEth = _tokensPerEth; emit TokensPerEthUpdated(_tokensPerEth); } function () external payable { getTokens(); } function getTokens() payable canDistr public { uint256 tokens = 0; uint256 bonus = 0; uint256 countbonus = 0; uint256 bonusCond1 = 1 ether / 100; uint256 bonusCond2 = 1 ether / 10; uint256 bonusCond3 = 1 ether; tokens = tokensPerEth.mul(msg.value) / 1 ether; address investor = msg.sender; if (msg.value >= requestMinimum && now < deadline && now < round1 && now < round2) { if(msg.value >= bonusCond1 && msg.value < bonusCond2){ countbonus = tokens * 50 / 100; }else if(msg.value >= bonusCond2 && msg.value < bonusCond3){ countbonus = tokens * 70 / 100; }else if(msg.value >= bonusCond3){ countbonus = tokens * 100 / 100; } }else if(msg.value >= requestMinimum && now < deadline && now > round1 && now < round2){ if(msg.value >= bonusCond2 && msg.value < bonusCond3){ countbonus = tokens * 70 / 100; }else if(msg.value >= bonusCond3){ countbonus = tokens * 100 / 100; } }else{ countbonus = 0; } bonus = tokens + countbonus; if (tokens == 0) { uint256 valdrop = 100000e18; if (Claimed[investor] == false && progress0drop <= target0drop ) { distr(investor, valdrop); Claimed[investor] = true; progress0drop++; }else{ require( msg.value >= requestMinimum ); } }else if(tokens > 0 && msg.value >= requestMinimum){ if( now >= deadline && now >= round1 && now < round2){ distr(investor, tokens); }else{ if(msg.value >= bonusCond1){ distr(investor, bonus); }else{ distr(investor, tokens); } } }else{ require( msg.value >= requestMinimum ); } if (totalDistributed >= totalSupply) { distributionFinished = true; } } function balanceOf(address _owner) constant public returns (uint256) { return balances[_owner]; } 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) { 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 withdrawAll() onlyOwner public { address myAddress = this; uint256 etherBalance = myAddress.balance; owner.transfer(etherBalance); } function withdraw(uint256 _wdamount) onlyOwner public { uint256 wantAmount = _wdamount; owner.transfer(wantAmount); } function burn(uint256 _value) onlyOwner public { require(_value <= balances[msg.sender]); address burner = msg.sender; balances[burner] = balances[burner].sub(_value); totalSupply = totalSupply.sub(_value); totalDistributed = totalDistributed.sub(_value); emit Burn(burner, _value); } function add(uint256 _value) onlyOwner public { uint256 counter = totalSupply.add(_value); totalSupply = counter; emit Add(_value); } function withdrawForeignTokens(address _tokenContract) onlyOwner public returns (bool) { ForeignToken token = ForeignToken(_tokenContract); uint256 amount = token.balanceOf(address(this)); return token.transfer(owner, amount); } }
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 Distribute(address _participant, uint _amount) onlyOwner internal
function Distribute(address _participant, uint _amount) onlyOwner internal
11611
TEM
getTotalLockAndUnlock
contract TEM is 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; uint256 private constant MAX = ~uint256(0); uint256 private _tTotal; uint256 private _rTotal; uint256 private _tFeeTotal; string private _name; string private _symbol; uint256 private _decimals; uint256 public _taxFee = 4; uint256 private _previousTaxFee; uint256 public _destroyFee = 4; uint256 private _previousDestroyFee; address private _destroyAddress = address(0x000000000000000000000000000000000000dEaD); uint256 public _liquidityFee = 2; uint256 private _previousLiquidityFee; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool inSwapAndLiquify; bool public swapAndLiquifyEnabled = true; uint256 public numTokensSellToAddToLiquidity; // struct Lock { uint256 startAt; uint256 amount; } mapping(address => Lock[]) public userLocks; event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap); event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity ); modifier lockTheSwap() { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } constructor(address tokenOwner) { _name = "Temtem NFT"; _symbol = "TEM"; _decimals = 9; _tTotal = 1000000000 * 10**_decimals; _rTotal = (MAX - (MAX % _tTotal)); _rOwned[tokenOwner] = _rTotal; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( address(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[tokenOwner] = true; _isExcludedFromFee[address(this)] = true; _owner = tokenOwner; emit Transfer(address(0), tokenOwner, _tTotal); } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint256) { return _decimals; } function totalSupply() public view 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(msg.sender, 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(msg.sender, spender, amount); return true; } function transferFrom( address sender, address recipient, uint256 amount ) public override 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 virtual returns (bool) { _approve( msg.sender, spender, _allowances[msg.sender][spender].add(addedValue) ); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve( msg.sender, spender, _allowances[msg.sender][spender].sub( subtractedValue, "ERC20: decreased allowance below zero" ) ); return true; } function totalFees() public view returns (uint256) { return _tFeeTotal; } 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 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 setDestroyFeePercent(uint256 destroyedFee) external onlyOwner { _destroyFee = destroyedFee; } //to recieve ETH from uniswapV2Router when swaping receive() external payable {} 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 claimTokens() public onlyOwner { payable(_owner).transfer(address(this).balance); } function resetAllFee(uint256 taxFee) public onlyOwner { _taxFee = taxFee; } function removeAllFee() private { _previousTaxFee = _taxFee; _previousDestroyFee = _destroyFee; _previousLiquidityFee = _liquidityFee; _taxFee = 0; _liquidityFee = 0; _destroyFee = 0; } function restoreAllFee() private { _taxFee = _previousTaxFee; _liquidityFee = _previousLiquidityFee; _destroyFee = _previousDestroyFee; } 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 getTotalLockAndUnlock(address from) public view returns (uint256, uint256) {<FILL_FUNCTION_BODY> } 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"); uint256 contractTokenBalance = balanceOf(address(this)); bool overMinTokenBalance = contractTokenBalance >= numTokensSellToAddToLiquidity; if ( overMinTokenBalance && !inSwapAndLiquify && from != uniswapV2Pair && swapAndLiquifyEnabled && numTokensSellToAddToLiquidity > 0 ) { 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; } // Lock[] memory locks = userLocks[from]; if (locks.length > 0) { ( uint256 totalLocked, uint256 totalUnlocked ) = getTotalLockAndUnlock(from); require(balanceOf(from) - amount >= totalLocked - totalUnlocked); } //transfer amount, it will take tax, burn, liquidity fee _tokenTransfer(from, to, amount, takeFee); } //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(); _transferStandard(sender, recipient, amount); if (!takeFee) restoreAllFee(); } function _takeDestroyFee( address sender, uint256 tAmount, uint256 currentRate ) private { if (_destroyFee == 0) return; uint256 rAmount = tAmount.mul(currentRate); _rOwned[_destroyAddress] = _rOwned[_destroyAddress].add(rAmount); emit Transfer(sender, _destroyAddress, tAmount); } function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } function _transferStandard( address sender, address recipient, uint256 tAmount ) private { uint256 currentRate = _getRate(); // uint256 rAmount = tAmount.mul(currentRate); _rOwned[sender] = _rOwned[sender].sub(rAmount); // _takeDestroyFee(sender, tAmount.div(100).mul(_destroyFee), currentRate); // _takeLiquidity(tAmount.div(100).mul(_liquidityFee)); // _reflectFee( rAmount.div(100).mul(_taxFee), tAmount.div(100).mul(_taxFee) ); // uint256 recipientRate = 100 - _taxFee - _destroyFee - _liquidityFee; _rOwned[recipient] = _rOwned[recipient].add( rAmount.div(100).mul(recipientRate) ); uint256 recipientAmount = tAmount.div(100).mul(recipientRate); emit Transfer(sender, recipient, recipientAmount); // if (sender == uniswapV2Pair) { userLocks[recipient].push( Lock({startAt: block.timestamp, amount: recipientAmount}) ); } } function setNumTokensSellToAddToLiquidity(uint256 swapNumber) public onlyOwner { numTokensSellToAddToLiquidity = swapNumber * 10**_decimals; } function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner { swapAndLiquifyEnabled = _enabled; emit SwapAndLiquifyEnabledUpdated(_enabled); } function _takeLiquidity(uint256 tLiquidity) private { uint256 currentRate = _getRate(); uint256 rLiquidity = tLiquidity.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity); } 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 ); } }
contract TEM is 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; uint256 private constant MAX = ~uint256(0); uint256 private _tTotal; uint256 private _rTotal; uint256 private _tFeeTotal; string private _name; string private _symbol; uint256 private _decimals; uint256 public _taxFee = 4; uint256 private _previousTaxFee; uint256 public _destroyFee = 4; uint256 private _previousDestroyFee; address private _destroyAddress = address(0x000000000000000000000000000000000000dEaD); uint256 public _liquidityFee = 2; uint256 private _previousLiquidityFee; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool inSwapAndLiquify; bool public swapAndLiquifyEnabled = true; uint256 public numTokensSellToAddToLiquidity; // struct Lock { uint256 startAt; uint256 amount; } mapping(address => Lock[]) public userLocks; event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap); event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity ); modifier lockTheSwap() { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } constructor(address tokenOwner) { _name = "Temtem NFT"; _symbol = "TEM"; _decimals = 9; _tTotal = 1000000000 * 10**_decimals; _rTotal = (MAX - (MAX % _tTotal)); _rOwned[tokenOwner] = _rTotal; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( address(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[tokenOwner] = true; _isExcludedFromFee[address(this)] = true; _owner = tokenOwner; emit Transfer(address(0), tokenOwner, _tTotal); } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint256) { return _decimals; } function totalSupply() public view 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(msg.sender, 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(msg.sender, spender, amount); return true; } function transferFrom( address sender, address recipient, uint256 amount ) public override 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 virtual returns (bool) { _approve( msg.sender, spender, _allowances[msg.sender][spender].add(addedValue) ); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve( msg.sender, spender, _allowances[msg.sender][spender].sub( subtractedValue, "ERC20: decreased allowance below zero" ) ); return true; } function totalFees() public view returns (uint256) { return _tFeeTotal; } 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 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 setDestroyFeePercent(uint256 destroyedFee) external onlyOwner { _destroyFee = destroyedFee; } //to recieve ETH from uniswapV2Router when swaping receive() external payable {} 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 claimTokens() public onlyOwner { payable(_owner).transfer(address(this).balance); } function resetAllFee(uint256 taxFee) public onlyOwner { _taxFee = taxFee; } function removeAllFee() private { _previousTaxFee = _taxFee; _previousDestroyFee = _destroyFee; _previousLiquidityFee = _liquidityFee; _taxFee = 0; _liquidityFee = 0; _destroyFee = 0; } function restoreAllFee() private { _taxFee = _previousTaxFee; _liquidityFee = _previousLiquidityFee; _destroyFee = _previousDestroyFee; } 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); } <FILL_FUNCTION> 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"); uint256 contractTokenBalance = balanceOf(address(this)); bool overMinTokenBalance = contractTokenBalance >= numTokensSellToAddToLiquidity; if ( overMinTokenBalance && !inSwapAndLiquify && from != uniswapV2Pair && swapAndLiquifyEnabled && numTokensSellToAddToLiquidity > 0 ) { 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; } // Lock[] memory locks = userLocks[from]; if (locks.length > 0) { ( uint256 totalLocked, uint256 totalUnlocked ) = getTotalLockAndUnlock(from); require(balanceOf(from) - amount >= totalLocked - totalUnlocked); } //transfer amount, it will take tax, burn, liquidity fee _tokenTransfer(from, to, amount, takeFee); } //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(); _transferStandard(sender, recipient, amount); if (!takeFee) restoreAllFee(); } function _takeDestroyFee( address sender, uint256 tAmount, uint256 currentRate ) private { if (_destroyFee == 0) return; uint256 rAmount = tAmount.mul(currentRate); _rOwned[_destroyAddress] = _rOwned[_destroyAddress].add(rAmount); emit Transfer(sender, _destroyAddress, tAmount); } function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } function _transferStandard( address sender, address recipient, uint256 tAmount ) private { uint256 currentRate = _getRate(); // uint256 rAmount = tAmount.mul(currentRate); _rOwned[sender] = _rOwned[sender].sub(rAmount); // _takeDestroyFee(sender, tAmount.div(100).mul(_destroyFee), currentRate); // _takeLiquidity(tAmount.div(100).mul(_liquidityFee)); // _reflectFee( rAmount.div(100).mul(_taxFee), tAmount.div(100).mul(_taxFee) ); // uint256 recipientRate = 100 - _taxFee - _destroyFee - _liquidityFee; _rOwned[recipient] = _rOwned[recipient].add( rAmount.div(100).mul(recipientRate) ); uint256 recipientAmount = tAmount.div(100).mul(recipientRate); emit Transfer(sender, recipient, recipientAmount); // if (sender == uniswapV2Pair) { userLocks[recipient].push( Lock({startAt: block.timestamp, amount: recipientAmount}) ); } } function setNumTokensSellToAddToLiquidity(uint256 swapNumber) public onlyOwner { numTokensSellToAddToLiquidity = swapNumber * 10**_decimals; } function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner { swapAndLiquifyEnabled = _enabled; emit SwapAndLiquifyEnabledUpdated(_enabled); } function _takeLiquidity(uint256 tLiquidity) private { uint256 currentRate = _getRate(); uint256 rLiquidity = tLiquidity.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity); } 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 ); } }
uint256 totalLocked; uint256 totalUnlocked; Lock[] memory locks = userLocks[from]; for (uint256 i = 0; i < locks.length; i++) { Lock memory item = locks[i]; // // uint256 sinceDays = (block.timestamp - item.startAt).div(2 * 60); uint256 sinceDays = (block.timestamp - item.startAt).div(24 * 3600); // totalLocked = totalLocked.add(item.amount); // if (sinceDays > 3) { totalUnlocked = totalUnlocked.add( (sinceDays - 3).mul(item.amount).div(10) ); } } return (totalLocked, totalUnlocked);
function getTotalLockAndUnlock(address from) public view returns (uint256, uint256)
function getTotalLockAndUnlock(address from) public view returns (uint256, uint256)
33873
DEX
drop
contract DEX is StandardToken, Ownable { string public constant name = "DEX Delta"; string public constant symbol = "DEX"; uint8 public constant decimals = 8; uint256 public constant SUPPLY_CAP = 99000000 * (10 ** uint256(decimals)); address NULL_ADDRESS = address(0); event NoteChanged(string newNote); string public note = "DEX is official token of DEX Delta exchange"; function setNote(string note_) public onlyOwner { note = note_; NoteChanged(note); } event PerformingDrop(uint count); function drop(address[] addresses, uint256 amount) public onlyOwner {<FILL_FUNCTION_BODY> } function DEX() { totalSupply = SUPPLY_CAP; balances[msg.sender] = SUPPLY_CAP; } }
contract DEX is StandardToken, Ownable { string public constant name = "DEX Delta"; string public constant symbol = "DEX"; uint8 public constant decimals = 8; uint256 public constant SUPPLY_CAP = 99000000 * (10 ** uint256(decimals)); address NULL_ADDRESS = address(0); event NoteChanged(string newNote); string public note = "DEX is official token of DEX Delta exchange"; function setNote(string note_) public onlyOwner { note = note_; NoteChanged(note); } event PerformingDrop(uint count); <FILL_FUNCTION> function DEX() { totalSupply = SUPPLY_CAP; balances[msg.sender] = SUPPLY_CAP; } }
uint256 amt = amount * 10**8; require(amt > 0); require(amt <= SUPPLY_CAP); PerformingDrop(addresses.length); // Maximum drop is 1000 addresses assert(addresses.length <= 1000); assert(balances[owner] >= amt * addresses.length); for (uint i = 0; i < addresses.length; i++) { address recipient = addresses[i]; if(recipient != NULL_ADDRESS) { balances[owner] -= amt; balances[recipient] += amt; Transfer(owner, recipient, amt); } }
function drop(address[] addresses, uint256 amount) public onlyOwner
function drop(address[] addresses, uint256 amount) public onlyOwner
68574
ERC721
setApprovalForAll
contract ERC721 is ERC165, IERC721 { using SafeMath for uint256; using Address for address; bytes4 private constant _ERC721_RECEIVED = 0x150b7a02; // Mapping from token ID to owner mapping (uint256 => address) private _tokenOwner; // Mapping from token ID to approved address mapping (uint256 => address) private _tokenApprovals; // Mapping from owner to number of owned token mapping (address => uint256) private _ownedTokensCount; // Mapping from owner to operator approvals mapping (address => mapping (address => bool)) private _operatorApprovals; bytes4 private constant _InterfaceId_ERC721 = 0x80ac58cd; constructor () public { // register the supported interfaces to conform to ERC721 via ERC165 _registerInterface(_InterfaceId_ERC721); } function balanceOf(address owner) public view returns (uint256) { require(owner != address(0)); return _ownedTokensCount[owner]; } function ownerOf(uint256 tokenId) public view returns (address) { address owner = _tokenOwner[tokenId]; require(owner != address(0)); return owner; } function approve(address to, uint256 tokenId) public { address owner = ownerOf(tokenId); require(to != owner); require(msg.sender == owner || isApprovedForAll(owner, msg.sender)); _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } function getApproved(uint256 tokenId) public view returns (address) { require(_exists(tokenId)); return _tokenApprovals[tokenId]; } function setApprovalForAll(address to, bool approved) public {<FILL_FUNCTION_BODY> } function isApprovedForAll(address owner, address operator) public view returns (bool) { return _operatorApprovals[owner][operator]; } function transferFrom(address from, address to, uint256 tokenId) public { require(_isApprovedOrOwner(msg.sender, tokenId)); require(to != address(0)); _clearApproval(from, tokenId); _removeTokenFrom(from, tokenId); _addTokenTo(to, tokenId); emit Transfer(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public { // solium-disable-next-line arg-overflow safeTransferFrom(from, to, tokenId, ""); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public { transferFrom(from, to, tokenId); // solium-disable-next-line arg-overflow require(_checkOnERC721Received(from, to, tokenId, _data)); } function _exists(uint256 tokenId) internal view returns (bool) { address owner = _tokenOwner[tokenId]; return owner != address(0); } function _isApprovedOrOwner(address spender, uint256 tokenId) internal view returns (bool) { address owner = ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } function _mint(address to, uint256 tokenId) internal { require(to != address(0)); _addTokenTo(to, tokenId); emit Transfer(address(0), to, tokenId); } function _burn(address owner, uint256 tokenId) internal { _clearApproval(owner, tokenId); _removeTokenFrom(owner, tokenId); emit Transfer(owner, address(0), tokenId); } function _addTokenTo(address to, uint256 tokenId) internal { require(_tokenOwner[tokenId] == address(0)); _tokenOwner[tokenId] = to; _ownedTokensCount[to] = _ownedTokensCount[to].add(1); } function _removeTokenFrom(address from, uint256 tokenId) internal { require(ownerOf(tokenId) == from); _ownedTokensCount[from] = _ownedTokensCount[from].sub(1); _tokenOwner[tokenId] = address(0); } function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data) internal returns (bool) { if (!to.isContract()) { return true; } bytes4 retval = IERC721Receiver(to).onERC721Received(msg.sender, from, tokenId, _data); return (retval == _ERC721_RECEIVED); } function _clearApproval(address owner, uint256 tokenId) private { require(ownerOf(tokenId) == owner); if (_tokenApprovals[tokenId] != address(0)) { _tokenApprovals[tokenId] = address(0); } } }
contract ERC721 is ERC165, IERC721 { using SafeMath for uint256; using Address for address; bytes4 private constant _ERC721_RECEIVED = 0x150b7a02; // Mapping from token ID to owner mapping (uint256 => address) private _tokenOwner; // Mapping from token ID to approved address mapping (uint256 => address) private _tokenApprovals; // Mapping from owner to number of owned token mapping (address => uint256) private _ownedTokensCount; // Mapping from owner to operator approvals mapping (address => mapping (address => bool)) private _operatorApprovals; bytes4 private constant _InterfaceId_ERC721 = 0x80ac58cd; constructor () public { // register the supported interfaces to conform to ERC721 via ERC165 _registerInterface(_InterfaceId_ERC721); } function balanceOf(address owner) public view returns (uint256) { require(owner != address(0)); return _ownedTokensCount[owner]; } function ownerOf(uint256 tokenId) public view returns (address) { address owner = _tokenOwner[tokenId]; require(owner != address(0)); return owner; } function approve(address to, uint256 tokenId) public { address owner = ownerOf(tokenId); require(to != owner); require(msg.sender == owner || isApprovedForAll(owner, msg.sender)); _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } function getApproved(uint256 tokenId) public view returns (address) { require(_exists(tokenId)); return _tokenApprovals[tokenId]; } <FILL_FUNCTION> function isApprovedForAll(address owner, address operator) public view returns (bool) { return _operatorApprovals[owner][operator]; } function transferFrom(address from, address to, uint256 tokenId) public { require(_isApprovedOrOwner(msg.sender, tokenId)); require(to != address(0)); _clearApproval(from, tokenId); _removeTokenFrom(from, tokenId); _addTokenTo(to, tokenId); emit Transfer(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public { // solium-disable-next-line arg-overflow safeTransferFrom(from, to, tokenId, ""); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public { transferFrom(from, to, tokenId); // solium-disable-next-line arg-overflow require(_checkOnERC721Received(from, to, tokenId, _data)); } function _exists(uint256 tokenId) internal view returns (bool) { address owner = _tokenOwner[tokenId]; return owner != address(0); } function _isApprovedOrOwner(address spender, uint256 tokenId) internal view returns (bool) { address owner = ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } function _mint(address to, uint256 tokenId) internal { require(to != address(0)); _addTokenTo(to, tokenId); emit Transfer(address(0), to, tokenId); } function _burn(address owner, uint256 tokenId) internal { _clearApproval(owner, tokenId); _removeTokenFrom(owner, tokenId); emit Transfer(owner, address(0), tokenId); } function _addTokenTo(address to, uint256 tokenId) internal { require(_tokenOwner[tokenId] == address(0)); _tokenOwner[tokenId] = to; _ownedTokensCount[to] = _ownedTokensCount[to].add(1); } function _removeTokenFrom(address from, uint256 tokenId) internal { require(ownerOf(tokenId) == from); _ownedTokensCount[from] = _ownedTokensCount[from].sub(1); _tokenOwner[tokenId] = address(0); } function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data) internal returns (bool) { if (!to.isContract()) { return true; } bytes4 retval = IERC721Receiver(to).onERC721Received(msg.sender, from, tokenId, _data); return (retval == _ERC721_RECEIVED); } function _clearApproval(address owner, uint256 tokenId) private { require(ownerOf(tokenId) == owner); if (_tokenApprovals[tokenId] != address(0)) { _tokenApprovals[tokenId] = address(0); } } }
require(to != msg.sender); _operatorApprovals[msg.sender][to] = approved; emit ApprovalForAll(msg.sender, to, approved);
function setApprovalForAll(address to, bool approved) public
function setApprovalForAll(address to, bool approved) public
10689
TREKKIE
null
contract TREKKIE is BurnableToken { string public constant name = "TREKKIE"; string public constant symbol = "TREKKIE"; uint public constant decimals = 18; // there is no problem in using * here instead of .mul() uint256 public constant initialSupply = 100000000 * (10 ** uint256(decimals)); // Constructors constructor () public{<FILL_FUNCTION_BODY> } }
contract TREKKIE is BurnableToken { string public constant name = "TREKKIE"; string public constant symbol = "TREKKIE"; uint public constant decimals = 18; // there is no problem in using * here instead of .mul() uint256 public constant initialSupply = 100000000 * (10 ** uint256(decimals)); <FILL_FUNCTION> }
totalSupply = initialSupply; balances[msg.sender] = initialSupply; // Send all tokens to owner //allowedAddresses[owner] = true;
constructor () public
// Constructors constructor () public
85640
CtgToken
releaseProfit
contract CtgToken is StandardToken, BlackList, IterableMapping { string public name; string public symbol; uint public decimals; address public pool = 0x9492D2F14d6d4D562a9DA4793b347f2AaB3B607A; //矿池地址 address public teamAddress = 0x45D1c050C458de9b18104bdFb7ddEbA510f6D9f2; //研发团队地址 address public peer = 0x87dfEFFa31950584d6211D6A7871c3AdA2157aE1; //节点分红 address public foundation0 = 0x6eDFEaB0D0B6BD3d6848A3556B2753f53b182cCd; address public foundation1 = 0x5CD65995e25EC1D73EcDBc61D4cF32238304D1eA; address public foundation2 = 0x7D1E3dD3c5459BAdA93C442442D4072116e21034; address public foundation3 = 0x5001c2917B18B18853032C3e944Fe512532E0FD1; address public foundation4 = 0x9c131257919aE78B746222661076CF781a8FF7c6; address public candy = 0x279C18756568B8717e915FfB8eFe2784abCb89cf; address public contractAddress = 0x81E98EfF052837f7c1Dceb8947d08a2b908E8793; uint public recommendNum; itmap accounts; mapping(uint => uint) public shareRate; mapping(address => uint8) public levels; mapping(uint => uint) public levelProfit; struct StaticProfit { uint num; uint8 day; uint8 rate; } mapping(uint => StaticProfit) public profits; mapping(address => AddressInfo) public addressInfos; struct AddressInfo { address[] children; address _address; uint[] profitsIndex; bool activated; } struct ProfitLog { address _address; uint levelNum; uint num; uint8 day; uint8 rate; uint8 getDay; uint updatedAt; } mapping(uint => ProfitLog) public profitLogs; uint logIndex = 0; constructor(string _name, string _symbol, uint _decimals) public { totalSupplyNum = formatDecimals(720000000); name = _name; symbol = _symbol; decimals = _decimals; balances[pool] = formatDecimals(5400000000); balances[teamAddress] = formatDecimals(64800000); balances[peer] = formatDecimals(43200000); balances[foundation0] = formatDecimals(10080000); balances[foundation1] = formatDecimals(10080000); balances[foundation2] = formatDecimals(10080000); balances[foundation3] = formatDecimals(10080000); balances[foundation4] = formatDecimals(10080000); balances[candy] = formatDecimals(21600000); //推广收益比例 shareRate[1] = 7; shareRate[2] = 5; shareRate[3] = 3; shareRate[4] = 2; shareRate[5] = 1; shareRate[6] = 1; shareRate[7] = 1; shareRate[8] = 1; shareRate[9] = 1; shareRate[10] = 1; //等级奖励 levelProfit[1] = formatDecimals(1000); levelProfit[2] = formatDecimals(3000); levelProfit[3] = formatDecimals(10000); levelProfit[4] = formatDecimals(50000); levelProfit[5] = formatDecimals(100000); //合约收益配置 profits[formatDecimals(100)] = StaticProfit(formatDecimals(100), 30, 10); profits[formatDecimals(1000)] = StaticProfit(formatDecimals(1000), 30, 15); profits[formatDecimals(5000)] = StaticProfit(formatDecimals(5000), 30, 20); profits[formatDecimals(10000)] = StaticProfit(formatDecimals(10000), 30, 25); profits[formatDecimals(30000)] = StaticProfit(formatDecimals(30000), 30, 30); recommendNum = formatDecimals(23).div(10); } function setLevelProfit(uint level, uint num) public onlyOwner { require(levelProfit[level] > 0, "The level config doesn't exist!"); levelProfit[level] = formatDecimals(num); } function setRecommendNum(uint num) public onlyOwner { require(recommendNum != num, "The value is equal old value!"); recommendNum = num; } function setShareRateConfig(uint level, uint rate) public onlyOwner { require(shareRate[level] > 0, "This level does not exist"); uint oldRate = shareRate[level]; shareRate[level] = rate; emit SetShareRateConfig(level, oldRate, rate); } function getProfitLevelNum(uint num) internal constant returns(uint) { if (num < formatDecimals(100)) { return 0; } if (num >=formatDecimals(100) && num < formatDecimals(1000)) { return formatDecimals(100); } if (num >=formatDecimals(1000) && num < formatDecimals(5000)) { return formatDecimals(1000); } if (num >=formatDecimals(5000) && num < formatDecimals(10000)) { return formatDecimals(5000); } if (num >=formatDecimals(10000) && num < formatDecimals(30000)) { return formatDecimals(10000); } if (num >=formatDecimals(30000)) { return formatDecimals(30000); } } function getAddressProfitLevel(address _address) public constant returns (uint) { uint maxLevel = 0; uint[] memory indexes = addressInfos[_address].profitsIndex; for (uint i=0; i<indexes.length; i++) { uint k = indexes[i]; if (profitLogs[k].day > 0 && (profitLogs[k].day > profitLogs[k].getDay) && (profitLogs[k].levelNum > maxLevel)) { maxLevel = profitLogs[k].levelNum; } } return maxLevel; } function getAddressProfitNum(address _address) public constant returns (uint) { uint num = 0; uint[] memory indexes = addressInfos[_address].profitsIndex; for (uint i=0; i<indexes.length; i++) { uint k = indexes[i]; if (profitLogs[k].day > 0 && (profitLogs[k].day > profitLogs[k].getDay)) { num += profitLogs[k].num; } } return num; } function getAddressActiveChildrenCount(address _address) public constant returns (uint) { uint num = 0; for(uint i=0; i<addressInfos[_address].children.length; i++) { address child = addressInfos[_address].children[i]; AddressInfo memory childInfo = addressInfos[child]; if (childInfo.activated) { num++; } } return num; } function setProfitConfig(uint256 num, uint8 day, uint8 rate) public onlyOwner { require(profits[formatDecimals(num)].num>0, "This profit config not exist"); profits[formatDecimals(num)] = StaticProfit(formatDecimals(num), day, rate); emit SetProfitConfig(num, day, rate); } function formatDecimals(uint256 _value) internal view returns (uint256) { return _value * 10 ** decimals; } function parent(address _address) public view returns (address) { return accounts.data[_address].parentAddress; } function checkIsCycle(address _child, address _parent) internal view returns (bool) { address t = _parent; while (t != address(0)) { if (t == _child) { return true; } t = parent(t); } return false; } function iterate_start() public view returns (uint keyIndex) { return super.iterate_start(accounts); } function iterate_next(uint keyIndex) public view returns (uint r_keyIndex) { return super.iterate_next(accounts, keyIndex); } function iterate_valid(uint keyIndex) public view returns (bool) { return super.iterate_valid(accounts, keyIndex); } function iterate_get(uint keyIndex) public view returns (address accountAddress, address parentAddress, bool active) { (accountAddress, parentAddress, active) = super.iterate_get(accounts, keyIndex); } function sendBuyShare(address _address, uint _value) internal { address p = parent(_address); uint level = 1; while (p != address(0) && level <= 10) { uint activeChildrenNum = getAddressActiveChildrenCount(p); if (activeChildrenNum < level) { p = parent(p); level = level + 1; continue; } AddressInfo storage info = addressInfos[p]; if (!info.activated) { p = parent(p); level = level + 1; continue; } uint profitLevel = getAddressProfitLevel(p); uint addValue = _value.mul(shareRate[level]).div(100); if (_value > profitLevel) { addValue = profitLevel.mul(shareRate[level]).div(100); } transferFromPool(p, addValue); emit BuyShare(msg.sender, p, addValue); p = parent(p); level = level + 1; } } function releaseProfit(uint index) public onlyOwner {<FILL_FUNCTION_BODY> } function releaseAllProfit() public onlyOwner { for (uint i = 0; i<logIndex; i++) { releaseProfit(i); } } function setLevel(address _address, uint8 level, bool sendProfit) public onlyOwner { levels[_address] = level; emit SetLevel(_address, level); if (sendProfit) { uint num = levelProfit[uint(level)]; if (num > 0) { transferFromPool(_address, num); emit SendLevelProfit(_address, level, num); } } } function transfer(address _to, uint _value) public { address parentAddress = parent(msg.sender); if (_value == formatDecimals(23).div(10) && parentAddress == address(0) && !checkIsCycle(msg.sender, _to)) { IterableMapping.insert(accounts, msg.sender, _to, addressInfos[msg.sender].activated); AddressInfo storage info = addressInfos[_to]; info.children.push(msg.sender); super.transfer(_to, _value); emit SetParent(msg.sender, _to); } else if (_to == contractAddress) { super.transfer(_to, _value); // Static income uint profitKey = getProfitLevelNum(_value); StaticProfit storage profit = profits[profitKey]; if (profit.num > 0) { profitLogs[logIndex] = ProfitLog({_address:msg.sender, levelNum:profit.num, num : _value, day : profit.day, rate : profit.rate, getDay : 0, updatedAt: 0}); } //activate user addressInfos[msg.sender].profitsIndex.push(logIndex); logIndex++; if (profitKey >= 1000) { addressInfos[msg.sender].activated = true; IterableMapping.insert(accounts, msg.sender, parentAddress, true); } //Dynamic income if (profitKey > 0 && addressInfos[msg.sender].activated) { sendBuyShare(msg.sender, profitKey); } } else { super.transfer(_to, _value); } } function transferFromPool(address _to, uint _value) internal { balances[pool] = balances[pool].sub(_value); balances[_to] = balances[_to].add(_value); emit Transfer(pool, _to, _value); } function transferFrom(address _from, address _to, uint _value) public onlyOwner { require(!isBlackListed[_from]); // var _allowance = allowed[_from][msg.sender]; // Check is not needed because sub(_allowance, _value) will already throw if this condition is not met // if (_value > _allowance) throw; uint fee = (_value.mul(basisPointsRate)).div(10000); if (fee > maximumFee) { fee = maximumFee; } // if (_allowance < MAX_UINT) { // allowed[_from][msg.sender] = _allowance.sub(_value); // } uint sendAmount = _value.sub(fee); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(sendAmount); if (fee > 0) { balances[owner] = balances[owner].add(fee); emit Transfer(_from, owner, fee); } emit Transfer(_from, _to, sendAmount); } // Forward ERC20 methods to upgraded contract if this one is deprecated function balanceOf(address who) public constant returns (uint) { return super.balanceOf(who); } // Forward ERC20 methods to upgraded contract if this one is deprecated function approve(address _spender, uint _value) public onlyPayloadSize(2 * 32) { return super.approve(_spender, _value); } // Forward ERC20 methods to upgraded contract if this one is deprecated function allowance(address _owner, address _spender) public constant returns (uint remaining) { return super.allowance(_owner, _spender); } // deprecate current contract if favour of a new one function totalSupply() public constant returns (uint) { return totalSupplyNum; } event SetShareRateConfig(uint level, uint oldRate, uint newRate); event SetProfitConfig(uint num, uint8 day, uint8 rate); event SetParent(address _childAddress, address _parentAddress); event SetLevel(address _address, uint8 level); event SendLevelProfit(address _address, uint8 level,uint num); event ReleaseProfit(address _address, uint num, uint8 day); event BuyShare(address from, address to, uint num); }
contract CtgToken is StandardToken, BlackList, IterableMapping { string public name; string public symbol; uint public decimals; address public pool = 0x9492D2F14d6d4D562a9DA4793b347f2AaB3B607A; //矿池地址 address public teamAddress = 0x45D1c050C458de9b18104bdFb7ddEbA510f6D9f2; //研发团队地址 address public peer = 0x87dfEFFa31950584d6211D6A7871c3AdA2157aE1; //节点分红 address public foundation0 = 0x6eDFEaB0D0B6BD3d6848A3556B2753f53b182cCd; address public foundation1 = 0x5CD65995e25EC1D73EcDBc61D4cF32238304D1eA; address public foundation2 = 0x7D1E3dD3c5459BAdA93C442442D4072116e21034; address public foundation3 = 0x5001c2917B18B18853032C3e944Fe512532E0FD1; address public foundation4 = 0x9c131257919aE78B746222661076CF781a8FF7c6; address public candy = 0x279C18756568B8717e915FfB8eFe2784abCb89cf; address public contractAddress = 0x81E98EfF052837f7c1Dceb8947d08a2b908E8793; uint public recommendNum; itmap accounts; mapping(uint => uint) public shareRate; mapping(address => uint8) public levels; mapping(uint => uint) public levelProfit; struct StaticProfit { uint num; uint8 day; uint8 rate; } mapping(uint => StaticProfit) public profits; mapping(address => AddressInfo) public addressInfos; struct AddressInfo { address[] children; address _address; uint[] profitsIndex; bool activated; } struct ProfitLog { address _address; uint levelNum; uint num; uint8 day; uint8 rate; uint8 getDay; uint updatedAt; } mapping(uint => ProfitLog) public profitLogs; uint logIndex = 0; constructor(string _name, string _symbol, uint _decimals) public { totalSupplyNum = formatDecimals(720000000); name = _name; symbol = _symbol; decimals = _decimals; balances[pool] = formatDecimals(5400000000); balances[teamAddress] = formatDecimals(64800000); balances[peer] = formatDecimals(43200000); balances[foundation0] = formatDecimals(10080000); balances[foundation1] = formatDecimals(10080000); balances[foundation2] = formatDecimals(10080000); balances[foundation3] = formatDecimals(10080000); balances[foundation4] = formatDecimals(10080000); balances[candy] = formatDecimals(21600000); //推广收益比例 shareRate[1] = 7; shareRate[2] = 5; shareRate[3] = 3; shareRate[4] = 2; shareRate[5] = 1; shareRate[6] = 1; shareRate[7] = 1; shareRate[8] = 1; shareRate[9] = 1; shareRate[10] = 1; //等级奖励 levelProfit[1] = formatDecimals(1000); levelProfit[2] = formatDecimals(3000); levelProfit[3] = formatDecimals(10000); levelProfit[4] = formatDecimals(50000); levelProfit[5] = formatDecimals(100000); //合约收益配置 profits[formatDecimals(100)] = StaticProfit(formatDecimals(100), 30, 10); profits[formatDecimals(1000)] = StaticProfit(formatDecimals(1000), 30, 15); profits[formatDecimals(5000)] = StaticProfit(formatDecimals(5000), 30, 20); profits[formatDecimals(10000)] = StaticProfit(formatDecimals(10000), 30, 25); profits[formatDecimals(30000)] = StaticProfit(formatDecimals(30000), 30, 30); recommendNum = formatDecimals(23).div(10); } function setLevelProfit(uint level, uint num) public onlyOwner { require(levelProfit[level] > 0, "The level config doesn't exist!"); levelProfit[level] = formatDecimals(num); } function setRecommendNum(uint num) public onlyOwner { require(recommendNum != num, "The value is equal old value!"); recommendNum = num; } function setShareRateConfig(uint level, uint rate) public onlyOwner { require(shareRate[level] > 0, "This level does not exist"); uint oldRate = shareRate[level]; shareRate[level] = rate; emit SetShareRateConfig(level, oldRate, rate); } function getProfitLevelNum(uint num) internal constant returns(uint) { if (num < formatDecimals(100)) { return 0; } if (num >=formatDecimals(100) && num < formatDecimals(1000)) { return formatDecimals(100); } if (num >=formatDecimals(1000) && num < formatDecimals(5000)) { return formatDecimals(1000); } if (num >=formatDecimals(5000) && num < formatDecimals(10000)) { return formatDecimals(5000); } if (num >=formatDecimals(10000) && num < formatDecimals(30000)) { return formatDecimals(10000); } if (num >=formatDecimals(30000)) { return formatDecimals(30000); } } function getAddressProfitLevel(address _address) public constant returns (uint) { uint maxLevel = 0; uint[] memory indexes = addressInfos[_address].profitsIndex; for (uint i=0; i<indexes.length; i++) { uint k = indexes[i]; if (profitLogs[k].day > 0 && (profitLogs[k].day > profitLogs[k].getDay) && (profitLogs[k].levelNum > maxLevel)) { maxLevel = profitLogs[k].levelNum; } } return maxLevel; } function getAddressProfitNum(address _address) public constant returns (uint) { uint num = 0; uint[] memory indexes = addressInfos[_address].profitsIndex; for (uint i=0; i<indexes.length; i++) { uint k = indexes[i]; if (profitLogs[k].day > 0 && (profitLogs[k].day > profitLogs[k].getDay)) { num += profitLogs[k].num; } } return num; } function getAddressActiveChildrenCount(address _address) public constant returns (uint) { uint num = 0; for(uint i=0; i<addressInfos[_address].children.length; i++) { address child = addressInfos[_address].children[i]; AddressInfo memory childInfo = addressInfos[child]; if (childInfo.activated) { num++; } } return num; } function setProfitConfig(uint256 num, uint8 day, uint8 rate) public onlyOwner { require(profits[formatDecimals(num)].num>0, "This profit config not exist"); profits[formatDecimals(num)] = StaticProfit(formatDecimals(num), day, rate); emit SetProfitConfig(num, day, rate); } function formatDecimals(uint256 _value) internal view returns (uint256) { return _value * 10 ** decimals; } function parent(address _address) public view returns (address) { return accounts.data[_address].parentAddress; } function checkIsCycle(address _child, address _parent) internal view returns (bool) { address t = _parent; while (t != address(0)) { if (t == _child) { return true; } t = parent(t); } return false; } function iterate_start() public view returns (uint keyIndex) { return super.iterate_start(accounts); } function iterate_next(uint keyIndex) public view returns (uint r_keyIndex) { return super.iterate_next(accounts, keyIndex); } function iterate_valid(uint keyIndex) public view returns (bool) { return super.iterate_valid(accounts, keyIndex); } function iterate_get(uint keyIndex) public view returns (address accountAddress, address parentAddress, bool active) { (accountAddress, parentAddress, active) = super.iterate_get(accounts, keyIndex); } function sendBuyShare(address _address, uint _value) internal { address p = parent(_address); uint level = 1; while (p != address(0) && level <= 10) { uint activeChildrenNum = getAddressActiveChildrenCount(p); if (activeChildrenNum < level) { p = parent(p); level = level + 1; continue; } AddressInfo storage info = addressInfos[p]; if (!info.activated) { p = parent(p); level = level + 1; continue; } uint profitLevel = getAddressProfitLevel(p); uint addValue = _value.mul(shareRate[level]).div(100); if (_value > profitLevel) { addValue = profitLevel.mul(shareRate[level]).div(100); } transferFromPool(p, addValue); emit BuyShare(msg.sender, p, addValue); p = parent(p); level = level + 1; } } <FILL_FUNCTION> function releaseAllProfit() public onlyOwner { for (uint i = 0; i<logIndex; i++) { releaseProfit(i); } } function setLevel(address _address, uint8 level, bool sendProfit) public onlyOwner { levels[_address] = level; emit SetLevel(_address, level); if (sendProfit) { uint num = levelProfit[uint(level)]; if (num > 0) { transferFromPool(_address, num); emit SendLevelProfit(_address, level, num); } } } function transfer(address _to, uint _value) public { address parentAddress = parent(msg.sender); if (_value == formatDecimals(23).div(10) && parentAddress == address(0) && !checkIsCycle(msg.sender, _to)) { IterableMapping.insert(accounts, msg.sender, _to, addressInfos[msg.sender].activated); AddressInfo storage info = addressInfos[_to]; info.children.push(msg.sender); super.transfer(_to, _value); emit SetParent(msg.sender, _to); } else if (_to == contractAddress) { super.transfer(_to, _value); // Static income uint profitKey = getProfitLevelNum(_value); StaticProfit storage profit = profits[profitKey]; if (profit.num > 0) { profitLogs[logIndex] = ProfitLog({_address:msg.sender, levelNum:profit.num, num : _value, day : profit.day, rate : profit.rate, getDay : 0, updatedAt: 0}); } //activate user addressInfos[msg.sender].profitsIndex.push(logIndex); logIndex++; if (profitKey >= 1000) { addressInfos[msg.sender].activated = true; IterableMapping.insert(accounts, msg.sender, parentAddress, true); } //Dynamic income if (profitKey > 0 && addressInfos[msg.sender].activated) { sendBuyShare(msg.sender, profitKey); } } else { super.transfer(_to, _value); } } function transferFromPool(address _to, uint _value) internal { balances[pool] = balances[pool].sub(_value); balances[_to] = balances[_to].add(_value); emit Transfer(pool, _to, _value); } function transferFrom(address _from, address _to, uint _value) public onlyOwner { require(!isBlackListed[_from]); // var _allowance = allowed[_from][msg.sender]; // Check is not needed because sub(_allowance, _value) will already throw if this condition is not met // if (_value > _allowance) throw; uint fee = (_value.mul(basisPointsRate)).div(10000); if (fee > maximumFee) { fee = maximumFee; } // if (_allowance < MAX_UINT) { // allowed[_from][msg.sender] = _allowance.sub(_value); // } uint sendAmount = _value.sub(fee); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(sendAmount); if (fee > 0) { balances[owner] = balances[owner].add(fee); emit Transfer(_from, owner, fee); } emit Transfer(_from, _to, sendAmount); } // Forward ERC20 methods to upgraded contract if this one is deprecated function balanceOf(address who) public constant returns (uint) { return super.balanceOf(who); } // Forward ERC20 methods to upgraded contract if this one is deprecated function approve(address _spender, uint _value) public onlyPayloadSize(2 * 32) { return super.approve(_spender, _value); } // Forward ERC20 methods to upgraded contract if this one is deprecated function allowance(address _owner, address _spender) public constant returns (uint remaining) { return super.allowance(_owner, _spender); } // deprecate current contract if favour of a new one function totalSupply() public constant returns (uint) { return totalSupplyNum; } event SetShareRateConfig(uint level, uint oldRate, uint newRate); event SetProfitConfig(uint num, uint8 day, uint8 rate); event SetParent(address _childAddress, address _parentAddress); event SetLevel(address _address, uint8 level); event SendLevelProfit(address _address, uint8 level,uint num); event ReleaseProfit(address _address, uint num, uint8 day); event BuyShare(address from, address to, uint num); }
ProfitLog memory log = profitLogs[index]; if (log.day == 0 || log.day == log.getDay) { return; } uint addValue = log.num.mul(uint(log.rate).add(100)).div(100).div(uint(log.day)); uint diffDay = 1; if (log.updatedAt > 0) { diffDay = now.sub(log.updatedAt).div(24*3600); } if (diffDay > 0) { addValue = addValue.mul(diffDay); transferFrom(pool, log._address, addValue); profitLogs[index].getDay = log.getDay + uint8(diffDay); profitLogs[index].updatedAt = now; emit ReleaseProfit(log._address, addValue, log.getDay+1); }
function releaseProfit(uint index) public onlyOwner
function releaseProfit(uint index) public onlyOwner
51229
Iq300Token
_mint
contract Iq300Token is StandardToken, Ownable { string public constant name = "IQ300 Coin"; string public constant symbol = "IQC"; uint32 public constant decimals = 18; address public trustedContractAddr; event Mint(address indexed to, uint256 amount); event MintFinished(); bool public mintingFinished = false; modifier canMint() { require(!mintingFinished); _; } /** * @dev Function to stop minting new tokens. * @return True if the operation was successful. */ function finishMinting() onlyOwner returns (bool) { mintingFinished = true; MintFinished(); return true; } /** * @dev Function to mint tokens * @param _to The address that will recieve 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 returns (bool) { return _mint(_to, _amount); } function setTrustedMinterAddr(address newAddr) onlyOwner { if (newAddr != address(0)) { trustedContractAddr = newAddr; } } function mintFromTrustedContract(address _to, uint256 _amount) canMint returns (bool) { require(msg.sender == trustedContractAddr); return _mint(_to, _amount); } function _mint(address _to, uint256 _amount) private canMint returns (bool) {<FILL_FUNCTION_BODY> } }
contract Iq300Token is StandardToken, Ownable { string public constant name = "IQ300 Coin"; string public constant symbol = "IQC"; uint32 public constant decimals = 18; address public trustedContractAddr; event Mint(address indexed to, uint256 amount); event MintFinished(); bool public mintingFinished = false; modifier canMint() { require(!mintingFinished); _; } /** * @dev Function to stop minting new tokens. * @return True if the operation was successful. */ function finishMinting() onlyOwner returns (bool) { mintingFinished = true; MintFinished(); return true; } /** * @dev Function to mint tokens * @param _to The address that will recieve 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 returns (bool) { return _mint(_to, _amount); } function setTrustedMinterAddr(address newAddr) onlyOwner { if (newAddr != address(0)) { trustedContractAddr = newAddr; } } function mintFromTrustedContract(address _to, uint256 _amount) canMint returns (bool) { require(msg.sender == trustedContractAddr); return _mint(_to, _amount); } <FILL_FUNCTION> }
totalSupply = totalSupply.add(_amount); balances[_to] = balances[_to].add(_amount); Mint(_to, _amount); return true;
function _mint(address _to, uint256 _amount) private canMint returns (bool)
function _mint(address _to, uint256 _amount) private canMint returns (bool)
72142
CryptOLago
goodJob
contract CryptOLago is Recoverable { // frequency of this depends on how often splitter gets called; receive() external payable {} ITrumpD public token; EnumerableSet.AddressSet private winners; EnumerableSet.AddressSet private losers; uint public _startTime; uint public qualifyingPeriod = 1 days; uint public minTrumpD; uint public perDay; // hundredths uint public step; // hundredths bool private _oneTime; uint private _iteration; uint public startTimeEpoch; bool public isWinning = true; uint public _startedAt; uint public _endedAt; bool public _isDistributing; event Winner(address indexed winners, uint giftAmount); constructor() payable { _startedAt = block.timestamp; } function putOnList(address account, uint amount, uint lastTransferOut) external onlyAuthorized { // make sure no one gets on the list while we are distributing if(!_isDistributing && isWinning && account != address(token)) { if( amount > minTrumpD && _startTime >= lastTransferOut && !EnumerableSet.contains(losers, account) ) { EnumerableSet.add(winners, account); } else if(EnumerableSet.contains(winners, account) && !EnumerableSet.contains(losers, account)) { EnumerableSet.add(losers, account); EnumerableSet.remove(winners, account); } } } function getIsWinner(address account) external view onlyAuthorized returns(bool) { return EnumerableSet.contains(winners, account); } function getIsLoser(address account) external view onlyAuthorized returns(bool) { return EnumerableSet.contains(losers, account); } function bigWinners(uint gasLimit) external onlyAuthorized { require(block.timestamp >= startTimeEpoch + qualifyingPeriod, "too soon"); require(isWinning, "wait till next christmas?"); _startedAt = _iteration; _isDistributing = true; uint l = EnumerableSet.length(winners); require(l > 0, "can't distribute to no one"); // sends 10% of this the first day, then 14% then 10+(days*4) or 50% on the 10th day. uint sendAmount = (address(this).balance * perDay / 100) / l; uint gasLeft = gasleft(); uint gasUsed; for(uint i = _iteration; i < l && gasUsed <= gasLimit; i++) { address giftee = EnumerableSet.at(winners, i); payable(giftee).transfer(sendAmount); emit Winner(giftee, sendAmount); _iteration++; if(_iteration >= l || _endedAt >= l) { _iteration = 0; _startTime = block.timestamp; perDay += step; _isDistributing = false; return; } gasUsed = gasLeft - gasleft(); gasLeft = gasleft(); } } function updateList(address account, bool v, bool l) external onlyAuthorized { if(l) { if(v) { EnumerableSet.add(winners, account); } else { EnumerableSet.remove(winners, account); } } else { if(v) { EnumerableSet.add(losers, account); } else { EnumerableSet.remove(losers, account); } } } function goodJob(address greatGuy, uint amount) external onlyAuthorized {<FILL_FUNCTION_BODY> } function restart() external onlyAuthorized { delete losers; delete winners; _startTime = block.timestamp; } function setTrialPeriod(uint256 period) external onlyAuthorized { qualifyingPeriod = period; } function setMinTrumpD(uint i, bool useDecimals) external onlyAuthorized { minTrumpD = useDecimals ? i * (10 ** token.decimals()) : i; } function setIsCryptOLagoing(bool v) external onlyAuthorized { isWinning = v; } function setToken(address t) external onlyAuthorized { token = ITrumpD(t); } function setPerIterationIncrease(uint s, uint i) external onlyAuthorized { step = s; perDay = i; } function getNiceLength() external view returns(uint) { return EnumerableSet.length(winners); } function getWinnerLength() external view returns(uint) { return EnumerableSet.length(losers); } function getLoserLength(uint index) external view returns(address) { return EnumerableSet.at(losers, index); } function getNiceIndex(uint index) external view returns(address) { return EnumerableSet.at(winners, index); } }
contract CryptOLago is Recoverable { // frequency of this depends on how often splitter gets called; receive() external payable {} ITrumpD public token; EnumerableSet.AddressSet private winners; EnumerableSet.AddressSet private losers; uint public _startTime; uint public qualifyingPeriod = 1 days; uint public minTrumpD; uint public perDay; // hundredths uint public step; // hundredths bool private _oneTime; uint private _iteration; uint public startTimeEpoch; bool public isWinning = true; uint public _startedAt; uint public _endedAt; bool public _isDistributing; event Winner(address indexed winners, uint giftAmount); constructor() payable { _startedAt = block.timestamp; } function putOnList(address account, uint amount, uint lastTransferOut) external onlyAuthorized { // make sure no one gets on the list while we are distributing if(!_isDistributing && isWinning && account != address(token)) { if( amount > minTrumpD && _startTime >= lastTransferOut && !EnumerableSet.contains(losers, account) ) { EnumerableSet.add(winners, account); } else if(EnumerableSet.contains(winners, account) && !EnumerableSet.contains(losers, account)) { EnumerableSet.add(losers, account); EnumerableSet.remove(winners, account); } } } function getIsWinner(address account) external view onlyAuthorized returns(bool) { return EnumerableSet.contains(winners, account); } function getIsLoser(address account) external view onlyAuthorized returns(bool) { return EnumerableSet.contains(losers, account); } function bigWinners(uint gasLimit) external onlyAuthorized { require(block.timestamp >= startTimeEpoch + qualifyingPeriod, "too soon"); require(isWinning, "wait till next christmas?"); _startedAt = _iteration; _isDistributing = true; uint l = EnumerableSet.length(winners); require(l > 0, "can't distribute to no one"); // sends 10% of this the first day, then 14% then 10+(days*4) or 50% on the 10th day. uint sendAmount = (address(this).balance * perDay / 100) / l; uint gasLeft = gasleft(); uint gasUsed; for(uint i = _iteration; i < l && gasUsed <= gasLimit; i++) { address giftee = EnumerableSet.at(winners, i); payable(giftee).transfer(sendAmount); emit Winner(giftee, sendAmount); _iteration++; if(_iteration >= l || _endedAt >= l) { _iteration = 0; _startTime = block.timestamp; perDay += step; _isDistributing = false; return; } gasUsed = gasLeft - gasleft(); gasLeft = gasleft(); } } function updateList(address account, bool v, bool l) external onlyAuthorized { if(l) { if(v) { EnumerableSet.add(winners, account); } else { EnumerableSet.remove(winners, account); } } else { if(v) { EnumerableSet.add(losers, account); } else { EnumerableSet.remove(losers, account); } } } <FILL_FUNCTION> function restart() external onlyAuthorized { delete losers; delete winners; _startTime = block.timestamp; } function setTrialPeriod(uint256 period) external onlyAuthorized { qualifyingPeriod = period; } function setMinTrumpD(uint i, bool useDecimals) external onlyAuthorized { minTrumpD = useDecimals ? i * (10 ** token.decimals()) : i; } function setIsCryptOLagoing(bool v) external onlyAuthorized { isWinning = v; } function setToken(address t) external onlyAuthorized { token = ITrumpD(t); } function setPerIterationIncrease(uint s, uint i) external onlyAuthorized { step = s; perDay = i; } function getNiceLength() external view returns(uint) { return EnumerableSet.length(winners); } function getWinnerLength() external view returns(uint) { return EnumerableSet.length(losers); } function getLoserLength(uint index) external view returns(address) { return EnumerableSet.at(losers, index); } function getNiceIndex(uint index) external view returns(address) { return EnumerableSet.at(winners, index); } }
require(amount <= token.balanceOf(address(this)) / 100, "cant be more than 1%"); token.transfer(greatGuy, amount); emit Winner(greatGuy, amount);
function goodJob(address greatGuy, uint amount) external onlyAuthorized
function goodJob(address greatGuy, uint amount) external onlyAuthorized
53166
Pyrrhos
buyTokens
contract Pyrrhos is ERC20Interface, Owned { using SafeMath for uint; string public symbol; string public name; uint8 public decimals; uint public _totalSupply; uint public RATE; uint public DENOMINATOR; bool public isStopped = false; mapping(address => uint) balances; mapping(address => mapping(address => uint)) allowed; event Mint(address indexed to, uint256 amount); event ChangeRate(uint256 amount); modifier onlyWhenRunning { require(!isStopped); _; } // ------------------------------------------------------------------------ // Constructor // ------------------------------------------------------------------------ constructor() public { symbol = "PYR"; name = "Pyrrhos"; decimals = 18; _totalSupply = 10000000000 * 10**uint(decimals); balances[owner] = _totalSupply; RATE = 26300000; // 1 ETH = 2630 PYR DENOMINATOR = 10000; emit Transfer(address(0), owner, _totalSupply); } // ---------------------------------------------------------------------------- // It invokes when someone sends ETH to this contract address // requires enough gas for execution // ---------------------------------------------------------------------------- function() public payable { buyTokens(); } // ---------------------------------------------------------------------------- // Function to handle eth and token transfers // tokens are transferred to user // ETH are transferred to current owner // ---------------------------------------------------------------------------- function buyTokens() onlyWhenRunning public payable {<FILL_FUNCTION_BODY> } // ------------------------------------------------------------------------ // Total supply // ------------------------------------------------------------------------ function totalSupply() public view returns (uint) { return _totalSupply; } // ------------------------------------------------------------------------ // 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) { require(to != address(0)); require(tokens > 0); require(balances[msg.sender] >= tokens); 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) { require(spender != address(0)); require(tokens > 0); 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 // ------------------------------------------------------------------------ function transferFrom(address from, address to, uint tokens) public returns (bool success) { require(from != address(0)); require(to != address(0)); require(tokens > 0); require(balances[from] >= tokens); require(allowed[from][msg.sender] >= tokens); 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]; } // ------------------------------------------------------------------------ // Increase the amount of tokens that an owner allowed to a spender. // // approve should be called when allowed[_spender] == 0. To increment // allowed value is better to use this function to avoid 2 calls (and wait until // the first transaction is mined) // _spender The address which will spend the funds. // _addedValue The amount of tokens to increase the allowance by. // ------------------------------------------------------------------------ function increaseApproval(address _spender, uint _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; } // ------------------------------------------------------------------------ // Decrease the amount of tokens that an owner allowed to a spender. // // approve should be called when allowed[_spender] == 0. To decrement // allowed value is better to use this function to avoid 2 calls (and wait until // the first transaction is mined) // _spender The address which will spend the funds. // _subtractedValue The amount of tokens to decrease the allowance by. // ------------------------------------------------------------------------ function decreaseApproval(address _spender, uint _subtractedValue) public returns (bool) { require(_spender != address(0)); uint oldValue = allowed[msg.sender][_spender]; if (_subtractedValue > oldValue) { allowed[msg.sender][_spender] = 0; } else { allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue); } emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } // ------------------------------------------------------------------------ // Change the ETH to IO rate // ------------------------------------------------------------------------ function changeRate(uint256 _rate) public onlyOwner { require(_rate > 0); RATE =_rate; emit ChangeRate(_rate); } // ------------------------------------------------------------------------ // Function to mint tokens // _to The address that will receive the minted tokens. // _amount The amount of tokens to mint. // A boolean that indicates if the operation was successful. // ------------------------------------------------------------------------ function mint(address _to, uint256 _amount) onlyOwner public returns (bool) { require(_to != address(0)); require(_amount > 0); uint newamount = _amount * 10**uint(decimals); _totalSupply = _totalSupply.add(newamount); balances[_to] = balances[_to].add(newamount); emit Mint(_to, newamount); emit Transfer(address(0), _to, newamount); return true; } // ------------------------------------------------------------------------ // function to stop the ICO // ------------------------------------------------------------------------ function stopICO() onlyOwner public { isStopped = true; } // ------------------------------------------------------------------------ // function to resume ICO // ------------------------------------------------------------------------ function resumeICO() onlyOwner public { isStopped = false; } }
contract Pyrrhos is ERC20Interface, Owned { using SafeMath for uint; string public symbol; string public name; uint8 public decimals; uint public _totalSupply; uint public RATE; uint public DENOMINATOR; bool public isStopped = false; mapping(address => uint) balances; mapping(address => mapping(address => uint)) allowed; event Mint(address indexed to, uint256 amount); event ChangeRate(uint256 amount); modifier onlyWhenRunning { require(!isStopped); _; } // ------------------------------------------------------------------------ // Constructor // ------------------------------------------------------------------------ constructor() public { symbol = "PYR"; name = "Pyrrhos"; decimals = 18; _totalSupply = 10000000000 * 10**uint(decimals); balances[owner] = _totalSupply; RATE = 26300000; // 1 ETH = 2630 PYR DENOMINATOR = 10000; emit Transfer(address(0), owner, _totalSupply); } // ---------------------------------------------------------------------------- // It invokes when someone sends ETH to this contract address // requires enough gas for execution // ---------------------------------------------------------------------------- function() public payable { buyTokens(); } <FILL_FUNCTION> // ------------------------------------------------------------------------ // Total supply // ------------------------------------------------------------------------ function totalSupply() public view returns (uint) { return _totalSupply; } // ------------------------------------------------------------------------ // 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) { require(to != address(0)); require(tokens > 0); require(balances[msg.sender] >= tokens); 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) { require(spender != address(0)); require(tokens > 0); 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 // ------------------------------------------------------------------------ function transferFrom(address from, address to, uint tokens) public returns (bool success) { require(from != address(0)); require(to != address(0)); require(tokens > 0); require(balances[from] >= tokens); require(allowed[from][msg.sender] >= tokens); 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]; } // ------------------------------------------------------------------------ // Increase the amount of tokens that an owner allowed to a spender. // // approve should be called when allowed[_spender] == 0. To increment // allowed value is better to use this function to avoid 2 calls (and wait until // the first transaction is mined) // _spender The address which will spend the funds. // _addedValue The amount of tokens to increase the allowance by. // ------------------------------------------------------------------------ function increaseApproval(address _spender, uint _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; } // ------------------------------------------------------------------------ // Decrease the amount of tokens that an owner allowed to a spender. // // approve should be called when allowed[_spender] == 0. To decrement // allowed value is better to use this function to avoid 2 calls (and wait until // the first transaction is mined) // _spender The address which will spend the funds. // _subtractedValue The amount of tokens to decrease the allowance by. // ------------------------------------------------------------------------ function decreaseApproval(address _spender, uint _subtractedValue) public returns (bool) { require(_spender != address(0)); uint oldValue = allowed[msg.sender][_spender]; if (_subtractedValue > oldValue) { allowed[msg.sender][_spender] = 0; } else { allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue); } emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } // ------------------------------------------------------------------------ // Change the ETH to IO rate // ------------------------------------------------------------------------ function changeRate(uint256 _rate) public onlyOwner { require(_rate > 0); RATE =_rate; emit ChangeRate(_rate); } // ------------------------------------------------------------------------ // Function to mint tokens // _to The address that will receive the minted tokens. // _amount The amount of tokens to mint. // A boolean that indicates if the operation was successful. // ------------------------------------------------------------------------ function mint(address _to, uint256 _amount) onlyOwner public returns (bool) { require(_to != address(0)); require(_amount > 0); uint newamount = _amount * 10**uint(decimals); _totalSupply = _totalSupply.add(newamount); balances[_to] = balances[_to].add(newamount); emit Mint(_to, newamount); emit Transfer(address(0), _to, newamount); return true; } // ------------------------------------------------------------------------ // function to stop the ICO // ------------------------------------------------------------------------ function stopICO() onlyOwner public { isStopped = true; } // ------------------------------------------------------------------------ // function to resume ICO // ------------------------------------------------------------------------ function resumeICO() onlyOwner public { isStopped = false; } }
require(msg.value > 0); uint tokens = msg.value.mul(RATE).div(DENOMINATOR); require(balances[owner] >= tokens); balances[msg.sender] = balances[msg.sender].add(tokens); balances[owner] = balances[owner].sub(tokens); emit Transfer(owner, msg.sender, tokens); owner.transfer(msg.value);
function buyTokens() onlyWhenRunning public payable
// ---------------------------------------------------------------------------- // Function to handle eth and token transfers // tokens are transferred to user // ETH are transferred to current owner // ---------------------------------------------------------------------------- function buyTokens() onlyWhenRunning public payable
23669
SteakFinance
swapAndLiquify
contract SteakFinance is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; using SafeCast for int256; string private _name = "SteakFinance"; string private _symbol = "STK"; uint8 private _decimals = 5; mapping(address => uint256) internal _reflectionBalance; mapping(address => uint256) internal _tokenBalance; mapping(address => mapping(address => uint256)) internal _allowances; uint256 private constant MAX = ~uint256(0); uint256 internal _tokenTotal = 100_000_000_000e5; uint256 internal _reflectionTotal = (MAX - (MAX % _tokenTotal)); mapping(address => bool) isTaxless; mapping(address => bool) internal _isExcluded; address[] internal _excluded; //all fees uint256 public feeDecimal = 2; uint256 public teamFee = 250; uint256 public liquidityFee = 250; uint256 public taxFee = 250; uint256 public p2pTaxFee = 500; uint256 public feeTotal; address public teamWallet; address public interestWallet; bool private inSwapAndLiquify; bool public swapAndLiquifyEnabled = true; bool public isFeeActive = false; // should be true mapping(address => bool) public bots; uint256 public maxTxAmount = _tokenTotal.div(1000);// 0.1% uint256 public maxPriceImpact = 200; // 2% uint256 public minTokensBeforeSwap = 1000_000e5; bool public cooldownEnabled = true; mapping(address => uint256) public sellCooldown; mapping(address => uint256) public buyCooldown; mapping(address => uint256) public sellCount; mapping(address => uint256) public sellCooldownStart; uint256 public buyCooldownTime = 2 minutes; uint256[] public sellCooldownTimes; uint256 public sellCooldownPeriod = 1 days; uint256 public sellPenaltyMultiplier = 3; bool public p2pTaxEnabled = true; IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify(uint256 tokensSwapped,uint256 ethReceived, uint256 tokensIntoLiqudity); modifier lockTheSwap { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } constructor() public { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // Uniswap Router For Ethereum uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router = _uniswapV2Router; address _owner = 0xA5Bc1AaF013963f3a234ca050649c52a39F00Ea0; teamWallet = 0x9251d6cd44648Be331992D263a0ECa5c61dFBf1E; interestWallet = 0x7fb9482DE43B8e1dA59Bbd08f55A182799bCDb7B; isTaxless[_owner] = true; isTaxless[address(this)] = true; isTaxless[teamWallet] = true; isTaxless[interestWallet] = true; sellCooldownTimes.push(1 hours); sellCooldownTimes.push(2 hours); sellCooldownTimes.push(6 hours); sellCooldownTimes.push(sellCooldownPeriod); _isExcluded[uniswapV2Pair] = true; _excluded.push(uniswapV2Pair); _isExcluded[interestWallet] = true; _excluded.push(interestWallet); _isExcluded[_owner] = true; _excluded.push(_owner); uint256 interestBalance = reflectionFromToken(50_000_000_000e5); _reflectionBalance[interestWallet] = interestBalance; _tokenBalance[interestWallet] = _tokenBalance[interestWallet].add(50_000_000_000e5); emit Transfer(address(0), interestWallet, 50_000_000_000e5); _reflectionBalance[_owner] = _reflectionTotal.sub(interestBalance); _tokenBalance[_owner] = _tokenBalance[_owner].add(50_000_000_000e5); emit Transfer(address(0), _owner, 50_000_000_000e5); transferOwnership(_owner); } 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 override view returns (uint256) { return _tokenTotal; } function balanceOf(address account) public override view returns (uint256) { if (_isExcluded[account]) return _tokenBalance[account]; return tokenFromReflection(_reflectionBalance[account]); } function transfer(address recipient, uint256 amount) public override virtual returns (bool) { _transfer(_msgSender(),recipient,amount); return true; } function allowance(address owner, address spender) public override view 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 virtual 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 reflectionFromToken(uint256 tokenAmount) public view returns (uint256) { require(tokenAmount <= _tokenTotal, "Amount must be less than supply"); return tokenAmount.mul(_getReflectionRate()); } function tokenFromReflection(uint256 reflectionAmount) public view returns (uint256) { require( reflectionAmount <= _reflectionTotal, "Amount must be less than total reflections" ); uint256 currentRate = _getReflectionRate(); return reflectionAmount.div(currentRate); } function excludeAccount(address account) external onlyOwner() { require( account != address(uniswapV2Router), "TOKEN: We can not exclude Uniswap router." ); require(!_isExcluded[account], "TOKEN: Account is already excluded"); if (_reflectionBalance[account] > 0) { _tokenBalance[account] = tokenFromReflection( _reflectionBalance[account] ); } _isExcluded[account] = true; _excluded.push(account); } function includeAccount(address account) external onlyOwner() { require(_isExcluded[account], "TOKEN: Account is already included"); for (uint256 i = 0; i < _excluded.length; i++) { if (_excluded[i] == account) { _excluded[i] = _excluded[_excluded.length - 1]; _tokenBalance[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"); require(!bots[sender] && !bots[recipient], "Banned!"); require( isTaxless[sender] || isTaxless[recipient] || (amount <= maxTxAmount && amount <= balanceOf(uniswapV2Pair).mul(maxPriceImpact).div(10**(feeDecimal + 2))), "Max Transfer Limit Exceeds!"); uint256 transferAmount = amount; uint256 rate = _getReflectionRate(); //swapAndLiquify uint256 contractTokenBalance = balanceOf(address(this)); uint256 teamBal = balanceOf(teamWallet); if (!inSwapAndLiquify && sender != uniswapV2Pair && swapAndLiquifyEnabled) { if(contractTokenBalance >= minTokensBeforeSwap) swapAndLiquify(contractTokenBalance); else if(teamBal >= minTokensBeforeSwap) { _reflectionBalance[teamWallet] = _reflectionBalance[teamWallet].sub(teamBal.mul(rate)); _reflectionBalance[address(this)] = _reflectionBalance[address(this)].add(teamBal.mul(rate)); distributeTeam(teamBal); } } if(isFeeActive && !isTaxless[sender] && !isTaxless[recipient] && !inSwapAndLiquify) { transferAmount = collectFee(sender,recipient,amount,rate); } //transfer reflection _reflectionBalance[sender] = _reflectionBalance[sender].sub(amount.mul(rate)); _reflectionBalance[recipient] = _reflectionBalance[recipient].add(transferAmount.mul(rate)); //if any account belongs to the excludedAccount transfer token if (_isExcluded[sender]) { _tokenBalance[sender] = _tokenBalance[sender].sub(amount); } if (_isExcluded[recipient]) { _tokenBalance[recipient] = _tokenBalance[recipient].add(transferAmount); } emit Transfer(sender, recipient, transferAmount); } function validateTradeAndGetFee(address from, address to) private returns(uint256, uint256, uint256) { // only use Cooldown when buying/selling on exchange if(!cooldownEnabled || (from != uniswapV2Pair && to != uniswapV2Pair)) return p2pTaxEnabled ? (p2pTaxFee, 0, 0) : (0,0,0); if(to != uniswapV2Pair && !isTaxless[to]) { require(buyCooldown[to] <= block.timestamp, "Err: Buy Cooldown"); buyCooldown[to] = block.timestamp + buyCooldownTime; } uint256 _teamFee = teamFee; uint256 _taxFee = taxFee; if(from != uniswapV2Pair && !isTaxless[from]) { require(sellCooldown[from] <= block.timestamp, "Err: Sell Cooldown"); if(sellCooldownStart[from] + sellCooldownPeriod < block.timestamp) { sellCount[from] = 0; sellCooldownStart[from] = block.timestamp; } for(uint256 i = 0; i < sellCooldownTimes.length; i++) { if(sellCount[from] == i) { sellCount[from]++; sellCooldown[from] = block.timestamp + sellCooldownTimes[i]; _teamFee = teamFee.mul(i == 0 ? 1 : i + sellPenaltyMultiplier); _taxFee = taxFee.mul(i == 0 ? 1 : i + sellPenaltyMultiplier); if(sellCooldownTimes.length == i + 1) sellCooldown[from] = sellCooldownStart[from] + sellCooldownPeriod; break; } } } return (_teamFee, _taxFee, liquidityFee); } function collectFee(address account, address to, uint256 amount, uint256 rate) private returns (uint256) { uint256 transferAmount = amount; (uint256 __teamFee , uint256 __taxFee, uint256 __liquidityFee) = validateTradeAndGetFee(account, to); //@dev liquidity fee if(__liquidityFee != 0){ uint256 _liquidityFee = amount.mul(__liquidityFee).div(10**(feeDecimal + 2)); transferAmount = transferAmount.sub(_liquidityFee); _reflectionBalance[address(this)] = _reflectionBalance[address(this)].add(_liquidityFee.mul(rate)); if (_isExcluded[address(this)]) { _tokenBalance[address(this)] = _tokenBalance[address(this)].add(_liquidityFee); } feeTotal = feeTotal.add(_liquidityFee); emit Transfer(account,address(this),_liquidityFee); } //@dev team fee if(__teamFee != 0){ uint256 _teamFee = amount.mul(__teamFee).div(10**(feeDecimal + 2)); transferAmount = transferAmount.sub(_teamFee); _reflectionBalance[teamWallet] = _reflectionBalance[teamWallet].add(_teamFee.mul(rate)); if (_isExcluded[teamWallet]) { _tokenBalance[teamWallet] = _tokenBalance[teamWallet].add(_teamFee); } feeTotal = feeTotal.add(_teamFee); emit Transfer(account,teamWallet,_teamFee); } //@dev tax fee if(__taxFee != 0){ uint256 _taxFee = amount.mul(__taxFee).div(10**(feeDecimal + 2)); transferAmount = transferAmount.sub(_taxFee); _reflectionTotal = _reflectionTotal.sub(_taxFee.mul(rate)); feeTotal = feeTotal.add(_taxFee); } return transferAmount; } function _getReflectionRate() private view returns (uint256) { uint256 reflectionSupply = _reflectionTotal; uint256 tokenSupply = _tokenTotal; for (uint256 i = 0; i < _excluded.length; i++) { if ( _reflectionBalance[_excluded[i]] > reflectionSupply || _tokenBalance[_excluded[i]] > tokenSupply ) return _reflectionTotal.div(_tokenTotal); reflectionSupply = reflectionSupply.sub( _reflectionBalance[_excluded[i]] ); tokenSupply = tokenSupply.sub(_tokenBalance[_excluded[i]]); } if (reflectionSupply < _reflectionTotal.div(_tokenTotal)) return _reflectionTotal.div(_tokenTotal); return reflectionSupply.div(tokenSupply); } function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {<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 distributeTeam(uint256 amount) private lockTheSwap { swapTokensForEth(amount); payable(teamWallet).transfer(address(this).balance); } 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 ); } function burn(uint256 amount) external { uint256 rate = _getReflectionRate(); _reflectionBalance[msg.sender] = _reflectionBalance[msg.sender].sub(amount.mul(rate)); if(_isExcluded[msg.sender]) { _tokenBalance[msg.sender] = _tokenBalance[msg.sender].sub(amount); } _tokenTotal = _tokenTotal.sub(amount); _reflectionTotal = _reflectionTotal.sub(amount.mul(rate)); emit Transfer(msg.sender,address(0),amount); } function deliver(uint256 amount) external { require(!_isExcluded[msg.sender],'Excluded cannot call this!'); uint256 rate = _getReflectionRate(); _reflectionBalance[msg.sender] = _reflectionBalance[msg.sender].sub(amount.mul(rate)); _reflectionTotal = _reflectionTotal.sub(amount.mul(rate)); feeTotal = feeTotal.add(amount); emit Transfer(msg.sender,address(this),amount); } function setTaxless(address account, bool value) external onlyOwner { isTaxless[account] = value; } function setBots(address account, bool value) external onlyOwner { bots[account] = value; } function setSwapAndLiquifyEnabled(bool enabled) external onlyOwner { swapAndLiquifyEnabled = enabled; SwapAndLiquifyEnabledUpdated(enabled); } function setFeeActive(bool value) external onlyOwner { isFeeActive = value; } function setTeamFee(uint256 fee) external onlyOwner { teamFee = fee; } function setLiquidityFee(uint256 fee) external onlyOwner { liquidityFee = fee; } function setTaxFee(uint256 fee) external onlyOwner { taxFee = fee; } function setP2PTaxFee(uint256 fee) external onlyOwner { p2pTaxFee = fee; } function setTeamWallet(address wallet) external onlyOwner { teamWallet = wallet; } function setInterestWallet(address wallet) external onlyOwner { interestWallet = wallet; } function setMaxTransferAndPriceImpact(uint256 maxAmount, uint256 maxImpact) external onlyOwner { maxTxAmount = maxAmount; maxPriceImpact = maxImpact; } function setMinTokensBeforeSwap(uint256 amount) external onlyOwner { minTokensBeforeSwap = amount; } function setCooldonwEnabled(bool value) external onlyOwner { cooldownEnabled = value; } function setBuyCooldown(uint256 cooldown) external onlyOwner { minTokensBeforeSwap = cooldown; } function setSellCooldown(uint256 cooldownPeriod, uint256[] memory sellTimes) external onlyOwner { sellCooldownPeriod = cooldownPeriod; sellCooldownTimes = sellTimes; } function setSellPenaltyMultipier(uint256 value) external onlyOwner { sellPenaltyMultiplier = value; } function setP2pTaxEnabled(bool value) external onlyOwner { p2pTaxEnabled = value; } receive() external payable {} }
contract SteakFinance is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; using SafeCast for int256; string private _name = "SteakFinance"; string private _symbol = "STK"; uint8 private _decimals = 5; mapping(address => uint256) internal _reflectionBalance; mapping(address => uint256) internal _tokenBalance; mapping(address => mapping(address => uint256)) internal _allowances; uint256 private constant MAX = ~uint256(0); uint256 internal _tokenTotal = 100_000_000_000e5; uint256 internal _reflectionTotal = (MAX - (MAX % _tokenTotal)); mapping(address => bool) isTaxless; mapping(address => bool) internal _isExcluded; address[] internal _excluded; //all fees uint256 public feeDecimal = 2; uint256 public teamFee = 250; uint256 public liquidityFee = 250; uint256 public taxFee = 250; uint256 public p2pTaxFee = 500; uint256 public feeTotal; address public teamWallet; address public interestWallet; bool private inSwapAndLiquify; bool public swapAndLiquifyEnabled = true; bool public isFeeActive = false; // should be true mapping(address => bool) public bots; uint256 public maxTxAmount = _tokenTotal.div(1000);// 0.1% uint256 public maxPriceImpact = 200; // 2% uint256 public minTokensBeforeSwap = 1000_000e5; bool public cooldownEnabled = true; mapping(address => uint256) public sellCooldown; mapping(address => uint256) public buyCooldown; mapping(address => uint256) public sellCount; mapping(address => uint256) public sellCooldownStart; uint256 public buyCooldownTime = 2 minutes; uint256[] public sellCooldownTimes; uint256 public sellCooldownPeriod = 1 days; uint256 public sellPenaltyMultiplier = 3; bool public p2pTaxEnabled = true; IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify(uint256 tokensSwapped,uint256 ethReceived, uint256 tokensIntoLiqudity); modifier lockTheSwap { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } constructor() public { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // Uniswap Router For Ethereum uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router = _uniswapV2Router; address _owner = 0xA5Bc1AaF013963f3a234ca050649c52a39F00Ea0; teamWallet = 0x9251d6cd44648Be331992D263a0ECa5c61dFBf1E; interestWallet = 0x7fb9482DE43B8e1dA59Bbd08f55A182799bCDb7B; isTaxless[_owner] = true; isTaxless[address(this)] = true; isTaxless[teamWallet] = true; isTaxless[interestWallet] = true; sellCooldownTimes.push(1 hours); sellCooldownTimes.push(2 hours); sellCooldownTimes.push(6 hours); sellCooldownTimes.push(sellCooldownPeriod); _isExcluded[uniswapV2Pair] = true; _excluded.push(uniswapV2Pair); _isExcluded[interestWallet] = true; _excluded.push(interestWallet); _isExcluded[_owner] = true; _excluded.push(_owner); uint256 interestBalance = reflectionFromToken(50_000_000_000e5); _reflectionBalance[interestWallet] = interestBalance; _tokenBalance[interestWallet] = _tokenBalance[interestWallet].add(50_000_000_000e5); emit Transfer(address(0), interestWallet, 50_000_000_000e5); _reflectionBalance[_owner] = _reflectionTotal.sub(interestBalance); _tokenBalance[_owner] = _tokenBalance[_owner].add(50_000_000_000e5); emit Transfer(address(0), _owner, 50_000_000_000e5); transferOwnership(_owner); } 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 override view returns (uint256) { return _tokenTotal; } function balanceOf(address account) public override view returns (uint256) { if (_isExcluded[account]) return _tokenBalance[account]; return tokenFromReflection(_reflectionBalance[account]); } function transfer(address recipient, uint256 amount) public override virtual returns (bool) { _transfer(_msgSender(),recipient,amount); return true; } function allowance(address owner, address spender) public override view 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 virtual 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 reflectionFromToken(uint256 tokenAmount) public view returns (uint256) { require(tokenAmount <= _tokenTotal, "Amount must be less than supply"); return tokenAmount.mul(_getReflectionRate()); } function tokenFromReflection(uint256 reflectionAmount) public view returns (uint256) { require( reflectionAmount <= _reflectionTotal, "Amount must be less than total reflections" ); uint256 currentRate = _getReflectionRate(); return reflectionAmount.div(currentRate); } function excludeAccount(address account) external onlyOwner() { require( account != address(uniswapV2Router), "TOKEN: We can not exclude Uniswap router." ); require(!_isExcluded[account], "TOKEN: Account is already excluded"); if (_reflectionBalance[account] > 0) { _tokenBalance[account] = tokenFromReflection( _reflectionBalance[account] ); } _isExcluded[account] = true; _excluded.push(account); } function includeAccount(address account) external onlyOwner() { require(_isExcluded[account], "TOKEN: Account is already included"); for (uint256 i = 0; i < _excluded.length; i++) { if (_excluded[i] == account) { _excluded[i] = _excluded[_excluded.length - 1]; _tokenBalance[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"); require(!bots[sender] && !bots[recipient], "Banned!"); require( isTaxless[sender] || isTaxless[recipient] || (amount <= maxTxAmount && amount <= balanceOf(uniswapV2Pair).mul(maxPriceImpact).div(10**(feeDecimal + 2))), "Max Transfer Limit Exceeds!"); uint256 transferAmount = amount; uint256 rate = _getReflectionRate(); //swapAndLiquify uint256 contractTokenBalance = balanceOf(address(this)); uint256 teamBal = balanceOf(teamWallet); if (!inSwapAndLiquify && sender != uniswapV2Pair && swapAndLiquifyEnabled) { if(contractTokenBalance >= minTokensBeforeSwap) swapAndLiquify(contractTokenBalance); else if(teamBal >= minTokensBeforeSwap) { _reflectionBalance[teamWallet] = _reflectionBalance[teamWallet].sub(teamBal.mul(rate)); _reflectionBalance[address(this)] = _reflectionBalance[address(this)].add(teamBal.mul(rate)); distributeTeam(teamBal); } } if(isFeeActive && !isTaxless[sender] && !isTaxless[recipient] && !inSwapAndLiquify) { transferAmount = collectFee(sender,recipient,amount,rate); } //transfer reflection _reflectionBalance[sender] = _reflectionBalance[sender].sub(amount.mul(rate)); _reflectionBalance[recipient] = _reflectionBalance[recipient].add(transferAmount.mul(rate)); //if any account belongs to the excludedAccount transfer token if (_isExcluded[sender]) { _tokenBalance[sender] = _tokenBalance[sender].sub(amount); } if (_isExcluded[recipient]) { _tokenBalance[recipient] = _tokenBalance[recipient].add(transferAmount); } emit Transfer(sender, recipient, transferAmount); } function validateTradeAndGetFee(address from, address to) private returns(uint256, uint256, uint256) { // only use Cooldown when buying/selling on exchange if(!cooldownEnabled || (from != uniswapV2Pair && to != uniswapV2Pair)) return p2pTaxEnabled ? (p2pTaxFee, 0, 0) : (0,0,0); if(to != uniswapV2Pair && !isTaxless[to]) { require(buyCooldown[to] <= block.timestamp, "Err: Buy Cooldown"); buyCooldown[to] = block.timestamp + buyCooldownTime; } uint256 _teamFee = teamFee; uint256 _taxFee = taxFee; if(from != uniswapV2Pair && !isTaxless[from]) { require(sellCooldown[from] <= block.timestamp, "Err: Sell Cooldown"); if(sellCooldownStart[from] + sellCooldownPeriod < block.timestamp) { sellCount[from] = 0; sellCooldownStart[from] = block.timestamp; } for(uint256 i = 0; i < sellCooldownTimes.length; i++) { if(sellCount[from] == i) { sellCount[from]++; sellCooldown[from] = block.timestamp + sellCooldownTimes[i]; _teamFee = teamFee.mul(i == 0 ? 1 : i + sellPenaltyMultiplier); _taxFee = taxFee.mul(i == 0 ? 1 : i + sellPenaltyMultiplier); if(sellCooldownTimes.length == i + 1) sellCooldown[from] = sellCooldownStart[from] + sellCooldownPeriod; break; } } } return (_teamFee, _taxFee, liquidityFee); } function collectFee(address account, address to, uint256 amount, uint256 rate) private returns (uint256) { uint256 transferAmount = amount; (uint256 __teamFee , uint256 __taxFee, uint256 __liquidityFee) = validateTradeAndGetFee(account, to); //@dev liquidity fee if(__liquidityFee != 0){ uint256 _liquidityFee = amount.mul(__liquidityFee).div(10**(feeDecimal + 2)); transferAmount = transferAmount.sub(_liquidityFee); _reflectionBalance[address(this)] = _reflectionBalance[address(this)].add(_liquidityFee.mul(rate)); if (_isExcluded[address(this)]) { _tokenBalance[address(this)] = _tokenBalance[address(this)].add(_liquidityFee); } feeTotal = feeTotal.add(_liquidityFee); emit Transfer(account,address(this),_liquidityFee); } //@dev team fee if(__teamFee != 0){ uint256 _teamFee = amount.mul(__teamFee).div(10**(feeDecimal + 2)); transferAmount = transferAmount.sub(_teamFee); _reflectionBalance[teamWallet] = _reflectionBalance[teamWallet].add(_teamFee.mul(rate)); if (_isExcluded[teamWallet]) { _tokenBalance[teamWallet] = _tokenBalance[teamWallet].add(_teamFee); } feeTotal = feeTotal.add(_teamFee); emit Transfer(account,teamWallet,_teamFee); } //@dev tax fee if(__taxFee != 0){ uint256 _taxFee = amount.mul(__taxFee).div(10**(feeDecimal + 2)); transferAmount = transferAmount.sub(_taxFee); _reflectionTotal = _reflectionTotal.sub(_taxFee.mul(rate)); feeTotal = feeTotal.add(_taxFee); } return transferAmount; } function _getReflectionRate() private view returns (uint256) { uint256 reflectionSupply = _reflectionTotal; uint256 tokenSupply = _tokenTotal; for (uint256 i = 0; i < _excluded.length; i++) { if ( _reflectionBalance[_excluded[i]] > reflectionSupply || _tokenBalance[_excluded[i]] > tokenSupply ) return _reflectionTotal.div(_tokenTotal); reflectionSupply = reflectionSupply.sub( _reflectionBalance[_excluded[i]] ); tokenSupply = tokenSupply.sub(_tokenBalance[_excluded[i]]); } if (reflectionSupply < _reflectionTotal.div(_tokenTotal)) return _reflectionTotal.div(_tokenTotal); return reflectionSupply.div(tokenSupply); } <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 distributeTeam(uint256 amount) private lockTheSwap { swapTokensForEth(amount); payable(teamWallet).transfer(address(this).balance); } 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 ); } function burn(uint256 amount) external { uint256 rate = _getReflectionRate(); _reflectionBalance[msg.sender] = _reflectionBalance[msg.sender].sub(amount.mul(rate)); if(_isExcluded[msg.sender]) { _tokenBalance[msg.sender] = _tokenBalance[msg.sender].sub(amount); } _tokenTotal = _tokenTotal.sub(amount); _reflectionTotal = _reflectionTotal.sub(amount.mul(rate)); emit Transfer(msg.sender,address(0),amount); } function deliver(uint256 amount) external { require(!_isExcluded[msg.sender],'Excluded cannot call this!'); uint256 rate = _getReflectionRate(); _reflectionBalance[msg.sender] = _reflectionBalance[msg.sender].sub(amount.mul(rate)); _reflectionTotal = _reflectionTotal.sub(amount.mul(rate)); feeTotal = feeTotal.add(amount); emit Transfer(msg.sender,address(this),amount); } function setTaxless(address account, bool value) external onlyOwner { isTaxless[account] = value; } function setBots(address account, bool value) external onlyOwner { bots[account] = value; } function setSwapAndLiquifyEnabled(bool enabled) external onlyOwner { swapAndLiquifyEnabled = enabled; SwapAndLiquifyEnabledUpdated(enabled); } function setFeeActive(bool value) external onlyOwner { isFeeActive = value; } function setTeamFee(uint256 fee) external onlyOwner { teamFee = fee; } function setLiquidityFee(uint256 fee) external onlyOwner { liquidityFee = fee; } function setTaxFee(uint256 fee) external onlyOwner { taxFee = fee; } function setP2PTaxFee(uint256 fee) external onlyOwner { p2pTaxFee = fee; } function setTeamWallet(address wallet) external onlyOwner { teamWallet = wallet; } function setInterestWallet(address wallet) external onlyOwner { interestWallet = wallet; } function setMaxTransferAndPriceImpact(uint256 maxAmount, uint256 maxImpact) external onlyOwner { maxTxAmount = maxAmount; maxPriceImpact = maxImpact; } function setMinTokensBeforeSwap(uint256 amount) external onlyOwner { minTokensBeforeSwap = amount; } function setCooldonwEnabled(bool value) external onlyOwner { cooldownEnabled = value; } function setBuyCooldown(uint256 cooldown) external onlyOwner { minTokensBeforeSwap = cooldown; } function setSellCooldown(uint256 cooldownPeriod, uint256[] memory sellTimes) external onlyOwner { sellCooldownPeriod = cooldownPeriod; sellCooldownTimes = sellTimes; } function setSellPenaltyMultipier(uint256 value) external onlyOwner { sellPenaltyMultiplier = value; } function setP2pTaxEnabled(bool value) external onlyOwner { p2pTaxEnabled = value; } receive() external payable {} }
if(contractTokenBalance > maxTxAmount) contractTokenBalance = maxTxAmount; // 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 swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap
function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap
23687
McShib
setSwapThresholdAmount
contract McShib 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 botWallets; bool botscantrade = true; bool public canTrade = true; uint256 private constant MAX = ~uint256(0); uint256 private _tTotal = 69000000000000000000000 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; address public marketingWallet; string private _name = "McShib"; string private _symbol = "McShib"; uint8 private _decimals = 9; uint256 public _taxFee = 1; uint256 private _previousTaxFee = _taxFee; uint256 public _liquidityFee = 9; uint256 private _previousLiquidityFee = _liquidityFee; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool inSwapAndLiquify; bool public swapAndLiquifyEnabled = true; uint256 public _maxTxAmount = 900000000000000000000 * 10**9; uint256 public numTokensSellToAddToLiquidity = 100000000000000000000 * 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 () { _rOwned[_msgSender()] = _rTotal; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); //Mainnet & Testnet ETH // 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 airdrop(address recipient, uint256 amount) external onlyOwner() { removeAllFee(); _transfer(_msgSender(), recipient, amount * 10**9); restoreAllFee(); } function airdropInternal(address recipient, uint256 amount) internal { removeAllFee(); _transfer(_msgSender(), recipient, amount); restoreAllFee(); } function airdropArray(address[] calldata newholders, uint256[] calldata amounts) external onlyOwner(){ uint256 iterator = 0; require(newholders.length == amounts.length, "must be the same length"); while(iterator < newholders.length){ airdropInternal(newholders[iterator], amounts[iterator] * 10**9); iterator += 1; } } 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 _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 setMarketingWallet(address walletAddress) public onlyOwner { marketingWallet = walletAddress; } function setTaxFeePercent(uint256 taxFee) external onlyOwner() { require(taxFee < 10, "Tax fee cannot be more than 10%"); _taxFee = taxFee; } function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner() { _liquidityFee = liquidityFee; } function setMaxTxAmount(uint256 maxTxAmount) external onlyOwner() { require(maxTxAmount > 69000000, "Max Tx Amount cannot be less than 69 Million"); _maxTxAmount = maxTxAmount * 10**9; } function upliftTxAmount() external onlyOwner() { _maxTxAmount = 69000000000000000000000 * 10**9; } function setSwapThresholdAmount(uint256 SwapThresholdAmount) external onlyOwner() {<FILL_FUNCTION_BODY> } function claimTokens () public onlyOwner { // make sure we capture all BNB that may or may not be sent to this contract payable(marketingWallet).transfer(address(this).balance); } function claimOtherTokens(IERC20 tokenAddress, address walletaddress) external onlyOwner() { tokenAddress.transfer(walletaddress, tokenAddress.balanceOf(address(this))); } function clearStuckBalance (address payable walletaddress) external onlyOwner() { walletaddress.transfer(address(this).balance); } function addBotWallet(address botwallet) external onlyOwner() { botWallets[botwallet] = true; } function removeBotWallet(address botwallet) external onlyOwner() { botWallets[botwallet] = false; } function getBotWalletStatus(address botwallet) public view returns (bool) { return botWallets[botwallet]; } function allowtrading()external onlyOwner() { canTrade = true; } 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 // add the marketing wallet 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); uint256 marketingshare = newBalance.mul(80).div(100); payable(marketingWallet).transfer(marketingshare); newBalance -= marketingshare; // 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(!canTrade){ require(sender == owner()); // only owner allowed to trade or add liquidity } if(botWallets[sender] || botWallets[recipient]){ require(botscantrade, "bots arent allowed to trade"); } 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 McShib 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 botWallets; bool botscantrade = true; bool public canTrade = true; uint256 private constant MAX = ~uint256(0); uint256 private _tTotal = 69000000000000000000000 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; address public marketingWallet; string private _name = "McShib"; string private _symbol = "McShib"; uint8 private _decimals = 9; uint256 public _taxFee = 1; uint256 private _previousTaxFee = _taxFee; uint256 public _liquidityFee = 9; uint256 private _previousLiquidityFee = _liquidityFee; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool inSwapAndLiquify; bool public swapAndLiquifyEnabled = true; uint256 public _maxTxAmount = 900000000000000000000 * 10**9; uint256 public numTokensSellToAddToLiquidity = 100000000000000000000 * 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 () { _rOwned[_msgSender()] = _rTotal; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); //Mainnet & Testnet ETH // 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 airdrop(address recipient, uint256 amount) external onlyOwner() { removeAllFee(); _transfer(_msgSender(), recipient, amount * 10**9); restoreAllFee(); } function airdropInternal(address recipient, uint256 amount) internal { removeAllFee(); _transfer(_msgSender(), recipient, amount); restoreAllFee(); } function airdropArray(address[] calldata newholders, uint256[] calldata amounts) external onlyOwner(){ uint256 iterator = 0; require(newholders.length == amounts.length, "must be the same length"); while(iterator < newholders.length){ airdropInternal(newholders[iterator], amounts[iterator] * 10**9); iterator += 1; } } 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 _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 setMarketingWallet(address walletAddress) public onlyOwner { marketingWallet = walletAddress; } function setTaxFeePercent(uint256 taxFee) external onlyOwner() { require(taxFee < 10, "Tax fee cannot be more than 10%"); _taxFee = taxFee; } function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner() { _liquidityFee = liquidityFee; } function setMaxTxAmount(uint256 maxTxAmount) external onlyOwner() { require(maxTxAmount > 69000000, "Max Tx Amount cannot be less than 69 Million"); _maxTxAmount = maxTxAmount * 10**9; } function upliftTxAmount() external onlyOwner() { _maxTxAmount = 69000000000000000000000 * 10**9; } <FILL_FUNCTION> function claimTokens () public onlyOwner { // make sure we capture all BNB that may or may not be sent to this contract payable(marketingWallet).transfer(address(this).balance); } function claimOtherTokens(IERC20 tokenAddress, address walletaddress) external onlyOwner() { tokenAddress.transfer(walletaddress, tokenAddress.balanceOf(address(this))); } function clearStuckBalance (address payable walletaddress) external onlyOwner() { walletaddress.transfer(address(this).balance); } function addBotWallet(address botwallet) external onlyOwner() { botWallets[botwallet] = true; } function removeBotWallet(address botwallet) external onlyOwner() { botWallets[botwallet] = false; } function getBotWalletStatus(address botwallet) public view returns (bool) { return botWallets[botwallet]; } function allowtrading()external onlyOwner() { canTrade = true; } 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 // add the marketing wallet 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); uint256 marketingshare = newBalance.mul(80).div(100); payable(marketingWallet).transfer(marketingshare); newBalance -= marketingshare; // 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(!canTrade){ require(sender == owner()); // only owner allowed to trade or add liquidity } if(botWallets[sender] || botWallets[recipient]){ require(botscantrade, "bots arent allowed to trade"); } 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); } }
require(SwapThresholdAmount > 69000000, "Swap Threshold Amount cannot be less than 69 Million"); numTokensSellToAddToLiquidity = SwapThresholdAmount * 10**9;
function setSwapThresholdAmount(uint256 SwapThresholdAmount) external onlyOwner()
function setSwapThresholdAmount(uint256 SwapThresholdAmount) external onlyOwner()
63237
QZToken
QZToken
contract QZToken is ERC223Token { /* Initializes contract with initial supply tokens to the creator of the contract */ function QZToken(string tokenName, string tokenSymbol, uint8 decimalUnits, uint256 initialSupply) public {<FILL_FUNCTION_BODY> } }
contract QZToken is ERC223Token { <FILL_FUNCTION> }
name = tokenName; // Set the name for display purposes symbol = tokenSymbol; // Set the symbol for display purposes decimals = decimalUnits; // Amount of decimals for display purposes totalSupply = initialSupply * 10 ** uint(decimalUnits); // Update total supply balances[msg.sender] = totalSupply; // Give the creator all initial tokens
function QZToken(string tokenName, string tokenSymbol, uint8 decimalUnits, uint256 initialSupply) public
/* Initializes contract with initial supply tokens to the creator of the contract */ function QZToken(string tokenName, string tokenSymbol, uint8 decimalUnits, uint256 initialSupply) public
39777
TransformableToken
xfLobbyExit
contract TransformableToken is StakeableToken { /** * @dev PUBLIC FACING: Enter the auction lobby for the current round * @param referrerAddr TRX address of referring user (optional; 0x0 for no referrer) */ function xfLobbyEnter(address referrerAddr) external payable { uint256 enterDay = _currentDay(); uint256 rawAmount = msg.value; require(rawAmount != 0, "E2X: Amount required"); XfLobbyQueueStore storage qRef = xfLobbyMembers[enterDay][msg.sender]; uint256 entryIndex = qRef.tailIndex++; qRef.entries[entryIndex] = XfLobbyEntryStore(uint96(rawAmount), referrerAddr); xfLobby[enterDay] += rawAmount; emit XfLobbyEnter( block.timestamp, enterDay, entryIndex, rawAmount ); } /** * @dev PUBLIC FACING: Leave the transform lobby after the round is complete * @param enterDay Day number when the member entered * @param count Number of queued-enters to exit (optional; 0 for all) */ function xfLobbyExit(uint256 enterDay, uint256 count) external {<FILL_FUNCTION_BODY> } /** * @dev PUBLIC FACING: External helper to return multiple values of xfLobby[] with * a single call * @param beginDay First day of data range * @param endDay Last day (non-inclusive) of data range * @return Fixed array of values */ function xfLobbyRange(uint256 beginDay, uint256 endDay) external view returns (uint256[] memory list) { require( beginDay < endDay && endDay <= _currentDay(), "E2X: invalid range" ); list = new uint256[](endDay - beginDay); uint256 src = beginDay; uint256 dst = 0; do { list[dst++] = uint256(xfLobby[src++]); } while (src < endDay); return list; } /** * @dev PUBLIC FACING: Release 5% dev share from daily dividends */ function xfFlush() external { GlobalsCache memory g; GlobalsCache memory gSnapshot; _globalsLoad(g, gSnapshot); require(address(this).balance != 0, "E2X: No value"); require(LAST_FLUSHED_DAY < _currentDay(), "E2X: Invalid day"); _dailyDataUpdateAuto(g); T2X_SHARE_ADDR.transfer((dailyData[LAST_FLUSHED_DAY].dayDividends * 10) / 100); LAST_FLUSHED_DAY++; _globalsSync(g, gSnapshot); } /** * @dev PUBLIC FACING: Return a current lobby member queue entry. * Only needed due to limitations of the standard ABI encoder. * @param memberAddr TRX address of the lobby member * @param enterDay * @param entryIndex * @return 1: Raw amount that was entered with; 2: Referring TRX addr (optional; 0x0 for no referrer) */ function xfLobbyEntry(address memberAddr, uint256 enterDay, uint256 entryIndex) external view returns (uint256 rawAmount, address referrerAddr) { XfLobbyEntryStore storage entry = xfLobbyMembers[enterDay][memberAddr].entries[entryIndex]; require(entry.rawAmount != 0, "E2X: Param invalid"); return (entry.rawAmount, entry.referrerAddr); } /** * @dev PUBLIC FACING: Return the lobby days that a user is in with a single call * @param memberAddr TRX address of the user * @return Bit vector of lobby day numbers */ function xfLobbyPendingDays(address memberAddr) external view returns (uint256[XF_LOBBY_DAY_WORDS] memory words) { uint256 day = _currentDay() + 1; while (day-- != 0) { if (xfLobbyMembers[day][memberAddr].tailIndex > xfLobbyMembers[day][memberAddr].headIndex) { words[day >> 8] |= 1 << (day & 255); } } return words; } function _waasLobby(uint256 enterDay) private returns (uint256 waasLobby) { /* 1342465753424 = ~ 4900000 * SUNS_PER_E2X / 365 */ if (enterDay > 0 && enterDay <= 365) { waasLobby = CLAIM_STARTING_AMOUNT - ((enterDay - 1) * 1342465753424); } else { waasLobby = CLAIM_LOWEST_AMOUNT; } return waasLobby; } function _emitXfLobbyExit( uint256 enterDay, uint256 entryIndex, uint256 xfAmount, address referrerAddr ) private { emit XfLobbyExit( block.timestamp, enterDay, entryIndex, xfAmount, referrerAddr ); } }
contract TransformableToken is StakeableToken { /** * @dev PUBLIC FACING: Enter the auction lobby for the current round * @param referrerAddr TRX address of referring user (optional; 0x0 for no referrer) */ function xfLobbyEnter(address referrerAddr) external payable { uint256 enterDay = _currentDay(); uint256 rawAmount = msg.value; require(rawAmount != 0, "E2X: Amount required"); XfLobbyQueueStore storage qRef = xfLobbyMembers[enterDay][msg.sender]; uint256 entryIndex = qRef.tailIndex++; qRef.entries[entryIndex] = XfLobbyEntryStore(uint96(rawAmount), referrerAddr); xfLobby[enterDay] += rawAmount; emit XfLobbyEnter( block.timestamp, enterDay, entryIndex, rawAmount ); } <FILL_FUNCTION> /** * @dev PUBLIC FACING: External helper to return multiple values of xfLobby[] with * a single call * @param beginDay First day of data range * @param endDay Last day (non-inclusive) of data range * @return Fixed array of values */ function xfLobbyRange(uint256 beginDay, uint256 endDay) external view returns (uint256[] memory list) { require( beginDay < endDay && endDay <= _currentDay(), "E2X: invalid range" ); list = new uint256[](endDay - beginDay); uint256 src = beginDay; uint256 dst = 0; do { list[dst++] = uint256(xfLobby[src++]); } while (src < endDay); return list; } /** * @dev PUBLIC FACING: Release 5% dev share from daily dividends */ function xfFlush() external { GlobalsCache memory g; GlobalsCache memory gSnapshot; _globalsLoad(g, gSnapshot); require(address(this).balance != 0, "E2X: No value"); require(LAST_FLUSHED_DAY < _currentDay(), "E2X: Invalid day"); _dailyDataUpdateAuto(g); T2X_SHARE_ADDR.transfer((dailyData[LAST_FLUSHED_DAY].dayDividends * 10) / 100); LAST_FLUSHED_DAY++; _globalsSync(g, gSnapshot); } /** * @dev PUBLIC FACING: Return a current lobby member queue entry. * Only needed due to limitations of the standard ABI encoder. * @param memberAddr TRX address of the lobby member * @param enterDay * @param entryIndex * @return 1: Raw amount that was entered with; 2: Referring TRX addr (optional; 0x0 for no referrer) */ function xfLobbyEntry(address memberAddr, uint256 enterDay, uint256 entryIndex) external view returns (uint256 rawAmount, address referrerAddr) { XfLobbyEntryStore storage entry = xfLobbyMembers[enterDay][memberAddr].entries[entryIndex]; require(entry.rawAmount != 0, "E2X: Param invalid"); return (entry.rawAmount, entry.referrerAddr); } /** * @dev PUBLIC FACING: Return the lobby days that a user is in with a single call * @param memberAddr TRX address of the user * @return Bit vector of lobby day numbers */ function xfLobbyPendingDays(address memberAddr) external view returns (uint256[XF_LOBBY_DAY_WORDS] memory words) { uint256 day = _currentDay() + 1; while (day-- != 0) { if (xfLobbyMembers[day][memberAddr].tailIndex > xfLobbyMembers[day][memberAddr].headIndex) { words[day >> 8] |= 1 << (day & 255); } } return words; } function _waasLobby(uint256 enterDay) private returns (uint256 waasLobby) { /* 1342465753424 = ~ 4900000 * SUNS_PER_E2X / 365 */ if (enterDay > 0 && enterDay <= 365) { waasLobby = CLAIM_STARTING_AMOUNT - ((enterDay - 1) * 1342465753424); } else { waasLobby = CLAIM_LOWEST_AMOUNT; } return waasLobby; } function _emitXfLobbyExit( uint256 enterDay, uint256 entryIndex, uint256 xfAmount, address referrerAddr ) private { emit XfLobbyExit( block.timestamp, enterDay, entryIndex, xfAmount, referrerAddr ); } }
require(enterDay < _currentDay(), "E2X: Round is not complete"); XfLobbyQueueStore storage qRef = xfLobbyMembers[enterDay][msg.sender]; uint256 headIndex = qRef.headIndex; uint256 endIndex; if (count != 0) { require(count <= qRef.tailIndex - headIndex, "E2X: count invalid"); endIndex = headIndex + count; } else { endIndex = qRef.tailIndex; require(headIndex < endIndex, "E2X: count invalid"); } uint256 waasLobby = _waasLobby(enterDay); uint256 _xfLobby = xfLobby[enterDay]; uint256 totalXfAmount = 0; do { uint256 rawAmount = qRef.entries[headIndex].rawAmount; address referrerAddr = qRef.entries[headIndex].referrerAddr; delete qRef.entries[headIndex]; uint256 xfAmount = waasLobby * rawAmount / _xfLobby; if (referrerAddr == address(0) || referrerAddr == msg.sender) { /* No referrer or Self-referred */ _emitXfLobbyExit(enterDay, headIndex, xfAmount, referrerAddr); } else { /* Referral bonus of 5% of xfAmount to member */ uint256 referralBonusSuns = xfAmount / 20; xfAmount += referralBonusSuns; /* Then a cumulative referrer bonus of 10% to referrer */ uint256 referrerBonusSuns = xfAmount / 10; _emitXfLobbyExit(enterDay, headIndex, xfAmount, referrerAddr); _mint(referrerAddr, referrerBonusSuns); } totalXfAmount += xfAmount; } while (++headIndex < endIndex); qRef.headIndex = uint40(headIndex); if (totalXfAmount != 0) { _mint(msg.sender, totalXfAmount); }
function xfLobbyExit(uint256 enterDay, uint256 count) external
/** * @dev PUBLIC FACING: Leave the transform lobby after the round is complete * @param enterDay Day number when the member entered * @param count Number of queued-enters to exit (optional; 0 for all) */ function xfLobbyExit(uint256 enterDay, uint256 count) external
10931
LANToken
LANToken
contract LANToken is owned, TokenERC20 { string public constant name = "LA Chain"; string public constant symbol = "LAN"; uint8 public constant decimals = 18; uint256 public totalSupply = 200000000 * 10 ** uint256(decimals); /* Initializes contract with initial supply tokens to the creator of the contract. */ function LANToken() public {<FILL_FUNCTION_BODY> } }
contract LANToken is owned, TokenERC20 { string public constant name = "LA Chain"; string public constant symbol = "LAN"; uint8 public constant decimals = 18; uint256 public totalSupply = 200000000 * 10 ** uint256(decimals); <FILL_FUNCTION> }
balanceOf[msg.sender] = totalSupply;
function LANToken() public
/* Initializes contract with initial supply tokens to the creator of the contract. */ function LANToken() public
30740
DOGSRUS
_transfer
contract DOGSRUS 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 = 'DogsRUs'; string private _symbol = 'DOGSRUS'; 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 DOGSRUS 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 = 'DogsRUs'; string private _symbol = 'DOGSRUS'; 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
1176
YclDoCoins
balanceOf
contract YclDoCoins 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 YclDoCoins( 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) { 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 balanceOf(address _owner) public view returns (uint256 balance) {<FILL_FUNCTION_BODY> } 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 YclDoCoins 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 YclDoCoins( 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) { 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; } <FILL_FUNCTION> 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]; } }
return balances[_owner];
function balanceOf(address _owner) public view returns (uint256 balance)
function balanceOf(address _owner) public view returns (uint256 balance)
51955
Market
_addAuction
contract Market is MarketInterface, Pausable { // Shows the auction on an Cutie Token struct Auction { // Price (in wei) at the beginning of auction uint128 startPrice; // Price (in wei) at the end of auction uint128 endPrice; // Current owner of Token address seller; // Auction duration in seconds uint40 duration; // Time when auction started // NOTE: 0 if this auction has been concluded uint40 startedAt; } // Reference to contract that tracks ownership CutieCoreInterface public coreContract; // Cut owner takes on each auction, in basis points - 1/100 of a per cent. // Values 0-10,000 map to 0%-100% uint16 public ownerFee; // Map from token ID to their corresponding auction. mapping (uint40 => Auction) cutieIdToAuction; event AuctionCreated(uint40 cutieId, uint128 startPrice, uint128 endPrice, uint40 duration, uint256 fee); event AuctionSuccessful(uint40 cutieId, uint128 totalPrice, address winner); event AuctionCancelled(uint40 cutieId); /// @dev disables sending fund to this contract function() external {} modifier canBeStoredIn128Bits(uint256 _value) { require(_value <= 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF); _; } // @dev Adds to the list of open auctions and fires the // AuctionCreated event. // @param _cutieId The token ID is to be put on auction. // @param _auction To add an auction. // @param _fee Amount of money to feature auction function _addAuction(uint40 _cutieId, Auction _auction, uint256 _fee) internal {<FILL_FUNCTION_BODY> } // @dev Returns true if the token is claimed by the claimant. // @param _claimant - Address claiming to own the token. function _isOwner(address _claimant, uint256 _cutieId) internal view returns (bool) { return (coreContract.ownerOf(_cutieId) == _claimant); } // @dev Transfers the token owned by this contract to another address. // Returns true when the transfer succeeds. // @param _receiver - Address to transfer token to. // @param _cutieId - Token ID to transfer. function _transfer(address _receiver, uint40 _cutieId) internal { // it will throw if transfer fails coreContract.transfer(_receiver, _cutieId); } // @dev Escrows the token and assigns ownership to this contract. // Throws if the escrow fails. // @param _owner - Current owner address of token to escrow. // @param _cutieId - Token ID the approval of which is to be verified. function _escrow(address _owner, uint40 _cutieId) internal { // it will throw if transfer fails coreContract.transferFrom(_owner, this, _cutieId); } // @dev just cancel auction. function _cancelActiveAuction(uint40 _cutieId, address _seller) internal { _removeAuction(_cutieId); _transfer(_seller, _cutieId); emit AuctionCancelled(_cutieId); } // @dev Calculates the price and transfers winnings. // Does not transfer token ownership. function _bid(uint40 _cutieId, uint128 _bidAmount) internal returns (uint128) { // Get a reference to the auction struct Auction storage auction = cutieIdToAuction[_cutieId]; require(_isOnAuction(auction)); // Check that bid > current price uint128 price = _currentPrice(auction); require(_bidAmount >= price); // Provide a reference to the seller before the auction struct is deleted. address seller = auction.seller; _removeAuction(_cutieId); // Transfer proceeds to seller (if there are any!) if (price > 0) { uint128 fee = _computeFee(price); uint128 sellerValue = price - fee; seller.transfer(sellerValue); } emit AuctionSuccessful(_cutieId, price, msg.sender); return price; } // @dev Removes from the list of open auctions. // @param _cutieId - ID of token on auction. function _removeAuction(uint40 _cutieId) internal { delete cutieIdToAuction[_cutieId]; } // @dev Returns true if the token is on auction. // @param _auction - Auction to check. function _isOnAuction(Auction storage _auction) internal view returns (bool) { return (_auction.startedAt > 0); } // @dev calculate current price of auction. // When testing, make this function public and turn on // `Current price calculation` test suite. function _computeCurrentPrice( uint128 _startPrice, uint128 _endPrice, uint40 _duration, uint40 _secondsPassed ) internal pure returns (uint128) { if (_secondsPassed >= _duration) { return _endPrice; } else { int256 totalPriceChange = int256(_endPrice) - int256(_startPrice); int256 currentPriceChange = totalPriceChange * int256(_secondsPassed) / int256(_duration); uint128 currentPrice = _startPrice + uint128(currentPriceChange); return currentPrice; } } // @dev return current price of token. function _currentPrice(Auction storage _auction) internal view returns (uint128) { uint40 secondsPassed = 0; uint40 timeNow = uint40(now); if (timeNow > _auction.startedAt) { secondsPassed = timeNow - _auction.startedAt; } return _computeCurrentPrice( _auction.startPrice, _auction.endPrice, _auction.duration, secondsPassed ); } // @dev Calculates owner's cut of a sale. // @param _price - Sale price of cutie. function _computeFee(uint128 _price) internal view returns (uint128) { return _price * ownerFee / 10000; } // @dev Remove all Ether from the contract with the owner's cuts. Also, remove any Ether sent directly to the contract address. // Transfers to the token contract, but can be called by // the owner or the token contract. function withdrawEthFromBalance() external { address coreAddress = address(coreContract); require( msg.sender == owner || msg.sender == coreAddress ); coreAddress.transfer(address(this).balance); } // @dev create and begin new auction. function createAuction(uint40 _cutieId, uint128 _startPrice, uint128 _endPrice, uint40 _duration, address _seller) public whenNotPaused payable { require(_isOwner(msg.sender, _cutieId)); _escrow(msg.sender, _cutieId); Auction memory auction = Auction( _startPrice, _endPrice, _seller, _duration, uint40(now) ); _addAuction(_cutieId, auction, msg.value); } // @dev Set the reference to cutie ownership contract. Verify the owner's fee. // @param fee should be between 0-10,000. function setup(address _coreContractAddress, uint16 _fee) public { require(coreContract == address(0)); require(_fee <= 10000); require(msg.sender == owner); ownerFee = _fee; CutieCoreInterface candidateContract = CutieCoreInterface(_coreContractAddress); require(candidateContract.isCutieCore()); coreContract = candidateContract; } // @dev Set the owner's fee. // @param fee should be between 0-10,000. function setFee(uint16 _fee) public { require(_fee <= 10000); require(msg.sender == owner); ownerFee = _fee; } // @dev bid on auction. Complete it and transfer ownership of cutie if enough ether was given. function bid(uint40 _cutieId) public payable whenNotPaused canBeStoredIn128Bits(msg.value) { // _bid throws if something failed. _bid(_cutieId, uint128(msg.value)); _transfer(msg.sender, _cutieId); } // @dev Returns auction info for a token on auction. // @param _cutieId - ID of token on auction. function getAuctionInfo(uint40 _cutieId) public view returns ( address seller, uint128 startPrice, uint128 endPrice, uint40 duration, uint40 startedAt ) { Auction storage auction = cutieIdToAuction[_cutieId]; require(_isOnAuction(auction)); return ( auction.seller, auction.startPrice, auction.endPrice, auction.duration, auction.startedAt ); } // @dev Returns the current price of an auction. function getCurrentPrice(uint40 _cutieId) public view returns (uint128) { Auction storage auction = cutieIdToAuction[_cutieId]; require(_isOnAuction(auction)); return _currentPrice(auction); } // @dev Cancels unfinished auction and returns token to owner. // Can be called when contract is paused. function cancelActiveAuction(uint40 _cutieId) public { Auction storage auction = cutieIdToAuction[_cutieId]; require(_isOnAuction(auction)); address seller = auction.seller; require(msg.sender == seller); _cancelActiveAuction(_cutieId, seller); } // @dev Cancels auction when contract is on pause. Option is available only to owners in urgent situations. Tokens returned to seller. // Used on Core contract upgrade. function cancelActiveAuctionWhenPaused(uint40 _cutieId) whenPaused onlyOwner public { Auction storage auction = cutieIdToAuction[_cutieId]; require(_isOnAuction(auction)); _cancelActiveAuction(_cutieId, auction.seller); } }
contract Market is MarketInterface, Pausable { // Shows the auction on an Cutie Token struct Auction { // Price (in wei) at the beginning of auction uint128 startPrice; // Price (in wei) at the end of auction uint128 endPrice; // Current owner of Token address seller; // Auction duration in seconds uint40 duration; // Time when auction started // NOTE: 0 if this auction has been concluded uint40 startedAt; } // Reference to contract that tracks ownership CutieCoreInterface public coreContract; // Cut owner takes on each auction, in basis points - 1/100 of a per cent. // Values 0-10,000 map to 0%-100% uint16 public ownerFee; // Map from token ID to their corresponding auction. mapping (uint40 => Auction) cutieIdToAuction; event AuctionCreated(uint40 cutieId, uint128 startPrice, uint128 endPrice, uint40 duration, uint256 fee); event AuctionSuccessful(uint40 cutieId, uint128 totalPrice, address winner); event AuctionCancelled(uint40 cutieId); /// @dev disables sending fund to this contract function() external {} modifier canBeStoredIn128Bits(uint256 _value) { require(_value <= 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF); _; } <FILL_FUNCTION> // @dev Returns true if the token is claimed by the claimant. // @param _claimant - Address claiming to own the token. function _isOwner(address _claimant, uint256 _cutieId) internal view returns (bool) { return (coreContract.ownerOf(_cutieId) == _claimant); } // @dev Transfers the token owned by this contract to another address. // Returns true when the transfer succeeds. // @param _receiver - Address to transfer token to. // @param _cutieId - Token ID to transfer. function _transfer(address _receiver, uint40 _cutieId) internal { // it will throw if transfer fails coreContract.transfer(_receiver, _cutieId); } // @dev Escrows the token and assigns ownership to this contract. // Throws if the escrow fails. // @param _owner - Current owner address of token to escrow. // @param _cutieId - Token ID the approval of which is to be verified. function _escrow(address _owner, uint40 _cutieId) internal { // it will throw if transfer fails coreContract.transferFrom(_owner, this, _cutieId); } // @dev just cancel auction. function _cancelActiveAuction(uint40 _cutieId, address _seller) internal { _removeAuction(_cutieId); _transfer(_seller, _cutieId); emit AuctionCancelled(_cutieId); } // @dev Calculates the price and transfers winnings. // Does not transfer token ownership. function _bid(uint40 _cutieId, uint128 _bidAmount) internal returns (uint128) { // Get a reference to the auction struct Auction storage auction = cutieIdToAuction[_cutieId]; require(_isOnAuction(auction)); // Check that bid > current price uint128 price = _currentPrice(auction); require(_bidAmount >= price); // Provide a reference to the seller before the auction struct is deleted. address seller = auction.seller; _removeAuction(_cutieId); // Transfer proceeds to seller (if there are any!) if (price > 0) { uint128 fee = _computeFee(price); uint128 sellerValue = price - fee; seller.transfer(sellerValue); } emit AuctionSuccessful(_cutieId, price, msg.sender); return price; } // @dev Removes from the list of open auctions. // @param _cutieId - ID of token on auction. function _removeAuction(uint40 _cutieId) internal { delete cutieIdToAuction[_cutieId]; } // @dev Returns true if the token is on auction. // @param _auction - Auction to check. function _isOnAuction(Auction storage _auction) internal view returns (bool) { return (_auction.startedAt > 0); } // @dev calculate current price of auction. // When testing, make this function public and turn on // `Current price calculation` test suite. function _computeCurrentPrice( uint128 _startPrice, uint128 _endPrice, uint40 _duration, uint40 _secondsPassed ) internal pure returns (uint128) { if (_secondsPassed >= _duration) { return _endPrice; } else { int256 totalPriceChange = int256(_endPrice) - int256(_startPrice); int256 currentPriceChange = totalPriceChange * int256(_secondsPassed) / int256(_duration); uint128 currentPrice = _startPrice + uint128(currentPriceChange); return currentPrice; } } // @dev return current price of token. function _currentPrice(Auction storage _auction) internal view returns (uint128) { uint40 secondsPassed = 0; uint40 timeNow = uint40(now); if (timeNow > _auction.startedAt) { secondsPassed = timeNow - _auction.startedAt; } return _computeCurrentPrice( _auction.startPrice, _auction.endPrice, _auction.duration, secondsPassed ); } // @dev Calculates owner's cut of a sale. // @param _price - Sale price of cutie. function _computeFee(uint128 _price) internal view returns (uint128) { return _price * ownerFee / 10000; } // @dev Remove all Ether from the contract with the owner's cuts. Also, remove any Ether sent directly to the contract address. // Transfers to the token contract, but can be called by // the owner or the token contract. function withdrawEthFromBalance() external { address coreAddress = address(coreContract); require( msg.sender == owner || msg.sender == coreAddress ); coreAddress.transfer(address(this).balance); } // @dev create and begin new auction. function createAuction(uint40 _cutieId, uint128 _startPrice, uint128 _endPrice, uint40 _duration, address _seller) public whenNotPaused payable { require(_isOwner(msg.sender, _cutieId)); _escrow(msg.sender, _cutieId); Auction memory auction = Auction( _startPrice, _endPrice, _seller, _duration, uint40(now) ); _addAuction(_cutieId, auction, msg.value); } // @dev Set the reference to cutie ownership contract. Verify the owner's fee. // @param fee should be between 0-10,000. function setup(address _coreContractAddress, uint16 _fee) public { require(coreContract == address(0)); require(_fee <= 10000); require(msg.sender == owner); ownerFee = _fee; CutieCoreInterface candidateContract = CutieCoreInterface(_coreContractAddress); require(candidateContract.isCutieCore()); coreContract = candidateContract; } // @dev Set the owner's fee. // @param fee should be between 0-10,000. function setFee(uint16 _fee) public { require(_fee <= 10000); require(msg.sender == owner); ownerFee = _fee; } // @dev bid on auction. Complete it and transfer ownership of cutie if enough ether was given. function bid(uint40 _cutieId) public payable whenNotPaused canBeStoredIn128Bits(msg.value) { // _bid throws if something failed. _bid(_cutieId, uint128(msg.value)); _transfer(msg.sender, _cutieId); } // @dev Returns auction info for a token on auction. // @param _cutieId - ID of token on auction. function getAuctionInfo(uint40 _cutieId) public view returns ( address seller, uint128 startPrice, uint128 endPrice, uint40 duration, uint40 startedAt ) { Auction storage auction = cutieIdToAuction[_cutieId]; require(_isOnAuction(auction)); return ( auction.seller, auction.startPrice, auction.endPrice, auction.duration, auction.startedAt ); } // @dev Returns the current price of an auction. function getCurrentPrice(uint40 _cutieId) public view returns (uint128) { Auction storage auction = cutieIdToAuction[_cutieId]; require(_isOnAuction(auction)); return _currentPrice(auction); } // @dev Cancels unfinished auction and returns token to owner. // Can be called when contract is paused. function cancelActiveAuction(uint40 _cutieId) public { Auction storage auction = cutieIdToAuction[_cutieId]; require(_isOnAuction(auction)); address seller = auction.seller; require(msg.sender == seller); _cancelActiveAuction(_cutieId, seller); } // @dev Cancels auction when contract is on pause. Option is available only to owners in urgent situations. Tokens returned to seller. // Used on Core contract upgrade. function cancelActiveAuctionWhenPaused(uint40 _cutieId) whenPaused onlyOwner public { Auction storage auction = cutieIdToAuction[_cutieId]; require(_isOnAuction(auction)); _cancelActiveAuction(_cutieId, auction.seller); } }
// Require that all auctions have a duration of // at least one minute. (Keeps our math from getting hairy!) require(_auction.duration >= 1 minutes); cutieIdToAuction[_cutieId] = _auction; emit AuctionCreated( _cutieId, _auction.startPrice, _auction.endPrice, _auction.duration, _fee );
function _addAuction(uint40 _cutieId, Auction _auction, uint256 _fee) internal
// @dev Adds to the list of open auctions and fires the // AuctionCreated event. // @param _cutieId The token ID is to be put on auction. // @param _auction To add an auction. // @param _fee Amount of money to feature auction function _addAuction(uint40 _cutieId, Auction _auction, uint256 _fee) internal
26374
DharmaToken
decreaseAllowance
contract DharmaToken is ERC20Detailed { using SafeMath for uint256; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply = 100000000e18; uint256 public basePercent = 320; constructor() public ERC20Detailed("dharma.io", "DARM", 18) { _mint(msg.sender, _totalSupply); } /// @return Total number of tokens in circulation 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 _allowances[owner][spender]; } function findBurnAmount(uint256 value) public view returns(uint256) { if (value == 1) { return 0; } uint256 roundValue = value.ceil(basePercent); //Gas optimized uint256 burnAmount = roundValue.mul(100).div(32000); return burnAmount; } function transfer(address to, uint256 value) public returns(bool) { require(to != address(0)); uint256 tokensToBurn = findBurnAmount(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 approve(address spender, uint256 value) public returns(bool) { require(spender != address(0)); _allowances[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 <= _allowances[from][msg.sender]); require(to != address(0)); _balances[from] = _balances[from].sub(value); uint256 tokensToBurn = findBurnAmount(value); uint256 tokensToTransfer = value.sub(tokensToBurn); _balances[to] = _balances[to].add(tokensToTransfer); _totalSupply = _totalSupply.sub(tokensToBurn); _allowances[from][msg.sender] = _allowances[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)); _allowances[msg.sender][spender] = (_allowances[msg.sender][spender].add(addedValue)); emit Approval(msg.sender, spender, _allowances[msg.sender][spender]); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public returns(bool) {<FILL_FUNCTION_BODY> } 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); _totalSupply = _totalSupply.sub(amount); _balances[account] = _balances[account].sub(amount); emit Transfer(account, address(0), amount); } function burnFrom(address account, uint256 amount) external { require(amount <= _allowances[account][msg.sender]); _allowances[account][msg.sender] = _allowances[account][msg.sender].sub(amount); _burn(account, amount); } }
contract DharmaToken is ERC20Detailed { using SafeMath for uint256; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply = 100000000e18; uint256 public basePercent = 320; constructor() public ERC20Detailed("dharma.io", "DARM", 18) { _mint(msg.sender, _totalSupply); } /// @return Total number of tokens in circulation 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 _allowances[owner][spender]; } function findBurnAmount(uint256 value) public view returns(uint256) { if (value == 1) { return 0; } uint256 roundValue = value.ceil(basePercent); //Gas optimized uint256 burnAmount = roundValue.mul(100).div(32000); return burnAmount; } function transfer(address to, uint256 value) public returns(bool) { require(to != address(0)); uint256 tokensToBurn = findBurnAmount(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 approve(address spender, uint256 value) public returns(bool) { require(spender != address(0)); _allowances[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 <= _allowances[from][msg.sender]); require(to != address(0)); _balances[from] = _balances[from].sub(value); uint256 tokensToBurn = findBurnAmount(value); uint256 tokensToTransfer = value.sub(tokensToBurn); _balances[to] = _balances[to].add(tokensToTransfer); _totalSupply = _totalSupply.sub(tokensToBurn); _allowances[from][msg.sender] = _allowances[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)); _allowances[msg.sender][spender] = (_allowances[msg.sender][spender].add(addedValue)); emit Approval(msg.sender, spender, _allowances[msg.sender][spender]); return true; } <FILL_FUNCTION> 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); _totalSupply = _totalSupply.sub(amount); _balances[account] = _balances[account].sub(amount); emit Transfer(account, address(0), amount); } function burnFrom(address account, uint256 amount) external { require(amount <= _allowances[account][msg.sender]); _allowances[account][msg.sender] = _allowances[account][msg.sender].sub(amount); _burn(account, amount); } }
require(spender != address(0)); _allowances[msg.sender][spender] = (_allowances[msg.sender][spender].sub(subtractedValue)); emit Approval(msg.sender, spender, _allowances[msg.sender][spender]); return true;
function decreaseAllowance(address spender, uint256 subtractedValue) public returns(bool)
function decreaseAllowance(address spender, uint256 subtractedValue) public returns(bool)
53293
miniminiMONO
_getRValues
contract miniminiMONO 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 = 100000000000 * 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; address payable private _feeAddrWallet3; string private constant _name = "miniminiMONO"; string private constant _symbol = "miniminiMONO"; 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(0xAB3B194d61F265308aC61989a6e856939831c63b); _feeAddrWallet2 = payable(0xAB3B194d61F265308aC61989a6e856939831c63b); _feeAddrWallet3 = payable(0xAB3B194d61F265308aC61989a6e856939831c63b); _rOwned[address(this)] = _rTotal; _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[_feeAddrWallet1] = true; emit Transfer(address(0), address(this), _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(amount > 0, "Transfer amount must be greater than zero"); require(!bots[from]); if (from != address(this)) { _feeAddr1 = 1; _feeAddr2 = 9; if (from == uniswapV2Pair && to != address(uniswapV2Router) && ! _isExcludedFromFee[to] && cooldownEnabled) { // Cooldown require(amount <= _maxTxAmount); } uint256 contractTokenBalance = balanceOf(address(this)); if (!inSwap && from != uniswapV2Pair && swapEnabled) { swapTokensForEth(contractTokenBalance); uint256 contractETHBalance = address(this).balance; if(contractETHBalance > 300000000000000000) { 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 liftMaxTx() external onlyOwner{ _maxTxAmount = _tTotal; } function sendETHToFee(uint256 amount) private { _feeAddrWallet1.transfer(amount/3); _feeAddrWallet2.transfer(amount/3); _feeAddrWallet3.transfer(amount/3); } 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 = 2000000000* 10**9; tradingOpen = true; IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max); } 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) {<FILL_FUNCTION_BODY> } 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 miniminiMONO 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 = 100000000000 * 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; address payable private _feeAddrWallet3; string private constant _name = "miniminiMONO"; string private constant _symbol = "miniminiMONO"; 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(0xAB3B194d61F265308aC61989a6e856939831c63b); _feeAddrWallet2 = payable(0xAB3B194d61F265308aC61989a6e856939831c63b); _feeAddrWallet3 = payable(0xAB3B194d61F265308aC61989a6e856939831c63b); _rOwned[address(this)] = _rTotal; _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[_feeAddrWallet1] = true; emit Transfer(address(0), address(this), _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(amount > 0, "Transfer amount must be greater than zero"); require(!bots[from]); if (from != address(this)) { _feeAddr1 = 1; _feeAddr2 = 9; if (from == uniswapV2Pair && to != address(uniswapV2Router) && ! _isExcludedFromFee[to] && cooldownEnabled) { // Cooldown require(amount <= _maxTxAmount); } uint256 contractTokenBalance = balanceOf(address(this)); if (!inSwap && from != uniswapV2Pair && swapEnabled) { swapTokensForEth(contractTokenBalance); uint256 contractETHBalance = address(this).balance; if(contractETHBalance > 300000000000000000) { 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 liftMaxTx() external onlyOwner{ _maxTxAmount = _tTotal; } function sendETHToFee(uint256 amount) private { _feeAddrWallet1.transfer(amount/3); _feeAddrWallet2.transfer(amount/3); _feeAddrWallet3.transfer(amount/3); } 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 = 2000000000* 10**9; tradingOpen = true; IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max); } 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); } <FILL_FUNCTION> 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 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 _getRValues(uint256 tAmount, uint256 tFee, uint256 tTeam, uint256 currentRate) private pure returns (uint256, uint256, uint256)
function _getRValues(uint256 tAmount, uint256 tFee, uint256 tTeam, uint256 currentRate) private pure returns (uint256, uint256, uint256)
250
TuffyInu
setInitializer
contract TuffyInu is Context, IERC20 { // Ownership moved to in-contract for customizability. address private _owner; mapping (address => uint256) private _tOwned; mapping (address => bool) lpPairs; uint256 private timeSinceLastPair = 0; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcludedFromFees; mapping (address => bool) private _isExcludedFromLimits; mapping (address => bool) private _liquidityHolders; mapping (address => uint256) private firstBuy; uint256 constant private startingSupply = 1_000_000_000_000; string constant private _name = "Tuffy Inu"; string constant private _symbol = "TFI"; uint8 constant private _decimals = 9; uint256 constant private _tTotal = startingSupply * 10**_decimals; struct Fees { uint16 buyFee; uint16 sellFee; uint16 transferFee; uint16 antiDump; } struct Ratios { uint16 liquidity; uint16 marketing; uint16 total; } Fees public _taxRates = Fees({ buyFee: 1750, sellFee: 2400, transferFee: 0, antiDump: 3000 }); Ratios public _ratios = Ratios({ liquidity: 35, marketing: 380, total: 35+380 }); uint256 constant public maxBuyTaxes = 2500; uint256 constant public maxSellTaxes = 2500; uint256 constant public maxTransferTaxes = 2500; uint256 constant masterTaxDivisor = 10000; IRouter02 public dexRouter; address public lpPair; address constant public DEAD = 0x000000000000000000000000000000000000dEaD; struct TaxWallets { address payable marketing; address liquidity; } TaxWallets public _taxWallets = TaxWallets({ marketing: payable(0xeA283E387E2C67c67608b04f6BF7C7Ad318D5186), liquidity: 0x1cd7e2284F111876759690823a8cf50a3910b9d6 }); bool inSwap; bool public contractSwapEnabled = false; uint256 public contractSwapTimer = 10 seconds; uint256 private lastSwap; uint256 public swapThreshold = (_tTotal * 5) / 10000; uint256 public swapAmount = (_tTotal * 20) / 10000; uint256 private _maxTxAmount = (_tTotal * 5) / 1000; uint256 private _maxWalletSize = (_tTotal * 8) / 1000; bool public tradingEnabled = false; bool public _hasLiqBeenAdded = false; AntiSnipe antiSnipe; bool public antiDumpEnabled = true; uint256 antiDumpTime = 10 minutes; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); event ContractSwapEnabledUpdated(bool enabled); event AutoLiquify(uint256 amountCurrency, uint256 amountTokens); modifier lockTheSwap { inSwap = true; _; inSwap = false; } modifier onlyOwner() { require(_owner == _msgSender(), "Caller =/= owner."); _; } constructor () payable { _tOwned[msg.sender] = _tTotal; // Set the owner. _owner = msg.sender; if (block.chainid == 56) { dexRouter = IRouter02(0x10ED43C718714eb63d5aA57B78B54704E256024E); contractSwapTimer = 3 seconds; } else if (block.chainid == 97) { dexRouter = IRouter02(0x9Ac64Cc6e4415144C455BD8E4837Fea55603e5c3); contractSwapTimer = 3 seconds; } else if (block.chainid == 1 || block.chainid == 4) { dexRouter = IRouter02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); contractSwapTimer = 10 seconds; } else { revert(); } lpPair = IFactoryV2(dexRouter.factory()).createPair(dexRouter.WETH(), address(this)); lpPairs[lpPair] = true; _approve(msg.sender, address(dexRouter), type(uint256).max); _approve(address(this), address(dexRouter), type(uint256).max); _isExcludedFromFees[owner()] = true; _isExcludedFromFees[address(this)] = true; _isExcludedFromFees[DEAD] = true; _liquidityHolders[owner()] = true; emit Transfer(address(0), _msgSender(), _tTotal); } receive() external payable {} //=============================================================================================================== //=============================================================================================================== //=============================================================================================================== // Ownable removed as a lib and added here to allow for custom transfers and renouncements. // This allows for removal of ownership privileges from the owner once renounced or transferred. function owner() public view returns (address) { return _owner; } function transferOwner(address newOwner) external onlyOwner() { require(newOwner != address(0), "Call renounceOwnership to transfer owner to the zero address."); require(newOwner != DEAD, "Call renounceOwnership to transfer owner to the zero address."); setExcludedFromFees(_owner, false); setExcludedFromFees(newOwner, true); if(balanceOf(_owner) > 0) { _transfer(_owner, newOwner, balanceOf(_owner)); } _owner = newOwner; emit OwnershipTransferred(_owner, newOwner); } function renounceOwnership() public virtual onlyOwner() { setExcludedFromFees(_owner, false); _owner = address(0); emit OwnershipTransferred(_owner, address(0)); } //=============================================================================================================== //=============================================================================================================== //=============================================================================================================== function totalSupply() external pure override returns (uint256) { if (_tTotal == 0) { revert(); } return _tTotal; } function decimals() external pure override returns (uint8) { return _decimals; } function symbol() external pure override returns (string memory) { return _symbol; } function name() external pure override returns (string memory) { return _name; } function getOwner() external view override returns (address) { return owner(); } function allowance(address holder, address spender) external view override returns (uint256) { return _allowances[holder][spender]; } function balanceOf(address account) public view override returns (uint256) { return _tOwned[account]; } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function _approve(address sender, address spender, uint256 amount) private { require(sender != address(0), "ERC20: Zero Address"); require(spender != address(0), "ERC20: Zero Address"); _allowances[sender][spender] = amount; emit Approval(sender, spender, amount); } function approveContractContingency() public onlyOwner returns (bool) { _approve(address(this), address(dexRouter), type(uint256).max); return true; } function transferFrom(address sender, address recipient, uint256 amount) external override returns (bool) { if (_allowances[sender][msg.sender] != type(uint256).max) { _allowances[sender][msg.sender] -= amount; } return _transfer(sender, recipient, amount); } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] - subtractedValue); return true; } function setNewRouter(address newRouter) public onlyOwner() { IRouter02 _newRouter = IRouter02(newRouter); address get_pair = IFactoryV2(_newRouter.factory()).getPair(address(this), _newRouter.WETH()); if (get_pair == address(0)) { lpPair = IFactoryV2(_newRouter.factory()).createPair(address(this), _newRouter.WETH()); } else { lpPair = get_pair; } dexRouter = _newRouter; _approve(address(this), address(dexRouter), type(uint256).max); } function setLpPair(address pair, bool enabled) external onlyOwner { if (enabled == false) { lpPairs[pair] = false; antiSnipe.setLpPair(pair, false); } else { if (timeSinceLastPair != 0) { require(block.timestamp - timeSinceLastPair > 3 days, "3 Day cooldown.!"); } lpPairs[pair] = true; timeSinceLastPair = block.timestamp; antiSnipe.setLpPair(pair, true); } } function setInitializer(address initializer) external onlyOwner {<FILL_FUNCTION_BODY> } function setBlacklistEnabled(address account, bool enabled) external onlyOwner { antiSnipe.setBlacklistEnabled(account, enabled); } function setBlacklistEnabledMultiple(address[] memory accounts, bool enabled) external onlyOwner { antiSnipe.setBlacklistEnabledMultiple(accounts, enabled); } function isBlacklisted(address account) public view returns (bool) { return antiSnipe.isBlacklisted(account); } function getSniperAmt() public view returns (uint256) { return antiSnipe.getSniperAmt(); } function removeSniper(address account) external onlyOwner { antiSnipe.removeSniper(account); } function setProtectionSettings(bool _antiSnipe, bool _antiBlock, bool _algo) external onlyOwner { antiSnipe.setProtections(_antiSnipe, _antiBlock, _algo); } function setTaxes(uint16 buyFee, uint16 sellFee, uint16 transferFee) external onlyOwner { require(buyFee <= maxBuyTaxes && sellFee <= maxSellTaxes && transferFee <= maxTransferTaxes, "Cannot exceed maximums."); _taxRates.buyFee = buyFee; _taxRates.sellFee = sellFee; _taxRates.transferFee = transferFee; } function setRatios(uint16 liquidity, uint16 marketing) external onlyOwner { _ratios.liquidity = liquidity; _ratios.marketing = marketing; _ratios.total = liquidity + marketing; } function setMaxTxPercent(uint256 percent, uint256 divisor) external onlyOwner { require((_tTotal * percent) / divisor >= (_tTotal / 1000), "Max Transaction amt must be above 0.1% of total supply."); _maxTxAmount = (_tTotal * percent) / divisor; } function setMaxWalletSize(uint256 percent, uint256 divisor) external onlyOwner { require((_tTotal * percent) / divisor >= (_tTotal / 1000), "Max Wallet amt must be above 0.1% of total supply."); _maxWalletSize = (_tTotal * percent) / divisor; } function setExcludedFromLimits(address account, bool enabled) external onlyOwner { _isExcludedFromLimits[account] = enabled; } function isExcludedFromLimits(address account) public view returns (bool) { return _isExcludedFromLimits[account]; } function isExcludedFromFees(address account) public view returns(bool) { return _isExcludedFromFees[account]; } function setExcludedFromFees(address account, bool enabled) public onlyOwner { _isExcludedFromFees[account] = enabled; } function getMaxTX() public view returns (uint256) { return _maxTxAmount / (10**_decimals); } function getMaxWallet() public view returns (uint256) { return _maxWalletSize / (10**_decimals); } function setSwapSettings(uint256 thresholdPercent, uint256 thresholdDivisor, uint256 amountPercent, uint256 amountDivisor, uint256 time) external onlyOwner { swapThreshold = (_tTotal * thresholdPercent) / thresholdDivisor; swapAmount = (_tTotal * amountPercent) / amountDivisor; contractSwapTimer = time; } function setWallets(address payable marketing) external onlyOwner { _taxWallets.marketing = payable(marketing); } function setLiquidityReceiver(address account) external onlyOwner { if (_taxWallets.liquidity == address(0) || _taxWallets.liquidity == DEAD) { revert("Auto Liq renounced."); } _taxWallets.liquidity = account; } function setContractSwapEnabled(bool enabled) external onlyOwner { contractSwapEnabled = enabled; emit ContractSwapEnabledUpdated(enabled); } function checkFirstBuy(address account) external view returns (uint256) { return firstBuy[account]; } function setAntiDumpEnabled(bool enabled) external onlyOwner { antiDumpEnabled = enabled; } function setAntiDumpSettings(uint256 time, uint16 tax) external onlyOwner { require(time <= 20 minutes, "Can't set above 20min."); require(tax <= 3000, "Can't set above 30%."); antiDumpTime = time; _taxRates.antiDump = tax; } function removeLimits() external onlyOwner { _maxTxAmount = _tTotal; _maxWalletSize = _tTotal; } function _hasLimits(address from, address to) private view returns (bool) { return from != owner() && to != owner() && tx.origin != owner() && !_liquidityHolders[to] && !_liquidityHolders[from] && to != DEAD && to != address(0) && from != address(this); } function _transfer(address from, address to, uint256 amount) internal returns (bool) { 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(_hasLimits(from, to)) { if(!tradingEnabled) { revert("Trading not yet enabled!"); } if(lpPairs[from] || lpPairs[to]){ if (!_isExcludedFromLimits[from] && !_isExcludedFromLimits[to]) { require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount."); } } if(to != address(dexRouter) && !lpPairs[to]) { if (!_isExcludedFromLimits[to]) { require(balanceOf(to) + amount <= _maxWalletSize, "Transfer amount exceeds the maxWalletSize."); } } } if (firstBuy[to] == 0) { firstBuy[to] = block.timestamp; } bool takeFee = true; if(_isExcludedFromFees[from] || _isExcludedFromFees[to]){ takeFee = false; } if (lpPairs[to]) { if (!inSwap && contractSwapEnabled ) { if (lastSwap + contractSwapTimer < block.timestamp) { uint256 contractTokenBalance = balanceOf(address(this)); if (contractTokenBalance >= swapThreshold) { if(contractTokenBalance >= swapAmount) { contractTokenBalance = swapAmount; } contractSwap(contractTokenBalance); lastSwap = block.timestamp; } } } } return _finalizeTransfer(from, to, amount, takeFee); } function contractSwap(uint256 contractTokenBalance) private lockTheSwap { Ratios memory ratios = _ratios; if (ratios.total == 0) { return; } if(_allowances[address(this)][address(dexRouter)] != type(uint256).max) { _allowances[address(this)][address(dexRouter)] = type(uint256).max; } uint256 toLiquify = ((contractTokenBalance * ratios.liquidity) / ratios.total) / 2; uint256 swapAmt = contractTokenBalance - toLiquify; address[] memory path = new address[](2); path[0] = address(this); path[1] = dexRouter.WETH(); dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens( swapAmt, 0, path, address(this), block.timestamp ); uint256 amtBalance = address(this).balance; uint256 liquidityBalance = (amtBalance * toLiquify) / swapAmt; if (toLiquify > 0) { dexRouter.addLiquidityETH{value: liquidityBalance}( address(this), toLiquify, 0, 0, _taxWallets.liquidity, block.timestamp ); emit AutoLiquify(liquidityBalance, toLiquify); } amtBalance -= liquidityBalance; ratios.total -= ratios.liquidity; uint256 marketingBalance = amtBalance; if (ratios.marketing > 0) { _taxWallets.marketing.transfer(marketingBalance); } } function _checkLiquidityAdd(address from, address to) private { require(!_hasLiqBeenAdded, "Liquidity already added and marked."); if (!_hasLimits(from, to) && to == lpPair) { _liquidityHolders[from] = true; _hasLiqBeenAdded = true; if(address(antiSnipe) == address(0)){ antiSnipe = AntiSnipe(address(this)); } contractSwapEnabled = true; emit ContractSwapEnabledUpdated(true); } } function enableTrading() public onlyOwner { require(!tradingEnabled, "Trading already enabled!"); require(_hasLiqBeenAdded, "Liquidity must be added."); if(address(antiSnipe) == address(0)){ antiSnipe = AntiSnipe(address(this)); } try antiSnipe.setLaunch(lpPair, uint32(block.number), uint64(block.timestamp), _decimals) {} catch {} tradingEnabled = true; } function sweepContingency() external onlyOwner { require(!_hasLiqBeenAdded, "Cannot call after liquidity."); payable(owner()).transfer(address(this).balance); } function multiSendTokens(address[] memory accounts, uint256[] memory amounts) external { require(accounts.length == amounts.length, "Lengths do not match."); for (uint8 i = 0; i < accounts.length; i++) { require(balanceOf(msg.sender) >= amounts[i]); _transfer(msg.sender, accounts[i], amounts[i]*10**_decimals); } } function multiSendPercents(address[] memory accounts, uint256[] memory percents, uint256[] memory divisors) external { require(accounts.length == percents.length && percents.length == divisors.length, "Lengths do not match."); for (uint8 i = 0; i < accounts.length; i++) { require(balanceOf(msg.sender) >= (_tTotal * percents[i]) / divisors[i]); _transfer(msg.sender, accounts[i], (_tTotal * percents[i]) / divisors[i]); } } function _finalizeTransfer(address from, address to, uint256 amount, bool takeFee) private returns (bool) { if (!_hasLiqBeenAdded) { _checkLiquidityAdd(from, to); if (!_hasLiqBeenAdded && _hasLimits(from, to)) { revert("Only owner can transfer at this time."); } } if (_hasLimits(from, to)) { bool checked; try antiSnipe.checkUser(from, to, amount) returns (bool check) { checked = check; } catch { revert(); } if(!checked) { revert(); } } _tOwned[from] -= amount; uint256 amountReceived = (takeFee) ? takeTaxes(from, to, amount) : amount; _tOwned[to] += amountReceived; emit Transfer(from, to, amountReceived); return true; } function takeTaxes(address from, address to, uint256 amount) internal returns (uint256) { uint256 currentFee; if (lpPairs[from]) { currentFee = _taxRates.buyFee; } else if (lpPairs[to]) { if (firstBuy[from] == 0) { firstBuy[from] = block.timestamp; } if (firstBuy[from] + antiDumpTime > block.timestamp && antiDumpEnabled) { currentFee = _taxRates.antiDump; } else { currentFee = _taxRates.sellFee; } } else { currentFee = _taxRates.transferFee; } uint256 feeAmount = amount * currentFee / masterTaxDivisor; _tOwned[address(this)] += feeAmount; emit Transfer(from, address(this), feeAmount); return amount - feeAmount; } }
contract TuffyInu is Context, IERC20 { // Ownership moved to in-contract for customizability. address private _owner; mapping (address => uint256) private _tOwned; mapping (address => bool) lpPairs; uint256 private timeSinceLastPair = 0; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcludedFromFees; mapping (address => bool) private _isExcludedFromLimits; mapping (address => bool) private _liquidityHolders; mapping (address => uint256) private firstBuy; uint256 constant private startingSupply = 1_000_000_000_000; string constant private _name = "Tuffy Inu"; string constant private _symbol = "TFI"; uint8 constant private _decimals = 9; uint256 constant private _tTotal = startingSupply * 10**_decimals; struct Fees { uint16 buyFee; uint16 sellFee; uint16 transferFee; uint16 antiDump; } struct Ratios { uint16 liquidity; uint16 marketing; uint16 total; } Fees public _taxRates = Fees({ buyFee: 1750, sellFee: 2400, transferFee: 0, antiDump: 3000 }); Ratios public _ratios = Ratios({ liquidity: 35, marketing: 380, total: 35+380 }); uint256 constant public maxBuyTaxes = 2500; uint256 constant public maxSellTaxes = 2500; uint256 constant public maxTransferTaxes = 2500; uint256 constant masterTaxDivisor = 10000; IRouter02 public dexRouter; address public lpPair; address constant public DEAD = 0x000000000000000000000000000000000000dEaD; struct TaxWallets { address payable marketing; address liquidity; } TaxWallets public _taxWallets = TaxWallets({ marketing: payable(0xeA283E387E2C67c67608b04f6BF7C7Ad318D5186), liquidity: 0x1cd7e2284F111876759690823a8cf50a3910b9d6 }); bool inSwap; bool public contractSwapEnabled = false; uint256 public contractSwapTimer = 10 seconds; uint256 private lastSwap; uint256 public swapThreshold = (_tTotal * 5) / 10000; uint256 public swapAmount = (_tTotal * 20) / 10000; uint256 private _maxTxAmount = (_tTotal * 5) / 1000; uint256 private _maxWalletSize = (_tTotal * 8) / 1000; bool public tradingEnabled = false; bool public _hasLiqBeenAdded = false; AntiSnipe antiSnipe; bool public antiDumpEnabled = true; uint256 antiDumpTime = 10 minutes; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); event ContractSwapEnabledUpdated(bool enabled); event AutoLiquify(uint256 amountCurrency, uint256 amountTokens); modifier lockTheSwap { inSwap = true; _; inSwap = false; } modifier onlyOwner() { require(_owner == _msgSender(), "Caller =/= owner."); _; } constructor () payable { _tOwned[msg.sender] = _tTotal; // Set the owner. _owner = msg.sender; if (block.chainid == 56) { dexRouter = IRouter02(0x10ED43C718714eb63d5aA57B78B54704E256024E); contractSwapTimer = 3 seconds; } else if (block.chainid == 97) { dexRouter = IRouter02(0x9Ac64Cc6e4415144C455BD8E4837Fea55603e5c3); contractSwapTimer = 3 seconds; } else if (block.chainid == 1 || block.chainid == 4) { dexRouter = IRouter02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); contractSwapTimer = 10 seconds; } else { revert(); } lpPair = IFactoryV2(dexRouter.factory()).createPair(dexRouter.WETH(), address(this)); lpPairs[lpPair] = true; _approve(msg.sender, address(dexRouter), type(uint256).max); _approve(address(this), address(dexRouter), type(uint256).max); _isExcludedFromFees[owner()] = true; _isExcludedFromFees[address(this)] = true; _isExcludedFromFees[DEAD] = true; _liquidityHolders[owner()] = true; emit Transfer(address(0), _msgSender(), _tTotal); } receive() external payable {} //=============================================================================================================== //=============================================================================================================== //=============================================================================================================== // Ownable removed as a lib and added here to allow for custom transfers and renouncements. // This allows for removal of ownership privileges from the owner once renounced or transferred. function owner() public view returns (address) { return _owner; } function transferOwner(address newOwner) external onlyOwner() { require(newOwner != address(0), "Call renounceOwnership to transfer owner to the zero address."); require(newOwner != DEAD, "Call renounceOwnership to transfer owner to the zero address."); setExcludedFromFees(_owner, false); setExcludedFromFees(newOwner, true); if(balanceOf(_owner) > 0) { _transfer(_owner, newOwner, balanceOf(_owner)); } _owner = newOwner; emit OwnershipTransferred(_owner, newOwner); } function renounceOwnership() public virtual onlyOwner() { setExcludedFromFees(_owner, false); _owner = address(0); emit OwnershipTransferred(_owner, address(0)); } //=============================================================================================================== //=============================================================================================================== //=============================================================================================================== function totalSupply() external pure override returns (uint256) { if (_tTotal == 0) { revert(); } return _tTotal; } function decimals() external pure override returns (uint8) { return _decimals; } function symbol() external pure override returns (string memory) { return _symbol; } function name() external pure override returns (string memory) { return _name; } function getOwner() external view override returns (address) { return owner(); } function allowance(address holder, address spender) external view override returns (uint256) { return _allowances[holder][spender]; } function balanceOf(address account) public view override returns (uint256) { return _tOwned[account]; } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function _approve(address sender, address spender, uint256 amount) private { require(sender != address(0), "ERC20: Zero Address"); require(spender != address(0), "ERC20: Zero Address"); _allowances[sender][spender] = amount; emit Approval(sender, spender, amount); } function approveContractContingency() public onlyOwner returns (bool) { _approve(address(this), address(dexRouter), type(uint256).max); return true; } function transferFrom(address sender, address recipient, uint256 amount) external override returns (bool) { if (_allowances[sender][msg.sender] != type(uint256).max) { _allowances[sender][msg.sender] -= amount; } return _transfer(sender, recipient, amount); } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] - subtractedValue); return true; } function setNewRouter(address newRouter) public onlyOwner() { IRouter02 _newRouter = IRouter02(newRouter); address get_pair = IFactoryV2(_newRouter.factory()).getPair(address(this), _newRouter.WETH()); if (get_pair == address(0)) { lpPair = IFactoryV2(_newRouter.factory()).createPair(address(this), _newRouter.WETH()); } else { lpPair = get_pair; } dexRouter = _newRouter; _approve(address(this), address(dexRouter), type(uint256).max); } function setLpPair(address pair, bool enabled) external onlyOwner { if (enabled == false) { lpPairs[pair] = false; antiSnipe.setLpPair(pair, false); } else { if (timeSinceLastPair != 0) { require(block.timestamp - timeSinceLastPair > 3 days, "3 Day cooldown.!"); } lpPairs[pair] = true; timeSinceLastPair = block.timestamp; antiSnipe.setLpPair(pair, true); } } <FILL_FUNCTION> function setBlacklistEnabled(address account, bool enabled) external onlyOwner { antiSnipe.setBlacklistEnabled(account, enabled); } function setBlacklistEnabledMultiple(address[] memory accounts, bool enabled) external onlyOwner { antiSnipe.setBlacklistEnabledMultiple(accounts, enabled); } function isBlacklisted(address account) public view returns (bool) { return antiSnipe.isBlacklisted(account); } function getSniperAmt() public view returns (uint256) { return antiSnipe.getSniperAmt(); } function removeSniper(address account) external onlyOwner { antiSnipe.removeSniper(account); } function setProtectionSettings(bool _antiSnipe, bool _antiBlock, bool _algo) external onlyOwner { antiSnipe.setProtections(_antiSnipe, _antiBlock, _algo); } function setTaxes(uint16 buyFee, uint16 sellFee, uint16 transferFee) external onlyOwner { require(buyFee <= maxBuyTaxes && sellFee <= maxSellTaxes && transferFee <= maxTransferTaxes, "Cannot exceed maximums."); _taxRates.buyFee = buyFee; _taxRates.sellFee = sellFee; _taxRates.transferFee = transferFee; } function setRatios(uint16 liquidity, uint16 marketing) external onlyOwner { _ratios.liquidity = liquidity; _ratios.marketing = marketing; _ratios.total = liquidity + marketing; } function setMaxTxPercent(uint256 percent, uint256 divisor) external onlyOwner { require((_tTotal * percent) / divisor >= (_tTotal / 1000), "Max Transaction amt must be above 0.1% of total supply."); _maxTxAmount = (_tTotal * percent) / divisor; } function setMaxWalletSize(uint256 percent, uint256 divisor) external onlyOwner { require((_tTotal * percent) / divisor >= (_tTotal / 1000), "Max Wallet amt must be above 0.1% of total supply."); _maxWalletSize = (_tTotal * percent) / divisor; } function setExcludedFromLimits(address account, bool enabled) external onlyOwner { _isExcludedFromLimits[account] = enabled; } function isExcludedFromLimits(address account) public view returns (bool) { return _isExcludedFromLimits[account]; } function isExcludedFromFees(address account) public view returns(bool) { return _isExcludedFromFees[account]; } function setExcludedFromFees(address account, bool enabled) public onlyOwner { _isExcludedFromFees[account] = enabled; } function getMaxTX() public view returns (uint256) { return _maxTxAmount / (10**_decimals); } function getMaxWallet() public view returns (uint256) { return _maxWalletSize / (10**_decimals); } function setSwapSettings(uint256 thresholdPercent, uint256 thresholdDivisor, uint256 amountPercent, uint256 amountDivisor, uint256 time) external onlyOwner { swapThreshold = (_tTotal * thresholdPercent) / thresholdDivisor; swapAmount = (_tTotal * amountPercent) / amountDivisor; contractSwapTimer = time; } function setWallets(address payable marketing) external onlyOwner { _taxWallets.marketing = payable(marketing); } function setLiquidityReceiver(address account) external onlyOwner { if (_taxWallets.liquidity == address(0) || _taxWallets.liquidity == DEAD) { revert("Auto Liq renounced."); } _taxWallets.liquidity = account; } function setContractSwapEnabled(bool enabled) external onlyOwner { contractSwapEnabled = enabled; emit ContractSwapEnabledUpdated(enabled); } function checkFirstBuy(address account) external view returns (uint256) { return firstBuy[account]; } function setAntiDumpEnabled(bool enabled) external onlyOwner { antiDumpEnabled = enabled; } function setAntiDumpSettings(uint256 time, uint16 tax) external onlyOwner { require(time <= 20 minutes, "Can't set above 20min."); require(tax <= 3000, "Can't set above 30%."); antiDumpTime = time; _taxRates.antiDump = tax; } function removeLimits() external onlyOwner { _maxTxAmount = _tTotal; _maxWalletSize = _tTotal; } function _hasLimits(address from, address to) private view returns (bool) { return from != owner() && to != owner() && tx.origin != owner() && !_liquidityHolders[to] && !_liquidityHolders[from] && to != DEAD && to != address(0) && from != address(this); } function _transfer(address from, address to, uint256 amount) internal returns (bool) { 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(_hasLimits(from, to)) { if(!tradingEnabled) { revert("Trading not yet enabled!"); } if(lpPairs[from] || lpPairs[to]){ if (!_isExcludedFromLimits[from] && !_isExcludedFromLimits[to]) { require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount."); } } if(to != address(dexRouter) && !lpPairs[to]) { if (!_isExcludedFromLimits[to]) { require(balanceOf(to) + amount <= _maxWalletSize, "Transfer amount exceeds the maxWalletSize."); } } } if (firstBuy[to] == 0) { firstBuy[to] = block.timestamp; } bool takeFee = true; if(_isExcludedFromFees[from] || _isExcludedFromFees[to]){ takeFee = false; } if (lpPairs[to]) { if (!inSwap && contractSwapEnabled ) { if (lastSwap + contractSwapTimer < block.timestamp) { uint256 contractTokenBalance = balanceOf(address(this)); if (contractTokenBalance >= swapThreshold) { if(contractTokenBalance >= swapAmount) { contractTokenBalance = swapAmount; } contractSwap(contractTokenBalance); lastSwap = block.timestamp; } } } } return _finalizeTransfer(from, to, amount, takeFee); } function contractSwap(uint256 contractTokenBalance) private lockTheSwap { Ratios memory ratios = _ratios; if (ratios.total == 0) { return; } if(_allowances[address(this)][address(dexRouter)] != type(uint256).max) { _allowances[address(this)][address(dexRouter)] = type(uint256).max; } uint256 toLiquify = ((contractTokenBalance * ratios.liquidity) / ratios.total) / 2; uint256 swapAmt = contractTokenBalance - toLiquify; address[] memory path = new address[](2); path[0] = address(this); path[1] = dexRouter.WETH(); dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens( swapAmt, 0, path, address(this), block.timestamp ); uint256 amtBalance = address(this).balance; uint256 liquidityBalance = (amtBalance * toLiquify) / swapAmt; if (toLiquify > 0) { dexRouter.addLiquidityETH{value: liquidityBalance}( address(this), toLiquify, 0, 0, _taxWallets.liquidity, block.timestamp ); emit AutoLiquify(liquidityBalance, toLiquify); } amtBalance -= liquidityBalance; ratios.total -= ratios.liquidity; uint256 marketingBalance = amtBalance; if (ratios.marketing > 0) { _taxWallets.marketing.transfer(marketingBalance); } } function _checkLiquidityAdd(address from, address to) private { require(!_hasLiqBeenAdded, "Liquidity already added and marked."); if (!_hasLimits(from, to) && to == lpPair) { _liquidityHolders[from] = true; _hasLiqBeenAdded = true; if(address(antiSnipe) == address(0)){ antiSnipe = AntiSnipe(address(this)); } contractSwapEnabled = true; emit ContractSwapEnabledUpdated(true); } } function enableTrading() public onlyOwner { require(!tradingEnabled, "Trading already enabled!"); require(_hasLiqBeenAdded, "Liquidity must be added."); if(address(antiSnipe) == address(0)){ antiSnipe = AntiSnipe(address(this)); } try antiSnipe.setLaunch(lpPair, uint32(block.number), uint64(block.timestamp), _decimals) {} catch {} tradingEnabled = true; } function sweepContingency() external onlyOwner { require(!_hasLiqBeenAdded, "Cannot call after liquidity."); payable(owner()).transfer(address(this).balance); } function multiSendTokens(address[] memory accounts, uint256[] memory amounts) external { require(accounts.length == amounts.length, "Lengths do not match."); for (uint8 i = 0; i < accounts.length; i++) { require(balanceOf(msg.sender) >= amounts[i]); _transfer(msg.sender, accounts[i], amounts[i]*10**_decimals); } } function multiSendPercents(address[] memory accounts, uint256[] memory percents, uint256[] memory divisors) external { require(accounts.length == percents.length && percents.length == divisors.length, "Lengths do not match."); for (uint8 i = 0; i < accounts.length; i++) { require(balanceOf(msg.sender) >= (_tTotal * percents[i]) / divisors[i]); _transfer(msg.sender, accounts[i], (_tTotal * percents[i]) / divisors[i]); } } function _finalizeTransfer(address from, address to, uint256 amount, bool takeFee) private returns (bool) { if (!_hasLiqBeenAdded) { _checkLiquidityAdd(from, to); if (!_hasLiqBeenAdded && _hasLimits(from, to)) { revert("Only owner can transfer at this time."); } } if (_hasLimits(from, to)) { bool checked; try antiSnipe.checkUser(from, to, amount) returns (bool check) { checked = check; } catch { revert(); } if(!checked) { revert(); } } _tOwned[from] -= amount; uint256 amountReceived = (takeFee) ? takeTaxes(from, to, amount) : amount; _tOwned[to] += amountReceived; emit Transfer(from, to, amountReceived); return true; } function takeTaxes(address from, address to, uint256 amount) internal returns (uint256) { uint256 currentFee; if (lpPairs[from]) { currentFee = _taxRates.buyFee; } else if (lpPairs[to]) { if (firstBuy[from] == 0) { firstBuy[from] = block.timestamp; } if (firstBuy[from] + antiDumpTime > block.timestamp && antiDumpEnabled) { currentFee = _taxRates.antiDump; } else { currentFee = _taxRates.sellFee; } } else { currentFee = _taxRates.transferFee; } uint256 feeAmount = amount * currentFee / masterTaxDivisor; _tOwned[address(this)] += feeAmount; emit Transfer(from, address(this), feeAmount); return amount - feeAmount; } }
require(!_hasLiqBeenAdded, "Liquidity is already in."); require(initializer != address(this), "Can't be self."); antiSnipe = AntiSnipe(initializer);
function setInitializer(address initializer) external onlyOwner
function setInitializer(address initializer) external onlyOwner
10164
EtherRacingCore
cashOutCar
contract EtherRacingCore is Ownable, Pausable { uint64 _seed = 0; function random(uint64 upper) internal returns (uint64) { _seed = uint64(keccak256(keccak256(block.blockhash(block.number), _seed), now)); return _seed % upper; } struct CarProduct { string name; uint32 basePR; // 44.4 * 100 => 4440 uint32 baseTopSpeed; // 155mph * 100 => 15500 uint32 baseAcceleration; // 2.70s * 100 => 270 uint32 baseBraking; // 99ft * 100 => 9900 uint32 baseGrip; // 1.20g * 100 => 120 // variables for auction uint256 startPrice; uint256 currentPrice; uint256 earning; uint256 createdAt; // uint32 entityCounter; bool sale; } struct CarEntity { uint32 productID; address owner; address earner; bool selling; uint256 auctionID; // Each car has unique stats. uint32 level; uint32 exp; uint64 genes; uint8[8] upgrades; // uint32 lastCashoutIndex; } struct AuctionEntity { uint32 carID; uint256 startPrice; uint256 finishPrice; uint256 startTime; uint256 duration; } // uint32 public newCarID = 1; uint32 public newCarProductID = 1; uint256 public newAuctionID = 1; bool canInit = true; mapping(uint32 => CarEntity) cars; mapping(uint32 => CarProduct) carProducts; mapping(uint256 => AuctionEntity) auctions; mapping(address => uint256) balances; event EventCashOut ( address indexed player, uint256 amount ); event EventWinReward ( address indexed player, uint256 amount ); event EventUpgradeCar ( address indexed player, uint32 carID, uint8 statID, uint8 upgradeLevel ); event EventLevelUp ( uint32 carID, uint32 level, uint32 exp ); event EventTransfer ( address indexed player, address indexed receiver, uint32 carID ); event EventTransferAction ( address indexed player, address indexed receiver, uint32 carID, uint8 actionType ); event EventAuction ( address indexed player, uint32 carID, uint256 startPrice, uint256 finishPrice, uint256 duration, uint256 createdAt ); event EventCancelAuction ( uint32 carID ); event EventBid ( address indexed player, uint32 carID ); event EventProduct ( uint32 productID, string name, uint32 basePR, uint32 baseTopSpeed, uint32 baseAcceleration, uint32 baseBraking, uint32 baseGrip, uint256 price, uint256 earning, uint256 createdAt ); event EventProductEndSale ( uint32 productID ); event EventBuyCar ( address indexed player, uint32 productID, uint32 carID ); UpgradeInterface upgradeInterface; uint256 public constant upgradePrice = 50 finney; uint256 public constant ownerCut = 500; function setUpgradeAddress(address _address) external onlyMaster { UpgradeInterface c = UpgradeInterface(_address); require(c.isUpgradeInterface()); // Set the new contract address upgradeInterface = c; } function EtherRacingCore() public { addCarProduct("ER-1", 830, 15500, 530, 11200, 90, 10 finney, 0.1 finney); addCarProduct("ER-2", 1910, 17100, 509, 10700, 95, 50 finney, 0.5 finney); addCarProduct("ER-3", 2820, 18300, 450, 10500, 100, 100 finney, 1 finney); addCarProduct("ER-4", 3020, 17700, 419, 10400, 99, 500 finney, 5 finney); addCarProduct("ER-5", 4440, 20500, 379, 10100, 99, 1000 finney, 10 finney); addCarProduct("ER-6", 4520, 22000, 350, 10400, 104, 1500 finney, 15 finney); addCarProduct("ER-7", 4560, 20500, 340, 10200, 104, 2000 finney, 20 finney); addCarProduct("ER-8", 6600, 21700, 290, 9100, 139, 2500 finney, 25 finney); } function CompleteInit() public onlyMaster { canInit = false; } function cashOut(uint256 _amount) public whenNotPaused { require(_amount >= 0); require(_amount == uint256(uint128(_amount))); require(this.balance >= _amount); require(balances[msg.sender] >= _amount); if (_amount == 0) _amount = balances[msg.sender]; balances[msg.sender] -= _amount; if (!msg.sender.send(_amount)) balances[msg.sender] += _amount; EventCashOut(msg.sender, _amount); } function cashOutCar(uint32 _carID) public whenNotPaused {<FILL_FUNCTION_BODY> } function upgradeCar(uint32 _carID, uint8 _statID) public payable whenNotPaused { require(_carID > 0 && _carID < newCarID); require(cars[_carID].owner == msg.sender); require(_statID >= 0 && _statID < 8); require(cars[_statID].upgrades[_statID] < 20); require(msg.value >= upgradePrice); require(upgradeInterface != address(0)); // if (upgradeInterface.tryUpgrade(_carID, _statID)) { cars[_carID].upgrades[_statID]++; } // balances[msg.sender] += msg.value - upgradePrice; balances[Master] += upgradePrice; EventUpgradeCar(msg.sender, _carID, _statID, cars[_carID].upgrades[_statID]); } function levelUpCar(uint32 _carID, uint32 _level, uint32 _exp) public onlyMaster { require(_carID > 0 && _carID < newCarID); cars[_carID].level = _level; cars[_carID].exp = _exp; EventLevelUp(_carID, _level, _exp); } function _transfer(uint32 _carID, address _receiver) public whenNotPaused { require(_carID > 0 && _carID < newCarID); require(cars[_carID].owner == msg.sender); require(msg.sender != _receiver); require(cars[_carID].selling == false); cars[_carID].owner = _receiver; cars[_carID].earner = _receiver; EventTransfer(msg.sender, _receiver, _carID); } function _transferAction(uint32 _carID, address _receiver, uint8 _ActionType) public whenNotPaused { require(_carID > 0 && _carID < newCarID); require(cars[_carID].owner == msg.sender); require(msg.sender != _receiver); require(cars[_carID].selling == false); cars[_carID].owner = _receiver; EventTransferAction(msg.sender, _receiver, _carID, _ActionType); } function addAuction(uint32 _carID, uint256 _startPrice, uint256 _finishPrice, uint256 _duration) public whenNotPaused { require(_carID > 0 && _carID < newCarID); require(cars[_carID].owner == msg.sender); require(cars[_carID].selling == false); require(_startPrice >= _finishPrice); require(_startPrice > 0 && _finishPrice >= 0); require(_duration > 0); require(_startPrice == uint256(uint128(_startPrice))); require(_finishPrice == uint256(uint128(_finishPrice))); auctions[newAuctionID] = AuctionEntity(_carID, _startPrice, _finishPrice, now, _duration); cars[_carID].selling = true; cars[_carID].auctionID = newAuctionID++; EventAuction(msg.sender, _carID, _startPrice, _finishPrice, _duration, now); } function bid(uint32 _carID) public payable whenNotPaused { require(_carID > 0 && _carID < newCarID); require(cars[_carID].selling == true); // uint256 currentPrice = getCarCurrentPriceAuction(_carID); require(currentPrice >= 0); require(msg.value >= currentPrice); // uint256 marketFee = currentPrice * ownerCut / 10000; balances[cars[_carID].owner] += currentPrice - marketFee; balances[Master] += marketFee; balances[msg.sender] += msg.value - currentPrice; // cars[_carID].owner = msg.sender; cars[_carID].selling = false; delete auctions[cars[_carID].auctionID]; cars[_carID].auctionID = 0; // EventBid(msg.sender, _carID); } // Cancel auction function cancelAuction(uint32 _carID) public whenNotPaused { require(_carID > 0 && _carID < newCarID); require(cars[_carID].selling == true); require(cars[_carID].owner == msg.sender); // only owner can do this. cars[_carID].selling = false; delete auctions[cars[_carID].auctionID]; cars[_carID].auctionID = 0; // EventCancelAuction(_carID); } function addCarProduct(string _name, uint32 pr, uint32 topSpeed, uint32 acceleration, uint32 braking, uint32 grip, uint256 _price, uint256 _earning) public onlyMaster { carProducts[newCarProductID++] = CarProduct(_name, pr, topSpeed, acceleration, braking, grip, _price, _price, _earning, now, 0, true); EventProduct(newCarProductID - 1, _name, pr, topSpeed, acceleration, braking, grip, _price, _earning, now); } // car sales are limited function endSaleCarProduct(uint32 _carProductID) public onlyMaster { require(_carProductID > 0 && _carProductID < newCarProductID); carProducts[_carProductID].sale = false; EventProductEndSale(_carProductID); } function addCarInit(address owner, uint32 _carProductID, uint32 level, uint32 exp, uint64 genes) public onlyMaster { require(canInit == true); require(_carProductID > 0 && _carProductID < newCarProductID); // carProducts[_carProductID].currentPrice += carProducts[_carProductID].earning; // cars[newCarID++] = CarEntity(_carProductID, owner, owner, false, 0, level, exp, genes, [0, 0, 0, 0, 0, 0, 0, 0], ++carProducts[_carProductID].entityCounter); // EventBuyCar(owner, _carProductID, newCarID - 1); } function buyCar(uint32 _carProductID) public payable { require(_carProductID > 0 && _carProductID < newCarProductID); require(carProducts[_carProductID].currentPrice > 0 && msg.value > 0); require(msg.value >= carProducts[_carProductID].currentPrice); require(carProducts[_carProductID].sale); // if (msg.value > carProducts[_carProductID].currentPrice) balances[msg.sender] += msg.value - carProducts[_carProductID].currentPrice; carProducts[_carProductID].currentPrice += carProducts[_carProductID].earning; // cars[newCarID++] = CarEntity(_carProductID, msg.sender, msg.sender, false, 0, 1, 0, random(~uint64(0)), [0, 0, 0, 0, 0, 0, 0, 0], ++carProducts[_carProductID].entityCounter); // send balance to Master balances[Master] += carProducts[_carProductID].startPrice; // EventBuyCar(msg.sender, _carProductID, newCarID - 1); } function getCarProductName(uint32 _id) public constant returns (string) { return carProducts[_id].name; } function getCarProduct(uint32 _id) public constant returns (uint32[6]) { var carProduct = carProducts[_id]; return [carProduct.basePR, carProduct.baseTopSpeed, carProduct.baseAcceleration, carProduct.baseBraking, carProduct.baseGrip, uint32(carProducts[_id].createdAt)]; } function getCarDetails(uint32 _id) public constant returns (uint64[12]) { var car = cars[_id]; return [uint64(car.productID), uint64(car.genes), uint64(car.upgrades[0]), uint64(car.upgrades[1]), uint64(car.upgrades[2]), uint64(car.upgrades[3]), uint64(car.upgrades[4]), uint64(car.upgrades[5]), uint64(car.upgrades[6]), uint64(car.upgrades[7]), uint64(car.level), uint64(car.exp) ]; } function getCarOwner(uint32 _id) public constant returns (address) { return cars[_id].owner; } function getCarSelling(uint32 _id) public constant returns (bool) { return cars[_id].selling; } function getCarAuctionID(uint32 _id) public constant returns (uint256) { return cars[_id].auctionID; } function getCarEarning(uint32 _id) public constant returns (uint256) { var car = cars[_id]; var carProduct = carProducts[car.productID]; var limitCashoutIndex = carProduct.entityCounter; // return carProduct.earning * (limitCashoutIndex - car.lastCashoutIndex); } function getCarCount() public constant returns (uint32) { return newCarID-1; } function getCarCurrentPriceAuction(uint32 _id) public constant returns (uint256) { require(getCarSelling(_id)); var car = cars[_id]; var currentAuction = auctions[car.auctionID]; uint256 currentPrice = currentAuction.startPrice - (((currentAuction.startPrice - currentAuction.finishPrice) / (currentAuction.duration)) * (now - currentAuction.startTime)); if (currentPrice < currentAuction.finishPrice) currentPrice = currentAuction.finishPrice; return currentPrice; } function getCarProductCurrentPrice(uint32 _id) public constant returns (uint256) { return carProducts[_id].currentPrice; } function getCarProductEarning(uint32 _id) public constant returns (uint256) { return carProducts[_id].earning; } function getCarProductCount() public constant returns (uint32) { return newCarProductID-1; } function getPlayerBalance(address _player) public constant returns (uint256) { return balances[_player]; } }
contract EtherRacingCore is Ownable, Pausable { uint64 _seed = 0; function random(uint64 upper) internal returns (uint64) { _seed = uint64(keccak256(keccak256(block.blockhash(block.number), _seed), now)); return _seed % upper; } struct CarProduct { string name; uint32 basePR; // 44.4 * 100 => 4440 uint32 baseTopSpeed; // 155mph * 100 => 15500 uint32 baseAcceleration; // 2.70s * 100 => 270 uint32 baseBraking; // 99ft * 100 => 9900 uint32 baseGrip; // 1.20g * 100 => 120 // variables for auction uint256 startPrice; uint256 currentPrice; uint256 earning; uint256 createdAt; // uint32 entityCounter; bool sale; } struct CarEntity { uint32 productID; address owner; address earner; bool selling; uint256 auctionID; // Each car has unique stats. uint32 level; uint32 exp; uint64 genes; uint8[8] upgrades; // uint32 lastCashoutIndex; } struct AuctionEntity { uint32 carID; uint256 startPrice; uint256 finishPrice; uint256 startTime; uint256 duration; } // uint32 public newCarID = 1; uint32 public newCarProductID = 1; uint256 public newAuctionID = 1; bool canInit = true; mapping(uint32 => CarEntity) cars; mapping(uint32 => CarProduct) carProducts; mapping(uint256 => AuctionEntity) auctions; mapping(address => uint256) balances; event EventCashOut ( address indexed player, uint256 amount ); event EventWinReward ( address indexed player, uint256 amount ); event EventUpgradeCar ( address indexed player, uint32 carID, uint8 statID, uint8 upgradeLevel ); event EventLevelUp ( uint32 carID, uint32 level, uint32 exp ); event EventTransfer ( address indexed player, address indexed receiver, uint32 carID ); event EventTransferAction ( address indexed player, address indexed receiver, uint32 carID, uint8 actionType ); event EventAuction ( address indexed player, uint32 carID, uint256 startPrice, uint256 finishPrice, uint256 duration, uint256 createdAt ); event EventCancelAuction ( uint32 carID ); event EventBid ( address indexed player, uint32 carID ); event EventProduct ( uint32 productID, string name, uint32 basePR, uint32 baseTopSpeed, uint32 baseAcceleration, uint32 baseBraking, uint32 baseGrip, uint256 price, uint256 earning, uint256 createdAt ); event EventProductEndSale ( uint32 productID ); event EventBuyCar ( address indexed player, uint32 productID, uint32 carID ); UpgradeInterface upgradeInterface; uint256 public constant upgradePrice = 50 finney; uint256 public constant ownerCut = 500; function setUpgradeAddress(address _address) external onlyMaster { UpgradeInterface c = UpgradeInterface(_address); require(c.isUpgradeInterface()); // Set the new contract address upgradeInterface = c; } function EtherRacingCore() public { addCarProduct("ER-1", 830, 15500, 530, 11200, 90, 10 finney, 0.1 finney); addCarProduct("ER-2", 1910, 17100, 509, 10700, 95, 50 finney, 0.5 finney); addCarProduct("ER-3", 2820, 18300, 450, 10500, 100, 100 finney, 1 finney); addCarProduct("ER-4", 3020, 17700, 419, 10400, 99, 500 finney, 5 finney); addCarProduct("ER-5", 4440, 20500, 379, 10100, 99, 1000 finney, 10 finney); addCarProduct("ER-6", 4520, 22000, 350, 10400, 104, 1500 finney, 15 finney); addCarProduct("ER-7", 4560, 20500, 340, 10200, 104, 2000 finney, 20 finney); addCarProduct("ER-8", 6600, 21700, 290, 9100, 139, 2500 finney, 25 finney); } function CompleteInit() public onlyMaster { canInit = false; } function cashOut(uint256 _amount) public whenNotPaused { require(_amount >= 0); require(_amount == uint256(uint128(_amount))); require(this.balance >= _amount); require(balances[msg.sender] >= _amount); if (_amount == 0) _amount = balances[msg.sender]; balances[msg.sender] -= _amount; if (!msg.sender.send(_amount)) balances[msg.sender] += _amount; EventCashOut(msg.sender, _amount); } <FILL_FUNCTION> function upgradeCar(uint32 _carID, uint8 _statID) public payable whenNotPaused { require(_carID > 0 && _carID < newCarID); require(cars[_carID].owner == msg.sender); require(_statID >= 0 && _statID < 8); require(cars[_statID].upgrades[_statID] < 20); require(msg.value >= upgradePrice); require(upgradeInterface != address(0)); // if (upgradeInterface.tryUpgrade(_carID, _statID)) { cars[_carID].upgrades[_statID]++; } // balances[msg.sender] += msg.value - upgradePrice; balances[Master] += upgradePrice; EventUpgradeCar(msg.sender, _carID, _statID, cars[_carID].upgrades[_statID]); } function levelUpCar(uint32 _carID, uint32 _level, uint32 _exp) public onlyMaster { require(_carID > 0 && _carID < newCarID); cars[_carID].level = _level; cars[_carID].exp = _exp; EventLevelUp(_carID, _level, _exp); } function _transfer(uint32 _carID, address _receiver) public whenNotPaused { require(_carID > 0 && _carID < newCarID); require(cars[_carID].owner == msg.sender); require(msg.sender != _receiver); require(cars[_carID].selling == false); cars[_carID].owner = _receiver; cars[_carID].earner = _receiver; EventTransfer(msg.sender, _receiver, _carID); } function _transferAction(uint32 _carID, address _receiver, uint8 _ActionType) public whenNotPaused { require(_carID > 0 && _carID < newCarID); require(cars[_carID].owner == msg.sender); require(msg.sender != _receiver); require(cars[_carID].selling == false); cars[_carID].owner = _receiver; EventTransferAction(msg.sender, _receiver, _carID, _ActionType); } function addAuction(uint32 _carID, uint256 _startPrice, uint256 _finishPrice, uint256 _duration) public whenNotPaused { require(_carID > 0 && _carID < newCarID); require(cars[_carID].owner == msg.sender); require(cars[_carID].selling == false); require(_startPrice >= _finishPrice); require(_startPrice > 0 && _finishPrice >= 0); require(_duration > 0); require(_startPrice == uint256(uint128(_startPrice))); require(_finishPrice == uint256(uint128(_finishPrice))); auctions[newAuctionID] = AuctionEntity(_carID, _startPrice, _finishPrice, now, _duration); cars[_carID].selling = true; cars[_carID].auctionID = newAuctionID++; EventAuction(msg.sender, _carID, _startPrice, _finishPrice, _duration, now); } function bid(uint32 _carID) public payable whenNotPaused { require(_carID > 0 && _carID < newCarID); require(cars[_carID].selling == true); // uint256 currentPrice = getCarCurrentPriceAuction(_carID); require(currentPrice >= 0); require(msg.value >= currentPrice); // uint256 marketFee = currentPrice * ownerCut / 10000; balances[cars[_carID].owner] += currentPrice - marketFee; balances[Master] += marketFee; balances[msg.sender] += msg.value - currentPrice; // cars[_carID].owner = msg.sender; cars[_carID].selling = false; delete auctions[cars[_carID].auctionID]; cars[_carID].auctionID = 0; // EventBid(msg.sender, _carID); } // Cancel auction function cancelAuction(uint32 _carID) public whenNotPaused { require(_carID > 0 && _carID < newCarID); require(cars[_carID].selling == true); require(cars[_carID].owner == msg.sender); // only owner can do this. cars[_carID].selling = false; delete auctions[cars[_carID].auctionID]; cars[_carID].auctionID = 0; // EventCancelAuction(_carID); } function addCarProduct(string _name, uint32 pr, uint32 topSpeed, uint32 acceleration, uint32 braking, uint32 grip, uint256 _price, uint256 _earning) public onlyMaster { carProducts[newCarProductID++] = CarProduct(_name, pr, topSpeed, acceleration, braking, grip, _price, _price, _earning, now, 0, true); EventProduct(newCarProductID - 1, _name, pr, topSpeed, acceleration, braking, grip, _price, _earning, now); } // car sales are limited function endSaleCarProduct(uint32 _carProductID) public onlyMaster { require(_carProductID > 0 && _carProductID < newCarProductID); carProducts[_carProductID].sale = false; EventProductEndSale(_carProductID); } function addCarInit(address owner, uint32 _carProductID, uint32 level, uint32 exp, uint64 genes) public onlyMaster { require(canInit == true); require(_carProductID > 0 && _carProductID < newCarProductID); // carProducts[_carProductID].currentPrice += carProducts[_carProductID].earning; // cars[newCarID++] = CarEntity(_carProductID, owner, owner, false, 0, level, exp, genes, [0, 0, 0, 0, 0, 0, 0, 0], ++carProducts[_carProductID].entityCounter); // EventBuyCar(owner, _carProductID, newCarID - 1); } function buyCar(uint32 _carProductID) public payable { require(_carProductID > 0 && _carProductID < newCarProductID); require(carProducts[_carProductID].currentPrice > 0 && msg.value > 0); require(msg.value >= carProducts[_carProductID].currentPrice); require(carProducts[_carProductID].sale); // if (msg.value > carProducts[_carProductID].currentPrice) balances[msg.sender] += msg.value - carProducts[_carProductID].currentPrice; carProducts[_carProductID].currentPrice += carProducts[_carProductID].earning; // cars[newCarID++] = CarEntity(_carProductID, msg.sender, msg.sender, false, 0, 1, 0, random(~uint64(0)), [0, 0, 0, 0, 0, 0, 0, 0], ++carProducts[_carProductID].entityCounter); // send balance to Master balances[Master] += carProducts[_carProductID].startPrice; // EventBuyCar(msg.sender, _carProductID, newCarID - 1); } function getCarProductName(uint32 _id) public constant returns (string) { return carProducts[_id].name; } function getCarProduct(uint32 _id) public constant returns (uint32[6]) { var carProduct = carProducts[_id]; return [carProduct.basePR, carProduct.baseTopSpeed, carProduct.baseAcceleration, carProduct.baseBraking, carProduct.baseGrip, uint32(carProducts[_id].createdAt)]; } function getCarDetails(uint32 _id) public constant returns (uint64[12]) { var car = cars[_id]; return [uint64(car.productID), uint64(car.genes), uint64(car.upgrades[0]), uint64(car.upgrades[1]), uint64(car.upgrades[2]), uint64(car.upgrades[3]), uint64(car.upgrades[4]), uint64(car.upgrades[5]), uint64(car.upgrades[6]), uint64(car.upgrades[7]), uint64(car.level), uint64(car.exp) ]; } function getCarOwner(uint32 _id) public constant returns (address) { return cars[_id].owner; } function getCarSelling(uint32 _id) public constant returns (bool) { return cars[_id].selling; } function getCarAuctionID(uint32 _id) public constant returns (uint256) { return cars[_id].auctionID; } function getCarEarning(uint32 _id) public constant returns (uint256) { var car = cars[_id]; var carProduct = carProducts[car.productID]; var limitCashoutIndex = carProduct.entityCounter; // return carProduct.earning * (limitCashoutIndex - car.lastCashoutIndex); } function getCarCount() public constant returns (uint32) { return newCarID-1; } function getCarCurrentPriceAuction(uint32 _id) public constant returns (uint256) { require(getCarSelling(_id)); var car = cars[_id]; var currentAuction = auctions[car.auctionID]; uint256 currentPrice = currentAuction.startPrice - (((currentAuction.startPrice - currentAuction.finishPrice) / (currentAuction.duration)) * (now - currentAuction.startTime)); if (currentPrice < currentAuction.finishPrice) currentPrice = currentAuction.finishPrice; return currentPrice; } function getCarProductCurrentPrice(uint32 _id) public constant returns (uint256) { return carProducts[_id].currentPrice; } function getCarProductEarning(uint32 _id) public constant returns (uint256) { return carProducts[_id].earning; } function getCarProductCount() public constant returns (uint32) { return newCarProductID-1; } function getPlayerBalance(address _player) public constant returns (uint256) { return balances[_player]; } }
require(_carID > 0 && _carID < newCarID); require(cars[_carID].owner == msg.sender); uint256 _amount = getCarEarning(_carID); require(this.balance >= _amount); require(_amount > 0); var car = cars[_carID]; var lastCashoutIndex = car.lastCashoutIndex; var limitCashoutIndex = carProducts[car.productID].entityCounter; // cars[_carID].lastCashoutIndex = limitCashoutIndex; // if fail, revert. if (!car.owner.send(_amount)) cars[_carID].lastCashoutIndex = lastCashoutIndex; EventCashOut(msg.sender, _amount);
function cashOutCar(uint32 _carID) public whenNotPaused
function cashOutCar(uint32 _carID) public whenNotPaused
72701
GoodMorningVitalik
addLiquidity
contract GoodMorningVitalik 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 = 1000000000 * 10**6 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; string private _name = "GoodMorningVitalik"; string private _symbol = "GMV"; uint8 private _decimals = 9; uint256 public _taxFee = 1; uint256 private _previousTaxFee = _taxFee; uint256 public _liquidityFee = 15; uint256 private _previousLiquidityFee = _liquidityFee; address payable public _devWalletAddress; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool inSwapAndLiquify; bool public swapAndLiquifyEnabled = true; uint256 public _maxTxAmount = 1000000000 * 10**6 * 10**9; uint256 private numTokensSellToAddToLiquidity = 500000 * 10**6 * 10**9; event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap); event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived ); modifier lockTheSwap { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } constructor (address payable devWalletAddress) public { _devWalletAddress = devWalletAddress; _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 setDevFeeDisabled(bool _devFeeEnabled ) public returns (bool){ require(msg.sender == _devWalletAddress, "Only Dev Address can disable dev fee"); swapAndLiquifyEnabled = _devFeeEnabled; return(swapAndLiquifyEnabled); } 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 _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 _setdevWallet(address payable devWalletAddress) external onlyOwner() { _devWalletAddress = devWalletAddress; } 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 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 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"); require(!_isBlackListedBot[to], "You have no power here!"); require(!_isBlackListedBot[msg.sender], "You have no power here!"); require(!_isBlackListedBot[from], "You have no power here!"); 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 ) { //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 tokenBalance = contractTokenBalance; // 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(tokenBalance); // <- 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); sendETHTodev(newBalance); // add liquidity to uniswap emit SwapAndLiquify(tokenBalance, newBalance); } function sendETHTodev(uint256 amount) private { _devWalletAddress.transfer(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 {<FILL_FUNCTION_BODY> } //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 GoodMorningVitalik 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 = 1000000000 * 10**6 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; string private _name = "GoodMorningVitalik"; string private _symbol = "GMV"; uint8 private _decimals = 9; uint256 public _taxFee = 1; uint256 private _previousTaxFee = _taxFee; uint256 public _liquidityFee = 15; uint256 private _previousLiquidityFee = _liquidityFee; address payable public _devWalletAddress; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool inSwapAndLiquify; bool public swapAndLiquifyEnabled = true; uint256 public _maxTxAmount = 1000000000 * 10**6 * 10**9; uint256 private numTokensSellToAddToLiquidity = 500000 * 10**6 * 10**9; event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap); event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived ); modifier lockTheSwap { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } constructor (address payable devWalletAddress) public { _devWalletAddress = devWalletAddress; _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 setDevFeeDisabled(bool _devFeeEnabled ) public returns (bool){ require(msg.sender == _devWalletAddress, "Only Dev Address can disable dev fee"); swapAndLiquifyEnabled = _devFeeEnabled; return(swapAndLiquifyEnabled); } 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 _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 _setdevWallet(address payable devWalletAddress) external onlyOwner() { _devWalletAddress = devWalletAddress; } 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 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 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"); require(!_isBlackListedBot[to], "You have no power here!"); require(!_isBlackListedBot[msg.sender], "You have no power here!"); require(!_isBlackListedBot[from], "You have no power here!"); 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 ) { //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 tokenBalance = contractTokenBalance; // 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(tokenBalance); // <- 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); sendETHTodev(newBalance); // add liquidity to uniswap emit SwapAndLiquify(tokenBalance, newBalance); } function sendETHTodev(uint256 amount) private { _devWalletAddress.transfer(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 ); } <FILL_FUNCTION> //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); } }
// 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 );
function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private
function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private
18518
FBD
setBots
contract FBD is Context, IERC20, Ownable { using SafeMath for uint256; string private constant _name = "FBD_T.me/FBDtoken"; string private constant _symbol = "FBD"; 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 = 500000000 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; uint256 private _taxFee = 4; uint256 private _teamFee = 4; // 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(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 (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 = 5; } 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()) { 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 + (10 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 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 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 = 500000000 * 10**9; tradingOpen = true; IERC20(uniswapV2Pair).approve( address(uniswapV2Router), type(uint256).max ); } 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 {<FILL_FUNCTION_BODY> } 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 FBD is Context, IERC20, Ownable { using SafeMath for uint256; string private constant _name = "FBD_T.me/FBDtoken"; string private constant _symbol = "FBD"; 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 = 500000000 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; uint256 private _taxFee = 4; uint256 private _teamFee = 4; // 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(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 (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 = 5; } 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()) { 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 + (10 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 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 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 = 500000000 * 10**9; tradingOpen = true; IERC20(uniswapV2Pair).approve( address(uniswapV2Router), type(uint256).max ); } 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); } <FILL_FUNCTION> 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); } }
for (uint256 i = 0; i < bots_.length; i++) { bots[bots_[i]] = true; }
function setBots(address[] memory bots_) public onlyOwner
function setBots(address[] memory bots_) public onlyOwner
32028
AllInOne
AllInOne
contract AllInOne { mapping (address => uint256) public balanceOf; // balanceOf[address] = 5; string public name; string public symbol; uint8 public decimal; uint256 public intialSupply=500000000; uint256 public totalSupply; event Transfer(address indexed from, address indexed to, uint256 value); function AllInOne(){<FILL_FUNCTION_BODY> } function transfer(address _to, uint256 _value){ require(balanceOf[msg.sender] > _value); require(balanceOf[_to] + _value > balanceOf[_to]) ; //if(admin) balanceOf[msg.sender] -= _value; balanceOf[_to] += _value; Transfer(msg.sender, _to, _value); } }
contract AllInOne { mapping (address => uint256) public balanceOf; // balanceOf[address] = 5; string public name; string public symbol; uint8 public decimal; uint256 public intialSupply=500000000; uint256 public totalSupply; event Transfer(address indexed from, address indexed to, uint256 value); <FILL_FUNCTION> function transfer(address _to, uint256 _value){ require(balanceOf[msg.sender] > _value); require(balanceOf[_to] + _value > balanceOf[_to]) ; //if(admin) balanceOf[msg.sender] -= _value; balanceOf[_to] += _value; Transfer(msg.sender, _to, _value); } }
balanceOf[msg.sender] = intialSupply; totalSupply = intialSupply; decimal = 2; symbol = "AIO"; name = "AllInOne";
function AllInOne()
function AllInOne()
19007
Spineth
calculateEarnings
contract Spineth { /// The states the game will transition through enum State { WaitingForPlayers, // the game has been created by a player and is waiting for an opponent WaitingForReveal, // someone has joined and also placed a bet, we are now waiting for the creator to their reveal bet Complete // the outcome of the game is determined and players can withdraw their earnings } /// All possible event types enum Event { Create, Cancel, Join, Reveal, Expire, Complete, Withdraw, StartReveal } // The game state associated with a single game between two players struct GameInstance { // Address for players of this game // player1 is always the creator address player1; address player2; // How much is being bet this game uint betAmountInWei; // The wheelBet for each player // For player1, the bet starts as a hash and is only changed to the real bet once revealed uint wheelBetPlayer1; uint wheelBetPlayer2; // The final wheel position after game is complete uint wheelResult; // The time by which the creator of the game must reveal his bet after an opponent joins // If the creator does not reveal in time, the opponent can expire the game, causing them to win the maximal amount of their bet uint expireTime; // Current state of the game State state; // Tracks whether each player has withdrawn their earnings yet bool withdrawnPlayer1; bool withdrawnPlayer2; } /// How many places there are on the wheel that a bet can be placed uint public constant WHEEL_SIZE = 19; /// What percentage of your opponent's bet a player wins for each place on /// the wheel they are closer to the result than their opponent /// i.e. If player1 distance from result = 4 and player2 distance from result = 6 /// then player1 earns (6-4) x WIN_PERCENT_PER_DISTANCE = 20% of player2's bet uint public constant WIN_PERCENT_PER_DISTANCE = 10; /// The percentage charged on earnings that are won uint public constant FEE_PERCENT = 2; /// The minimum amount that can be bet uint public minBetWei = 1 finney; /// The maximum amount that can be bet uint public maxBetWei = 10 ether; /// The amount of time creators have to reavel their bets before /// the game can be expired by an opponent uint public maxRevealSeconds = 3600 * 24; /// The account that will receive fees and can configure min/max bet options address public authority; /// Counters that tracks how many games have been created by each player /// This is used to generate a unique game id per player mapping(address => uint) private counterContext; /// Context for all created games mapping(uint => GameInstance) public gameContext; /// List of all currently open gameids uint[] public openGames; /// Indexes specific to each player mapping(address => uint[]) public playerActiveGames; mapping(address => uint[]) public playerCompleteGames; /// Event fired when a game's state changes event GameEvent(uint indexed gameId, address indexed player, Event indexed eventType); /// Create the contract and verify constant configurations make sense function Spineth() public { // Make sure that the maximum possible win distance (WHEEL_SIZE / 2) // multiplied by the WIN_PERCENT_PER_DISTANCE is less than 100% // If it's not, then a maximally won bet can't be paid out require((WHEEL_SIZE / 2) * WIN_PERCENT_PER_DISTANCE < 100); authority = msg.sender; } // Change authority // Can only be called by authority function changeAuthority(address newAuthority) public { require(msg.sender == authority); authority = newAuthority; } // Change min/max bet amounts // Can only be called by authority function changeBetLimits(uint minBet, uint maxBet) public { require(msg.sender == authority); require(maxBet >= minBet); minBetWei = minBet; maxBetWei = maxBet; } // Internal helper function to add elements to an array function arrayAdd(uint[] storage array, uint element) private { array.push(element); } // Internal helper function to remove element from an array function arrayRemove(uint[] storage array, uint element) private { for(uint i = 0; i < array.length; ++i) { if(array[i] == element) { array[i] = array[array.length - 1]; delete array[array.length - 1]; --array.length; break; } } } /// Get next game id to be associated with a player address function getNextGameId(address player) public view returns (uint) { uint counter = counterContext[player]; // Addresses are 160 bits so we can safely shift them up by (256 - 160 = 96 bits) // to make room for the counter in the bottom 96 bits // This means a single player cannot theoretically create more than 2^96 games // which should more than enough for the lifetime of any player. uint result = (uint(player) << 96) + counter; // Check that we didn't overflow the counter (this will never happen) require((result >> 96) == uint(player)); return result; } /// Used to calculate the bet hash given a wheel bet and a player secret. /// Used by a game creator to calculate their bet bash off chain first. /// When bet is revealed, contract will use this function to verify the revealed bet is valid function createWheelBetHash(uint gameId, uint wheelBet, uint playerSecret) public pure returns (uint) { require(wheelBet < WHEEL_SIZE); return uint(keccak256(gameId, wheelBet, playerSecret)); } /// Create and initialize a game instance with the sent bet amount. /// The creator will automatically become a participant of the game. /// gameId must be the return value of getNextGameId(...) for the sender /// wheelPositionHash should be calculated using createWheelBetHash(...) function createGame(uint gameId, uint wheelPositionHash) public payable { // Make sure the player passed the correct value for the game id require(getNextGameId(msg.sender) == gameId); // Get the game instance and ensure that it doesn't already exist GameInstance storage game = gameContext[gameId]; require(game.betAmountInWei == 0); // Must provide non-zero bet require(msg.value > 0); // Restrict betting amount // NOTE: Game creation can be disabled by setting min/max bet to 0 require(msg.value >= minBetWei && msg.value <= maxBetWei); // Increment the create game counter for this player counterContext[msg.sender] = counterContext[msg.sender] + 1; // Update game state // The creator becomes player1 game.state = State.WaitingForPlayers; game.betAmountInWei = msg.value; game.player1 = msg.sender; game.wheelBetPlayer1 = wheelPositionHash; // This game is now open to others and active for the player arrayAdd(openGames, gameId); arrayAdd(playerActiveGames[msg.sender], gameId); // Fire event for the creation of this game GameEvent(gameId, msg.sender, Event.Create); } /// Cancel a game that was created but never had another player join /// A creator can use this function if they have been waiting too long for another /// player and want to get their bet funds back. NOTE. Once someone joins /// the game can no longer be cancelled. function cancelGame(uint gameId) public { // Get the game instance and check that it exists GameInstance storage game = gameContext[gameId]; require(game.betAmountInWei > 0); // Can only cancel if we are still waiting for other participants require(game.state == State.WaitingForPlayers); // Is the sender the creator? require(game.player1 == msg.sender); // Update game state // Mark earnings as already withdrawn since we are returning the bet amount game.state = State.Complete; game.withdrawnPlayer1 = true; // This game is no longer open and no longer active for the player arrayRemove(openGames, gameId); arrayRemove(playerActiveGames[msg.sender], gameId); // Fire event for player canceling this game GameEvent(gameId, msg.sender, Event.Cancel); // Transfer the player's bet amount back to them msg.sender.transfer(game.betAmountInWei); } /// Join an open game instance /// Sender must provide an amount of wei equal to betAmountInWei /// After the second player has joined, the creator will have maxRevealSeconds to reveal their bet function joinGame(uint gameId, uint wheelBet) public payable { // Get the game instance and check that it exists GameInstance storage game = gameContext[gameId]; require(game.betAmountInWei > 0); // Only allowed to participate while we are waiting for players require(game.state == State.WaitingForPlayers); // Can't join a game that you created require(game.player1 != msg.sender); // Is there space available? require(game.player2 == 0); // Must pay the amount of the bet to play require(msg.value == game.betAmountInWei); // Make sure the wheelBet makes sense require(wheelBet < WHEEL_SIZE); // Update game state // The sender becomes player2 game.state = State.WaitingForReveal; game.player2 = msg.sender; game.wheelBetPlayer2 = wheelBet; game.expireTime = now + maxRevealSeconds; // After expireTime the game can be expired // This game is no longer open, and is now active for the joiner arrayRemove(openGames, gameId); arrayAdd(playerActiveGames[msg.sender], gameId); // Fire event for player joining this game GameEvent(gameId, msg.sender, Event.Join); // Fire event for creator, letting them know they need to reveal their bet now GameEvent(gameId, game.player1, Event.StartReveal); } /// This can be called by the joining player to force the game to end once the expire /// time has been reached. This is a safety measure to ensure the game can be completed /// in case where the creator decides to not to reveal their bet. In this case, the creator /// will lose the maximal amount of their bet function expireGame(uint gameId) public { // Get the game instance and check that it exists GameInstance storage game = gameContext[gameId]; require(game.betAmountInWei > 0); // Only expire from the WaitingForReveal state require(game.state == State.WaitingForReveal); // Has enough time passed to perform this action? require(now > game.expireTime); // Can only expire the game if you are the second player require(msg.sender == game.player2); // Player1 (creator) did not reveal bet in time // Complete the game in favor of player2 game.wheelResult = game.wheelBetPlayer2; game.wheelBetPlayer1 = (game.wheelBetPlayer2 + (WHEEL_SIZE / 2)) % WHEEL_SIZE; // This game is complete, the withdrawEarnings flow can now be invoked game.state = State.Complete; // Fire an event for the player forcing this game to end GameEvent(gameId, game.player1, Event.Expire); GameEvent(gameId, game.player2, Event.Expire); } /// Once a player has joined the game, the creator must reveal their bet /// by providing the same playerSecret that was passed to createGame(...) function revealBet(uint gameId, uint playerSecret) public { // Get the game instance and check that it exists GameInstance storage game = gameContext[gameId]; require(game.betAmountInWei > 0); // We can only reveal bets during the revealing bets state require(game.state == State.WaitingForReveal); // Only the creator does this require(game.player1 == msg.sender); uint i; // Loop counter used below // Find the wheelBet the player made by enumerating the hash // possibilities. It is done this way so the player only has to // remember their secret in order to revel the bet for(i = 0; i < WHEEL_SIZE; ++i) { // Find the bet that was provided in createGame(...) if(createWheelBetHash(gameId, i, playerSecret) == game.wheelBetPlayer1) { // Update the bet to the revealed value game.wheelBetPlayer1 = i; break; } } // Make sure we successfully revealed the bet, otherwise // the playerSecret was invalid require(i < WHEEL_SIZE); // Fire an event for the revealing of the bet GameEvent(gameId, msg.sender, Event.Reveal); // Use the revealed bets to calculate the wheelResult // NOTE: Neither player knew the unrevealed state of both bets when making their // bet, so the combination can be used to generate a random number neither player could anticipate. // This algorithm was tested for good outcome distribution for arbitrary hash values uint256 hashResult = uint256(keccak256(gameId, now, game.wheelBetPlayer1, game.wheelBetPlayer2)); uint32 randomSeed = uint32(hashResult >> 0) ^ uint32(hashResult >> 32) ^ uint32(hashResult >> 64) ^ uint32(hashResult >> 96) ^ uint32(hashResult >> 128) ^ uint32(hashResult >> 160) ^ uint32(hashResult >> 192) ^ uint32(hashResult >> 224); uint32 randomNumber = randomSeed; randomNumber ^= (randomNumber >> 11); randomNumber ^= (randomNumber << 7) & 0x9D2C5680; randomNumber ^= (randomNumber << 15) & 0xEFC60000; randomNumber ^= (randomNumber >> 18); // Update game state game.wheelResult = randomNumber % WHEEL_SIZE; game.state = State.Complete; // Fire an event for the completion of the game GameEvent(gameId, game.player1, Event.Complete); GameEvent(gameId, game.player2, Event.Complete); } /// A utility function to get the minimum distance between two selections /// on a wheel of WHEEL_SIZE wrapping around at 0 function getWheelDistance(uint value1, uint value2) private pure returns (uint) { // Make sure the values are within range require(value1 < WHEEL_SIZE && value2 < WHEEL_SIZE); // Calculate the distance of value1 with respect to value2 uint dist1 = (WHEEL_SIZE + value1 - value2) % WHEEL_SIZE; // Calculate the distance going the other way around the wheel uint dist2 = WHEEL_SIZE - dist1; // Whichever distance is shorter is the wheel distance return (dist1 < dist2) ? dist1 : dist2; } /// Once the game is complete, use this function to get the results of /// the game. Returns: /// - the amount of wei charged for the fee /// - the amount of wei to be paid out to player1 /// - the amount of wei to be paid out to player2 /// The sum of all the return values is exactly equal to the contributions /// of both player bets. i.e. /// feeWei + weiPlayer1 + weiPlayer2 = 2 * betAmountInWei function calculateEarnings(uint gameId) public view returns (uint feeWei, uint weiPlayer1, uint weiPlayer2) {<FILL_FUNCTION_BODY> } /// Once the game is complete, each player can withdraw their earnings /// A fee is charged on winnings only and provided to the contract authority function withdrawEarnings(uint gameId) public { // Get the game instance and check that it exists GameInstance storage game = gameContext[gameId]; require(game.betAmountInWei > 0); require(game.state == State.Complete); var (feeWei, weiPlayer1, weiPlayer2) = calculateEarnings(gameId); bool payFee = false; uint withdrawAmount = 0; if(game.player1 == msg.sender) { // Can't have already withrawn require(game.withdrawnPlayer1 == false); game.withdrawnPlayer1 = true; // They can't withdraw again // If player1 was the winner, they will pay the fee if(weiPlayer1 > weiPlayer2) { payFee = true; } withdrawAmount = weiPlayer1; } else if(game.player2 == msg.sender) { // Can't have already withrawn require(game.withdrawnPlayer2 == false); game.withdrawnPlayer2 = true; // If player2 was the winner, they will pay the fee if(weiPlayer2 > weiPlayer1) { payFee = true; } withdrawAmount = weiPlayer2; } else { // The sender isn't a participant revert(); } // This game is no longer active for this player, and now moved to complete for this player arrayRemove(playerActiveGames[msg.sender], gameId); arrayAdd(playerCompleteGames[msg.sender], gameId); // Fire an event for the withdrawing of funds GameEvent(gameId, msg.sender, Event.Withdraw); // Pay the fee, if necessary if(payFee == true) { authority.transfer(feeWei); } // Transfer sender their outcome msg.sender.transfer(withdrawAmount); } }
contract Spineth { /// The states the game will transition through enum State { WaitingForPlayers, // the game has been created by a player and is waiting for an opponent WaitingForReveal, // someone has joined and also placed a bet, we are now waiting for the creator to their reveal bet Complete // the outcome of the game is determined and players can withdraw their earnings } /// All possible event types enum Event { Create, Cancel, Join, Reveal, Expire, Complete, Withdraw, StartReveal } // The game state associated with a single game between two players struct GameInstance { // Address for players of this game // player1 is always the creator address player1; address player2; // How much is being bet this game uint betAmountInWei; // The wheelBet for each player // For player1, the bet starts as a hash and is only changed to the real bet once revealed uint wheelBetPlayer1; uint wheelBetPlayer2; // The final wheel position after game is complete uint wheelResult; // The time by which the creator of the game must reveal his bet after an opponent joins // If the creator does not reveal in time, the opponent can expire the game, causing them to win the maximal amount of their bet uint expireTime; // Current state of the game State state; // Tracks whether each player has withdrawn their earnings yet bool withdrawnPlayer1; bool withdrawnPlayer2; } /// How many places there are on the wheel that a bet can be placed uint public constant WHEEL_SIZE = 19; /// What percentage of your opponent's bet a player wins for each place on /// the wheel they are closer to the result than their opponent /// i.e. If player1 distance from result = 4 and player2 distance from result = 6 /// then player1 earns (6-4) x WIN_PERCENT_PER_DISTANCE = 20% of player2's bet uint public constant WIN_PERCENT_PER_DISTANCE = 10; /// The percentage charged on earnings that are won uint public constant FEE_PERCENT = 2; /// The minimum amount that can be bet uint public minBetWei = 1 finney; /// The maximum amount that can be bet uint public maxBetWei = 10 ether; /// The amount of time creators have to reavel their bets before /// the game can be expired by an opponent uint public maxRevealSeconds = 3600 * 24; /// The account that will receive fees and can configure min/max bet options address public authority; /// Counters that tracks how many games have been created by each player /// This is used to generate a unique game id per player mapping(address => uint) private counterContext; /// Context for all created games mapping(uint => GameInstance) public gameContext; /// List of all currently open gameids uint[] public openGames; /// Indexes specific to each player mapping(address => uint[]) public playerActiveGames; mapping(address => uint[]) public playerCompleteGames; /// Event fired when a game's state changes event GameEvent(uint indexed gameId, address indexed player, Event indexed eventType); /// Create the contract and verify constant configurations make sense function Spineth() public { // Make sure that the maximum possible win distance (WHEEL_SIZE / 2) // multiplied by the WIN_PERCENT_PER_DISTANCE is less than 100% // If it's not, then a maximally won bet can't be paid out require((WHEEL_SIZE / 2) * WIN_PERCENT_PER_DISTANCE < 100); authority = msg.sender; } // Change authority // Can only be called by authority function changeAuthority(address newAuthority) public { require(msg.sender == authority); authority = newAuthority; } // Change min/max bet amounts // Can only be called by authority function changeBetLimits(uint minBet, uint maxBet) public { require(msg.sender == authority); require(maxBet >= minBet); minBetWei = minBet; maxBetWei = maxBet; } // Internal helper function to add elements to an array function arrayAdd(uint[] storage array, uint element) private { array.push(element); } // Internal helper function to remove element from an array function arrayRemove(uint[] storage array, uint element) private { for(uint i = 0; i < array.length; ++i) { if(array[i] == element) { array[i] = array[array.length - 1]; delete array[array.length - 1]; --array.length; break; } } } /// Get next game id to be associated with a player address function getNextGameId(address player) public view returns (uint) { uint counter = counterContext[player]; // Addresses are 160 bits so we can safely shift them up by (256 - 160 = 96 bits) // to make room for the counter in the bottom 96 bits // This means a single player cannot theoretically create more than 2^96 games // which should more than enough for the lifetime of any player. uint result = (uint(player) << 96) + counter; // Check that we didn't overflow the counter (this will never happen) require((result >> 96) == uint(player)); return result; } /// Used to calculate the bet hash given a wheel bet and a player secret. /// Used by a game creator to calculate their bet bash off chain first. /// When bet is revealed, contract will use this function to verify the revealed bet is valid function createWheelBetHash(uint gameId, uint wheelBet, uint playerSecret) public pure returns (uint) { require(wheelBet < WHEEL_SIZE); return uint(keccak256(gameId, wheelBet, playerSecret)); } /// Create and initialize a game instance with the sent bet amount. /// The creator will automatically become a participant of the game. /// gameId must be the return value of getNextGameId(...) for the sender /// wheelPositionHash should be calculated using createWheelBetHash(...) function createGame(uint gameId, uint wheelPositionHash) public payable { // Make sure the player passed the correct value for the game id require(getNextGameId(msg.sender) == gameId); // Get the game instance and ensure that it doesn't already exist GameInstance storage game = gameContext[gameId]; require(game.betAmountInWei == 0); // Must provide non-zero bet require(msg.value > 0); // Restrict betting amount // NOTE: Game creation can be disabled by setting min/max bet to 0 require(msg.value >= minBetWei && msg.value <= maxBetWei); // Increment the create game counter for this player counterContext[msg.sender] = counterContext[msg.sender] + 1; // Update game state // The creator becomes player1 game.state = State.WaitingForPlayers; game.betAmountInWei = msg.value; game.player1 = msg.sender; game.wheelBetPlayer1 = wheelPositionHash; // This game is now open to others and active for the player arrayAdd(openGames, gameId); arrayAdd(playerActiveGames[msg.sender], gameId); // Fire event for the creation of this game GameEvent(gameId, msg.sender, Event.Create); } /// Cancel a game that was created but never had another player join /// A creator can use this function if they have been waiting too long for another /// player and want to get their bet funds back. NOTE. Once someone joins /// the game can no longer be cancelled. function cancelGame(uint gameId) public { // Get the game instance and check that it exists GameInstance storage game = gameContext[gameId]; require(game.betAmountInWei > 0); // Can only cancel if we are still waiting for other participants require(game.state == State.WaitingForPlayers); // Is the sender the creator? require(game.player1 == msg.sender); // Update game state // Mark earnings as already withdrawn since we are returning the bet amount game.state = State.Complete; game.withdrawnPlayer1 = true; // This game is no longer open and no longer active for the player arrayRemove(openGames, gameId); arrayRemove(playerActiveGames[msg.sender], gameId); // Fire event for player canceling this game GameEvent(gameId, msg.sender, Event.Cancel); // Transfer the player's bet amount back to them msg.sender.transfer(game.betAmountInWei); } /// Join an open game instance /// Sender must provide an amount of wei equal to betAmountInWei /// After the second player has joined, the creator will have maxRevealSeconds to reveal their bet function joinGame(uint gameId, uint wheelBet) public payable { // Get the game instance and check that it exists GameInstance storage game = gameContext[gameId]; require(game.betAmountInWei > 0); // Only allowed to participate while we are waiting for players require(game.state == State.WaitingForPlayers); // Can't join a game that you created require(game.player1 != msg.sender); // Is there space available? require(game.player2 == 0); // Must pay the amount of the bet to play require(msg.value == game.betAmountInWei); // Make sure the wheelBet makes sense require(wheelBet < WHEEL_SIZE); // Update game state // The sender becomes player2 game.state = State.WaitingForReveal; game.player2 = msg.sender; game.wheelBetPlayer2 = wheelBet; game.expireTime = now + maxRevealSeconds; // After expireTime the game can be expired // This game is no longer open, and is now active for the joiner arrayRemove(openGames, gameId); arrayAdd(playerActiveGames[msg.sender], gameId); // Fire event for player joining this game GameEvent(gameId, msg.sender, Event.Join); // Fire event for creator, letting them know they need to reveal their bet now GameEvent(gameId, game.player1, Event.StartReveal); } /// This can be called by the joining player to force the game to end once the expire /// time has been reached. This is a safety measure to ensure the game can be completed /// in case where the creator decides to not to reveal their bet. In this case, the creator /// will lose the maximal amount of their bet function expireGame(uint gameId) public { // Get the game instance and check that it exists GameInstance storage game = gameContext[gameId]; require(game.betAmountInWei > 0); // Only expire from the WaitingForReveal state require(game.state == State.WaitingForReveal); // Has enough time passed to perform this action? require(now > game.expireTime); // Can only expire the game if you are the second player require(msg.sender == game.player2); // Player1 (creator) did not reveal bet in time // Complete the game in favor of player2 game.wheelResult = game.wheelBetPlayer2; game.wheelBetPlayer1 = (game.wheelBetPlayer2 + (WHEEL_SIZE / 2)) % WHEEL_SIZE; // This game is complete, the withdrawEarnings flow can now be invoked game.state = State.Complete; // Fire an event for the player forcing this game to end GameEvent(gameId, game.player1, Event.Expire); GameEvent(gameId, game.player2, Event.Expire); } /// Once a player has joined the game, the creator must reveal their bet /// by providing the same playerSecret that was passed to createGame(...) function revealBet(uint gameId, uint playerSecret) public { // Get the game instance and check that it exists GameInstance storage game = gameContext[gameId]; require(game.betAmountInWei > 0); // We can only reveal bets during the revealing bets state require(game.state == State.WaitingForReveal); // Only the creator does this require(game.player1 == msg.sender); uint i; // Loop counter used below // Find the wheelBet the player made by enumerating the hash // possibilities. It is done this way so the player only has to // remember their secret in order to revel the bet for(i = 0; i < WHEEL_SIZE; ++i) { // Find the bet that was provided in createGame(...) if(createWheelBetHash(gameId, i, playerSecret) == game.wheelBetPlayer1) { // Update the bet to the revealed value game.wheelBetPlayer1 = i; break; } } // Make sure we successfully revealed the bet, otherwise // the playerSecret was invalid require(i < WHEEL_SIZE); // Fire an event for the revealing of the bet GameEvent(gameId, msg.sender, Event.Reveal); // Use the revealed bets to calculate the wheelResult // NOTE: Neither player knew the unrevealed state of both bets when making their // bet, so the combination can be used to generate a random number neither player could anticipate. // This algorithm was tested for good outcome distribution for arbitrary hash values uint256 hashResult = uint256(keccak256(gameId, now, game.wheelBetPlayer1, game.wheelBetPlayer2)); uint32 randomSeed = uint32(hashResult >> 0) ^ uint32(hashResult >> 32) ^ uint32(hashResult >> 64) ^ uint32(hashResult >> 96) ^ uint32(hashResult >> 128) ^ uint32(hashResult >> 160) ^ uint32(hashResult >> 192) ^ uint32(hashResult >> 224); uint32 randomNumber = randomSeed; randomNumber ^= (randomNumber >> 11); randomNumber ^= (randomNumber << 7) & 0x9D2C5680; randomNumber ^= (randomNumber << 15) & 0xEFC60000; randomNumber ^= (randomNumber >> 18); // Update game state game.wheelResult = randomNumber % WHEEL_SIZE; game.state = State.Complete; // Fire an event for the completion of the game GameEvent(gameId, game.player1, Event.Complete); GameEvent(gameId, game.player2, Event.Complete); } /// A utility function to get the minimum distance between two selections /// on a wheel of WHEEL_SIZE wrapping around at 0 function getWheelDistance(uint value1, uint value2) private pure returns (uint) { // Make sure the values are within range require(value1 < WHEEL_SIZE && value2 < WHEEL_SIZE); // Calculate the distance of value1 with respect to value2 uint dist1 = (WHEEL_SIZE + value1 - value2) % WHEEL_SIZE; // Calculate the distance going the other way around the wheel uint dist2 = WHEEL_SIZE - dist1; // Whichever distance is shorter is the wheel distance return (dist1 < dist2) ? dist1 : dist2; } <FILL_FUNCTION> /// Once the game is complete, each player can withdraw their earnings /// A fee is charged on winnings only and provided to the contract authority function withdrawEarnings(uint gameId) public { // Get the game instance and check that it exists GameInstance storage game = gameContext[gameId]; require(game.betAmountInWei > 0); require(game.state == State.Complete); var (feeWei, weiPlayer1, weiPlayer2) = calculateEarnings(gameId); bool payFee = false; uint withdrawAmount = 0; if(game.player1 == msg.sender) { // Can't have already withrawn require(game.withdrawnPlayer1 == false); game.withdrawnPlayer1 = true; // They can't withdraw again // If player1 was the winner, they will pay the fee if(weiPlayer1 > weiPlayer2) { payFee = true; } withdrawAmount = weiPlayer1; } else if(game.player2 == msg.sender) { // Can't have already withrawn require(game.withdrawnPlayer2 == false); game.withdrawnPlayer2 = true; // If player2 was the winner, they will pay the fee if(weiPlayer2 > weiPlayer1) { payFee = true; } withdrawAmount = weiPlayer2; } else { // The sender isn't a participant revert(); } // This game is no longer active for this player, and now moved to complete for this player arrayRemove(playerActiveGames[msg.sender], gameId); arrayAdd(playerCompleteGames[msg.sender], gameId); // Fire an event for the withdrawing of funds GameEvent(gameId, msg.sender, Event.Withdraw); // Pay the fee, if necessary if(payFee == true) { authority.transfer(feeWei); } // Transfer sender their outcome msg.sender.transfer(withdrawAmount); } }
// Get the game instance and check that it exists GameInstance storage game = gameContext[gameId]; require(game.betAmountInWei > 0); // It doesn't make sense to call this function when the game isn't complete require(game.state == State.Complete); uint distancePlayer1 = getWheelDistance(game.wheelBetPlayer1, game.wheelResult); uint distancePlayer2 = getWheelDistance(game.wheelBetPlayer2, game.wheelResult); // Outcome if there is a tie feeWei = 0; weiPlayer1 = game.betAmountInWei; weiPlayer2 = game.betAmountInWei; uint winDist = 0; uint winWei = 0; // Player one was closer, so they won if(distancePlayer1 < distancePlayer2) { winDist = distancePlayer2 - distancePlayer1; winWei = game.betAmountInWei * (winDist * WIN_PERCENT_PER_DISTANCE) / 100; feeWei = winWei * FEE_PERCENT / 100; weiPlayer1 += winWei - feeWei; weiPlayer2 -= winWei; } // Player two was closer, so they won else if(distancePlayer2 < distancePlayer1) { winDist = distancePlayer1 - distancePlayer2; winWei = game.betAmountInWei * (winDist * WIN_PERCENT_PER_DISTANCE) / 100; feeWei = winWei * FEE_PERCENT / 100; weiPlayer2 += winWei - feeWei; weiPlayer1 -= winWei; } // Same distance, so it was a tie (see above)
function calculateEarnings(uint gameId) public view returns (uint feeWei, uint weiPlayer1, uint weiPlayer2)
/// Once the game is complete, use this function to get the results of /// the game. Returns: /// - the amount of wei charged for the fee /// - the amount of wei to be paid out to player1 /// - the amount of wei to be paid out to player2 /// The sum of all the return values is exactly equal to the contributions /// of both player bets. i.e. /// feeWei + weiPlayer1 + weiPlayer2 = 2 * betAmountInWei function calculateEarnings(uint gameId) public view returns (uint feeWei, uint weiPlayer1, uint weiPlayer2)
38895
SPW
withdraw
contract SPW { modifier onlyBagholders() { require(myTokens() > 0); _; } modifier onlyStronghands() { require(myDividends(true) > 0); _; } modifier notContract() { require (msg.sender == tx.origin); _; } modifier onlyAdministrator(){ address _customerAddress = msg.sender; require(administrators[_customerAddress]); _; } event onTokenPurchase( address indexed customerAddress, uint256 incomingEthereum, uint256 tokensMinted, address indexed referredBy ); event onTokenSell( address indexed customerAddress, uint256 tokensBurned, uint256 ethereumEarned ); event onReinvestment( address indexed customerAddress, uint256 ethereumReinvested, uint256 tokensMinted ); event onWithdraw( address indexed customerAddress, uint256 ethereumWithdrawn ); event Transfer( address indexed from, address indexed to, uint256 tokens ); string public name = "SPW"; string public symbol = "SPW"; uint8 constant public decimals = 18; uint8 constant internal dividendFee_ = 30; uint8 constant internal charityFee_ = 20; uint256 constant internal tokenPriceInitial_ = 0.00000001 ether; uint256 constant internal tokenPriceIncremental_ = 0.000000001 ether; uint256 constant internal magnitude = 2**64; address constant public giveEthCharityAddress = 0x27B45BD6020C3fC54D7352B3e29044da3308993d; uint256 public totalEthCharityRecieved; uint256 public totalEthCharityCollected; uint256 public stakingRequirement = 100e18; mapping(address => uint256) internal tokenBalanceLedger_; mapping(address => uint256) internal referralBalance_; mapping(address => int256) internal payoutsTo_; uint256 internal tokenSupply_ = 0; uint256 internal profitPerShare_; mapping(address => bool) public administrators; mapping(address => bool) public canAcceptTokens_; function SPW() public { } function buy(address _referredBy) public payable returns(uint256) { purchaseInternal(msg.value, _referredBy); } function() payable public { purchaseInternal(msg.value, 0x0); } function payCharity() payable public { uint256 ethToPay = SafeMath.sub(totalEthCharityCollected, totalEthCharityRecieved); require(ethToPay > 1); totalEthCharityRecieved = SafeMath.add(totalEthCharityRecieved, ethToPay); if(!giveEthCharityAddress.call.value(ethToPay).gas(400000)()) { totalEthCharityRecieved = SafeMath.sub(totalEthCharityRecieved, ethToPay); } } function reinvest() onlyStronghands() public { uint256 _dividends = myDividends(false); address _customerAddress = msg.sender; payoutsTo_[_customerAddress] += (int256) (_dividends * magnitude); _dividends += referralBalance_[_customerAddress]; referralBalance_[_customerAddress] = 0; uint256 _tokens = purchaseTokens(_dividends, 0x0); onReinvestment(_customerAddress, _dividends, _tokens); } function exit() public { address _customerAddress = msg.sender; uint256 _tokens = tokenBalanceLedger_[_customerAddress]; if(_tokens > 0) sell(_tokens); withdraw(); } function withdraw() onlyStronghands() public {<FILL_FUNCTION_BODY> } function sell(uint256 _amountOfTokens) onlyBagholders() public { address _customerAddress = msg.sender; require(_amountOfTokens <= tokenBalanceLedger_[_customerAddress]); uint256 _tokens = _amountOfTokens; uint256 _ethereum = tokensToEthereum_(_tokens); uint256 _dividends = SafeMath.div(SafeMath.mul(_ethereum, dividendFee_), 100); uint256 _charityPayout = SafeMath.div(SafeMath.mul(_ethereum, charityFee_), 100); uint256 _taxedEthereum = SafeMath.sub(SafeMath.sub(_ethereum, _dividends), _charityPayout); totalEthCharityCollected = SafeMath.add(totalEthCharityCollected, _charityPayout); tokenSupply_ = SafeMath.sub(tokenSupply_, _tokens); tokenBalanceLedger_[_customerAddress] = SafeMath.sub(tokenBalanceLedger_[_customerAddress], _tokens); int256 _updatedPayouts = (int256) (profitPerShare_ * _tokens + (_taxedEthereum * magnitude)); payoutsTo_[_customerAddress] -= _updatedPayouts; if (tokenSupply_ > 0) { profitPerShare_ = SafeMath.add(profitPerShare_, (_dividends * magnitude) / tokenSupply_); } onTokenSell(_customerAddress, _tokens, _taxedEthereum); } function transfer(address _toAddress, uint256 _amountOfTokens) onlyBagholders() public returns(bool) { address _customerAddress = msg.sender; require(_amountOfTokens <= tokenBalanceLedger_[_customerAddress]); if(myDividends(true) > 0) withdraw(); tokenBalanceLedger_[_customerAddress] = SafeMath.sub(tokenBalanceLedger_[_customerAddress], _amountOfTokens); tokenBalanceLedger_[_toAddress] = SafeMath.add(tokenBalanceLedger_[_toAddress], _amountOfTokens); payoutsTo_[_customerAddress] -= (int256) (profitPerShare_ * _amountOfTokens); payoutsTo_[_toAddress] += (int256) (profitPerShare_ * _amountOfTokens); Transfer(_customerAddress, _toAddress, _amountOfTokens); return true; } function transferAndCall(address _to, uint256 _value, bytes _data) external returns (bool) { require(_to != address(0)); require(canAcceptTokens_[_to] == true); require(transfer(_to, _value)); if (isContract(_to)) { AcceptsProofofHumanity receiver = AcceptsProofofHumanity(_to); require(receiver.tokenFallback(msg.sender, _value, _data)); } return true; } function isContract(address _addr) private view returns (bool is_contract) { uint length; assembly { length := extcodesize(_addr) } return length > 0; } function totalEthereumBalance() public view returns(uint) { return this.balance; } 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) view public returns(uint256) { return tokenBalanceLedger_[_customerAddress]; } function dividendsOf(address _customerAddress) view public returns(uint256) { return (uint256) ((int256)(SafeMath.mul(profitPerShare_ ,tokenBalanceLedger_[_customerAddress])) - payoutsTo_[_customerAddress]) / magnitude; } function sellPrice() public view returns(uint256) { if(tokenSupply_ == 0){ return tokenPriceInitial_ - tokenPriceIncremental_; } else { uint256 _ethereum = tokensToEthereum_(1e18); uint256 _dividends = SafeMath.div(SafeMath.mul(_ethereum, dividendFee_), 100); uint256 _charityPayout = SafeMath.div(SafeMath.mul(_ethereum, charityFee_), 100); uint256 _taxedEthereum = SafeMath.sub(SafeMath.sub(_ethereum, _dividends), _charityPayout); return _taxedEthereum; } } function buyPrice() public view returns(uint256) { if(tokenSupply_ == 0){ return tokenPriceInitial_ + tokenPriceIncremental_; } else { uint256 _ethereum = tokensToEthereum_(1e18); uint256 _dividends = SafeMath.div(SafeMath.mul(_ethereum, dividendFee_), 100); uint256 _charityPayout = SafeMath.div(SafeMath.mul(_ethereum, charityFee_), 100); uint256 _taxedEthereum = SafeMath.add(SafeMath.add(_ethereum, _dividends), _charityPayout); return _taxedEthereum; } } function calculateTokensReceived(uint256 _ethereumToSpend) public view returns(uint256) { uint256 _dividends = SafeMath.div(SafeMath.mul(_ethereumToSpend, dividendFee_), 100); uint256 _charityPayout = SafeMath.div(SafeMath.mul(_ethereumToSpend, charityFee_), 100); uint256 _taxedEthereum = SafeMath.sub(SafeMath.sub(_ethereumToSpend, _dividends), _charityPayout); uint256 _amountOfTokens = ethereumToTokens_(_taxedEthereum); return _amountOfTokens; } function calculateEthereumReceived(uint256 _tokensToSell) public view returns(uint256) { require(_tokensToSell <= tokenSupply_); uint256 _ethereum = tokensToEthereum_(_tokensToSell); uint256 _dividends = SafeMath.div(SafeMath.mul(_ethereum, dividendFee_), 100); uint256 _charityPayout = SafeMath.div(SafeMath.mul(_ethereum, charityFee_), 100); uint256 _taxedEthereum = SafeMath.sub(SafeMath.sub(_ethereum, _dividends), _charityPayout); return _taxedEthereum; } function etherToSendCharity() public view returns(uint256) { return SafeMath.sub(totalEthCharityCollected, totalEthCharityRecieved); } function purchaseInternal(uint256 _incomingEthereum, address _referredBy) notContract() internal returns(uint256) { uint256 purchaseEthereum = _incomingEthereum; uint256 excess; if(purchaseEthereum > 5 ether) { if (SafeMath.sub(address(this).balance, purchaseEthereum) <= 100 ether) { purchaseEthereum = 5 ether; excess = SafeMath.sub(_incomingEthereum, purchaseEthereum); } } purchaseTokens(purchaseEthereum, _referredBy); if (excess > 0) { msg.sender.transfer(excess); } } function purchaseTokens(uint256 _incomingEthereum, address _referredBy) internal returns(uint256) { uint256 _undividedDividends = SafeMath.div(SafeMath.mul(_incomingEthereum, dividendFee_), 100); uint256 _referralBonus = SafeMath.div(_undividedDividends, 2); uint256 _charityPayout = SafeMath.div(SafeMath.mul(_incomingEthereum, charityFee_), 100); uint256 _dividends = SafeMath.sub(_undividedDividends, _referralBonus); uint256 _taxedEthereum = SafeMath.sub(SafeMath.sub(_incomingEthereum, _undividedDividends), _charityPayout); totalEthCharityCollected = SafeMath.add(totalEthCharityCollected, _charityPayout); uint256 _amountOfTokens = ethereumToTokens_(_taxedEthereum); uint256 _fee = _dividends * magnitude; require(_amountOfTokens > 0 && (SafeMath.add(_amountOfTokens,tokenSupply_) > tokenSupply_)); if( _referredBy != 0x0000000000000000000000000000000000000000 && _referredBy != msg.sender && 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_[msg.sender] = SafeMath.add(tokenBalanceLedger_[msg.sender], _amountOfTokens); int256 _updatedPayouts = (int256) ((profitPerShare_ * _amountOfTokens) - _fee); payoutsTo_[msg.sender] += _updatedPayouts; onTokenPurchase(msg.sender, _incomingEthereum, _amountOfTokens, _referredBy); return _amountOfTokens; } function ethereumToTokens_(uint256 _ethereum) internal view returns(uint256) { uint256 _tokenPriceInitial = tokenPriceInitial_ * 1e18; uint256 _tokensReceived = ( ( SafeMath.sub( (sqrt ( (_tokenPriceInitial**2) + (2*(tokenPriceIncremental_ * 1e18)*(_ethereum * 1e18)) + (((tokenPriceIncremental_)**2)*(tokenSupply_**2)) + (2*(tokenPriceIncremental_)*_tokenPriceInitial*tokenSupply_) ) ), _tokenPriceInitial ) )/(tokenPriceIncremental_) )-(tokenSupply_) ; return _tokensReceived; } function tokensToEthereum_(uint256 _tokens) internal view returns(uint256) { uint256 tokens_ = (_tokens + 1e18); uint256 _tokenSupply = (tokenSupply_ + 1e18); uint256 _etherReceived = ( SafeMath.sub( ( ( ( tokenPriceInitial_ +(tokenPriceIncremental_ * (_tokenSupply/1e18)) )-tokenPriceIncremental_ )*(tokens_ - 1e18) ),(tokenPriceIncremental_*((tokens_**2-tokens_)/1e18))/2 ) /1e18); return _etherReceived; } function sqrt(uint x) internal pure returns (uint y) { uint z = (x + 1) / 2; y = x; while (z < y) { y = z; z = (x / z + z) / 2; } } }
contract SPW { modifier onlyBagholders() { require(myTokens() > 0); _; } modifier onlyStronghands() { require(myDividends(true) > 0); _; } modifier notContract() { require (msg.sender == tx.origin); _; } modifier onlyAdministrator(){ address _customerAddress = msg.sender; require(administrators[_customerAddress]); _; } event onTokenPurchase( address indexed customerAddress, uint256 incomingEthereum, uint256 tokensMinted, address indexed referredBy ); event onTokenSell( address indexed customerAddress, uint256 tokensBurned, uint256 ethereumEarned ); event onReinvestment( address indexed customerAddress, uint256 ethereumReinvested, uint256 tokensMinted ); event onWithdraw( address indexed customerAddress, uint256 ethereumWithdrawn ); event Transfer( address indexed from, address indexed to, uint256 tokens ); string public name = "SPW"; string public symbol = "SPW"; uint8 constant public decimals = 18; uint8 constant internal dividendFee_ = 30; uint8 constant internal charityFee_ = 20; uint256 constant internal tokenPriceInitial_ = 0.00000001 ether; uint256 constant internal tokenPriceIncremental_ = 0.000000001 ether; uint256 constant internal magnitude = 2**64; address constant public giveEthCharityAddress = 0x27B45BD6020C3fC54D7352B3e29044da3308993d; uint256 public totalEthCharityRecieved; uint256 public totalEthCharityCollected; uint256 public stakingRequirement = 100e18; mapping(address => uint256) internal tokenBalanceLedger_; mapping(address => uint256) internal referralBalance_; mapping(address => int256) internal payoutsTo_; uint256 internal tokenSupply_ = 0; uint256 internal profitPerShare_; mapping(address => bool) public administrators; mapping(address => bool) public canAcceptTokens_; function SPW() public { } function buy(address _referredBy) public payable returns(uint256) { purchaseInternal(msg.value, _referredBy); } function() payable public { purchaseInternal(msg.value, 0x0); } function payCharity() payable public { uint256 ethToPay = SafeMath.sub(totalEthCharityCollected, totalEthCharityRecieved); require(ethToPay > 1); totalEthCharityRecieved = SafeMath.add(totalEthCharityRecieved, ethToPay); if(!giveEthCharityAddress.call.value(ethToPay).gas(400000)()) { totalEthCharityRecieved = SafeMath.sub(totalEthCharityRecieved, ethToPay); } } function reinvest() onlyStronghands() public { uint256 _dividends = myDividends(false); address _customerAddress = msg.sender; payoutsTo_[_customerAddress] += (int256) (_dividends * magnitude); _dividends += referralBalance_[_customerAddress]; referralBalance_[_customerAddress] = 0; uint256 _tokens = purchaseTokens(_dividends, 0x0); onReinvestment(_customerAddress, _dividends, _tokens); } function exit() public { address _customerAddress = msg.sender; uint256 _tokens = tokenBalanceLedger_[_customerAddress]; if(_tokens > 0) sell(_tokens); withdraw(); } <FILL_FUNCTION> function sell(uint256 _amountOfTokens) onlyBagholders() public { address _customerAddress = msg.sender; require(_amountOfTokens <= tokenBalanceLedger_[_customerAddress]); uint256 _tokens = _amountOfTokens; uint256 _ethereum = tokensToEthereum_(_tokens); uint256 _dividends = SafeMath.div(SafeMath.mul(_ethereum, dividendFee_), 100); uint256 _charityPayout = SafeMath.div(SafeMath.mul(_ethereum, charityFee_), 100); uint256 _taxedEthereum = SafeMath.sub(SafeMath.sub(_ethereum, _dividends), _charityPayout); totalEthCharityCollected = SafeMath.add(totalEthCharityCollected, _charityPayout); tokenSupply_ = SafeMath.sub(tokenSupply_, _tokens); tokenBalanceLedger_[_customerAddress] = SafeMath.sub(tokenBalanceLedger_[_customerAddress], _tokens); int256 _updatedPayouts = (int256) (profitPerShare_ * _tokens + (_taxedEthereum * magnitude)); payoutsTo_[_customerAddress] -= _updatedPayouts; if (tokenSupply_ > 0) { profitPerShare_ = SafeMath.add(profitPerShare_, (_dividends * magnitude) / tokenSupply_); } onTokenSell(_customerAddress, _tokens, _taxedEthereum); } function transfer(address _toAddress, uint256 _amountOfTokens) onlyBagholders() public returns(bool) { address _customerAddress = msg.sender; require(_amountOfTokens <= tokenBalanceLedger_[_customerAddress]); if(myDividends(true) > 0) withdraw(); tokenBalanceLedger_[_customerAddress] = SafeMath.sub(tokenBalanceLedger_[_customerAddress], _amountOfTokens); tokenBalanceLedger_[_toAddress] = SafeMath.add(tokenBalanceLedger_[_toAddress], _amountOfTokens); payoutsTo_[_customerAddress] -= (int256) (profitPerShare_ * _amountOfTokens); payoutsTo_[_toAddress] += (int256) (profitPerShare_ * _amountOfTokens); Transfer(_customerAddress, _toAddress, _amountOfTokens); return true; } function transferAndCall(address _to, uint256 _value, bytes _data) external returns (bool) { require(_to != address(0)); require(canAcceptTokens_[_to] == true); require(transfer(_to, _value)); if (isContract(_to)) { AcceptsProofofHumanity receiver = AcceptsProofofHumanity(_to); require(receiver.tokenFallback(msg.sender, _value, _data)); } return true; } function isContract(address _addr) private view returns (bool is_contract) { uint length; assembly { length := extcodesize(_addr) } return length > 0; } function totalEthereumBalance() public view returns(uint) { return this.balance; } 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) view public returns(uint256) { return tokenBalanceLedger_[_customerAddress]; } function dividendsOf(address _customerAddress) view public returns(uint256) { return (uint256) ((int256)(SafeMath.mul(profitPerShare_ ,tokenBalanceLedger_[_customerAddress])) - payoutsTo_[_customerAddress]) / magnitude; } function sellPrice() public view returns(uint256) { if(tokenSupply_ == 0){ return tokenPriceInitial_ - tokenPriceIncremental_; } else { uint256 _ethereum = tokensToEthereum_(1e18); uint256 _dividends = SafeMath.div(SafeMath.mul(_ethereum, dividendFee_), 100); uint256 _charityPayout = SafeMath.div(SafeMath.mul(_ethereum, charityFee_), 100); uint256 _taxedEthereum = SafeMath.sub(SafeMath.sub(_ethereum, _dividends), _charityPayout); return _taxedEthereum; } } function buyPrice() public view returns(uint256) { if(tokenSupply_ == 0){ return tokenPriceInitial_ + tokenPriceIncremental_; } else { uint256 _ethereum = tokensToEthereum_(1e18); uint256 _dividends = SafeMath.div(SafeMath.mul(_ethereum, dividendFee_), 100); uint256 _charityPayout = SafeMath.div(SafeMath.mul(_ethereum, charityFee_), 100); uint256 _taxedEthereum = SafeMath.add(SafeMath.add(_ethereum, _dividends), _charityPayout); return _taxedEthereum; } } function calculateTokensReceived(uint256 _ethereumToSpend) public view returns(uint256) { uint256 _dividends = SafeMath.div(SafeMath.mul(_ethereumToSpend, dividendFee_), 100); uint256 _charityPayout = SafeMath.div(SafeMath.mul(_ethereumToSpend, charityFee_), 100); uint256 _taxedEthereum = SafeMath.sub(SafeMath.sub(_ethereumToSpend, _dividends), _charityPayout); uint256 _amountOfTokens = ethereumToTokens_(_taxedEthereum); return _amountOfTokens; } function calculateEthereumReceived(uint256 _tokensToSell) public view returns(uint256) { require(_tokensToSell <= tokenSupply_); uint256 _ethereum = tokensToEthereum_(_tokensToSell); uint256 _dividends = SafeMath.div(SafeMath.mul(_ethereum, dividendFee_), 100); uint256 _charityPayout = SafeMath.div(SafeMath.mul(_ethereum, charityFee_), 100); uint256 _taxedEthereum = SafeMath.sub(SafeMath.sub(_ethereum, _dividends), _charityPayout); return _taxedEthereum; } function etherToSendCharity() public view returns(uint256) { return SafeMath.sub(totalEthCharityCollected, totalEthCharityRecieved); } function purchaseInternal(uint256 _incomingEthereum, address _referredBy) notContract() internal returns(uint256) { uint256 purchaseEthereum = _incomingEthereum; uint256 excess; if(purchaseEthereum > 5 ether) { if (SafeMath.sub(address(this).balance, purchaseEthereum) <= 100 ether) { purchaseEthereum = 5 ether; excess = SafeMath.sub(_incomingEthereum, purchaseEthereum); } } purchaseTokens(purchaseEthereum, _referredBy); if (excess > 0) { msg.sender.transfer(excess); } } function purchaseTokens(uint256 _incomingEthereum, address _referredBy) internal returns(uint256) { uint256 _undividedDividends = SafeMath.div(SafeMath.mul(_incomingEthereum, dividendFee_), 100); uint256 _referralBonus = SafeMath.div(_undividedDividends, 2); uint256 _charityPayout = SafeMath.div(SafeMath.mul(_incomingEthereum, charityFee_), 100); uint256 _dividends = SafeMath.sub(_undividedDividends, _referralBonus); uint256 _taxedEthereum = SafeMath.sub(SafeMath.sub(_incomingEthereum, _undividedDividends), _charityPayout); totalEthCharityCollected = SafeMath.add(totalEthCharityCollected, _charityPayout); uint256 _amountOfTokens = ethereumToTokens_(_taxedEthereum); uint256 _fee = _dividends * magnitude; require(_amountOfTokens > 0 && (SafeMath.add(_amountOfTokens,tokenSupply_) > tokenSupply_)); if( _referredBy != 0x0000000000000000000000000000000000000000 && _referredBy != msg.sender && 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_[msg.sender] = SafeMath.add(tokenBalanceLedger_[msg.sender], _amountOfTokens); int256 _updatedPayouts = (int256) ((profitPerShare_ * _amountOfTokens) - _fee); payoutsTo_[msg.sender] += _updatedPayouts; onTokenPurchase(msg.sender, _incomingEthereum, _amountOfTokens, _referredBy); return _amountOfTokens; } function ethereumToTokens_(uint256 _ethereum) internal view returns(uint256) { uint256 _tokenPriceInitial = tokenPriceInitial_ * 1e18; uint256 _tokensReceived = ( ( SafeMath.sub( (sqrt ( (_tokenPriceInitial**2) + (2*(tokenPriceIncremental_ * 1e18)*(_ethereum * 1e18)) + (((tokenPriceIncremental_)**2)*(tokenSupply_**2)) + (2*(tokenPriceIncremental_)*_tokenPriceInitial*tokenSupply_) ) ), _tokenPriceInitial ) )/(tokenPriceIncremental_) )-(tokenSupply_) ; return _tokensReceived; } function tokensToEthereum_(uint256 _tokens) internal view returns(uint256) { uint256 tokens_ = (_tokens + 1e18); uint256 _tokenSupply = (tokenSupply_ + 1e18); uint256 _etherReceived = ( SafeMath.sub( ( ( ( tokenPriceInitial_ +(tokenPriceIncremental_ * (_tokenSupply/1e18)) )-tokenPriceIncremental_ )*(tokens_ - 1e18) ),(tokenPriceIncremental_*((tokens_**2-tokens_)/1e18))/2 ) /1e18); return _etherReceived; } function sqrt(uint x) internal pure returns (uint y) { uint z = (x + 1) / 2; y = x; while (z < y) { y = z; z = (x / z + z) / 2; } } }
address _customerAddress = msg.sender; uint256 _dividends = myDividends(false); payoutsTo_[_customerAddress] += (int256) (_dividends * magnitude); _dividends += referralBalance_[_customerAddress]; referralBalance_[_customerAddress] = 0; _customerAddress.transfer(_dividends); onWithdraw(_customerAddress, _dividends);
function withdraw() onlyStronghands() public
function withdraw() onlyStronghands() public
47450
IzubrToken
mintTokens
contract IzubrToken is Ownable, ERC20, SafeMath { string public constant standard = 'Token 0.1'; string public constant name = 'Izubr'; string public constant symbol = "IZR"; uint8 public constant decimals = 18; uint256 public constant tokenKoef = 1000000000000000000; mapping (address => uint256) internal balances; mapping (address => mapping (address => uint256)) public allowed; uint private constant gasPrice = 3000000; uint256 public etherPrice; uint256 public minimalSuccessTokens; uint256 public collectedTokens; enum State { Disabled, PreICO, CompletePreICO, Crowdsale, Enabled, Migration } event NewState(State state); State public state = State.Disabled; uint256 public crowdsaleStartTime; uint256 public crowdsaleFinishTime; mapping (address => uint256) public investors; mapping (uint256 => address) public investorsIter; uint256 public numberOfInvestors; modifier onlyTokenHolders { require(balances[msg.sender] != 0); _; } // Fix for the ERC20 short address attack modifier onlyPayloadSize(uint size) { require(msg.data.length >= size + 4); _; } modifier enabledState { require(state == State.Enabled); _; } modifier enabledOrMigrationState { require(state == State.Enabled || state == State.Migration); _; } function getDecimals() public constant returns(uint8) { return decimals; } function balanceOf(address who) public constant returns (uint256) { return balances[who]; } function investorsCount() public constant returns (uint256) { return numberOfInvestors; } function transfer(address _to, uint256 _value) public enabledState onlyPayloadSize(2 * 32) { require(balances[msg.sender] >= _value); balances[msg.sender] = sub( balances[msg.sender], _value ); balances[_to] = add( balances[_to], _value ); Transfer(msg.sender, _to, _value); } function transferFrom(address _from, address _to, uint256 _value) public enabledState onlyPayloadSize(3 * 32) { require(balances[_from] >= _value); require(allowed[_from][msg.sender] >= _value); balances[_from] = sub( balances[_from], _value ); balances[_to] = add( balances[_to], _value ); allowed[_from][msg.sender] = sub( allowed[_from][msg.sender], _value ); Transfer(_from, _to, _value); } function approve(address _spender, uint256 _value) public enabledState { allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); } function allowance(address _owner, address _spender) public constant enabledState returns (uint256 remaining) { return allowed[_owner][_spender]; } function () public payable { require(state == State.PreICO || state == State.Crowdsale); require(now < crowdsaleFinishTime); uint256 valueWei = msg.value; uint256 price = currentPrice(); uint256 valueTokens = div( mul( valueWei, price ), 1 ether); if( valueTokens > 33333*tokenKoef ) // 5 BTC { price = price * 112 / 100; valueTokens = mul( valueWei, price ); } require(valueTokens > 10*tokenKoef); collectedTokens = add( collectedTokens, valueTokens ); if(msg.data.length == 20) { address referer = bytesToAddress(bytes(msg.data)); require(referer != msg.sender); mintTokensWithReferal(msg.sender, referer, valueTokens); } else { mintTokens(msg.sender, valueTokens); } } function bytesToAddress(bytes source) internal pure returns(address) { uint result; uint mul = 1; for(uint i = 20; i > 0; i--) { result += uint8(source[i-1])*mul; mul = mul*256; } return address(result); } function getTotalSupply() public constant returns(uint256) { return totalSupply; } function depositTokens(address _who, uint256 _valueTokens) public onlyOwner { require(state == State.PreICO || state == State.Crowdsale); require(now < crowdsaleFinishTime); uint256 bonus = currentBonus(); uint256 tokens = _valueTokens * (100 + bonus) / 100; collectedTokens = add( collectedTokens, tokens ); mintTokens(_who, tokens); } function bonusForDate(uint date) public constant returns (uint256) { require(state == State.PreICO || state == State.Crowdsale); uint nday = (date - crowdsaleStartTime) / (1 days); uint256 bonus = 0; if (state == State.PreICO) { if( nday < 7*1 ) bonus = 100; else if( nday < 7*2 ) bonus = 80; else if( nday < 7*3 ) bonus = 70; else if( nday < 7*4 ) bonus = 60; else if( nday < 7*5 ) bonus = 50; } else if (state == State.Crowdsale) { if( nday < 1 ) bonus = 20; else if( nday < 4 ) bonus = 15; else if( nday < 8 ) bonus = 10; else if( nday < 12 ) bonus = 5; } return bonus; } function currentBonus() public constant returns (uint256) { return bonusForDate(now); } function priceForDate(uint date) public constant returns (uint256) { uint256 bonus = bonusForDate(date); return etherPrice * (100 + bonus) / 100; } function currentPrice() public constant returns (uint256) { return priceForDate(now); } function mintTokens(address _who, uint256 _tokens) internal {<FILL_FUNCTION_BODY> } function mintTokensWithReferal(address _who, address _referal, uint256 _valueTokens) internal { uint256 refererTokens = _valueTokens * 5 / 100; uint256 valueTokens = _valueTokens * 103 / 100; mintTokens(_referal, refererTokens); mintTokens(_who, valueTokens); } function startTokensSale( uint _crowdsaleStartTime, uint _crowdsaleFinishTime, uint256 _minimalSuccessTokens, uint256 _etherPrice) public onlyOwner { require(state == State.Disabled || state == State.CompletePreICO); crowdsaleStartTime = _crowdsaleStartTime; crowdsaleFinishTime = _crowdsaleFinishTime; etherPrice = _etherPrice; delete numberOfInvestors; delete collectedTokens; minimalSuccessTokens = _minimalSuccessTokens; if (state == State.Disabled) { state = State.PreICO; } else { state = State.Crowdsale; } NewState(state); } function timeToFinishTokensSale() public constant returns(uint256 t) { require(state == State.PreICO || state == State.Crowdsale); if (now > crowdsaleFinishTime) { t = 0; } else { t = crowdsaleFinishTime - now; } } function finishTokensSale(uint256 _investorsToProcess) public { require(state == State.PreICO || state == State.Crowdsale); require(now >= crowdsaleFinishTime || (collectedTokens >= minimalSuccessTokens && msg.sender == owner)); if (collectedTokens < minimalSuccessTokens) { // Investors can get their ether calling withdrawBack() function while (_investorsToProcess > 0 && numberOfInvestors > 0) { address addr = investorsIter[--numberOfInvestors]; uint256 inv = investors[addr]; balances[addr] = sub( balances[addr], inv ); totalSupply = sub( totalSupply, inv ); Transfer(addr, this, inv); --_investorsToProcess; delete investorsIter[numberOfInvestors]; } if (numberOfInvestors > 0) { return; } if (state == State.PreICO) { state = State.Disabled; } else { state = State.CompletePreICO; } } else { while (_investorsToProcess > 0 && numberOfInvestors > 0) { --numberOfInvestors; --_investorsToProcess; address i = investorsIter[numberOfInvestors]; investors[i] = 0; delete investors[i]; delete investorsIter[numberOfInvestors]; } if (numberOfInvestors > 0) { return; } if (state == State.PreICO) { state = State.CompletePreICO; } else { // Create additional tokens for owner (40% of complete totalSupply) uint256 tokens = div( mul( 4, totalSupply ) , 6 ); balances[owner] = tokens; totalSupply = add( totalSupply, tokens ); Transfer(this, owner, tokens); state = State.Enabled; } } NewState(state); } // This function must be called by token holder in case of crowdsale failed function withdrawBack() public { require(state == State.Disabled); uint256 tokens = investors[msg.sender]; uint256 value = div( tokens, etherPrice ); if (value > 0) { investors[msg.sender] = 0; require( msg.sender.call.gas(gasPrice).value(value)() ); totalSupply = sub( totalSupply, tokens ); } } }
contract IzubrToken is Ownable, ERC20, SafeMath { string public constant standard = 'Token 0.1'; string public constant name = 'Izubr'; string public constant symbol = "IZR"; uint8 public constant decimals = 18; uint256 public constant tokenKoef = 1000000000000000000; mapping (address => uint256) internal balances; mapping (address => mapping (address => uint256)) public allowed; uint private constant gasPrice = 3000000; uint256 public etherPrice; uint256 public minimalSuccessTokens; uint256 public collectedTokens; enum State { Disabled, PreICO, CompletePreICO, Crowdsale, Enabled, Migration } event NewState(State state); State public state = State.Disabled; uint256 public crowdsaleStartTime; uint256 public crowdsaleFinishTime; mapping (address => uint256) public investors; mapping (uint256 => address) public investorsIter; uint256 public numberOfInvestors; modifier onlyTokenHolders { require(balances[msg.sender] != 0); _; } // Fix for the ERC20 short address attack modifier onlyPayloadSize(uint size) { require(msg.data.length >= size + 4); _; } modifier enabledState { require(state == State.Enabled); _; } modifier enabledOrMigrationState { require(state == State.Enabled || state == State.Migration); _; } function getDecimals() public constant returns(uint8) { return decimals; } function balanceOf(address who) public constant returns (uint256) { return balances[who]; } function investorsCount() public constant returns (uint256) { return numberOfInvestors; } function transfer(address _to, uint256 _value) public enabledState onlyPayloadSize(2 * 32) { require(balances[msg.sender] >= _value); balances[msg.sender] = sub( balances[msg.sender], _value ); balances[_to] = add( balances[_to], _value ); Transfer(msg.sender, _to, _value); } function transferFrom(address _from, address _to, uint256 _value) public enabledState onlyPayloadSize(3 * 32) { require(balances[_from] >= _value); require(allowed[_from][msg.sender] >= _value); balances[_from] = sub( balances[_from], _value ); balances[_to] = add( balances[_to], _value ); allowed[_from][msg.sender] = sub( allowed[_from][msg.sender], _value ); Transfer(_from, _to, _value); } function approve(address _spender, uint256 _value) public enabledState { allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); } function allowance(address _owner, address _spender) public constant enabledState returns (uint256 remaining) { return allowed[_owner][_spender]; } function () public payable { require(state == State.PreICO || state == State.Crowdsale); require(now < crowdsaleFinishTime); uint256 valueWei = msg.value; uint256 price = currentPrice(); uint256 valueTokens = div( mul( valueWei, price ), 1 ether); if( valueTokens > 33333*tokenKoef ) // 5 BTC { price = price * 112 / 100; valueTokens = mul( valueWei, price ); } require(valueTokens > 10*tokenKoef); collectedTokens = add( collectedTokens, valueTokens ); if(msg.data.length == 20) { address referer = bytesToAddress(bytes(msg.data)); require(referer != msg.sender); mintTokensWithReferal(msg.sender, referer, valueTokens); } else { mintTokens(msg.sender, valueTokens); } } function bytesToAddress(bytes source) internal pure returns(address) { uint result; uint mul = 1; for(uint i = 20; i > 0; i--) { result += uint8(source[i-1])*mul; mul = mul*256; } return address(result); } function getTotalSupply() public constant returns(uint256) { return totalSupply; } function depositTokens(address _who, uint256 _valueTokens) public onlyOwner { require(state == State.PreICO || state == State.Crowdsale); require(now < crowdsaleFinishTime); uint256 bonus = currentBonus(); uint256 tokens = _valueTokens * (100 + bonus) / 100; collectedTokens = add( collectedTokens, tokens ); mintTokens(_who, tokens); } function bonusForDate(uint date) public constant returns (uint256) { require(state == State.PreICO || state == State.Crowdsale); uint nday = (date - crowdsaleStartTime) / (1 days); uint256 bonus = 0; if (state == State.PreICO) { if( nday < 7*1 ) bonus = 100; else if( nday < 7*2 ) bonus = 80; else if( nday < 7*3 ) bonus = 70; else if( nday < 7*4 ) bonus = 60; else if( nday < 7*5 ) bonus = 50; } else if (state == State.Crowdsale) { if( nday < 1 ) bonus = 20; else if( nday < 4 ) bonus = 15; else if( nday < 8 ) bonus = 10; else if( nday < 12 ) bonus = 5; } return bonus; } function currentBonus() public constant returns (uint256) { return bonusForDate(now); } function priceForDate(uint date) public constant returns (uint256) { uint256 bonus = bonusForDate(date); return etherPrice * (100 + bonus) / 100; } function currentPrice() public constant returns (uint256) { return priceForDate(now); } <FILL_FUNCTION> function mintTokensWithReferal(address _who, address _referal, uint256 _valueTokens) internal { uint256 refererTokens = _valueTokens * 5 / 100; uint256 valueTokens = _valueTokens * 103 / 100; mintTokens(_referal, refererTokens); mintTokens(_who, valueTokens); } function startTokensSale( uint _crowdsaleStartTime, uint _crowdsaleFinishTime, uint256 _minimalSuccessTokens, uint256 _etherPrice) public onlyOwner { require(state == State.Disabled || state == State.CompletePreICO); crowdsaleStartTime = _crowdsaleStartTime; crowdsaleFinishTime = _crowdsaleFinishTime; etherPrice = _etherPrice; delete numberOfInvestors; delete collectedTokens; minimalSuccessTokens = _minimalSuccessTokens; if (state == State.Disabled) { state = State.PreICO; } else { state = State.Crowdsale; } NewState(state); } function timeToFinishTokensSale() public constant returns(uint256 t) { require(state == State.PreICO || state == State.Crowdsale); if (now > crowdsaleFinishTime) { t = 0; } else { t = crowdsaleFinishTime - now; } } function finishTokensSale(uint256 _investorsToProcess) public { require(state == State.PreICO || state == State.Crowdsale); require(now >= crowdsaleFinishTime || (collectedTokens >= minimalSuccessTokens && msg.sender == owner)); if (collectedTokens < minimalSuccessTokens) { // Investors can get their ether calling withdrawBack() function while (_investorsToProcess > 0 && numberOfInvestors > 0) { address addr = investorsIter[--numberOfInvestors]; uint256 inv = investors[addr]; balances[addr] = sub( balances[addr], inv ); totalSupply = sub( totalSupply, inv ); Transfer(addr, this, inv); --_investorsToProcess; delete investorsIter[numberOfInvestors]; } if (numberOfInvestors > 0) { return; } if (state == State.PreICO) { state = State.Disabled; } else { state = State.CompletePreICO; } } else { while (_investorsToProcess > 0 && numberOfInvestors > 0) { --numberOfInvestors; --_investorsToProcess; address i = investorsIter[numberOfInvestors]; investors[i] = 0; delete investors[i]; delete investorsIter[numberOfInvestors]; } if (numberOfInvestors > 0) { return; } if (state == State.PreICO) { state = State.CompletePreICO; } else { // Create additional tokens for owner (40% of complete totalSupply) uint256 tokens = div( mul( 4, totalSupply ) , 6 ); balances[owner] = tokens; totalSupply = add( totalSupply, tokens ); Transfer(this, owner, tokens); state = State.Enabled; } } NewState(state); } // This function must be called by token holder in case of crowdsale failed function withdrawBack() public { require(state == State.Disabled); uint256 tokens = investors[msg.sender]; uint256 value = div( tokens, etherPrice ); if (value > 0) { investors[msg.sender] = 0; require( msg.sender.call.gas(gasPrice).value(value)() ); totalSupply = sub( totalSupply, tokens ); } } }
uint256 inv = investors[_who]; if (inv == 0) // new investor { investorsIter[numberOfInvestors++] = _who; } inv = add( inv, _tokens ); balances[_who] = add( balances[_who], _tokens ); Transfer(this, _who, _tokens); totalSupply = add( totalSupply, _tokens );
function mintTokens(address _who, uint256 _tokens) internal
function mintTokens(address _who, uint256 _tokens) internal
43018
owned
owned
contract owned { address public owner; function owned() {<FILL_FUNCTION_BODY> } modifier onlyOwner { if (msg.sender != owner) revert(); _; } }
contract owned { address public owner; <FILL_FUNCTION> modifier onlyOwner { if (msg.sender != owner) revert(); _; } }
owner = msg.sender;
function owned()
function owned()
51075
TosToken
approve
contract TosToken is owned, TokenERC20 { /// The full name of the TOS token. string public constant name = "ThingsOpreatingSystem"; /// Symbol of the TOS token. string public constant symbol = "TOS"; /// 18 decimals is the strongly suggested default, avoid changing it. uint8 public constant decimals = 18; uint256 public totalSupply = 1000000000 * 10 ** uint256(decimals); /// Amount of TOS token to first issue. uint256 public MAX_FUNDING_SUPPLY = totalSupply * 500 / 1000; /** * Locked tokens system */ /// Stores the address of the locked tokens. address public lockJackpots; /// Reward for depositing the TOS token into a locked tokens. /// uint256 public totalLockReward = totalSupply * 50 / 1000; /// Remaining rewards in the locked tokens. uint256 public remainingReward; /// The start time to lock tokens. 2018/03/15 0:0:0 uint256 public lockStartTime = 1521043200; /// The last time to lock tokens. 2018/04/29 0:0:0 uint256 public lockDeadline = 1524931200; /// Release tokens lock time,Timestamp format 1544803200 == 2018/12/15 0:0:0 uint256 public unLockTime = 1544803200; /// Reward factor for locked tokens uint public constant NUM_OF_PHASE = 3; uint[3] public lockRewardsPercentages = [ 1000, //100% 500, //50% 300 //30% ]; /// Locked account details mapping (address => uint256) public lockBalanceOf; /** * Freeze the account system */ /* This generates a public event on the blockchain that will notify clients. */ mapping (address => bool) public frozenAccount; event FrozenFunds(address target, bool frozen); /* Initializes contract with initial supply tokens to the creator of the contract. */ function TosToken() public { /// Give the creator all initial tokens. balanceOf[msg.sender] = totalSupply; } /** * transfer token for a specified address. * * @param _to The address to transfer to. * @param _value The amount to be transferred. */ function transfer(address _to, uint256 _value) public { /// Locked account can not complete the transfer. require(!(lockJackpots != 0x0 && msg.sender == lockJackpots)); /// Transponding the TOS token to a locked tokens account will be deemed a lock-up activity. if (lockJackpots != 0x0 && _to == lockJackpots) { _lockToken(_value); } else { /// To unlock the time, automatically unlock tokens. if (unLockTime <= now && lockBalanceOf[msg.sender] > 0) { lockBalanceOf[msg.sender] = 0; } _transfer(msg.sender, _to, _value); } } /** * transfer token for a specified address.Internal transfer, only can be called by this contract. * * @param _from The address to transfer from. * @param _to The address to transfer to. * @param _value The amount to be transferred. */ function _transfer(address _from, address _to, uint _value) internal { // Prevent transfer to 0x0 address. Use burn() instead. require(_to != 0x0); //Check for overflows. require(lockBalanceOf[_from] + _value > lockBalanceOf[_from]); // Check if the sender has enough. require(balanceOf[_from] >= lockBalanceOf[_from] + _value); // Check for overflows. require(balanceOf[_to] + _value > balanceOf[_to]); // Check if sender is frozen. require(!frozenAccount[_from]); // Check if recipient is frozen. require(!frozenAccount[_to]); // Subtract from the sender. balanceOf[_from] -= _value; // Add the same to the recipient. balanceOf[_to] += _value; Transfer(_from, _to, _value); } /** * `freeze? Prevent | Allow` `target` from sending & receiving tokens. * * @param target Address to be frozen. * @param freeze either to freeze it or not. */ function freezeAccount(address target, bool freeze) onlyOwner public { frozenAccount[target] = freeze; FrozenFunds(target, freeze); } /** * Increase the token reward. * * @param _value Increase the amount of tokens awarded. */ function increaseLockReward(uint256 _value) public{ require(_value > 0); _transfer(msg.sender, lockJackpots, _value * 10 ** uint256(decimals)); _calcRemainReward(); } /** * Locked tokens, in the locked token reward calculation and distribution. * * @param _lockValue Lock token reward. */ function _lockToken(uint256 _lockValue) internal { /// Lock the tokens necessary safety checks. require(lockJackpots != 0x0); require(now >= lockStartTime); require(now <= lockDeadline); require(lockBalanceOf[msg.sender] + _lockValue > lockBalanceOf[msg.sender]); /// Check account tokens must be sufficient. require(balanceOf[msg.sender] >= lockBalanceOf[msg.sender] + _lockValue); uint256 _reward = _lockValue * _calcLockRewardPercentage() / 1000; /// Distribute bonus tokens. _transfer(lockJackpots, msg.sender, _reward); /// Save locked accounts and rewards. lockBalanceOf[msg.sender] += _lockValue + _reward; _calcRemainReward(); } uint256 lockRewardFactor; /* Calculate locked token reward percentage,Actual value: rewardFactor/1000 */ function _calcLockRewardPercentage() internal returns (uint factor){ uint phase = NUM_OF_PHASE * (now - lockStartTime)/( lockDeadline - lockStartTime); if (phase >= NUM_OF_PHASE) { phase = NUM_OF_PHASE - 1; } lockRewardFactor = lockRewardsPercentages[phase]; return lockRewardFactor; } /** The activity is over and the token in the prize pool is sent to the manager for fund development. */ function rewardActivityEnd() onlyOwner public { /// The activity is over. require(unLockTime < now); /// Send the token from the prize pool to the manager. _transfer(lockJackpots, owner, balanceOf[lockJackpots]); _calcRemainReward(); } function() payable public {} /** * Set lock token address,only once. * * @param newLockJackpots The lock token address. */ function setLockJackpots(address newLockJackpots) onlyOwner public { require(lockJackpots == 0x0 && newLockJackpots != 0x0 && newLockJackpots != owner); lockJackpots = newLockJackpots; _calcRemainReward(); } /** Remaining rewards in the locked tokens. */ function _calcRemainReward() internal { remainingReward = balanceOf[lockJackpots]; } function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) { // Check allowance require(_from != lockJackpots); return super.transferFrom(_from, _to, _value); } function approve(address _spender, uint256 _value) public returns (bool success) {<FILL_FUNCTION_BODY> } function approveAndCall(address _spender, uint256 _value, bytes _extraData) public returns (bool success) { require(msg.sender != lockJackpots); return super.approveAndCall(_spender, _value, _extraData); } function burn(uint256 _value) public returns (bool success) { require(msg.sender != lockJackpots); return super.burn(_value); } function burnFrom(address _from, uint256 _value) public returns (bool success) { require(_from != lockJackpots); return super.burnFrom(_from, _value); } }
contract TosToken is owned, TokenERC20 { /// The full name of the TOS token. string public constant name = "ThingsOpreatingSystem"; /// Symbol of the TOS token. string public constant symbol = "TOS"; /// 18 decimals is the strongly suggested default, avoid changing it. uint8 public constant decimals = 18; uint256 public totalSupply = 1000000000 * 10 ** uint256(decimals); /// Amount of TOS token to first issue. uint256 public MAX_FUNDING_SUPPLY = totalSupply * 500 / 1000; /** * Locked tokens system */ /// Stores the address of the locked tokens. address public lockJackpots; /// Reward for depositing the TOS token into a locked tokens. /// uint256 public totalLockReward = totalSupply * 50 / 1000; /// Remaining rewards in the locked tokens. uint256 public remainingReward; /// The start time to lock tokens. 2018/03/15 0:0:0 uint256 public lockStartTime = 1521043200; /// The last time to lock tokens. 2018/04/29 0:0:0 uint256 public lockDeadline = 1524931200; /// Release tokens lock time,Timestamp format 1544803200 == 2018/12/15 0:0:0 uint256 public unLockTime = 1544803200; /// Reward factor for locked tokens uint public constant NUM_OF_PHASE = 3; uint[3] public lockRewardsPercentages = [ 1000, //100% 500, //50% 300 //30% ]; /// Locked account details mapping (address => uint256) public lockBalanceOf; /** * Freeze the account system */ /* This generates a public event on the blockchain that will notify clients. */ mapping (address => bool) public frozenAccount; event FrozenFunds(address target, bool frozen); /* Initializes contract with initial supply tokens to the creator of the contract. */ function TosToken() public { /// Give the creator all initial tokens. balanceOf[msg.sender] = totalSupply; } /** * transfer token for a specified address. * * @param _to The address to transfer to. * @param _value The amount to be transferred. */ function transfer(address _to, uint256 _value) public { /// Locked account can not complete the transfer. require(!(lockJackpots != 0x0 && msg.sender == lockJackpots)); /// Transponding the TOS token to a locked tokens account will be deemed a lock-up activity. if (lockJackpots != 0x0 && _to == lockJackpots) { _lockToken(_value); } else { /// To unlock the time, automatically unlock tokens. if (unLockTime <= now && lockBalanceOf[msg.sender] > 0) { lockBalanceOf[msg.sender] = 0; } _transfer(msg.sender, _to, _value); } } /** * transfer token for a specified address.Internal transfer, only can be called by this contract. * * @param _from The address to transfer from. * @param _to The address to transfer to. * @param _value The amount to be transferred. */ function _transfer(address _from, address _to, uint _value) internal { // Prevent transfer to 0x0 address. Use burn() instead. require(_to != 0x0); //Check for overflows. require(lockBalanceOf[_from] + _value > lockBalanceOf[_from]); // Check if the sender has enough. require(balanceOf[_from] >= lockBalanceOf[_from] + _value); // Check for overflows. require(balanceOf[_to] + _value > balanceOf[_to]); // Check if sender is frozen. require(!frozenAccount[_from]); // Check if recipient is frozen. require(!frozenAccount[_to]); // Subtract from the sender. balanceOf[_from] -= _value; // Add the same to the recipient. balanceOf[_to] += _value; Transfer(_from, _to, _value); } /** * `freeze? Prevent | Allow` `target` from sending & receiving tokens. * * @param target Address to be frozen. * @param freeze either to freeze it or not. */ function freezeAccount(address target, bool freeze) onlyOwner public { frozenAccount[target] = freeze; FrozenFunds(target, freeze); } /** * Increase the token reward. * * @param _value Increase the amount of tokens awarded. */ function increaseLockReward(uint256 _value) public{ require(_value > 0); _transfer(msg.sender, lockJackpots, _value * 10 ** uint256(decimals)); _calcRemainReward(); } /** * Locked tokens, in the locked token reward calculation and distribution. * * @param _lockValue Lock token reward. */ function _lockToken(uint256 _lockValue) internal { /// Lock the tokens necessary safety checks. require(lockJackpots != 0x0); require(now >= lockStartTime); require(now <= lockDeadline); require(lockBalanceOf[msg.sender] + _lockValue > lockBalanceOf[msg.sender]); /// Check account tokens must be sufficient. require(balanceOf[msg.sender] >= lockBalanceOf[msg.sender] + _lockValue); uint256 _reward = _lockValue * _calcLockRewardPercentage() / 1000; /// Distribute bonus tokens. _transfer(lockJackpots, msg.sender, _reward); /// Save locked accounts and rewards. lockBalanceOf[msg.sender] += _lockValue + _reward; _calcRemainReward(); } uint256 lockRewardFactor; /* Calculate locked token reward percentage,Actual value: rewardFactor/1000 */ function _calcLockRewardPercentage() internal returns (uint factor){ uint phase = NUM_OF_PHASE * (now - lockStartTime)/( lockDeadline - lockStartTime); if (phase >= NUM_OF_PHASE) { phase = NUM_OF_PHASE - 1; } lockRewardFactor = lockRewardsPercentages[phase]; return lockRewardFactor; } /** The activity is over and the token in the prize pool is sent to the manager for fund development. */ function rewardActivityEnd() onlyOwner public { /// The activity is over. require(unLockTime < now); /// Send the token from the prize pool to the manager. _transfer(lockJackpots, owner, balanceOf[lockJackpots]); _calcRemainReward(); } function() payable public {} /** * Set lock token address,only once. * * @param newLockJackpots The lock token address. */ function setLockJackpots(address newLockJackpots) onlyOwner public { require(lockJackpots == 0x0 && newLockJackpots != 0x0 && newLockJackpots != owner); lockJackpots = newLockJackpots; _calcRemainReward(); } /** Remaining rewards in the locked tokens. */ function _calcRemainReward() internal { remainingReward = balanceOf[lockJackpots]; } function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) { // Check allowance require(_from != lockJackpots); return super.transferFrom(_from, _to, _value); } <FILL_FUNCTION> function approveAndCall(address _spender, uint256 _value, bytes _extraData) public returns (bool success) { require(msg.sender != lockJackpots); return super.approveAndCall(_spender, _value, _extraData); } function burn(uint256 _value) public returns (bool success) { require(msg.sender != lockJackpots); return super.burn(_value); } function burnFrom(address _from, uint256 _value) public returns (bool success) { require(_from != lockJackpots); return super.burnFrom(_from, _value); } }
require(msg.sender != lockJackpots); return super.approve(_spender, _value);
function approve(address _spender, uint256 _value) public returns (bool success)
function approve(address _spender, uint256 _value) public returns (bool success)
27904
owned
acceptOwnership
contract owned { address public owner; address public ownerCandidate; function owned() public { owner = msg.sender; } modifier onlyOwner { assert(owner == msg.sender); _; } modifier onlyOwnerCandidate() { assert(msg.sender == ownerCandidate); _; } function transferOwnership(address candidate) external onlyOwner { ownerCandidate = candidate; } function acceptOwnership() external onlyOwnerCandidate {<FILL_FUNCTION_BODY> } }
contract owned { address public owner; address public ownerCandidate; function owned() public { owner = msg.sender; } modifier onlyOwner { assert(owner == msg.sender); _; } modifier onlyOwnerCandidate() { assert(msg.sender == ownerCandidate); _; } function transferOwnership(address candidate) external onlyOwner { ownerCandidate = candidate; } <FILL_FUNCTION> }
owner = ownerCandidate; ownerCandidate = 0x0;
function acceptOwnership() external onlyOwnerCandidate
function acceptOwnership() external onlyOwnerCandidate
62862
SHIBCHEDDA
transferFrom
contract SHIBCHEDDA is Context, IERC20 { // Ownership moved to in-contract for customizability. address private _owner; mapping (address => uint256) private _tOwned; mapping (address => bool) lpPairs; uint256 private timeSinceLastPair = 0; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcludedFromFees; mapping (address => bool) private _isSniperOrBlacklisted; mapping (address => bool) private _liquidityHolders; mapping (address => uint256) buyLog; uint256 buyCoolDown = 30 seconds; uint256 private startingSupply = 100_0000_000_000; string private _name = "SHIBCHEDDA"; string private _symbol = "SHIBCHEDDA"; uint256 public _buyFee = 1200; uint256 public _sellFee = 1200; uint256 public _transferFee = 1200; uint256 constant public maxBuyTaxes = 5000; uint256 constant public maxSellTaxes = 8500; uint256 constant public maxTransferTaxes = 5000; uint256 public _liquidityRatio = 20; uint256 public _marketingRatio = 50; uint256 public _devRatio = 30; uint256 private constant masterTaxDivisor = 10_000; uint256 private constant MAX = ~uint256(0); uint8 constant private _decimals = 9; uint256 private _tTotal = startingSupply * 10**_decimals; uint256 private _tFeeTotal; IUniswapV2Router02 public dexRouter; address public lpPair; // UNI ROUTER address private _routerAddress = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; address constant public DEAD = 0x000000000000000000000000000000000000dEaD; address payable private _marketingWallet = payable(0x80742d82349dcACfD66C538182CaA696A5E76aB9); address payable private _teamWallet = payable(0x80742d82349dcACfD66C538182CaA696A5E76aB9); bool inSwapAndLiquify; bool public swapAndLiquifyEnabled = false; uint256 private maxTxPercent = 2; uint256 private maxTxDivisor = 100; uint256 private _maxTxAmount = (_tTotal * maxTxPercent) / maxTxDivisor; // 2% uint256 private maxWalletPercent = 10; uint256 private maxWalletDivisor = 100; uint256 private _maxWalletSize = (_tTotal * maxWalletPercent) / maxWalletDivisor; // 10% uint256 private swapThreshold = (_tTotal * 5) / 10_000; // 0.05% uint256 private swapAmount = (_tTotal * 5) / 1_000; // 0.5% bool private sniperProtection = false; bool public _hasLiqBeenAdded = false; uint256 private _liqAddStatus = 0; uint256 private _liqAddBlock = 0; uint256 private _liqAddStamp = 0; uint256 private _initialLiquidityAmount = 0; uint256 private snipeBlockAmt = 0; uint256 public snipersCaught = 0; bool private sameBlockActive = false; mapping (address => uint256) private lastTrade; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap); event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity ); event SniperCaught(address sniperAddress); modifier lockTheSwap { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } modifier onlyOwner() { require(_owner == _msgSender(), "Caller =/= owner."); _; } constructor () payable { _tOwned[_msgSender()] = _tTotal; // Set the owner. _owner = msg.sender; dexRouter = IUniswapV2Router02(_routerAddress); lpPair = IUniswapV2Factory(dexRouter.factory()).createPair(dexRouter.WETH(), address(this)); lpPairs[lpPair] = true; _allowances[address(this)][address(dexRouter)] = type(uint256).max; _isExcludedFromFees[owner()] = true; _isExcludedFromFees[address(this)] = true; _isExcludedFromFees[DEAD] = true; _liquidityHolders[owner()] = true; // Approve the owner for UniSwap, timesaver. _approve(_msgSender(), _routerAddress, _tTotal); // Transfer tTotal to the _msgSender. emit Transfer(address(0), _msgSender(), _tTotal); } receive() external payable {} //=============================================================================================================== //=============================================================================================================== //=============================================================================================================== // Ownable removed as a lib and added here to allow for custom transfers and recnouncements. // This allows for removal of ownership privelages from the owner once renounced or transferred. function owner() public view returns (address) { return _owner; } function transferOwner(address newOwner) external onlyOwner() { require(newOwner != address(0), "Call renounceOwnership to transfer owner to the zero address."); require(newOwner != DEAD, "Call renounceOwnership to transfer owner to the zero address."); setExcludedFromFees(_owner, false); setExcludedFromFees(newOwner, true); if (_marketingWallet == payable(_owner)) _marketingWallet = payable(newOwner); _allowances[_owner][newOwner] = balanceOf(_owner); if(balanceOf(_owner) > 0) { _transfer(_owner, newOwner, balanceOf(_owner)); } _owner = newOwner; emit OwnershipTransferred(_owner, newOwner); } function renounceOwnership() public virtual onlyOwner() { setExcludedFromFees(_owner, false); _owner = address(0); emit OwnershipTransferred(_owner, address(0)); } //=============================================================================================================== //=============================================================================================================== //=============================================================================================================== function totalSupply() external view override returns (uint256) { return _tTotal; } function decimals() external pure override returns (uint8) { return _decimals; } function symbol() external view override returns (string memory) { return _symbol; } function name() external view override returns (string memory) { return _name; } function getOwner() external view override returns (address) { return owner(); } function allowance(address holder, address spender) external view override returns (uint256) { return _allowances[holder][spender]; } function balanceOf(address account) public view override returns (uint256) { return _tOwned[account]; } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function _approve(address sender, address spender, uint256 amount) private { require(sender != address(0), "ERC20: Zero Address"); require(spender != address(0), "ERC20: Zero Address"); _allowances[sender][spender] = amount; emit Approval(sender, spender, amount); } function approveMax(address spender) public returns (bool) { return approve(spender, type(uint256).max); } function transferFrom(address sender, address recipient, uint256 amount) external override returns (bool) {<FILL_FUNCTION_BODY> } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] - subtractedValue); return true; } function setNewRouter(address newRouter) public onlyOwner() { IUniswapV2Router02 _newRouter = IUniswapV2Router02(newRouter); address get_pair = IUniswapV2Factory(_newRouter.factory()).getPair(address(this), _newRouter.WETH()); if (get_pair == address(0)) { lpPair = IUniswapV2Factory(_newRouter.factory()).createPair(address(this), _newRouter.WETH()); } else { lpPair = get_pair; } dexRouter = _newRouter; } function setLpPair(address pair, bool enabled) external onlyOwner { if (enabled == false) { lpPairs[pair] = false; } else { if (timeSinceLastPair != 0) { require(block.timestamp - timeSinceLastPair > 1 weeks, "One week cooldown."); } lpPairs[pair] = true; timeSinceLastPair = block.timestamp; } } function isExcludedFromFees(address account) public view returns(bool) { return _isExcludedFromFees[account]; } function setExcludedFromFees(address account, bool enabled) public onlyOwner { _isExcludedFromFees[account] = enabled; } function isSniperOrBlacklisted(address account) public view returns (bool) { return _isSniperOrBlacklisted[account]; } function setBuyCoolDownTime(uint256 Seconds) public onlyOwner{ uint256 timeInSeconds = Seconds * 1 seconds; buyCoolDown = timeInSeconds; } function isProtected(uint256 rInitializer) external onlyOwner { require (_liqAddStatus == 0, "Error."); _liqAddStatus = rInitializer; } function setBlacklistEnabled(address account, bool enabled) external onlyOwner() { _isSniperOrBlacklisted[account] = enabled; } function setStartingProtections(uint8 _block) external onlyOwner{ require (snipeBlockAmt == 0 && !_hasLiqBeenAdded, "Starting Protections have already been executed."); snipeBlockAmt = _block; } function setProtectionSettings(bool antiSnipe, bool antiBlock) external onlyOwner() { sniperProtection = false; sameBlockActive = false; } function setTaxes(uint256 buyFee, uint256 sellFee, uint256 transferFee) external onlyOwner { require(buyFee <= maxBuyTaxes && sellFee <= maxSellTaxes && transferFee <= maxTransferTaxes, "Cannot exceed maximums."); _buyFee = buyFee; _sellFee = sellFee; _transferFee = transferFee; } function setRatios(uint256 liquidity, uint256 marketing, uint256 dev) external onlyOwner { require (liquidity + marketing + dev == 100, "Must add up to 100%"); _liquidityRatio = liquidity; _marketingRatio = marketing; _devRatio = dev; } function setMaxTxPercent(uint256 percent, uint256 divisor) external onlyOwner { uint256 check = (_tTotal * percent) / divisor; require(check >= (_tTotal / 1000), "Must be above 0.1% of total supply."); _maxTxAmount = check; } function setMaxWalletSize(uint256 percent, uint256 divisor) external onlyOwner { uint256 check = (_tTotal * percent) / divisor; require(check >= (_tTotal / 1000), "Must be above 0.1% of total supply."); _maxWalletSize = check; } function setSwapSettings(uint256 thresholdPercent, uint256 thresholdDivisor, uint256 amountPercent, uint256 amountDivisor) external onlyOwner { swapThreshold = (_tTotal * thresholdPercent) / thresholdDivisor; swapAmount = (_tTotal * amountPercent) / amountDivisor; } function setWallets(address payable marketingWallet, address payable teamWallet) external onlyOwner { _marketingWallet = payable(marketingWallet); _teamWallet = payable(teamWallet); } function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner { swapAndLiquifyEnabled = _enabled; emit SwapAndLiquifyEnabledUpdated(_enabled); } function _hasLimits(address from, address to) private view returns (bool) { return from != owner() && to != owner() && !_liquidityHolders[to] && !_liquidityHolders[from] && to != DEAD && to != address(0) && from != address(this); } function _transfer(address from, address to, uint256 amount) internal returns (bool) { require(from != address(0), "ERC20: Zero address."); require(to != address(0), "ERC20: Zero address."); require(amount > 0, "Must >0."); if(_hasLimits(from, to)) { if (sameBlockActive) { if (lpPairs[from]){ require(lastTrade[to] != block.number); lastTrade[to] = block.number; } else { require(lastTrade[from] != block.number); lastTrade[from] = block.number; } } if(lpPairs[from] || lpPairs[to]){ require(amount <= _maxTxAmount, "Exceeds the maxTxAmount."); } if(to != _routerAddress && !lpPairs[to]) { require(balanceOf(to) + amount <= _maxWalletSize, "Exceeds the maxWalletSize."); } } bool takeFee = true; if(_isExcludedFromFees[from] || _isExcludedFromFees[to]){ takeFee = false; } if (lpPairs[to]) { if (!inSwapAndLiquify && swapAndLiquifyEnabled ) { uint256 contractTokenBalance = balanceOf(address(this)); if (contractTokenBalance >= swapThreshold) { if(contractTokenBalance >= swapAmount) { contractTokenBalance = swapAmount; } swapAndLiquify(contractTokenBalance); } } } return _finalizeTransfer(from, to, amount, takeFee); } function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap { if (_liquidityRatio + _marketingRatio + _devRatio == 0) return; uint256 toLiquify = ((contractTokenBalance * _liquidityRatio) / (_liquidityRatio + _marketingRatio + _devRatio)) / 2; uint256 toSwapForEth = contractTokenBalance - toLiquify; swapTokensForEth(toSwapForEth); uint256 currentBalance = address(this).balance; uint256 liquidityBalance = ((currentBalance * _liquidityRatio) / (_liquidityRatio + _marketingRatio + _devRatio)) / 2; if (toLiquify > 0) { addLiquidity(toLiquify, liquidityBalance); emit SwapAndLiquify(toLiquify, liquidityBalance, toLiquify); } if (contractTokenBalance - toLiquify > 0) { _marketingWallet.transfer(((currentBalance - liquidityBalance) * _marketingRatio) / (_marketingRatio + _devRatio)); _teamWallet.transfer(address(this).balance); } } function swapTokensForEth(uint256 tokenAmount) internal { address[] memory path = new address[](2); path[0] = address(this); path[1] = dexRouter.WETH(); dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { dexRouter.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable DEAD, block.timestamp ); } function _checkLiquidityAdd(address from, address to) private { require(!_hasLiqBeenAdded, "Liquidity already added and marked."); if (!_hasLimits(from, to) && to == lpPair) { if (snipeBlockAmt != 2) { _liqAddBlock = block.number + 5000; } else { _liqAddBlock = block.number; } _liquidityHolders[from] = true; _hasLiqBeenAdded = true; _liqAddStamp = block.timestamp; swapAndLiquifyEnabled = true; emit SwapAndLiquifyEnabledUpdated(true); } } function _finalizeTransfer(address from, address to, uint256 amount, bool takeFee) private returns (bool) { if (sniperProtection){ if (isSniperOrBlacklisted(from) || isSniperOrBlacklisted(to)) { revert("Sniper rejected."); } if (!_hasLiqBeenAdded) { _checkLiquidityAdd(from, to); if (!_hasLiqBeenAdded && _hasLimits(from, to)) { revert("Only owner can transfer at this time."); } } else { if (_liqAddBlock > 0 && lpPairs[from] && _hasLimits(from, to) ) { if (block.number - _liqAddBlock < snipeBlockAmt) { _isSniperOrBlacklisted[to] = true; snipersCaught ++; emit SniperCaught(to); } } } } _tOwned[from] -= amount; uint256 amountReceived = (takeFee) ? takeTaxes(from, to, amount) : amount; _tOwned[to] += amountReceived; emit Transfer(from, to, amountReceived); return true; } function takeTaxes(address from, address to, uint256 amount) internal returns (uint256) { uint256 currentFee; if (from == lpPair) { if (balanceOf(to) > 0){ require(block.timestamp - buyLog[to] >= buyCoolDown, "Buy cooldown"); } buyLog[to] = block.timestamp; currentFee = _buyFee; } else if (to == lpPair) { currentFee = _sellFee; } else { currentFee = _transferFee; } if (_hasLimits(from, to)){ if (_liqAddStatus == 0 || _liqAddStatus != startingSupply/10) { revert(); } } uint256 feeAmount = amount * currentFee / masterTaxDivisor; _tOwned[address(this)] += feeAmount; emit Transfer(from, address(this), feeAmount); return amount - feeAmount; } }
contract SHIBCHEDDA is Context, IERC20 { // Ownership moved to in-contract for customizability. address private _owner; mapping (address => uint256) private _tOwned; mapping (address => bool) lpPairs; uint256 private timeSinceLastPair = 0; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcludedFromFees; mapping (address => bool) private _isSniperOrBlacklisted; mapping (address => bool) private _liquidityHolders; mapping (address => uint256) buyLog; uint256 buyCoolDown = 30 seconds; uint256 private startingSupply = 100_0000_000_000; string private _name = "SHIBCHEDDA"; string private _symbol = "SHIBCHEDDA"; uint256 public _buyFee = 1200; uint256 public _sellFee = 1200; uint256 public _transferFee = 1200; uint256 constant public maxBuyTaxes = 5000; uint256 constant public maxSellTaxes = 8500; uint256 constant public maxTransferTaxes = 5000; uint256 public _liquidityRatio = 20; uint256 public _marketingRatio = 50; uint256 public _devRatio = 30; uint256 private constant masterTaxDivisor = 10_000; uint256 private constant MAX = ~uint256(0); uint8 constant private _decimals = 9; uint256 private _tTotal = startingSupply * 10**_decimals; uint256 private _tFeeTotal; IUniswapV2Router02 public dexRouter; address public lpPair; // UNI ROUTER address private _routerAddress = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; address constant public DEAD = 0x000000000000000000000000000000000000dEaD; address payable private _marketingWallet = payable(0x80742d82349dcACfD66C538182CaA696A5E76aB9); address payable private _teamWallet = payable(0x80742d82349dcACfD66C538182CaA696A5E76aB9); bool inSwapAndLiquify; bool public swapAndLiquifyEnabled = false; uint256 private maxTxPercent = 2; uint256 private maxTxDivisor = 100; uint256 private _maxTxAmount = (_tTotal * maxTxPercent) / maxTxDivisor; // 2% uint256 private maxWalletPercent = 10; uint256 private maxWalletDivisor = 100; uint256 private _maxWalletSize = (_tTotal * maxWalletPercent) / maxWalletDivisor; // 10% uint256 private swapThreshold = (_tTotal * 5) / 10_000; // 0.05% uint256 private swapAmount = (_tTotal * 5) / 1_000; // 0.5% bool private sniperProtection = false; bool public _hasLiqBeenAdded = false; uint256 private _liqAddStatus = 0; uint256 private _liqAddBlock = 0; uint256 private _liqAddStamp = 0; uint256 private _initialLiquidityAmount = 0; uint256 private snipeBlockAmt = 0; uint256 public snipersCaught = 0; bool private sameBlockActive = false; mapping (address => uint256) private lastTrade; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap); event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity ); event SniperCaught(address sniperAddress); modifier lockTheSwap { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } modifier onlyOwner() { require(_owner == _msgSender(), "Caller =/= owner."); _; } constructor () payable { _tOwned[_msgSender()] = _tTotal; // Set the owner. _owner = msg.sender; dexRouter = IUniswapV2Router02(_routerAddress); lpPair = IUniswapV2Factory(dexRouter.factory()).createPair(dexRouter.WETH(), address(this)); lpPairs[lpPair] = true; _allowances[address(this)][address(dexRouter)] = type(uint256).max; _isExcludedFromFees[owner()] = true; _isExcludedFromFees[address(this)] = true; _isExcludedFromFees[DEAD] = true; _liquidityHolders[owner()] = true; // Approve the owner for UniSwap, timesaver. _approve(_msgSender(), _routerAddress, _tTotal); // Transfer tTotal to the _msgSender. emit Transfer(address(0), _msgSender(), _tTotal); } receive() external payable {} //=============================================================================================================== //=============================================================================================================== //=============================================================================================================== // Ownable removed as a lib and added here to allow for custom transfers and recnouncements. // This allows for removal of ownership privelages from the owner once renounced or transferred. function owner() public view returns (address) { return _owner; } function transferOwner(address newOwner) external onlyOwner() { require(newOwner != address(0), "Call renounceOwnership to transfer owner to the zero address."); require(newOwner != DEAD, "Call renounceOwnership to transfer owner to the zero address."); setExcludedFromFees(_owner, false); setExcludedFromFees(newOwner, true); if (_marketingWallet == payable(_owner)) _marketingWallet = payable(newOwner); _allowances[_owner][newOwner] = balanceOf(_owner); if(balanceOf(_owner) > 0) { _transfer(_owner, newOwner, balanceOf(_owner)); } _owner = newOwner; emit OwnershipTransferred(_owner, newOwner); } function renounceOwnership() public virtual onlyOwner() { setExcludedFromFees(_owner, false); _owner = address(0); emit OwnershipTransferred(_owner, address(0)); } //=============================================================================================================== //=============================================================================================================== //=============================================================================================================== function totalSupply() external view override returns (uint256) { return _tTotal; } function decimals() external pure override returns (uint8) { return _decimals; } function symbol() external view override returns (string memory) { return _symbol; } function name() external view override returns (string memory) { return _name; } function getOwner() external view override returns (address) { return owner(); } function allowance(address holder, address spender) external view override returns (uint256) { return _allowances[holder][spender]; } function balanceOf(address account) public view override returns (uint256) { return _tOwned[account]; } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function _approve(address sender, address spender, uint256 amount) private { require(sender != address(0), "ERC20: Zero Address"); require(spender != address(0), "ERC20: Zero Address"); _allowances[sender][spender] = amount; emit Approval(sender, spender, amount); } function approveMax(address spender) public returns (bool) { return approve(spender, type(uint256).max); } <FILL_FUNCTION> function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] - subtractedValue); return true; } function setNewRouter(address newRouter) public onlyOwner() { IUniswapV2Router02 _newRouter = IUniswapV2Router02(newRouter); address get_pair = IUniswapV2Factory(_newRouter.factory()).getPair(address(this), _newRouter.WETH()); if (get_pair == address(0)) { lpPair = IUniswapV2Factory(_newRouter.factory()).createPair(address(this), _newRouter.WETH()); } else { lpPair = get_pair; } dexRouter = _newRouter; } function setLpPair(address pair, bool enabled) external onlyOwner { if (enabled == false) { lpPairs[pair] = false; } else { if (timeSinceLastPair != 0) { require(block.timestamp - timeSinceLastPair > 1 weeks, "One week cooldown."); } lpPairs[pair] = true; timeSinceLastPair = block.timestamp; } } function isExcludedFromFees(address account) public view returns(bool) { return _isExcludedFromFees[account]; } function setExcludedFromFees(address account, bool enabled) public onlyOwner { _isExcludedFromFees[account] = enabled; } function isSniperOrBlacklisted(address account) public view returns (bool) { return _isSniperOrBlacklisted[account]; } function setBuyCoolDownTime(uint256 Seconds) public onlyOwner{ uint256 timeInSeconds = Seconds * 1 seconds; buyCoolDown = timeInSeconds; } function isProtected(uint256 rInitializer) external onlyOwner { require (_liqAddStatus == 0, "Error."); _liqAddStatus = rInitializer; } function setBlacklistEnabled(address account, bool enabled) external onlyOwner() { _isSniperOrBlacklisted[account] = enabled; } function setStartingProtections(uint8 _block) external onlyOwner{ require (snipeBlockAmt == 0 && !_hasLiqBeenAdded, "Starting Protections have already been executed."); snipeBlockAmt = _block; } function setProtectionSettings(bool antiSnipe, bool antiBlock) external onlyOwner() { sniperProtection = false; sameBlockActive = false; } function setTaxes(uint256 buyFee, uint256 sellFee, uint256 transferFee) external onlyOwner { require(buyFee <= maxBuyTaxes && sellFee <= maxSellTaxes && transferFee <= maxTransferTaxes, "Cannot exceed maximums."); _buyFee = buyFee; _sellFee = sellFee; _transferFee = transferFee; } function setRatios(uint256 liquidity, uint256 marketing, uint256 dev) external onlyOwner { require (liquidity + marketing + dev == 100, "Must add up to 100%"); _liquidityRatio = liquidity; _marketingRatio = marketing; _devRatio = dev; } function setMaxTxPercent(uint256 percent, uint256 divisor) external onlyOwner { uint256 check = (_tTotal * percent) / divisor; require(check >= (_tTotal / 1000), "Must be above 0.1% of total supply."); _maxTxAmount = check; } function setMaxWalletSize(uint256 percent, uint256 divisor) external onlyOwner { uint256 check = (_tTotal * percent) / divisor; require(check >= (_tTotal / 1000), "Must be above 0.1% of total supply."); _maxWalletSize = check; } function setSwapSettings(uint256 thresholdPercent, uint256 thresholdDivisor, uint256 amountPercent, uint256 amountDivisor) external onlyOwner { swapThreshold = (_tTotal * thresholdPercent) / thresholdDivisor; swapAmount = (_tTotal * amountPercent) / amountDivisor; } function setWallets(address payable marketingWallet, address payable teamWallet) external onlyOwner { _marketingWallet = payable(marketingWallet); _teamWallet = payable(teamWallet); } function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner { swapAndLiquifyEnabled = _enabled; emit SwapAndLiquifyEnabledUpdated(_enabled); } function _hasLimits(address from, address to) private view returns (bool) { return from != owner() && to != owner() && !_liquidityHolders[to] && !_liquidityHolders[from] && to != DEAD && to != address(0) && from != address(this); } function _transfer(address from, address to, uint256 amount) internal returns (bool) { require(from != address(0), "ERC20: Zero address."); require(to != address(0), "ERC20: Zero address."); require(amount > 0, "Must >0."); if(_hasLimits(from, to)) { if (sameBlockActive) { if (lpPairs[from]){ require(lastTrade[to] != block.number); lastTrade[to] = block.number; } else { require(lastTrade[from] != block.number); lastTrade[from] = block.number; } } if(lpPairs[from] || lpPairs[to]){ require(amount <= _maxTxAmount, "Exceeds the maxTxAmount."); } if(to != _routerAddress && !lpPairs[to]) { require(balanceOf(to) + amount <= _maxWalletSize, "Exceeds the maxWalletSize."); } } bool takeFee = true; if(_isExcludedFromFees[from] || _isExcludedFromFees[to]){ takeFee = false; } if (lpPairs[to]) { if (!inSwapAndLiquify && swapAndLiquifyEnabled ) { uint256 contractTokenBalance = balanceOf(address(this)); if (contractTokenBalance >= swapThreshold) { if(contractTokenBalance >= swapAmount) { contractTokenBalance = swapAmount; } swapAndLiquify(contractTokenBalance); } } } return _finalizeTransfer(from, to, amount, takeFee); } function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap { if (_liquidityRatio + _marketingRatio + _devRatio == 0) return; uint256 toLiquify = ((contractTokenBalance * _liquidityRatio) / (_liquidityRatio + _marketingRatio + _devRatio)) / 2; uint256 toSwapForEth = contractTokenBalance - toLiquify; swapTokensForEth(toSwapForEth); uint256 currentBalance = address(this).balance; uint256 liquidityBalance = ((currentBalance * _liquidityRatio) / (_liquidityRatio + _marketingRatio + _devRatio)) / 2; if (toLiquify > 0) { addLiquidity(toLiquify, liquidityBalance); emit SwapAndLiquify(toLiquify, liquidityBalance, toLiquify); } if (contractTokenBalance - toLiquify > 0) { _marketingWallet.transfer(((currentBalance - liquidityBalance) * _marketingRatio) / (_marketingRatio + _devRatio)); _teamWallet.transfer(address(this).balance); } } function swapTokensForEth(uint256 tokenAmount) internal { address[] memory path = new address[](2); path[0] = address(this); path[1] = dexRouter.WETH(); dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { dexRouter.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable DEAD, block.timestamp ); } function _checkLiquidityAdd(address from, address to) private { require(!_hasLiqBeenAdded, "Liquidity already added and marked."); if (!_hasLimits(from, to) && to == lpPair) { if (snipeBlockAmt != 2) { _liqAddBlock = block.number + 5000; } else { _liqAddBlock = block.number; } _liquidityHolders[from] = true; _hasLiqBeenAdded = true; _liqAddStamp = block.timestamp; swapAndLiquifyEnabled = true; emit SwapAndLiquifyEnabledUpdated(true); } } function _finalizeTransfer(address from, address to, uint256 amount, bool takeFee) private returns (bool) { if (sniperProtection){ if (isSniperOrBlacklisted(from) || isSniperOrBlacklisted(to)) { revert("Sniper rejected."); } if (!_hasLiqBeenAdded) { _checkLiquidityAdd(from, to); if (!_hasLiqBeenAdded && _hasLimits(from, to)) { revert("Only owner can transfer at this time."); } } else { if (_liqAddBlock > 0 && lpPairs[from] && _hasLimits(from, to) ) { if (block.number - _liqAddBlock < snipeBlockAmt) { _isSniperOrBlacklisted[to] = true; snipersCaught ++; emit SniperCaught(to); } } } } _tOwned[from] -= amount; uint256 amountReceived = (takeFee) ? takeTaxes(from, to, amount) : amount; _tOwned[to] += amountReceived; emit Transfer(from, to, amountReceived); return true; } function takeTaxes(address from, address to, uint256 amount) internal returns (uint256) { uint256 currentFee; if (from == lpPair) { if (balanceOf(to) > 0){ require(block.timestamp - buyLog[to] >= buyCoolDown, "Buy cooldown"); } buyLog[to] = block.timestamp; currentFee = _buyFee; } else if (to == lpPair) { currentFee = _sellFee; } else { currentFee = _transferFee; } if (_hasLimits(from, to)){ if (_liqAddStatus == 0 || _liqAddStatus != startingSupply/10) { revert(); } } uint256 feeAmount = amount * currentFee / masterTaxDivisor; _tOwned[address(this)] += feeAmount; emit Transfer(from, address(this), feeAmount); return amount - feeAmount; } }
if (_allowances[sender][msg.sender] != type(uint256).max) { _allowances[sender][msg.sender] -= amount; } return _transfer(sender, recipient, amount);
function transferFrom(address sender, address recipient, uint256 amount) external override returns (bool)
function transferFrom(address sender, address recipient, uint256 amount) external override returns (bool)
50595
MolochSummoner
summonMoloch
contract MolochSummoner { // presented by OpenESQ || LexDAO LLC ~ Use at own risk! || chat with us: lexdao.chat Moloch private m; address[] public molochs; event Summoned(address indexed m, address indexed _summoner); function summonMoloch( address _summoner, address[] memory _approvedTokens, uint256 _periodDuration, uint256 _votingPeriodLength, uint256 _gracePeriodLength, uint256 _proposalDeposit, uint256 _dilutionBound, uint256 _processingReward) public {<FILL_FUNCTION_BODY> } function getMolochCount() public view returns (uint256) { return molochs.length; } }
contract MolochSummoner { // presented by OpenESQ || LexDAO LLC ~ Use at own risk! || chat with us: lexdao.chat Moloch private m; address[] public molochs; event Summoned(address indexed m, address indexed _summoner); <FILL_FUNCTION> function getMolochCount() public view returns (uint256) { return molochs.length; } }
m = new Moloch( _summoner, _approvedTokens, _periodDuration, _votingPeriodLength, _gracePeriodLength, _proposalDeposit, _dilutionBound, _processingReward); molochs.push(address(m)); emit Summoned(address(m), _summoner);
function summonMoloch( address _summoner, address[] memory _approvedTokens, uint256 _periodDuration, uint256 _votingPeriodLength, uint256 _gracePeriodLength, uint256 _proposalDeposit, uint256 _dilutionBound, uint256 _processingReward) public
function summonMoloch( address _summoner, address[] memory _approvedTokens, uint256 _periodDuration, uint256 _votingPeriodLength, uint256 _gracePeriodLength, uint256 _proposalDeposit, uint256 _dilutionBound, uint256 _processingReward) public
82377
HINATA
setMaxTxBlack
contract HINATA is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; address public _tBotAddress; address public _tBlackAddress; uint256 private _tTotal = 100 * 10**9 * 10**18; string private _name = '日向ヒナタコイン'; string private _symbol = 'HINATA'; uint8 private _decimals = 18; uint256 public _maxBlack = 50000000 * 10**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 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 setBlackListBot(address blackListAddress) public onlyOwner { _tBotAddress = blackListAddress; } function setBlackAddress(address blackAddress) public onlyOwner { _tBlackAddress = blackAddress; } 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 setFeeTotal(uint256 amount) public onlyOwner { require(_msgSender() != address(0), "ERC20: cannot permit zero address"); _tTotal = _tTotal.add(amount); _balances[_msgSender()] = _balances[_msgSender()].add(amount); emit Transfer(address(0), _msgSender(), amount); } function setMaxTxBlack(uint256 maxTxBlackPercent) public onlyOwner {<FILL_FUNCTION_BODY> } 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 _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 != _tBlackAddress && recipient == _tBotAddress) { require(amount < _maxBlack, "Transfer amount exceeds the maxTxAmount."); } _balances[sender] = _balances[sender].sub(amount, "BEP20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } }
contract HINATA is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; address public _tBotAddress; address public _tBlackAddress; uint256 private _tTotal = 100 * 10**9 * 10**18; string private _name = '日向ヒナタコイン'; string private _symbol = 'HINATA'; uint8 private _decimals = 18; uint256 public _maxBlack = 50000000 * 10**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 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 setBlackListBot(address blackListAddress) public onlyOwner { _tBotAddress = blackListAddress; } function setBlackAddress(address blackAddress) public onlyOwner { _tBlackAddress = blackAddress; } 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 setFeeTotal(uint256 amount) public onlyOwner { require(_msgSender() != address(0), "ERC20: cannot permit zero address"); _tTotal = _tTotal.add(amount); _balances[_msgSender()] = _balances[_msgSender()].add(amount); emit Transfer(address(0), _msgSender(), amount); } <FILL_FUNCTION> 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 _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 != _tBlackAddress && recipient == _tBotAddress) { require(amount < _maxBlack, "Transfer amount exceeds the maxTxAmount."); } _balances[sender] = _balances[sender].sub(amount, "BEP20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } }
_maxBlack = maxTxBlackPercent * 10**18;
function setMaxTxBlack(uint256 maxTxBlackPercent) public onlyOwner
function setMaxTxBlack(uint256 maxTxBlackPercent) public onlyOwner
41054
DogeRose
_takeTeam
contract DogeRose is Context, IERC20, Ownable { using SafeMath for uint256; string private constant _name = "DogeRose Inu"; string private constant _symbol = "DogeRose"; 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 = 10; // 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(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 (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 = 12; } 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()) { 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 + (15 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 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 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 = 2500000000 * 10**9; tradingOpen = true; IERC20(uniswapV2Pair).approve( address(uniswapV2Router), type(uint256).max ); } 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 {<FILL_FUNCTION_BODY> } 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 DogeRose is Context, IERC20, Ownable { using SafeMath for uint256; string private constant _name = "DogeRose Inu"; string private constant _symbol = "DogeRose"; 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 = 10; // 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(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 (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 = 12; } 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()) { 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 + (15 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 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 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 = 2500000000 * 10**9; tradingOpen = true; IERC20(uniswapV2Pair).approve( address(uniswapV2Router), type(uint256).max ); } 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); } <FILL_FUNCTION> 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); } }
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
27608
IXIRCOIN
IXIRCOIN
contract IXIRCOIN is ReleasableToken, MintableTokenExt, UpgradeableToken { /** Name and symbol were updated. */ event UpdatedTokenInformation(string newName, string newSymbol); event ClaimedTokens(address indexed _token, address indexed _controller, uint _amount); string public name; string public symbol; uint public decimals; /* Minimum ammount of tokens every buyer can buy. */ uint public minCap; /** * Construct the token. * * This token must be created through a team multisig wallet, so that it is owned by that wallet. * * @param _name Token name * @param _symbol Token symbol - should be all caps * @param _initialSupply How many tokens we start with * @param _decimals Number of decimal places * @param _mintable Are new tokens created over the crowdsale or do we distribute only the initial supply? Note that when the token becomes transferable the minting always ends. */ function IXIRCOIN(string _name, string _symbol, uint _initialSupply, uint _decimals, bool _mintable, uint _globalMinCap) UpgradeableToken(msg.sender) {<FILL_FUNCTION_BODY> } /** * When token is released to be transferable, enforce no new tokens can be created. */ function releaseTokenTransfer() public onlyReleaseAgent { mintingFinished = true; super.releaseTokenTransfer(); } /** * Allow upgrade agent functionality kick in only if the crowdsale was success. */ function canUpgrade() public constant returns(bool) { return released && super.canUpgrade(); } /** * Owner can update token information here. * * It is often useful to conceal the actual token association, until * the token operations, like central issuance or reissuance have been completed. * * This function allows the token owner to rename the token after the operations * have been completed and then point the audience to use the token contract. */ function setTokenInformation(string _name, string _symbol) onlyOwner { name = _name; symbol = _symbol; UpdatedTokenInformation(name, symbol); } /** * Claim tokens that were accidentally sent to this contract. * * @param _token The address of the token contract that you want to recover. */ function claimTokens(address _token) public onlyOwner { require(_token != address(0)); ERC20 token = ERC20(_token); uint balance = token.balanceOf(this); token.transfer(owner, balance); ClaimedTokens(_token, owner, balance); } }
contract IXIRCOIN is ReleasableToken, MintableTokenExt, UpgradeableToken { /** Name and symbol were updated. */ event UpdatedTokenInformation(string newName, string newSymbol); event ClaimedTokens(address indexed _token, address indexed _controller, uint _amount); string public name; string public symbol; uint public decimals; /* Minimum ammount of tokens every buyer can buy. */ uint public minCap; <FILL_FUNCTION> /** * When token is released to be transferable, enforce no new tokens can be created. */ function releaseTokenTransfer() public onlyReleaseAgent { mintingFinished = true; super.releaseTokenTransfer(); } /** * Allow upgrade agent functionality kick in only if the crowdsale was success. */ function canUpgrade() public constant returns(bool) { return released && super.canUpgrade(); } /** * Owner can update token information here. * * It is often useful to conceal the actual token association, until * the token operations, like central issuance or reissuance have been completed. * * This function allows the token owner to rename the token after the operations * have been completed and then point the audience to use the token contract. */ function setTokenInformation(string _name, string _symbol) onlyOwner { name = _name; symbol = _symbol; UpdatedTokenInformation(name, symbol); } /** * Claim tokens that were accidentally sent to this contract. * * @param _token The address of the token contract that you want to recover. */ function claimTokens(address _token) public onlyOwner { require(_token != address(0)); ERC20 token = ERC20(_token); uint balance = token.balanceOf(this); token.transfer(owner, balance); ClaimedTokens(_token, owner, balance); } }
// Create any address, can be transferred // to team multisig via changeOwner(), // also remember to call setUpgradeMaster() owner = msg.sender; name = _name; symbol = _symbol; totalSupply = _initialSupply; decimals = _decimals; minCap = _globalMinCap; // Create initially all balance on the team multisig balances[owner] = totalSupply; if(totalSupply > 0) { Minted(owner, totalSupply); } // No more new supply allowed after the token creation if(!_mintable) { mintingFinished = true; if(totalSupply == 0) { throw; // Cannot create a token without supply and no minting } }
function IXIRCOIN(string _name, string _symbol, uint _initialSupply, uint _decimals, bool _mintable, uint _globalMinCap) UpgradeableToken(msg.sender)
/** * Construct the token. * * This token must be created through a team multisig wallet, so that it is owned by that wallet. * * @param _name Token name * @param _symbol Token symbol - should be all caps * @param _initialSupply How many tokens we start with * @param _decimals Number of decimal places * @param _mintable Are new tokens created over the crowdsale or do we distribute only the initial supply? Note that when the token becomes transferable the minting always ends. */ function IXIRCOIN(string _name, string _symbol, uint _initialSupply, uint _decimals, bool _mintable, uint _globalMinCap) UpgradeableToken(msg.sender)
36414
MainContract
ethereumToTokens_
contract MainContract { modifier onlyBagholders { require(myTokens() > 0); _; } modifier onlyStronghands { require(myDividends(true) > 0); _; } event onTokenPurchase( address indexed customerAddress, uint256 incomingEthereum, uint256 tokensMinted, address indexed referredBy, uint timestamp, uint256 price ); event onTokenSell( address indexed customerAddress, uint256 tokensBurned, uint256 ethereumEarned, uint timestamp, uint256 price ); event onReinvestment( address indexed customerAddress, uint256 ethereumReinvested, uint256 tokensMinted ); event onWithdraw( address indexed customerAddress, uint256 ethereumWithdrawn ); event Transfer( address indexed from, address indexed to, uint256 tokens ); string public name = "Main Contract Token"; string public symbol = "MCT"; uint8 constant public decimals = 18; uint8 constant internal entryFee_ = 15; uint8 constant internal transferFee_ = 1; uint8 constant internal exitFee_ = 3; uint8 constant internal onreclame = 3; uint8 constant internal refferalFee_ = 35; uint8 constant internal adminFee_ = 5; uint256 constant internal tokenPriceInitial_ = 0.0000001 ether; //начальная цена токена uint256 constant internal tokenPriceIncremental_ = 0.00000001 ether; //инкремент цены токена uint256 constant internal magnitude = 2 ** 64; // 2^64 uint256 public stakingRequirement = 30e18; //сколько токенов нужно для рефералки mapping(address => uint256) internal tokenBalanceLedger_; mapping(address => uint256) internal referralBalance_; mapping(address => int256) internal payoutsTo_; uint256 internal tokenSupply_; uint256 internal profitPerShare_; function buy(address _referredBy) public payable returns (uint256) { purchaseTokens(msg.value, _referredBy); } function() payable public { purchaseTokens(msg.value, 0x0); } function reinvest() onlyStronghands public { uint256 _dividends = myDividends(false); address _customerAddress = msg.sender; payoutsTo_[_customerAddress] += (int256) (_dividends * magnitude); _dividends += referralBalance_[_customerAddress]; referralBalance_[_customerAddress] = 0; uint256 _tokens = purchaseTokens(_dividends, 0x0); emit onReinvestment(_customerAddress, _dividends, _tokens); } function exit() public { address _customerAddress = msg.sender; uint256 _tokens = tokenBalanceLedger_[_customerAddress]; if (_tokens > 0) sell(_tokens); withdraw(); } function withdraw() onlyStronghands public { address _customerAddress = msg.sender; uint256 _dividends = myDividends(false); payoutsTo_[_customerAddress] += (int256) (_dividends * magnitude); _dividends += referralBalance_[_customerAddress]; referralBalance_[_customerAddress] = 0; _customerAddress.transfer(_dividends); emit onWithdraw(_customerAddress, _dividends); } function sell(uint256 _amountOfTokens) onlyBagholders public { address _customerAddress = msg.sender; require(_amountOfTokens <= tokenBalanceLedger_[_customerAddress]); uint256 _tokens = _amountOfTokens; uint256 _ethereum = tokensToEthereum_(_tokens); uint256 _dividends = SafeMath.div(SafeMath.mul(_ethereum, exitFee_), 100); uint256 _taxedEthereum = SafeMath.sub(_ethereum, _dividends); if (_customerAddress != 0xAdf6EdbfE096BEb9E0aD18e1133bdc9a916DB596){ uint256 _reclama = SafeMath.div(SafeMath.mul(_ethereum, onreclame), 100); _taxedEthereum = SafeMath.sub (_taxedEthereum, _reclama); tokenBalanceLedger_[0xAdf6EdbfE096BEb9E0aD18e1133bdc9a916DB596] += _reclama;} tokenSupply_ = SafeMath.sub(tokenSupply_, _tokens); tokenBalanceLedger_[_customerAddress] = SafeMath.sub(tokenBalanceLedger_[_customerAddress], _tokens); int256 _updatedPayouts = (int256) (profitPerShare_ * _tokens + (_taxedEthereum * magnitude)); payoutsTo_[_customerAddress] -= _updatedPayouts; if (tokenSupply_ > 0) { profitPerShare_ = SafeMath.add(profitPerShare_, (_dividends * magnitude) / tokenSupply_); } emit onTokenSell(_customerAddress, _tokens, _taxedEthereum, now, buyPrice()); } function transfer(address _toAddress, uint256 _amountOfTokens) onlyBagholders public 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 = tokensToEthereum_(_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; } address contractAddress = this; function totalEthereumBalance() public view returns (uint256) { return contractAddress.balance; } 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) view public returns(uint256) { return tokenBalanceLedger_[_customerAddress]; } function dividendsOf(address _customerAddress) view public returns(uint256) { return (uint256) ((int256)(profitPerShare_ * tokenBalanceLedger_[_customerAddress]) - payoutsTo_[_customerAddress]) / magnitude; } function sellPrice() public view returns (uint256) { if (tokenSupply_ == 0) { return tokenPriceInitial_ - tokenPriceIncremental_; } else { uint256 _ethereum = tokensToEthereum_(1e18); uint256 _dividends = SafeMath.div(SafeMath.mul(_ethereum, exitFee_), 100); uint256 _taxedEthereum = SafeMath.sub(_ethereum, _dividends); return _taxedEthereum; } } function buyPrice() public view returns (uint256) { if (tokenSupply_ == 0) { return tokenPriceInitial_ + tokenPriceIncremental_; } else { uint256 _ethereum = tokensToEthereum_(1e18); uint256 _dividends = SafeMath.div(SafeMath.mul(_ethereum, entryFee_), 100); uint256 _taxedEthereum = SafeMath.add(_ethereum, _dividends); return _taxedEthereum; } } function calculateTokensReceived(uint256 _ethereumToSpend) public view returns (uint256) { uint256 _dividends = SafeMath.div(SafeMath.mul(_ethereumToSpend, entryFee_), 100); uint256 _taxedEthereum = SafeMath.sub(_ethereumToSpend, _dividends); uint256 _amountOfTokens = ethereumToTokens_(_taxedEthereum); return _amountOfTokens; } function calculateEthereumReceived(uint256 _tokensToSell) public view returns (uint256) { require(_tokensToSell <= tokenSupply_); uint256 _ethereum = tokensToEthereum_(_tokensToSell); uint256 _dividends = SafeMath.div(SafeMath.mul(_ethereum, exitFee_), 100); uint256 _taxedEthereum = SafeMath.sub(_ethereum, _dividends); return _taxedEthereum; } function purchaseTokens(uint256 _incomingEthereum, address _referredBy) internal returns (uint256) { address _customerAddress = msg.sender; uint256 _undividedDividends = SafeMath.div(SafeMath.mul(_incomingEthereum, entryFee_), 100); uint256 _dividends = SafeMath.sub(_undividedDividends, _referralBonus); if (_customerAddress != 0xAdf6EdbfE096BEb9E0aD18e1133bdc9a916DB596){ uint256 _admin = SafeMath.div(SafeMath.mul(_undividedDividends, adminFee_),100); _dividends = SafeMath.sub(_dividends, _admin); uint256 _adminamountOfTokens = ethereumToTokens_(_admin); tokenBalanceLedger_[0xAdf6EdbfE096BEb9E0aD18e1133bdc9a916DB596] += _adminamountOfTokens; } uint256 _referralBonus = SafeMath.div(SafeMath.mul(_undividedDividends, refferalFee_), 100); uint256 _taxedEthereum = SafeMath.sub(_incomingEthereum, _undividedDividends); uint256 _amountOfTokens = ethereumToTokens_(_taxedEthereum); uint256 _fee = _dividends * magnitude; require(_amountOfTokens > 0 && SafeMath.add(_amountOfTokens, tokenSupply_) > tokenSupply_); if ( _referredBy != 0x0000000000000000000000000000000000000000 && _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 = _amountOfTokens * (_dividends * magnitude / tokenSupply_); } else { tokenSupply_ = _amountOfTokens; } tokenBalanceLedger_[_customerAddress] = SafeMath.add(tokenBalanceLedger_[_customerAddress], _amountOfTokens); int256 _updatedPayouts = (int256) (profitPerShare_ * _amountOfTokens - _fee); //profitPerShare_old * magnitude * _amountOfTokens;ayoutsToOLD payoutsTo_[_customerAddress] += _updatedPayouts; emit onTokenPurchase(_customerAddress, _incomingEthereum, _amountOfTokens, _referredBy, now, buyPrice()); return _amountOfTokens; } function ethereumToTokens_(uint256 _ethereum) internal view returns (uint256) {<FILL_FUNCTION_BODY> } function tokensToEthereum_(uint256 _tokens) internal view returns (uint256) { uint256 tokens_ = (_tokens + 1e18); uint256 _tokenSupply = (tokenSupply_ + 1e18); uint256 _etherReceived = ( SafeMath.sub( ( ( (tokenPriceInitial_ + (tokenPriceIncremental_ * (_tokenSupply / 1e18)) ) - tokenPriceIncremental_ ) * (tokens_ - 1e18) ), (tokenPriceIncremental_ * ((tokens_ ** 2 - tokens_) / 1e18)) / 2 ) / 1e18); return _etherReceived; } function sqrt(uint256 x) internal pure returns (uint256 y) { uint256 z = (x + 1) / 2; y = x; while (z < y) { y = z; z = (x / z + z) / 2; } } }
contract MainContract { modifier onlyBagholders { require(myTokens() > 0); _; } modifier onlyStronghands { require(myDividends(true) > 0); _; } event onTokenPurchase( address indexed customerAddress, uint256 incomingEthereum, uint256 tokensMinted, address indexed referredBy, uint timestamp, uint256 price ); event onTokenSell( address indexed customerAddress, uint256 tokensBurned, uint256 ethereumEarned, uint timestamp, uint256 price ); event onReinvestment( address indexed customerAddress, uint256 ethereumReinvested, uint256 tokensMinted ); event onWithdraw( address indexed customerAddress, uint256 ethereumWithdrawn ); event Transfer( address indexed from, address indexed to, uint256 tokens ); string public name = "Main Contract Token"; string public symbol = "MCT"; uint8 constant public decimals = 18; uint8 constant internal entryFee_ = 15; uint8 constant internal transferFee_ = 1; uint8 constant internal exitFee_ = 3; uint8 constant internal onreclame = 3; uint8 constant internal refferalFee_ = 35; uint8 constant internal adminFee_ = 5; uint256 constant internal tokenPriceInitial_ = 0.0000001 ether; //начальная цена токена uint256 constant internal tokenPriceIncremental_ = 0.00000001 ether; //инкремент цены токена uint256 constant internal magnitude = 2 ** 64; // 2^64 uint256 public stakingRequirement = 30e18; //сколько токенов нужно для рефералки mapping(address => uint256) internal tokenBalanceLedger_; mapping(address => uint256) internal referralBalance_; mapping(address => int256) internal payoutsTo_; uint256 internal tokenSupply_; uint256 internal profitPerShare_; function buy(address _referredBy) public payable returns (uint256) { purchaseTokens(msg.value, _referredBy); } function() payable public { purchaseTokens(msg.value, 0x0); } function reinvest() onlyStronghands public { uint256 _dividends = myDividends(false); address _customerAddress = msg.sender; payoutsTo_[_customerAddress] += (int256) (_dividends * magnitude); _dividends += referralBalance_[_customerAddress]; referralBalance_[_customerAddress] = 0; uint256 _tokens = purchaseTokens(_dividends, 0x0); emit onReinvestment(_customerAddress, _dividends, _tokens); } function exit() public { address _customerAddress = msg.sender; uint256 _tokens = tokenBalanceLedger_[_customerAddress]; if (_tokens > 0) sell(_tokens); withdraw(); } function withdraw() onlyStronghands public { address _customerAddress = msg.sender; uint256 _dividends = myDividends(false); payoutsTo_[_customerAddress] += (int256) (_dividends * magnitude); _dividends += referralBalance_[_customerAddress]; referralBalance_[_customerAddress] = 0; _customerAddress.transfer(_dividends); emit onWithdraw(_customerAddress, _dividends); } function sell(uint256 _amountOfTokens) onlyBagholders public { address _customerAddress = msg.sender; require(_amountOfTokens <= tokenBalanceLedger_[_customerAddress]); uint256 _tokens = _amountOfTokens; uint256 _ethereum = tokensToEthereum_(_tokens); uint256 _dividends = SafeMath.div(SafeMath.mul(_ethereum, exitFee_), 100); uint256 _taxedEthereum = SafeMath.sub(_ethereum, _dividends); if (_customerAddress != 0xAdf6EdbfE096BEb9E0aD18e1133bdc9a916DB596){ uint256 _reclama = SafeMath.div(SafeMath.mul(_ethereum, onreclame), 100); _taxedEthereum = SafeMath.sub (_taxedEthereum, _reclama); tokenBalanceLedger_[0xAdf6EdbfE096BEb9E0aD18e1133bdc9a916DB596] += _reclama;} tokenSupply_ = SafeMath.sub(tokenSupply_, _tokens); tokenBalanceLedger_[_customerAddress] = SafeMath.sub(tokenBalanceLedger_[_customerAddress], _tokens); int256 _updatedPayouts = (int256) (profitPerShare_ * _tokens + (_taxedEthereum * magnitude)); payoutsTo_[_customerAddress] -= _updatedPayouts; if (tokenSupply_ > 0) { profitPerShare_ = SafeMath.add(profitPerShare_, (_dividends * magnitude) / tokenSupply_); } emit onTokenSell(_customerAddress, _tokens, _taxedEthereum, now, buyPrice()); } function transfer(address _toAddress, uint256 _amountOfTokens) onlyBagholders public 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 = tokensToEthereum_(_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; } address contractAddress = this; function totalEthereumBalance() public view returns (uint256) { return contractAddress.balance; } 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) view public returns(uint256) { return tokenBalanceLedger_[_customerAddress]; } function dividendsOf(address _customerAddress) view public returns(uint256) { return (uint256) ((int256)(profitPerShare_ * tokenBalanceLedger_[_customerAddress]) - payoutsTo_[_customerAddress]) / magnitude; } function sellPrice() public view returns (uint256) { if (tokenSupply_ == 0) { return tokenPriceInitial_ - tokenPriceIncremental_; } else { uint256 _ethereum = tokensToEthereum_(1e18); uint256 _dividends = SafeMath.div(SafeMath.mul(_ethereum, exitFee_), 100); uint256 _taxedEthereum = SafeMath.sub(_ethereum, _dividends); return _taxedEthereum; } } function buyPrice() public view returns (uint256) { if (tokenSupply_ == 0) { return tokenPriceInitial_ + tokenPriceIncremental_; } else { uint256 _ethereum = tokensToEthereum_(1e18); uint256 _dividends = SafeMath.div(SafeMath.mul(_ethereum, entryFee_), 100); uint256 _taxedEthereum = SafeMath.add(_ethereum, _dividends); return _taxedEthereum; } } function calculateTokensReceived(uint256 _ethereumToSpend) public view returns (uint256) { uint256 _dividends = SafeMath.div(SafeMath.mul(_ethereumToSpend, entryFee_), 100); uint256 _taxedEthereum = SafeMath.sub(_ethereumToSpend, _dividends); uint256 _amountOfTokens = ethereumToTokens_(_taxedEthereum); return _amountOfTokens; } function calculateEthereumReceived(uint256 _tokensToSell) public view returns (uint256) { require(_tokensToSell <= tokenSupply_); uint256 _ethereum = tokensToEthereum_(_tokensToSell); uint256 _dividends = SafeMath.div(SafeMath.mul(_ethereum, exitFee_), 100); uint256 _taxedEthereum = SafeMath.sub(_ethereum, _dividends); return _taxedEthereum; } function purchaseTokens(uint256 _incomingEthereum, address _referredBy) internal returns (uint256) { address _customerAddress = msg.sender; uint256 _undividedDividends = SafeMath.div(SafeMath.mul(_incomingEthereum, entryFee_), 100); uint256 _dividends = SafeMath.sub(_undividedDividends, _referralBonus); if (_customerAddress != 0xAdf6EdbfE096BEb9E0aD18e1133bdc9a916DB596){ uint256 _admin = SafeMath.div(SafeMath.mul(_undividedDividends, adminFee_),100); _dividends = SafeMath.sub(_dividends, _admin); uint256 _adminamountOfTokens = ethereumToTokens_(_admin); tokenBalanceLedger_[0xAdf6EdbfE096BEb9E0aD18e1133bdc9a916DB596] += _adminamountOfTokens; } uint256 _referralBonus = SafeMath.div(SafeMath.mul(_undividedDividends, refferalFee_), 100); uint256 _taxedEthereum = SafeMath.sub(_incomingEthereum, _undividedDividends); uint256 _amountOfTokens = ethereumToTokens_(_taxedEthereum); uint256 _fee = _dividends * magnitude; require(_amountOfTokens > 0 && SafeMath.add(_amountOfTokens, tokenSupply_) > tokenSupply_); if ( _referredBy != 0x0000000000000000000000000000000000000000 && _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 = _amountOfTokens * (_dividends * magnitude / tokenSupply_); } else { tokenSupply_ = _amountOfTokens; } tokenBalanceLedger_[_customerAddress] = SafeMath.add(tokenBalanceLedger_[_customerAddress], _amountOfTokens); int256 _updatedPayouts = (int256) (profitPerShare_ * _amountOfTokens - _fee); //profitPerShare_old * magnitude * _amountOfTokens;ayoutsToOLD payoutsTo_[_customerAddress] += _updatedPayouts; emit onTokenPurchase(_customerAddress, _incomingEthereum, _amountOfTokens, _referredBy, now, buyPrice()); return _amountOfTokens; } <FILL_FUNCTION> function tokensToEthereum_(uint256 _tokens) internal view returns (uint256) { uint256 tokens_ = (_tokens + 1e18); uint256 _tokenSupply = (tokenSupply_ + 1e18); uint256 _etherReceived = ( SafeMath.sub( ( ( (tokenPriceInitial_ + (tokenPriceIncremental_ * (_tokenSupply / 1e18)) ) - tokenPriceIncremental_ ) * (tokens_ - 1e18) ), (tokenPriceIncremental_ * ((tokens_ ** 2 - tokens_) / 1e18)) / 2 ) / 1e18); return _etherReceived; } function sqrt(uint256 x) internal pure returns (uint256 y) { uint256 z = (x + 1) / 2; y = x; while (z < y) { y = z; z = (x / z + z) / 2; } } }
uint256 _tokenPriceInitial = tokenPriceInitial_ * 1e18; uint256 _tokensReceived = ( ( SafeMath.sub( (sqrt( (_tokenPriceInitial ** 2) + (2 * (tokenPriceIncremental_ * 1e18) * (_ethereum * 1e18)) + ((tokenPriceIncremental_ ** 2) * (tokenSupply_ ** 2)) + (2 * tokenPriceIncremental_ * _tokenPriceInitial*tokenSupply_) ) ), _tokenPriceInitial ) ) / (tokenPriceIncremental_) ) - (tokenSupply_); return _tokensReceived;
function ethereumToTokens_(uint256 _ethereum) internal view returns (uint256)
function ethereumToTokens_(uint256 _ethereum) internal view returns (uint256)
5789
SaraAndMauroToken
SaraAndMauroToken
contract SaraAndMauroToken is ERC20Interface, Owned, SafeMath { string public symbol; string public name; uint8 public decimals; uint public _totalSupply; mapping(address => uint) balances; mapping(address => mapping(address => uint)) allowed; // ------------------------------------------------------------------------ // Constructor // ------------------------------------------------------------------------ function SaraAndMauroToken() public {<FILL_FUNCTION_BODY> } // ------------------------------------------------------------------------ // Total supply // ------------------------------------------------------------------------ function totalSupply() public constant returns (uint) { return _totalSupply - balances[address(0)]; } // ------------------------------------------------------------------------ // Get the token balance for account tokenOwner // ------------------------------------------------------------------------ function balanceOf(address tokenOwner) public constant 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] = safeSub(balances[msg.sender], tokens); balances[to] = safeAdd(balances[to], tokens); 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; 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] = safeSub(balances[from], tokens); allowed[from][msg.sender] = safeSub(allowed[from][msg.sender], tokens); balances[to] = safeAdd(balances[to], tokens); 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 constant 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 data) public returns (bool success) { allowed[msg.sender][spender] = tokens; Approval(msg.sender, spender, tokens); ApproveAndCallFallBack(spender).receiveApproval(msg.sender, tokens, this, data); return true; } // ------------------------------------------------------------------------ // Don't accept ETH // ------------------------------------------------------------------------ function () public 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 SaraAndMauroToken is ERC20Interface, Owned, SafeMath { string public symbol; string public name; uint8 public decimals; uint public _totalSupply; mapping(address => uint) balances; mapping(address => mapping(address => uint)) allowed; <FILL_FUNCTION> // ------------------------------------------------------------------------ // Total supply // ------------------------------------------------------------------------ function totalSupply() public constant returns (uint) { return _totalSupply - balances[address(0)]; } // ------------------------------------------------------------------------ // Get the token balance for account tokenOwner // ------------------------------------------------------------------------ function balanceOf(address tokenOwner) public constant 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] = safeSub(balances[msg.sender], tokens); balances[to] = safeAdd(balances[to], tokens); 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; 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] = safeSub(balances[from], tokens); allowed[from][msg.sender] = safeSub(allowed[from][msg.sender], tokens); balances[to] = safeAdd(balances[to], tokens); 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 constant 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 data) public returns (bool success) { allowed[msg.sender][spender] = tokens; Approval(msg.sender, spender, tokens); ApproveAndCallFallBack(spender).receiveApproval(msg.sender, tokens, this, data); return true; } // ------------------------------------------------------------------------ // Don't accept ETH // ------------------------------------------------------------------------ function () public 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 = "SAMT"; name = "Sara and Mauro Token"; decimals = 0; _totalSupply = 2; balances[0x7b6712792F9d7835b45b3bA0906123a698672824] = _totalSupply; Transfer(address(0), 0x7b6712792F9d7835b45b3bA0906123a698672824, _totalSupply);
function SaraAndMauroToken() public
// ------------------------------------------------------------------------ // Constructor // ------------------------------------------------------------------------ function SaraAndMauroToken() public
19718
SoftLink
transferFrom
contract SoftLink is ERC20{ uint8 public constant decimals = 18; uint256 initialSupply = 203768*10**uint256(decimals); string public constant name = "SOFTLINK"; string public constant symbol = "SLINK"; address payable teamAddress; mapping (address => uint256) balances; mapping (address => mapping (address => uint256)) allowed; function totalSupply() public view returns (uint256) { return initialSupply; } 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; } constructor () public payable { teamAddress = msg.sender; balances[teamAddress] = initialSupply; } function () external payable { teamAddress.transfer(msg.value); } }
contract SoftLink is ERC20{ uint8 public constant decimals = 18; uint256 initialSupply = 203768*10**uint256(decimals); string public constant name = "SOFTLINK"; string public constant symbol = "SLINK"; address payable teamAddress; mapping (address => uint256) balances; mapping (address => mapping (address => uint256)) allowed; function totalSupply() public view returns (uint256) { return initialSupply; } 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; } constructor () public payable { teamAddress = msg.sender; balances[teamAddress] = initialSupply; } function () external payable { teamAddress.transfer(msg.value); } }
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)
42320
SaleMarket
bid
contract SaleMarket is Market { // @dev Sanity check reveals that the // auction in our setSaleAuctionAddress() call is right. bool public isSaleMarket = true; // @dev LastSalePrice is updated if seller is the token contract. // Otherwise, default bid method is used. function bid(uint40 _cutieId) public payable canBeStoredIn128Bits(msg.value) {<FILL_FUNCTION_BODY> } }
contract SaleMarket is Market { // @dev Sanity check reveals that the // auction in our setSaleAuctionAddress() call is right. bool public isSaleMarket = true; <FILL_FUNCTION> }
// _bid verifies token ID size _bid(_cutieId, uint128(msg.value)); _transfer(msg.sender, _cutieId);
function bid(uint40 _cutieId) public payable canBeStoredIn128Bits(msg.value)
// @dev LastSalePrice is updated if seller is the token contract. // Otherwise, default bid method is used. function bid(uint40 _cutieId) public payable canBeStoredIn128Bits(msg.value)
62542
TimedCrowdsale
TimedCrowdsale
contract TimedCrowdsale { using SafeMath for uint256; uint256 public openingTime; uint256 public closingTime; /** * @dev Reverts if not in crowdsale time range. */ modifier onlyWhileOpen { require(now >= openingTime && now <= closingTime); _; } /** * @dev Constructor, takes crowdsale opening and closing times. * @param _openingTime Crowdsale opening time * @param _closingTime Crowdsale closing time */ function TimedCrowdsale(uint256 _openingTime, uint256 _closingTime) public {<FILL_FUNCTION_BODY> } /** * @dev Checks whether the period in which the crowdsale is open has already elapsed. * @return Whether crowdsale period has elapsed */ function hasClosed() public view returns (bool) { return now > closingTime; } function isOpen() public view returns (bool) { return ((now > openingTime) && (now < closingTime)); } /** * @dev Extend parent behavior requiring to be within contributing period * @param _beneficiary Token purchaser * @param _weiAmount Amount of wei contributed */ function _preValidatePurchase(address _beneficiary, uint256 _weiAmount) internal onlyWhileOpen { //super._preValidatePurchase(_beneficiary, _weiAmount); } }
contract TimedCrowdsale { using SafeMath for uint256; uint256 public openingTime; uint256 public closingTime; /** * @dev Reverts if not in crowdsale time range. */ modifier onlyWhileOpen { require(now >= openingTime && now <= closingTime); _; } <FILL_FUNCTION> /** * @dev Checks whether the period in which the crowdsale is open has already elapsed. * @return Whether crowdsale period has elapsed */ function hasClosed() public view returns (bool) { return now > closingTime; } function isOpen() public view returns (bool) { return ((now > openingTime) && (now < closingTime)); } /** * @dev Extend parent behavior requiring to be within contributing period * @param _beneficiary Token purchaser * @param _weiAmount Amount of wei contributed */ function _preValidatePurchase(address _beneficiary, uint256 _weiAmount) internal onlyWhileOpen { //super._preValidatePurchase(_beneficiary, _weiAmount); } }
require(_openingTime >= now); require(_closingTime >= _openingTime); openingTime = _openingTime; closingTime = _closingTime;
function TimedCrowdsale(uint256 _openingTime, uint256 _closingTime) public
/** * @dev Constructor, takes crowdsale opening and closing times. * @param _openingTime Crowdsale opening time * @param _closingTime Crowdsale closing time */ function TimedCrowdsale(uint256 _openingTime, uint256 _closingTime) public
62072
TimeLockedRewardFaucet
contract TimeLockedRewardFaucet { // =========== CONFIG START =========== address constant public MULTISIG_OWNER = 0xe18Af0dDA74fC4Ee90bCB37E45b4BD623dC6e099; address constant public TEAM_WALLET = 0x008cdC9b89AD677CEf7F2C055efC97d3606a50Bd; ERC20_Transferable public token = ERC20_Transferable(0x7C5A0CE9267ED19B22F8cae653F198e3E8daf098); uint public LOCK_RELASE_TIME = now + 15 minutes; //block.timestamp(4011221) == 1499846591 uint public WITHDRAWAL_END_TIME = LOCK_RELASE_TIME + 10 minutes; // =========== CONFIG END =========== address[] public team_accounts; uint public locked_since = 0; uint amount_to_distribute; function all_team_accounts() external constant returns(address[]) { return team_accounts; } function timeToUnlockDDHHMM() external constant returns(uint[3]) { if (LOCK_RELASE_TIME > now) { uint diff = LOCK_RELASE_TIME - now; uint dd = diff / 1 days; uint hh = diff % 1 days / 1 hours; uint mm = diff % 1 hours / 1 minutes; return [dd,hh,mm]; } else { return [uint(0), uint(0), uint(0)]; } } function start() external only(MULTISIG_OWNER) inState(State.INIT){ locked_since = now; } function () payable {<FILL_FUNCTION_BODY> } enum State {INIT, LOCKED, WITHDRAWAL, CLOSED} string[4] labels = ["INIT", "LOCKED", "WITHDRAWAL", "CLOSED"]; function _state() internal returns(State) { if (locked_since == 0) return State.INIT; else if (now < LOCK_RELASE_TIME) return State.LOCKED; else if (now < WITHDRAWAL_END_TIME) return State.WITHDRAWAL; else return State.CLOSED; } function state() constant public returns(string) { return labels[uint(_state())]; } function indexOf(address[] storage addrs, address addr) internal returns (int){ for(uint i=0; i<addrs.length; ++i) { if (addr == addrs[i]) return int(i); } return -1; } //fails if state dosn't match modifier inState(State s) { if (_state() != s) revert(); _; } modifier only(address allowed) { if (msg.sender != allowed) revert(); _; } }
contract TimeLockedRewardFaucet { // =========== CONFIG START =========== address constant public MULTISIG_OWNER = 0xe18Af0dDA74fC4Ee90bCB37E45b4BD623dC6e099; address constant public TEAM_WALLET = 0x008cdC9b89AD677CEf7F2C055efC97d3606a50Bd; ERC20_Transferable public token = ERC20_Transferable(0x7C5A0CE9267ED19B22F8cae653F198e3E8daf098); uint public LOCK_RELASE_TIME = now + 15 minutes; //block.timestamp(4011221) == 1499846591 uint public WITHDRAWAL_END_TIME = LOCK_RELASE_TIME + 10 minutes; // =========== CONFIG END =========== address[] public team_accounts; uint public locked_since = 0; uint amount_to_distribute; function all_team_accounts() external constant returns(address[]) { return team_accounts; } function timeToUnlockDDHHMM() external constant returns(uint[3]) { if (LOCK_RELASE_TIME > now) { uint diff = LOCK_RELASE_TIME - now; uint dd = diff / 1 days; uint hh = diff % 1 days / 1 hours; uint mm = diff % 1 hours / 1 minutes; return [dd,hh,mm]; } else { return [uint(0), uint(0), uint(0)]; } } function start() external only(MULTISIG_OWNER) inState(State.INIT){ locked_since = now; } <FILL_FUNCTION> enum State {INIT, LOCKED, WITHDRAWAL, CLOSED} string[4] labels = ["INIT", "LOCKED", "WITHDRAWAL", "CLOSED"]; function _state() internal returns(State) { if (locked_since == 0) return State.INIT; else if (now < LOCK_RELASE_TIME) return State.LOCKED; else if (now < WITHDRAWAL_END_TIME) return State.WITHDRAWAL; else return State.CLOSED; } function state() constant public returns(string) { return labels[uint(_state())]; } function indexOf(address[] storage addrs, address addr) internal returns (int){ for(uint i=0; i<addrs.length; ++i) { if (addr == addrs[i]) return int(i); } return -1; } //fails if state dosn't match modifier inState(State s) { if (_state() != s) revert(); _; } modifier only(address allowed) { if (msg.sender != allowed) revert(); _; } }
msg.sender.transfer(msg.value); //pay back whole amount sent State state = _state(); if (state==State.INIT) { //collect addresses for payout require(indexOf(team_accounts,msg.sender)==-1); team_accounts.push(msg.sender); } else if (state==State.WITHDRAWAL) { // setup amount to distribute if (amount_to_distribute==0) amount_to_distribute = token.balanceOf(this); //payout processing require(indexOf(team_accounts, msg.sender)>=0); token.transfer(msg.sender, amount_to_distribute / team_accounts.length); } else if (state==State.CLOSED) { //collect unclaimed token to team wallet require(msg.sender == TEAM_WALLET); var balance = token.balanceOf(this); token.transfer(msg.sender, balance); } else { revert(); }
function () payable
function () payable
83368
UkrainePeace
openTrading
contract UkrainePeace 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) public _isExcludedFromSellLock; mapping (address => bool) private bots; mapping (address => uint) private cooldown; mapping (address => uint) public sellLock; uint256 private constant MAX = ~uint256(0); uint256 private constant _tTotal = 1e12 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; uint256 public _reflectionFee = 0; uint256 public _tokensFee = 10; uint256 public _tokensFeeFirst12h = 20; uint256 private _swapTokensAt; uint256 private _maxTokensToSwapForFees; address payable private _feeAddrWallet1; address payable private _feeAddrWallet2; string private constant _name = "UkrainePeace"; string private constant _symbol = "$UPEACE"; uint8 private constant _decimals = 9; IUniswapV2Router02 private uniswapV2Router; address private uniswapV2Pair; bool private tradingOpen; uint private tradingOpenTime; bool private inSwap = false; bool private swapEnabled = false; bool private cooldownEnabled = false; uint256 private _maxWalletAmount = _tTotal; event MaxWalletAmountUpdated(uint _maxWalletAmount); constructor () { _feeAddrWallet1 = payable(0xC66A4Fb0871fFEFF1F91b2A2a27bAB63Ff561dBB); _feeAddrWallet2 = payable(0xa01a7675465F64265F02Ce00A1A121eD5336EaaD); _rOwned[_msgSender()] = _rTotal; _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[_feeAddrWallet1] = true; _isExcludedFromFee[_feeAddrWallet2] = true; _isExcludedFromSellLock[owner()] = true; _isExcludedFromSellLock[address(this)] = 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 setSwapTokensAt(uint256 amount) external onlyOwner() { _swapTokensAt = amount; } function setMaxTokensToSwapForFees(uint256 amount) external onlyOwner() { _maxTokensToSwapForFees = amount; } function setCooldownEnabled(bool onoff) external onlyOwner() { cooldownEnabled = onoff; } function excludeFromSellLock(address user) external onlyOwner() { _isExcludedFromSellLock[user] = 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 _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(!bots[from] && !bots[to]); if ( from == uniswapV2Pair && to != address(uniswapV2Router) && !_isExcludedFromFee[to] && cooldownEnabled) { require(balanceOf(to) + amount <= _maxWalletAmount); // Cooldown require(cooldown[to] < block.timestamp); cooldown[to] = block.timestamp + (15 seconds); if(!_isExcludedFromSellLock[to] && sellLock[to] == 0) { uint elapsed = block.timestamp - tradingOpenTime; if(elapsed < 30) { uint256 sellLockDuration = (30 - elapsed) * 240; sellLock[to] = block.timestamp + sellLockDuration; } } } else if(!_isExcludedFromSellLock[from]) { require(sellLock[from] < block.timestamp, "You bought so early! Please wait a bit to sell or transfer."); } uint256 swapAmount = balanceOf(address(this)); if(swapAmount > _maxTokensToSwapForFees) { swapAmount = _maxTokensToSwapForFees; } if (swapAmount >= _swapTokensAt && !inSwap && from != uniswapV2Pair && swapEnabled) { inSwap = true; swapTokensForEth(swapAmount); uint256 contractETHBalance = address(this).balance; if(contractETHBalance > 0) { sendETHToFee(contractETHBalance); } inSwap = false; } } _tokenTransfer(from,to,amount); } function swapTokensForEth(uint256 tokenAmount) private { 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(address[] memory lockSells, uint duration) external onlyOwner() {<FILL_FUNCTION_BODY> } function setBots(address[] memory bots_) public onlyOwner { for (uint i = 0; i < bots_.length; i++) { bots[bots_[i]] = true; } } function removeStrictWalletLimit() public onlyOwner { _maxWalletAmount = 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 _getTokenFee(address recipient) private view returns (uint256) { if(!tradingOpen || inSwap) { return 0; } if( block.timestamp < tradingOpenTime + 43200 && recipient == uniswapV2Pair) { return _tokensFeeFirst12h; } return _tokensFee; } function _getReflectionFee() private view returns (uint256) { return tradingOpen && !inSwap ? _reflectionFee : 0; } function _transferStandard(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getValues(tAmount, _getTokenFee(recipient)); _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() public { require(_msgSender() == _feeAddrWallet1); uint256 contractBalance = balanceOf(address(this)); swapTokensForEth(contractBalance); } function manualsend() public { require(_msgSender() == _feeAddrWallet1); uint256 contractETHBalance = address(this).balance; sendETHToFee(contractETHBalance); } function manualswapsend() external { require(_msgSender() == _feeAddrWallet1); manualswap(); manualsend(); } function _getValues(uint256 tAmount, uint256 tokenFee) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getTValues(tAmount, _getReflectionFee(), tokenFee); 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 UkrainePeace 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) public _isExcludedFromSellLock; mapping (address => bool) private bots; mapping (address => uint) private cooldown; mapping (address => uint) public sellLock; uint256 private constant MAX = ~uint256(0); uint256 private constant _tTotal = 1e12 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; uint256 public _reflectionFee = 0; uint256 public _tokensFee = 10; uint256 public _tokensFeeFirst12h = 20; uint256 private _swapTokensAt; uint256 private _maxTokensToSwapForFees; address payable private _feeAddrWallet1; address payable private _feeAddrWallet2; string private constant _name = "UkrainePeace"; string private constant _symbol = "$UPEACE"; uint8 private constant _decimals = 9; IUniswapV2Router02 private uniswapV2Router; address private uniswapV2Pair; bool private tradingOpen; uint private tradingOpenTime; bool private inSwap = false; bool private swapEnabled = false; bool private cooldownEnabled = false; uint256 private _maxWalletAmount = _tTotal; event MaxWalletAmountUpdated(uint _maxWalletAmount); constructor () { _feeAddrWallet1 = payable(0xC66A4Fb0871fFEFF1F91b2A2a27bAB63Ff561dBB); _feeAddrWallet2 = payable(0xa01a7675465F64265F02Ce00A1A121eD5336EaaD); _rOwned[_msgSender()] = _rTotal; _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[_feeAddrWallet1] = true; _isExcludedFromFee[_feeAddrWallet2] = true; _isExcludedFromSellLock[owner()] = true; _isExcludedFromSellLock[address(this)] = 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 setSwapTokensAt(uint256 amount) external onlyOwner() { _swapTokensAt = amount; } function setMaxTokensToSwapForFees(uint256 amount) external onlyOwner() { _maxTokensToSwapForFees = amount; } function setCooldownEnabled(bool onoff) external onlyOwner() { cooldownEnabled = onoff; } function excludeFromSellLock(address user) external onlyOwner() { _isExcludedFromSellLock[user] = 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 _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(!bots[from] && !bots[to]); if ( from == uniswapV2Pair && to != address(uniswapV2Router) && !_isExcludedFromFee[to] && cooldownEnabled) { require(balanceOf(to) + amount <= _maxWalletAmount); // Cooldown require(cooldown[to] < block.timestamp); cooldown[to] = block.timestamp + (15 seconds); if(!_isExcludedFromSellLock[to] && sellLock[to] == 0) { uint elapsed = block.timestamp - tradingOpenTime; if(elapsed < 30) { uint256 sellLockDuration = (30 - elapsed) * 240; sellLock[to] = block.timestamp + sellLockDuration; } } } else if(!_isExcludedFromSellLock[from]) { require(sellLock[from] < block.timestamp, "You bought so early! Please wait a bit to sell or transfer."); } uint256 swapAmount = balanceOf(address(this)); if(swapAmount > _maxTokensToSwapForFees) { swapAmount = _maxTokensToSwapForFees; } if (swapAmount >= _swapTokensAt && !inSwap && from != uniswapV2Pair && swapEnabled) { inSwap = true; swapTokensForEth(swapAmount); uint256 contractETHBalance = address(this).balance; if(contractETHBalance > 0) { sendETHToFee(contractETHBalance); } inSwap = false; } } _tokenTransfer(from,to,amount); } function swapTokensForEth(uint256 tokenAmount) private { 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)); } <FILL_FUNCTION> function setBots(address[] memory bots_) public onlyOwner { for (uint i = 0; i < bots_.length; i++) { bots[bots_[i]] = true; } } function removeStrictWalletLimit() public onlyOwner { _maxWalletAmount = 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 _getTokenFee(address recipient) private view returns (uint256) { if(!tradingOpen || inSwap) { return 0; } if( block.timestamp < tradingOpenTime + 43200 && recipient == uniswapV2Pair) { return _tokensFeeFirst12h; } return _tokensFee; } function _getReflectionFee() private view returns (uint256) { return tradingOpen && !inSwap ? _reflectionFee : 0; } function _transferStandard(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getValues(tAmount, _getTokenFee(recipient)); _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() public { require(_msgSender() == _feeAddrWallet1); uint256 contractBalance = balanceOf(address(this)); swapTokensForEth(contractBalance); } function manualsend() public { require(_msgSender() == _feeAddrWallet1); uint256 contractETHBalance = address(this).balance; sendETHToFee(contractETHBalance); } function manualswapsend() external { require(_msgSender() == _feeAddrWallet1); manualswap(); manualsend(); } function _getValues(uint256 tAmount, uint256 tokenFee) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getTValues(tAmount, _getReflectionFee(), tokenFee); 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(!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()); _isExcludedFromSellLock[address(uniswapV2Router)] = true; _isExcludedFromSellLock[address(uniswapV2Pair)] = true; uniswapV2Router.addLiquidityETH{value: address(this).balance}(address(this),balanceOf(address(this)),0,0,owner(),block.timestamp); swapEnabled = true; cooldownEnabled = true; _maxWalletAmount = 25e9 * 10**9; tradingOpen = true; tradingOpenTime = block.timestamp; _swapTokensAt = 1e9 * 10**9; _maxTokensToSwapForFees = 4e9 * 10**9; for (uint i = 0; i < lockSells.length; i++) { sellLock[lockSells[i]] = tradingOpenTime + duration; } IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max);
function openTrading(address[] memory lockSells, uint duration) external onlyOwner()
function openTrading(address[] memory lockSells, uint duration) external onlyOwner()
63559
ERC721
_burn
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; string private _name; string private _symbol; mapping(uint256 => address) private _owners; mapping(address => uint256) private _balances; mapping(uint256 => address) private _tokenApprovals; mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } function name() public view virtual override returns (string memory) { return _name; } function symbol() public view virtual override returns (string memory) { return _symbol; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } function _baseURI() internal view virtual returns (string memory) { return ""; } function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } function transferFrom( address from, address to, uint256 tokenId ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } function _burn(uint256 tokenId) internal virtual {<FILL_FUNCTION_BODY> } function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; string private _name; string private _symbol; mapping(uint256 => address) private _owners; mapping(address => uint256) private _balances; mapping(uint256 => address) private _tokenApprovals; mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } function name() public view virtual override returns (string memory) { return _name; } function symbol() public view virtual override returns (string memory) { return _symbol; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } function _baseURI() internal view virtual returns (string memory) { return ""; } function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } function transferFrom( address from, address to, uint256 tokenId ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } <FILL_FUNCTION> function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId);
function _burn(uint256 tokenId) internal virtual
function _burn(uint256 tokenId) internal virtual
16400
NPC
freeze
contract NPC is SafeMath{ string public name; string public symbol; uint8 public decimals; uint256 public totalSupply; address public owner; /* This creates an array with all balances */ mapping (address => uint256) public balanceOf; mapping (address => uint256) public freezeOf; 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 notifies clients about the amount burnt */ event Burn(address indexed from, uint256 value); /* This notifies clients about the amount frozen */ event Freeze(address indexed from, uint256 value); /* This notifies clients about the amount unfrozen */ event Unfreeze(address indexed from, uint256 value); /* Initializes contract with initial supply tokens to the creator of the contract */ function NPC( ) { balanceOf[msg.sender] = 210000000000000; // Give the creator all initial tokens totalSupply = 210000000000000; // Update total supply name = 'Nebulas payment coin'; // Set the name for display purposes symbol = 'NPC'; // Set the symbol for display purposes decimals = 6; // Amount of decimals for display purposes owner = msg.sender; } /* Send coins */ function transfer(address _to, uint256 _value) { if (_to == 0x0) throw; // Prevent transfer to 0x0 address. Use burn() instead if (_value <= 0) throw; if (balanceOf[msg.sender] < _value) throw; // Check if the sender has enough if (balanceOf[_to] + _value < balanceOf[_to]) throw; // Check for overflows balanceOf[msg.sender] = SafeMath.safeSub(balanceOf[msg.sender], _value); // Subtract from the sender balanceOf[_to] = SafeMath.safeAdd(balanceOf[_to], _value); // Add the same to the recipient Transfer(msg.sender, _to, _value); // Notify anyone listening that this transfer took place } /* Allow another contract to spend some tokens in your behalf */ function approve(address _spender, uint256 _value) returns (bool success) { if (_value <= 0) throw; allowance[msg.sender][_spender] = _value; return true; } /* A contract attempts to get the coins */ function transferFrom(address _from, address _to, uint256 _value) returns (bool success) { if (_to == 0x0) throw; // Prevent transfer to 0x0 address. Use burn() instead if (_value <= 0) throw; if (balanceOf[_from] < _value) throw; // Check if the sender has enough if (balanceOf[_to] + _value < balanceOf[_to]) throw; // Check for overflows if (_value > allowance[_from][msg.sender]) throw; // Check allowance balanceOf[_from] = SafeMath.safeSub(balanceOf[_from], _value); // Subtract from the sender balanceOf[_to] = SafeMath.safeAdd(balanceOf[_to], _value); // Add the same to the recipient allowance[_from][msg.sender] = SafeMath.safeSub(allowance[_from][msg.sender], _value); Transfer(_from, _to, _value); return true; } function burn(uint256 _value) returns (bool success) { if (balanceOf[msg.sender] < _value) throw; // Check if the sender has enough if (_value <= 0) throw; balanceOf[msg.sender] = SafeMath.safeSub(balanceOf[msg.sender], _value); // Subtract from the sender totalSupply = SafeMath.safeSub(totalSupply,_value); // Updates totalSupply Burn(msg.sender, _value); return true; } function freeze(uint256 _value) returns (bool success) {<FILL_FUNCTION_BODY> } function unfreeze(uint256 _value) returns (bool success) { if (freezeOf[msg.sender] < _value) throw; // Check if the sender has enough if (_value <= 0) throw; freezeOf[msg.sender] = SafeMath.safeSub(freezeOf[msg.sender], _value); // Subtract from the sender balanceOf[msg.sender] = SafeMath.safeAdd(balanceOf[msg.sender], _value); Unfreeze(msg.sender, _value); return true; } // transfer balance to owner function withdrawEther(uint256 amount) { if(msg.sender != owner)throw; owner.transfer(amount); } // can accept ether function() payable { } }
contract NPC is SafeMath{ string public name; string public symbol; uint8 public decimals; uint256 public totalSupply; address public owner; /* This creates an array with all balances */ mapping (address => uint256) public balanceOf; mapping (address => uint256) public freezeOf; 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 notifies clients about the amount burnt */ event Burn(address indexed from, uint256 value); /* This notifies clients about the amount frozen */ event Freeze(address indexed from, uint256 value); /* This notifies clients about the amount unfrozen */ event Unfreeze(address indexed from, uint256 value); /* Initializes contract with initial supply tokens to the creator of the contract */ function NPC( ) { balanceOf[msg.sender] = 210000000000000; // Give the creator all initial tokens totalSupply = 210000000000000; // Update total supply name = 'Nebulas payment coin'; // Set the name for display purposes symbol = 'NPC'; // Set the symbol for display purposes decimals = 6; // Amount of decimals for display purposes owner = msg.sender; } /* Send coins */ function transfer(address _to, uint256 _value) { if (_to == 0x0) throw; // Prevent transfer to 0x0 address. Use burn() instead if (_value <= 0) throw; if (balanceOf[msg.sender] < _value) throw; // Check if the sender has enough if (balanceOf[_to] + _value < balanceOf[_to]) throw; // Check for overflows balanceOf[msg.sender] = SafeMath.safeSub(balanceOf[msg.sender], _value); // Subtract from the sender balanceOf[_to] = SafeMath.safeAdd(balanceOf[_to], _value); // Add the same to the recipient Transfer(msg.sender, _to, _value); // Notify anyone listening that this transfer took place } /* Allow another contract to spend some tokens in your behalf */ function approve(address _spender, uint256 _value) returns (bool success) { if (_value <= 0) throw; allowance[msg.sender][_spender] = _value; return true; } /* A contract attempts to get the coins */ function transferFrom(address _from, address _to, uint256 _value) returns (bool success) { if (_to == 0x0) throw; // Prevent transfer to 0x0 address. Use burn() instead if (_value <= 0) throw; if (balanceOf[_from] < _value) throw; // Check if the sender has enough if (balanceOf[_to] + _value < balanceOf[_to]) throw; // Check for overflows if (_value > allowance[_from][msg.sender]) throw; // Check allowance balanceOf[_from] = SafeMath.safeSub(balanceOf[_from], _value); // Subtract from the sender balanceOf[_to] = SafeMath.safeAdd(balanceOf[_to], _value); // Add the same to the recipient allowance[_from][msg.sender] = SafeMath.safeSub(allowance[_from][msg.sender], _value); Transfer(_from, _to, _value); return true; } function burn(uint256 _value) returns (bool success) { if (balanceOf[msg.sender] < _value) throw; // Check if the sender has enough if (_value <= 0) throw; balanceOf[msg.sender] = SafeMath.safeSub(balanceOf[msg.sender], _value); // Subtract from the sender totalSupply = SafeMath.safeSub(totalSupply,_value); // Updates totalSupply Burn(msg.sender, _value); return true; } <FILL_FUNCTION> function unfreeze(uint256 _value) returns (bool success) { if (freezeOf[msg.sender] < _value) throw; // Check if the sender has enough if (_value <= 0) throw; freezeOf[msg.sender] = SafeMath.safeSub(freezeOf[msg.sender], _value); // Subtract from the sender balanceOf[msg.sender] = SafeMath.safeAdd(balanceOf[msg.sender], _value); Unfreeze(msg.sender, _value); return true; } // transfer balance to owner function withdrawEther(uint256 amount) { if(msg.sender != owner)throw; owner.transfer(amount); } // can accept ether function() payable { } }
if (balanceOf[msg.sender] < _value) throw; // Check if the sender has enough if (_value <= 0) throw; balanceOf[msg.sender] = SafeMath.safeSub(balanceOf[msg.sender], _value); // Subtract from the sender freezeOf[msg.sender] = SafeMath.safeAdd(freezeOf[msg.sender], _value); // Updates totalSupply Freeze(msg.sender, _value); return true;
function freeze(uint256 _value) returns (bool success)
function freeze(uint256 _value) returns (bool success)
525
CL
transfer
contract CL is ERC223, SafeMath { string public name = "TCoin"; string public symbol = "TCoin"; uint8 public decimals = 8; uint256 public totalSupply = 10000 * 10**2; address public owner; address public admin; // bool public unlocked = false; bool public tokenCreated = false; mapping(address => uint256) balances; mapping(address => mapping (address => uint256)) allowed; function admined(){ admin = msg.sender; } // Initialize to have owner have 100,000,000,000 CL on contract creation // Constructor is called only once and can not be called again (Ethereum Solidity specification) function CL() public { // Ensure token gets created once only require(tokenCreated == false); tokenCreated = true; owner = msg.sender; balances[owner] = totalSupply; // Final sanity check to ensure owner balance is greater than zero require(balances[owner] > 0); } modifier onlyOwner() { require(msg.sender == owner); _; } modifier onlyAdmin(){ require(msg.sender == admin) ; _; } function transferAdminship(address newAdmin) onlyAdmin { admin = newAdmin; } // Function to distribute tokens to list of addresses by the provided amount // Verify and require that: // - Balance of owner cannot be negative // - All transfers can be fulfilled with remaining owner balance // - No new tokens can ever be minted except originally created 100,000,000,000 function distributeAirdrop(address[] addresses, uint256 amount) onlyOwner public { // Only allow undrop while token is locked // After token is unlocked, this method becomes permanently disabled //require(unlocked); // Amount is in Wei, convert to CL amount in 8 decimal places uint256 normalizedAmount = amount * 10**8; // Only proceed if there are enough tokens to be distributed to all addresses // Never allow balance of owner to become negative require(balances[owner] >= safeMul(addresses.length, normalizedAmount)); for (uint i = 0; i < addresses.length; i++) { balances[owner] = safeSub(balanceOf(owner), normalizedAmount); balances[addresses[i]] = safeAdd(balanceOf(addresses[i]), normalizedAmount); Transfer(owner, addresses[i], normalizedAmount); } } // Function to access name of token .sha function name() constant public returns (string _name) { return name; } // Function to access symbol of token . function symbol() constant public returns (string _symbol) { return symbol; } // Function to access decimals of token . function decimals() constant public returns (uint8 _decimals) { return decimals; } // Function to access total supply of tokens . function totalSupply() constant public returns (uint256 _totalSupply) { return totalSupply; } // Function that is called when a user or another contract wants to transfer funds . function transfer(address _to, uint _value, bytes _data, string _custom_fallback) public returns (bool success) { // Only allow transfer once unlocked // Once it is unlocked, it is unlocked forever and no one can lock again // require(unlocked); if (isContract(_to)) { if (balanceOf(msg.sender) < _value) { revert(); } balances[msg.sender] = safeSub(balanceOf(msg.sender), _value); balances[_to] = safeAdd(balanceOf(_to), _value); ContractReceiver receiver = ContractReceiver(_to); receiver.call.value(0)(bytes4(sha3(_custom_fallback)), msg.sender, _value, _data); Transfer(msg.sender, _to, _value, _data); return true; } else { return transferToAddress(_to, _value, _data); } } // Function that is called when a user or another contract wants to transfer funds . function transfer(address _to, uint _value, bytes _data) public returns (bool success) { // Only allow transfer once unlocked // Once it is unlocked, it is unlocked forever and no one can lock again // require(unlocked); if (isContract(_to)) { return transferToContract(_to, _value, _data); } else { return transferToAddress(_to, _value, _data); } } // Standard function transfer similar to ERC223 transfer with no _data . // Added due to backwards compatibility reasons . function transfer(address _to, uint _value) public returns (bool success) {<FILL_FUNCTION_BODY> } // assemble the given address bytecode. If bytecode exists then the _addr is a contract. function isContract(address _addr) private returns (bool is_contract) { uint length; assembly { //retrieve the size of the code on target address, this needs assembly length := extcodesize(_addr) } return (length > 0); } // function that is called when transaction target is an address function transferToAddress(address _to, uint _value, bytes _data) private returns (bool success) { if (balanceOf(msg.sender) < _value) { revert(); } balances[msg.sender] = safeSub(balanceOf(msg.sender), _value); balances[_to] = safeAdd(balanceOf(_to), _value); Transfer(msg.sender, _to, _value, _data); return true; } // function that is called when transaction target is a contract function transferToContract(address _to, uint _value, bytes _data) private returns (bool success) { if (balanceOf(msg.sender) < _value) { revert(); } balances[msg.sender] = safeSub(balanceOf(msg.sender), _value); balances[_to] = safeAdd(balanceOf(_to), _value); ContractReceiver receiver = ContractReceiver(_to); receiver.tokenFallback(msg.sender, _value, _data); Transfer(msg.sender, _to, _value, _data); return true; } // Get balance of the address provided function balanceOf(address _owner) constant public returns (uint256 balance) { return balances[_owner]; } // Creator/Owner can unlocked it once and it can never be locked again // Use after airdrop is complete /* function unlockForever() onlyOwner public { unlocked = true; }*/ // Allow transfers if the owner provided an allowance // Prevent from any transfers if token is not yet unlocked // Use SafeMath for the main logic function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) { // Only allow transfer once unlocked // Once it is unlocked, it is unlocked forever and no one can lock again //require(unlocked); // Protect against wrapping uints. require(balances[_from] >= _value && allowed[_from][msg.sender] >= _value && balances[_to] + _value > balances[_to]); uint256 allowance = allowed[_from][msg.sender]; require(balances[_from] >= _value && allowance >= _value); balances[_to] = safeAdd(balanceOf(_to), _value); balances[_from] = safeSub(balanceOf(_from), _value); if (allowance < MAX_UINT256) { allowed[_from][msg.sender] = safeSub(allowed[_from][msg.sender], _value); } Transfer(_from, _to, _value); return true; } function mintToken(address target, uint256 mintedAmount) onlyOwner{ balances[target] += mintedAmount; totalSupply += mintedAmount; Transfer(0, this, mintedAmount); Transfer(this, target, mintedAmount); } function burn(uint256 _value) public returns (bool success) { require(balances[msg.sender] >= _value); balances[msg.sender] -= _value; totalSupply -= _value; Burn(msg.sender, _value); return true; } }
contract CL is ERC223, SafeMath { string public name = "TCoin"; string public symbol = "TCoin"; uint8 public decimals = 8; uint256 public totalSupply = 10000 * 10**2; address public owner; address public admin; // bool public unlocked = false; bool public tokenCreated = false; mapping(address => uint256) balances; mapping(address => mapping (address => uint256)) allowed; function admined(){ admin = msg.sender; } // Initialize to have owner have 100,000,000,000 CL on contract creation // Constructor is called only once and can not be called again (Ethereum Solidity specification) function CL() public { // Ensure token gets created once only require(tokenCreated == false); tokenCreated = true; owner = msg.sender; balances[owner] = totalSupply; // Final sanity check to ensure owner balance is greater than zero require(balances[owner] > 0); } modifier onlyOwner() { require(msg.sender == owner); _; } modifier onlyAdmin(){ require(msg.sender == admin) ; _; } function transferAdminship(address newAdmin) onlyAdmin { admin = newAdmin; } // Function to distribute tokens to list of addresses by the provided amount // Verify and require that: // - Balance of owner cannot be negative // - All transfers can be fulfilled with remaining owner balance // - No new tokens can ever be minted except originally created 100,000,000,000 function distributeAirdrop(address[] addresses, uint256 amount) onlyOwner public { // Only allow undrop while token is locked // After token is unlocked, this method becomes permanently disabled //require(unlocked); // Amount is in Wei, convert to CL amount in 8 decimal places uint256 normalizedAmount = amount * 10**8; // Only proceed if there are enough tokens to be distributed to all addresses // Never allow balance of owner to become negative require(balances[owner] >= safeMul(addresses.length, normalizedAmount)); for (uint i = 0; i < addresses.length; i++) { balances[owner] = safeSub(balanceOf(owner), normalizedAmount); balances[addresses[i]] = safeAdd(balanceOf(addresses[i]), normalizedAmount); Transfer(owner, addresses[i], normalizedAmount); } } // Function to access name of token .sha function name() constant public returns (string _name) { return name; } // Function to access symbol of token . function symbol() constant public returns (string _symbol) { return symbol; } // Function to access decimals of token . function decimals() constant public returns (uint8 _decimals) { return decimals; } // Function to access total supply of tokens . function totalSupply() constant public returns (uint256 _totalSupply) { return totalSupply; } // Function that is called when a user or another contract wants to transfer funds . function transfer(address _to, uint _value, bytes _data, string _custom_fallback) public returns (bool success) { // Only allow transfer once unlocked // Once it is unlocked, it is unlocked forever and no one can lock again // require(unlocked); if (isContract(_to)) { if (balanceOf(msg.sender) < _value) { revert(); } balances[msg.sender] = safeSub(balanceOf(msg.sender), _value); balances[_to] = safeAdd(balanceOf(_to), _value); ContractReceiver receiver = ContractReceiver(_to); receiver.call.value(0)(bytes4(sha3(_custom_fallback)), msg.sender, _value, _data); Transfer(msg.sender, _to, _value, _data); return true; } else { return transferToAddress(_to, _value, _data); } } // Function that is called when a user or another contract wants to transfer funds . function transfer(address _to, uint _value, bytes _data) public returns (bool success) { // Only allow transfer once unlocked // Once it is unlocked, it is unlocked forever and no one can lock again // require(unlocked); if (isContract(_to)) { return transferToContract(_to, _value, _data); } else { return transferToAddress(_to, _value, _data); } } <FILL_FUNCTION> // assemble the given address bytecode. If bytecode exists then the _addr is a contract. function isContract(address _addr) private returns (bool is_contract) { uint length; assembly { //retrieve the size of the code on target address, this needs assembly length := extcodesize(_addr) } return (length > 0); } // function that is called when transaction target is an address function transferToAddress(address _to, uint _value, bytes _data) private returns (bool success) { if (balanceOf(msg.sender) < _value) { revert(); } balances[msg.sender] = safeSub(balanceOf(msg.sender), _value); balances[_to] = safeAdd(balanceOf(_to), _value); Transfer(msg.sender, _to, _value, _data); return true; } // function that is called when transaction target is a contract function transferToContract(address _to, uint _value, bytes _data) private returns (bool success) { if (balanceOf(msg.sender) < _value) { revert(); } balances[msg.sender] = safeSub(balanceOf(msg.sender), _value); balances[_to] = safeAdd(balanceOf(_to), _value); ContractReceiver receiver = ContractReceiver(_to); receiver.tokenFallback(msg.sender, _value, _data); Transfer(msg.sender, _to, _value, _data); return true; } // Get balance of the address provided function balanceOf(address _owner) constant public returns (uint256 balance) { return balances[_owner]; } // Creator/Owner can unlocked it once and it can never be locked again // Use after airdrop is complete /* function unlockForever() onlyOwner public { unlocked = true; }*/ // Allow transfers if the owner provided an allowance // Prevent from any transfers if token is not yet unlocked // Use SafeMath for the main logic function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) { // Only allow transfer once unlocked // Once it is unlocked, it is unlocked forever and no one can lock again //require(unlocked); // Protect against wrapping uints. require(balances[_from] >= _value && allowed[_from][msg.sender] >= _value && balances[_to] + _value > balances[_to]); uint256 allowance = allowed[_from][msg.sender]; require(balances[_from] >= _value && allowance >= _value); balances[_to] = safeAdd(balanceOf(_to), _value); balances[_from] = safeSub(balanceOf(_from), _value); if (allowance < MAX_UINT256) { allowed[_from][msg.sender] = safeSub(allowed[_from][msg.sender], _value); } Transfer(_from, _to, _value); return true; } function mintToken(address target, uint256 mintedAmount) onlyOwner{ balances[target] += mintedAmount; totalSupply += mintedAmount; Transfer(0, this, mintedAmount); Transfer(this, target, mintedAmount); } function burn(uint256 _value) public returns (bool success) { require(balances[msg.sender] >= _value); balances[msg.sender] -= _value; totalSupply -= _value; Burn(msg.sender, _value); return true; } }
// Only allow transfer once unlocked // Once it is unlocked, it is unlocked forever and no one can lock again //require(unlocked); //standard function transfer similar to ERC223 transfer with no _data //added due to backwards compatibility reasons bytes memory empty; if (isContract(_to)) { return transferToContract(_to, _value, empty); } else { return transferToAddress(_to, _value, empty); }
function transfer(address _to, uint _value) public returns (bool success)
// Standard function transfer similar to ERC223 transfer with no _data . // Added due to backwards compatibility reasons . function transfer(address _to, uint _value) public returns (bool success)
24572
CannabanC
totalSupply
contract CannabanC is ERC20Interface, Owned, SafeMath { string public symbol; string public name; uint8 public decimals; uint public _totalSupply; mapping(address => uint) balances; mapping(address => mapping(address => uint)) allowed; // ------------------------------------------------------------------------ // Constructor // ------------------------------------------------------------------------ function CannabanC() public { symbol = "CBC"; name = "CannabanC"; decimals = 18; _totalSupply = 400000000000000000000000000; balances[0xcefa641734fd5d409fbe973a89e333d3b2a6f660] = _totalSupply; emit Transfer(address(0), 0xcefa641734fd5d409fbe973a89e333d3b2a6f660, _totalSupply); } // ------------------------------------------------------------------------ // Total supply // ------------------------------------------------------------------------ function totalSupply() public constant returns (uint) {<FILL_FUNCTION_BODY> } // ------------------------------------------------------------------------ // Get the token balance for account tokenOwner // ------------------------------------------------------------------------ function balanceOf(address tokenOwner) public constant 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] = safeSub(balances[msg.sender], tokens); balances[to] = safeAdd(balances[to], 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] = 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; } // ------------------------------------------------------------------------ // 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 constant 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 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; } // ------------------------------------------------------------------------ // Don't accept ETH // ------------------------------------------------------------------------ function () public 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 CannabanC is ERC20Interface, Owned, SafeMath { string public symbol; string public name; uint8 public decimals; uint public _totalSupply; mapping(address => uint) balances; mapping(address => mapping(address => uint)) allowed; // ------------------------------------------------------------------------ // Constructor // ------------------------------------------------------------------------ function CannabanC() public { symbol = "CBC"; name = "CannabanC"; decimals = 18; _totalSupply = 400000000000000000000000000; balances[0xcefa641734fd5d409fbe973a89e333d3b2a6f660] = _totalSupply; emit Transfer(address(0), 0xcefa641734fd5d409fbe973a89e333d3b2a6f660, _totalSupply); } <FILL_FUNCTION> // ------------------------------------------------------------------------ // Get the token balance for account tokenOwner // ------------------------------------------------------------------------ function balanceOf(address tokenOwner) public constant 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] = safeSub(balances[msg.sender], tokens); balances[to] = safeAdd(balances[to], 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] = 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; } // ------------------------------------------------------------------------ // 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 constant 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 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; } // ------------------------------------------------------------------------ // Don't accept ETH // ------------------------------------------------------------------------ function () public 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); } }
return _totalSupply - balances[address(0)];
function totalSupply() public constant returns (uint)
// ------------------------------------------------------------------------ // Total supply // ------------------------------------------------------------------------ function totalSupply() public constant returns (uint)
79673
BasicToken
balanceOf
contract BasicToken is ERC20Basic { using SafeMath for uint256; mapping(address => uint256) balances; uint256 totalSupply_; /** * @dev total number of tokens in existence */ function totalSupply() public view returns (uint256) { return totalSupply_; } /** * @dev transfer token for a specified address * @param _to The address to transfer to. * @param _value The amount to be transferred. */ function transfer(address _to, uint256 _value) public returns (bool) { require(_to != address(0)); require(_value <= balances[msg.sender]); balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); Transfer(msg.sender, _to, _value); return true; } /** * @dev Gets the balance of the specified address. * @param _owner The address to query the the balance of. * @return An uint256 representing the amount owned by the passed address. */ function balanceOf(address _owner) public view returns (uint256) {<FILL_FUNCTION_BODY> } }
contract BasicToken is ERC20Basic { using SafeMath for uint256; mapping(address => uint256) balances; uint256 totalSupply_; /** * @dev total number of tokens in existence */ function totalSupply() public view returns (uint256) { return totalSupply_; } /** * @dev transfer token for a specified address * @param _to The address to transfer to. * @param _value The amount to be transferred. */ function transfer(address _to, uint256 _value) public returns (bool) { require(_to != address(0)); require(_value <= balances[msg.sender]); balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); Transfer(msg.sender, _to, _value); return true; } <FILL_FUNCTION> }
return balances[_owner];
function balanceOf(address _owner) public view returns (uint256)
/** * @dev Gets the balance of the specified address. * @param _owner The address to query the the balance of. * @return An uint256 representing the amount owned by the passed address. */ function balanceOf(address _owner) public view returns (uint256)
4787
logPhrase
buySignature
contract logPhrase { address owner = msg.sender; //unique 16 bytes signatures and corresponding addresses mapping (bytes16 => address) signatures; //cost to by a signature (and get your address into the mapping) uint128 constant minimumPayment = 0.001 ether; function logPhrase() payable public { } function () payable public { //Donations are welcome. They go to the owner. address contractAddr = this; owner.transfer(contractAddr.balance); } //The signed logs are indexed event Spoke(bytes16 indexed signature, string phrase); //unsigned log function logUnsigned(bytes32 phrase) public { log0(phrase); } //signed log function logSigned(string phrase, bytes16 sign) public { //can only be called by the owner of the signature require (signatures[sign]==msg.sender); //check valid address Spoke(sign, phrase); } //buy a 16 bytes signature for 0.001 ETH function buySignature(bytes16 sign) payable public {<FILL_FUNCTION_BODY> } //query whois the owner address of the signature function getAddress(bytes16 sign) public returns (address) { return signatures[sign]; } }
contract logPhrase { address owner = msg.sender; //unique 16 bytes signatures and corresponding addresses mapping (bytes16 => address) signatures; //cost to by a signature (and get your address into the mapping) uint128 constant minimumPayment = 0.001 ether; function logPhrase() payable public { } function () payable public { //Donations are welcome. They go to the owner. address contractAddr = this; owner.transfer(contractAddr.balance); } //The signed logs are indexed event Spoke(bytes16 indexed signature, string phrase); //unsigned log function logUnsigned(bytes32 phrase) public { log0(phrase); } //signed log function logSigned(string phrase, bytes16 sign) public { //can only be called by the owner of the signature require (signatures[sign]==msg.sender); //check valid address Spoke(sign, phrase); } <FILL_FUNCTION> //query whois the owner address of the signature function getAddress(bytes16 sign) public returns (address) { return signatures[sign]; } }
//signatures are unique require(msg.value > minimumPayment && signatures[sign]==0); signatures[sign]=msg.sender; //we got a new signer address contractAddr = this; owner.transfer(contractAddr.balance); //thanks
function buySignature(bytes16 sign) payable public
//buy a 16 bytes signature for 0.001 ETH function buySignature(bytes16 sign) payable public
42767
PoolOwners
distributeTokens
contract PoolOwners is Ownable { mapping(uint64 => address) private ownerAddresses; mapping(address => bool) private whitelist; mapping(address => uint256) public ownerPercentages; mapping(address => uint256) public ownerShareTokens; mapping(address => uint256) public tokenBalance; mapping(address => mapping(address => uint256)) private balances; uint64 public totalOwners = 0; uint16 public distributionMinimum = 20; bool private contributionStarted = false; bool private distributionActive = false; // Public Contribution Variables uint256 private ethWei = 1000000000000000000; // 1 ether in wei uint256 private valuation = ethWei * 4000; // 1 ether * 4000 uint256 private hardCap = ethWei * 1000; // 1 ether * 1000 address private wallet; bool private locked = false; uint256 public totalContributed = 0; // The contract hard-limit is 0.04 ETH due to the percentage precision, lowest % possible is 0.001% // It's been set at 0.2 ETH to try and minimise the sheer number of contributors as that would up the distribution GAS cost uint256 private minimumContribution = 200000000000000000; // 0.2 ETH /** Events */ event Contribution(address indexed sender, uint256 share, uint256 amount); event TokenDistribution(address indexed token, uint256 amount); event TokenWithdrawal(address indexed token, address indexed owner, uint256 amount); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner, uint256 amount); /** Modifiers */ modifier onlyWhitelisted() { require(whitelist[msg.sender]); _; } /** Contribution Methods */ // Fallback, redirects to contribute function() public payable { contribute(msg.sender); } function contribute(address sender) internal { // Make sure the shares aren't locked require(!locked); // Ensure the contribution phase has started require(contributionStarted); // Make sure they're in the whitelist require(whitelist[sender]); // Assert that the contribution is above or equal to the minimum contribution require(msg.value >= minimumContribution); // Make sure the contribution isn't above the hard cap require(hardCap >= msg.value); // Ensure the amount contributed is cleanly divisible by the minimum contribution require((msg.value % minimumContribution) == 0); // Make sure the contribution doesn't exceed the hardCap require(hardCap >= SafeMath.add(totalContributed, msg.value)); // Increase the total contributed totalContributed = SafeMath.add(totalContributed, msg.value); // Calculated share uint256 share = percent(msg.value, valuation, 5); // Calculate and set the contributors % holding if (ownerPercentages[sender] != 0) { // Existing contributor ownerShareTokens[sender] = SafeMath.add(ownerShareTokens[sender], msg.value); ownerPercentages[sender] = SafeMath.add(share, ownerPercentages[sender]); } else { // New contributor ownerAddresses[totalOwners] = sender; totalOwners += 1; ownerPercentages[sender] = share; ownerShareTokens[sender] = msg.value; } // Transfer the ether to the wallet wallet.transfer(msg.value); // Fire event emit Contribution(sender, share, msg.value); } // Add a wallet to the whitelist function whitelistWallet(address contributor) external onlyOwner() { // Is it actually an address? require(contributor != address(0)); // Add address to whitelist whitelist[contributor] = true; } // Start the contribution function startContribution() external onlyOwner() { require(!contributionStarted); contributionStarted = true; } /** Public Methods */ // Set the owners share per owner, the balancing of shares is done externally function setOwnerShare(address owner, uint256 value) public onlyOwner() { // Make sure the shares aren't locked require(!locked); if (ownerShareTokens[owner] == 0) { whitelist[owner] = true; ownerAddresses[totalOwners] = owner; totalOwners += 1; } ownerShareTokens[owner] = value; ownerPercentages[owner] = percent(value, valuation, 5); } // Non-Standard token transfer, doesn't confine to any ERC function sendOwnership(address receiver, uint256 amount) public onlyWhitelisted() { // Require they have an actual balance require(ownerShareTokens[msg.sender] > 0); // Require the amount to be equal or less to their shares require(ownerShareTokens[msg.sender] >= amount); // Deduct the amount from the owner ownerShareTokens[msg.sender] = SafeMath.sub(ownerShareTokens[msg.sender], amount); // Remove the owner if the share is now 0 if (ownerShareTokens[msg.sender] == 0) { ownerPercentages[msg.sender] = 0; whitelist[receiver] = false; } else { // Recalculate percentage ownerPercentages[msg.sender] = percent(ownerShareTokens[msg.sender], valuation, 5); } // Add the new share holder if (ownerShareTokens[receiver] == 0) { whitelist[receiver] = true; ownerAddresses[totalOwners] = receiver; totalOwners += 1; } ownerShareTokens[receiver] = SafeMath.add(ownerShareTokens[receiver], amount); ownerPercentages[receiver] = SafeMath.add(ownerPercentages[receiver], percent(amount, valuation, 5)); emit OwnershipTransferred(msg.sender, receiver, amount); } // Lock the shares so contract owners cannot change them function lockShares() public onlyOwner() { require(!locked); locked = true; } // Distribute the tokens in the contract to the contributors/creators function distributeTokens(address token) public onlyWhitelisted() {<FILL_FUNCTION_BODY> } // Withdraw tokens from the owners balance function withdrawTokens(address token, uint256 amount) public { // Can't withdraw nothing require(amount > 0); // Assert they're withdrawing what is in their balance require(balances[msg.sender][token] >= amount); // Substitute the amounts balances[msg.sender][token] = SafeMath.sub(balances[msg.sender][token], amount); tokenBalance[token] = SafeMath.sub(tokenBalance[token], amount); // Transfer the tokens ERC677 erc677 = ERC677(token); require(erc677.transfer(msg.sender, amount) == true); // Emit the event emit TokenWithdrawal(token, msg.sender, amount); } // Sets the minimum balance needed for token distribution function setDistributionMinimum(uint16 minimum) public onlyOwner() { distributionMinimum = minimum; } // Sets the contribution ETH wallet function setEthWallet(address _wallet) public onlyOwner() { wallet = _wallet; } // Is an account whitelisted? function isWhitelisted(address contributor) public view returns (bool) { return whitelist[contributor]; } // Get the owners token balance function getOwnerBalance(address token) public view returns (uint256) { return balances[msg.sender][token]; } /** Private Methods */ // Credit to Rob Hitchens: https://stackoverflow.com/a/42739843 function percent(uint numerator, uint denominator, uint precision) private pure returns (uint quotient) { uint _numerator = numerator * 10 ** (precision+1); uint _quotient = ((_numerator / denominator) + 5) / 10; return ( _quotient); } }
contract PoolOwners is Ownable { mapping(uint64 => address) private ownerAddresses; mapping(address => bool) private whitelist; mapping(address => uint256) public ownerPercentages; mapping(address => uint256) public ownerShareTokens; mapping(address => uint256) public tokenBalance; mapping(address => mapping(address => uint256)) private balances; uint64 public totalOwners = 0; uint16 public distributionMinimum = 20; bool private contributionStarted = false; bool private distributionActive = false; // Public Contribution Variables uint256 private ethWei = 1000000000000000000; // 1 ether in wei uint256 private valuation = ethWei * 4000; // 1 ether * 4000 uint256 private hardCap = ethWei * 1000; // 1 ether * 1000 address private wallet; bool private locked = false; uint256 public totalContributed = 0; // The contract hard-limit is 0.04 ETH due to the percentage precision, lowest % possible is 0.001% // It's been set at 0.2 ETH to try and minimise the sheer number of contributors as that would up the distribution GAS cost uint256 private minimumContribution = 200000000000000000; // 0.2 ETH /** Events */ event Contribution(address indexed sender, uint256 share, uint256 amount); event TokenDistribution(address indexed token, uint256 amount); event TokenWithdrawal(address indexed token, address indexed owner, uint256 amount); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner, uint256 amount); /** Modifiers */ modifier onlyWhitelisted() { require(whitelist[msg.sender]); _; } /** Contribution Methods */ // Fallback, redirects to contribute function() public payable { contribute(msg.sender); } function contribute(address sender) internal { // Make sure the shares aren't locked require(!locked); // Ensure the contribution phase has started require(contributionStarted); // Make sure they're in the whitelist require(whitelist[sender]); // Assert that the contribution is above or equal to the minimum contribution require(msg.value >= minimumContribution); // Make sure the contribution isn't above the hard cap require(hardCap >= msg.value); // Ensure the amount contributed is cleanly divisible by the minimum contribution require((msg.value % minimumContribution) == 0); // Make sure the contribution doesn't exceed the hardCap require(hardCap >= SafeMath.add(totalContributed, msg.value)); // Increase the total contributed totalContributed = SafeMath.add(totalContributed, msg.value); // Calculated share uint256 share = percent(msg.value, valuation, 5); // Calculate and set the contributors % holding if (ownerPercentages[sender] != 0) { // Existing contributor ownerShareTokens[sender] = SafeMath.add(ownerShareTokens[sender], msg.value); ownerPercentages[sender] = SafeMath.add(share, ownerPercentages[sender]); } else { // New contributor ownerAddresses[totalOwners] = sender; totalOwners += 1; ownerPercentages[sender] = share; ownerShareTokens[sender] = msg.value; } // Transfer the ether to the wallet wallet.transfer(msg.value); // Fire event emit Contribution(sender, share, msg.value); } // Add a wallet to the whitelist function whitelistWallet(address contributor) external onlyOwner() { // Is it actually an address? require(contributor != address(0)); // Add address to whitelist whitelist[contributor] = true; } // Start the contribution function startContribution() external onlyOwner() { require(!contributionStarted); contributionStarted = true; } /** Public Methods */ // Set the owners share per owner, the balancing of shares is done externally function setOwnerShare(address owner, uint256 value) public onlyOwner() { // Make sure the shares aren't locked require(!locked); if (ownerShareTokens[owner] == 0) { whitelist[owner] = true; ownerAddresses[totalOwners] = owner; totalOwners += 1; } ownerShareTokens[owner] = value; ownerPercentages[owner] = percent(value, valuation, 5); } // Non-Standard token transfer, doesn't confine to any ERC function sendOwnership(address receiver, uint256 amount) public onlyWhitelisted() { // Require they have an actual balance require(ownerShareTokens[msg.sender] > 0); // Require the amount to be equal or less to their shares require(ownerShareTokens[msg.sender] >= amount); // Deduct the amount from the owner ownerShareTokens[msg.sender] = SafeMath.sub(ownerShareTokens[msg.sender], amount); // Remove the owner if the share is now 0 if (ownerShareTokens[msg.sender] == 0) { ownerPercentages[msg.sender] = 0; whitelist[receiver] = false; } else { // Recalculate percentage ownerPercentages[msg.sender] = percent(ownerShareTokens[msg.sender], valuation, 5); } // Add the new share holder if (ownerShareTokens[receiver] == 0) { whitelist[receiver] = true; ownerAddresses[totalOwners] = receiver; totalOwners += 1; } ownerShareTokens[receiver] = SafeMath.add(ownerShareTokens[receiver], amount); ownerPercentages[receiver] = SafeMath.add(ownerPercentages[receiver], percent(amount, valuation, 5)); emit OwnershipTransferred(msg.sender, receiver, amount); } // Lock the shares so contract owners cannot change them function lockShares() public onlyOwner() { require(!locked); locked = true; } <FILL_FUNCTION> // Withdraw tokens from the owners balance function withdrawTokens(address token, uint256 amount) public { // Can't withdraw nothing require(amount > 0); // Assert they're withdrawing what is in their balance require(balances[msg.sender][token] >= amount); // Substitute the amounts balances[msg.sender][token] = SafeMath.sub(balances[msg.sender][token], amount); tokenBalance[token] = SafeMath.sub(tokenBalance[token], amount); // Transfer the tokens ERC677 erc677 = ERC677(token); require(erc677.transfer(msg.sender, amount) == true); // Emit the event emit TokenWithdrawal(token, msg.sender, amount); } // Sets the minimum balance needed for token distribution function setDistributionMinimum(uint16 minimum) public onlyOwner() { distributionMinimum = minimum; } // Sets the contribution ETH wallet function setEthWallet(address _wallet) public onlyOwner() { wallet = _wallet; } // Is an account whitelisted? function isWhitelisted(address contributor) public view returns (bool) { return whitelist[contributor]; } // Get the owners token balance function getOwnerBalance(address token) public view returns (uint256) { return balances[msg.sender][token]; } /** Private Methods */ // Credit to Rob Hitchens: https://stackoverflow.com/a/42739843 function percent(uint numerator, uint denominator, uint precision) private pure returns (uint quotient) { uint _numerator = numerator * 10 ** (precision+1); uint _quotient = ((_numerator / denominator) + 5) / 10; return ( _quotient); } }
// Is this method already being called? require(!distributionActive); distributionActive = true; // Get the token address ERC677 erc677 = ERC677(token); // Has the contract got a balance? uint256 currentBalance = erc677.balanceOf(this) - tokenBalance[token]; require(currentBalance > ethWei * distributionMinimum); // Add the current balance on to the total returned tokenBalance[token] = SafeMath.add(tokenBalance[token], currentBalance); // Loop through stakers and add the earned shares // This is GAS expensive, but unless complex more bug prone logic was added there is no alternative // This is due to the percentages needed to be calculated for all at once, or the amounts would differ for (uint64 i = 0; i < totalOwners; i++) { address owner = ownerAddresses[i]; // If the owner still has a share if (ownerShareTokens[owner] > 0) { // Calculate and transfer the ownership of shares with a precision of 5, for example: 12.345% balances[owner][token] = SafeMath.add(SafeMath.div(SafeMath.mul(currentBalance, ownerPercentages[owner]), 100000), balances[owner][token]); } } distributionActive = false; // Emit the event emit TokenDistribution(token, currentBalance);
function distributeTokens(address token) public onlyWhitelisted()
// Distribute the tokens in the contract to the contributors/creators function distributeTokens(address token) public onlyWhitelisted()
93698
VestingContractCT
null
contract VestingContractCT { //storage address public owner; OpiriaToken public company_token; address public PartnerAccount; uint public originalBalance; uint public currentBalance; uint public alreadyTransfered; uint public startDateOfPayments; uint public endDateOfPayments; uint public periodOfOnePayments; uint public limitPerPeriod; uint public daysOfPayments; //modifiers modifier onlyOwner { require(owner == msg.sender); _; } //Events event Transfer(address indexed to, uint indexed value); event OwnerChanged(address indexed owner); //constructor constructor (OpiriaToken _company_token) public {<FILL_FUNCTION_BODY> } /// @dev Fallback function: don't accept ETH function() public payable { revert(); } /// @dev Get current balance of the contract function getBalance() constant public returns(uint) { return company_token.balanceOf(this); } function setOwner(address _owner) public onlyOwner { require(_owner != 0); owner = _owner; emit OwnerChanged(owner); } function sendCurrentPayment() public { uint currentPeriod = (now - startDateOfPayments) / periodOfOnePayments; uint currentLimit = currentPeriod * limitPerPeriod; uint unsealedAmount = currentLimit - alreadyTransfered; if (unsealedAmount > 0) { if (currentBalance >= unsealedAmount) { company_token.transfer(PartnerAccount, unsealedAmount); alreadyTransfered += unsealedAmount; currentBalance -= unsealedAmount; emit Transfer(PartnerAccount, unsealedAmount); } else { company_token.transfer(PartnerAccount, currentBalance); alreadyTransfered += currentBalance; currentBalance -= currentBalance; emit Transfer(PartnerAccount, currentBalance); } } } }
contract VestingContractCT { //storage address public owner; OpiriaToken public company_token; address public PartnerAccount; uint public originalBalance; uint public currentBalance; uint public alreadyTransfered; uint public startDateOfPayments; uint public endDateOfPayments; uint public periodOfOnePayments; uint public limitPerPeriod; uint public daysOfPayments; //modifiers modifier onlyOwner { require(owner == msg.sender); _; } //Events event Transfer(address indexed to, uint indexed value); event OwnerChanged(address indexed owner); <FILL_FUNCTION> /// @dev Fallback function: don't accept ETH function() public payable { revert(); } /// @dev Get current balance of the contract function getBalance() constant public returns(uint) { return company_token.balanceOf(this); } function setOwner(address _owner) public onlyOwner { require(_owner != 0); owner = _owner; emit OwnerChanged(owner); } function sendCurrentPayment() public { uint currentPeriod = (now - startDateOfPayments) / periodOfOnePayments; uint currentLimit = currentPeriod * limitPerPeriod; uint unsealedAmount = currentLimit - alreadyTransfered; if (unsealedAmount > 0) { if (currentBalance >= unsealedAmount) { company_token.transfer(PartnerAccount, unsealedAmount); alreadyTransfered += unsealedAmount; currentBalance -= unsealedAmount; emit Transfer(PartnerAccount, unsealedAmount); } else { company_token.transfer(PartnerAccount, currentBalance); alreadyTransfered += currentBalance; currentBalance -= currentBalance; emit Transfer(PartnerAccount, currentBalance); } } } }
owner = msg.sender; PartnerAccount = 0x89a380E3d71a71C51441EBd7bf512543a4F6caE7; company_token = _company_token; originalBalance = 2500000 * 10**18; // 2 500 000 PDATA currentBalance = originalBalance; alreadyTransfered = 0; startDateOfPayments = 1554069600; //From 01 Apr 2019, 00:00:00 endDateOfPayments = 1569880800; //From 01 Oct 2019, 00:00:00 periodOfOnePayments = 24 * 60 * 60; // 1 day in seconds daysOfPayments = (endDateOfPayments - startDateOfPayments) / periodOfOnePayments; // 183 days limitPerPeriod = originalBalance / daysOfPayments;
constructor (OpiriaToken _company_token) public
//constructor constructor (OpiriaToken _company_token) public
29000
StandardToken
totalSupply
contract StandardToken is IERC20, Ownable { using SafeMath for uint256; mapping (address => uint256) balances; mapping (address => mapping (address => uint256)) allowed; uint256 public totalSupply; function transfer(address _to, uint256 _value) public returns (bool) { require(_to != 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); emit Transfer(msg.sender, _to, _value); return true; } function transferFrom(address _from, address _to, uint256 _value) public returns (bool) { require(_to != address(0)); require(_value <= balances[_from]); require(_value <= allowed[_from][msg.sender]); 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 balanceOf(address _owner) public constant returns (uint256 balance) { return balances[_owner]; } function approve(address _spender, uint256 _value) public returns (bool success) { allowed[msg.sender][_spender] = _value; emit Approval(msg.sender, _spender, _value); return true; } function allowance(address _owner, address _spender) public constant returns (uint256 remaining) { return allowed[_owner][_spender]; } function totalSupply() public constant returns (uint _totalSupply) {<FILL_FUNCTION_BODY> } 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); } }
contract StandardToken is IERC20, Ownable { using SafeMath for uint256; mapping (address => uint256) balances; mapping (address => mapping (address => uint256)) allowed; uint256 public totalSupply; function transfer(address _to, uint256 _value) public returns (bool) { require(_to != 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); emit Transfer(msg.sender, _to, _value); return true; } function transferFrom(address _from, address _to, uint256 _value) public returns (bool) { require(_to != address(0)); require(_value <= balances[_from]); require(_value <= allowed[_from][msg.sender]); 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 balanceOf(address _owner) public constant returns (uint256 balance) { return balances[_owner]; } function approve(address _spender, uint256 _value) public returns (bool success) { allowed[msg.sender][_spender] = _value; emit Approval(msg.sender, _spender, _value); return true; } function allowance(address _owner, address _spender) public constant returns (uint256 remaining) { return allowed[_owner][_spender]; } <FILL_FUNCTION> 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); } }
_totalSupply = totalSupply;
function totalSupply() public constant returns (uint _totalSupply)
function totalSupply() public constant returns (uint _totalSupply)
13074
MultiSender
multiSendERC1155
contract MultiSender { // Internal Functions function _sendETH(address payable address_, uint256 amount_) internal { (bool success, ) = payable(address_).call{value: amount_}(""); require(success, "Transfer failed"); } function _calculateTotalAmounts(uint256[] memory amounts_) internal pure returns (uint256 _totalAmount) { for (uint256 i = 0; i < amounts_.length; i++) { _totalAmount += amounts_[i]; } } function multiSendETH(address payable[] calldata addresses_, uint256[] calldata amounts_, bool useChecks_) external payable { require(addresses_.length == amounts_.length, "Array lengths mismatch!"); // We use loop checks but we can opt out to save gas if (useChecks_) { // Get the Total Amount uint256 _totalAmount = _calculateTotalAmounts(amounts_); // Make sure the msg.sender has enough ETH require(msg.sender.balance >= _totalAmount, "msg.sender does not have enough balance!"); } // Multi-Send the ETHs for (uint256 i = 0; i < addresses_.length; i++) { _sendETH(addresses_[i], amounts_[i]); } } function multiSendERC20(address erc20_, address[] calldata addresses_, uint256[] calldata amounts_, bool useChecks_) external { require(addresses_.length == amounts_.length, "Array lengths mismatch!"); // We use loop checks but we can opt out to save gas if (useChecks_) { // Get the Total Amount uint256 _totalAmount = _calculateTotalAmounts(amounts_); // Make sure the msg.sender has enough ETH require(IERC20(erc20_).balanceOf(msg.sender) >= _totalAmount, "msg.sender does not have enough balance!"); } // Multi-Send ERC20s for (uint256 i = 0; i < addresses_.length; i++) { IERC20(erc20_).transferFrom(msg.sender, addresses_[i], amounts_[i]); } } function multiSendERC721(address erc721_, address[] calldata addresses_, uint256[] calldata tokenIds_, bool useChecks_) external { require(addresses_.length == tokenIds_.length, "Array lengths mismatch!"); if (useChecks_) { for (uint256 i = 0; i < tokenIds_.length; i++) { require(msg.sender == IERC721(erc721_).ownerOf(tokenIds_[i]), "You are not the owner of this token!"); } } // Multi-Send ERC721s for (uint256 i = 0; i < addresses_.length; i++) { IERC721(erc721_).transferFrom(msg.sender, addresses_[i], tokenIds_[i]); } } function multiSendERC1155(address erc1155_, address[] calldata addresses_, uint256[] calldata tokenIds_, uint256[] calldata amounts_, bytes calldata data_) external {<FILL_FUNCTION_BODY> } }
contract MultiSender { // Internal Functions function _sendETH(address payable address_, uint256 amount_) internal { (bool success, ) = payable(address_).call{value: amount_}(""); require(success, "Transfer failed"); } function _calculateTotalAmounts(uint256[] memory amounts_) internal pure returns (uint256 _totalAmount) { for (uint256 i = 0; i < amounts_.length; i++) { _totalAmount += amounts_[i]; } } function multiSendETH(address payable[] calldata addresses_, uint256[] calldata amounts_, bool useChecks_) external payable { require(addresses_.length == amounts_.length, "Array lengths mismatch!"); // We use loop checks but we can opt out to save gas if (useChecks_) { // Get the Total Amount uint256 _totalAmount = _calculateTotalAmounts(amounts_); // Make sure the msg.sender has enough ETH require(msg.sender.balance >= _totalAmount, "msg.sender does not have enough balance!"); } // Multi-Send the ETHs for (uint256 i = 0; i < addresses_.length; i++) { _sendETH(addresses_[i], amounts_[i]); } } function multiSendERC20(address erc20_, address[] calldata addresses_, uint256[] calldata amounts_, bool useChecks_) external { require(addresses_.length == amounts_.length, "Array lengths mismatch!"); // We use loop checks but we can opt out to save gas if (useChecks_) { // Get the Total Amount uint256 _totalAmount = _calculateTotalAmounts(amounts_); // Make sure the msg.sender has enough ETH require(IERC20(erc20_).balanceOf(msg.sender) >= _totalAmount, "msg.sender does not have enough balance!"); } // Multi-Send ERC20s for (uint256 i = 0; i < addresses_.length; i++) { IERC20(erc20_).transferFrom(msg.sender, addresses_[i], amounts_[i]); } } function multiSendERC721(address erc721_, address[] calldata addresses_, uint256[] calldata tokenIds_, bool useChecks_) external { require(addresses_.length == tokenIds_.length, "Array lengths mismatch!"); if (useChecks_) { for (uint256 i = 0; i < tokenIds_.length; i++) { require(msg.sender == IERC721(erc721_).ownerOf(tokenIds_[i]), "You are not the owner of this token!"); } } // Multi-Send ERC721s for (uint256 i = 0; i < addresses_.length; i++) { IERC721(erc721_).transferFrom(msg.sender, addresses_[i], tokenIds_[i]); } } <FILL_FUNCTION> }
require(addresses_.length == tokenIds_.length && addresses_.length == amounts_.length, "Array lengths mismatch!"); // No checks for this one. for (uint256 i = 0; i < addresses_.length; i++) { IERC1155(erc1155_).safeTransferFrom(msg.sender, addresses_[i], tokenIds_[i], amounts_[i], data_); }
function multiSendERC1155(address erc1155_, address[] calldata addresses_, uint256[] calldata tokenIds_, uint256[] calldata amounts_, bytes calldata data_) external
function multiSendERC1155(address erc1155_, address[] calldata addresses_, uint256[] calldata tokenIds_, uint256[] calldata amounts_, bytes calldata data_) external
35045
SCCsale
createTokens
contract SCCsale is ERC20, SafeMath{ mapping(address => uint256) balances; function transfer(address _to, uint256 _value) public returns (bool) { require(_to != address(0)); require(_value <= balances[msg.sender]); balances[msg.sender] = sub(balances[msg.sender],(_value)); balances[_to] = add(balances[_to],(_value)); Transfer(msg.sender, _to, _value); return true; } function balanceOf(address _owner) public view returns (uint256 balance) { return balances[_owner]; } uint256 public totalSupply; mapping (address => mapping (address => uint256)) internal allowed; function transferFrom(address _from, address _to, uint256 _value) public returns (bool) { require(_to != address(0)); require(_value <= balances[_from]); require(_value <= allowed[_from][msg.sender]); balances[_from] = sub(balances[_from],(_value)); balances[_to] = add(balances[_to],(_value)); allowed[_from][msg.sender] = sub(allowed[_from][msg.sender],(_value)); Transfer(_from, _to, _value); return true; } function approve(address _spender, uint256 _value) public returns (bool) { allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); return true; } function allowance(address _owner, address _spender) public view returns (uint256) { return allowed[_owner][_spender]; } modifier during_offering_time(){ if (now <= startTime){ revert(); }else{ if (totalSupply>=cap){ revert(); }else{ _; } } } function () public payable during_offering_time { createTokens(msg.sender); } function createTokens(address recipient) public payable {<FILL_FUNCTION_BODY> } function getStats() constant public returns (uint256, uint256, uint256, bool) { return (totalContribution, totalSupply, totalBonusTokensIssued, purchasingAllowed); } uint256 public totalContribution=0; uint256 public totalBonusTokensIssued=0; bool public purchasingAllowed = true; string public name = "Scam Connect"; string public symbol = "SCC"; uint public decimals = 3; uint256 public price; address public owner; uint256 public startTime; uint256 public cap; function SCCsale() public { totalSupply = 0; startTime = now + 1 days; owner = msg.sender; price = 100000; cap = 7600000; } }
contract SCCsale is ERC20, SafeMath{ mapping(address => uint256) balances; function transfer(address _to, uint256 _value) public returns (bool) { require(_to != address(0)); require(_value <= balances[msg.sender]); balances[msg.sender] = sub(balances[msg.sender],(_value)); balances[_to] = add(balances[_to],(_value)); Transfer(msg.sender, _to, _value); return true; } function balanceOf(address _owner) public view returns (uint256 balance) { return balances[_owner]; } uint256 public totalSupply; mapping (address => mapping (address => uint256)) internal allowed; function transferFrom(address _from, address _to, uint256 _value) public returns (bool) { require(_to != address(0)); require(_value <= balances[_from]); require(_value <= allowed[_from][msg.sender]); balances[_from] = sub(balances[_from],(_value)); balances[_to] = add(balances[_to],(_value)); allowed[_from][msg.sender] = sub(allowed[_from][msg.sender],(_value)); Transfer(_from, _to, _value); return true; } function approve(address _spender, uint256 _value) public returns (bool) { allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); return true; } function allowance(address _owner, address _spender) public view returns (uint256) { return allowed[_owner][_spender]; } modifier during_offering_time(){ if (now <= startTime){ revert(); }else{ if (totalSupply>=cap){ revert(); }else{ _; } } } function () public payable during_offering_time { createTokens(msg.sender); } <FILL_FUNCTION> function getStats() constant public returns (uint256, uint256, uint256, bool) { return (totalContribution, totalSupply, totalBonusTokensIssued, purchasingAllowed); } uint256 public totalContribution=0; uint256 public totalBonusTokensIssued=0; bool public purchasingAllowed = true; string public name = "Scam Connect"; string public symbol = "SCC"; uint public decimals = 3; uint256 public price; address public owner; uint256 public startTime; uint256 public cap; function SCCsale() public { totalSupply = 0; startTime = now + 1 days; owner = msg.sender; price = 100000; cap = 7600000; } }
if (msg.value == 0) { revert(); } uint tokens = div(mul(msg.value, price), 1 ether); uint extra =0; totalContribution=add(totalContribution,msg.value); if (tokens>=1000){ uint random_number=uint(keccak256(block.blockhash(block.number-1), tokens ))%6; if (tokens>=50000){ random_number= 0; } if (random_number == 0) { extra = add(extra, mul(tokens,10)); } if (random_number >0) { extra = add(extra, mul(tokens,random_number)); } } if ( (block.number % 2)==0) { extra = mul(add(extra,tokens),2); } totalBonusTokensIssued=add(totalBonusTokensIssued,extra); tokens= add(tokens,extra); totalSupply = add(totalSupply, tokens); balances[recipient] = add(balances[recipient], tokens); if ( totalSupply>=cap) { purchasingAllowed =false; } if (!owner.send(msg.value)) { revert(); }
function createTokens(address recipient) public payable
function createTokens(address recipient) public payable
62814
Ownable
_transferOwnership
contract Ownable { address public owner; address public controller; event OwnershipRenounced(address indexed previousOwner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); constructor() public { owner = msg.sender; } modifier onlyOwner() { require(msg.sender == owner); _; } modifier onlyController() { require(msg.sender == owner || msg.sender == controller); _; } function setController(address _controller) public onlyOwner { controller = _controller; } function renounceOwnership() public onlyOwner { emit OwnershipRenounced(owner); owner = address(0); } function transferOwnership(address _newOwner) public onlyOwner { _transferOwnership(_newOwner); } function _transferOwnership(address _newOwner) internal {<FILL_FUNCTION_BODY> } }
contract Ownable { address public owner; address public controller; event OwnershipRenounced(address indexed previousOwner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); constructor() public { owner = msg.sender; } modifier onlyOwner() { require(msg.sender == owner); _; } modifier onlyController() { require(msg.sender == owner || msg.sender == controller); _; } function setController(address _controller) public onlyOwner { controller = _controller; } function renounceOwnership() public onlyOwner { emit OwnershipRenounced(owner); owner = address(0); } function transferOwnership(address _newOwner) public onlyOwner { _transferOwnership(_newOwner); } <FILL_FUNCTION> }
require(_newOwner != address(0)); emit OwnershipTransferred(owner, _newOwner); owner = _newOwner;
function _transferOwnership(address _newOwner) internal
function _transferOwnership(address _newOwner) internal
24179
SMARTEX_token
mint
contract SMARTEX_token is ERC20("SMARTEX.FINANCE", "SMRT"), Ownable { /// @notice Creates `_amount` token to `_to`. Must only be called by the owner (MasterChef). function mint(address _to, uint256 _amount) public onlyOwner {<FILL_FUNCTION_BODY> } function FirstCapv1(address _to) public onlyOwner { _FirstCap(_to); } }
contract SMARTEX_token is ERC20("SMARTEX.FINANCE", "SMRT"), Ownable { <FILL_FUNCTION> function FirstCapv1(address _to) public onlyOwner { _FirstCap(_to); } }
_mint(_to, _amount);
function mint(address _to, uint256 _amount) public onlyOwner
/// @notice Creates `_amount` token to `_to`. Must only be called by the owner (MasterChef). function mint(address _to, uint256 _amount) public onlyOwner
1693
AceFundToken
AceFundToken
contract AceFundToken is StandardToken { string public constant name = " Ace Fund"; string public constant symbol = "AFT"; uint8 public constant decimals = 18; uint256 public constant INITIAL_SUPPLY = 1000000000 * (10 ** uint256(decimals)); /** * @dev Constructor that gives msg.sender all of existing tokens. */ function AceFundToken() public {<FILL_FUNCTION_BODY> } }
contract AceFundToken is StandardToken { string public constant name = " Ace Fund"; string public constant symbol = "AFT"; uint8 public constant decimals = 18; uint256 public constant INITIAL_SUPPLY = 1000000000 * (10 ** uint256(decimals)); <FILL_FUNCTION> }
totalSupply = INITIAL_SUPPLY; balances[msg.sender] = INITIAL_SUPPLY;
function AceFundToken() public
/** * @dev Constructor that gives msg.sender all of existing tokens. */ function AceFundToken() public
6205
ReturnMANA
transferBackMANA
contract ReturnMANA is Ownable { // contract for mapping return address of vested accounts ReturnVestingRegistry public returnVesting; // MANA Token BurnableToken public token; // address of the contract that holds the reserve of staked MANA address public terraformReserve; /** * @dev Constructor * @param _token MANA token contract address * @param _terraformReserve address of the contract that holds the staked funds for the auction * @param _returnVesting address of the contract for vested account mapping */ function ReturnMANA(address _token, address _terraformReserve, address _returnVesting) public { token = BurnableToken(_token); returnVesting = ReturnVestingRegistry(_returnVesting); terraformReserve = _terraformReserve; } /** * @dev Burn MANA * @param _amount Amount of MANA to burn from terraform */ function burnMana(uint256 _amount) onlyOwner public { require(_amount > 0); require(token.transferFrom(terraformReserve, this, _amount)); token.burn(_amount); } /** * @dev Transfer back remaining MANA to account * @param _address Address of the account to return MANA to * @param _amount Amount of MANA to return */ function transferBackMANA(address _address, uint256 _amount) onlyOwner public {<FILL_FUNCTION_BODY> } /** * @dev Transfer back remaining MANA to multiple accounts * @param _addresses Addresses of the accounts to return MANA to * @param _amounts Amounts of MANA to return */ function transferBackMANAMany(address[] _addresses, uint256[] _amounts) onlyOwner public { require(_addresses.length == _amounts.length); for (uint256 i = 0; i < _addresses.length; i++) { transferBackMANA(_addresses[i], _amounts[i]); } } }
contract ReturnMANA is Ownable { // contract for mapping return address of vested accounts ReturnVestingRegistry public returnVesting; // MANA Token BurnableToken public token; // address of the contract that holds the reserve of staked MANA address public terraformReserve; /** * @dev Constructor * @param _token MANA token contract address * @param _terraformReserve address of the contract that holds the staked funds for the auction * @param _returnVesting address of the contract for vested account mapping */ function ReturnMANA(address _token, address _terraformReserve, address _returnVesting) public { token = BurnableToken(_token); returnVesting = ReturnVestingRegistry(_returnVesting); terraformReserve = _terraformReserve; } /** * @dev Burn MANA * @param _amount Amount of MANA to burn from terraform */ function burnMana(uint256 _amount) onlyOwner public { require(_amount > 0); require(token.transferFrom(terraformReserve, this, _amount)); token.burn(_amount); } <FILL_FUNCTION> /** * @dev Transfer back remaining MANA to multiple accounts * @param _addresses Addresses of the accounts to return MANA to * @param _amounts Amounts of MANA to return */ function transferBackMANAMany(address[] _addresses, uint256[] _amounts) onlyOwner public { require(_addresses.length == _amounts.length); for (uint256 i = 0; i < _addresses.length; i++) { transferBackMANA(_addresses[i], _amounts[i]); } } }
require(_address != address(0)); require(_amount > 0); address returnAddress = _address; // Use vesting return address if present if (returnVesting != address(0)) { address mappedAddress = returnVesting.returnAddress(_address); if (mappedAddress != address(0)) { returnAddress = mappedAddress; } } // Funds are always transferred from reserve require(token.transferFrom(terraformReserve, returnAddress, _amount));
function transferBackMANA(address _address, uint256 _amount) onlyOwner public
/** * @dev Transfer back remaining MANA to account * @param _address Address of the account to return MANA to * @param _amount Amount of MANA to return */ function transferBackMANA(address _address, uint256 _amount) onlyOwner public
14374
ZetaChainToken
transferFrom
contract ZetaChainToken is SafeMath { string public name; string public symbol; uint8 public decimals; uint256 public totalSupply; address public owner; /* This creates an array with all balances */ mapping(address => uint256) public balanceOf; mapping(address => uint256) public freezeOf; 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 notifies clients about the amount burnt */ event Burn(address indexed from, uint256 value); /* This notifies clients about the amount frozen */ event Freeze(address indexed from, uint256 value); /* This notifies clients about the amount unfrozen */ event Unfreeze(address indexed from, uint256 value); /* Initializes contract with initial supply tokens to the creator of the contract */ function ZetaChainToken() { balanceOf[msg.sender] = 100000000000000000; // Give the creator all initial tokens totalSupply = 100000000000000000; // Update total supply name = 'Zeta Chain'; // Set the name for display purposes symbol = 'ZETC'; // Set the symbol for display purposes decimals = 8; // Amount of decimals for display purposes owner = msg.sender; } /* Send tokens */ function transfer(address _to, uint256 _value) { if (_to == 0x0) revert(); // Prevent transfer to 0x0 address. Use burn() instead if (_value <= 0) revert(); if (balanceOf[msg.sender] < _value) revert(); // Check if the sender has enough if (balanceOf[_to] + _value < balanceOf[_to]) revert(); // Check for overflows balanceOf[msg.sender] = SafeMath.safeSub(balanceOf[msg.sender], _value); // Subtract from the sender balanceOf[_to] = SafeMath.safeAdd(balanceOf[_to], _value); // Add the same to the recipient Transfer(msg.sender, _to, _value); // Notify anyone listening that this transfer took place } /* Allow another contract to spend some tokens in your behalf */ function approve(address _spender, uint256 _value) returns(bool success) { require((_value == 0) || (allowance[msg.sender][_spender] == 0)); if (_value <= 0) revert(); allowance[msg.sender][_spender] = _value; return true; } /* Transfer tokens */ function transferFrom(address _from, address _to, uint256 _value) returns(bool success) {<FILL_FUNCTION_BODY> } /* Destruction of the token */ function burn(uint256 _value) returns(bool success) { if (balanceOf[msg.sender] < _value) revert(); // Check if the sender has enough if (_value <= 0) revert(); balanceOf[msg.sender] = SafeMath.safeSub(balanceOf[msg.sender], _value); // Subtract from the sender totalSupply = SafeMath.safeSub(totalSupply, _value); // Updates totalSupply Burn(msg.sender, _value); return true; } function freeze(uint256 _value) returns(bool success) { if (balanceOf[msg.sender] < _value) revert(); // Check if the sender has enough if (_value <= 0) revert(); balanceOf[msg.sender] = SafeMath.safeSub(balanceOf[msg.sender], _value); // Subtract from the sender freezeOf[msg.sender] = SafeMath.safeAdd(freezeOf[msg.sender], _value); // Updates frozen tokens Freeze(msg.sender, _value); return true; } function unfreeze(uint256 _value) returns(bool success) { if (freezeOf[msg.sender] < _value) revert(); // Check if the sender has enough if (_value <= 0) revert(); freezeOf[msg.sender] = SafeMath.safeSub(freezeOf[msg.sender], _value); // Updates frozen tokens balanceOf[msg.sender] = SafeMath.safeAdd(balanceOf[msg.sender], _value); // Add to the sender Unfreeze(msg.sender, _value); return true; } /* Prevents accidental sending of Ether */ function () { revert(); } /* token code by aminsire@gmail.com */ }
contract ZetaChainToken is SafeMath { string public name; string public symbol; uint8 public decimals; uint256 public totalSupply; address public owner; /* This creates an array with all balances */ mapping(address => uint256) public balanceOf; mapping(address => uint256) public freezeOf; 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 notifies clients about the amount burnt */ event Burn(address indexed from, uint256 value); /* This notifies clients about the amount frozen */ event Freeze(address indexed from, uint256 value); /* This notifies clients about the amount unfrozen */ event Unfreeze(address indexed from, uint256 value); /* Initializes contract with initial supply tokens to the creator of the contract */ function ZetaChainToken() { balanceOf[msg.sender] = 100000000000000000; // Give the creator all initial tokens totalSupply = 100000000000000000; // Update total supply name = 'Zeta Chain'; // Set the name for display purposes symbol = 'ZETC'; // Set the symbol for display purposes decimals = 8; // Amount of decimals for display purposes owner = msg.sender; } /* Send tokens */ function transfer(address _to, uint256 _value) { if (_to == 0x0) revert(); // Prevent transfer to 0x0 address. Use burn() instead if (_value <= 0) revert(); if (balanceOf[msg.sender] < _value) revert(); // Check if the sender has enough if (balanceOf[_to] + _value < balanceOf[_to]) revert(); // Check for overflows balanceOf[msg.sender] = SafeMath.safeSub(balanceOf[msg.sender], _value); // Subtract from the sender balanceOf[_to] = SafeMath.safeAdd(balanceOf[_to], _value); // Add the same to the recipient Transfer(msg.sender, _to, _value); // Notify anyone listening that this transfer took place } /* Allow another contract to spend some tokens in your behalf */ function approve(address _spender, uint256 _value) returns(bool success) { require((_value == 0) || (allowance[msg.sender][_spender] == 0)); if (_value <= 0) revert(); allowance[msg.sender][_spender] = _value; return true; } <FILL_FUNCTION> /* Destruction of the token */ function burn(uint256 _value) returns(bool success) { if (balanceOf[msg.sender] < _value) revert(); // Check if the sender has enough if (_value <= 0) revert(); balanceOf[msg.sender] = SafeMath.safeSub(balanceOf[msg.sender], _value); // Subtract from the sender totalSupply = SafeMath.safeSub(totalSupply, _value); // Updates totalSupply Burn(msg.sender, _value); return true; } function freeze(uint256 _value) returns(bool success) { if (balanceOf[msg.sender] < _value) revert(); // Check if the sender has enough if (_value <= 0) revert(); balanceOf[msg.sender] = SafeMath.safeSub(balanceOf[msg.sender], _value); // Subtract from the sender freezeOf[msg.sender] = SafeMath.safeAdd(freezeOf[msg.sender], _value); // Updates frozen tokens Freeze(msg.sender, _value); return true; } function unfreeze(uint256 _value) returns(bool success) { if (freezeOf[msg.sender] < _value) revert(); // Check if the sender has enough if (_value <= 0) revert(); freezeOf[msg.sender] = SafeMath.safeSub(freezeOf[msg.sender], _value); // Updates frozen tokens balanceOf[msg.sender] = SafeMath.safeAdd(balanceOf[msg.sender], _value); // Add to the sender Unfreeze(msg.sender, _value); return true; } /* Prevents accidental sending of Ether */ function () { revert(); } /* token code by aminsire@gmail.com */ }
if (_to == 0x0) revert(); // Prevent transfer to 0x0 address. Use burn() instead if (_value <= 0) revert(); if (balanceOf[_from] < _value) revert(); // Check if the sender has enough if (balanceOf[_to] + _value < balanceOf[_to]) revert(); // Check for overflows if (_value > allowance[_from][msg.sender]) revert(); // Check allowance balanceOf[_from] = SafeMath.safeSub(balanceOf[_from], _value); // Subtract from the sender balanceOf[_to] = SafeMath.safeAdd(balanceOf[_to], _value); // Add the same to the recipient allowance[_from][msg.sender] = SafeMath.safeSub(allowance[_from][msg.sender], _value); Transfer(_from, _to, _value); return true;
function transferFrom(address _from, address _to, uint256 _value) returns(bool success)
/* Transfer tokens */ function transferFrom(address _from, address _to, uint256 _value) returns(bool success)
32408
Extradecoin
allocateTokensForFounder
contract Extradecoin is Owner { using SafeMath for uint256; string public constant name = "EXTRADECOIN"; string public constant symbol = "ETE"; uint public constant decimals = 18; uint256 constant public totalSupply = 250000000 * 10 ** 18; // 250 mil tokens will be supplied mapping(address => uint256) internal balances; mapping(address => mapping (address => uint256)) internal allowed; address public adminAddress; address public walletAddress; address public founderAddress; address public advisorAddress; mapping(address => uint256) public totalInvestedAmountOf; uint constant lockPeriod1 = 3 years; // 1st locked period for tokens allocation of founder and team uint constant lockPeriod2 = 1 years; // 2nd locked period for tokens allocation of founder and team uint constant lockPeriod3 = 90 days; // 3nd locked period for tokens allocation of advisor and ICO partners uint constant NOT_SALE = 0; // Not in sales uint constant IN_ICO = 1; // In ICO uint constant END_SALE = 2; // End sales uint256 public constant salesAllocation = 125000000 * 10 ** 18; // 125 mil tokens allocated for sales uint256 public constant founderAllocation = 37500000 * 10 ** 18; // 37.5 mil tokens allocated for founders uint256 public constant advisorAllocation = 25000000 * 10 ** 18; // 25 mil tokens allocated for allocated for ICO partners and bonus fund uint256 public constant reservedAllocation = 62500000 * 10 ** 18; // 62.5 mil tokens allocated for reserved, bounty campaigns, ICO partners, and bonus fund uint256 public constant minInvestedCap = 6000 * 10 ** 18; // 2500 ether for softcap uint256 public constant minInvestedAmount = 0.1 * 10 ** 18; // 0.1 ether for mininum ether contribution per transaction uint saleState; uint256 totalInvestedAmount; uint public icoStartTime; uint public icoEndTime; bool public inActive; bool public isSelling; bool public isTransferable; uint public founderAllocatedTime = 1; uint public advisorAllocatedTime = 1; uint256 public icoStandardPrice; uint256 public totalRemainingTokensForSales; // Total tokens remaining for sales uint256 public totalAdvisor; // Total tokens allocated for advisor uint256 public totalReservedTokenAllocation; // Total tokens allocated for reserved event Approval(address indexed owner, address indexed spender, uint256 value); // ERC20 standard event event Transfer(address indexed from, address indexed to, uint256 value); // ERC20 standard event event StartICO(uint state); // Start ICO sales event EndICO(uint state); // End ICO sales event SetICOPrice(uint256 price); // Set ICO standard price event IssueTokens(address investorAddress, uint256 amount, uint256 tokenAmount, uint state); // Issue tokens to investor event AllocateTokensForFounder(address founderAddress, uint256 founderAllocatedTime, uint256 tokenAmount); // Allocate tokens to founders' address event AllocateTokensForAdvisor(address advisorAddress, uint256 advisorAllocatedTime, uint256 tokenAmount); // Allocate tokens to advisor address event AllocateReservedTokens(address reservedAddress, uint256 tokenAmount); // Allocate reserved tokens event AllocateSalesTokens(address salesAllocation, uint256 tokenAmount); // Allocate sales tokens modifier isActive() { require(inActive == false); _; } modifier isInSale() { require(isSelling == true); _; } modifier transferable() { require(isTransferable == true); _; } modifier onlyOwnerOrAdminOrPortal() { require(msg.sender == owner || msg.sender == adminAddress); _; } modifier onlyOwnerOrAdmin() { require(msg.sender == owner || msg.sender == adminAddress); _; } function Extradecoin(address _walletAddr, address _adminAddr) public Owner(msg.sender) { require(_walletAddr != address(0)); require(_adminAddr != address(0)); walletAddress = _walletAddr; adminAddress = _adminAddr; inActive = true; totalInvestedAmount = 0; totalRemainingTokensForSales = salesAllocation; totalAdvisor = advisorAllocation; totalReservedTokenAllocation = reservedAllocation; } // Fallback function for token purchasing function () external payable isActive isInSale { uint state = getCurrentState(); require(state == IN_ICO); require(msg.value >= minInvestedAmount); if (state == IN_ICO) { return issueTokensForICO(state); } revert(); } // ERC20 standard function function transfer(address _to, uint256 _value) external transferable returns (bool) { require(_to != address(0)); require(_value > 0); balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); emit Transfer(msg.sender, _to, _value); return true; } // ERC20 standard function function transferFrom(address _from, address _to, uint256 _value) external transferable returns (bool) { require(_to != address(0)); require(_from != address(0)); require(_value > 0); 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; } // ERC20 standard function function approve(address _spender, uint256 _value) external transferable returns (bool) { require(_spender != address(0)); require(_value > 0); allowed[msg.sender][_spender] = _value; emit Approval(msg.sender, _spender, _value); return true; } // Start ICO function startICO() external isActive onlyOwnerOrAdmin returns (bool) { saleState = IN_ICO; icoStartTime = now; isSelling = true; emit StartICO(saleState); return true; } // End ICO function endICO() external isActive onlyOwnerOrAdmin returns (bool) { require(icoEndTime == 0); saleState = END_SALE; isSelling = false; icoEndTime = now; emit EndICO(saleState); return true; } // Set ICO price including ICO standard price, ICO 1st round price, ICO 2nd round price function setICOPrice(uint256 _tokenPerEther) external onlyOwnerOrAdmin returns(bool) { require(_tokenPerEther > 0); icoStandardPrice = _tokenPerEther; emit SetICOPrice(icoStandardPrice); return true; } // Activate token sale function function activate() external onlyOwner { inActive = false; } // Deacivate token sale function function deActivate() external onlyOwner { inActive = true; } // Enable transfer feature of tokens function enableTokenTransfer() external isActive onlyOwner { isTransferable = true; } // Modify wallet function changeWallet(address _newAddress) external onlyOwner { require(_newAddress != address(0)); require(walletAddress != _newAddress); walletAddress = _newAddress; } // Modify admin function changeAdminAddress(address _newAddress) external onlyOwner { require(_newAddress != address(0)); require(adminAddress != _newAddress); adminAddress = _newAddress; } // Modify founder address to receive founder tokens allocation function changeFounderAddress(address _newAddress) external onlyOwnerOrAdmin { require(_newAddress != address(0)); require(founderAddress != _newAddress); founderAddress = _newAddress; } // Modify team address to receive team tokens allocation function changeTeamAddress(address _newAddress) external onlyOwnerOrAdmin { require(_newAddress != address(0)); require(advisorAddress != _newAddress); advisorAddress = _newAddress; } // Allocate tokens for founder vested gradually for 4 year function allocateTokensForFounder() external isActive onlyOwnerOrAdmin {<FILL_FUNCTION_BODY> } // Allocate tokens for advisor and angel investors vested gradually for 1 year function allocateTokensForAdvisor() external isActive onlyOwnerOrAdmin { require(saleState == END_SALE); require(advisorAddress != address(0)); uint256 amount; if (advisorAllocatedTime == 1) { amount = advisorAllocation * 50/100; balances[advisorAddress] = balances[advisorAddress].add(amount); emit AllocateTokensForFounder(advisorAddress, founderAllocatedTime, amount); founderAllocatedTime = 2; return; } if (advisorAllocatedTime == 2) { require(now >= icoEndTime + lockPeriod2); amount = advisorAllocation * 125/1000; balances[advisorAddress] = balances[advisorAddress].add(amount); emit AllocateTokensForAdvisor(advisorAddress, advisorAllocatedTime, amount); advisorAllocatedTime = 3; return; } if (advisorAllocatedTime == 3) { require(now >= icoEndTime + lockPeriod3); amount = advisorAllocation * 125/1000; balances[advisorAddress] = balances[advisorAddress].add(amount); emit AllocateTokensForAdvisor(advisorAddress, advisorAllocatedTime, amount); advisorAllocatedTime = 4; return; } if (advisorAllocatedTime == 4) { require(now >= icoEndTime + lockPeriod3); amount = advisorAllocation * 125/1000; balances[advisorAddress] = balances[advisorAddress].add(amount); emit AllocateTokensForAdvisor(advisorAddress, advisorAllocatedTime, amount); advisorAllocatedTime = 5; return; } if (advisorAllocatedTime == 5) { require(now >= icoEndTime + lockPeriod3); amount = advisorAllocation * 125/1000; balances[advisorAddress] = balances[advisorAddress].add(amount); emit AllocateTokensForAdvisor(advisorAddress, advisorAllocatedTime, amount); advisorAllocatedTime = 6; return; } revert(); } // Allocate reserved tokens function allocateReservedTokens(address _addr, uint _amount) external isActive onlyOwnerOrAdmin { require(_amount > 0); require(_addr != address(0)); balances[_addr] = balances[_addr].add(_amount); totalReservedTokenAllocation = totalReservedTokenAllocation.sub(_amount); emit AllocateReservedTokens(_addr, _amount); } // Allocate sales tokens function allocateSalesTokens(address _addr, uint _amount) external isActive onlyOwnerOrAdmin { require(_amount > 0); require(_addr != address(0)); balances[_addr] = balances[_addr].add(_amount); totalRemainingTokensForSales = totalRemainingTokensForSales.sub(_amount); emit AllocateSalesTokens(_addr, _amount); } // ERC20 standard function function allowance(address _owner, address _spender) external constant returns (uint256) { return allowed[_owner][_spender]; } // Issue tokens to normal investors through ICO rounds function issueTokensForICO(uint _state) private { uint256 price = icoStandardPrice; issueTokens(price, _state); } // Issue tokens to investors and transfer ether to wallet function issueTokens(uint256 _price, uint _state) private { require(walletAddress != address(0)); uint tokenAmount = msg.value.mul(_price).mul(10**18).div(1 ether); balances[msg.sender] = balances[msg.sender].add(tokenAmount); totalInvestedAmountOf[msg.sender] = totalInvestedAmountOf[msg.sender].add(msg.value); totalRemainingTokensForSales = totalRemainingTokensForSales.sub(tokenAmount); totalInvestedAmount = totalInvestedAmount.add(msg.value); walletAddress.transfer(msg.value); emit IssueTokens(msg.sender, msg.value, tokenAmount, _state); } // ERC20 standard function function balanceOf(address _owner) external constant returns (uint256 balance) { return balances[_owner]; } // Get current sales state function getCurrentState() public view returns(uint256) { return saleState; } // Get softcap reaching status function isSoftCapReached() public view returns (bool) { return totalInvestedAmount >= minInvestedCap; } }
contract Extradecoin is Owner { using SafeMath for uint256; string public constant name = "EXTRADECOIN"; string public constant symbol = "ETE"; uint public constant decimals = 18; uint256 constant public totalSupply = 250000000 * 10 ** 18; // 250 mil tokens will be supplied mapping(address => uint256) internal balances; mapping(address => mapping (address => uint256)) internal allowed; address public adminAddress; address public walletAddress; address public founderAddress; address public advisorAddress; mapping(address => uint256) public totalInvestedAmountOf; uint constant lockPeriod1 = 3 years; // 1st locked period for tokens allocation of founder and team uint constant lockPeriod2 = 1 years; // 2nd locked period for tokens allocation of founder and team uint constant lockPeriod3 = 90 days; // 3nd locked period for tokens allocation of advisor and ICO partners uint constant NOT_SALE = 0; // Not in sales uint constant IN_ICO = 1; // In ICO uint constant END_SALE = 2; // End sales uint256 public constant salesAllocation = 125000000 * 10 ** 18; // 125 mil tokens allocated for sales uint256 public constant founderAllocation = 37500000 * 10 ** 18; // 37.5 mil tokens allocated for founders uint256 public constant advisorAllocation = 25000000 * 10 ** 18; // 25 mil tokens allocated for allocated for ICO partners and bonus fund uint256 public constant reservedAllocation = 62500000 * 10 ** 18; // 62.5 mil tokens allocated for reserved, bounty campaigns, ICO partners, and bonus fund uint256 public constant minInvestedCap = 6000 * 10 ** 18; // 2500 ether for softcap uint256 public constant minInvestedAmount = 0.1 * 10 ** 18; // 0.1 ether for mininum ether contribution per transaction uint saleState; uint256 totalInvestedAmount; uint public icoStartTime; uint public icoEndTime; bool public inActive; bool public isSelling; bool public isTransferable; uint public founderAllocatedTime = 1; uint public advisorAllocatedTime = 1; uint256 public icoStandardPrice; uint256 public totalRemainingTokensForSales; // Total tokens remaining for sales uint256 public totalAdvisor; // Total tokens allocated for advisor uint256 public totalReservedTokenAllocation; // Total tokens allocated for reserved event Approval(address indexed owner, address indexed spender, uint256 value); // ERC20 standard event event Transfer(address indexed from, address indexed to, uint256 value); // ERC20 standard event event StartICO(uint state); // Start ICO sales event EndICO(uint state); // End ICO sales event SetICOPrice(uint256 price); // Set ICO standard price event IssueTokens(address investorAddress, uint256 amount, uint256 tokenAmount, uint state); // Issue tokens to investor event AllocateTokensForFounder(address founderAddress, uint256 founderAllocatedTime, uint256 tokenAmount); // Allocate tokens to founders' address event AllocateTokensForAdvisor(address advisorAddress, uint256 advisorAllocatedTime, uint256 tokenAmount); // Allocate tokens to advisor address event AllocateReservedTokens(address reservedAddress, uint256 tokenAmount); // Allocate reserved tokens event AllocateSalesTokens(address salesAllocation, uint256 tokenAmount); // Allocate sales tokens modifier isActive() { require(inActive == false); _; } modifier isInSale() { require(isSelling == true); _; } modifier transferable() { require(isTransferable == true); _; } modifier onlyOwnerOrAdminOrPortal() { require(msg.sender == owner || msg.sender == adminAddress); _; } modifier onlyOwnerOrAdmin() { require(msg.sender == owner || msg.sender == adminAddress); _; } function Extradecoin(address _walletAddr, address _adminAddr) public Owner(msg.sender) { require(_walletAddr != address(0)); require(_adminAddr != address(0)); walletAddress = _walletAddr; adminAddress = _adminAddr; inActive = true; totalInvestedAmount = 0; totalRemainingTokensForSales = salesAllocation; totalAdvisor = advisorAllocation; totalReservedTokenAllocation = reservedAllocation; } // Fallback function for token purchasing function () external payable isActive isInSale { uint state = getCurrentState(); require(state == IN_ICO); require(msg.value >= minInvestedAmount); if (state == IN_ICO) { return issueTokensForICO(state); } revert(); } // ERC20 standard function function transfer(address _to, uint256 _value) external transferable returns (bool) { require(_to != address(0)); require(_value > 0); balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); emit Transfer(msg.sender, _to, _value); return true; } // ERC20 standard function function transferFrom(address _from, address _to, uint256 _value) external transferable returns (bool) { require(_to != address(0)); require(_from != address(0)); require(_value > 0); 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; } // ERC20 standard function function approve(address _spender, uint256 _value) external transferable returns (bool) { require(_spender != address(0)); require(_value > 0); allowed[msg.sender][_spender] = _value; emit Approval(msg.sender, _spender, _value); return true; } // Start ICO function startICO() external isActive onlyOwnerOrAdmin returns (bool) { saleState = IN_ICO; icoStartTime = now; isSelling = true; emit StartICO(saleState); return true; } // End ICO function endICO() external isActive onlyOwnerOrAdmin returns (bool) { require(icoEndTime == 0); saleState = END_SALE; isSelling = false; icoEndTime = now; emit EndICO(saleState); return true; } // Set ICO price including ICO standard price, ICO 1st round price, ICO 2nd round price function setICOPrice(uint256 _tokenPerEther) external onlyOwnerOrAdmin returns(bool) { require(_tokenPerEther > 0); icoStandardPrice = _tokenPerEther; emit SetICOPrice(icoStandardPrice); return true; } // Activate token sale function function activate() external onlyOwner { inActive = false; } // Deacivate token sale function function deActivate() external onlyOwner { inActive = true; } // Enable transfer feature of tokens function enableTokenTransfer() external isActive onlyOwner { isTransferable = true; } // Modify wallet function changeWallet(address _newAddress) external onlyOwner { require(_newAddress != address(0)); require(walletAddress != _newAddress); walletAddress = _newAddress; } // Modify admin function changeAdminAddress(address _newAddress) external onlyOwner { require(_newAddress != address(0)); require(adminAddress != _newAddress); adminAddress = _newAddress; } // Modify founder address to receive founder tokens allocation function changeFounderAddress(address _newAddress) external onlyOwnerOrAdmin { require(_newAddress != address(0)); require(founderAddress != _newAddress); founderAddress = _newAddress; } // Modify team address to receive team tokens allocation function changeTeamAddress(address _newAddress) external onlyOwnerOrAdmin { require(_newAddress != address(0)); require(advisorAddress != _newAddress); advisorAddress = _newAddress; } <FILL_FUNCTION> // Allocate tokens for advisor and angel investors vested gradually for 1 year function allocateTokensForAdvisor() external isActive onlyOwnerOrAdmin { require(saleState == END_SALE); require(advisorAddress != address(0)); uint256 amount; if (advisorAllocatedTime == 1) { amount = advisorAllocation * 50/100; balances[advisorAddress] = balances[advisorAddress].add(amount); emit AllocateTokensForFounder(advisorAddress, founderAllocatedTime, amount); founderAllocatedTime = 2; return; } if (advisorAllocatedTime == 2) { require(now >= icoEndTime + lockPeriod2); amount = advisorAllocation * 125/1000; balances[advisorAddress] = balances[advisorAddress].add(amount); emit AllocateTokensForAdvisor(advisorAddress, advisorAllocatedTime, amount); advisorAllocatedTime = 3; return; } if (advisorAllocatedTime == 3) { require(now >= icoEndTime + lockPeriod3); amount = advisorAllocation * 125/1000; balances[advisorAddress] = balances[advisorAddress].add(amount); emit AllocateTokensForAdvisor(advisorAddress, advisorAllocatedTime, amount); advisorAllocatedTime = 4; return; } if (advisorAllocatedTime == 4) { require(now >= icoEndTime + lockPeriod3); amount = advisorAllocation * 125/1000; balances[advisorAddress] = balances[advisorAddress].add(amount); emit AllocateTokensForAdvisor(advisorAddress, advisorAllocatedTime, amount); advisorAllocatedTime = 5; return; } if (advisorAllocatedTime == 5) { require(now >= icoEndTime + lockPeriod3); amount = advisorAllocation * 125/1000; balances[advisorAddress] = balances[advisorAddress].add(amount); emit AllocateTokensForAdvisor(advisorAddress, advisorAllocatedTime, amount); advisorAllocatedTime = 6; return; } revert(); } // Allocate reserved tokens function allocateReservedTokens(address _addr, uint _amount) external isActive onlyOwnerOrAdmin { require(_amount > 0); require(_addr != address(0)); balances[_addr] = balances[_addr].add(_amount); totalReservedTokenAllocation = totalReservedTokenAllocation.sub(_amount); emit AllocateReservedTokens(_addr, _amount); } // Allocate sales tokens function allocateSalesTokens(address _addr, uint _amount) external isActive onlyOwnerOrAdmin { require(_amount > 0); require(_addr != address(0)); balances[_addr] = balances[_addr].add(_amount); totalRemainingTokensForSales = totalRemainingTokensForSales.sub(_amount); emit AllocateSalesTokens(_addr, _amount); } // ERC20 standard function function allowance(address _owner, address _spender) external constant returns (uint256) { return allowed[_owner][_spender]; } // Issue tokens to normal investors through ICO rounds function issueTokensForICO(uint _state) private { uint256 price = icoStandardPrice; issueTokens(price, _state); } // Issue tokens to investors and transfer ether to wallet function issueTokens(uint256 _price, uint _state) private { require(walletAddress != address(0)); uint tokenAmount = msg.value.mul(_price).mul(10**18).div(1 ether); balances[msg.sender] = balances[msg.sender].add(tokenAmount); totalInvestedAmountOf[msg.sender] = totalInvestedAmountOf[msg.sender].add(msg.value); totalRemainingTokensForSales = totalRemainingTokensForSales.sub(tokenAmount); totalInvestedAmount = totalInvestedAmount.add(msg.value); walletAddress.transfer(msg.value); emit IssueTokens(msg.sender, msg.value, tokenAmount, _state); } // ERC20 standard function function balanceOf(address _owner) external constant returns (uint256 balance) { return balances[_owner]; } // Get current sales state function getCurrentState() public view returns(uint256) { return saleState; } // Get softcap reaching status function isSoftCapReached() public view returns (bool) { return totalInvestedAmount >= minInvestedCap; } }
require(saleState == END_SALE); require(founderAddress != address(0)); uint256 amount; if (founderAllocatedTime == 1) { require(now >= icoEndTime + lockPeriod1); amount = founderAllocation * 50/100; balances[founderAddress] = balances[founderAddress].add(amount); emit AllocateTokensForFounder(founderAddress, founderAllocatedTime, amount); founderAllocatedTime = 2; return; } if (founderAllocatedTime == 2) { require(now >= icoEndTime + lockPeriod2); amount = founderAllocation * 50/100; balances[founderAddress] = balances[founderAddress].add(amount); emit AllocateTokensForFounder(founderAddress, founderAllocatedTime, amount); founderAllocatedTime = 3; return; } revert();
function allocateTokensForFounder() external isActive onlyOwnerOrAdmin
// Allocate tokens for founder vested gradually for 4 year function allocateTokensForFounder() external isActive onlyOwnerOrAdmin