Feature Tip: Add private address tag to any address under My Name Tag !
RiveX Token contract has migrated to a new address.
ERC-20
Old Contract
Overview
Max Total Supply
550,000,000 RVX
Holders
74 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
14.81453766 RVXValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x675cbd4A...4AD867Cd2 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
RVXToken
Compiler Version
v0.4.26+commit.4563c3fc
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-06-10 */ pragma solidity ^ 0.4.26; library SafeMath { /** * @dev Multiplies two numbers, 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 Integer division of two numbers 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 Subtracts two numbers, 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 Adds two numbers, reverts on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a); return c; } /** * @dev Divides two numbers 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; } } contract Context { constructor() internal {} function _msgSender() internal view returns(address) { return msg.sender; } function _msgData() internal view returns(bytes memory) { this; return msg.data; } } contract Ownable is Context { address internal _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; } } library Roles { struct Role { mapping (address => bool) bearer; } /** * @dev give an account access to this role */ function add(Role storage role, address account) internal { require(account != address(0)); require(!has(role, account)); role.bearer[account] = true; } /** * @dev remove an account's access to this role */ function remove(Role storage role, address account) internal { require(account != address(0)); require(has(role, account)); role.bearer[account] = false; } /** * @dev check if an account has this role * @return bool */ function has(Role storage role, address account) internal view returns (bool) { require(account != address(0)); return role.bearer[account]; } } contract MinterRole is Context,Ownable { using Roles for Roles.Role; event MinterAdded(address indexed account); event MinterRemoved(address indexed account); Roles.Role private _minters; constructor () internal { _addMinter(msg.sender); } modifier onlyMinter() { require(isMinter(msg.sender)); _; } function isMinter(address account) public view returns (bool) { return _minters.has(account); } function addMinter(address account) public onlyOwner { _addMinter(account); } function renounceMinter() public { _removeMinter(msg.sender); } function _addMinter(address account) internal { _minters.add(account); emit MinterAdded(account); } function _removeMinter(address account) internal { _minters.remove(account); emit MinterRemoved(account); } } 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); } contract RVXToken is MinterRole, IERC20 { using SafeMath for uint256; string private _name; string private _symbol; uint8 private _decimals; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; uint256 private _maxAmount; modifier onlyPayloadSize(uint size) { require(msg.data.length >= size + 4); _; } //constructor constructor (address newOwner) public { _owner = newOwner; _addMinter(newOwner); _removeMinter(msg.sender); _name = "RiveX Token"; _symbol = "RVX"; _decimals = 18; _totalSupply = 150000000 ether; _maxAmount = 550000000 ether; _balances[newOwner] = 150000000 ether; } function depositWAN() public payable { //added deposit wan function require(msg.value > 0); } function() external payable { //added default fallback function (if someone just deposits wan to contract, it can handle) depositWAN(); } function withdraw() onlyOwner public { //owner can withdraw ether from contract _owner.transfer(address(this).balance); } function mint(address account, uint256 amount) public onlyMinter returns(bool) { require(amount>0); require(_totalSupply.add(amount)<=_maxAmount); _mint(account, amount); return true; } function burn(uint256 amount) public onlyMinter returns(bool) { _burn(msg.sender, amount); return true; } function name() public view returns(string memory) { return _name; } function symbol() public view returns(string memory) { return _symbol; } function decimals() public view returns(uint8) { return _decimals; } function totalSupply() public view returns(uint256) { return _totalSupply; } function balanceOf(address account) public view returns(uint256) { return _balances[account]; } function transfer(address recipient, uint256 amount) public returns(bool) { _transfer(msg.sender, recipient, amount); return true; } function allowance(address owner, address spender) public view returns(uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public returns(bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address from, address to, uint256 value) public onlyPayloadSize( 2*32) returns (bool) { _allowances[from][msg.sender] = _allowances[from][msg.sender].sub(value); _transfer(from, to, value); emit Approval(from, msg.sender, _allowances[from][msg.sender]); return true; } function increaseAllowance(address spender, uint256 addedValue) public returns(bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { require(spender != address(0)); _allowances[msg.sender][spender] = _allowances[msg.sender][spender].sub(subtractedValue); emit Approval(msg.sender, spender, _allowances[msg.sender][spender]); return true; } function _transfer(address from, address to, uint256 value) internal onlyPayloadSize( 2*32) { require(to != address(0)); _balances[from] = _balances[from].sub(value); _balances[to] = _balances[to].add(value); emit Transfer(from, to, value); } 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); } 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); } 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 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":"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":"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":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"},{"name":"amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"burn","outputs":[{"name":"","type":"bool"}],"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":"renounceOwnership","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":"account","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"depositWAN","outputs":[],"payable":true,"stateMutability":"payable","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":"account","type":"address"}],"name":"isMinter","outputs":[{"name":"","type":"bool"}],"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":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"newOwner","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"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"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"MinterRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051602080620013c4833981016040819052905160008054600160a060020a03191633178082559192600160a060020a0392909216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a362000082336401000000006200019f810204565b60008054600160a060020a031916600160a060020a038316179055620000b1816401000000006200019f810204565b620000c533640100000000620001f1810204565b60408051808201909152600b8082527f526976655820546f6b656e00000000000000000000000000000000000000000060209092019182526200010b916002916200032f565b506040805180820190915260038082527f525658000000000000000000000000000000000000000000000000000000000060209092019182526200015091816200032f565b506004805460ff191660121790556a7c13bc4b2c133c5600000060078190556b01c6f307be4c4687e6000000600855600160a060020a03909116600090815260056020526040902055620003d4565b620001ba60018264010000000062000f1a6200024382021704565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b6200020c60018264010000000062000f686200029e82021704565b604051600160a060020a038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b600160a060020a03811615156200025957600080fd5b6200026e8282640100000000620002f7810204565b156200027957600080fd5b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b600160a060020a0381161515620002b457600080fd5b620002c98282640100000000620002f7810204565b1515620002d557600080fd5b600160a060020a0316600090815260209190915260409020805460ff19169055565b6000600160a060020a03821615156200030f57600080fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200037257805160ff1916838001178555620003a2565b82800160010185558215620003a2579182015b82811115620003a257825182559160200191906001019062000385565b50620003b0929150620003b4565b5090565b620003d191905b80821115620003b05760008155600101620003bb565b90565b610fe080620003e46000396000f3006080604052600436106101275763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610131578063095ea7b3146101bb57806318160ddd146101f357806323b872dd1461021a578063313ce56714610244578063395093511461026f5780633ccfd60b1461029357806340c10f19146102a857806342966c68146102cc57806370a08231146102e4578063715018a6146103055780638da5cb5b1461031a5780638f32d59b1461034b57806395d89b4114610360578063983b2d561461037557806398650275146103965780639c0e9a9414610127578063a457c2d7146103ab578063a9059cbb146103cf578063aa271e1a146103f3578063dd62ed3e14610414578063f2fde38b1461043b575b61012f61045c565b005b34801561013d57600080fd5b5061014661046b565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610180578181015183820152602001610168565b50505050905090810190601f1680156101ad5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101c757600080fd5b506101df600160a060020a03600435166024356104fe565b604080519115158252519081900360200190f35b3480156101ff57600080fd5b5061020861051b565b60408051918252519081900360200190f35b34801561022657600080fd5b506101df600160a060020a0360043581169060243516604435610521565b34801561025057600080fd5b506102596105fd565b6040805160ff9092168252519081900360200190f35b34801561027b57600080fd5b506101df600160a060020a0360043516602435610606565b34801561029f57600080fd5b5061012f61065f565b3480156102b457600080fd5b506101df600160a060020a03600435166024356106b0565b3480156102d857600080fd5b506101df6004356106fe565b3480156102f057600080fd5b50610208600160a060020a0360043516610726565b34801561031157600080fd5b5061012f610741565b34801561032657600080fd5b5061032f6107ab565b60408051600160a060020a039092168252519081900360200190f35b34801561035757600080fd5b506101df6107ba565b34801561036c57600080fd5b506101466107cb565b34801561038157600080fd5b5061012f600160a060020a036004351661082c565b3480156103a257600080fd5b5061012f610848565b3480156103b757600080fd5b506101df600160a060020a0360043516602435610851565b3480156103db57600080fd5b506101df600160a060020a0360043516602435610901565b3480156103ff57600080fd5b506101df600160a060020a036004351661090e565b34801561042057600080fd5b50610208600160a060020a0360043581169060243516610927565b34801561044757600080fd5b5061012f600160a060020a0360043516610952565b6000341161046957600080fd5b565b60028054604080516020601f60001961010060018716150201909416859004938401819004810282018101909252828152606093909290918301828280156104f45780601f106104c9576101008083540402835291602001916104f4565b820191906000526020600020905b8154815290600101906020018083116104d757829003601f168201915b5050505050905090565b600061051261050b61096e565b8484610972565b50600192915050565b60075490565b60006040604436101561053357600080fd5b600160a060020a0385166000908152600660209081526040808320338452909152902054610567908463ffffffff610b0d16565b600160a060020a0386166000908152600660209081526040808320338452909152902055610596858585610b24565b600160a060020a0385166000818152600660209081526040808320338085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a3506001949350505050565b60045460ff1690565b600061051261061361096e565b8461065a856006600061062461096e565b600160a060020a03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610c0416565b610972565b6106676107ba565b151561067257600080fd5b60008054604051600160a060020a0390911691303180156108fc02929091818181858888f193505050501580156106ad573d6000803e3d6000fd5b50565b60006106bb3361090e565b15156106c657600080fd5b600082116106d357600080fd5b6008546007546106e9908463ffffffff610c0416565b11156106f457600080fd5b6105128383610c1d565b60006107093361090e565b151561071457600080fd5b61071e3383610d2b565b506001919050565b600160a060020a031660009081526005602052604090205490565b6107496107ba565b151561075457600080fd5b60008054604051600160a060020a03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36000805473ffffffffffffffffffffffffffffffffffffffff19169055565b600054600160a060020a031690565b600054600160a060020a0316331490565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104f45780601f106104c9576101008083540402835291602001916104f4565b6108346107ba565b151561083f57600080fd5b6106ad81610dd6565b61046933610e1e565b6000600160a060020a038316151561086857600080fd5b336000908152600660209081526040808320600160a060020a038716845290915290205461089c908363ffffffff610b0d16565b336000818152600660209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6000610512338484610b24565b600061092160018363ffffffff610e6616565b92915050565b600160a060020a03918216600090815260066020908152604080832093909416825291909152205490565b61095a6107ba565b151561096557600080fd5b6106ad81610e9d565b3390565b600160a060020a0383161515610a0e57604080517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0382161515610aab57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a03808416600081815260066020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60008083831115610b1d57600080fd5b5050900390565b60406044361015610b3457600080fd5b600160a060020a0383161515610b4957600080fd5b600160a060020a038416600090815260056020526040902054610b72908363ffffffff610b0d16565b600160a060020a038086166000908152600560205260408082209390935590851681522054610ba7908363ffffffff610c0416565b600160a060020a0380851660008181526005602090815260409182902094909455805186815290519193928816927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350505050565b600082820183811015610c1657600080fd5b9392505050565b600160a060020a0382161515610c9457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600754610ca7908263ffffffff610c0416565b600755600160a060020a038216600090815260056020526040902054610cd3908263ffffffff610c0416565b600160a060020a03831660008181526005602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600160a060020a0382161515610d4057600080fd5b600754610d53908263ffffffff610b0d16565b600755600160a060020a038216600090815260056020526040902054610d7f908263ffffffff610b0d16565b600160a060020a0383166000818152600560209081526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b610de760018263ffffffff610f1a16565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b610e2f60018263ffffffff610f6816565b604051600160a060020a038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b6000600160a060020a0382161515610e7d57600080fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b600160a060020a0381161515610eb257600080fd5b60008054604051600160a060020a03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a0381161515610f2f57600080fd5b610f398282610e66565b15610f4357600080fd5b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b600160a060020a0381161515610f7d57600080fd5b610f878282610e66565b1515610f9257600080fd5b600160a060020a0316600090815260209190915260409020805460ff191690555600a165627a7a723058204074a3b6904b3747b91148eeaa2aacd6cf2b7a74653cd6490274a617814627850029000000000000000000000000fca05682c05a7f251d4a36539f4c5e69f3b41bc7
Deployed Bytecode
0x6080604052600436106101275763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610131578063095ea7b3146101bb57806318160ddd146101f357806323b872dd1461021a578063313ce56714610244578063395093511461026f5780633ccfd60b1461029357806340c10f19146102a857806342966c68146102cc57806370a08231146102e4578063715018a6146103055780638da5cb5b1461031a5780638f32d59b1461034b57806395d89b4114610360578063983b2d561461037557806398650275146103965780639c0e9a9414610127578063a457c2d7146103ab578063a9059cbb146103cf578063aa271e1a146103f3578063dd62ed3e14610414578063f2fde38b1461043b575b61012f61045c565b005b34801561013d57600080fd5b5061014661046b565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610180578181015183820152602001610168565b50505050905090810190601f1680156101ad5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101c757600080fd5b506101df600160a060020a03600435166024356104fe565b604080519115158252519081900360200190f35b3480156101ff57600080fd5b5061020861051b565b60408051918252519081900360200190f35b34801561022657600080fd5b506101df600160a060020a0360043581169060243516604435610521565b34801561025057600080fd5b506102596105fd565b6040805160ff9092168252519081900360200190f35b34801561027b57600080fd5b506101df600160a060020a0360043516602435610606565b34801561029f57600080fd5b5061012f61065f565b3480156102b457600080fd5b506101df600160a060020a03600435166024356106b0565b3480156102d857600080fd5b506101df6004356106fe565b3480156102f057600080fd5b50610208600160a060020a0360043516610726565b34801561031157600080fd5b5061012f610741565b34801561032657600080fd5b5061032f6107ab565b60408051600160a060020a039092168252519081900360200190f35b34801561035757600080fd5b506101df6107ba565b34801561036c57600080fd5b506101466107cb565b34801561038157600080fd5b5061012f600160a060020a036004351661082c565b3480156103a257600080fd5b5061012f610848565b3480156103b757600080fd5b506101df600160a060020a0360043516602435610851565b3480156103db57600080fd5b506101df600160a060020a0360043516602435610901565b3480156103ff57600080fd5b506101df600160a060020a036004351661090e565b34801561042057600080fd5b50610208600160a060020a0360043581169060243516610927565b34801561044757600080fd5b5061012f600160a060020a0360043516610952565b6000341161046957600080fd5b565b60028054604080516020601f60001961010060018716150201909416859004938401819004810282018101909252828152606093909290918301828280156104f45780601f106104c9576101008083540402835291602001916104f4565b820191906000526020600020905b8154815290600101906020018083116104d757829003601f168201915b5050505050905090565b600061051261050b61096e565b8484610972565b50600192915050565b60075490565b60006040604436101561053357600080fd5b600160a060020a0385166000908152600660209081526040808320338452909152902054610567908463ffffffff610b0d16565b600160a060020a0386166000908152600660209081526040808320338452909152902055610596858585610b24565b600160a060020a0385166000818152600660209081526040808320338085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a3506001949350505050565b60045460ff1690565b600061051261061361096e565b8461065a856006600061062461096e565b600160a060020a03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610c0416565b610972565b6106676107ba565b151561067257600080fd5b60008054604051600160a060020a0390911691303180156108fc02929091818181858888f193505050501580156106ad573d6000803e3d6000fd5b50565b60006106bb3361090e565b15156106c657600080fd5b600082116106d357600080fd5b6008546007546106e9908463ffffffff610c0416565b11156106f457600080fd5b6105128383610c1d565b60006107093361090e565b151561071457600080fd5b61071e3383610d2b565b506001919050565b600160a060020a031660009081526005602052604090205490565b6107496107ba565b151561075457600080fd5b60008054604051600160a060020a03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36000805473ffffffffffffffffffffffffffffffffffffffff19169055565b600054600160a060020a031690565b600054600160a060020a0316331490565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104f45780601f106104c9576101008083540402835291602001916104f4565b6108346107ba565b151561083f57600080fd5b6106ad81610dd6565b61046933610e1e565b6000600160a060020a038316151561086857600080fd5b336000908152600660209081526040808320600160a060020a038716845290915290205461089c908363ffffffff610b0d16565b336000818152600660209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6000610512338484610b24565b600061092160018363ffffffff610e6616565b92915050565b600160a060020a03918216600090815260066020908152604080832093909416825291909152205490565b61095a6107ba565b151561096557600080fd5b6106ad81610e9d565b3390565b600160a060020a0383161515610a0e57604080517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0382161515610aab57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a03808416600081815260066020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60008083831115610b1d57600080fd5b5050900390565b60406044361015610b3457600080fd5b600160a060020a0383161515610b4957600080fd5b600160a060020a038416600090815260056020526040902054610b72908363ffffffff610b0d16565b600160a060020a038086166000908152600560205260408082209390935590851681522054610ba7908363ffffffff610c0416565b600160a060020a0380851660008181526005602090815260409182902094909455805186815290519193928816927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350505050565b600082820183811015610c1657600080fd5b9392505050565b600160a060020a0382161515610c9457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600754610ca7908263ffffffff610c0416565b600755600160a060020a038216600090815260056020526040902054610cd3908263ffffffff610c0416565b600160a060020a03831660008181526005602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600160a060020a0382161515610d4057600080fd5b600754610d53908263ffffffff610b0d16565b600755600160a060020a038216600090815260056020526040902054610d7f908263ffffffff610b0d16565b600160a060020a0383166000818152600560209081526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b610de760018263ffffffff610f1a16565b604051600160a060020a038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b610e2f60018263ffffffff610f6816565b604051600160a060020a038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b6000600160a060020a0382161515610e7d57600080fd5b50600160a060020a03166000908152602091909152604090205460ff1690565b600160a060020a0381161515610eb257600080fd5b60008054604051600160a060020a03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a0381161515610f2f57600080fd5b610f398282610e66565b15610f4357600080fd5b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b600160a060020a0381161515610f7d57600080fd5b610f878282610e66565b1515610f9257600080fd5b600160a060020a0316600090815260209190915260409020805460ff191690555600a165627a7a723058204074a3b6904b3747b91148eeaa2aacd6cf2b7a74653cd6490274a617814627850029
Deployed Bytecode Sourcemap
6486:4727:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7584:12;:10;:12::i;:::-;6486:4727;8131:82;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8131:82: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;8131:82:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8924:151;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8924:151:0;-1:-1:-1;;;;;8924:151:0;;;;;;;;;;;;;;;;;;;;;;;;;8405:90;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8405:90:0;;;;;;;;;;;;;;;;;;;;9083:331;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9083:331:0;-1:-1:-1;;;;;9083:331:0;;;;;;;;;;;;8315:82;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8315:82:0;;;;;;;;;;;;;;;;;;;;;;;9420:209;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9420:209:0;-1:-1:-1;;;;;9420:209:0;;;;;;;7612:137;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7612:137:0;;;;7757:226;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7757:226:0;-1:-1:-1;;;;;7757:226:0;;;;;;;7995:128;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7995:128:0;;;;;8503:109;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8503:109:0;-1:-1:-1;;;;;8503:109:0;;;;;3219:140;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3219:140:0;;;;2506:79;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2506:79:0;;;;;;;;-1:-1:-1;;;;;2506:79:0;;;;;;;;;;;;;;2841:92;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2841:92:0;;;;8221:86;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8221:86:0;;;;5367:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5367:91:0;-1:-1:-1;;;;;5367:91:0;;;;;5466:77;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5466:77:0;;;;9636:342;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9636:342:0;-1:-1:-1;;;;;9636:342:0;;;;;;;8620:155;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8620:155:0;-1:-1:-1;;;;;8620:155:0;;;;;;;5250:109;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5250:109:0;-1:-1:-1;;;;;5250:109:0;;;;;8783:133;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8783:133:0;-1:-1:-1;;;;;8783:133:0;;;;;;;;;;3536:109;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3536:109:0;-1:-1:-1;;;;;3536:109:0;;;;;7338:107;7435:1;7423:9;:13;7415:22;;;;;;7338:107::o;8131:82::-;8200:5;8193:12;;;;;;;-1:-1:-1;;8193:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8167:6;;8193:12;;8200:5;;8193:12;;8200:5;8193:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8131:82;:::o;8924:151::-;8989:4;9006:39;9015:12;:10;:12::i;:::-;9029:7;9038:6;9006:8;:39::i;:::-;-1:-1:-1;9063:4:0;8924:151;;;;:::o;8405:90::-;8475:12;;8405:90;:::o;9083:331::-;9185:4;9170;6922:8;6903;:27;;6895:36;;;;;;-1:-1:-1;;;;;9234:17:0;;;;;;:11;:17;;;;;;;;9252:10;9234:29;;;;;;;;:40;;9268:5;9234:40;:33;:40;:::i;:::-;-1:-1:-1;;;;;9202:17:0;;;;;;:11;:17;;;;;;;;9220:10;9202:29;;;;;;;:72;9285:26;9214:4;9301:2;9305:5;9285:9;:26::i;:::-;-1:-1:-1;;;;;9327:57:0;;9354:17;;;;:11;:17;;;;;;;;9342:10;9354:29;;;;;;;;;;;9327:57;;;;;;;9342:10;;9327:57;;;;;;;;;;;;-1:-1:-1;9402:4:0;;9083:331;-1:-1:-1;;;;9083:331:0:o;8315:82::-;8380:9;;;;8315:82;:::o;9420:209::-;9499:4;9516:83;9525:12;:10;:12::i;:::-;9539:7;9548:50;9587:10;9548:11;:25;9560:12;:10;:12::i;:::-;-1:-1:-1;;;;;9548:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;9548:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;:::-;9516:8;:83::i;7612:137::-;2718:9;:7;:9::i;:::-;2710:18;;;;;;;;7703:6;;;:38;;-1:-1:-1;;;;;7703:6:0;;;;7727:4;7719:21;7703:38;;;;;7719:21;;7703:38;:6;:38;7719:21;7703:6;:38;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;7703:38:0;7612:137::o;7757:226::-;7830:4;5201:20;5210:10;5201:8;:20::i;:::-;5193:29;;;;;;;;7862:1;7855:8;;7847:17;;;;;;7909:10;;7883:12;;:24;;7900:6;7883:24;:16;:24;:::i;:::-;:36;;7875:45;;;;;;7931:22;7937:7;7946:6;7931:5;:22::i;7995:128::-;8051:4;5201:20;5210:10;5201:8;:20::i;:::-;5193:29;;;;;;;;8068:25;8074:10;8086:6;8068:5;:25::i;:::-;-1:-1:-1;8111:4:0;7995:128;;;:::o;8503:109::-;-1:-1:-1;;;;;8586:18:0;8559:7;8586:18;;;:9;:18;;;;;;;8503:109::o;3219:140::-;2718:9;:7;:9::i;:::-;2710:18;;;;;;;;3318:1;3302:6;;3281:40;;-1:-1:-1;;;;;3302:6:0;;;;3281:40;;3318:1;;3281:40;3349:1;3332:19;;-1:-1:-1;;3332:19:0;;;3219:140::o;2506:79::-;2544:7;2571:6;-1:-1:-1;;;;;2571:6:0;2506:79;:::o;2841:92::-;2881:4;2919:6;-1:-1:-1;;;;;2919:6:0;2905:10;:20;;2841:92::o;8221:86::-;8292:7;8285:14;;;;;;;;-1:-1:-1;;8285:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8259:6;;8285:14;;8292:7;;8285:14;;8292:7;8285:14;;;;;;;;;;;;;;;;;;;;;;;;5367:91;2718:9;:7;:9::i;:::-;2710:18;;;;;;;;5431:19;5442:7;5431:10;:19::i;5466:77::-;5510:25;5524:10;5510:13;:25::i;9636:342::-;9721:4;-1:-1:-1;;;;;9746:21:0;;;;9738:30;;;;;;9828:10;9816:23;;;;:11;:23;;;;;;;;-1:-1:-1;;;;;9816:32:0;;;;;;;;;;:53;;9853:15;9816:53;:36;:53;:::i;:::-;9793:10;9781:23;;;;:11;:23;;;;;;;;-1:-1:-1;;;;;9781:32:0;;;;;;;;;;;;:88;;;9885:63;;;;;;9781:32;;9885:63;;;;;;;;;;;-1:-1:-1;9966:4:0;9636:342;;;;:::o;8620:155::-;8688:4;8705:40;8715:10;8727:9;8738:6;8705:9;:40::i;5250:109::-;5306:4;5330:21;:8;5343:7;5330:21;:12;:21;:::i;:::-;5323:28;5250:109;-1:-1:-1;;5250:109:0:o;8783:133::-;-1:-1:-1;;;;;8881:18:0;;;8854:7;8881:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8783:133::o;3536:109::-;2718:9;:7;:9::i;:::-;2710:18;;;;;;;;3609:28;3628:8;3609:18;:28::i;1824:89::-;1895:10;1824:89;:::o;10870:338::-;-1:-1:-1;;;;;10964:19:0;;;;10956:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11043:21:0;;;;11035:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11116:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;11168:32;;;;;;;;;;;;;;;;;10870:338;;;:::o;1114:150::-;1172:7;;1200:6;;;;1192:15;;;;;;-1:-1:-1;;1230:5:0;;;1114:150::o;9984:285::-;10070:4;6922:8;6903;:27;;6895:36;;;;;;-1:-1:-1;;;;;10095:16:0;;;;10087:25;;;;;;-1:-1:-1;;;;;10143:15:0;;;;;;:9;:15;;;;;;:26;;10163:5;10143:26;:19;:26;:::i;:::-;-1:-1:-1;;;;;10125:15:0;;;;;;;:9;:15;;;;;;:44;;;;10196:13;;;;;;;:24;;10214:5;10196:24;:17;:24;:::i;:::-;-1:-1:-1;;;;;10180:13:0;;;;;;;:9;:13;;;;;;;;;:40;;;;10236:25;;;;;;;10180:13;;10236:25;;;;;;;;;;;;;9984:285;;;;:::o;1340:150::-;1398:7;1430:5;;;1454:6;;;;1446:15;;;;;;1481:1;1340:150;-1:-1:-1;;;1340:150:0:o;10277:308::-;-1:-1:-1;;;;;10353:21:0;;;;10345:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10438:12;;:24;;10455:6;10438:24;:16;:24;:::i;:::-;10423:12;:39;-1:-1:-1;;;;;10494:18:0;;;;;;:9;:18;;;;;;:30;;10517:6;10494:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;10473:18:0;;;;;;:9;:18;;;;;;;;:51;;;;10540:37;;;;;;;10473:18;;;;10540:37;;;;;;;;;;10277:308;;:::o;10593:269::-;-1:-1:-1;;;;;10668:21:0;;;;10660:30;;;;;;10718:12;;:23;;10735:5;10718:23;:16;:23;:::i;:::-;10703:12;:38;-1:-1:-1;;;;;10773:18:0;;;;;;:9;:18;;;;;;:29;;10796:5;10773:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;10752:18:0;;;;;;:9;:18;;;;;;;;:50;;;;10818:36;;;;;;;10752:18;;10818:36;;;;;;;;;;;10593:269;;:::o;5551:122::-;5608:21;:8;5621:7;5608:21;:12;:21;:::i;:::-;5645:20;;-1:-1:-1;;;;;5645:20:0;;;;;;;;5551:122;:::o;5681:130::-;5741:24;:8;5757:7;5741:24;:15;:24;:::i;:::-;5781:22;;-1:-1:-1;;;;;5781:22:0;;;;;;;;5681:130;:::o;4696:165::-;4768:4;-1:-1:-1;;;;;4793:21:0;;;;4785:30;;;;;;-1:-1:-1;;;;;;4833:20:0;:11;:20;;;;;;;;;;;;;;;4696:165::o;3795:187::-;-1:-1:-1;;;;;3869:22:0;;;;3861:31;;;;;;3929:6;;;3908:38;;-1:-1:-1;;;;;3908:38:0;;;;3929:6;;;3908:38;;;3957:6;:17;;-1:-1:-1;;3957:17:0;-1:-1:-1;;;;;3957:17:0;;;;;;;;;;3795:187::o;4148:186::-;-1:-1:-1;;;;;4225:21:0;;;;4217:30;;;;;;4267:18;4271:4;4277:7;4267:3;:18::i;:::-;4266:19;4258:28;;;;;;-1:-1:-1;;;;;4299:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;4299:27:0;4322:4;4299:27;;;4148:186::o;4413:189::-;-1:-1:-1;;;;;4493:21:0;;;;4485:30;;;;;;4534:18;4538:4;4544:7;4534:3;:18::i;:::-;4526:27;;;;;;;;-1:-1:-1;;;;;4566:20:0;4589:5;4566:20;;;;;;;;;;;:28;;-1:-1:-1;;4566:28:0;;;4413:189::o
Swarm Source
bzzr://4074a3b6904b3747b91148eeaa2aacd6cf2b7a74653cd6490274a61781462785
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.