Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 14 from a total of 14 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 6704067 | 2246 days ago | IN | 0 ETH | 0.00075184 | ||||
Transfer | 6704010 | 2246 days ago | IN | 0.0002 ETH | 0.00082143 | ||||
Transfer | 6703976 | 2246 days ago | IN | 0.0003 ETH | 0.00151599 | ||||
Transfer | 6703954 | 2246 days ago | IN | 0.0002 ETH | 0.00073909 | ||||
Transfer | 6703954 | 2246 days ago | IN | 0.0002 ETH | 0.00076408 | ||||
Transfer | 6703913 | 2246 days ago | IN | 0.0002 ETH | 0.00073909 | ||||
Transfer | 6703872 | 2246 days ago | IN | 0.0001 ETH | 0.0005797 | ||||
Transfer | 6703859 | 2246 days ago | IN | 0.0002 ETH | 0.00059583 | ||||
Transfer | 6703836 | 2246 days ago | IN | 0.0002 ETH | 0.00010597 | ||||
Transfer | 6703825 | 2246 days ago | IN | 0.0001 ETH | 0.00046614 | ||||
Transfer | 6703822 | 2246 days ago | IN | 0.0001 ETH | 0.00046614 | ||||
Transfer | 6703822 | 2246 days ago | IN | 0.0003 ETH | 0.00069817 | ||||
Transfer | 6703806 | 2246 days ago | IN | 0.0001 ETH | 0.00069478 | ||||
Transfer | 6703721 | 2246 days ago | IN | 0.0001 ETH | 0.00010696 |
Latest 20 internal transactions
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
6704067 | 2246 days ago | 0.000054 ETH | ||||
6704067 | 2246 days ago | 0.000006 ETH | ||||
6704010 | 2246 days ago | 0.00007012 ETH | ||||
6704010 | 2246 days ago | 0.00012 ETH | ||||
6704010 | 2246 days ago | 0.00000388 ETH | ||||
6703976 | 2246 days ago | 0.00003518 ETH | ||||
6703976 | 2246 days ago | 0.00025 ETH | ||||
6703976 | 2246 days ago | 0.00000582 ETH | ||||
6703954 | 2246 days ago | 0.00019012 ETH | ||||
6703954 | 2246 days ago | 0.00000388 ETH | ||||
6703954 | 2246 days ago | 0.00019012 ETH | ||||
6703954 | 2246 days ago | 0.00000388 ETH | ||||
6703913 | 2246 days ago | 0.00019012 ETH | ||||
6703913 | 2246 days ago | 0.00000388 ETH | ||||
6703872 | 2246 days ago | 0.00012054 ETH | ||||
6703872 | 2246 days ago | 0.00013 ETH | ||||
6703872 | 2246 days ago | 0.000125 ETH | ||||
6703872 | 2246 days ago | 0.00036 ETH | ||||
6703872 | 2246 days ago | 0.00012 ETH | ||||
6703872 | 2246 days ago | 0.00001746 ETH |
Loading...
Loading
Contract Name:
Hutay
Compiler Version
v0.4.25+commit.59dbf8f1
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2018-11-14 */ pragma solidity ^0.4.25; contract Hutay { address public support; uint constant public PRIZE_PERCENT = 3; uint constant public SUPPORT_PERCENT = 2; uint constant public MAX_INVESTMENT = 0.0003 ether; uint constant public MIN_INVESTMENT = 0.0001 ether; uint constant public MIN_INVESTMENT_FOR_PRIZE = 0.0002 ether; uint constant public GAS_PRICE_MAX = 20; uint constant public MAX_IDLE_TIME = 10 minutes; uint constant public SIZE_TO_SAVE_INVEST = 5; uint constant public TIME_TO_SAVE_INVEST = 5 minutes; uint8[] MULTIPLIERS = [ 120, 125, 130 ]; struct Deposit { address depositor; uint128 deposit; uint128 expect; } struct DepositCount { int128 stage; uint128 count; } struct LastDepositInfo { uint128 index; uint128 time; } Deposit[] private queue; uint public currentReceiverIndex = 0; uint public currentQueueSize = 0; LastDepositInfo public lastDepositInfoForPrize; LastDepositInfo public previosDepositInfoForPrize; uint public prizeAmount = 0; uint public prizeStageAmount = 0; int public stage = 0; uint128 public lastDepositTime = 0; mapping(address => DepositCount) public depositsMade; constructor() public { support = msg.sender; proceedToNewStage(getCurrentStageByTime() + 1); } function () public payable { require(tx.gasprice <= GAS_PRICE_MAX * 1000000000); require(gasleft() >= 250000, "We require more gas!"); checkAndUpdateStage(); if(msg.value > 0){ require(msg.value >= MIN_INVESTMENT && msg.value <= MAX_INVESTMENT); require(lastDepositInfoForPrize.time <= now + MAX_IDLE_TIME); require(getNextStageStartTime() >= now + MAX_IDLE_TIME + 10 minutes); if(currentQueueSize < SIZE_TO_SAVE_INVEST){ addDeposit(msg.sender, msg.value); } else { addDeposit(msg.sender, msg.value); pay(); } } else if(msg.value == 0 && currentQueueSize > SIZE_TO_SAVE_INVEST){ withdrawPrize(); } else if(msg.value == 0){ require(currentQueueSize <= SIZE_TO_SAVE_INVEST); require(lastDepositTime > 0 && (now - lastDepositTime) >= TIME_TO_SAVE_INVEST); returnPays(); } } function pay() private { uint balance = address(this).balance; uint128 money = 0; if(balance > prizeStageAmount) money = uint128(balance - prizeStageAmount); uint128 moneyS = uint128(money*SUPPORT_PERCENT/100); support.send(moneyS); money -= moneyS; for(uint i=currentReceiverIndex; i<currentQueueSize; i++){ Deposit storage dep = queue[i]; if(money >= dep.expect){ dep.depositor.send(dep.expect); money -= dep.expect; delete queue[i]; }else{ dep.depositor.send(money); money -= dep.expect; break; } if(gasleft() <= 50000) break; } currentReceiverIndex = i; } function returnPays() private { uint balance = address(this).balance; uint128 money = 0; if(balance > prizeAmount) money = uint128(balance - prizeAmount); for(uint i=currentReceiverIndex; i<currentQueueSize; i++){ Deposit storage dep = queue[i]; dep.depositor.send(dep.deposit); money -= dep.deposit; delete queue[i]; } prizeStageAmount = 0; proceedToNewStage(getCurrentStageByTime() + 1); } function addDeposit(address depositor, uint value) private { DepositCount storage c = depositsMade[depositor]; if(c.stage != stage){ c.stage = int128(stage); c.count = 0; } if(value >= MIN_INVESTMENT_FOR_PRIZE){ previosDepositInfoForPrize = lastDepositInfoForPrize; lastDepositInfoForPrize = LastDepositInfo(uint128(currentQueueSize), uint128(now)); } uint multiplier = getDepositorMultiplier(depositor); push(depositor, value, value*multiplier/100); c.count++; lastDepositTime = uint128(now); prizeStageAmount += value*PRIZE_PERCENT/100; } function checkAndUpdateStage() private { int _stage = getCurrentStageByTime(); require(_stage >= stage); if(_stage != stage){ proceedToNewStage(_stage); } } function proceedToNewStage(int _stage) private { stage = _stage; currentQueueSize = 0; currentReceiverIndex = 0; lastDepositTime = 0; prizeAmount += prizeStageAmount; prizeStageAmount = 0; delete queue; delete previosDepositInfoForPrize; delete lastDepositInfoForPrize; } function withdrawPrize() private { require(lastDepositInfoForPrize.time > 0 && lastDepositInfoForPrize.time <= now - MAX_IDLE_TIME, "The last depositor is not confirmed yet"); require(currentReceiverIndex <= lastDepositInfoForPrize.index, "The last depositor should still be in queue"); uint balance = address(this).balance; uint prize = balance; if(previosDepositInfoForPrize.index > 0){ uint prizePrevios = prize*10/100; queue[previosDepositInfoForPrize.index].depositor.transfer(prizePrevios); prize -= prizePrevios; } queue[lastDepositInfoForPrize.index].depositor.send(prize); proceedToNewStage(getCurrentStageByTime() + 1); } function push(address depositor, uint deposit, uint expect) private { Deposit memory dep = Deposit(depositor, uint128(deposit), uint128(expect)); assert(currentQueueSize <= queue.length); if(queue.length == currentQueueSize) queue.push(dep); else queue[currentQueueSize] = dep; currentQueueSize++; } function getDeposit(uint idx) public view returns (address depositor, uint deposit, uint expect){ Deposit storage dep = queue[idx]; return (dep.depositor, dep.deposit, dep.expect); } function getDepositsCount(address depositor) public view returns (uint) { uint c = 0; for(uint i=currentReceiverIndex; i<currentQueueSize; ++i){ if(queue[i].depositor == depositor) c++; } return c; } function getQueueLength() public view returns (uint) { return currentQueueSize - currentReceiverIndex; } function getDepositorMultiplier(address depositor) public view returns (uint) { DepositCount storage c = depositsMade[depositor]; uint count = 0; if(c.stage == getCurrentStageByTime()) count = c.count; if(count < MULTIPLIERS.length) return MULTIPLIERS[count]; return MULTIPLIERS[MULTIPLIERS.length - 1]; } function getCurrentStageByTime() public view returns (int) { return int(now - 17847 * 86400 - 16 * 3600) / (24 * 60 * 60); } function getNextStageStartTime() public view returns (uint) { return 17847 * 86400 + 16 * 3600 + uint((getCurrentStageByTime() + 1) * 24 * 60 * 60); } function getCurrentCandidateForPrize() public view returns (address addr, int timeLeft){ if(currentReceiverIndex <= lastDepositInfoForPrize.index && lastDepositInfoForPrize.index < currentQueueSize){ Deposit storage d = queue[lastDepositInfoForPrize.index]; addr = d.depositor; timeLeft = int(lastDepositInfoForPrize.time + MAX_IDLE_TIME) - int(now); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"getNextStageStartTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"currentQueueSize","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lastDepositInfoForPrize","outputs":[{"name":"index","type":"uint128"},{"name":"time","type":"uint128"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"support","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"SUPPORT_PERCENT","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getCurrentStageByTime","outputs":[{"name":"","type":"int256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"currentReceiverIndex","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"depositor","type":"address"}],"name":"getDepositorMultiplier","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"GAS_PRICE_MAX","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"MAX_INVESTMENT","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"MIN_INVESTMENT","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"prizeAmount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"PRIZE_PERCENT","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"MIN_INVESTMENT_FOR_PRIZE","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"idx","type":"uint256"}],"name":"getDeposit","outputs":[{"name":"depositor","type":"address"},{"name":"deposit","type":"uint256"},{"name":"expect","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"prizeStageAmount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"depositsMade","outputs":[{"name":"stage","type":"int128"},{"name":"count","type":"uint128"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getQueueLength","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"SIZE_TO_SAVE_INVEST","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lastDepositTime","outputs":[{"name":"","type":"uint128"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"stage","outputs":[{"name":"","type":"int256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"depositor","type":"address"}],"name":"getDepositsCount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"MAX_IDLE_TIME","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"TIME_TO_SAVE_INVEST","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getCurrentCandidateForPrize","outputs":[{"name":"addr","type":"address"},{"name":"timeLeft","type":"int256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"previosDepositInfoForPrize","outputs":[{"name":"index","type":"uint128"},{"name":"time","type":"uint128"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"}]
Contract Creation Code
60e060405260786080908152607d60a052608260c05262000025906001906003620000fb565b5060006003819055600481905560078190556008819055600955600a80546001608060020a03191690553480156200005c57600080fd5b5060008054600160a060020a0319163317905562000098620000866401000000006200009e810204565b600101640100000000620000af810204565b6200021d565b6201518042635be9a37f1901055b90565b6009819055600060048190556003819055600a80546001608060020a031916905560088054600780549091019055819055620000ee90600290620001a8565b5060006006819055600555565b82805482825590600052602060002090601f01602090048101928215620001965791602002820160005b838211156200016557835183826101000a81548160ff021916908360ff160217905550926020019260010160208160000104928301926001030262000125565b8015620001945782816101000a81549060ff021916905560010160208160000104928301926001030262000165565b505b50620001a4929150620001ce565b5090565b5080546000825560020290600052602060002090810190620001cb9190620001ef565b50565b620000ac91905b80821115620001a457805460ff19168155600101620001d5565b620000ac91905b80821115620001a4578054600160a060020a031916815560006001820155600201620001f6565b6112a2806200022d6000396000f3006080604052600436106101525763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166239d9db81146102f357806307fc76ad1461031a5780630c739de31461032f578063119f87471461036a57806312e3c9b71461039b5780631dec8585146103b05780632d95663b146103c55780633257bd32146103da57806338da7d33146103fb5780634c76361e146104105780634ef8ff3314610425578063785fa6271461043a578063947f4ea81461044f57806395463041146104645780639f9fb96814610479578063a836a9ab146104b9578063acce7dcb146104ce578063b8f7700514610517578063bcc1145a1461052c578063bd28f35114610541578063c040e6b814610572578063c67f7df514610587578063d24d7d20146105a8578063d40cb1cf146105bd578063d895530c146105d2578063e4ae56ae1461060a575b6404a817c8003a111561016457600080fd5b6203d0905a10156101d657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f57652072657175697265206d6f72652067617321000000000000000000000000604482015290519081900360640190fd5b6101de61061f565b600034111561027c57655af3107a400034101580156102045750660110d9316ec0003411155b151561020f57600080fd5b6005546102584201608060020a9091046001608060020a0316111561023357600080fd5b6104b04201610240610650565b101561024b57600080fd5b60056004541015610265576102603334610672565b610277565b61026f3334610672565b6102776107ba565b6102f1565b3415801561028c57506005600454115b1561029957610277610980565b3415156102f157600454600510156102b057600080fd5b600a5460006001608060020a039091161180156102de5750600a5461012c6001608060020a03909116420310155b15156102e957600080fd5b6102f1610bea565b005b3480156102ff57600080fd5b50610308610650565b60408051918252519081900360200190f35b34801561032657600080fd5b50610308610ce2565b34801561033b57600080fd5b50610344610ce8565b604080516001608060020a03938416815291909216602082015281519081900390910190f35b34801561037657600080fd5b5061037f610d02565b60408051600160a060020a039092168252519081900360200190f35b3480156103a757600080fd5b50610308610d11565b3480156103bc57600080fd5b50610308610d16565b3480156103d157600080fd5b50610308610d26565b3480156103e657600080fd5b50610308600160a060020a0360043516610d2c565b34801561040757600080fd5b50610308610deb565b34801561041c57600080fd5b50610308610df0565b34801561043157600080fd5b50610308610dfb565b34801561044657600080fd5b50610308610e05565b34801561045b57600080fd5b50610308610e0b565b34801561047057600080fd5b50610308610e10565b34801561048557600080fd5b50610491600435610e1a565b60408051600160a060020a039094168452602084019290925282820152519081900360600190f35b3480156104c557600080fd5b50610308610e73565b3480156104da57600080fd5b506104ef600160a060020a0360043516610e79565b60408051600f93840b90930b83526001608060020a0390911660208301528051918290030190f35b34801561052357600080fd5b50610308610ea1565b34801561053857600080fd5b50610308610eab565b34801561054d57600080fd5b50610556610eb0565b604080516001608060020a039092168252519081900360200190f35b34801561057e57600080fd5b50610308610ebf565b34801561059357600080fd5b50610308600160a060020a0360043516610ec5565b3480156105b457600080fd5b50610308610f27565b3480156105c957600080fd5b50610308610f2d565b3480156105de57600080fd5b506105e7610f33565b60408051600160a060020a03909316835260208301919091528051918290030190f35b34801561061657600080fd5b50610344610fc9565b6000610629610d16565b60095490915081121561063b57600080fd5b600954811461064d5761064d81610fe3565b50565b600061065a610d16565b600101601802603c02603c02635be9a3800190505b90565b600160a060020a0382166000908152600b602052604081206009548154919291600f90810b900b146106cb5760095482546fffffffffffffffffffffffffffffffff19166001608060020a03600f9290920b8216171682555b65b5e620f48000831061073f576005805460068054608060020a8084046001608060020a0390811682026fffffffffffffffffffffffffffffffff19938416828716178216179093556040805180820190915260045484168082524285166020909201829052910291909316909217161790555b61074884610d2c565b905061075a8484606481850204611036565b81546001608060020a03808216608060020a9283900482166001018216909202919091178355600a80546fffffffffffffffffffffffffffffffff1916429092169190911790556064600384026008805492909104909101905550505050565b6008543031906000908190819081908511156107d857600854850393505b60646001608060020a03851660020260008054604051939092049550600160a060020a03909116916001608060020a03861680156108fc0292909190818181858888f15050600354968690039694505050505b60045482101561097757600280548390811061084357fe5b600091825260209091206002909102016001810154909150608060020a90046001608060020a03908116908516106109105780546001820154604051600160a060020a03909216916001608060020a03608060020a9092049190911680156108fc02916000818181858888f150505050600182015460028054608060020a9092046001608060020a0316909603959150839081106108dd57fe5b600091825260208220600290910201805473ffffffffffffffffffffffffffffffffffffffff191681556001015561095e565b8054604051600160a060020a03909116906001608060020a03861680156108fc02916000818181858888f1505050506001820154608060020a90046001608060020a03169094039350610977565b61c3505a1161096c57610977565b60019091019061082b565b50600355505050565b60055460009081908190608060020a90046001608060020a0316811080156109c05750600554426102571901608060020a9091046001608060020a031611155b1515610a5357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f546865206c617374206465706f7369746f72206973206e6f7420636f6e66697260448201527f6d65642079657400000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b6005546003546001608060020a039091161015610af757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f546865206c617374206465706f7369746f722073686f756c64207374696c6c2060448201527f626520696e207175657565000000000000000000000000000000000000000000606482015290519081900360840190fd5b6006543031935083925060006001608060020a039091161115610b825750600654600280546064600a850204926001608060020a0316908110610b3657fe5b60009182526020822060029091020154604051600160a060020a039091169183156108fc02918491818181858888f19350505050158015610b7b573d6000803e3d6000fd5b5080820391505b6005546002805490916001608060020a0316908110610b9d57fe5b60009182526020822060029091020154604051600160a060020a039091169184156108fc02918591818181858888f1935050505050610be5610bdd610d16565b600101610fe3565b505050565b60075430319060009081908190841115610c0657600754840392505b60035491505b600454821015610ccc576002805483908110610c2457fe5b60009182526020822060029091020180546001820154604051929450600160a060020a03909116926001608060020a0390911680156108fc02929091818181858888f15050506001830154600280546001608060020a039092169096039592508491508110610c8f57fe5b600091825260208220600290910201805473ffffffffffffffffffffffffffffffffffffffff191681556001908101919091559190910190610c0c565b6000600855610cdc610bdd610d16565b50505050565b60045481565b6005546001608060020a0380821691608060020a90041682565b600054600160a060020a031681565b600281565b6201518042635be9a37f19010590565b60035481565b600160a060020a0381166000908152600b6020526040812081610d4d610d16565b8254600f90810b900b1415610d7057508054608060020a90046001608060020a03165b600154811015610daf576001805482908110610d8857fe5b60009182526020918290209181049091015460ff601f9092166101000a9004169250610de4565b600180546000198101908110610dc157fe5b60009182526020918290209181049091015460ff601f9092166101000a90041692505b5050919050565b601481565b660110d9316ec00081565b655af3107a400081565b60075481565b600381565b65b5e620f4800081565b600080600080600285815481101515610e2f57fe5b600091825260209091206002909102018054600190910154600160a060020a03909116966001608060020a038083169750608060020a909204909116945092505050565b60085481565b600b60205260009081526040902054600f81900b90608060020a90046001608060020a031682565b6003546004540390565b600581565b600a546001608060020a031681565b60095481565b60035460009081905b600454811015610f205783600160a060020a0316600282815481101515610ef157fe5b6000918252602090912060029091020154600160a060020a03161415610f18576001909101905b600101610ece565b5092915050565b61025881565b61012c81565b600554600354600091829182916001608060020a031610801590610f6357506004546005546001608060020a0316105b15610fc4576005546002805490916001608060020a0316908110610f8357fe5b600091825260209091206002909102018054600554600160a060020a039091169450426001608060020a03608060020a909204919091160361025801925090505b509091565b6006546001608060020a0380821691608060020a90041682565b6009819055600060048190556003819055600a80546fffffffffffffffffffffffffffffffff1916905560088054600780549091019055819055611029906002906111f9565b5060006006819055600555565b61103e61121a565b5060408051606081018252600160a060020a03851681526001608060020a038085166020830152831691810191909152600254600454111561107c57fe5b600454600254141561115457600280546001810182556000829052825191027f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace81018054600160a060020a0390931673ffffffffffffffffffffffffffffffffffffffff199093169290921790915560208201517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5acf909101805460408401516001608060020a03908116608060020a029381166fffffffffffffffffffffffffffffffff1990921691909117169190911790556111ea565b80600260045481548110151561116657fe5b600091825260209182902083516002909202018054600160a060020a0390921673ffffffffffffffffffffffffffffffffffffffff1990921691909117815590820151600190910180546040909301516001608060020a03908116608060020a029281166fffffffffffffffffffffffffffffffff19909416939093179092161790555b50506004805460010190555050565b508054600082556002029060005260206000209081019061064d919061123a565b604080516060810182526000808252602082018190529181019190915290565b61066f91905b8082111561127257805473ffffffffffffffffffffffffffffffffffffffff1916815560006001820155600201611240565b50905600a165627a7a72305820316c3b3450e4ab944b15416f865bc0131b228c07269f02b870a82e500a9a24900029
Deployed Bytecode
0x6080604052600436106101525763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166239d9db81146102f357806307fc76ad1461031a5780630c739de31461032f578063119f87471461036a57806312e3c9b71461039b5780631dec8585146103b05780632d95663b146103c55780633257bd32146103da57806338da7d33146103fb5780634c76361e146104105780634ef8ff3314610425578063785fa6271461043a578063947f4ea81461044f57806395463041146104645780639f9fb96814610479578063a836a9ab146104b9578063acce7dcb146104ce578063b8f7700514610517578063bcc1145a1461052c578063bd28f35114610541578063c040e6b814610572578063c67f7df514610587578063d24d7d20146105a8578063d40cb1cf146105bd578063d895530c146105d2578063e4ae56ae1461060a575b6404a817c8003a111561016457600080fd5b6203d0905a10156101d657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f57652072657175697265206d6f72652067617321000000000000000000000000604482015290519081900360640190fd5b6101de61061f565b600034111561027c57655af3107a400034101580156102045750660110d9316ec0003411155b151561020f57600080fd5b6005546102584201608060020a9091046001608060020a0316111561023357600080fd5b6104b04201610240610650565b101561024b57600080fd5b60056004541015610265576102603334610672565b610277565b61026f3334610672565b6102776107ba565b6102f1565b3415801561028c57506005600454115b1561029957610277610980565b3415156102f157600454600510156102b057600080fd5b600a5460006001608060020a039091161180156102de5750600a5461012c6001608060020a03909116420310155b15156102e957600080fd5b6102f1610bea565b005b3480156102ff57600080fd5b50610308610650565b60408051918252519081900360200190f35b34801561032657600080fd5b50610308610ce2565b34801561033b57600080fd5b50610344610ce8565b604080516001608060020a03938416815291909216602082015281519081900390910190f35b34801561037657600080fd5b5061037f610d02565b60408051600160a060020a039092168252519081900360200190f35b3480156103a757600080fd5b50610308610d11565b3480156103bc57600080fd5b50610308610d16565b3480156103d157600080fd5b50610308610d26565b3480156103e657600080fd5b50610308600160a060020a0360043516610d2c565b34801561040757600080fd5b50610308610deb565b34801561041c57600080fd5b50610308610df0565b34801561043157600080fd5b50610308610dfb565b34801561044657600080fd5b50610308610e05565b34801561045b57600080fd5b50610308610e0b565b34801561047057600080fd5b50610308610e10565b34801561048557600080fd5b50610491600435610e1a565b60408051600160a060020a039094168452602084019290925282820152519081900360600190f35b3480156104c557600080fd5b50610308610e73565b3480156104da57600080fd5b506104ef600160a060020a0360043516610e79565b60408051600f93840b90930b83526001608060020a0390911660208301528051918290030190f35b34801561052357600080fd5b50610308610ea1565b34801561053857600080fd5b50610308610eab565b34801561054d57600080fd5b50610556610eb0565b604080516001608060020a039092168252519081900360200190f35b34801561057e57600080fd5b50610308610ebf565b34801561059357600080fd5b50610308600160a060020a0360043516610ec5565b3480156105b457600080fd5b50610308610f27565b3480156105c957600080fd5b50610308610f2d565b3480156105de57600080fd5b506105e7610f33565b60408051600160a060020a03909316835260208301919091528051918290030190f35b34801561061657600080fd5b50610344610fc9565b6000610629610d16565b60095490915081121561063b57600080fd5b600954811461064d5761064d81610fe3565b50565b600061065a610d16565b600101601802603c02603c02635be9a3800190505b90565b600160a060020a0382166000908152600b602052604081206009548154919291600f90810b900b146106cb5760095482546fffffffffffffffffffffffffffffffff19166001608060020a03600f9290920b8216171682555b65b5e620f48000831061073f576005805460068054608060020a8084046001608060020a0390811682026fffffffffffffffffffffffffffffffff19938416828716178216179093556040805180820190915260045484168082524285166020909201829052910291909316909217161790555b61074884610d2c565b905061075a8484606481850204611036565b81546001608060020a03808216608060020a9283900482166001018216909202919091178355600a80546fffffffffffffffffffffffffffffffff1916429092169190911790556064600384026008805492909104909101905550505050565b6008543031906000908190819081908511156107d857600854850393505b60646001608060020a03851660020260008054604051939092049550600160a060020a03909116916001608060020a03861680156108fc0292909190818181858888f15050600354968690039694505050505b60045482101561097757600280548390811061084357fe5b600091825260209091206002909102016001810154909150608060020a90046001608060020a03908116908516106109105780546001820154604051600160a060020a03909216916001608060020a03608060020a9092049190911680156108fc02916000818181858888f150505050600182015460028054608060020a9092046001608060020a0316909603959150839081106108dd57fe5b600091825260208220600290910201805473ffffffffffffffffffffffffffffffffffffffff191681556001015561095e565b8054604051600160a060020a03909116906001608060020a03861680156108fc02916000818181858888f1505050506001820154608060020a90046001608060020a03169094039350610977565b61c3505a1161096c57610977565b60019091019061082b565b50600355505050565b60055460009081908190608060020a90046001608060020a0316811080156109c05750600554426102571901608060020a9091046001608060020a031611155b1515610a5357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f546865206c617374206465706f7369746f72206973206e6f7420636f6e66697260448201527f6d65642079657400000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b6005546003546001608060020a039091161015610af757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f546865206c617374206465706f7369746f722073686f756c64207374696c6c2060448201527f626520696e207175657565000000000000000000000000000000000000000000606482015290519081900360840190fd5b6006543031935083925060006001608060020a039091161115610b825750600654600280546064600a850204926001608060020a0316908110610b3657fe5b60009182526020822060029091020154604051600160a060020a039091169183156108fc02918491818181858888f19350505050158015610b7b573d6000803e3d6000fd5b5080820391505b6005546002805490916001608060020a0316908110610b9d57fe5b60009182526020822060029091020154604051600160a060020a039091169184156108fc02918591818181858888f1935050505050610be5610bdd610d16565b600101610fe3565b505050565b60075430319060009081908190841115610c0657600754840392505b60035491505b600454821015610ccc576002805483908110610c2457fe5b60009182526020822060029091020180546001820154604051929450600160a060020a03909116926001608060020a0390911680156108fc02929091818181858888f15050506001830154600280546001608060020a039092169096039592508491508110610c8f57fe5b600091825260208220600290910201805473ffffffffffffffffffffffffffffffffffffffff191681556001908101919091559190910190610c0c565b6000600855610cdc610bdd610d16565b50505050565b60045481565b6005546001608060020a0380821691608060020a90041682565b600054600160a060020a031681565b600281565b6201518042635be9a37f19010590565b60035481565b600160a060020a0381166000908152600b6020526040812081610d4d610d16565b8254600f90810b900b1415610d7057508054608060020a90046001608060020a03165b600154811015610daf576001805482908110610d8857fe5b60009182526020918290209181049091015460ff601f9092166101000a9004169250610de4565b600180546000198101908110610dc157fe5b60009182526020918290209181049091015460ff601f9092166101000a90041692505b5050919050565b601481565b660110d9316ec00081565b655af3107a400081565b60075481565b600381565b65b5e620f4800081565b600080600080600285815481101515610e2f57fe5b600091825260209091206002909102018054600190910154600160a060020a03909116966001608060020a038083169750608060020a909204909116945092505050565b60085481565b600b60205260009081526040902054600f81900b90608060020a90046001608060020a031682565b6003546004540390565b600581565b600a546001608060020a031681565b60095481565b60035460009081905b600454811015610f205783600160a060020a0316600282815481101515610ef157fe5b6000918252602090912060029091020154600160a060020a03161415610f18576001909101905b600101610ece565b5092915050565b61025881565b61012c81565b600554600354600091829182916001608060020a031610801590610f6357506004546005546001608060020a0316105b15610fc4576005546002805490916001608060020a0316908110610f8357fe5b600091825260209091206002909102018054600554600160a060020a039091169450426001608060020a03608060020a909204919091160361025801925090505b509091565b6006546001608060020a0380821691608060020a90041682565b6009819055600060048190556003819055600a80546fffffffffffffffffffffffffffffffff1916905560088054600780549091019055819055611029906002906111f9565b5060006006819055600555565b61103e61121a565b5060408051606081018252600160a060020a03851681526001608060020a038085166020830152831691810191909152600254600454111561107c57fe5b600454600254141561115457600280546001810182556000829052825191027f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace81018054600160a060020a0390931673ffffffffffffffffffffffffffffffffffffffff199093169290921790915560208201517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5acf909101805460408401516001608060020a03908116608060020a029381166fffffffffffffffffffffffffffffffff1990921691909117169190911790556111ea565b80600260045481548110151561116657fe5b600091825260209182902083516002909202018054600160a060020a0390921673ffffffffffffffffffffffffffffffffffffffff1990921691909117815590820151600190910180546040909301516001608060020a03908116608060020a029281166fffffffffffffffffffffffffffffffff19909416939093179092161790555b50506004805460010190555050565b508054600082556002029060005260206000209081019061064d919061123a565b604080516060810182526000808252602082018190529181019190915290565b61066f91905b8082111561127257805473ffffffffffffffffffffffffffffffffffffffff1916815560006001820155600201611240565b50905600a165627a7a72305820316c3b3450e4ab944b15416f865bc0131b228c07269f02b870a82e500a9a24900029
Swarm Source
bzzr://316c3b3450e4ab944b15416f865bc0131b228c07269f02b870a82e500a9a2490
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.