Overview
Max Total Supply
48,000 KNV
Holders
125 (0.00%)
Market
Price
$0.07 @ 0.000017 ETH
Onchain Market Cap
$3,168.75
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 8 Decimals)
Balance
22.2838052 KNVValue
$1.47 ( ~0.000375913076051579 Eth) [0.0464%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
KanvaToken
Compiler Version
v0.5.12+commit.7709ece9
Contract Source Code (Solidity)Audit Report
/** *Submitted for verification at Etherscan.io on 2020-11-15 */ pragma solidity ^0.5.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see {ERC20Detailed}. */ 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); } /** * @dev Optional functions from the ERC20 standard. */ contract ERC20Detailed is IERC20 { string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of * these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol, uint8 decimals) public { _name = name; _symbol = symbol; _decimals = decimals; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } } /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor () internal { } // solhint-disable-previous-line no-empty-blocks 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; } } /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ 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. * * _Available since v2.4.0._ */ 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. * * _Available since v2.4.0._ */ 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. * * _Available since v2.4.0._ */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20Mintable}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ 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); } /** * @dev Destroys `amount` tokens from `account`.`amount` is then deducted * from the caller's allowance. * * See {_burn} and {_approve}. */ function _burnFrom(address account, uint256 amount) internal { _burn(account, amount); _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance")); } } /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public { _burn(_msgSender(), amount); } /** * @dev See {ERC20-_burnFrom}. */ function burnFrom(address account, uint256 amount) public { _burnFrom(account, amount); } } /** * @title Kanva Token * @dev Implementation of the Kanva Token */ contract KanvaToken is ERC20Detailed, ERC20Burnable { /** * @param receiver wallet who should receive all initial tokens */ constructor(address receiver) public ERC20Detailed("Kanva", "KNV", 8) { _mint(receiver, 48_000 * 1e8); } }
Contract Security Audit
- Solidity.finance - November 11th, 2020 - Security Audit Report
[{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162000fda38038062000fda833981810160405260208110156200003757600080fd5b5051604080518082018252600581527f4b616e766100000000000000000000000000000000000000000000000000000060208281019182528351808501909452600384527f4b4e560000000000000000000000000000000000000000000000000000000000908401528151919291600891620000b7916000919062000299565b508151620000cd90600190602085019062000299565b506002805460ff191660ff9290921691909117905550620000f790508165045d964b8000620000fe565b506200033e565b6001600160a01b0382166200017457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b62000190816005546200021d60201b620008fc1790919060201c565b6005556001600160a01b038216600090815260036020908152604090912054620001c5918390620008fc6200021d821b17901c565b6001600160a01b03831660008181526003602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000828201838110156200029257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002dc57805160ff19168380011785556200030c565b828001600101855582156200030c579182015b828111156200030c578251825591602001919060010190620002ef565b506200031a9291506200031e565b5090565b6200033b91905b808211156200031a576000815560010162000325565b90565b610c8c806200034e6000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c806342966c681161008c57806395d89b411161006657806395d89b411461029c578063a457c2d7146102a4578063a9059cbb146102d0578063dd62ed3e146102fc576100cf565b806342966c681461022b57806370a082311461024a57806379cc679014610270576100cf565b806306fdde03146100d4578063095ea7b31461015157806318160ddd1461019157806323b872dd146101ab578063313ce567146101e157806339509351146101ff575b600080fd5b6100dc61032a565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101165781810151838201526020016100fe565b50505050905090810190601f1680156101435780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61017d6004803603604081101561016757600080fd5b506001600160a01b0381351690602001356103c0565b604080519115158252519081900360200190f35b6101996103dd565b60408051918252519081900360200190f35b61017d600480360360608110156101c157600080fd5b506001600160a01b038135811691602081013590911690604001356103e3565b6101e9610470565b6040805160ff9092168252519081900360200190f35b61017d6004803603604081101561021557600080fd5b506001600160a01b038135169060200135610479565b6102486004803603602081101561024157600080fd5b50356104cd565b005b6101996004803603602081101561026057600080fd5b50356001600160a01b03166104e1565b6102486004803603604081101561028657600080fd5b506001600160a01b0381351690602001356104fc565b6100dc61050a565b61017d600480360360408110156102ba57600080fd5b506001600160a01b03813516906020013561056a565b61017d600480360360408110156102e657600080fd5b506001600160a01b0381351690602001356105d8565b6101996004803603604081101561031257600080fd5b506001600160a01b03813581169160200135166105ec565b60008054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156103b65780601f1061038b576101008083540402835291602001916103b6565b820191906000526020600020905b81548152906001019060200180831161039957829003601f168201915b5050505050905090565b60006103d46103cd610617565b848461061b565b50600192915050565b60055490565b60006103f0848484610707565b610466846103fc610617565b61046185604051806060016040528060288152602001610b7d602891396001600160a01b038a1660009081526004602052604081209061043a610617565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61086516565b61061b565b5060019392505050565b60025460ff1690565b60006103d4610486610617565b846104618560046000610497610617565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff6108fc16565b6104de6104d8610617565b8261095d565b50565b6001600160a01b031660009081526003602052604090205490565b6105068282610a59565b5050565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156103b65780601f1061038b576101008083540402835291602001916103b6565b60006103d4610577610617565b8461046185604051806060016040528060258152602001610c3360259139600460006105a1610617565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61086516565b60006103d46105e5610617565b8484610707565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b3390565b6001600160a01b0383166106605760405162461bcd60e51b8152600401808060200182810382526024815260200180610c0f6024913960400191505060405180910390fd5b6001600160a01b0382166106a55760405162461bcd60e51b8152600401808060200182810382526022815260200180610b356022913960400191505060405180910390fd5b6001600160a01b03808416600081815260046020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831661074c5760405162461bcd60e51b8152600401808060200182810382526025815260200180610bea6025913960400191505060405180910390fd5b6001600160a01b0382166107915760405162461bcd60e51b8152600401808060200182810382526023815260200180610af06023913960400191505060405180910390fd5b6107d481604051806060016040528060268152602001610b57602691396001600160a01b038616600090815260036020526040902054919063ffffffff61086516565b6001600160a01b038085166000908152600360205260408082209390935590841681522054610809908263ffffffff6108fc16565b6001600160a01b0380841660008181526003602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156108f45760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156108b95781810151838201526020016108a1565b50505050905090810190601f1680156108e65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610956576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b0382166109a25760405162461bcd60e51b8152600401808060200182810382526021815260200180610bc96021913960400191505060405180910390fd5b6109e581604051806060016040528060228152602001610b13602291396001600160a01b038516600090815260036020526040902054919063ffffffff61086516565b6001600160a01b038316600090815260036020526040902055600554610a11908263ffffffff610aad16565b6005556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b610a63828261095d565b61050682610a6f610617565b61046184604051806060016040528060248152602001610ba5602491396001600160a01b03881660009081526004602052604081209061043a610617565b600061095683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061086556fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a723158206d288e66458ea74e1b9d65c8e76ba3826c4636fcf6c6d5835ba57eefccb2ff8264736f6c634300050c00320000000000000000000000009c16c04bda8904ec30a0d7045b276a3c66012fd3
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c806342966c681161008c57806395d89b411161006657806395d89b411461029c578063a457c2d7146102a4578063a9059cbb146102d0578063dd62ed3e146102fc576100cf565b806342966c681461022b57806370a082311461024a57806379cc679014610270576100cf565b806306fdde03146100d4578063095ea7b31461015157806318160ddd1461019157806323b872dd146101ab578063313ce567146101e157806339509351146101ff575b600080fd5b6100dc61032a565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101165781810151838201526020016100fe565b50505050905090810190601f1680156101435780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61017d6004803603604081101561016757600080fd5b506001600160a01b0381351690602001356103c0565b604080519115158252519081900360200190f35b6101996103dd565b60408051918252519081900360200190f35b61017d600480360360608110156101c157600080fd5b506001600160a01b038135811691602081013590911690604001356103e3565b6101e9610470565b6040805160ff9092168252519081900360200190f35b61017d6004803603604081101561021557600080fd5b506001600160a01b038135169060200135610479565b6102486004803603602081101561024157600080fd5b50356104cd565b005b6101996004803603602081101561026057600080fd5b50356001600160a01b03166104e1565b6102486004803603604081101561028657600080fd5b506001600160a01b0381351690602001356104fc565b6100dc61050a565b61017d600480360360408110156102ba57600080fd5b506001600160a01b03813516906020013561056a565b61017d600480360360408110156102e657600080fd5b506001600160a01b0381351690602001356105d8565b6101996004803603604081101561031257600080fd5b506001600160a01b03813581169160200135166105ec565b60008054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156103b65780601f1061038b576101008083540402835291602001916103b6565b820191906000526020600020905b81548152906001019060200180831161039957829003601f168201915b5050505050905090565b60006103d46103cd610617565b848461061b565b50600192915050565b60055490565b60006103f0848484610707565b610466846103fc610617565b61046185604051806060016040528060288152602001610b7d602891396001600160a01b038a1660009081526004602052604081209061043a610617565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61086516565b61061b565b5060019392505050565b60025460ff1690565b60006103d4610486610617565b846104618560046000610497610617565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff6108fc16565b6104de6104d8610617565b8261095d565b50565b6001600160a01b031660009081526003602052604090205490565b6105068282610a59565b5050565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156103b65780601f1061038b576101008083540402835291602001916103b6565b60006103d4610577610617565b8461046185604051806060016040528060258152602001610c3360259139600460006105a1610617565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61086516565b60006103d46105e5610617565b8484610707565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b3390565b6001600160a01b0383166106605760405162461bcd60e51b8152600401808060200182810382526024815260200180610c0f6024913960400191505060405180910390fd5b6001600160a01b0382166106a55760405162461bcd60e51b8152600401808060200182810382526022815260200180610b356022913960400191505060405180910390fd5b6001600160a01b03808416600081815260046020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831661074c5760405162461bcd60e51b8152600401808060200182810382526025815260200180610bea6025913960400191505060405180910390fd5b6001600160a01b0382166107915760405162461bcd60e51b8152600401808060200182810382526023815260200180610af06023913960400191505060405180910390fd5b6107d481604051806060016040528060268152602001610b57602691396001600160a01b038616600090815260036020526040902054919063ffffffff61086516565b6001600160a01b038085166000908152600360205260408082209390935590841681522054610809908263ffffffff6108fc16565b6001600160a01b0380841660008181526003602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156108f45760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156108b95781810151838201526020016108a1565b50505050905090810190601f1680156108e65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610956576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b0382166109a25760405162461bcd60e51b8152600401808060200182810382526021815260200180610bc96021913960400191505060405180910390fd5b6109e581604051806060016040528060228152602001610b13602291396001600160a01b038516600090815260036020526040902054919063ffffffff61086516565b6001600160a01b038316600090815260036020526040902055600554610a11908263ffffffff610aad16565b6005556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b610a63828261095d565b61050682610a6f610617565b61046184604051806060016040528060248152602001610ba5602491396001600160a01b03881660009081526004602052604081209061043a610617565b600061095683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061086556fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a723158206d288e66458ea74e1b9d65c8e76ba3826c4636fcf6c6d5835ba57eefccb2ff8264736f6c634300050c0032
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000009c16c04bda8904ec30a0d7045b276a3c66012fd3
-----Decoded View---------------
Arg [0] : receiver (address): 0x9C16c04bDA8904EC30a0D7045b276a3c66012Fd3
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000009c16c04bda8904ec30a0d7045b276a3c66012fd3
Deployed Bytecode Sourcemap
19830:267:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19830:267:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3438:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;3438:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13385:152;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13385:152:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;12406:91;;;:::i;:::-;;;;;;;;;;;;;;;;14009:304;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14009:304:0;;;;;;;;;;;;;;;;;:::i;4290:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;14722:210;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14722:210:0;;;;;;;;:::i;19499:83::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19499:83:0;;:::i;:::-;;12560:110;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;12560:110:0;-1:-1:-1;;;;;12560:110:0;;:::i;19644:103::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;19644:103:0;;;;;;;;:::i;3640:87::-;;;:::i;15435:261::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15435:261:0;;;;;;;;:::i;12883:158::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;12883:158:0;;;;;;;;:::i;13104:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13104:134:0;;;;;;;;;;:::i;3438:83::-;3508:5;3501:12;;;;;;;;-1:-1:-1;;3501:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3475:13;;3501:12;;3508:5;;3501:12;;3508:5;3501:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3438:83;:::o;13385:152::-;13451:4;13468:39;13477:12;:10;:12::i;:::-;13491:7;13500:6;13468:8;:39::i;:::-;-1:-1:-1;13525:4:0;13385:152;;;;:::o;12406:91::-;12477:12;;12406:91;:::o;14009:304::-;14098:4;14115:36;14125:6;14133:9;14144:6;14115:9;:36::i;:::-;14162:121;14171:6;14179:12;:10;:12::i;:::-;14193:89;14231:6;14193:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14193:19:0;;;;;;:11;:19;;;;;;14213:12;:10;:12::i;:::-;-1:-1:-1;;;;;14193:33:0;;;;;;;;;;;;-1:-1:-1;14193:33:0;;;:89;;:37;:89;:::i;:::-;14162:8;:121::i;:::-;-1:-1:-1;14301:4:0;14009:304;;;;;:::o;4290:83::-;4356:9;;;;4290:83;:::o;14722:210::-;14802:4;14819:83;14828:12;:10;:12::i;:::-;14842:7;14851:50;14890:10;14851:11;:25;14863:12;:10;:12::i;:::-;-1:-1:-1;;;;;14851:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;14851:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;19499:83::-;19547:27;19553:12;:10;:12::i;:::-;19567:6;19547:5;:27::i;:::-;19499:83;:::o;12560:110::-;-1:-1:-1;;;;;12644:18:0;12617:7;12644:18;;;:9;:18;;;;;;;12560:110::o;19644:103::-;19713:26;19723:7;19732:6;19713:9;:26::i;:::-;19644:103;;:::o;3640:87::-;3712:7;3705:14;;;;;;;;-1:-1:-1;;3705:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3679:13;;3705:14;;3712:7;;3705:14;;3712:7;3705:14;;;;;;;;;;;;;;;;;;;;;;;;15435:261;15520:4;15537:129;15546:12;:10;:12::i;:::-;15560:7;15569:96;15608:15;15569:96;;;;;;;;;;;;;;;;;:11;:25;15581:12;:10;:12::i;:::-;-1:-1:-1;;;;;15569:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;15569:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;12883:158::-;12952:4;12969:42;12979:12;:10;:12::i;:::-;12993:9;13004:6;12969:9;:42::i;13104:134::-;-1:-1:-1;;;;;13203:18:0;;;13176:7;13203:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13104:134::o;5159:98::-;5239:10;5159:98;:::o;18366:338::-;-1:-1:-1;;;;;18460:19:0;;18452:68;;;;-1:-1:-1;;;18452:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18539:21:0;;18531:68;;;;-1:-1:-1;;;18531:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18612:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18664:32;;;;;;;;;;;;;;;;;18366:338;;;:::o;16186:471::-;-1:-1:-1;;;;;16284:20:0;;16276:70;;;;-1:-1:-1;;;16276:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16365:23:0;;16357:71;;;;-1:-1:-1;;;16357:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16461;16483:6;16461:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16461:17:0;;;;;;:9;:17;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;16441:17:0;;;;;;;:9;:17;;;;;;:91;;;;16566:20;;;;;;;:32;;16591:6;16566:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;16543:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;16614:35;;;;;;;16543:20;;16614:35;;;;;;;;;;;;;16186:471;;;:::o;7258:192::-;7344:7;7380:12;7372:6;;;;7364:29;;;;-1:-1:-1;;;7364: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;7364:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;7416:5:0;;;7258:192::o;6329:181::-;6387:7;6419:5;;;6443:6;;;;6435:46;;;;;-1:-1:-1;;;6435:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;6501:1;6329:181;-1:-1:-1;;;6329:181:0:o;17578:348::-;-1:-1:-1;;;;;17654:21:0;;17646:67;;;;-1:-1:-1;;;17646:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17747:68;17770:6;17747:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17747:18:0;;;;;;:9;:18;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;17726:18:0;;;;;;:9;:18;;;;;:89;17841:12;;:24;;17858:6;17841:24;:16;:24;:::i;:::-;17826:12;:39;17881:37;;;;;;;;17907:1;;-1:-1:-1;;;;;17881:37:0;;;;;;;;;;;;17578:348;;:::o;18890:232::-;18962:22;18968:7;18977:6;18962:5;:22::i;:::-;18995:119;19004:7;19013:12;:10;:12::i;:::-;19027:86;19066:6;19027:86;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19027:20:0;;;;;;:11;:20;;;;;;19048:12;:10;:12::i;6785:136::-;6843:7;6870:43;6874:1;6877;6870:43;;;;;;;;;;;;;;;;;:3;:43::i
Swarm Source
bzzr://6d288e66458ea74e1b9d65c8e76ba3826c4636fcf6c6d5835ba57eefccb2ff82
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.