Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
994,381.073 ATIS
Holders
86
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
7,350.75 ATISValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ATIS
Compiler Version
v0.6.10+commit.00c0fcaf
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-06-19 */ pragma solidity ^0.6.0; abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } 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) { 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; } } pragma solidity ^0.6.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ 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 ERC20 is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol) public { _name = name; _symbol = symbol; _decimals = 18; } /** * @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. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * 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 See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override 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 virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override 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 virtual override 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 virtual 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 virtual 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 virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _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 virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _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 virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _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 virtual { 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 Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } contract ATIS is ERC20 { constructor () public ERC20("ATIS Token", "ATIS") { _mint(msg.sender, 1000000 * (10 ** uint256(decimals()))); } function transfer(address to, uint256 amount) public override returns (bool) { return super.transfer(to, _partialBurn(amount)); } function transferFrom(address from, address to, uint256 amount) public override returns (bool) { return super.transferFrom(from, to, _partialBurn(amount)); } function _partialBurn(uint256 amount) internal returns (uint256) { uint256 burnAmount = amount.div(100); if (burnAmount > 0) { _burn(msg.sender, burnAmount); } return amount.sub(burnAmount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604080518082018252600a81526920aa24a9902a37b5b2b760b11b6020808301918252835180850190945260048452634154495360e01b908401528151919291620000609160039162000244565b5080516200007690600490602084019062000244565b50506005805460ff1916601217905550620000b5336200009e6001600160e01b03620000bb16565b60ff16600a0a620f424002620000c560201b60201c565b620002e6565b60055460ff165b90565b6001600160a01b03821662000121576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b62000138600083836001600160e01b03620001dd16565b6200015481600254620001e260201b620005211790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200018791839062000521620001e2821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b505050565b6000828201838110156200023d576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200028757805160ff1916838001178555620002b7565b82800160010185558215620002b7579182015b82811115620002b75782518255916020019190600101906200029a565b50620002c5929150620002c9565b5090565b620000c291905b80821115620002c55760008155600101620002d0565b610cab80620002f66000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c8063395093511161007157806339509351146101d957806370a082311461020557806395d89b411461022b578063a457c2d714610233578063a9059cbb1461025f578063dd62ed3e1461028b576100a9565b806306fdde03146100ae578063095ea7b31461012b57806318160ddd1461016b57806323b872dd14610185578063313ce567146101bb575b600080fd5b6100b66102b9565b6040805160208082528351818301528351919283929083019185019080838360005b838110156100f05781810151838201526020016100d8565b50505050905090810190601f16801561011d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101576004803603604081101561014157600080fd5b506001600160a01b03813516906020013561034f565b604080519115158252519081900360200190f35b61017361036c565b60408051918252519081900360200190f35b6101576004803603606081101561019b57600080fd5b506001600160a01b03813581169160208101359091169060400135610372565b6101c361038f565b6040805160ff9092168252519081900360200190f35b610157600480360360408110156101ef57600080fd5b506001600160a01b038135169060200135610398565b6101736004803603602081101561021b57600080fd5b50356001600160a01b03166103f1565b6100b661040c565b6101576004803603604081101561024957600080fd5b506001600160a01b03813516906020013561046d565b6101576004803603604081101561027557600080fd5b506001600160a01b0381351690602001356104db565b610173600480360360408110156102a157600080fd5b506001600160a01b03813581169160200135166104f6565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156103455780601f1061031a57610100808354040283529160200191610345565b820191906000526020600020905b81548152906001019060200180831161032857829003601f168201915b5050505050905090565b600061036361035c61057b565b848461057f565b50600192915050565b60025490565b600061038784846103828561066b565b6106a1565b949350505050565b60055460ff1690565b60006103636103a561057b565b846103ec85600160006103b661057b565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61052116565b61057f565b6001600160a01b031660009081526020819052604090205490565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156103455780601f1061031a57610100808354040283529160200191610345565b600061036361047a61057b565b846103ec85604051806060016040528060258152602001610c5160259139600160006104a461057b565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61072916565b60006104ef836104ea8461066b565b6107c0565b9392505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6000828201838110156104ef576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b3390565b6001600160a01b0383166105c45760405162461bcd60e51b8152600401808060200182810382526024815260200180610c2d6024913960400191505060405180910390fd5b6001600160a01b0382166106095760405162461bcd60e51b8152600401808060200182810382526022815260200180610b776022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60008061067f83606463ffffffff6107d416565b90508015610691576106913382610816565b6104ef838263ffffffff61091e16565b60006106ae848484610960565b61071f846106ba61057b565b6103ec85604051806060016040528060288152602001610bbf602891396001600160a01b038a166000908152600160205260408120906106f861057b565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61072916565b5060019392505050565b600081848411156107b85760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561077d578181015183820152602001610765565b50505050905090810190601f1680156107aa5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60006103636107cd61057b565b8484610960565b60006104ef83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610ac7565b6001600160a01b03821661085b5760405162461bcd60e51b8152600401808060200182810382526021815260200180610be76021913960400191505060405180910390fd5b61086782600083610b2c565b6108aa81604051806060016040528060228152602001610b55602291396001600160a01b038516600090815260208190526040902054919063ffffffff61072916565b6001600160a01b0383166000908152602081905260409020556002546108d6908263ffffffff61091e16565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60006104ef83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610729565b6001600160a01b0383166109a55760405162461bcd60e51b8152600401808060200182810382526025815260200180610c086025913960400191505060405180910390fd5b6001600160a01b0382166109ea5760405162461bcd60e51b8152600401808060200182810382526023815260200180610b326023913960400191505060405180910390fd5b6109f5838383610b2c565b610a3881604051806060016040528060268152602001610b99602691396001600160a01b038616600090815260208190526040902054919063ffffffff61072916565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610a6d908263ffffffff61052116565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008183610b165760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561077d578181015183820152602001610765565b506000838581610b2257fe5b0495945050505050565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122087115fea380b7fb66ce972a818d4ff1f9289290f3cfe74c1dfc41a51ae6ba26364736f6c634300060a0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100a95760003560e01c8063395093511161007157806339509351146101d957806370a082311461020557806395d89b411461022b578063a457c2d714610233578063a9059cbb1461025f578063dd62ed3e1461028b576100a9565b806306fdde03146100ae578063095ea7b31461012b57806318160ddd1461016b57806323b872dd14610185578063313ce567146101bb575b600080fd5b6100b66102b9565b6040805160208082528351818301528351919283929083019185019080838360005b838110156100f05781810151838201526020016100d8565b50505050905090810190601f16801561011d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101576004803603604081101561014157600080fd5b506001600160a01b03813516906020013561034f565b604080519115158252519081900360200190f35b61017361036c565b60408051918252519081900360200190f35b6101576004803603606081101561019b57600080fd5b506001600160a01b03813581169160208101359091169060400135610372565b6101c361038f565b6040805160ff9092168252519081900360200190f35b610157600480360360408110156101ef57600080fd5b506001600160a01b038135169060200135610398565b6101736004803603602081101561021b57600080fd5b50356001600160a01b03166103f1565b6100b661040c565b6101576004803603604081101561024957600080fd5b506001600160a01b03813516906020013561046d565b6101576004803603604081101561027557600080fd5b506001600160a01b0381351690602001356104db565b610173600480360360408110156102a157600080fd5b506001600160a01b03813581169160200135166104f6565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156103455780601f1061031a57610100808354040283529160200191610345565b820191906000526020600020905b81548152906001019060200180831161032857829003601f168201915b5050505050905090565b600061036361035c61057b565b848461057f565b50600192915050565b60025490565b600061038784846103828561066b565b6106a1565b949350505050565b60055460ff1690565b60006103636103a561057b565b846103ec85600160006103b661057b565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61052116565b61057f565b6001600160a01b031660009081526020819052604090205490565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156103455780601f1061031a57610100808354040283529160200191610345565b600061036361047a61057b565b846103ec85604051806060016040528060258152602001610c5160259139600160006104a461057b565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61072916565b60006104ef836104ea8461066b565b6107c0565b9392505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6000828201838110156104ef576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b3390565b6001600160a01b0383166105c45760405162461bcd60e51b8152600401808060200182810382526024815260200180610c2d6024913960400191505060405180910390fd5b6001600160a01b0382166106095760405162461bcd60e51b8152600401808060200182810382526022815260200180610b776022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60008061067f83606463ffffffff6107d416565b90508015610691576106913382610816565b6104ef838263ffffffff61091e16565b60006106ae848484610960565b61071f846106ba61057b565b6103ec85604051806060016040528060288152602001610bbf602891396001600160a01b038a166000908152600160205260408120906106f861057b565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61072916565b5060019392505050565b600081848411156107b85760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561077d578181015183820152602001610765565b50505050905090810190601f1680156107aa5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60006103636107cd61057b565b8484610960565b60006104ef83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610ac7565b6001600160a01b03821661085b5760405162461bcd60e51b8152600401808060200182810382526021815260200180610be76021913960400191505060405180910390fd5b61086782600083610b2c565b6108aa81604051806060016040528060228152602001610b55602291396001600160a01b038516600090815260208190526040902054919063ffffffff61072916565b6001600160a01b0383166000908152602081905260409020556002546108d6908263ffffffff61091e16565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60006104ef83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610729565b6001600160a01b0383166109a55760405162461bcd60e51b8152600401808060200182810382526025815260200180610c086025913960400191505060405180910390fd5b6001600160a01b0382166109ea5760405162461bcd60e51b8152600401808060200182810382526023815260200180610b326023913960400191505060405180910390fd5b6109f5838383610b2c565b610a3881604051806060016040528060268152602001610b99602691396001600160a01b038616600090815260208190526040902054919063ffffffff61072916565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610a6d908263ffffffff61052116565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008183610b165760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561077d578181015183820152602001610765565b506000838581610b2257fe5b0495945050505050565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122087115fea380b7fb66ce972a818d4ff1f9289290f3cfe74c1dfc41a51ae6ba26364736f6c634300060a0033
Deployed Bytecode Sourcemap
23688:750:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14871:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16977:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16977:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;15946:100;;;:::i;:::-;;;;;;;;;;;;;;;;24004:171;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24004:171:0;;;;;;;;;;;;;;;;;:::i;15798:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18350:218;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18350:218:0;;;;;;;;:::i;16109:119::-;;;;;;;;;;;;;;;;-1:-1:-1;16109:119:0;-1:-1:-1;;;;;16109:119:0;;:::i;15073:87::-;;;:::i;19071:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19071:269:0;;;;;;;;:::i;23853:143::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23853:143:0;;;;;;;;:::i;16679:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16679:151:0;;;;;;;;;;:::i;14871:83::-;14941:5;14934:12;;;;;;;;-1:-1:-1;;14934:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14908:13;;14934:12;;14941:5;;14934:12;;14941:5;14934:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14871:83;:::o;16977:169::-;17060:4;17077:39;17086:12;:10;:12::i;:::-;17100:7;17109:6;17077:8;:39::i;:::-;-1:-1:-1;17134:4:0;16977:169;;;;:::o;15946:100::-;16026:12;;15946:100;:::o;24004:171::-;24093:4;24117:50;24136:4;24142:2;24146:20;24159:6;24146:12;:20::i;:::-;24117:18;:50::i;:::-;24110:57;24004:171;-1:-1:-1;;;;24004:171:0:o;15798:83::-;15864:9;;;;15798:83;:::o;18350:218::-;18438:4;18455:83;18464:12;:10;:12::i;:::-;18478:7;18487:50;18526:10;18487:11;:25;18499:12;:10;:12::i;:::-;-1:-1:-1;;;;;18487:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;18487:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;:::-;18455:8;:83::i;16109:119::-;-1:-1:-1;;;;;16202:18:0;16175:7;16202:18;;;;;;;;;;;;16109:119::o;15073:87::-;15145:7;15138:14;;;;;;;;-1:-1:-1;;15138:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15112:13;;15138:14;;15145:7;;15138:14;;15145:7;15138:14;;;;;;;;;;;;;;;;;;;;;;;;19071:269;19164:4;19181:129;19190:12;:10;:12::i;:::-;19204:7;19213:96;19252:15;19213:96;;;;;;;;;;;;;;;;;:11;:25;19225:12;:10;:12::i;:::-;-1:-1:-1;;;;;19213:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;19213:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;23853:143::-;23924:4;23948:40;23963:2;23967:20;23980:6;23967:12;:20::i;:::-;23948:14;:40::i;:::-;23941:47;23853:143;-1:-1:-1;;;23853:143:0:o;16679:151::-;-1:-1:-1;;;;;16795:18:0;;;16768:7;16795:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;16679:151::o;6765:181::-;6823:7;6855:5;;;6879:6;;;;6871:46;;;;;-1:-1:-1;;;6871:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;60:106;148:10;60:106;:::o;22218:346::-;-1:-1:-1;;;;;22320:19:0;;22312:68;;;;-1:-1:-1;;;22312:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22399:21:0;;22391:68;;;;-1:-1:-1;;;22391:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22472:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;22524:32;;;;;;;;;;;;;;;;;22218:346;;;:::o;24183:250::-;24239:7;;24280:15;:6;24291:3;24280:15;:10;:15;:::i;:::-;24259:36;-1:-1:-1;24312:14:0;;24308:76;;24343:29;24349:10;24361;24343:5;:29::i;:::-;24403:22;:6;24414:10;24403:22;:10;:22;:::i;17620:321::-;17726:4;17743:36;17753:6;17761:9;17772:6;17743:9;:36::i;:::-;17790:121;17799:6;17807:12;:10;:12::i;:::-;17821:89;17859:6;17821:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17821:19:0;;;;;;:11;:19;;;;;;17841:12;:10;:12::i;:::-;-1:-1:-1;;;;;17821:33:0;;;;;;;;;;;;-1:-1:-1;17821:33:0;;;:89;;:37;:89;:::i;17790:121::-;-1:-1:-1;17929:4:0;17620:321;;;;;:::o;7668:192::-;7754:7;7790:12;7782:6;;;;7774:29;;;;-1:-1:-1;;;7774:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;7826:5:0;;;7668:192::o;16441:175::-;16527:4;16544:42;16554:12;:10;:12::i;:::-;16568:9;16579:6;16544:9;:42::i;9066:132::-;9124:7;9151:39;9155:1;9158;9151:39;;;;;;;;;;;;;;;;;:3;:39::i;21360:418::-;-1:-1:-1;;;;;21444:21:0;;21436:67;;;;-1:-1:-1;;;21436:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21516:49;21537:7;21554:1;21558:6;21516:20;:49::i;:::-;21599:68;21622:6;21599:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21599:18:0;;:9;:18;;;;;;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;21578:18:0;;:9;:18;;;;;;;;;;:89;21693:12;;:24;;21710:6;21693:24;:16;:24;:::i;:::-;21678:12;:39;21733:37;;;;;;;;21759:1;;-1:-1:-1;;;;;21733:37:0;;;;;;;;;;;;21360:418;;:::o;7229:136::-;7287:7;7314:43;7318:1;7321;7314:43;;;;;;;;;;;;;;;;;:3;:43::i;19830:539::-;-1:-1:-1;;;;;19936:20:0;;19928:70;;;;-1:-1:-1;;;19928:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20017:23:0;;20009:71;;;;-1:-1:-1;;;20009:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20093:47;20114:6;20122:9;20133:6;20093:20;:47::i;:::-;20173:71;20195:6;20173:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20173:17:0;;:9;:17;;;;;;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;20153:17:0;;;:9;:17;;;;;;;;;;;:91;;;;20278:20;;;;;;;:32;;20303:6;20278:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;20255:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;20326:35;;;;;;;20255:20;;20326:35;;;;;;;;;;;;;19830:539;;;:::o;9694:278::-;9780:7;9815:12;9808:5;9800:28;;;;-1:-1:-1;;;9800:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9839:9;9855:1;9851;:5;;;;;;;9694:278;-1:-1:-1;;;;;9694:278:0:o;23589:92::-;;;;:::o
Swarm Source
ipfs://87115fea380b7fb66ce972a818d4ff1f9289290f3cfe74c1dfc41a51ae6ba263
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.