Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Multichain Info
No addresses found
Latest 25 from a total of 51 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
End | 5534334 | 2520 days ago | IN | 0 ETH | 0.00042902 | ||||
Add Community Gr... | 5534320 | 2520 days ago | IN | 0 ETH | 0.00147852 | ||||
Add Community Gr... | 5534318 | 2520 days ago | IN | 0 ETH | 0.00147852 | ||||
Add Community Gr... | 5534316 | 2520 days ago | IN | 0 ETH | 0.00147852 | ||||
Add Community Gr... | 5534314 | 2520 days ago | IN | 0 ETH | 0.00147852 | ||||
Add Community Gr... | 5534312 | 2520 days ago | IN | 0 ETH | 0.00147852 | ||||
Add Community Gr... | 5534310 | 2520 days ago | IN | 0 ETH | 0.00147852 | ||||
Add Community Gr... | 5534305 | 2520 days ago | IN | 0 ETH | 0.00147852 | ||||
Add Community Gr... | 5534303 | 2520 days ago | IN | 0 ETH | 0.00147852 | ||||
Add Community Gr... | 5534301 | 2520 days ago | IN | 0 ETH | 0.00147852 | ||||
Add Community Gr... | 5534299 | 2520 days ago | IN | 0 ETH | 0.00147852 | ||||
Add Community Gr... | 5534297 | 2520 days ago | IN | 0 ETH | 0.00147852 | ||||
Add Community Gr... | 5534295 | 2520 days ago | IN | 0 ETH | 0.0014782 | ||||
Add Community Gr... | 5534293 | 2520 days ago | IN | 0 ETH | 0.00147852 | ||||
Add Community Gr... | 5534291 | 2520 days ago | IN | 0 ETH | 0.00147884 | ||||
Add Community Gr... | 5534289 | 2520 days ago | IN | 0 ETH | 0.00147852 | ||||
Add Community Gr... | 5534284 | 2520 days ago | IN | 0 ETH | 0.00155352 | ||||
Add Investor Gra... | 5534274 | 2520 days ago | IN | 0 ETH | 0.00323625 | ||||
Add Investor Gra... | 5534272 | 2520 days ago | IN | 0 ETH | 0.00323593 | ||||
Add Investor Gra... | 5534270 | 2520 days ago | IN | 0 ETH | 0.00323625 | ||||
Add Investor Gra... | 5534267 | 2520 days ago | IN | 0 ETH | 0.00323625 | ||||
Add Investor Gra... | 5534265 | 2520 days ago | IN | 0 ETH | 0.00323625 | ||||
Add Investor Gra... | 5534263 | 2520 days ago | IN | 0 ETH | 0.00323593 | ||||
Add Investor Gra... | 5534261 | 2520 days ago | IN | 0 ETH | 0.00323625 | ||||
Add Investor Gra... | 5534259 | 2520 days ago | IN | 0 ETH | 0.00323625 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Method | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|---|
Transfer | 5534320 | 2520 days ago | Contract Creation | 0 ETH | |||
Transfer | 5534318 | 2520 days ago | Contract Creation | 0 ETH | |||
Transfer | 5534316 | 2520 days ago | Contract Creation | 0 ETH | |||
Transfer | 5534314 | 2520 days ago | Contract Creation | 0 ETH | |||
Transfer | 5534312 | 2520 days ago | Contract Creation | 0 ETH | |||
Transfer | 5534310 | 2520 days ago | Contract Creation | 0 ETH | |||
Transfer | 5534305 | 2520 days ago | Contract Creation | 0 ETH | |||
Transfer | 5534303 | 2520 days ago | Contract Creation | 0 ETH | |||
Transfer | 5534301 | 2520 days ago | Contract Creation | 0 ETH | |||
Transfer | 5534299 | 2520 days ago | Contract Creation | 0 ETH | |||
Transfer | 5534297 | 2520 days ago | Contract Creation | 0 ETH | |||
Transfer | 5534295 | 2520 days ago | Contract Creation | 0 ETH | |||
Transfer | 5534293 | 2520 days ago | Contract Creation | 0 ETH | |||
Transfer | 5534291 | 2520 days ago | Contract Creation | 0 ETH | |||
Transfer | 5534289 | 2520 days ago | Contract Creation | 0 ETH | |||
Transfer | 5534284 | 2520 days ago | Contract Creation | 0 ETH | |||
Transfer | 5534274 | 2520 days ago | Contract Creation | 0 ETH | |||
Transfer | 5534272 | 2520 days ago | Contract Creation | 0 ETH | |||
Transfer | 5534270 | 2520 days ago | Contract Creation | 0 ETH | |||
Transfer | 5534267 | 2520 days ago | Contract Creation | 0 ETH | |||
Transfer | 5534265 | 2520 days ago | Contract Creation | 0 ETH | |||
Transfer | 5534263 | 2520 days ago | Contract Creation | 0 ETH | |||
Transfer | 5534261 | 2520 days ago | Contract Creation | 0 ETH | |||
Transfer | 5534259 | 2520 days ago | Contract Creation | 0 ETH | |||
Transfer | 5534256 | 2520 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0xd78b6bD0...85A6bb0B1 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
GenesisManager
Compiler Version
v0.4.18+commit.9cf6e910
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2018-04-30 */ pragma solidity 0.4.18; /** * @title ERC20Basic * @dev Simpler version of ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/179 */ contract ERC20Basic { uint256 public totalSupply; 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 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)); } } /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { 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; } 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; } function sub(uint256 a, uint256 b) internal pure returns (uint256) { assert(b <= a); return a - b; } function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; assert(c >= a); return c; } } /** * @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 TokenTimelock * @dev TokenTimelock is a token holder contract that will allow a * beneficiary to extract the tokens after a given release time */ contract TokenTimelock { using SafeERC20 for ERC20Basic; // ERC20 basic token contract being held ERC20Basic public token; // beneficiary of tokens after they are released address public beneficiary; // timestamp when token release is enabled uint256 public releaseTime; function TokenTimelock(ERC20Basic _token, address _beneficiary, uint256 _releaseTime) public { require(_releaseTime > now); token = _token; beneficiary = _beneficiary; releaseTime = _releaseTime; } /** * @notice Transfers tokens held by timelock to beneficiary. */ function release() public { require(now >= releaseTime); uint256 amount = token.balanceOf(this); require(amount > 0); token.safeTransfer(beneficiary, amount); } } /** * @title TokenVesting * @dev A token holder contract that can release its token balance gradually like a * typical vesting scheme, with a cliff and vesting period. Optionally revocable by the * owner. */ contract TokenVesting is Ownable { using SafeMath for uint256; using SafeERC20 for ERC20Basic; event Released(uint256 amount); event Revoked(); // beneficiary of tokens after they are released address public beneficiary; uint256 public cliff; uint256 public start; uint256 public duration; bool public revocable; mapping (address => uint256) public released; mapping (address => bool) public revoked; /** * @dev Creates a vesting contract that vests its balance of any ERC20 token to the * _beneficiary, gradually in a linear fashion until _start + _duration. By then all * of the balance will have vested. * @param _beneficiary address of the beneficiary to whom vested tokens are transferred * @param _cliff duration in seconds of the cliff in which tokens will begin to vest * @param _duration duration in seconds of the period in which the tokens will vest * @param _revocable whether the vesting is revocable or not */ function TokenVesting(address _beneficiary, uint256 _start, uint256 _cliff, uint256 _duration, bool _revocable) public { require(_beneficiary != address(0)); require(_cliff <= _duration); beneficiary = _beneficiary; revocable = _revocable; duration = _duration; cliff = _start.add(_cliff); start = _start; } /** * @notice Transfers vested tokens to beneficiary. * @param token ERC20 token which is being vested */ function release(ERC20Basic token) public { uint256 unreleased = releasableAmount(token); require(unreleased > 0); released[token] = released[token].add(unreleased); token.safeTransfer(beneficiary, unreleased); Released(unreleased); } /** * @notice Allows the owner to revoke the vesting. Tokens already vested * remain in the contract, the rest are returned to the owner. * @param token ERC20 token which is being vested */ function revoke(ERC20Basic token) public onlyOwner { require(revocable); require(!revoked[token]); uint256 balance = token.balanceOf(this); uint256 unreleased = releasableAmount(token); uint256 refund = balance.sub(unreleased); revoked[token] = true; token.safeTransfer(owner, refund); Revoked(); } /** * @dev Calculates the amount that has already vested but hasn't been released yet. * @param token ERC20 token which is being vested */ function releasableAmount(ERC20Basic token) public view returns (uint256) { return vestedAmount(token).sub(released[token]); } /** * @dev Calculates the amount that has already vested. * @param token ERC20 token which is being vested */ function vestedAmount(ERC20Basic token) public view returns (uint256) { uint256 currentBalance = token.balanceOf(this); uint256 totalBalance = currentBalance.add(released[token]); if (now < cliff) { return 0; } else if (now >= start.add(duration) || revoked[token]) { return totalBalance; } else { return totalBalance.mul(now.sub(start)).div(duration); } } } contract ILivepeerToken is ERC20, Ownable { function mint(address _to, uint256 _amount) public returns (bool); function burn(uint256 _amount) public; } contract GenesisManager is Ownable { using SafeMath for uint256; // LivepeerToken contract ILivepeerToken public token; // Address of the token distribution contract address public tokenDistribution; // Address of the Livepeer bank multisig address public bankMultisig; // Address of the Minter contract in the Livepeer protocol address public minter; // Initial token supply issued uint256 public initialSupply; // Crowd's portion of the initial token supply uint256 public crowdSupply; // Company's portion of the initial token supply uint256 public companySupply; // Team's portion of the initial token supply uint256 public teamSupply; // Investors' portion of the initial token supply uint256 public investorsSupply; // Community's portion of the initial token supply uint256 public communitySupply; // Token amount in grants for the team uint256 public teamGrantsAmount; // Token amount in grants for investors uint256 public investorsGrantsAmount; // Token amount in grants for the community uint256 public communityGrantsAmount; // Timestamp at which vesting grants begin their vesting period // and timelock grants release locked tokens uint256 public grantsStartTimestamp; // Map receiver addresses => contracts holding receivers' vesting tokens mapping (address => address) public vestingHolders; // Map receiver addresses => contracts holding receivers' time locked tokens mapping (address => address) public timeLockedHolders; enum Stages { // Stage for setting the allocations of the initial token supply GenesisAllocation, // Stage for the creating token grants and the token distribution GenesisStart, // Stage for the end of genesis when ownership of the LivepeerToken contract // is transferred to the protocol Minter GenesisEnd } // Current stage of genesis Stages public stage; // Check if genesis is at a particular stage modifier atStage(Stages _stage) { require(stage == _stage); _; } /** * @dev GenesisManager constructor * @param _token Address of the Livepeer token contract * @param _tokenDistribution Address of the token distribution contract * @param _bankMultisig Address of the company bank multisig * @param _minter Address of the protocol Minter */ function GenesisManager( address _token, address _tokenDistribution, address _bankMultisig, address _minter, uint256 _grantsStartTimestamp ) public { token = ILivepeerToken(_token); tokenDistribution = _tokenDistribution; bankMultisig = _bankMultisig; minter = _minter; grantsStartTimestamp = _grantsStartTimestamp; stage = Stages.GenesisAllocation; } /** * @dev Set allocations for the initial token supply at genesis * @param _initialSupply Initial token supply at genesis * @param _crowdSupply Tokens allocated for the crowd at genesis * @param _companySupply Tokens allocated for the company (for future distribution) at genesis * @param _teamSupply Tokens allocated for the team at genesis * @param _investorsSupply Tokens allocated for investors at genesis * @param _communitySupply Tokens allocated for the community at genesis */ function setAllocations( uint256 _initialSupply, uint256 _crowdSupply, uint256 _companySupply, uint256 _teamSupply, uint256 _investorsSupply, uint256 _communitySupply ) external onlyOwner atStage(Stages.GenesisAllocation) { require(_crowdSupply.add(_companySupply).add(_teamSupply).add(_investorsSupply).add(_communitySupply) == _initialSupply); initialSupply = _initialSupply; crowdSupply = _crowdSupply; companySupply = _companySupply; teamSupply = _teamSupply; investorsSupply = _investorsSupply; communitySupply = _communitySupply; } /** * @dev Start genesis */ function start() external onlyOwner atStage(Stages.GenesisAllocation) { // Mint the initial supply token.mint(this, initialSupply); stage = Stages.GenesisStart; } /** * @dev Add a team grant for tokens with a vesting schedule * @param _receiver Grant receiver * @param _amount Amount of tokens included in the grant * @param _timeToCliff Seconds until the vesting cliff * @param _vestingDuration Seconds starting from the vesting cliff until the end of the vesting schedule */ function addTeamGrant( address _receiver, uint256 _amount, uint256 _timeToCliff, uint256 _vestingDuration ) external onlyOwner atStage(Stages.GenesisStart) { uint256 updatedGrantsAmount = teamGrantsAmount.add(_amount); // Amount of tokens included in team grants cannot exceed the team supply during genesis require(updatedGrantsAmount <= teamSupply); teamGrantsAmount = updatedGrantsAmount; addVestingGrant(_receiver, _amount, _timeToCliff, _vestingDuration); } /** * @dev Add an investor grant for tokens with a vesting schedule * @param _receiver Grant receiver * @param _amount Amount of tokens included in the grant * @param _timeToCliff Seconds until the vesting cliff * @param _vestingDuration Seconds starting from the vesting cliff until the end of the vesting schedule */ function addInvestorGrant( address _receiver, uint256 _amount, uint256 _timeToCliff, uint256 _vestingDuration ) external onlyOwner atStage(Stages.GenesisStart) { uint256 updatedGrantsAmount = investorsGrantsAmount.add(_amount); // Amount of tokens included in investor grants cannot exceed the investor supply during genesis require(updatedGrantsAmount <= investorsSupply); investorsGrantsAmount = updatedGrantsAmount; addVestingGrant(_receiver, _amount, _timeToCliff, _vestingDuration); } /** * @dev Add a grant for tokens with a vesting schedule. An internal helper function used by addTeamGrant and addInvestorGrant * @param _receiver Grant receiver * @param _amount Amount of tokens included in the grant * @param _timeToCliff Seconds until the vesting cliff * @param _vestingDuration Seconds starting from the vesting cliff until the end of the vesting schedule */ function addVestingGrant( address _receiver, uint256 _amount, uint256 _timeToCliff, uint256 _vestingDuration ) internal { // Receiver must not have already received a grant with a vesting schedule require(vestingHolders[_receiver] == address(0)); // Create a vesting holder contract to act as the holder of the grant's tokens // Note: the vesting grant is revokable TokenVesting holder = new TokenVesting(_receiver, grantsStartTimestamp, _timeToCliff, _vestingDuration, true); vestingHolders[_receiver] = holder; // Transfer ownership of the vesting holder to the bank multisig // giving the bank multisig the ability to revoke the grant holder.transferOwnership(bankMultisig); token.transfer(holder, _amount); } /** * @dev Add a community grant for tokens that are locked until a predetermined time in the future * @param _receiver Grant receiver address * @param _amount Amount of tokens included in the grant */ function addCommunityGrant( address _receiver, uint256 _amount ) external onlyOwner atStage(Stages.GenesisStart) { uint256 updatedGrantsAmount = communityGrantsAmount.add(_amount); // Amount of tokens included in investor grants cannot exceed the community supply during genesis require(updatedGrantsAmount <= communitySupply); communityGrantsAmount = updatedGrantsAmount; // Receiver must not have already received a grant with timelocked tokens require(timeLockedHolders[_receiver] == address(0)); // Create a timelocked holder contract to act as the holder of the grant's tokens TokenTimelock holder = new TokenTimelock(token, _receiver, grantsStartTimestamp); timeLockedHolders[_receiver] = holder; token.transfer(holder, _amount); } /** * @dev End genesis */ function end() external onlyOwner atStage(Stages.GenesisStart) { // Transfer the crowd supply to the token distribution contract token.transfer(tokenDistribution, crowdSupply); // Transfer company supply to the bank multisig token.transfer(bankMultisig, companySupply); // Transfer ownership of the LivepeerToken contract to the protocol Minter token.transferOwnership(minter); stage = Stages.GenesisEnd; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"constant":true,"inputs":[],"name":"investorsSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"minter","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokenDistribution","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"grantsStartTimestamp","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"communityGrantsAmount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"teamSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"initialSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"investorsGrantsAmount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"teamGrantsAmount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_receiver","type":"address"},{"name":"_amount","type":"uint256"}],"name":"addCommunityGrant","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"bankMultisig","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_initialSupply","type":"uint256"},{"name":"_crowdSupply","type":"uint256"},{"name":"_companySupply","type":"uint256"},{"name":"_teamSupply","type":"uint256"},{"name":"_investorsSupply","type":"uint256"},{"name":"_communitySupply","type":"uint256"}],"name":"setAllocations","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"companySupply","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":false,"inputs":[{"name":"_receiver","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_timeToCliff","type":"uint256"},{"name":"_vestingDuration","type":"uint256"}],"name":"addTeamGrant","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"crowdSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"start","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"stage","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_receiver","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_timeToCliff","type":"uint256"},{"name":"_vestingDuration","type":"uint256"}],"name":"addInvestorGrant","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"vestingHolders","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"end","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":"","type":"address"}],"name":"timeLockedHolders","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"token","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"communitySupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_token","type":"address"},{"name":"_tokenDistribution","type":"address"},{"name":"_bankMultisig","type":"address"},{"name":"_minter","type":"address"},{"name":"_grantsStartTimestamp","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]
Deployed Bytecode
0x60606040526004361061012f5763ffffffff60e060020a60003504166301a0dee18114610134578063075461721461015957806308a6077c1461018857806310780cce1461019b5780631d121dfe146101ae5780632cfac6ec146101c1578063378dc3dc146101d457806347b60ec0146101e757806353a5e2d9146101fa57806354ee4d4b1461020d5780636de84a4f1461023157806382d4685c1461024457806383eb7257146102695780638da5cb5b1461027c5780639ea0b8f01461028f578063a182da60146102b7578063be9a6555146102ca578063c040e6b8146102dd578063d4492c5714610314578063e0a157b61461033c578063efbe1c1c1461035b578063f2fde38b1461036e578063f6ed087a1461038d578063fc0c546a146103ac578063fcceea26146103bf575b600080fd5b341561013f57600080fd5b6101476103d2565b60405190815260200160405180910390f35b341561016457600080fd5b61016c6103d8565b604051600160a060020a03909116815260200160405180910390f35b341561019357600080fd5b61016c6103e7565b34156101a657600080fd5b6101476103f6565b34156101b957600080fd5b6101476103fc565b34156101cc57600080fd5b610147610402565b34156101df57600080fd5b610147610408565b34156101f257600080fd5b61014761040e565b341561020557600080fd5b610147610414565b341561021857600080fd5b61022f600160a060020a036004351660243561041a565b005b341561023c57600080fd5b61016c6105b1565b341561024f57600080fd5b61022f60043560243560443560643560843560a4356105c0565b341561027457600080fd5b610147610646565b341561028757600080fd5b61016c61064c565b341561029a57600080fd5b61022f600160a060020a036004351660243560443560643561065b565b34156102c257600080fd5b6101476106d3565b34156102d557600080fd5b61022f6106d9565b34156102e857600080fd5b6102f06107aa565b6040518082600281111561030057fe5b60ff16815260200191505060405180910390f35b341561031f57600080fd5b61022f600160a060020a03600435166024356044356064356107b3565b341561034757600080fd5b61016c600160a060020a0360043516610823565b341561036657600080fd5b61022f61083e565b341561037957600080fd5b61022f600160a060020a03600435166109fd565b341561039857600080fd5b61016c600160a060020a0360043516610a98565b34156103b757600080fd5b61016c610ab3565b34156103ca57600080fd5b610147610ac2565b60095481565b600454600160a060020a031681565b600254600160a060020a031681565b600e5481565b600d5481565b60085481565b60055481565b600c5481565b600b5481565b60008054819033600160a060020a0390811691161461043857600080fd5b60018060115460ff16600281111561044c57fe5b1461045657600080fd5b600d54610469908563ffffffff610ac816565b600a5490935083111561047b57600080fd5b600d839055600160a060020a0385811660009081526010602052604090205416156104a557600080fd5b600154600e54600160a060020a039091169086906104c1610c56565b600160a060020a0393841681529190921660208201526040808201929092526060019051809103906000f08015156104f857600080fd5b600160a060020a03868116600090815260106020526040808220805473ffffffffffffffffffffffffffffffffffffffff1916858516179055600154939550929091169163a9059cbb918591889190516020015260405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b151561058f57600080fd5b6102c65a03f115156105a057600080fd5b505050604051805150505050505050565b600354600160a060020a031681565b60005433600160a060020a039081169116146105db57600080fd5b60008060115460ff1660028111156105ef57fe5b146105f957600080fd5b8661061e83610612868189818d8d63ffffffff610ac816565b9063ffffffff610ac816565b1461062857600080fd5b50600595909555600693909355600791909155600855600955600a55565b60075481565b600054600160a060020a031681565b6000805433600160a060020a0390811691161461067757600080fd5b60018060115460ff16600281111561068b57fe5b1461069557600080fd5b600b546106a8908663ffffffff610ac816565b6008549092508211156106ba57600080fd5b600b8290556106cb86868686610ade565b505050505050565b60065481565b60005433600160a060020a039081169116146106f457600080fd5b60008060115460ff16600281111561070857fe5b1461071257600080fd5b600154600554600160a060020a03909116906340c10f1990309060006040516020015260405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b151561077857600080fd5b6102c65a03f1151561078957600080fd5b50505060405180515050601180546001919060ff191682805b021790555050565b60115460ff1681565b6000805433600160a060020a039081169116146107cf57600080fd5b60018060115460ff1660028111156107e357fe5b146107ed57600080fd5b600c54610800908663ffffffff610ac816565b60095490925082111561081257600080fd5b600c8290556106cb86868686610ade565b600f60205260009081526040902054600160a060020a031681565b60005433600160a060020a0390811691161461085957600080fd5b60018060115460ff16600281111561086d57fe5b1461087757600080fd5b600154600254600654600160a060020a039283169263a9059cbb92169060006040516020015260405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b15156108e057600080fd5b6102c65a03f115156108f157600080fd5b50505060405180515050600154600354600754600160a060020a039283169263a9059cbb92169060006040516020015260405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b151561096457600080fd5b6102c65a03f1151561097557600080fd5b50505060405180515050600154600454600160a060020a039182169163f2fde38b911660405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401600060405180830381600087803b15156109d657600080fd5b6102c65a03f115156109e757600080fd5b5050601180546002925060ff19166001836107a2565b60005433600160a060020a03908116911614610a1857600080fd5b600160a060020a0381161515610a2d57600080fd5b600054600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b601060205260009081526040902054600160a060020a031681565b600154600160a060020a031681565b600a5481565b600082820183811015610ad757fe5b9392505050565b600160a060020a038481166000908152600f602052604081205490911615610b0557600080fd5b84600e5484846001610b15610c66565b600160a060020a03909516855260208501939093526040808501929092526060840152901515608083015260a09091019051809103906000f0801515610b5a57600080fd5b600160a060020a038681166000908152600f602052604090819020805473ffffffffffffffffffffffffffffffffffffffff19168484169081179091556003549394509263f2fde38b9216905160e060020a63ffffffff8416028152600160a060020a039091166004820152602401600060405180830381600087803b1515610be257600080fd5b6102c65a03f11515610bf357600080fd5b5050600154600160a060020a0316905063a9059cbb828660006040516020015260405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b151561058f57600080fd5b6040516102db80610c7783390190565b6040516108c880610f528339019056006060604052341561000f57600080fd5b6040516060806102db83398101604052808051919060200180519190602001805191505042811161003f57600080fd5b60008054600160a060020a03948516600160a060020a031991821617909155600180549390941692169190911790915560025561025a806100816000396000f3006060604052600436106100485763ffffffff60e060020a60003504166338af3eed811461004d57806386d1a69f1461007c578063b91d400114610091578063fc0c546a146100b6575b600080fd5b341561005857600080fd5b6100606100c9565b604051600160a060020a03909116815260200160405180910390f35b341561008757600080fd5b61008f6100d8565b005b341561009c57600080fd5b6100a4610194565b60405190815260200160405180910390f35b34156100c157600080fd5b61006061019a565b600154600160a060020a031681565b6002546000904210156100ea57600080fd5b60008054600160a060020a0316906370a082319030906040516020015260405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b151561014557600080fd5b6102c65a03f1151561015657600080fd5b50505060405180519150506000811161016e57600080fd5b60015460005461019191600160a060020a0391821691168363ffffffff6101a916565b50565b60025481565b600054600160a060020a031681565b82600160a060020a031663a9059cbb838360006040516020015260405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b151561020657600080fd5b6102c65a03f1151561021757600080fd5b50505060405180519050151561022957fe5b5050505600a165627a7a72305820eeace2909ad96851c2cbf01b9bbc7140e82c263f6ff3790a8a0e12d0640aff7700296060604052341561000f57600080fd5b60405160a0806108c8833981016040528080519190602001805191906020018051919060200180519190602001805160008054600160a060020a03191633600160a060020a039081169190911790915590925086161515905061007157600080fd5b8183111561007e57600080fd5b60018054600160a060020a031916600160a060020a0387161790556005805460ff191682151517905560048290556100c384846401000000006100d281026106c41704565b600255505050600355506100e8565b6000828201838110156100e157fe5b9392505050565b6107d1806100f76000396000f3006060604052600436106100ab5763ffffffff60e060020a6000350416630fb5a6b481146100b057806313d033c0146100d55780631726cbc8146100e85780631916558714610107578063384711cc1461012857806338af3eed1461014757806374a8f10314610176578063872a7810146101955780638da5cb5b146101bc5780639852595c146101cf578063be9a6555146101ee578063f2fde38b14610201578063fa01dc0614610220575b600080fd5b34156100bb57600080fd5b6100c361023f565b60405190815260200160405180910390f35b34156100e057600080fd5b6100c3610245565b34156100f357600080fd5b6100c3600160a060020a036004351661024b565b341561011257600080fd5b610126600160a060020a0360043516610283565b005b341561013357600080fd5b6100c3600160a060020a036004351661032f565b341561015257600080fd5b61015a610470565b604051600160a060020a03909116815260200160405180910390f35b341561018157600080fd5b610126600160a060020a036004351661047f565b34156101a057600080fd5b6101a86105d2565b604051901515815260200160405180910390f35b34156101c757600080fd5b61015a6105db565b34156101da57600080fd5b6100c3600160a060020a03600435166105ea565b34156101f957600080fd5b6100c36105fc565b341561020c57600080fd5b610126600160a060020a0360043516610602565b341561022b57600080fd5b6101a8600160a060020a036004351661069d565b60045481565b60025481565b600160a060020a03811660009081526006602052604081205461027d906102718461032f565b9063ffffffff6106b216565b92915050565b600061028e8261024b565b90506000811161029d57600080fd5b600160a060020a0382166000908152600660205260409020546102c6908263ffffffff6106c416565b600160a060020a038084166000818152600660205260409020929092556001546102f89291168363ffffffff6106de16565b7ffb81f9b30d73d830c3544b34d827c08142579ee75710b490bab0b3995468c5658160405190815260200160405180910390a15050565b600080600083600160a060020a03166370a082313060006040516020015260405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b151561038b57600080fd5b6102c65a03f1151561039c57600080fd5b5050506040518051600160a060020a0386166000908152600660205260409020549093506103d29150839063ffffffff6106c416565b90506002544210156103e75760009250610469565b6004546003546103fc9163ffffffff6106c416565b421015806104225750600160a060020a03841660009081526007602052604090205460ff165b1561042f57809250610469565b61046660045461045a61044d600354426106b290919063ffffffff16565b849063ffffffff61076316565b9063ffffffff61078e16565b92505b5050919050565b600154600160a060020a031681565b600080548190819033600160a060020a0390811691161461049f57600080fd5b60055460ff1615156104b057600080fd5b600160a060020a03841660009081526007602052604090205460ff16156104d657600080fd5b83600160a060020a03166370a082313060006040516020015260405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b151561052d57600080fd5b6102c65a03f1151561053e57600080fd5b5050506040518051905092506105538461024b565b9150610565838363ffffffff6106b216565b600160a060020a038086166000818152600760205260408120805460ff19166001179055549293506105a0929091168363ffffffff6106de16565b7f44825a4b2df8acb19ce4e1afba9aa850c8b65cdb7942e2078f27d0b0960efee660405160405180910390a150505050565b60055460ff1681565b600054600160a060020a031681565b60066020526000908152604090205481565b60035481565b60005433600160a060020a0390811691161461061d57600080fd5b600160a060020a038116151561063257600080fd5b600054600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60076020526000908152604090205460ff1681565b6000828211156106be57fe5b50900390565b6000828201838110156106d357fe5b8091505b5092915050565b82600160a060020a031663a9059cbb838360006040516020015260405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b151561073b57600080fd5b6102c65a03f1151561074c57600080fd5b50505060405180519050151561075e57fe5b505050565b60008083151561077657600091506106d7565b5082820282848281151561078657fe5b04146106d357fe5b600080828481151561079c57fe5b049493505050505600a165627a7a723058205328e35402c75898a0519a3095fac536dd3272577ad28495e00f16bb33ed6b360029a165627a7a72305820adb706cf50272fd73ab726a2872a727700b25740c5394cdd20e6d18436ad29790029
Swarm Source
bzzr://adb706cf50272fd73ab726a2872a727700b25740c5394cdd20e6d18436ad2979
Loading...
Loading
Loading...
Loading
Loading...
Loading
Loading...
Loading
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.