ERC-20
Overview
Max Total Supply
69,000,000,000 0xShibarium
Holders
30
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
276,224,708.984623326150701861 0xShibariumValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Shibarium
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT /* 0xShibarium is here, with the goal of delivering one of the best launchpads for our holders to safely diversify their portfolios without worrying about scams. Twitter: https://twitter.com/0x_shibarium Website: https://www.0xshibarium.com/ Tg: https://t.me/Oxshibarium */ pragma solidity 0.8.17; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } 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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, 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); } 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); } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); } interface IUniswapV2Router02 is IUniswapV2Router01 { } contract Shibarium is Context, IERC20, IERC20Metadata, Ownable { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; // Anti bot mapping(address => uint256) public _blockNumberByAddress; bool public antiBotsActive = true; mapping(address => bool) public isContractExempt; uint public blockCooldownAmount = 1; /** * @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() { _name = "0xShibarium"; _symbol = "0xShibarium"; uint e_totalSupply = 69_000_000_000 ether; // Anti bot isContractExempt[address(this)] = true; isContractExempt[address(msg.sender)] = true; _mint(msg.sender, e_totalSupply); } /** * @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: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, 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}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, 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}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, 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) { address owner = _msgSender(); _approve(owner, spender, _allowances[owner][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) { address owner = _msgSender(); uint256 currentAllowance = _allowances[owner][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This 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: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); // bots ngmi if(antiBotsActive) { if(!isContractExempt[from] && !isContractExempt[to]) { address human = ensureOneHuman(from, to); ensureMaxTxFrequency(human); _blockNumberByAddress[human] = block.number; } } // uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, 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: * * - `account` 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); _afterTokenTransfer(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"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(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); } /** * @dev Spend `amount` form the allowance of `owner` toward `spender`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @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 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 {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} // anti bot function isContract(address account) internal view returns (bool) { uint256 size; assembly { size := extcodesize(account) } return size > 0; } function ensureOneHuman(address _to, address _from) internal virtual returns (address) { require(!isContract(_to) || !isContract(_from), "No bots are allowed!"); if (isContract(_to)) return _from; else return _to; } function ensureMaxTxFrequency(address addr) internal virtual { bool isAllowed = _blockNumberByAddress[addr] == 0 || ((_blockNumberByAddress[addr] + blockCooldownAmount) < (block.number + 1)); require(isAllowed, "Max tx frequency exceeded!"); } function rescueEth() external onlyOwner { uint256 balance = address(this).balance; if (balance > 0) { (bool success,) = address(owner()).call{value: balance}(""); require(success); } } function setAntiBotsActive(bool value) external onlyOwner { antiBotsActive = value; } function setBlockCooldown(uint value) external onlyOwner { blockCooldownAmount = value; } function setContractExempt(address account, bool value) external onlyOwner { isContractExempt[account] = value; } // End anti bot }
{ "evmVersion": "istanbul", "optimizer": { "enabled": true, "runs": 200 }, "libraries": { "Token.sol": {} }, "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":"","type":"address"}],"name":"_blockNumberByAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":[],"name":"antiBotsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"blockCooldownAmount","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":"","type":"address"}],"name":"isContractExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"rescueEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setAntiBotsActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setBlockCooldown","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setContractExempt","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":"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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526007805460ff191660019081179091556009553480156200002457600080fd5b506200003033620000e5565b60408051808201909152600b81526a307853686962617269756d60a81b6020820152600490620000619082620002c6565b5060408051808201909152600b81526a307853686962617269756d60a81b6020820152600590620000939082620002c6565b50306000908152600860205260408082208054600160ff19918216811790925533808552929093208054909316179091556bdef376571332906a8800000090620000de908262000135565b50620003ba565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001905760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060036000828254620001a4919062000392565b90915550506001600160a01b03821660009081526001602052604081208054839290620001d390849062000392565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200024d57607f821691505b6020821081036200026e57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200021d57600081815260208120601f850160051c810160208610156200029d5750805b601f850160051c820191505b81811015620002be57828155600101620002a9565b505050505050565b81516001600160401b03811115620002e257620002e262000222565b620002fa81620002f3845462000238565b8462000274565b602080601f831160018114620003325760008415620003195750858301515b600019600386901b1c1916600185901b178555620002be565b600085815260208120601f198616915b82811015620003635788860151825594840194600190910190840162000342565b5085821015620003825787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115620003b457634e487b7160e01b600052601160045260246000fd5b92915050565b610ed780620003ca6000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806377a59f00116100b8578063a457c2d71161007c578063a457c2d714610294578063a9059cbb146102a7578063ce31a06b146102ba578063dd62ed3e146102c2578063f2fde38b146102fb578063f6887cd31461030e57600080fd5b806377a59f001461022b57806380f683101461024b5780638da5cb5b1461025e57806395d89b41146102795780639686d3221461028157600080fd5b806323b872dd1161010a57806323b872dd146101b8578063313ce567146101cb57806339509351146101da57806341f20b68146101ed57806370a08231146101fa578063715018a61461022357600080fd5b806306fdde0314610147578063095ea7b31461016557806313c72aed1461018857806318160ddd1461019d5780631868aadf146101af575b600080fd5b61014f610331565b60405161015c9190610c7e565b60405180910390f35b610178610173366004610ce8565b6103c3565b604051901515815260200161015c565b61019b610196366004610d12565b6103dd565b005b6003545b60405190815260200161015c565b6101a160095481565b6101786101c6366004610d2b565b610415565b6040516012815260200161015c565b6101786101e8366004610ce8565b610439565b6007546101789060ff1681565b6101a1610208366004610d67565b6001600160a01b031660009081526001602052604090205490565b61019b610478565b6101a1610239366004610d67565b60066020526000908152604090205481565b61019b610259366004610d99565b6104ae565b6000546040516001600160a01b03909116815260200161015c565b61014f6104eb565b61019b61028f366004610db4565b6104fa565b6101786102a2366004610ce8565b61054f565b6101786102b5366004610ce8565b6105e1565b61019b6105ef565b6101a16102d0366004610de7565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61019b610309366004610d67565b610685565b61017861031c366004610d67565b60086020526000908152604090205460ff1681565b60606004805461034090610e11565b80601f016020809104026020016040519081016040528092919081815260200182805461036c90610e11565b80156103b95780601f1061038e576101008083540402835291602001916103b9565b820191906000526020600020905b81548152906001019060200180831161039c57829003601f168201915b5050505050905090565b6000336103d181858561071d565b60019150505b92915050565b6000546001600160a01b031633146104105760405162461bcd60e51b815260040161040790610e4b565b60405180910390fd5b600955565b600033610423858285610841565b61042e8585856108d3565b506001949350505050565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091906103d19082908690610473908790610e80565b61071d565b6000546001600160a01b031633146104a25760405162461bcd60e51b815260040161040790610e4b565b6104ac6000610b25565b565b6000546001600160a01b031633146104d85760405162461bcd60e51b815260040161040790610e4b565b6007805460ff1916911515919091179055565b60606005805461034090610e11565b6000546001600160a01b031633146105245760405162461bcd60e51b815260040161040790610e4b565b6001600160a01b03919091166000908152600860205260409020805460ff1916911515919091179055565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909190838110156105d45760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610407565b61042e828686840361071d565b6000336103d18185856108d3565b6000546001600160a01b031633146106195760405162461bcd60e51b815260040161040790610e4b565b47801561068257600080546040516001600160a01b039091169083908381818185875af1925050503d806000811461066d576040519150601f19603f3d011682016040523d82523d6000602084013e610672565b606091505b505090508061068057600080fd5b505b50565b6000546001600160a01b031633146106af5760405162461bcd60e51b815260040161040790610e4b565b6001600160a01b0381166107145760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610407565b61068281610b25565b6001600160a01b03831661077f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610407565b6001600160a01b0382166107e05760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610407565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383811660009081526002602090815260408083209386168352929052205460001981146108cd57818110156108c05760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610407565b6108cd848484840361071d565b50505050565b6001600160a01b0383166109375760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610407565b6001600160a01b0382166109995760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610407565b60075460ff1615610a1d576001600160a01b03831660009081526008602052604090205460ff161580156109e657506001600160a01b03821660009081526008602052604090205460ff16155b15610a1d5760006109f78484610b75565b9050610a0281610bdc565b6001600160a01b031660009081526006602052604090204390555b6001600160a01b03831660009081526001602052604090205481811015610a955760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610407565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610acc908490610e80565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b1891815260200190565b60405180910390a36108cd565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000823b1580610b845750813b155b610bc75760405162461bcd60e51b81526020600482015260146024820152734e6f20626f74732061726520616c6c6f7765642160601b6044820152606401610407565b823b15610bd55750806103d7565b50816103d7565b6001600160a01b0381166000908152600660205260408120541580610c2f5750610c07436001610e80565b6009546001600160a01b038416600090815260066020526040902054610c2d9190610e80565b105b9050806106805760405162461bcd60e51b815260206004820152601a60248201527f4d6178207478206672657175656e6379206578636565646564210000000000006044820152606401610407565b600060208083528351808285015260005b81811015610cab57858101830151858201604001528201610c8f565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610ce357600080fd5b919050565b60008060408385031215610cfb57600080fd5b610d0483610ccc565b946020939093013593505050565b600060208284031215610d2457600080fd5b5035919050565b600080600060608486031215610d4057600080fd5b610d4984610ccc565b9250610d5760208501610ccc565b9150604084013590509250925092565b600060208284031215610d7957600080fd5b610d8282610ccc565b9392505050565b80358015158114610ce357600080fd5b600060208284031215610dab57600080fd5b610d8282610d89565b60008060408385031215610dc757600080fd5b610dd083610ccc565b9150610dde60208401610d89565b90509250929050565b60008060408385031215610dfa57600080fd5b610e0383610ccc565b9150610dde60208401610ccc565b600181811c90821680610e2557607f821691505b602082108103610e4557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b808201808211156103d757634e487b7160e01b600052601160045260246000fdfea26469706673582212205e71625235441a6ca76139b9474d74381dee08445836d38b04770861d077773f64736f6c63430008110033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101425760003560e01c806377a59f00116100b8578063a457c2d71161007c578063a457c2d714610294578063a9059cbb146102a7578063ce31a06b146102ba578063dd62ed3e146102c2578063f2fde38b146102fb578063f6887cd31461030e57600080fd5b806377a59f001461022b57806380f683101461024b5780638da5cb5b1461025e57806395d89b41146102795780639686d3221461028157600080fd5b806323b872dd1161010a57806323b872dd146101b8578063313ce567146101cb57806339509351146101da57806341f20b68146101ed57806370a08231146101fa578063715018a61461022357600080fd5b806306fdde0314610147578063095ea7b31461016557806313c72aed1461018857806318160ddd1461019d5780631868aadf146101af575b600080fd5b61014f610331565b60405161015c9190610c7e565b60405180910390f35b610178610173366004610ce8565b6103c3565b604051901515815260200161015c565b61019b610196366004610d12565b6103dd565b005b6003545b60405190815260200161015c565b6101a160095481565b6101786101c6366004610d2b565b610415565b6040516012815260200161015c565b6101786101e8366004610ce8565b610439565b6007546101789060ff1681565b6101a1610208366004610d67565b6001600160a01b031660009081526001602052604090205490565b61019b610478565b6101a1610239366004610d67565b60066020526000908152604090205481565b61019b610259366004610d99565b6104ae565b6000546040516001600160a01b03909116815260200161015c565b61014f6104eb565b61019b61028f366004610db4565b6104fa565b6101786102a2366004610ce8565b61054f565b6101786102b5366004610ce8565b6105e1565b61019b6105ef565b6101a16102d0366004610de7565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61019b610309366004610d67565b610685565b61017861031c366004610d67565b60086020526000908152604090205460ff1681565b60606004805461034090610e11565b80601f016020809104026020016040519081016040528092919081815260200182805461036c90610e11565b80156103b95780601f1061038e576101008083540402835291602001916103b9565b820191906000526020600020905b81548152906001019060200180831161039c57829003601f168201915b5050505050905090565b6000336103d181858561071d565b60019150505b92915050565b6000546001600160a01b031633146104105760405162461bcd60e51b815260040161040790610e4b565b60405180910390fd5b600955565b600033610423858285610841565b61042e8585856108d3565b506001949350505050565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091906103d19082908690610473908790610e80565b61071d565b6000546001600160a01b031633146104a25760405162461bcd60e51b815260040161040790610e4b565b6104ac6000610b25565b565b6000546001600160a01b031633146104d85760405162461bcd60e51b815260040161040790610e4b565b6007805460ff1916911515919091179055565b60606005805461034090610e11565b6000546001600160a01b031633146105245760405162461bcd60e51b815260040161040790610e4b565b6001600160a01b03919091166000908152600860205260409020805460ff1916911515919091179055565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909190838110156105d45760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610407565b61042e828686840361071d565b6000336103d18185856108d3565b6000546001600160a01b031633146106195760405162461bcd60e51b815260040161040790610e4b565b47801561068257600080546040516001600160a01b039091169083908381818185875af1925050503d806000811461066d576040519150601f19603f3d011682016040523d82523d6000602084013e610672565b606091505b505090508061068057600080fd5b505b50565b6000546001600160a01b031633146106af5760405162461bcd60e51b815260040161040790610e4b565b6001600160a01b0381166107145760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610407565b61068281610b25565b6001600160a01b03831661077f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610407565b6001600160a01b0382166107e05760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610407565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383811660009081526002602090815260408083209386168352929052205460001981146108cd57818110156108c05760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610407565b6108cd848484840361071d565b50505050565b6001600160a01b0383166109375760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610407565b6001600160a01b0382166109995760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610407565b60075460ff1615610a1d576001600160a01b03831660009081526008602052604090205460ff161580156109e657506001600160a01b03821660009081526008602052604090205460ff16155b15610a1d5760006109f78484610b75565b9050610a0281610bdc565b6001600160a01b031660009081526006602052604090204390555b6001600160a01b03831660009081526001602052604090205481811015610a955760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610407565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610acc908490610e80565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b1891815260200190565b60405180910390a36108cd565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000823b1580610b845750813b155b610bc75760405162461bcd60e51b81526020600482015260146024820152734e6f20626f74732061726520616c6c6f7765642160601b6044820152606401610407565b823b15610bd55750806103d7565b50816103d7565b6001600160a01b0381166000908152600660205260408120541580610c2f5750610c07436001610e80565b6009546001600160a01b038416600090815260066020526040902054610c2d9190610e80565b105b9050806106805760405162461bcd60e51b815260206004820152601a60248201527f4d6178207478206672657175656e6379206578636565646564210000000000006044820152606401610407565b600060208083528351808285015260005b81811015610cab57858101830151858201604001528201610c8f565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610ce357600080fd5b919050565b60008060408385031215610cfb57600080fd5b610d0483610ccc565b946020939093013593505050565b600060208284031215610d2457600080fd5b5035919050565b600080600060608486031215610d4057600080fd5b610d4984610ccc565b9250610d5760208501610ccc565b9150604084013590509250925092565b600060208284031215610d7957600080fd5b610d8282610ccc565b9392505050565b80358015158114610ce357600080fd5b600060208284031215610dab57600080fd5b610d8282610d89565b60008060408385031215610dc757600080fd5b610dd083610ccc565b9150610dde60208401610d89565b90509250929050565b60008060408385031215610dfa57600080fd5b610e0383610ccc565b9150610dde60208401610ccc565b600181811c90821680610e2557607f821691505b602082108103610e4557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b808201808211156103d757634e487b7160e01b600052601160045260246000fdfea26469706673582212205e71625235441a6ca76139b9474d74381dee08445836d38b04770861d077773f64736f6c63430008110033
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.