More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 7,361 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 20452797 | 114 days ago | IN | 0 ETH | 0.00004749 | ||||
Transfer | 16097658 | 725 days ago | IN | 0 ETH | 0.00080009 | ||||
Transfer | 15657093 | 786 days ago | IN | 0 ETH | 0.00009625 | ||||
Transfer | 15656851 | 786 days ago | IN | 0 ETH | 0.00009321 | ||||
Transfer | 15623862 | 791 days ago | IN | 0 ETH | 0.00015806 | ||||
Transfer | 15612457 | 793 days ago | IN | 0 ETH | 0.00014329 | ||||
Transfer | 15612207 | 793 days ago | IN | 0 ETH | 0.00015659 | ||||
Transfer | 15599062 | 795 days ago | IN | 0 ETH | 0.00011638 | ||||
Transfer | 15585670 | 796 days ago | IN | 0 ETH | 0.00014548 | ||||
Transfer | 15585447 | 796 days ago | IN | 0 ETH | 0.00017973 | ||||
Transfer | 15576607 | 798 days ago | IN | 0 ETH | 0.00028005 | ||||
Transfer | 15562274 | 800 days ago | IN | 0 ETH | 0.00022839 | ||||
Transfer | 15560293 | 800 days ago | IN | 0 ETH | 0.00006702 | ||||
Transfer | 15559849 | 800 days ago | IN | 0 ETH | 0.0000754 | ||||
Transfer | 15549196 | 802 days ago | IN | 0 ETH | 0.00016272 | ||||
Transfer | 15548399 | 802 days ago | IN | 0 ETH | 0.00019812 | ||||
Transfer | 15162279 | 863 days ago | IN | 0 ETH | 0.00099217 | ||||
Transfer | 14924813 | 902 days ago | IN | 0 ETH | 0.00080743 | ||||
Transfer | 14892464 | 908 days ago | IN | 0 ETH | 0.00148085 | ||||
Transfer | 14891644 | 908 days ago | IN | 0 ETH | 0.00103126 | ||||
Transfer | 14365765 | 991 days ago | IN | 0 ETH | 0.00095522 | ||||
Transfer | 14362883 | 991 days ago | IN | 0 ETH | 0.00112602 | ||||
Transfer | 14342468 | 995 days ago | IN | 0 ETH | 0.00200292 | ||||
Transfer | 14257174 | 1008 days ago | IN | 0 ETH | 0.00592292 | ||||
Transfer | 14161213 | 1023 days ago | IN | 0 ETH | 0.00559117 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
BancrypToken
Compiler Version
v0.4.24+commit.e67f0147
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2019-01-04 */ pragma solidity ^0.4.24; // File: openzeppelin-solidity/contracts/token/ERC20/ERC20Basic.sol /** * @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); } // File: openzeppelin-solidity/contracts/math/SafeMath.sol /** * @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 c) { // Gas optimization: this is cheaper than asserting 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522 if (a == 0) { return 0; } 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 a / b; } /** * @dev Subtracts 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 c) { c = a + b; assert(c >= a); return c; } } // File: openzeppelin-solidity/contracts/token/ERC20/BasicToken.sol /** * @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]); balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); emit 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) { return balances[_owner]; } } // File: openzeppelin-solidity/contracts/token/ERC20/ERC20.sol /** * @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 ); } // File: openzeppelin-solidity/contracts/token/ERC20/StandardToken.sol /** * @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); emit 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; emit 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)); emit 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); } emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } } // File: openzeppelin-solidity/contracts/token/ERC20/BurnableToken.sol /** * @title Burnable Token * @dev Token that can be irreversibly burned (destroyed). */ contract BurnableToken is BasicToken { event Burn(address indexed burner, uint256 value); /** * @dev Burns a specific amount of tokens. * @param _value The amount of token to be burned. */ function burn(uint256 _value) public { _burn(msg.sender, _value); } function _burn(address _who, uint256 _value) internal { require(_value <= balances[_who]); // no need to require value <= totalSupply, since that would imply the // sender's balance is greater than the totalSupply, which *should* be an assertion failure balances[_who] = balances[_who].sub(_value); totalSupply_ = totalSupply_.sub(_value); emit Burn(_who, _value); emit Transfer(_who, address(0), _value); } } // File: contracts/BancrypToken.sol /// @title BancrypToken /// @author Bancryp contract BancrypToken is StandardToken, BurnableToken { string public symbol = "XBANC"; string public name = "XBANC"; uint8 public decimals = 18; // Transfers will only be avaiable after the transfer time start // 12/31/2018 @ 11:59pm (UTC) uint256 public constant TRANSFERABLE_START_TIME = 1546300799; // Wallets for tokens split amongst team, // advisors, reserve fund and social cause addresses // Note: Those address will be replaced by the real addresses before the main net deploy address public constant ADVISORS_WALLET = 0x0fC8c4288841CB199bDdbf385BD762938f5A8328; address public constant BANCRYP_WALLET = 0xcafBCD7F36ae4506E4331a27CC6CAF12fD35E83C; address public constant FUNDS_WALLET = 0x66fC388e7AF7ee6198D849A37B89a813d559913a; address public constant RESERVE_FUND_WALLET = 0xb8dc7BfB6D987464b2006aBd6B7511C8D2Ebe50f; address public constant SOCIAL_CAUSE_WALLET = 0xd71383C04F67e2Db7F95aC58c9B2509Cf15AAa95; address public constant TEAM_WALLET = 0x2b400ee4Ff17dE03453e325e9198E6C9c4F88243; // 300.000.000 in initial supply uint256 public constant INITIAL_SUPPLY = 300000000; // Allows transfer only after TRANSFERABLE_START_TIME // With an exception of the wallets allowed on require function modifier onlyWhenTransferEnabled(address _to) { if ( now <= TRANSFERABLE_START_TIME ) { // Only some wallets to transfer // in case of transfer isn't available yet require(msg.sender == TEAM_WALLET || msg.sender == ADVISORS_WALLET || msg.sender == RESERVE_FUND_WALLET || msg.sender == SOCIAL_CAUSE_WALLET || msg.sender == FUNDS_WALLET || msg.sender == BANCRYP_WALLET || _to == BANCRYP_WALLET, "Forbidden to transfer right now"); } _; } // Helper to test valid destion to transfer modifier validDestination(address to) { require(to != address(this)); _; } /// @notice Constructor called on deploy of the contract which sets wallets /// for team, advisors, reserve fund and social cause, the rest is are for /// public sale /// will be open to public other than wallets on this constructor constructor() public { // After the initial supply been split amongst team, advisors, // reserve and social cause the value available will be 195.000.000 totalSupply_ = INITIAL_SUPPLY * (10 ** uint256(decimals)); balances[FUNDS_WALLET] = totalSupply_; } /// @dev override transfer token for a specified address to add onlyWhenTransferEnabled /// @param _to The address to transfer to. /// @param _value The amount to be transferred. function transfer(address _to, uint256 _value) public validDestination(_to) onlyWhenTransferEnabled(_to) returns (bool) { return super.transfer(_to, _value); } /// @dev override transferFrom token for a specified address to add onlyWhenTransferEnabled and validDestination /// @param _from The address to transfer from. /// @param _to The address to transfer to. /// @param _value The amount to be transferred. function transferFrom(address _from, address _to, uint256 _value) public validDestination(_to) onlyWhenTransferEnabled(_to) returns (bool) { return super.transferFrom(_from, _to, _value); } /// @dev Burns a specific amount of tokens. /// @param _value The amount of token to be burned. function burn(uint256 _value) public { require(msg.sender == FUNDS_WALLET, "Only funds wallet can burn"); _burn(msg.sender, _value); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"TEAM_WALLET","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"RESERVE_FUND_WALLET","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"ADVISORS_WALLET","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"FUNDS_WALLET","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"TRANSFERABLE_START_TIME","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"SOCIAL_CAUSE_WALLET","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"BANCRYP_WALLET","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]
Contract Creation Code
60c0604052600560808190527f5842414e4300000000000000000000000000000000000000000000000000000060a090815261003e91600391906100f6565b506040805180820190915260058082527f5842414e430000000000000000000000000000000000000000000000000000006020909201918252610083916004916100f6565b506005805460ff1916601217905534801561009d57600080fd5b5060055460ff16600a0a6311e1a3000260018190557366fc388e7af7ee6198d849a37b89a813d559913a60009081526020527f9c3e46c5ca3439153b887a65000fb9e1aa7c951a7cabc9b5e9a5c20c556ea02255610191565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061013757805160ff1916838001178555610164565b82800160010185558215610164579182015b82811115610164578251825591602001919060010190610149565b50610170929150610174565b5090565b61018e91905b80821115610170576000815560010161017a565b90565b610ef580620001a16000396000f3006080604052600436106101115763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610116578063095ea7b3146101a057806318160ddd146101d857806323b872dd146101ff5780632b905bf6146102295780632ff2e9dc1461025a578063313ce5671461026f57806342966c681461029a578063463891cc146102b4578063539ff41a146102c957806366188463146102de57806369b6438e1461030257806370a08231146103175780637f07da351461033857806385e6b7b21461034d57806395d89b4114610362578063a9059cbb14610377578063b9c51fde1461039b578063d73dd623146103b0578063dd62ed3e146103d4575b600080fd5b34801561012257600080fd5b5061012b6103fb565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561016557818101518382015260200161014d565b50505050905090810190601f1680156101925780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101ac57600080fd5b506101c4600160a060020a0360043516602435610489565b604080519115158252519081900360200190f35b3480156101e457600080fd5b506101ed6104ef565b60408051918252519081900360200190f35b34801561020b57600080fd5b506101c4600160a060020a03600435811690602435166044356104f5565b34801561023557600080fd5b5061023e610670565b60408051600160a060020a039092168252519081900360200190f35b34801561026657600080fd5b506101ed610688565b34801561027b57600080fd5b50610284610690565b6040805160ff9092168252519081900360200190f35b3480156102a657600080fd5b506102b2600435610699565b005b3480156102c057600080fd5b5061023e610728565b3480156102d557600080fd5b5061023e610740565b3480156102ea57600080fd5b506101c4600160a060020a0360043516602435610758565b34801561030e57600080fd5b5061023e610848565b34801561032357600080fd5b506101ed600160a060020a0360043516610860565b34801561034457600080fd5b506101ed61087b565b34801561035957600080fd5b5061023e610883565b34801561036e57600080fd5b5061012b61089b565b34801561038357600080fd5b506101c4600160a060020a03600435166024356108f6565b3480156103a757600080fd5b5061023e610a6f565b3480156103bc57600080fd5b506101c4600160a060020a0360043516602435610a87565b3480156103e057600080fd5b506101ed600160a060020a0360043581169060243516610b20565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104815780601f1061045657610100808354040283529160200191610481565b820191906000526020600020905b81548152906001019060200180831161046457829003601f168201915b505050505081565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60015490565b600082600160a060020a03811630141561050e57600080fd5b83635c2aad7f421161065b5733732b400ee4ff17de03453e325e9198e6c9c4f88243148061054f575033730fc8c4288841cb199bddbf385bd762938f5a8328145b8061056d57503373b8dc7bfb6d987464b2006abd6b7511c8d2ebe50f145b8061058b57503373d71383c04f67e2db7f95ac58c9b2509cf15aaa95145b806105a95750337366fc388e7af7ee6198d849a37b89a813d559913a145b806105c757503373cafbcd7f36ae4506e4331a27cc6caf12fd35e83c145b806105ee5750600160a060020a03811673cafbcd7f36ae4506e4331a27cc6caf12fd35e83c145b151561065b57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f466f7262696464656e20746f207472616e73666572207269676874206e6f7700604482015290519081900360640190fd5b610666868686610b4b565b9695505050505050565b732b400ee4ff17de03453e325e9198e6c9c4f8824381565b6311e1a30081565b60055460ff1681565b337366fc388e7af7ee6198d849a37b89a813d559913a1461071b57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4f6e6c792066756e64732077616c6c65742063616e206275726e000000000000604482015290519081900360640190fd5b6107253382610cc2565b50565b73b8dc7bfb6d987464b2006abd6b7511c8d2ebe50f81565b730fc8c4288841cb199bddbf385bd762938f5a832881565b336000908152600260209081526040808320600160a060020a0386168452909152812054808311156107ad57336000908152600260209081526040808320600160a060020a03881684529091528120556107e2565b6107bd818463ffffffff610dc316565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b7366fc388e7af7ee6198d849a37b89a813d559913a81565b600160a060020a031660009081526020819052604090205490565b635c2aad7f81565b73d71383c04f67e2db7f95ac58c9b2509cf15aaa9581565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104815780601f1061045657610100808354040283529160200191610481565b600082600160a060020a03811630141561090f57600080fd5b83635c2aad7f4211610a5c5733732b400ee4ff17de03453e325e9198e6c9c4f882431480610950575033730fc8c4288841cb199bddbf385bd762938f5a8328145b8061096e57503373b8dc7bfb6d987464b2006abd6b7511c8d2ebe50f145b8061098c57503373d71383c04f67e2db7f95ac58c9b2509cf15aaa95145b806109aa5750337366fc388e7af7ee6198d849a37b89a813d559913a145b806109c857503373cafbcd7f36ae4506e4331a27cc6caf12fd35e83c145b806109ef5750600160a060020a03811673cafbcd7f36ae4506e4331a27cc6caf12fd35e83c145b1515610a5c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f466f7262696464656e20746f207472616e73666572207269676874206e6f7700604482015290519081900360640190fd5b610a668585610dd5565b95945050505050565b73cafbcd7f36ae4506e4331a27cc6caf12fd35e83c81565b336000908152600260209081526040808320600160a060020a0386168452909152812054610abb908363ffffffff610eb616565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b6000600160a060020a0383161515610b6257600080fd5b600160a060020a038416600090815260208190526040902054821115610b8757600080fd5b600160a060020a0384166000908152600260209081526040808320338452909152902054821115610bb757600080fd5b600160a060020a038416600090815260208190526040902054610be0908363ffffffff610dc316565b600160a060020a038086166000908152602081905260408082209390935590851681522054610c15908363ffffffff610eb616565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054610c57908363ffffffff610dc316565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b600160a060020a038216600090815260208190526040902054811115610ce757600080fd5b600160a060020a038216600090815260208190526040902054610d10908263ffffffff610dc316565b600160a060020a038316600090815260208190526040902055600154610d3c908263ffffffff610dc316565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b600082821115610dcf57fe5b50900390565b6000600160a060020a0383161515610dec57600080fd5b33600090815260208190526040902054821115610e0857600080fd5b33600090815260208190526040902054610e28908363ffffffff610dc316565b3360009081526020819052604080822092909255600160a060020a03851681522054610e5a908363ffffffff610eb616565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b81810182811015610ec357fe5b929150505600a165627a7a72305820ed7f79e189aa023132f8bade7516829c6de57a7df8eca799a23f94b39a2fe3200029
Deployed Bytecode
0x6080604052600436106101115763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610116578063095ea7b3146101a057806318160ddd146101d857806323b872dd146101ff5780632b905bf6146102295780632ff2e9dc1461025a578063313ce5671461026f57806342966c681461029a578063463891cc146102b4578063539ff41a146102c957806366188463146102de57806369b6438e1461030257806370a08231146103175780637f07da351461033857806385e6b7b21461034d57806395d89b4114610362578063a9059cbb14610377578063b9c51fde1461039b578063d73dd623146103b0578063dd62ed3e146103d4575b600080fd5b34801561012257600080fd5b5061012b6103fb565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561016557818101518382015260200161014d565b50505050905090810190601f1680156101925780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101ac57600080fd5b506101c4600160a060020a0360043516602435610489565b604080519115158252519081900360200190f35b3480156101e457600080fd5b506101ed6104ef565b60408051918252519081900360200190f35b34801561020b57600080fd5b506101c4600160a060020a03600435811690602435166044356104f5565b34801561023557600080fd5b5061023e610670565b60408051600160a060020a039092168252519081900360200190f35b34801561026657600080fd5b506101ed610688565b34801561027b57600080fd5b50610284610690565b6040805160ff9092168252519081900360200190f35b3480156102a657600080fd5b506102b2600435610699565b005b3480156102c057600080fd5b5061023e610728565b3480156102d557600080fd5b5061023e610740565b3480156102ea57600080fd5b506101c4600160a060020a0360043516602435610758565b34801561030e57600080fd5b5061023e610848565b34801561032357600080fd5b506101ed600160a060020a0360043516610860565b34801561034457600080fd5b506101ed61087b565b34801561035957600080fd5b5061023e610883565b34801561036e57600080fd5b5061012b61089b565b34801561038357600080fd5b506101c4600160a060020a03600435166024356108f6565b3480156103a757600080fd5b5061023e610a6f565b3480156103bc57600080fd5b506101c4600160a060020a0360043516602435610a87565b3480156103e057600080fd5b506101ed600160a060020a0360043581169060243516610b20565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104815780601f1061045657610100808354040283529160200191610481565b820191906000526020600020905b81548152906001019060200180831161046457829003601f168201915b505050505081565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60015490565b600082600160a060020a03811630141561050e57600080fd5b83635c2aad7f421161065b5733732b400ee4ff17de03453e325e9198e6c9c4f88243148061054f575033730fc8c4288841cb199bddbf385bd762938f5a8328145b8061056d57503373b8dc7bfb6d987464b2006abd6b7511c8d2ebe50f145b8061058b57503373d71383c04f67e2db7f95ac58c9b2509cf15aaa95145b806105a95750337366fc388e7af7ee6198d849a37b89a813d559913a145b806105c757503373cafbcd7f36ae4506e4331a27cc6caf12fd35e83c145b806105ee5750600160a060020a03811673cafbcd7f36ae4506e4331a27cc6caf12fd35e83c145b151561065b57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f466f7262696464656e20746f207472616e73666572207269676874206e6f7700604482015290519081900360640190fd5b610666868686610b4b565b9695505050505050565b732b400ee4ff17de03453e325e9198e6c9c4f8824381565b6311e1a30081565b60055460ff1681565b337366fc388e7af7ee6198d849a37b89a813d559913a1461071b57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4f6e6c792066756e64732077616c6c65742063616e206275726e000000000000604482015290519081900360640190fd5b6107253382610cc2565b50565b73b8dc7bfb6d987464b2006abd6b7511c8d2ebe50f81565b730fc8c4288841cb199bddbf385bd762938f5a832881565b336000908152600260209081526040808320600160a060020a0386168452909152812054808311156107ad57336000908152600260209081526040808320600160a060020a03881684529091528120556107e2565b6107bd818463ffffffff610dc316565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b7366fc388e7af7ee6198d849a37b89a813d559913a81565b600160a060020a031660009081526020819052604090205490565b635c2aad7f81565b73d71383c04f67e2db7f95ac58c9b2509cf15aaa9581565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104815780601f1061045657610100808354040283529160200191610481565b600082600160a060020a03811630141561090f57600080fd5b83635c2aad7f4211610a5c5733732b400ee4ff17de03453e325e9198e6c9c4f882431480610950575033730fc8c4288841cb199bddbf385bd762938f5a8328145b8061096e57503373b8dc7bfb6d987464b2006abd6b7511c8d2ebe50f145b8061098c57503373d71383c04f67e2db7f95ac58c9b2509cf15aaa95145b806109aa5750337366fc388e7af7ee6198d849a37b89a813d559913a145b806109c857503373cafbcd7f36ae4506e4331a27cc6caf12fd35e83c145b806109ef5750600160a060020a03811673cafbcd7f36ae4506e4331a27cc6caf12fd35e83c145b1515610a5c57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f466f7262696464656e20746f207472616e73666572207269676874206e6f7700604482015290519081900360640190fd5b610a668585610dd5565b95945050505050565b73cafbcd7f36ae4506e4331a27cc6caf12fd35e83c81565b336000908152600260209081526040808320600160a060020a0386168452909152812054610abb908363ffffffff610eb616565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b6000600160a060020a0383161515610b6257600080fd5b600160a060020a038416600090815260208190526040902054821115610b8757600080fd5b600160a060020a0384166000908152600260209081526040808320338452909152902054821115610bb757600080fd5b600160a060020a038416600090815260208190526040902054610be0908363ffffffff610dc316565b600160a060020a038086166000908152602081905260408082209390935590851681522054610c15908363ffffffff610eb616565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054610c57908363ffffffff610dc316565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b600160a060020a038216600090815260208190526040902054811115610ce757600080fd5b600160a060020a038216600090815260208190526040902054610d10908263ffffffff610dc316565b600160a060020a038316600090815260208190526040902055600154610d3c908263ffffffff610dc316565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b600082821115610dcf57fe5b50900390565b6000600160a060020a0383161515610dec57600080fd5b33600090815260208190526040902054821115610e0857600080fd5b33600090815260208190526040902054610e28908363ffffffff610dc316565b3360009081526020819052604080822092909255600160a060020a03851681522054610e5a908363ffffffff610eb616565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b81810182811015610ec357fe5b929150505600a165627a7a72305820ed7f79e189aa023132f8bade7516829c6de57a7df8eca799a23f94b39a2fe3200029
Swarm Source
bzzr://ed7f79e189aa023132f8bade7516829c6de57a7df8eca799a23f94b39a2fe320
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 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.