Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 148 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 9971863 | 1778 days ago | IN | 0 ETH | 0.00074564 | ||||
Transfer | 9911256 | 1787 days ago | IN | 0 ETH | 0.00016404 | ||||
Transfer | 7694155 | 2140 days ago | IN | 0 ETH | 0.00031249 | ||||
Transfer | 7520144 | 2167 days ago | IN | 0 ETH | 0.00017296 | ||||
Transfer | 7339868 | 2195 days ago | IN | 0 ETH | 0.00022249 | ||||
Transfer | 6945149 | 2270 days ago | IN | 0 ETH | 0.00044498 | ||||
Transfer | 6837102 | 2289 days ago | IN | 0 ETH | 0.0010955 | ||||
Transfer | 6837093 | 2289 days ago | IN | 0 ETH | 0.00090655 | ||||
Transfer | 6683027 | 2314 days ago | IN | 0.001 ETH | 0.0000853 | ||||
Transfer | 6677887 | 2315 days ago | IN | 0 ETH | 0.00285962 | ||||
Transfer | 6677061 | 2315 days ago | IN | 0 ETH | 0.00273756 | ||||
Transfer | 6659230 | 2318 days ago | IN | 0 ETH | 0.00111477 | ||||
Transfer | 6659188 | 2318 days ago | IN | 0 ETH | 0.00249342 | ||||
Transfer | 6658642 | 2318 days ago | IN | 0 ETH | 0.00052082 | ||||
Transfer | 6652523 | 2319 days ago | IN | 0.003 ETH | 0.0000853 | ||||
Transfer | 6644256 | 2320 days ago | IN | 0 ETH | 0.00068958 | ||||
Transfer | 6641747 | 2321 days ago | IN | 0 ETH | 0.00046873 | ||||
Transfer | 6636839 | 2321 days ago | IN | 0 ETH | 0.0005736 | ||||
Approve | 6631799 | 2322 days ago | IN | 0 ETH | 0.00018218 | ||||
Transfer | 6631436 | 2322 days ago | IN | 0 ETH | 0.00058481 | ||||
Transfer | 6631158 | 2322 days ago | IN | 0 ETH | 0.00056644 | ||||
Transfer | 6629993 | 2323 days ago | IN | 0 ETH | 0.00052146 | ||||
Transfer | 6629945 | 2323 days ago | IN | 0 ETH | 0.00037146 | ||||
Transfer | 6629757 | 2323 days ago | IN | 0 ETH | 0.00047974 | ||||
Transfer | 6629707 | 2323 days ago | IN | 0 ETH | 0.00037146 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Method | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|---|
Transfer | 6622547 | 2324 days ago | 1.218 ETH | ||||
Transfer | 6622500 | 2324 days ago | 1.22 ETH | ||||
Transfer | 6622321 | 2324 days ago | 1.22 ETH | ||||
Transfer | 6622317 | 2324 days ago | 1.22 ETH | ||||
Transfer | 6622200 | 2324 days ago | 1.22 ETH | ||||
Transfer | 6622177 | 2324 days ago | 1.22 ETH | ||||
Transfer | 6622164 | 2324 days ago | 1.22 ETH | ||||
Transfer | 6622103 | 2324 days ago | 1.22 ETH | ||||
Transfer | 6622096 | 2324 days ago | 1.22 ETH | ||||
Transfer | 6622068 | 2324 days ago | 1.22 ETH | ||||
Transfer | 6621980 | 2324 days ago | 1.22 ETH | ||||
Transfer | 6621967 | 2324 days ago | 1.22 ETH | ||||
Transfer | 6621927 | 2324 days ago | 1.22 ETH | ||||
Transfer | 6621904 | 2324 days ago | 1.23 ETH | ||||
Transfer | 6621861 | 2324 days ago | 1.22 ETH | ||||
Transfer | 6621842 | 2324 days ago | 1.228 ETH | ||||
Transfer | 6621821 | 2324 days ago | 1.23 ETH | ||||
Transfer | 6621787 | 2324 days ago | 1.21 ETH | ||||
Transfer | 6621774 | 2324 days ago | 1.225 ETH | ||||
Transfer | 6621761 | 2324 days ago | 1.231 ETH | ||||
Transfer | 6621752 | 2324 days ago | 1.231 ETH | ||||
Transfer | 6621734 | 2324 days ago | 1.23 ETH | ||||
Transfer | 6621728 | 2324 days ago | 1.22 ETH | ||||
Transfer | 6621717 | 2324 days ago | 1.23 ETH | ||||
Transfer | 6621682 | 2324 days ago | 1.235 ETH |
Loading...
Loading
Contract Name:
Cryptomaniac
Compiler Version
v0.4.25+commit.59dbf8f1
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2018-09-21 */ pragma solidity ^0.4.23; library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. **/ function mul(uint256 a, uint256 b) internal pure returns (uint256 c) { 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 /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ // 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; } } /** * @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. **/ constructor() 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)); emit OwnershipTransferred(owner, newOwner); owner = newOwner; } } /** * @title ERC20Basic interface * @dev Basic ERC20 interface **/ 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 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]; } } 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; } } /** * @title Configurable * @dev Configurable varriables of the contract **/ contract Configurable { uint256 public constant cap = 1000000*10**18; uint256 public constant basePrice = 20000*10**18; // tokens per 1 ether uint256 public tokensSold = 0; uint256 public constant tokenReserve = 200000*10**18; uint256 public remainingTokens = 0; } /** * @title CrowdsaleToken * @dev Contract to preform crowd sale with token **/ contract CrowdsaleToken is StandardToken, Configurable, Ownable { /** * @dev enum of current crowd sale state **/ enum Stages { none, icoStart, icoEnd } Stages currentStage; /** * @dev constructor of CrowdsaleToken **/ constructor() public { currentStage = Stages.none; balances[owner] = balances[owner].add(tokenReserve); totalSupply_ = totalSupply_.add(tokenReserve); remainingTokens = cap; emit Transfer(address(this), owner, tokenReserve); } /** * @dev fallback function to send ether to for Crowd sale **/ function () public payable { require(currentStage == Stages.icoStart); require(msg.value > 0); require(remainingTokens > 0); uint256 weiAmount = msg.value; // Calculate tokens to sell uint256 tokens = weiAmount.mul(basePrice).div(1 ether); uint256 returnWei = 0; if(tokensSold.add(tokens) > cap){ uint256 newTokens = cap.sub(tokensSold); uint256 newWei = newTokens.div(basePrice).mul(1 ether); returnWei = weiAmount.sub(newWei); weiAmount = newWei; tokens = newTokens; } tokensSold = tokensSold.add(tokens); // Increment raised amount remainingTokens = cap.sub(tokensSold); if(returnWei > 0){ msg.sender.transfer(returnWei); emit Transfer(address(this), msg.sender, returnWei); } balances[msg.sender] = balances[msg.sender].add(tokens); emit Transfer(address(this), msg.sender, tokens); totalSupply_ = totalSupply_.add(tokens); owner.transfer(weiAmount);// Send money to owner } /** * @dev startIco starts the public ICO **/ function startIco() public onlyOwner { require(currentStage != Stages.icoEnd); currentStage = Stages.icoStart; } /** * @dev endIco closes down the ICO **/ function endIco() internal { currentStage = Stages.icoEnd; // Transfer any remaining tokens if(remainingTokens > 0) balances[owner] = balances[owner].add(remainingTokens); // transfer any remaining ETH balance in the contract to the owner owner.transfer(address(this).balance); } /** * @dev finalizeIco closes down the ICO and sets needed varriables **/ function finalizeIco() public onlyOwner { require(currentStage != Stages.icoEnd); endIco(); } } /** * @title CryptomaniacToken * @dev Contract to create the Cryptomaniac Token **/ contract Cryptomaniac is CrowdsaleToken { string public constant name = "Cryptomaniac"; string public constant symbol = "CRMC"; uint32 public constant decimals = 18; }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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":"decimals","outputs":[{"name":"","type":"uint32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"cap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokensSold","outputs":[{"name":"","type":"uint256"}],"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":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"startIco","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finalizeIco","outputs":[],"payable":false,"stateMutability":"nonpayable","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":"remainingTokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"basePrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokenReserve","outputs":[{"name":"","type":"uint256"}],"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"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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
6080604090815260006003819055600481905560058054600160a060020a031916331760a060020a60ff02198116909155600160a060020a031681526020819052205461006390692a5a058fc295ed0000006401000000006106ae61010782021704565b600554600160a060020a03166000908152602081905260409020556001546100a290692a5a058fc295ed0000006401000000006106ae61010782021704565b60015569d3c21bcecceda100000060045560055460408051692a5a058fc295ed00000081529051600160a060020a039092169130917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef919081900360200190a361011a565b8181018281101561011457fe5b92915050565b610e76806101296000396000f3006080604052600436106101115763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610379578063095ea7b31461040357806318160ddd1461043b57806323b872dd14610462578063313ce5671461048c578063355274ea146104ba578063518ab2a8146104cf57806366188463146104e457806370a082311461050857806389311e6f146105295780638da5cb5b14610540578063903a3ef61461057157806395d89b4114610586578063a9059cbb1461059b578063bf583903146105bf578063c7876ea4146105d4578063cbcb3171146105e9578063d73dd623146105fe578063dd62ed3e14610622578063f2fde38b14610649575b600080808080600160055474010000000000000000000000000000000000000000900460ff16600281111561014257fe5b1461014c57600080fd5b6000341161015957600080fd5b60045460001061016857600080fd5b34945061019d670de0b6b3a76400006101918769043c33c193756480000063ffffffff61066a16565b9063ffffffff61069916565b93506000925069d3c21bcecceda10000006101c3856003546106ae90919063ffffffff16565b1115610236576003546101e79069d3c21bcecceda10000009063ffffffff6106bb16565b915061021b670de0b6b3a764000061020f8469043c33c193756480000063ffffffff61069916565b9063ffffffff61066a16565b905061022d858263ffffffff6106bb16565b92508094508193505b600354610249908563ffffffff6106ae16565b60038190556102699069d3c21bcecceda10000009063ffffffff6106bb16565b60045560008311156102c957604051339084156108fc029085906000818181858888f193505050501580156102a2573d6000803e3d6000fd5b5060408051848152905133913091600080516020610e2b8339815191529181900360200190a35b336000908152602081905260409020546102e9908563ffffffff6106ae16565b3360008181526020818152604091829020939093558051878152905191923092600080516020610e2b8339815191529281900390910190a3600154610334908563ffffffff6106ae16565b600155600554604051600160a060020a039091169086156108fc029087906000818181858888f19350505050158015610371573d6000803e3d6000fd5b505050505050005b34801561038557600080fd5b5061038e6106cd565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103c85781810151838201526020016103b0565b50505050905090810190601f1680156103f55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561040f57600080fd5b50610427600160a060020a0360043516602435610704565b604080519115158252519081900360200190f35b34801561044757600080fd5b5061045061076a565b60408051918252519081900360200190f35b34801561046e57600080fd5b50610427600160a060020a0360043581169060243516604435610770565b34801561049857600080fd5b506104a16108d5565b6040805163ffffffff9092168252519081900360200190f35b3480156104c657600080fd5b506104506108da565b3480156104db57600080fd5b506104506108e8565b3480156104f057600080fd5b50610427600160a060020a03600435166024356108ee565b34801561051457600080fd5b50610450600160a060020a03600435166109de565b34801561053557600080fd5b5061053e6109f9565b005b34801561054c57600080fd5b50610555610a7d565b60408051600160a060020a039092168252519081900360200190f35b34801561057d57600080fd5b5061053e610a8c565b34801561059257600080fd5b5061038e610ae3565b3480156105a757600080fd5b50610427600160a060020a0360043516602435610b1a565b3480156105cb57600080fd5b50610450610be9565b3480156105e057600080fd5b50610450610bef565b3480156105f557600080fd5b50610450610bfd565b34801561060a57600080fd5b50610427600160a060020a0360043516602435610c0b565b34801561062e57600080fd5b50610450600160a060020a0360043581169060243516610ca4565b34801561065557600080fd5b5061053e600160a060020a0360043516610ccf565b600082151561067b57506000610693565b5081810281838281151561068b57fe5b041461069357fe5b92915050565b600081838115156106a657fe5b049392505050565b8181018281101561069357fe5b6000828211156106c757fe5b50900390565b60408051808201909152600c81527f43727970746f6d616e6961630000000000000000000000000000000000000000602082015281565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60015490565b6000600160a060020a038316151561078757600080fd5b600160a060020a0384166000908152602081905260409020548211156107ac57600080fd5b600160a060020a03841660009081526002602090815260408083203384529091529020548211156107dc57600080fd5b600160a060020a038416600090815260208190526040902054610805908363ffffffff6106bb16565b600160a060020a03808616600090815260208190526040808220939093559085168152205461083a908363ffffffff6106ae16565b600160a060020a0380851660009081526020818152604080832094909455918716815260028252828120338252909152205461087c908363ffffffff6106bb16565b600160a060020a0380861660008181526002602090815260408083203384528252918290209490945580518681529051928716939192600080516020610e2b833981519152929181900390910190a35060019392505050565b601281565b69d3c21bcecceda100000081565b60035481565b336000908152600260209081526040808320600160a060020a03861684529091528120548083111561094357336000908152600260209081526040808320600160a060020a0388168452909152812055610978565b610953818463ffffffff6106bb16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526020819052604090205490565b600554600160a060020a03163314610a1057600080fd5b600260055474010000000000000000000000000000000000000000900460ff166002811115610a3b57fe5b1415610a4657600080fd5b6005805474ff0000000000000000000000000000000000000000191674010000000000000000000000000000000000000000179055565b600554600160a060020a031681565b600554600160a060020a03163314610aa357600080fd5b600260055474010000000000000000000000000000000000000000900460ff166002811115610ace57fe5b1415610ad957600080fd5b610ae1610d64565b565b60408051808201909152600481527f43524d4300000000000000000000000000000000000000000000000000000000602082015281565b6000600160a060020a0383161515610b3157600080fd5b33600090815260208190526040902054821115610b4d57600080fd5b33600090815260208190526040902054610b6d908363ffffffff6106bb16565b3360009081526020819052604080822092909255600160a060020a03851681522054610b9f908363ffffffff6106ae16565b600160a060020a03841660008181526020818152604091829020939093558051858152905191923392600080516020610e2b8339815191529281900390910190a350600192915050565b60045481565b69043c33c193756480000081565b692a5a058fc295ed00000081565b336000908152600260209081526040808320600160a060020a0386168452909152812054610c3f908363ffffffff6106ae16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600554600160a060020a03163314610ce657600080fd5b600160a060020a0381161515610cfb57600080fd5b600554604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36005805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6005805474ff000000000000000000000000000000000000000019167402000000000000000000000000000000000000000017905560045460001015610ded57600454600554600160a060020a0316600090815260208190526040902054610dd19163ffffffff6106ae16565b600554600160a060020a03166000908152602081905260409020555b600554604051600160a060020a0390911690303180156108fc02916000818181858888f19350505050158015610e27573d6000803e3d6000fd5b505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a7230582027fe41f3bd80aa2775f15935e0cd5abe899b137fd56d6865c4d9f7bd8bbf98850029
Deployed Bytecode
0x6080604052600436106101115763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610379578063095ea7b31461040357806318160ddd1461043b57806323b872dd14610462578063313ce5671461048c578063355274ea146104ba578063518ab2a8146104cf57806366188463146104e457806370a082311461050857806389311e6f146105295780638da5cb5b14610540578063903a3ef61461057157806395d89b4114610586578063a9059cbb1461059b578063bf583903146105bf578063c7876ea4146105d4578063cbcb3171146105e9578063d73dd623146105fe578063dd62ed3e14610622578063f2fde38b14610649575b600080808080600160055474010000000000000000000000000000000000000000900460ff16600281111561014257fe5b1461014c57600080fd5b6000341161015957600080fd5b60045460001061016857600080fd5b34945061019d670de0b6b3a76400006101918769043c33c193756480000063ffffffff61066a16565b9063ffffffff61069916565b93506000925069d3c21bcecceda10000006101c3856003546106ae90919063ffffffff16565b1115610236576003546101e79069d3c21bcecceda10000009063ffffffff6106bb16565b915061021b670de0b6b3a764000061020f8469043c33c193756480000063ffffffff61069916565b9063ffffffff61066a16565b905061022d858263ffffffff6106bb16565b92508094508193505b600354610249908563ffffffff6106ae16565b60038190556102699069d3c21bcecceda10000009063ffffffff6106bb16565b60045560008311156102c957604051339084156108fc029085906000818181858888f193505050501580156102a2573d6000803e3d6000fd5b5060408051848152905133913091600080516020610e2b8339815191529181900360200190a35b336000908152602081905260409020546102e9908563ffffffff6106ae16565b3360008181526020818152604091829020939093558051878152905191923092600080516020610e2b8339815191529281900390910190a3600154610334908563ffffffff6106ae16565b600155600554604051600160a060020a039091169086156108fc029087906000818181858888f19350505050158015610371573d6000803e3d6000fd5b505050505050005b34801561038557600080fd5b5061038e6106cd565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103c85781810151838201526020016103b0565b50505050905090810190601f1680156103f55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561040f57600080fd5b50610427600160a060020a0360043516602435610704565b604080519115158252519081900360200190f35b34801561044757600080fd5b5061045061076a565b60408051918252519081900360200190f35b34801561046e57600080fd5b50610427600160a060020a0360043581169060243516604435610770565b34801561049857600080fd5b506104a16108d5565b6040805163ffffffff9092168252519081900360200190f35b3480156104c657600080fd5b506104506108da565b3480156104db57600080fd5b506104506108e8565b3480156104f057600080fd5b50610427600160a060020a03600435166024356108ee565b34801561051457600080fd5b50610450600160a060020a03600435166109de565b34801561053557600080fd5b5061053e6109f9565b005b34801561054c57600080fd5b50610555610a7d565b60408051600160a060020a039092168252519081900360200190f35b34801561057d57600080fd5b5061053e610a8c565b34801561059257600080fd5b5061038e610ae3565b3480156105a757600080fd5b50610427600160a060020a0360043516602435610b1a565b3480156105cb57600080fd5b50610450610be9565b3480156105e057600080fd5b50610450610bef565b3480156105f557600080fd5b50610450610bfd565b34801561060a57600080fd5b50610427600160a060020a0360043516602435610c0b565b34801561062e57600080fd5b50610450600160a060020a0360043581169060243516610ca4565b34801561065557600080fd5b5061053e600160a060020a0360043516610ccf565b600082151561067b57506000610693565b5081810281838281151561068b57fe5b041461069357fe5b92915050565b600081838115156106a657fe5b049392505050565b8181018281101561069357fe5b6000828211156106c757fe5b50900390565b60408051808201909152600c81527f43727970746f6d616e6961630000000000000000000000000000000000000000602082015281565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60015490565b6000600160a060020a038316151561078757600080fd5b600160a060020a0384166000908152602081905260409020548211156107ac57600080fd5b600160a060020a03841660009081526002602090815260408083203384529091529020548211156107dc57600080fd5b600160a060020a038416600090815260208190526040902054610805908363ffffffff6106bb16565b600160a060020a03808616600090815260208190526040808220939093559085168152205461083a908363ffffffff6106ae16565b600160a060020a0380851660009081526020818152604080832094909455918716815260028252828120338252909152205461087c908363ffffffff6106bb16565b600160a060020a0380861660008181526002602090815260408083203384528252918290209490945580518681529051928716939192600080516020610e2b833981519152929181900390910190a35060019392505050565b601281565b69d3c21bcecceda100000081565b60035481565b336000908152600260209081526040808320600160a060020a03861684529091528120548083111561094357336000908152600260209081526040808320600160a060020a0388168452909152812055610978565b610953818463ffffffff6106bb16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526020819052604090205490565b600554600160a060020a03163314610a1057600080fd5b600260055474010000000000000000000000000000000000000000900460ff166002811115610a3b57fe5b1415610a4657600080fd5b6005805474ff0000000000000000000000000000000000000000191674010000000000000000000000000000000000000000179055565b600554600160a060020a031681565b600554600160a060020a03163314610aa357600080fd5b600260055474010000000000000000000000000000000000000000900460ff166002811115610ace57fe5b1415610ad957600080fd5b610ae1610d64565b565b60408051808201909152600481527f43524d4300000000000000000000000000000000000000000000000000000000602082015281565b6000600160a060020a0383161515610b3157600080fd5b33600090815260208190526040902054821115610b4d57600080fd5b33600090815260208190526040902054610b6d908363ffffffff6106bb16565b3360009081526020819052604080822092909255600160a060020a03851681522054610b9f908363ffffffff6106ae16565b600160a060020a03841660008181526020818152604091829020939093558051858152905191923392600080516020610e2b8339815191529281900390910190a350600192915050565b60045481565b69043c33c193756480000081565b692a5a058fc295ed00000081565b336000908152600260209081526040808320600160a060020a0386168452909152812054610c3f908363ffffffff6106ae16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600554600160a060020a03163314610ce657600080fd5b600160a060020a0381161515610cfb57600080fd5b600554604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36005805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6005805474ff000000000000000000000000000000000000000019167402000000000000000000000000000000000000000017905560045460001015610ded57600454600554600160a060020a0316600090815260208190526040902054610dd19163ffffffff6106ae16565b600554600160a060020a03166000908152602081905260409020555b600554604051600160a060020a0390911690303180156108fc02916000818181858888f19350505050158015610e27573d6000803e3d6000fd5b505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a7230582027fe41f3bd80aa2775f15935e0cd5abe899b137fd56d6865c4d9f7bd8bbf98850029
Swarm Source
bzzr://27fe41f3bd80aa2775f15935e0cd5abe899b137fd56d6865c4d9f7bd8bbf9885
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 35 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.