ERC-20
Overview
Max Total Supply
420,000,000 EBOT
Holders
80
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
2,012,253.818326404463657699 EBOTValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
EBOT
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
No with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: SEE LICENSE IN LICENSE pragma solidity ^0.8.20; import { ERC20 } from "@openzeppelin/contracts/token/ERC20/ERC20.sol"; interface IUniSwapV2Router { function WETH() external pure returns (address); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); } interface IUniFactory { function getPair(address tokenA, address tokenB) external view returns (address pair); } contract EBOT is ERC20 { IUniSwapV2Router public constant UNISWAP_ROUTER = IUniSwapV2Router(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); IUniFactory public constant UNISWAP_FACTORY = IUniFactory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f); address payable public constant FEE_RECEIVER = payable(0x4968A5DC556672bfDD91fFb545f94e56B8208F52); address uniswapPoolAddress = address(0x0); address immutable owner; mapping(address => bool) public noFeeSellers; error NotAnOwner(address sender, address owner); constructor(uint256 initialSupply) ERC20("Essentially the Best Of Tweets", "EBOT") { owner = msg.sender; noFeeSellers[owner] = true; noFeeSellers[address(this)] = true; _mint(msg.sender, initialSupply); _approve(address(this), address(UNISWAP_ROUTER), type(uint256).max); } function setNoFeeSeller(address seller) external { if (msg.sender != owner) { revert NotAnOwner(msg.sender, owner); } noFeeSellers[seller] = true; } function _update( address from, address to, uint256 amount ) internal override { if (amount == 0) { return; } // Update Cache if (uniswapPoolAddress == address(0x0) && msg.sender == address(UNISWAP_ROUTER)) { uniswapPoolAddress = UNISWAP_FACTORY.getPair(UNISWAP_ROUTER.WETH(), address(this)); } bool isSell = (uniswapPoolAddress == to); if (isSell) { uint256 fees = amount * 7 / 200; if (fees > 0 && !noFeeSellers[from]) { super._update(from, address(this), fees); swapTokensForEth(fees); amount -= fees; } } super._update(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) internal { address[] memory path = new address[](2); path[0] = address(this); path[1] = UNISWAP_ROUTER.WETH(); UNISWAP_ROUTER.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, FEE_RECEIVER, block.timestamp ); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "./IERC20.sol"; import {IERC20Metadata} from "./extensions/IERC20Metadata.sol"; import {Context} from "../../utils/Context.sol"; import {IERC20Errors} from "../../interfaces/draft-IERC6093.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual 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 default value returned by this function, unless * it's 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 returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual 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 `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` 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 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); 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 `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` amount of tokens from `from` to `to`. * * 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. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` 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. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` 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 value) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol) pragma solidity ^0.8.20; /** * @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) { return msg.data; } }
{ "evmVersion": "paris", "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"initialSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"NotAnOwner","type":"error"},{"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":[],"name":"FEE_RECEIVER","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNISWAP_FACTORY","outputs":[{"internalType":"contract IUniFactory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNISWAP_ROUTER","outputs":[{"internalType":"contract IUniSwapV2Router","name":"","type":"address"}],"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":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"noFeeSellers","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"seller","type":"address"}],"name":"setNoFeeSeller","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":"value","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":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040526000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200005357600080fd5b5060405162002eea38038062002eea833981810160405281019062000079919062000c9f565b6040518060400160405280601e81526020017f457373656e7469616c6c79207468652042657374204f662054776565747300008152506040518060400160405280600481526020017f45424f54000000000000000000000000000000000000000000000000000000008152508160039081620000f6919062000f41565b50806004908162000108919062000f41565b5050503373ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505060016006600060805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200020333826200025160201b60201c565b6200024a30737a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620002de60201b60201c565b50620014e1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002c65760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401620002bd91906200106d565b60405180910390fd5b620002da60008383620002f860201b60201c565b5050565b620002f383838360016200063060201b60201c565b505050565b60008103156200062b57600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16148015620003a05750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b156200050157735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f73ffffffffffffffffffffffffffffffffffffffff1663e6a43905737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000436573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200045c9190620010bb565b306040518363ffffffff1660e01b81526004016200047c929190620010ed565b602060405180830381865afa1580156200049a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004c09190620010bb565b600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b60008273ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614905080156200061657600060c860078462000570919062001149565b6200057c9190620011c3565b9050600081118015620005d95750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156200061457620005f28530836200081060201b60201c565b620006038162000a4060201b60201c565b8083620006119190620011fb565b92505b505b620006298484846200081060201b60201c565b505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603620006a55760006040517fe602df050000000000000000000000000000000000000000000000000000000081526004016200069c91906200106d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200071a5760006040517f94280d620000000000000000000000000000000000000000000000000000000081526004016200071191906200106d565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080156200080a578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405162000801919062001247565b60405180910390a35b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200086657806002600082825462000859919062001264565b925050819055506200093c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015620008f5578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620008ec939291906200129f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620009875780600260008282540392505081905550620009d4565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a33919062001247565b60405180910390a3505050565b6000600267ffffffffffffffff81111562000a605762000a5f62000cdc565b5b60405190808252806020026020018201604052801562000a8f5781602001602082028036833780820191505090505b509050308160008151811062000aaa5762000aa9620012dc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000b44573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000b6a9190620010bb565b8160018151811062000b815762000b80620012dc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac94783600084734968a5dc556672bfdd91ffb545f94e56b8208f52426040518663ffffffff1660e01b815260040162000c279594939291906200147d565b600060405180830381600087803b15801562000c4257600080fd5b505af115801562000c57573d6000803e3d6000fd5b505050505050565b600080fd5b6000819050919050565b62000c798162000c64565b811462000c8557600080fd5b50565b60008151905062000c998162000c6e565b92915050565b60006020828403121562000cb85762000cb762000c5f565b5b600062000cc88482850162000c88565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000d5357607f821691505b60208210810362000d695762000d6862000d0b565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000dd37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000d94565b62000ddf868362000d94565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000e2262000e1c62000e168462000c64565b62000df7565b62000c64565b9050919050565b6000819050919050565b62000e3e8362000e01565b62000e5662000e4d8262000e29565b84845462000da1565b825550505050565b600090565b62000e6d62000e5e565b62000e7a81848462000e33565b505050565b5b8181101562000ea25762000e9660008262000e63565b60018101905062000e80565b5050565b601f82111562000ef15762000ebb8162000d6f565b62000ec68462000d84565b8101602085101562000ed6578190505b62000eee62000ee58562000d84565b83018262000e7f565b50505b505050565b600082821c905092915050565b600062000f166000198460080262000ef6565b1980831691505092915050565b600062000f31838362000f03565b9150826002028217905092915050565b62000f4c8262000cd1565b67ffffffffffffffff81111562000f685762000f6762000cdc565b5b62000f74825462000d3a565b62000f8182828562000ea6565b600060209050601f83116001811462000fb9576000841562000fa4578287015190505b62000fb0858262000f23565b86555062001020565b601f19841662000fc98662000d6f565b60005b8281101562000ff35784890151825560018201915060208501945060208101905062000fcc565b868310156200101357848901516200100f601f89168262000f03565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620010558262001028565b9050919050565b620010678162001048565b82525050565b60006020820190506200108460008301846200105c565b92915050565b620010958162001048565b8114620010a157600080fd5b50565b600081519050620010b5816200108a565b92915050565b600060208284031215620010d457620010d362000c5f565b5b6000620010e484828501620010a4565b91505092915050565b60006040820190506200110460008301856200105c565b6200111360208301846200105c565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620011568262000c64565b9150620011638362000c64565b9250828202620011738162000c64565b915082820484148315176200118d576200118c6200111a565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620011d08262000c64565b9150620011dd8362000c64565b925082620011f057620011ef62001194565b5b828204905092915050565b6000620012088262000c64565b9150620012158362000c64565b925082820390508181111562001230576200122f6200111a565b5b92915050565b620012418162000c64565b82525050565b60006020820190506200125e600083018462001236565b92915050565b6000620012718262000c64565b91506200127e8362000c64565b92508282019050808211156200129957620012986200111a565b5b92915050565b6000606082019050620012b660008301866200105c565b620012c5602083018562001236565b620012d4604083018462001236565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b600062001336620013306200132a846200130b565b62000df7565b62000c64565b9050919050565b620013488162001315565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b620013858162001048565b82525050565b60006200139983836200137a565b60208301905092915050565b6000602082019050919050565b6000620013bf826200134e565b620013cb818562001359565b9350620013d8836200136a565b8060005b838110156200140f578151620013f388826200138b565b97506200140083620013a5565b925050600181019050620013dc565b5085935050505092915050565b60006200143d62001437620014318462001028565b62000df7565b62001028565b9050919050565b600062001451826200141c565b9050919050565b6000620014658262001444565b9050919050565b620014778162001458565b82525050565b600060a08201905062001494600083018862001236565b620014a360208301876200133d565b8181036040830152620014b78186620013b2565b9050620014c860608301856200146c565b620014d7608083018462001236565b9695505050505050565b6080516119e662001504600039600081816103f6015261044a01526119e66000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c80638dfb7e721161008c578063c74c0fac11610066578063c74c0fac14610273578063d3e78e4d14610291578063d8264920146102af578063dd62ed3e146102cd576100ea565b80638dfb7e72146101f557806395d89b4114610225578063a9059cbb14610243576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b5780633c35b5e9146101a957806370a08231146101c5576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f76102fd565b6040516101049190611235565b60405180910390f35b610127600480360381019061012291906112f0565b61038f565b604051610134919061134b565b60405180910390f35b6101456103b2565b6040516101529190611375565b60405180910390f35b61017560048036038101906101709190611390565b6103bc565b604051610182919061134b565b60405180910390f35b6101936103eb565b6040516101a091906113ff565b60405180910390f35b6101c360048036038101906101be919061141a565b6103f4565b005b6101df60048036038101906101da919061141a565b610501565b6040516101ec9190611375565b60405180910390f35b61020f600480360381019061020a919061141a565b610549565b60405161021c919061134b565b60405180910390f35b61022d610569565b60405161023a9190611235565b60405180910390f35b61025d600480360381019061025891906112f0565b6105fb565b60405161026a919061134b565b60405180910390f35b61027b61061e565b60405161028891906114a6565b60405180910390f35b610299610636565b6040516102a691906114e2565b60405180910390f35b6102b761064e565b6040516102c4919061151e565b60405180910390f35b6102e760048036038101906102e29190611539565b610666565b6040516102f49190611375565b60405180910390f35b60606003805461030c906115a8565b80601f0160208091040260200160405190810160405280929190818152602001828054610338906115a8565b80156103855780601f1061035a57610100808354040283529160200191610385565b820191906000526020600020905b81548152906001019060200180831161036857829003601f168201915b5050505050905090565b60008061039a6106ed565b90506103a78185856106f5565b600191505092915050565b6000600254905090565b6000806103c76106ed565b90506103d4858285610707565b6103df85858561079b565b60019150509392505050565b60006012905090565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146104a657337f00000000000000000000000000000000000000000000000000000000000000006040517ff33b400e00000000000000000000000000000000000000000000000000000000815260040161049d9291906115e8565b60405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60066020528060005260406000206000915054906101000a900460ff1681565b606060048054610578906115a8565b80601f01602080910402602001604051908101604052809291908181526020018280546105a4906115a8565b80156105f15780601f106105c6576101008083540402835291602001916105f1565b820191906000526020600020905b8154815290600101906020018083116105d457829003601f168201915b5050505050905090565b6000806106066106ed565b905061061381858561079b565b600191505092915050565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f81565b734968a5dc556672bfdd91ffb545f94e56b8208f5281565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b610702838383600161088f565b505050565b60006107138484610666565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107955781811015610785578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161077c93929190611611565b60405180910390fd5b6107948484848403600061088f565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361080d5760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016108049190611648565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361087f5760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016108769190611648565b60405180910390fd5b61088a838383610a66565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036109015760006040517fe602df050000000000000000000000000000000000000000000000000000000081526004016108f89190611648565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109735760006040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161096a9190611648565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015610a60578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610a579190611375565b60405180910390a35b50505050565b6000810315610d6d57600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16148015610b0c5750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b15610c6457735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f73ffffffffffffffffffffffffffffffffffffffff1663e6a43905737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ba0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bc49190611678565b306040518363ffffffff1660e01b8152600401610be29291906115e8565b602060405180830381865afa158015610bff573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c239190611678565b600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b60008273ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161490508015610d6057600060c8600784610cd091906116d4565b610cda9190611745565b9050600081118015610d365750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15610d5e57610d46853083610d72565b610d4f81610f97565b8083610d5b9190611776565b92505b505b610d6b848484610d72565b505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dc4578060026000828254610db891906117aa565b92505081905550610e97565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e50578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610e4793929190611611565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ee05780600260008282540392505081905550610f2d565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610f8a9190611375565b60405180910390a3505050565b6000600267ffffffffffffffff811115610fb457610fb36117de565b5b604051908082528060200260200182016040528015610fe25781602001602082028036833780820191505090505b5090503081600081518110610ffa57610ff961180d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611093573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110b79190611678565b816001815181106110cb576110ca61180d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac94783600084734968a5dc556672bfdd91ffb545f94e56b8208f52426040518663ffffffff1660e01b815260040161116f959493929190611956565b600060405180830381600087803b15801561118957600080fd5b505af115801561119d573d6000803e3d6000fd5b505050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111df5780820151818401526020810190506111c4565b60008484015250505050565b6000601f19601f8301169050919050565b6000611207826111a5565b61121181856111b0565b93506112218185602086016111c1565b61122a816111eb565b840191505092915050565b6000602082019050818103600083015261124f81846111fc565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112878261125c565b9050919050565b6112978161127c565b81146112a257600080fd5b50565b6000813590506112b48161128e565b92915050565b6000819050919050565b6112cd816112ba565b81146112d857600080fd5b50565b6000813590506112ea816112c4565b92915050565b6000806040838503121561130757611306611257565b5b6000611315858286016112a5565b9250506020611326858286016112db565b9150509250929050565b60008115159050919050565b61134581611330565b82525050565b6000602082019050611360600083018461133c565b92915050565b61136f816112ba565b82525050565b600060208201905061138a6000830184611366565b92915050565b6000806000606084860312156113a9576113a8611257565b5b60006113b7868287016112a5565b93505060206113c8868287016112a5565b92505060406113d9868287016112db565b9150509250925092565b600060ff82169050919050565b6113f9816113e3565b82525050565b600060208201905061141460008301846113f0565b92915050565b6000602082840312156114305761142f611257565b5b600061143e848285016112a5565b91505092915050565b6000819050919050565b600061146c6114676114628461125c565b611447565b61125c565b9050919050565b600061147e82611451565b9050919050565b600061149082611473565b9050919050565b6114a081611485565b82525050565b60006020820190506114bb6000830184611497565b92915050565b60006114cc8261125c565b9050919050565b6114dc816114c1565b82525050565b60006020820190506114f760008301846114d3565b92915050565b600061150882611473565b9050919050565b611518816114fd565b82525050565b6000602082019050611533600083018461150f565b92915050565b600080604083850312156115505761154f611257565b5b600061155e858286016112a5565b925050602061156f858286016112a5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806115c057607f821691505b6020821081036115d3576115d2611579565b5b50919050565b6115e28161127c565b82525050565b60006040820190506115fd60008301856115d9565b61160a60208301846115d9565b9392505050565b600060608201905061162660008301866115d9565b6116336020830185611366565b6116406040830184611366565b949350505050565b600060208201905061165d60008301846115d9565b92915050565b6000815190506116728161128e565b92915050565b60006020828403121561168e5761168d611257565b5b600061169c84828501611663565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006116df826112ba565b91506116ea836112ba565b92508282026116f8816112ba565b9150828204841483151761170f5761170e6116a5565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611750826112ba565b915061175b836112ba565b92508261176b5761176a611716565b5b828204905092915050565b6000611781826112ba565b915061178c836112ba565b92508282039050818111156117a4576117a36116a5565b5b92915050565b60006117b5826112ba565b91506117c0836112ba565b92508282019050808211156117d8576117d76116a5565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b600061186161185c6118578461183c565b611447565b6112ba565b9050919050565b61187181611846565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6118ac8161127c565b82525050565b60006118be83836118a3565b60208301905092915050565b6000602082019050919050565b60006118e282611877565b6118ec8185611882565b93506118f783611893565b8060005b8381101561192857815161190f88826118b2565b975061191a836118ca565b9250506001810190506118fb565b5085935050505092915050565b600061194082611473565b9050919050565b61195081611935565b82525050565b600060a08201905061196b6000830188611366565b6119786020830187611868565b818103604083015261198a81866118d7565b90506119996060830185611947565b6119a66080830184611366565b969550505050505056fea26469706673582212204fd38022ad30478c6cc1e0e270a69d7d0a3470d4f91f73b931779b7ee1bfd42e64736f6c634300081400330000000000000000000000000000000000000000015b6a759f4835dc24000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c80638dfb7e721161008c578063c74c0fac11610066578063c74c0fac14610273578063d3e78e4d14610291578063d8264920146102af578063dd62ed3e146102cd576100ea565b80638dfb7e72146101f557806395d89b4114610225578063a9059cbb14610243576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b5780633c35b5e9146101a957806370a08231146101c5576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f76102fd565b6040516101049190611235565b60405180910390f35b610127600480360381019061012291906112f0565b61038f565b604051610134919061134b565b60405180910390f35b6101456103b2565b6040516101529190611375565b60405180910390f35b61017560048036038101906101709190611390565b6103bc565b604051610182919061134b565b60405180910390f35b6101936103eb565b6040516101a091906113ff565b60405180910390f35b6101c360048036038101906101be919061141a565b6103f4565b005b6101df60048036038101906101da919061141a565b610501565b6040516101ec9190611375565b60405180910390f35b61020f600480360381019061020a919061141a565b610549565b60405161021c919061134b565b60405180910390f35b61022d610569565b60405161023a9190611235565b60405180910390f35b61025d600480360381019061025891906112f0565b6105fb565b60405161026a919061134b565b60405180910390f35b61027b61061e565b60405161028891906114a6565b60405180910390f35b610299610636565b6040516102a691906114e2565b60405180910390f35b6102b761064e565b6040516102c4919061151e565b60405180910390f35b6102e760048036038101906102e29190611539565b610666565b6040516102f49190611375565b60405180910390f35b60606003805461030c906115a8565b80601f0160208091040260200160405190810160405280929190818152602001828054610338906115a8565b80156103855780601f1061035a57610100808354040283529160200191610385565b820191906000526020600020905b81548152906001019060200180831161036857829003601f168201915b5050505050905090565b60008061039a6106ed565b90506103a78185856106f5565b600191505092915050565b6000600254905090565b6000806103c76106ed565b90506103d4858285610707565b6103df85858561079b565b60019150509392505050565b60006012905090565b7f000000000000000000000000dec274280231931c4290e460ac244bc7abe5e2ec73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146104a657337f000000000000000000000000dec274280231931c4290e460ac244bc7abe5e2ec6040517ff33b400e00000000000000000000000000000000000000000000000000000000815260040161049d9291906115e8565b60405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60066020528060005260406000206000915054906101000a900460ff1681565b606060048054610578906115a8565b80601f01602080910402602001604051908101604052809291908181526020018280546105a4906115a8565b80156105f15780601f106105c6576101008083540402835291602001916105f1565b820191906000526020600020905b8154815290600101906020018083116105d457829003601f168201915b5050505050905090565b6000806106066106ed565b905061061381858561079b565b600191505092915050565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f81565b734968a5dc556672bfdd91ffb545f94e56b8208f5281565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b610702838383600161088f565b505050565b60006107138484610666565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107955781811015610785578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161077c93929190611611565b60405180910390fd5b6107948484848403600061088f565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361080d5760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016108049190611648565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361087f5760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016108769190611648565b60405180910390fd5b61088a838383610a66565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036109015760006040517fe602df050000000000000000000000000000000000000000000000000000000081526004016108f89190611648565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109735760006040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161096a9190611648565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015610a60578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610a579190611375565b60405180910390a35b50505050565b6000810315610d6d57600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16148015610b0c5750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b15610c6457735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f73ffffffffffffffffffffffffffffffffffffffff1663e6a43905737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ba0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bc49190611678565b306040518363ffffffff1660e01b8152600401610be29291906115e8565b602060405180830381865afa158015610bff573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c239190611678565b600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b60008273ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161490508015610d6057600060c8600784610cd091906116d4565b610cda9190611745565b9050600081118015610d365750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15610d5e57610d46853083610d72565b610d4f81610f97565b8083610d5b9190611776565b92505b505b610d6b848484610d72565b505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dc4578060026000828254610db891906117aa565b92505081905550610e97565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e50578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610e4793929190611611565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ee05780600260008282540392505081905550610f2d565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610f8a9190611375565b60405180910390a3505050565b6000600267ffffffffffffffff811115610fb457610fb36117de565b5b604051908082528060200260200182016040528015610fe25781602001602082028036833780820191505090505b5090503081600081518110610ffa57610ff961180d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611093573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110b79190611678565b816001815181106110cb576110ca61180d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac94783600084734968a5dc556672bfdd91ffb545f94e56b8208f52426040518663ffffffff1660e01b815260040161116f959493929190611956565b600060405180830381600087803b15801561118957600080fd5b505af115801561119d573d6000803e3d6000fd5b505050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111df5780820151818401526020810190506111c4565b60008484015250505050565b6000601f19601f8301169050919050565b6000611207826111a5565b61121181856111b0565b93506112218185602086016111c1565b61122a816111eb565b840191505092915050565b6000602082019050818103600083015261124f81846111fc565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112878261125c565b9050919050565b6112978161127c565b81146112a257600080fd5b50565b6000813590506112b48161128e565b92915050565b6000819050919050565b6112cd816112ba565b81146112d857600080fd5b50565b6000813590506112ea816112c4565b92915050565b6000806040838503121561130757611306611257565b5b6000611315858286016112a5565b9250506020611326858286016112db565b9150509250929050565b60008115159050919050565b61134581611330565b82525050565b6000602082019050611360600083018461133c565b92915050565b61136f816112ba565b82525050565b600060208201905061138a6000830184611366565b92915050565b6000806000606084860312156113a9576113a8611257565b5b60006113b7868287016112a5565b93505060206113c8868287016112a5565b92505060406113d9868287016112db565b9150509250925092565b600060ff82169050919050565b6113f9816113e3565b82525050565b600060208201905061141460008301846113f0565b92915050565b6000602082840312156114305761142f611257565b5b600061143e848285016112a5565b91505092915050565b6000819050919050565b600061146c6114676114628461125c565b611447565b61125c565b9050919050565b600061147e82611451565b9050919050565b600061149082611473565b9050919050565b6114a081611485565b82525050565b60006020820190506114bb6000830184611497565b92915050565b60006114cc8261125c565b9050919050565b6114dc816114c1565b82525050565b60006020820190506114f760008301846114d3565b92915050565b600061150882611473565b9050919050565b611518816114fd565b82525050565b6000602082019050611533600083018461150f565b92915050565b600080604083850312156115505761154f611257565b5b600061155e858286016112a5565b925050602061156f858286016112a5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806115c057607f821691505b6020821081036115d3576115d2611579565b5b50919050565b6115e28161127c565b82525050565b60006040820190506115fd60008301856115d9565b61160a60208301846115d9565b9392505050565b600060608201905061162660008301866115d9565b6116336020830185611366565b6116406040830184611366565b949350505050565b600060208201905061165d60008301846115d9565b92915050565b6000815190506116728161128e565b92915050565b60006020828403121561168e5761168d611257565b5b600061169c84828501611663565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006116df826112ba565b91506116ea836112ba565b92508282026116f8816112ba565b9150828204841483151761170f5761170e6116a5565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611750826112ba565b915061175b836112ba565b92508261176b5761176a611716565b5b828204905092915050565b6000611781826112ba565b915061178c836112ba565b92508282039050818111156117a4576117a36116a5565b5b92915050565b60006117b5826112ba565b91506117c0836112ba565b92508282019050808211156117d8576117d76116a5565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b600061186161185c6118578461183c565b611447565b6112ba565b9050919050565b61187181611846565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6118ac8161127c565b82525050565b60006118be83836118a3565b60208301905092915050565b6000602082019050919050565b60006118e282611877565b6118ec8185611882565b93506118f783611893565b8060005b8381101561192857815161190f88826118b2565b975061191a836118ca565b9250506001810190506118fb565b5085935050505092915050565b600061194082611473565b9050919050565b61195081611935565b82525050565b600060a08201905061196b6000830188611366565b6119786020830187611868565b818103604083015261198a81866118d7565b90506119996060830185611947565b6119a66080830184611366565b969550505050505056fea26469706673582212204fd38022ad30478c6cc1e0e270a69d7d0a3470d4f91f73b931779b7ee1bfd42e64736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000015b6a759f4835dc24000000
-----Decoded View---------------
Arg [0] : initialSupply (uint256): 420000000000000000000000000
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000015b6a759f4835dc24000000
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.