More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 128 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Claim | 10715474 | 1640 days ago | IN | 0 ETH | 0.00533542 | ||||
Claim | 10715446 | 1640 days ago | IN | 0 ETH | 0.00228 | ||||
Claim | 6661663 | 2294 days ago | IN | 0 ETH | 0.00161723 | ||||
Claim | 6661537 | 2294 days ago | IN | 0 ETH | 0.001071 | ||||
Claim | 6659150 | 2295 days ago | IN | 0 ETH | 0.00044671 | ||||
Claim | 6658974 | 2295 days ago | IN | 0 ETH | 0.00161723 | ||||
Claim | 6483400 | 2324 days ago | IN | 0 ETH | 0.00009099 | ||||
Claim | 6483381 | 2324 days ago | IN | 0 ETH | 0.00009099 | ||||
Buy Token | 6483367 | 2324 days ago | IN | 0 ETH | 0.00034849 | ||||
Claim | 6390895 | 2339 days ago | IN | 0 ETH | 0.00292641 | ||||
Claim | 6297795 | 2354 days ago | IN | 0 ETH | 0.00022749 | ||||
Claim | 6170677 | 2375 days ago | IN | 0 ETH | 0.00762408 | ||||
Transfer | 6170563 | 2375 days ago | IN | 0 ETH | 0.00208355 | ||||
Claim | 6166069 | 2376 days ago | IN | 0 ETH | 0.00315745 | ||||
Claim | 6134795 | 2381 days ago | IN | 0 ETH | 0.00077011 | ||||
Claim | 6034330 | 2398 days ago | IN | 0 ETH | 0.00254245 | ||||
Claim | 5956162 | 2412 days ago | IN | 0 ETH | 0.00047772 | ||||
Claim | 5956038 | 2412 days ago | IN | 0 ETH | 0.00115516 | ||||
Claim | 5952970 | 2412 days ago | IN | 0 ETH | 0.00034123 | ||||
Claim | 5952958 | 2412 days ago | IN | 0 ETH | 0.00025023 | ||||
Claim | 5951983 | 2412 days ago | IN | 0 ETH | 0.00115516 | ||||
Claim | 5933650 | 2416 days ago | IN | 0 ETH | 0.00115516 | ||||
Claim | 5932885 | 2416 days ago | IN | 0 ETH | 0.00254245 | ||||
Claim | 5921147 | 2418 days ago | IN | 0 ETH | 0.00523674 | ||||
Claim | 5875190 | 2426 days ago | IN | 0 ETH | 0.00385055 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
YUPTimelock
Compiler Version
v0.4.18+commit.9cf6e910
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2018-03-08 */ pragma solidity 0.4.18; /** * @title Ownable * @dev The Ownable contract has an owner address, and provides basic authorization control * functions, this simplifies the implementation of "user permissions". */ contract Ownable { address public owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ function Ownable() public { owner = msg.sender; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(msg.sender == owner); _; } /** * @dev Allows the current owner to transfer control of the contract to a newOwner. * @param newOwner The address to transfer ownership to. */ function transferOwnership(address newOwner) public onlyOwner { require(newOwner != address(0)); OwnershipTransferred(owner, newOwner); owner = newOwner; } } /** * @title ERC20Basic * @dev Simpler version of ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/179 */ contract ERC20Basic { function totalSupply() public view returns (uint256); function balanceOf(address who) public view returns (uint256); function transfer(address to, uint256 value) public returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); } /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ contract ERC20 is ERC20Basic { function allowance(address owner, address spender) public view returns (uint256); function transferFrom(address from, address to, uint256 value) public returns (bool); function approve(address spender, uint256 value) public returns (bool); event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; assert(c / a == b); return c; } /** * @dev Integer division of two numbers, truncating the quotient. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { // assert(b > 0); // Solidity automatically throws when dividing by 0 uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Substracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { assert(b <= a); return a - b; } /** * @dev Adds two numbers, throws on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; assert(c >= a); return c; } } /** * @title Basic token * @dev Basic version of StandardToken, with no allowances. */ 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]); // SafeMath.sub will throw if there is not enough balance. balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); Transfer(msg.sender, _to, _value); return true; } /** * @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 balance) { return balances[_owner]; } } /** * @title Standard ERC20 token * * @dev Implementation of the basic standard token. * @dev https://github.com/ethereum/EIPs/issues/20 * @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol */ contract StandardToken is ERC20, BasicToken { mapping (address => mapping (address => uint256)) internal allowed; /** * @dev Transfer tokens from one address to another * @param _from address The address which you want to send tokens from * @param _to address The address which you want to transfer to * @param _value uint256 the amount of tokens to be transferred */ 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); Transfer(_from, _to, _value); return true; } /** * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender. * * 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 * @param _spender The address which will spend the funds. * @param _value The amount of tokens to be spent. */ function approve(address _spender, uint256 _value) public returns (bool) { allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); return true; } /** * @dev Function to check the amount of tokens that an owner allowed to a spender. * @param _owner address The address which owns the funds. * @param _spender address The address which will spend the funds. * @return A uint256 specifying the amount of tokens still available for the spender. */ function allowance(address _owner, address _spender) public view returns (uint256) { return allowed[_owner][_spender]; } /** * @dev 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) * From MonolithDAO Token.sol * @param _spender The address which will spend the funds. * @param _addedValue The amount of tokens to increase the allowance by. */ function increaseApproval(address _spender, uint _addedValue) public returns (bool) { allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue); Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } /** * @dev 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) * From MonolithDAO Token.sol * @param _spender The address which will spend the funds. * @param _subtractedValue The amount of tokens to decrease the allowance by. */ function decreaseApproval(address _spender, uint _subtractedValue) public returns (bool) { uint oldValue = allowed[msg.sender][_spender]; if (_subtractedValue > oldValue) { allowed[msg.sender][_spender] = 0; } else { allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue); } Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } } /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure. * To use this library you can add a `using SafeERC20 for ERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { function safeTransfer(ERC20Basic token, address to, uint256 value) internal { assert(token.transfer(to, value)); } function safeTransferFrom(ERC20 token, address from, address to, uint256 value) internal { assert(token.transferFrom(from, to, value)); } function safeApprove(ERC20 token, address spender, uint256 value) internal { assert(token.approve(spender, value)); } } contract YUPTimelock is Ownable { using SafeERC20 for StandardToken; using SafeMath for uint256; /** Contract events **/ event IsLocked(uint256 _time); event IsClaiming(uint256 _time); event IsFinalized(uint256 _time); event Claimed(address indexed _to, uint256 _value); event ClaimedFutureUse(address indexed _to, uint256 _value); /** State variables **/ enum ContractState { Locked, Claiming, Finalized } ContractState public state; uint256 constant D160 = 0x0010000000000000000000000000000000000000000; StandardToken public token; mapping(address => uint256) public allocations; mapping(address => bool) public claimed; //indicates whether beneficiary has claimed tokens uint256 public expectedAmount = 193991920 * (10**18); //should hold 193,991,920 x 10^18 (43.59% of total supply) uint256 public amountLocked; uint256 public amountClaimed; uint256 public releaseTime; //investor claim starting time uint256 public claimEndTime; //investor claim expiration time uint256 public fUseAmount; //amount of tokens for future use address fUseBeneficiary; //address of future use tokens beneficiary uint256 fUseReleaseTime; //release time of locked future use tokens /** Modifiers **/ modifier isLocked() { require(state == ContractState.Locked); _; } modifier isClaiming() { require(state == ContractState.Claiming); _; } modifier isFinalized() { require(state == ContractState.Finalized); _; } /** Constructor **/ function YUPTimelock( uint256 _releaseTime, uint256 _amountLocked, address _fUseBeneficiary, uint256 _fUseReleaseTime ) public { require(_releaseTime > now); releaseTime = _releaseTime; amountLocked = _amountLocked; fUseAmount = 84550000 * 10**18; //84,550,000 tokens (with 18 decimals) claimEndTime = now + 60*60*24*275; //9 months (in seconds) from time of lock fUseBeneficiary = _fUseBeneficiary; fUseReleaseTime = _fUseReleaseTime; if (amountLocked != expectedAmount) revert(); } /** Allows the owner to set the token contract address **/ function setTokenAddr(StandardToken tokAddr) public onlyOwner { require(token == address(0x0)); //initialize only once token = tokAddr; state = ContractState.Locked; //switch contract to locked state IsLocked(now); } /** Retrieves individual investor token balance **/ function getUserBalance(address _owner) public view returns (uint256) { if (claimed[_owner] == false && allocations[_owner] > 0) return allocations[_owner]; else return 0; } /** Allows owner to initiate the claiming phase **/ function startClaim() public isLocked onlyOwner { state = ContractState.Claiming; IsClaiming(now); } /** Allows owner to finalize contract (only after investor claimEnd time) **/ function finalize() public isClaiming onlyOwner { require(now >= claimEndTime); state = ContractState.Finalized; IsFinalized(now); } /** Allows the owner to claim all unclaimed investor tokens **/ function ownerClaim() public isFinalized onlyOwner { uint256 remaining = token.balanceOf(this); amountClaimed = amountClaimed.add(remaining); amountLocked = amountLocked.sub(remaining); token.safeTransfer(owner, remaining); Claimed(owner, remaining); } /** Facilitates the assignment of investor addresses and amounts (only before claiming phase starts) **/ function loadBalances(uint256[] data) public isLocked onlyOwner { require(token != address(0x0)); //Fail if token is not set for (uint256 i = 0; i < data.length; i++) { address addr = address(data[i] & (D160 - 1)); uint256 amount = data[i] / D160; allocations[addr] = amount; claimed[addr] = false; } } /** Allows owner to claim future use tokens in favor of fUseBeneficiary account **/ function claimFutureUse() public onlyOwner { require(now >= fUseReleaseTime); amountClaimed = amountClaimed.add(fUseAmount); amountLocked = amountLocked.sub(fUseAmount); token.safeTransfer(fUseBeneficiary, fUseAmount); ClaimedFutureUse(fUseBeneficiary, fUseAmount); } /** Allows presale investors to claim tokens **/ function claim() external isClaiming { require(token != address(0x0)); //Fail if token is not set require(now >= releaseTime); require(allocations[msg.sender] > 0); uint256 amount = allocations[msg.sender]; allocations[msg.sender] = 0; claimed[msg.sender] = true; amountClaimed = amountClaimed.add(amount); amountLocked = amountLocked.sub(amount); token.safeTransfer(msg.sender, amount); Claimed(msg.sender, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":false,"inputs":[{"name":"tokAddr","type":"address"}],"name":"setTokenAddr","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"expectedAmount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"data","type":"uint256[]"}],"name":"loadBalances","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"claimEndTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"getUserBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finalize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"ownerClaim","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"claim","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"allocations","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"amountLocked","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"amountClaimed","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"releaseTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"state","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"claimed","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"fUseAmount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"claimFutureUse","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"startClaim","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"token","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_releaseTime","type":"uint256"},{"name":"_amountLocked","type":"uint256"},{"name":"_fUseBeneficiary","type":"address"},{"name":"_fUseReleaseTime","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_time","type":"uint256"}],"name":"IsLocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_time","type":"uint256"}],"name":"IsClaiming","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_time","type":"uint256"}],"name":"IsFinalized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Claimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"ClaimedFutureUse","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]
Contract Creation Code
60606040526aa077630e30c5c0bdc00000600455341561001e57600080fd5b60405160808061169a83398101604052808051906020019091908051906020019091908051906020019091908051906020019091905050336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555042841115156100a357600080fd5b83600781905550826005819055506a45f028af2695151fc0000060098190555063016a8c80420160088190555081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600b8190555060045460055414151561012a57600080fd5b5050505061155d8061013d6000396000f300606060405260043610610112576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff1680632ebd1e28146101175780632feef2ec146101505780633c21b9681461017957806340d1d255146101d357806347734892146101fc5780634bb278f3146102495780634dbe58891461025e5780634e71d92d1461027357806352a9039c146102885780636c6c7e05146102d55780638da5cb5b146102fe578063ad6b5d0414610353578063b91d40011461037c578063c19d93fb146103a5578063c884ef83146103dc578063cf881ad91461042d578063d2db29af14610456578063ecbfc0771461046b578063f2fde38b14610480578063fc0c546a146104b9575b600080fd5b341561012257600080fd5b61014e600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190505061050e565b005b341561015b57600080fd5b610163610664565b6040518082815260200191505060405180910390f35b341561018457600080fd5b6101d160048080359060200190820180359060200190808060200260200160405190810160405280939291908181526020018383602002808284378201915050505050509190505061066a565b005b34156101de57600080fd5b6101e6610886565b6040518082815260200191505060405180910390f35b341561020757600080fd5b610233600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190505061088c565b6040518082815260200191505060405180910390f35b341561025457600080fd5b61025c610982565b005b341561026957600080fd5b610271610a7f565b005b341561027e57600080fd5b610286610d07565b005b341561029357600080fd5b6102bf600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050610fad565b6040518082815260200191505060405180910390f35b34156102e057600080fd5b6102e8610fc5565b6040518082815260200191505060405180910390f35b341561030957600080fd5b610311610fcb565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b341561035e57600080fd5b610366610ff0565b6040518082815260200191505060405180910390f35b341561038757600080fd5b61038f610ff6565b6040518082815260200191505060405180910390f35b34156103b057600080fd5b6103b8610ffc565b604051808260028111156103c857fe5b60ff16815260200191505060405180910390f35b34156103e757600080fd5b610413600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190505061100f565b604051808215151515815260200191505060405180910390f35b341561043857600080fd5b61044061102f565b6040518082815260200191505060405180910390f35b341561046157600080fd5b610469611035565b005b341561047657600080fd5b61047e6111c0565b005b341561048b57600080fd5b6104b7600480803573ffffffffffffffffffffffffffffffffffffffff169060200190919050506112ac565b005b34156104c457600080fd5b6104cc611401565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561056957600080fd5b600073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415156105c657600080fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060146101000a81548160ff0219169083600281111561062557fe5b02179055507fc10a8f383dbd09182f050cdedda872f0cdda50cc7a0f1a05b916146e04e1bed1426040518082815260200191505060405180910390a150565b60045481565b600080600080600281111561067b57fe5b600060149054906101000a900460ff16600281111561069657fe5b1415156106a257600080fd5b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415156106fd57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415151561075b57600080fd5b600092505b83518310156108805760017401000000000000000000000000000000000000000003848481518110151561079057fe5b906020019060200201511691507401000000000000000000000000000000000000000084848151811015156107c157fe5b906020019060200201518115156107d457fe5b04905080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508280600101935050610760565b50505050565b60085481565b6000801515600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514801561092c57506000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b1561097857600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905061097d565b600090505b919050565b6001600281111561098f57fe5b600060149054906101000a900460ff1660028111156109aa57fe5b1415156109b657600080fd5b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515610a1157600080fd5b6008544210151515610a2257600080fd5b6002600060146101000a81548160ff02191690836002811115610a4157fe5b02179055507f041593e39a5b1e911921c0936cadfcc0aee6e00ae3f6992160e5203cc302430e426040518082815260200191505060405180910390a1565b6000600280811115610a8d57fe5b600060149054906101000a900460ff166002811115610aa857fe5b141515610ab457600080fd5b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515610b0f57600080fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306000604051602001526040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050602060405180830381600087803b1515610bd457600080fd5b6102c65a03f11515610be557600080fd5b505050604051805190509050610c068160065461142790919063ffffffff16565b600681905550610c218160055461144590919063ffffffff16565b600581905550610c956000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661145e9092919063ffffffff16565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd8138f8a3f377c5259ca548e70e4c2de94f129f5a11036a15b69513cba2b426a826040518082815260200191505060405180910390a250565b600060016002811115610d1657fe5b600060149054906101000a900460ff166002811115610d3157fe5b141515610d3d57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614151515610d9b57600080fd5b6007544210151515610dac57600080fd5b6000600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054111515610dfa57600080fd5b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506001600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610eee8160065461142790919063ffffffff16565b600681905550610f098160055461144590919063ffffffff16565b600581905550610f5c3382600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661145e9092919063ffffffff16565b3373ffffffffffffffffffffffffffffffffffffffff167fd8138f8a3f377c5259ca548e70e4c2de94f129f5a11036a15b69513cba2b426a826040518082815260200191505060405180910390a250565b60026020528060005260406000206000915090505481565b60055481565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60065481565b60075481565b600060149054906101000a900460ff1681565b60036020528060005260406000206000915054906101000a900460ff1681565b60095481565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561109057600080fd5b600b5442101515156110a157600080fd5b6110b860095460065461142790919063ffffffff16565b6006819055506110d560095460055461144590919063ffffffff16565b60058190555061114c600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600954600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661145e9092919063ffffffff16565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f6fdb6a75f03f320efc22880b5fc11a48600715f58a8a6b7b34fd333a7b9433ca6009546040518082815260200191505060405180910390a2565b600060028111156111cd57fe5b600060149054906101000a900460ff1660028111156111e857fe5b1415156111f457600080fd5b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561124f57600080fd5b6001600060146101000a81548160ff0219169083600281111561126e57fe5b02179055507f83ecbb2a6624922f3a9de10af0824de47906d392dcf6db442e30b0aecbfbae4c426040518082815260200191505060405180910390a1565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561130757600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415151561134357600080fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080828401905083811015151561143b57fe5b8091505092915050565b600082821115151561145357fe5b818303905092915050565b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836000604051602001526040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b151561150957600080fd5b6102c65a03f1151561151a57600080fd5b50505060405180519050151561152c57fe5b5050505600a165627a7a723058203d33e43fb106745c2014a79df340041eda66f3d04d04953ed4d0d1b6b09188650029000000000000000000000000000000000000000000000000000000005b1ab9e9000000000000000000000000000000000000000000a077630e30c5c0bdc00000000000000000000000000000e7d01f1e45a77f339243a428211a805da7e2ca82000000000000000000000000000000000000000000000000000000005e628569
Deployed Bytecode
0x606060405260043610610112576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff1680632ebd1e28146101175780632feef2ec146101505780633c21b9681461017957806340d1d255146101d357806347734892146101fc5780634bb278f3146102495780634dbe58891461025e5780634e71d92d1461027357806352a9039c146102885780636c6c7e05146102d55780638da5cb5b146102fe578063ad6b5d0414610353578063b91d40011461037c578063c19d93fb146103a5578063c884ef83146103dc578063cf881ad91461042d578063d2db29af14610456578063ecbfc0771461046b578063f2fde38b14610480578063fc0c546a146104b9575b600080fd5b341561012257600080fd5b61014e600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190505061050e565b005b341561015b57600080fd5b610163610664565b6040518082815260200191505060405180910390f35b341561018457600080fd5b6101d160048080359060200190820180359060200190808060200260200160405190810160405280939291908181526020018383602002808284378201915050505050509190505061066a565b005b34156101de57600080fd5b6101e6610886565b6040518082815260200191505060405180910390f35b341561020757600080fd5b610233600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190505061088c565b6040518082815260200191505060405180910390f35b341561025457600080fd5b61025c610982565b005b341561026957600080fd5b610271610a7f565b005b341561027e57600080fd5b610286610d07565b005b341561029357600080fd5b6102bf600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050610fad565b6040518082815260200191505060405180910390f35b34156102e057600080fd5b6102e8610fc5565b6040518082815260200191505060405180910390f35b341561030957600080fd5b610311610fcb565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b341561035e57600080fd5b610366610ff0565b6040518082815260200191505060405180910390f35b341561038757600080fd5b61038f610ff6565b6040518082815260200191505060405180910390f35b34156103b057600080fd5b6103b8610ffc565b604051808260028111156103c857fe5b60ff16815260200191505060405180910390f35b34156103e757600080fd5b610413600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190505061100f565b604051808215151515815260200191505060405180910390f35b341561043857600080fd5b61044061102f565b6040518082815260200191505060405180910390f35b341561046157600080fd5b610469611035565b005b341561047657600080fd5b61047e6111c0565b005b341561048b57600080fd5b6104b7600480803573ffffffffffffffffffffffffffffffffffffffff169060200190919050506112ac565b005b34156104c457600080fd5b6104cc611401565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561056957600080fd5b600073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415156105c657600080fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060146101000a81548160ff0219169083600281111561062557fe5b02179055507fc10a8f383dbd09182f050cdedda872f0cdda50cc7a0f1a05b916146e04e1bed1426040518082815260200191505060405180910390a150565b60045481565b600080600080600281111561067b57fe5b600060149054906101000a900460ff16600281111561069657fe5b1415156106a257600080fd5b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415156106fd57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415151561075b57600080fd5b600092505b83518310156108805760017401000000000000000000000000000000000000000003848481518110151561079057fe5b906020019060200201511691507401000000000000000000000000000000000000000084848151811015156107c157fe5b906020019060200201518115156107d457fe5b04905080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508280600101935050610760565b50505050565b60085481565b6000801515600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514801561092c57506000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b1561097857600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905061097d565b600090505b919050565b6001600281111561098f57fe5b600060149054906101000a900460ff1660028111156109aa57fe5b1415156109b657600080fd5b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515610a1157600080fd5b6008544210151515610a2257600080fd5b6002600060146101000a81548160ff02191690836002811115610a4157fe5b02179055507f041593e39a5b1e911921c0936cadfcc0aee6e00ae3f6992160e5203cc302430e426040518082815260200191505060405180910390a1565b6000600280811115610a8d57fe5b600060149054906101000a900460ff166002811115610aa857fe5b141515610ab457600080fd5b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515610b0f57600080fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306000604051602001526040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050602060405180830381600087803b1515610bd457600080fd5b6102c65a03f11515610be557600080fd5b505050604051805190509050610c068160065461142790919063ffffffff16565b600681905550610c218160055461144590919063ffffffff16565b600581905550610c956000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661145e9092919063ffffffff16565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd8138f8a3f377c5259ca548e70e4c2de94f129f5a11036a15b69513cba2b426a826040518082815260200191505060405180910390a250565b600060016002811115610d1657fe5b600060149054906101000a900460ff166002811115610d3157fe5b141515610d3d57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614151515610d9b57600080fd5b6007544210151515610dac57600080fd5b6000600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054111515610dfa57600080fd5b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506001600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610eee8160065461142790919063ffffffff16565b600681905550610f098160055461144590919063ffffffff16565b600581905550610f5c3382600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661145e9092919063ffffffff16565b3373ffffffffffffffffffffffffffffffffffffffff167fd8138f8a3f377c5259ca548e70e4c2de94f129f5a11036a15b69513cba2b426a826040518082815260200191505060405180910390a250565b60026020528060005260406000206000915090505481565b60055481565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60065481565b60075481565b600060149054906101000a900460ff1681565b60036020528060005260406000206000915054906101000a900460ff1681565b60095481565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561109057600080fd5b600b5442101515156110a157600080fd5b6110b860095460065461142790919063ffffffff16565b6006819055506110d560095460055461144590919063ffffffff16565b60058190555061114c600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600954600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661145e9092919063ffffffff16565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f6fdb6a75f03f320efc22880b5fc11a48600715f58a8a6b7b34fd333a7b9433ca6009546040518082815260200191505060405180910390a2565b600060028111156111cd57fe5b600060149054906101000a900460ff1660028111156111e857fe5b1415156111f457600080fd5b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561124f57600080fd5b6001600060146101000a81548160ff0219169083600281111561126e57fe5b02179055507f83ecbb2a6624922f3a9de10af0824de47906d392dcf6db442e30b0aecbfbae4c426040518082815260200191505060405180910390a1565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561130757600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415151561134357600080fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080828401905083811015151561143b57fe5b8091505092915050565b600082821115151561145357fe5b818303905092915050565b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836000604051602001526040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b151561150957600080fd5b6102c65a03f1151561151a57600080fd5b50505060405180519050151561152c57fe5b5050505600a165627a7a723058203d33e43fb106745c2014a79df340041eda66f3d04d04953ed4d0d1b6b09188650029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000005b1ab9e9000000000000000000000000000000000000000000a077630e30c5c0bdc00000000000000000000000000000e7d01f1e45a77f339243a428211a805da7e2ca82000000000000000000000000000000000000000000000000000000005e628569
-----Decoded View---------------
Arg [0] : _releaseTime (uint256): 1528478185
Arg [1] : _amountLocked (uint256): 193991920000000000000000000
Arg [2] : _fUseBeneficiary (address): 0xE7d01f1E45a77f339243a428211a805da7e2Ca82
Arg [3] : _fUseReleaseTime (uint256): 1583514985
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000005b1ab9e9
Arg [1] : 000000000000000000000000000000000000000000a077630e30c5c0bdc00000
Arg [2] : 000000000000000000000000e7d01f1e45a77f339243a428211a805da7e2ca82
Arg [3] : 000000000000000000000000000000000000000000000000000000005e628569
Swarm Source
bzzr://3d33e43fb106745c2014a79df340041eda66f3d04d04953ed4d0d1b6b0918865
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.