Overview
Max Total Supply
7,500 RAK
Holders
474 (0.00%)
Market
Price
$5.52 @ 0.002103 ETH (-2.65%)
Onchain Market Cap
$41,400.00
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
RakeToken
Compiler Version
v0.5.0+commit.1d4f565a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-10-05 */ pragma solidity ^0.5.0; interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: 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 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor () internal { } function _msgSender() internal view returns (address payable) { return msg.sender; } function _msgData() internal view returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * - Multiplication cannot 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-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } contract ERC20 is Context, IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for `sender`'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal { require(account != address(0), "ERC20: mint to the zero address"); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal { require(account != address(0), "ERC20: burn from the zero address"); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } } contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public { uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), decreasedAllowance); _burn(account, amount); } } contract RakeToken is ERC20Burnable { string public constant name = "Rake Finance"; string public constant symbol = "RAK"; uint8 public constant decimals = 18; using SafeMath for uint256; constructor(address owner) public { //7500 RAK Token Total Supply uint256 allocatedForCrowdsale = 5000; uint256 ownerFunds = 2500; _mint(owner, ownerFunds.mul(1e18)); //2500 RAK Token to Owner _mint(msg.sender, allocatedForCrowdsale.mul(1e18)); //5000 RAK Token to Crowdsale contract } }
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":"amount","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":"sender","type":"address"},{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"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":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"},{"name":"amount","type":"uint256"}],"name":"burnFrom","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":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"}],"name":"transfer","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":[{"name":"owner","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"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
60806040523480156200001157600080fd5b5060405160208062001177833981018060405260208110156200003357600080fd5b50516113886109c462000071836200006283670de0b6b3a764000064010000000062000da8620000a182021704565b64010000000062000161810204565b62000098336200006284670de0b6b3a764000064010000000062000da8620000a182021704565b505050620002f7565b6000821515620000b4575060006200015b565b828202828482811515620000c457fe5b04146200015857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60448201527f7700000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b90505b92915050565b600160a060020a0382161515620001d957604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600254620001f6908264010000000062000b826200028282021704565b600255600160a060020a0382166000908152602081905260409020546200022c908264010000000062000b826200028282021704565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000828201838110156200015857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b610e7080620003076000396000f3fe6080604052600436106100c45763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100c9578063095ea7b31461015357806318160ddd146101a057806323b872dd146101c7578063313ce5671461020a578063395093511461023557806342966c681461026e57806370a082311461029a57806379cc6790146102cd57806395d89b4114610306578063a457c2d71461031b578063a9059cbb14610354578063dd62ed3e1461038d575b600080fd5b3480156100d557600080fd5b506100de6103c8565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610118578181015183820152602001610100565b50505050905090810190601f1680156101455780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561015f57600080fd5b5061018c6004803603604081101561017657600080fd5b50600160a060020a0381351690602001356103ff565b604080519115158252519081900360200190f35b3480156101ac57600080fd5b506101b561041d565b60408051918252519081900360200190f35b3480156101d357600080fd5b5061018c600480360360608110156101ea57600080fd5b50600160a060020a03813581169160208101359091169060400135610423565b34801561021657600080fd5b5061021f610502565b6040805160ff9092168252519081900360200190f35b34801561024157600080fd5b5061018c6004803603604081101561025857600080fd5b50600160a060020a038135169060200135610507565b34801561027a57600080fd5b506102986004803603602081101561029157600080fd5b503561055b565b005b3480156102a657600080fd5b506101b5600480360360208110156102bd57600080fd5b5035600160a060020a031661056f565b3480156102d957600080fd5b50610298600480360360408110156102f057600080fd5b50600160a060020a03813516906020013561058a565b34801561031257600080fd5b506100de61062e565b34801561032757600080fd5b5061018c6004803603604081101561033e57600080fd5b50600160a060020a038135169060200135610665565b34801561036057600080fd5b5061018c6004803603604081101561037757600080fd5b50600160a060020a038135169060200135610717565b34801561039957600080fd5b506101b5600480360360408110156103b057600080fd5b50600160a060020a038135811691602001351661072b565b60408051808201909152600c81527f52616b652046696e616e63650000000000000000000000000000000000000000602082015281565b600061041361040c610756565b848461075a565b5060015b92915050565b60025490565b60006104308484846108c7565b6104f88461043c610756565b6104f385606060405190810160405280602881526020017f45524332303a207472616e7366657220616d6f756e742065786365656473206181526020017f6c6c6f77616e6365000000000000000000000000000000000000000000000000815250600160008b600160a060020a0316600160a060020a0316815260200190815260200160002060006104cc610756565b600160a060020a03168152602081019190915260400160002054919063ffffffff610ae816565b61075a565b5060019392505050565b601281565b6000610413610514610756565b846104f38560016000610525610756565b600160a060020a03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610b8216565b61056c610566610756565b82610be6565b50565b600160a060020a031660009081526020819052604090205490565b600061060b82606060405190810160405280602481526020017f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7781526020017f616e6365000000000000000000000000000000000000000000000000000000008152506105fe866105f9610756565b61072b565b919063ffffffff610ae816565b905061061f83610619610756565b8361075a565b6106298383610be6565b505050565b60408051808201909152600381527f52414b0000000000000000000000000000000000000000000000000000000000602082015281565b6000610413610672610756565b846104f385606060405190810160405280602581526020017f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7781526020017f207a65726f000000000000000000000000000000000000000000000000000000815250600160006106e0610756565b600160a060020a03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610ae816565b6000610413610724610756565b84846108c7565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b3390565b600160a060020a03831615156107df576040805160e560020a62461bcd028152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0382161515610865576040805160e560020a62461bcd02815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600160a060020a038316151561094d576040805160e560020a62461bcd02815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a03821615156109d3576040805160e560020a62461bcd02815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b60408051606081018252602681527f45524332303a207472616e7366657220616d6f756e74206578636565647320626020808301919091527f616c616e6365000000000000000000000000000000000000000000000000000082840152600160a060020a0386166000908152908190529190912054610a5991839063ffffffff610ae816565b600160a060020a038085166000908152602081905260408082209390935590841681522054610a8e908263ffffffff610b8216565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610b7a5760405160e560020a62461bcd0281526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610b3f578181015183820152602001610b27565b50505050905090810190601f168015610b6c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610bdf576040805160e560020a62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600160a060020a0382161515610c6c576040805160e560020a62461bcd02815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b60408051606081018252602281527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e6020808301919091527f636500000000000000000000000000000000000000000000000000000000000082840152600160a060020a0385166000908152908190529190912054610cf291839063ffffffff610ae816565b600160a060020a038316600090815260208190526040902055600254610d1e908263ffffffff610d6616565b600255604080518281529051600091600160a060020a038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6000610bdf83836040805190810160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610ae8565b6000821515610db957506000610417565b828202828482811515610dc857fe5b0414610bdf576040805160e560020a62461bcd02815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60448201527f7700000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fdfea165627a7a72305820c508243cd1b771fae740ae2153e7e3addb785873f29831d362ee9f3a9381f57a0029000000000000000000000000cf034b94732ad9d12cd2fca2da01ff69ccc4e800
Deployed Bytecode
0x6080604052600436106100c45763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100c9578063095ea7b31461015357806318160ddd146101a057806323b872dd146101c7578063313ce5671461020a578063395093511461023557806342966c681461026e57806370a082311461029a57806379cc6790146102cd57806395d89b4114610306578063a457c2d71461031b578063a9059cbb14610354578063dd62ed3e1461038d575b600080fd5b3480156100d557600080fd5b506100de6103c8565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610118578181015183820152602001610100565b50505050905090810190601f1680156101455780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561015f57600080fd5b5061018c6004803603604081101561017657600080fd5b50600160a060020a0381351690602001356103ff565b604080519115158252519081900360200190f35b3480156101ac57600080fd5b506101b561041d565b60408051918252519081900360200190f35b3480156101d357600080fd5b5061018c600480360360608110156101ea57600080fd5b50600160a060020a03813581169160208101359091169060400135610423565b34801561021657600080fd5b5061021f610502565b6040805160ff9092168252519081900360200190f35b34801561024157600080fd5b5061018c6004803603604081101561025857600080fd5b50600160a060020a038135169060200135610507565b34801561027a57600080fd5b506102986004803603602081101561029157600080fd5b503561055b565b005b3480156102a657600080fd5b506101b5600480360360208110156102bd57600080fd5b5035600160a060020a031661056f565b3480156102d957600080fd5b50610298600480360360408110156102f057600080fd5b50600160a060020a03813516906020013561058a565b34801561031257600080fd5b506100de61062e565b34801561032757600080fd5b5061018c6004803603604081101561033e57600080fd5b50600160a060020a038135169060200135610665565b34801561036057600080fd5b5061018c6004803603604081101561037757600080fd5b50600160a060020a038135169060200135610717565b34801561039957600080fd5b506101b5600480360360408110156103b057600080fd5b50600160a060020a038135811691602001351661072b565b60408051808201909152600c81527f52616b652046696e616e63650000000000000000000000000000000000000000602082015281565b600061041361040c610756565b848461075a565b5060015b92915050565b60025490565b60006104308484846108c7565b6104f88461043c610756565b6104f385606060405190810160405280602881526020017f45524332303a207472616e7366657220616d6f756e742065786365656473206181526020017f6c6c6f77616e6365000000000000000000000000000000000000000000000000815250600160008b600160a060020a0316600160a060020a0316815260200190815260200160002060006104cc610756565b600160a060020a03168152602081019190915260400160002054919063ffffffff610ae816565b61075a565b5060019392505050565b601281565b6000610413610514610756565b846104f38560016000610525610756565b600160a060020a03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610b8216565b61056c610566610756565b82610be6565b50565b600160a060020a031660009081526020819052604090205490565b600061060b82606060405190810160405280602481526020017f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7781526020017f616e6365000000000000000000000000000000000000000000000000000000008152506105fe866105f9610756565b61072b565b919063ffffffff610ae816565b905061061f83610619610756565b8361075a565b6106298383610be6565b505050565b60408051808201909152600381527f52414b0000000000000000000000000000000000000000000000000000000000602082015281565b6000610413610672610756565b846104f385606060405190810160405280602581526020017f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7781526020017f207a65726f000000000000000000000000000000000000000000000000000000815250600160006106e0610756565b600160a060020a03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610ae816565b6000610413610724610756565b84846108c7565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b3390565b600160a060020a03831615156107df576040805160e560020a62461bcd028152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0382161515610865576040805160e560020a62461bcd02815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600160a060020a038316151561094d576040805160e560020a62461bcd02815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a03821615156109d3576040805160e560020a62461bcd02815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b60408051606081018252602681527f45524332303a207472616e7366657220616d6f756e74206578636565647320626020808301919091527f616c616e6365000000000000000000000000000000000000000000000000000082840152600160a060020a0386166000908152908190529190912054610a5991839063ffffffff610ae816565b600160a060020a038085166000908152602081905260408082209390935590841681522054610a8e908263ffffffff610b8216565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610b7a5760405160e560020a62461bcd0281526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610b3f578181015183820152602001610b27565b50505050905090810190601f168015610b6c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610bdf576040805160e560020a62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600160a060020a0382161515610c6c576040805160e560020a62461bcd02815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b60408051606081018252602281527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e6020808301919091527f636500000000000000000000000000000000000000000000000000000000000082840152600160a060020a0385166000908152908190529190912054610cf291839063ffffffff610ae816565b600160a060020a038316600090815260208190526040902055600254610d1e908263ffffffff610d6616565b600255604080518281529051600091600160a060020a038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6000610bdf83836040805190810160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610ae8565b6000821515610db957506000610417565b828202828482811515610dc857fe5b0414610bdf576040805160e560020a62461bcd02815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60448201527f7700000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fdfea165627a7a72305820c508243cd1b771fae740ae2153e7e3addb785873f29831d362ee9f3a9381f57a0029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000cf034b94732ad9d12cd2fca2da01ff69ccc4e800
-----Decoded View---------------
Arg [0] : owner (address): 0xcF034b94732AD9D12cd2fcA2dA01fF69Ccc4e800
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000cf034b94732ad9d12cd2fca2da01ff69ccc4e800
Deployed Bytecode Sourcemap
15436:569:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15482:44;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15482:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;15482:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9235:154;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9235:154:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;9235:154:0;;;;;;;;;;;;;;;;;;;;;;;;;;;8250:92;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8250:92:0;;;;;;;;;;;;;;;;;;;;9861:306;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9861:306:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;9861:306:0;;;;;;;;;;;;;;;;;;15577:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15577:35:0;;;;;;;;;;;;;;;;;;;;;;;10576:211;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10576:211:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;10576:211:0;;;;;;;;;14740:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14740:83:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;14740:83:0;;;;;8405:111;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8405:111:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;8405:111:0;-1:-1:-1;;;;;8405:111:0;;;15142:287;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15142:287:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15142:287:0;;;;;;;;;15533:37;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15533:37:0;;;;11290:262;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11290:262:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11290:262:0;;;;;;;;;8729:160;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8729:160:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;8729:160:0;;;;;;;;;8952:136;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8952:136:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;8952:136:0;;;;;;;;;;;15482:44;;;;;;;;;;;;;;;;;;;:::o;9235:154::-;9303:4;9320:39;9329:12;:10;:12::i;:::-;9343:7;9352:6;9320:8;:39::i;:::-;-1:-1:-1;9377:4:0;9235:154;;;;;:::o;8250:92::-;8322:12;;8250:92;:::o;9861:306::-;9952:4;9969:36;9979:6;9987:9;9998:6;9969:9;:36::i;:::-;10016:121;10025:6;10033:12;:10;:12::i;:::-;10047:89;10085:6;10047:89;;;;;;;;;;;;;;;;;;;;;;;:11;:19;10059:6;-1:-1:-1;;;;;10047:19:0;-1:-1:-1;;;;;10047:19:0;;;;;;;;;;;;:33;10067:12;:10;:12::i;:::-;-1:-1:-1;;;;;10047:33:0;;;;;;;;;;;;-1:-1:-1;10047:33:0;;;:89;;:37;:89;:::i;:::-;10016:8;:121::i;:::-;-1:-1:-1;10155:4:0;9861:306;;;;;:::o;15577:35::-;15610:2;15577:35;:::o;10576:211::-;10657:4;10674:83;10683:12;:10;:12::i;:::-;10697:7;10706:50;10745:10;10706:11;:25;10718:12;:10;:12::i;:::-;-1:-1:-1;;;;;10706:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;10706:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;14740:83::-;14788:27;14794:12;:10;:12::i;:::-;14808:6;14788:5;:27::i;:::-;14740:83;:::o;8405:111::-;-1:-1:-1;;;;;8490:18:0;8463:7;8490:18;;;;;;;;;;;;8405:111::o;15142:287::-;15211:26;15240:84;15277:6;15240:84;;;;;;;;;;;;;;;;;;;;;;;:32;15250:7;15259:12;:10;:12::i;:::-;15240:9;:32::i;:::-;:36;:84;;:36;:84;:::i;:::-;15211:113;;15337:51;15346:7;15355:12;:10;:12::i;:::-;15369:18;15337:8;:51::i;:::-;15399:22;15405:7;15414:6;15399:5;:22::i;:::-;15142:287;;;:::o;15533:37::-;;;;;;;;;;;;;;;;;;;:::o;11290:262::-;11376:4;11393:129;11402:12;:10;:12::i;:::-;11416:7;11425:96;11464:15;11425:96;;;;;;;;;;;;;;;;;;;;;;;:11;:25;11437:12;:10;:12::i;:::-;-1:-1:-1;;;;;11425:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;11425:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;8729:160::-;8800:4;8817:42;8827:12;:10;:12::i;:::-;8841:9;8852:6;8817:9;:42::i;8952:136::-;-1:-1:-1;;;;;9053:18:0;;;9026:7;9053:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8952:136::o;2881:99::-;2962:10;2881:99;:::o;14231:339::-;-1:-1:-1;;;;;14326:19:0;;;;14318:68;;;;;-1:-1:-1;;;;;14318:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14405:21:0;;;;14397:68;;;;;-1:-1:-1;;;;;14397:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14478:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14530:32;;;;;;;;;;;;;;;;;14231:339;;;:::o;12042:474::-;-1:-1:-1;;;;;12141:20:0;;;;12133:70;;;;;-1:-1:-1;;;;;12133:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12222:23:0;;;;12214:71;;;;;-1:-1:-1;;;;;12214:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12320;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12320:17:0;;-1:-1:-1;12320:17:0;;;;;;;;;;;;:71;;12342:6;;12320:71;:21;:71;:::i;:::-;-1:-1:-1;;;;;12300:17:0;;;:9;:17;;;;;;;;;;;:91;;;;12425:20;;;;;;;:32;;12450:6;12425:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;12402:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;12473:35;;;;;;;12402:20;;12473:35;;;;;;;;;;;;;12042:474;;;:::o;4363:192::-;4449:7;4485:12;4477:6;;;;4469:29;;;;-1:-1:-1;;;;;4469:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;4469:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4521:5:0;;;4363:192::o;3476:181::-;3534:7;3566:5;;;3590:6;;;;3582:46;;;;;-1:-1:-1;;;;;3582:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;3648:1;3476:181;-1:-1:-1;;;3476:181:0:o;13440:351::-;-1:-1:-1;;;;;13517:21:0;;;;13509:67;;;;;-1:-1:-1;;;;;13509:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13612:68;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13612:18:0;;-1:-1:-1;13612:18:0;;;;;;;;;;;;:68;;13635:6;;13612:68;:22;:68;:::i;:::-;-1:-1:-1;;;;;13591:18:0;;:9;:18;;;;;;;;;;:89;13706:12;;:24;;13723:6;13706:24;:16;:24;:::i;:::-;13691:12;:39;13746:37;;;;;;;;13772:1;;-1:-1:-1;;;;;13746:37:0;;;;;;;;;;;;13440:351;;:::o;3932:136::-;3990:7;4017:43;4021:1;4024;4017:43;;;;;;;;;;;;;;;;;;:3;:43::i;4806:471::-;4864:7;5109:6;;5105:47;;;-1:-1:-1;5139:1:0;5132:8;;5105:47;5176:5;;;5180:1;5176;:5;5200;;;;;;;;:10;5192:56;;;;;-1:-1:-1;;;;;5192:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Swarm Source
bzzr://c508243cd1b771fae740ae2153e7e3addb785873f29831d362ee9f3a9381f57a
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.