ERC-20
Finance
Overview
Max Total Supply
800,000,000 BTNY
Holders
1,982 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
12,187.106 BTNYValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
BTNY
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 2019-03-04 */ pragma solidity ^0.4.24; /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address who) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function transfer(address to, uint256 value) external returns (bool); function approve(address spender, uint256 value) external returns (bool); function transferFrom(address from, address to, uint256 value) external returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @title SafeMath * @dev Math operations with safety checks that revert on error */ library SafeMath { int256 constant private INT256_MIN = -2**255; /** * @dev Multiplies two unsigned integers, reverts on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring '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; } uint256 c = a * b; require(c / a == b); return c; } /** * @dev Multiplies two signed integers, reverts on overflow. */ function mul(int256 a, int256 b) internal pure returns (int256) { // Gas optimization: this is cheaper than requiring '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; } require(!(a == -1 && b == INT256_MIN)); // This is the only case of overflow not detected by the check below int256 c = a * b; require(c / a == b); return c; } /** * @dev Integer division of two unsigned integers truncating the quotient, reverts on division by zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Integer division of two signed integers truncating the quotient, reverts on division by zero. */ function div(int256 a, int256 b) internal pure returns (int256) { require(b != 0); // Solidity only automatically asserts when dividing by 0 require(!(b == -1 && a == INT256_MIN)); // This is the only case of overflow int256 c = a / b; return c; } /** * @dev Subtracts two unsigned integers, reverts on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a); uint256 c = a - b; return c; } /** * @dev Subtracts two signed integers, reverts on overflow. */ function sub(int256 a, int256 b) internal pure returns (int256) { int256 c = a - b; require((b >= 0 && c <= a) || (b < 0 && c > a)); return c; } /** * @dev Adds two unsigned integers, reverts on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a); return c; } /** * @dev Adds two signed integers, reverts on overflow. */ function add(int256 a, int256 b) internal pure returns (int256) { int256 c = a + b; require((b >= 0 && c >= a) || (b < 0 && c < a)); return c; } /** * @dev Divides two unsigned integers and returns the remainder (unsigned integer modulo), * reverts when dividing by zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b != 0); return a % b; } } /** * @title Standard ERC20 token * * @dev Implementation of the basic standard token. * https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md * Originally based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol * * This implementation emits additional Approval events, allowing applications to reconstruct the allowance status for * all accounts just by listening to said events. Note that this isn't required by the specification, and other * compliant implementations may not do it. */ contract ERC20 is IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowed; uint256 private _totalSupply; /** * @dev Total number of tokens in existence */ function totalSupply() public view returns (uint256) { return _totalSupply; } /** * @dev Gets the balance of the specified address. * @param owner The address to query 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]; } /** * @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 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) { _transfer(msg.sender, 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) { require(spender != address(0)); _allowed[msg.sender][spender] = value; emit Approval(msg.sender, spender, value); return true; } /** * @dev Transfer tokens from one address to another. * Note that while this function emits an Approval event, this is not required as per the specification, * and other compliant implementations may not emit the event. * @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) { _allowed[from][msg.sender] = _allowed[from][msg.sender].sub(value); _transfer(from, to, value); emit Approval(from, msg.sender, _allowed[from][msg.sender]); return true; } /** * @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 * Emits an Approval event. * @param spender The address which will spend the funds. * @param addedValue The amount of tokens to increase the allowance by. */ function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { require(spender != address(0)); _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 * Emits an Approval event. * @param spender The address which will spend the funds. * @param subtractedValue The amount of tokens to decrease the allowance by. */ function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { require(spender != address(0)); _allowed[msg.sender][spender] = _allowed[msg.sender][spender].sub(subtractedValue); emit Approval(msg.sender, spender, _allowed[msg.sender][spender]); return true; } /** * @dev Transfer token for a specified addresses * @param from The address to transfer from. * @param to The address to transfer to. * @param value The amount to be transferred. */ function _transfer(address from, address to, uint256 value) internal { require(to != address(0)); _balances[from] = _balances[from].sub(value); _balances[to] = _balances[to].add(value); emit Transfer(from, to, value); } /** * @dev Internal function that mints an amount of the token and assigns it to * an account. This encapsulates the modification of balances such that the * proper events are emitted. * @param account The account that will receive the created tokens. * @param value The amount that will be created. */ function _mint(address account, uint256 value) internal { require(account != address(0)); _totalSupply = _totalSupply.add(value); _balances[account] = _balances[account].add(value); emit Transfer(address(0), account, value); } /** * @dev Internal function that burns an amount of the token of a given * account. * @param account The account whose tokens will be burnt. * @param value The amount that will be burnt. */ function _burn(address account, uint256 value) internal { require(account != address(0)); _totalSupply = _totalSupply.sub(value); _balances[account] = _balances[account].sub(value); emit Transfer(account, address(0), value); } /** * @dev Internal function that burns an amount of the token of a given * account, deducting from the sender's allowance for said account. Uses the * internal burn function. * Emits an Approval event (reflecting the reduced allowance). * @param account The account whose tokens will be burnt. * @param value The amount that will be burnt. */ function _burnFrom(address account, uint256 value) internal { _allowed[account][msg.sender] = _allowed[account][msg.sender].sub(value); _burn(account, value); emit Approval(account, msg.sender, _allowed[account][msg.sender]); } } /** * @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 private _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 () internal { _owner = msg.sender; emit OwnershipTransferred(address(0), _owner); } /** * @return the address of the owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(isOwner()); _; } /** * @return true if `msg.sender` is the owner of the contract. */ function isOwner() public view returns (bool) { return msg.sender == _owner; } /** * @dev Allows the current owner to relinquish control of the contract. * @notice Renouncing to ownership will leave the contract without an owner. * It will not be possible to call the functions with the `onlyOwner` * modifier anymore. */ function renounceOwnership() public onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @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 { _transferOwnership(newOwner); } /** * @dev Transfers control of the contract to a newOwner. * @param newOwner The address to transfer ownership to. */ function _transferOwnership(address newOwner) internal { require(newOwner != address(0)); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } contract BTNY is ERC20, Ownable { string public constant name = "Bitenny"; string public constant symbol = "BTNY"; uint32 public constant decimals = 18; address public saleContract; bool public saleContractActivated; uint256 internal _startTime; uint256 internal _foundation = uint256(9e7).mul(1 ether); uint256 internal _bounty = uint256(1e7).mul(1 ether); uint256 internal _tokensForSale = uint256(7e8).mul(1 ether); uint256 internal _tokensForTeamAndAdvisors = uint256(2e8).mul(1 ether); mapping(address => uint256) public team; mapping(address => uint256) public teamReleased; mapping(address => uint256) public advisors; mapping(address => uint256) public advisorsReleased; event SaleContractActivation(address saleContract, uint256 _tokensForSale); event VestedToTeam(address who, uint256 amount); event VestedToAdvisors(address who, uint256 amount); constructor(address _newOwner) public { _transferOwnership(_newOwner); _startTime = now; uint256 tokens = _foundation.add(_bounty); _foundation = 0; _bounty = 0; _mint(_newOwner, tokens); } function _teamToRelease(address who) internal view returns(uint256) { uint256 teamStage = now.sub(_startTime).div(365 days); if (teamStage > 3) teamStage = 3; uint256 teamTokens = team[who].mul(teamStage).div(3).sub(teamReleased[who]); return teamTokens; } function _advisorsToRelease(address who) internal view returns(uint256) { uint256 advisorsStage = now.sub(_startTime).div(91 days); if (advisorsStage > 4) advisorsStage = 4; uint256 advisorsTokens = advisors[who].mul(advisorsStage).div(4).sub(advisorsReleased[who]); return advisorsTokens; } function toRelease(address who) public view returns(uint256) { uint256 teamTokens = _teamToRelease(who); uint256 advisorsTokens = _advisorsToRelease(who); return teamTokens.add(advisorsTokens); } function release() public { address who = msg.sender; uint256 teamTokens = _teamToRelease(who); uint256 advisorsTokens = _advisorsToRelease(who); uint256 tokens = teamTokens.add(advisorsTokens); require(tokens > 0); if (teamTokens > 0) teamReleased[who] = teamReleased[who].add(teamTokens); if (advisorsTokens > 0) advisorsReleased[who] = advisorsReleased[who].add(advisorsTokens); _mint(who, tokens); } function vestToTeam (address who, uint256 amount) public onlyOwner { require(who != address(0)); _tokensForTeamAndAdvisors = _tokensForTeamAndAdvisors.sub(amount); team[who] = team[who].add(amount); emit VestedToTeam(who, amount); } function vestToAdvisors (address who, uint256 amount) public onlyOwner { require(who != address(0)); _tokensForTeamAndAdvisors = _tokensForTeamAndAdvisors.sub(amount); advisors[who] = advisors[who].add(amount); emit VestedToAdvisors(who, amount); } function activateSaleContract(address saleContractAddress) public onlyOwner { require(saleContractAddress != address(0)); require(!saleContractActivated); saleContract = saleContractAddress; saleContractActivated = true; _mint(saleContract, _tokensForSale); _tokensForSale = 0; emit SaleContractActivation(saleContract, _tokensForSale); } function burnTokensForSale(uint256 amount) public returns (bool) { require(saleContract != address(0)); require(msg.sender == saleContract); _burn(saleContract, amount); return true; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"advisors","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"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":true,"inputs":[],"name":"saleContractActivated","outputs":[{"name":"","type":"bool"}],"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":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"team","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"who","type":"address"}],"name":"toRelease","outputs":[{"name":"","type":"uint256"}],"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":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"release","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"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":"amount","type":"uint256"}],"name":"burnTokensForSale","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"teamReleased","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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":"","type":"address"}],"name":"advisorsReleased","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"saleContract","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","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":"who","type":"address"},{"name":"amount","type":"uint256"}],"name":"vestToAdvisors","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"saleContractAddress","type":"address"}],"name":"activateSaleContract","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"who","type":"address"},{"name":"amount","type":"uint256"}],"name":"vestToTeam","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_newOwner","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"saleContract","type":"address"},{"indexed":false,"name":"_tokensForSale","type":"uint256"}],"name":"SaleContractActivation","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"who","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"VestedToTeam","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"who","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"VestedToAdvisors","type":"event"},{"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":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","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"}]
Contract Creation Code
60806040526200002a63055d4a80670de0b6b3a7640000640100000000620011796200016382021704565b6006556200005262989680670de0b6b3a7640000640100000000620011796200016382021704565b6007556200007b6329b92700670de0b6b3a7640000640100000000620011796200016382021704565b600855620000a4630bebc200670de0b6b3a7640000640100000000620011796200016382021704565b600955348015620000b457600080fd5b50604051602080620014d6833981016040819052905160038054600160a060020a0319163317908190559091600091600160a060020a0316908290600080516020620014b6833981519152908290a36200011782640100000000620001a0810204565b426005556007546006546200013a9164010000000062000e6f6200020182021704565b6000600681905560075590506200015b828264010000000062000214810204565b5050620002d3565b60008083151562000178576000915062000199565b508282028284828115156200018957fe5b04146200019557600080fd5b8091505b5092915050565b600160a060020a0381161515620001b657600080fd5b600354604051600160a060020a03808416921690600080516020620014b683398151915290600090a360038054600160a060020a031916600160a060020a0392909216919091179055565b6000828201838110156200019557600080fd5b600160a060020a03821615156200022a57600080fd5b60025462000247908264010000000062000e6f6200020182021704565b600255600160a060020a0382166000908152602081905260409020546200027d908264010000000062000e6f6200020182021704565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6111d380620002e36000396000f30060806040526004361061015e5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166303ca0f6c811461016357806306fdde0314610196578063095ea7b31461022057806318160ddd14610258578063209cade11461026d57806323b872dd14610282578063313ce567146102ac57806339509351146102da5780633de94925146102fe57806351932dea1461031f57806370a0823114610340578063715018a61461036157806386d1a69f146103785780638da5cb5b1461038d5780638f32d59b146103be57806395d89b41146103d35780639c3129c5146103e85780639df43a8b14610400578063a457c2d714610421578063a9059cbb14610445578063c9a58e1c14610469578063daf6ca301461048a578063dd62ed3e1461049f578063e7640213146104c6578063f2fde38b146104ea578063fdd080a41461050b578063ff4e743c1461052c575b600080fd5b34801561016f57600080fd5b50610184600160a060020a0360043516610550565b60408051918252519081900360200190f35b3480156101a257600080fd5b506101ab610562565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101e55781810151838201526020016101cd565b50505050905090810190601f1680156102125780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561022c57600080fd5b50610244600160a060020a0360043516602435610599565b604080519115158252519081900360200190f35b34801561026457600080fd5b50610184610617565b34801561027957600080fd5b5061024461061d565b34801561028e57600080fd5b50610244600160a060020a036004358116906024351660443561063e565b3480156102b857600080fd5b506102c1610707565b6040805163ffffffff9092168252519081900360200190f35b3480156102e657600080fd5b50610244600160a060020a036004351660243561070c565b34801561030a57600080fd5b50610184600160a060020a03600435166107bc565b34801561032b57600080fd5b50610184600160a060020a03600435166107ce565b34801561034c57600080fd5b50610184600160a060020a0360043516610801565b34801561036d57600080fd5b5061037661081c565b005b34801561038457600080fd5b50610376610886565b34801561039957600080fd5b506103a2610968565b60408051600160a060020a039092168252519081900360200190f35b3480156103ca57600080fd5b50610244610977565b3480156103df57600080fd5b506101ab610988565b3480156103f457600080fd5b506102446004356109bf565b34801561040c57600080fd5b50610184600160a060020a0360043516610a0e565b34801561042d57600080fd5b50610244600160a060020a0360043516602435610a20565b34801561045157600080fd5b50610244600160a060020a0360043516602435610a6b565b34801561047557600080fd5b50610184600160a060020a0360043516610a81565b34801561049657600080fd5b506103a2610a93565b3480156104ab57600080fd5b50610184600160a060020a0360043581169060243516610aa2565b3480156104d257600080fd5b50610376600160a060020a0360043516602435610acd565b3480156104f657600080fd5b50610376600160a060020a0360043516610b90565b34801561051757600080fd5b50610376600160a060020a0360043516610baf565b34801561053857600080fd5b50610376600160a060020a0360043516602435610cc1565b600c6020526000908152604090205481565b60408051808201909152600781527f426974656e6e7900000000000000000000000000000000000000000000000000602082015281565b6000600160a060020a03831615156105b057600080fd5b336000818152600160209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60025490565b60045474010000000000000000000000000000000000000000900460ff1681565b600160a060020a0383166000908152600160209081526040808320338452909152812054610672908363ffffffff610d8416565b600160a060020a03851660009081526001602090815260408083203384529091529020556106a1848484610da2565b600160a060020a0384166000818152600160209081526040808320338085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b601281565b6000600160a060020a038316151561072357600080fd5b336000908152600160209081526040808320600160a060020a0387168452909152902054610757908363ffffffff610e6f16565b336000818152600160209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600a6020526000908152604090205481565b60008060006107dc84610e88565b91506107e784610f13565b90506107f9828263ffffffff610e6f16565b949350505050565b600160a060020a031660009081526020819052604090205490565b610824610977565b151561082f57600080fd5b600354604051600091600160a060020a0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36003805473ffffffffffffffffffffffffffffffffffffffff19169055565b336000808061089484610e88565b925061089f84610f13565b91506108b1838363ffffffff610e6f16565b9050600081116108c057600080fd5b600083111561090c57600160a060020a0384166000908152600b60205260409020546108f2908463ffffffff610e6f16565b600160a060020a0385166000908152600b60205260409020555b600082111561095857600160a060020a0384166000908152600d602052604090205461093e908363ffffffff610e6f16565b600160a060020a0385166000908152600d60205260409020555b6109628482610f85565b50505050565b600354600160a060020a031690565b600354600160a060020a0316331490565b60408051808201909152600481527f42544e5900000000000000000000000000000000000000000000000000000000602082015281565b600454600090600160a060020a031615156109d957600080fd5b600454600160a060020a031633146109f057600080fd5b600454610a0690600160a060020a03168361102f565b506001919050565b600b6020526000908152604090205481565b6000600160a060020a0383161515610a3757600080fd5b336000908152600160209081526040808320600160a060020a0387168452909152902054610757908363ffffffff610d8416565b6000610a78338484610da2565b50600192915050565b600d6020526000908152604090205481565b600454600160a060020a031681565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b610ad5610977565b1515610ae057600080fd5b600160a060020a0382161515610af557600080fd5b600954610b08908263ffffffff610d8416565b600955600160a060020a0382166000908152600c6020526040902054610b34908263ffffffff610e6f16565b600160a060020a0383166000818152600c602090815260409182902093909355805191825291810183905281517f7e27fc67e6a2a445b3f2cfcbca0ceab7752c2c462a4a94a2139f8116f752e466929181900390910190a15050565b610b98610977565b1515610ba357600080fd5b610bac816110d8565b50565b610bb7610977565b1515610bc257600080fd5b600160a060020a0381161515610bd757600080fd5b60045474010000000000000000000000000000000000000000900460ff1615610bff57600080fd5b6004805474ff000000000000000000000000000000000000000019600160a060020a0380851673ffffffffffffffffffffffffffffffffffffffff199093169290921716740100000000000000000000000000000000000000001791829055600854610c6e9290911690610f85565b6000600881905560045460408051600160a060020a039092168252602082019290925281517f9ca62f58e4fb70943b408da6f28c33dd8a48223bc1f3cb8345fc8ba01be7fc24929181900390910190a150565b610cc9610977565b1515610cd457600080fd5b600160a060020a0382161515610ce957600080fd5b600954610cfc908263ffffffff610d8416565b600955600160a060020a0382166000908152600a6020526040902054610d28908263ffffffff610e6f16565b600160a060020a0383166000818152600a602090815260409182902093909355805191825291810183905281517fff2c48e58e74d1cb5753e957410c2a3fd1f36a8c52486ec6b5ea251a454a2e28929181900390910190a15050565b60008083831115610d9457600080fd5b5050808203805b5092915050565b600160a060020a0382161515610db757600080fd5b600160a060020a038316600090815260208190526040902054610de0908263ffffffff610d8416565b600160a060020a038085166000908152602081905260408082209390935590841681522054610e15908263ffffffff610e6f16565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082820183811015610e8157600080fd5b9392505050565b6000806000610eb66301e13380610eaa60055442610d8490919063ffffffff16565b9063ffffffff61115616565b91506003821115610ec657600391505b600160a060020a0384166000908152600b6020908152604080832054600a909252909120546107f99190610f0790600390610eaa908763ffffffff61117916565b9063ffffffff610d8416565b6000806000610f346277f880610eaa60055442610d8490919063ffffffff16565b91506004821115610f4457600491505b600160a060020a0384166000908152600d6020908152604080832054600c909252909120546107f99190610f0790600490610eaa908763ffffffff61117916565b600160a060020a0382161515610f9a57600080fd5b600254610fad908263ffffffff610e6f16565b600255600160a060020a038216600090815260208190526040902054610fd9908263ffffffff610e6f16565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600160a060020a038216151561104457600080fd5b600254611057908263ffffffff610d8416565b600255600160a060020a038216600090815260208190526040902054611083908263ffffffff610d8416565b600160a060020a038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b600160a060020a03811615156110ed57600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60008080831161116557600080fd5b828481151561117057fe5b04949350505050565b60008083151561118c5760009150610d9b565b5082820282848281151561119c57fe5b0414610e8157600080fd00a165627a7a7230582028760c7b849aa263f5ed1ca21eb7be45f80321f66410cb68d7f53266ae3ba23300298be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e000000000000000000000000024fa1d6d0f0858ec11b3a94919e82b8dd7130a5c
Deployed Bytecode
0x60806040526004361061015e5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166303ca0f6c811461016357806306fdde0314610196578063095ea7b31461022057806318160ddd14610258578063209cade11461026d57806323b872dd14610282578063313ce567146102ac57806339509351146102da5780633de94925146102fe57806351932dea1461031f57806370a0823114610340578063715018a61461036157806386d1a69f146103785780638da5cb5b1461038d5780638f32d59b146103be57806395d89b41146103d35780639c3129c5146103e85780639df43a8b14610400578063a457c2d714610421578063a9059cbb14610445578063c9a58e1c14610469578063daf6ca301461048a578063dd62ed3e1461049f578063e7640213146104c6578063f2fde38b146104ea578063fdd080a41461050b578063ff4e743c1461052c575b600080fd5b34801561016f57600080fd5b50610184600160a060020a0360043516610550565b60408051918252519081900360200190f35b3480156101a257600080fd5b506101ab610562565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101e55781810151838201526020016101cd565b50505050905090810190601f1680156102125780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561022c57600080fd5b50610244600160a060020a0360043516602435610599565b604080519115158252519081900360200190f35b34801561026457600080fd5b50610184610617565b34801561027957600080fd5b5061024461061d565b34801561028e57600080fd5b50610244600160a060020a036004358116906024351660443561063e565b3480156102b857600080fd5b506102c1610707565b6040805163ffffffff9092168252519081900360200190f35b3480156102e657600080fd5b50610244600160a060020a036004351660243561070c565b34801561030a57600080fd5b50610184600160a060020a03600435166107bc565b34801561032b57600080fd5b50610184600160a060020a03600435166107ce565b34801561034c57600080fd5b50610184600160a060020a0360043516610801565b34801561036d57600080fd5b5061037661081c565b005b34801561038457600080fd5b50610376610886565b34801561039957600080fd5b506103a2610968565b60408051600160a060020a039092168252519081900360200190f35b3480156103ca57600080fd5b50610244610977565b3480156103df57600080fd5b506101ab610988565b3480156103f457600080fd5b506102446004356109bf565b34801561040c57600080fd5b50610184600160a060020a0360043516610a0e565b34801561042d57600080fd5b50610244600160a060020a0360043516602435610a20565b34801561045157600080fd5b50610244600160a060020a0360043516602435610a6b565b34801561047557600080fd5b50610184600160a060020a0360043516610a81565b34801561049657600080fd5b506103a2610a93565b3480156104ab57600080fd5b50610184600160a060020a0360043581169060243516610aa2565b3480156104d257600080fd5b50610376600160a060020a0360043516602435610acd565b3480156104f657600080fd5b50610376600160a060020a0360043516610b90565b34801561051757600080fd5b50610376600160a060020a0360043516610baf565b34801561053857600080fd5b50610376600160a060020a0360043516602435610cc1565b600c6020526000908152604090205481565b60408051808201909152600781527f426974656e6e7900000000000000000000000000000000000000000000000000602082015281565b6000600160a060020a03831615156105b057600080fd5b336000818152600160209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60025490565b60045474010000000000000000000000000000000000000000900460ff1681565b600160a060020a0383166000908152600160209081526040808320338452909152812054610672908363ffffffff610d8416565b600160a060020a03851660009081526001602090815260408083203384529091529020556106a1848484610da2565b600160a060020a0384166000818152600160209081526040808320338085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b601281565b6000600160a060020a038316151561072357600080fd5b336000908152600160209081526040808320600160a060020a0387168452909152902054610757908363ffffffff610e6f16565b336000818152600160209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600a6020526000908152604090205481565b60008060006107dc84610e88565b91506107e784610f13565b90506107f9828263ffffffff610e6f16565b949350505050565b600160a060020a031660009081526020819052604090205490565b610824610977565b151561082f57600080fd5b600354604051600091600160a060020a0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36003805473ffffffffffffffffffffffffffffffffffffffff19169055565b336000808061089484610e88565b925061089f84610f13565b91506108b1838363ffffffff610e6f16565b9050600081116108c057600080fd5b600083111561090c57600160a060020a0384166000908152600b60205260409020546108f2908463ffffffff610e6f16565b600160a060020a0385166000908152600b60205260409020555b600082111561095857600160a060020a0384166000908152600d602052604090205461093e908363ffffffff610e6f16565b600160a060020a0385166000908152600d60205260409020555b6109628482610f85565b50505050565b600354600160a060020a031690565b600354600160a060020a0316331490565b60408051808201909152600481527f42544e5900000000000000000000000000000000000000000000000000000000602082015281565b600454600090600160a060020a031615156109d957600080fd5b600454600160a060020a031633146109f057600080fd5b600454610a0690600160a060020a03168361102f565b506001919050565b600b6020526000908152604090205481565b6000600160a060020a0383161515610a3757600080fd5b336000908152600160209081526040808320600160a060020a0387168452909152902054610757908363ffffffff610d8416565b6000610a78338484610da2565b50600192915050565b600d6020526000908152604090205481565b600454600160a060020a031681565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b610ad5610977565b1515610ae057600080fd5b600160a060020a0382161515610af557600080fd5b600954610b08908263ffffffff610d8416565b600955600160a060020a0382166000908152600c6020526040902054610b34908263ffffffff610e6f16565b600160a060020a0383166000818152600c602090815260409182902093909355805191825291810183905281517f7e27fc67e6a2a445b3f2cfcbca0ceab7752c2c462a4a94a2139f8116f752e466929181900390910190a15050565b610b98610977565b1515610ba357600080fd5b610bac816110d8565b50565b610bb7610977565b1515610bc257600080fd5b600160a060020a0381161515610bd757600080fd5b60045474010000000000000000000000000000000000000000900460ff1615610bff57600080fd5b6004805474ff000000000000000000000000000000000000000019600160a060020a0380851673ffffffffffffffffffffffffffffffffffffffff199093169290921716740100000000000000000000000000000000000000001791829055600854610c6e9290911690610f85565b6000600881905560045460408051600160a060020a039092168252602082019290925281517f9ca62f58e4fb70943b408da6f28c33dd8a48223bc1f3cb8345fc8ba01be7fc24929181900390910190a150565b610cc9610977565b1515610cd457600080fd5b600160a060020a0382161515610ce957600080fd5b600954610cfc908263ffffffff610d8416565b600955600160a060020a0382166000908152600a6020526040902054610d28908263ffffffff610e6f16565b600160a060020a0383166000818152600a602090815260409182902093909355805191825291810183905281517fff2c48e58e74d1cb5753e957410c2a3fd1f36a8c52486ec6b5ea251a454a2e28929181900390910190a15050565b60008083831115610d9457600080fd5b5050808203805b5092915050565b600160a060020a0382161515610db757600080fd5b600160a060020a038316600090815260208190526040902054610de0908263ffffffff610d8416565b600160a060020a038085166000908152602081905260408082209390935590841681522054610e15908263ffffffff610e6f16565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082820183811015610e8157600080fd5b9392505050565b6000806000610eb66301e13380610eaa60055442610d8490919063ffffffff16565b9063ffffffff61115616565b91506003821115610ec657600391505b600160a060020a0384166000908152600b6020908152604080832054600a909252909120546107f99190610f0790600390610eaa908763ffffffff61117916565b9063ffffffff610d8416565b6000806000610f346277f880610eaa60055442610d8490919063ffffffff16565b91506004821115610f4457600491505b600160a060020a0384166000908152600d6020908152604080832054600c909252909120546107f99190610f0790600490610eaa908763ffffffff61117916565b600160a060020a0382161515610f9a57600080fd5b600254610fad908263ffffffff610e6f16565b600255600160a060020a038216600090815260208190526040902054610fd9908263ffffffff610e6f16565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600160a060020a038216151561104457600080fd5b600254611057908263ffffffff610d8416565b600255600160a060020a038216600090815260208190526040902054611083908263ffffffff610d8416565b600160a060020a038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b600160a060020a03811615156110ed57600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60008080831161116557600080fd5b828481151561117057fe5b04949350505050565b60008083151561118c5760009150610d9b565b5082820282848281151561119c57fe5b0414610e8157600080fd00a165627a7a7230582028760c7b849aa263f5ed1ca21eb7be45f80321f66410cb68d7f53266ae3ba2330029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000024fa1d6d0f0858ec11b3a94919e82b8dd7130a5c
-----Decoded View---------------
Arg [0] : _newOwner (address): 0x24FA1d6D0f0858EC11b3a94919e82b8Dd7130A5c
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000024fa1d6d0f0858ec11b3a94919e82b8dd7130a5c
Swarm Source
bzzr://28760c7b849aa263f5ed1ca21eb7be45f80321f66410cb68d7f53266ae3ba233
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.