Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Environment
Overview
Max Total Supply
39,989,931.53742574 CBY
Holders
680 (0.00%)
Market
Price
$1.07 @ 0.000268 ETH (+2.18%)
Onchain Market Cap
$42,909,196.54
Circulating Supply Market Cap
$10,562,387.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
486.602408885971504343 CBYValue
$522.12 ( ~0.130290544845343 Eth) [0.0012%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CbyEth
Compiler Version
v0.8.13+commit.abaa5c0e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.13; 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 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 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); } 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); } contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @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(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @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, allowance(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 = allowance(owner, spender); require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `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. * * 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); uint256 fromBalance = _balances[from]; require( fromBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _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; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _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; // Overflow not possible: amount <= accountBalance <= totalSupply. _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 Updates `owner` s allowance for `spender` based on spent `amount`. * * 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 {} } contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); constructor() { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } function owner() public view returns (address) { return _owner; } modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } function renounceOwnership() external virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } contract CbyEth is ERC20 { event SetPair(address indexed, bool indexed); event SetRouter(address indexed, bool indexed); event SetWhiteList(address indexed, bool indexed); address public owner; // Mapping for router and pair addresses mapping(address => bool) private isPair; mapping(address => bool) private isRouter; // Tax white list mapping (Liquidity Providers) mapping(address => bool) private isWhitelisted; // Equivalent to 2 percent. the last 2 0s is added to change the fee to 2 digit decimal in future if required uint256 public buyFees = 200; // = 2 percent uint256 public sellFees = 200; // Company's treasury wallet address public TREASURY_WALLET = 0x6D12d1E76eac827228F19EFd531914Df78B5BEBc; // MAX TAX PERCENTAGE = 2% uint256 constant MAX_TAX = 200; modifier onlyOwner() { require( _msgSender() == owner, "Only the contract owner can call this function." ); _; } modifier addrNotNull(address addr) { require(addr != address(0), "Address parameter cannot be null."); _; } /** * @dev Initializes the contract with an initial supply of tokens and sets the contract owner as the initial token holder. * @param totalSupply The total supply of tokens to mint and assign to the contract owner. * @notice The contract owner will be added to the whitelist automatically upon initialization. */ constructor( uint256 totalSupply, address vaultAddress ) ERC20("Carbify", "CBY") { _mint(vaultAddress, totalSupply); owner = _msgSender(); isWhitelisted[owner] = true; } /** * @dev Sets the status of a pair address. * @param addr The address of the pair to set the status for. * @param status The status to set for the pair address. * @notice Only the contract owner can call this function. * @notice The pair address must not be null. * @notice Emits a {SetPair} event with the updated pair address and status. */ function setPairAddress( address addr, bool status ) external onlyOwner addrNotNull(addr) { isPair[addr] = status; emit SetPair(addr, status); } /** * @dev Returns true if the given address is a pair address, false otherwise. * @param addr The address to check. * @return A boolean indicating whether the address is a pair address or not. */ function isPairAddress(address addr) external view returns (bool) { return isPair[addr]; } /** * @dev Sets the status of a router address. * @param addr The address of the router to set the status for. * @param status The status to set for the router address. * @notice Only the contract owner can call this function. * @notice The router address must not be null. * @notice Emits a {SetRouter} event with the updated router address and status. */ function setRouterAddress( address addr, bool status ) external onlyOwner addrNotNull(addr) { isRouter[addr] = status; emit SetRouter(addr, status); } /** * @dev Returns true if the given address is a router address, false otherwise. * @param addr The address to check. * @return A boolean indicating whether the address is a router address or not. */ function isRouterAddress(address addr) external view returns (bool) { return isRouter[addr]; } /** * @dev Sets the status of a whitelist address. * @param addr The address of the whitelist to set the status for. * @param status The status to set for the whitelist address. * @notice Only the contract owner can call this function. * @notice The whitelist address must not be null. * @notice Emits a {SetWhiteList} event with the updated whitelist address and status. */ function setWhiteListAddress( address addr, bool status ) external onlyOwner addrNotNull(addr) { isWhitelisted[addr] = status; emit SetWhiteList(addr, status); } /** * @dev Returns a boolean indicating whether an address is whitelisted. * @param addr The address to check. * @return A boolean indicating whether the address is whitelisted or not. */ function isWhitelistAddress(address addr) external view returns (bool) { return isWhitelisted[addr]; } /** * @dev Change the treasury wallet address to a new wallet address. * @param addr The address of new treasury wallet. * @notice Only the contract owner can call this function. */ function setTreasuryWallet(address addr) external onlyOwner addrNotNull(addr) { TREASURY_WALLET = addr; } /** * @dev Sets the buy fees percentage. * @param amount The new buy fees percentage. * @notice Only the contract owner can call this function. * @notice The entered amount must not exceed the MAX_TAX limit. */ function setBuyPercentage(uint256 amount) external onlyOwner { require(amount <= MAX_TAX, "Entered amount exceeds MAX Tax Limit."); buyFees = amount; } /** * @dev Sets the sell fees percentage. * @param amount The new sell fees percentage. * @notice Only the contract owner can call this function. * @notice The entered amount must not exceed the MAX_TAX limit. */ function setSellPercentage(uint256 amount) external onlyOwner { require(amount <= MAX_TAX, "Entered amount exceeds MAX Tax Limit."); sellFees = amount; } /** * @dev Transfers tokens from the sender's account to another account with a 2% fee added for buy and sell transactions on DEX. * @param to The address to transfer the tokens to. * @param amount The amount of tokens to transfer. * @return A boolean indicating whether the transfer was successful. * @notice Only addresses that are not whitelisted and are a pair or router on the DEX will be charged the fee. */ function transfer( address to, uint256 amount ) public override returns (bool) { uint256 fee = 0; bool excludedAccount = isWhitelisted[_msgSender()] || isWhitelisted[to]; if (!excludedAccount) { if (isPair[_msgSender()] || isRouter[_msgSender()]) { fee = (buyFees * amount) / 10000; if (fee > 0) { _transfer(_msgSender(), TREASURY_WALLET, fee); } } } _transfer(_msgSender(), to, amount - fee); return true; } /** * @dev Allows a spender to transfer tokens from the specified owner's account to another account with a 2% fee added for sell transactions on DEX. * @param from The address of the owner of the tokens. * @param to The address to transfer the tokens to. * @param amount The amount of tokens to transfer. * @return A boolean indicating whether the transfer was successful. * @notice Only addresses that are not whitelisted and are a router on the DEX and the recipient address is a pair on the DEX will be charged the fee. */ function transferFrom( address from, address to, uint256 amount ) public override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); uint256 fee = 0; bool excludedAccount = isWhitelisted[from] || isWhitelisted[to]; if (!excludedAccount) { if (isRouter[_msgSender()] && isPair[to]) { fee = (sellFees * amount) / 10000; if (fee > 0) { _transfer(from, TREASURY_WALLET, fee); } } } _transfer(from, to, amount - fee); return true; } function burn(uint256 amount) external { _burn(_msgSender(), amount); } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"totalSupply","type":"uint256"},{"internalType":"address","name":"vaultAddress","type":"address"}],"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":"","type":"address"},{"indexed":true,"internalType":"bool","name":"","type":"bool"}],"name":"SetPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"","type":"address"},{"indexed":true,"internalType":"bool","name":"","type":"bool"}],"name":"SetRouter","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"","type":"address"},{"indexed":true,"internalType":"bool","name":"","type":"bool"}],"name":"SetWhiteList","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":"TREASURY_WALLET","outputs":[{"internalType":"address","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":"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isPairAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isRouterAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isWhitelistAddress","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":"sellFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setBuyPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"setPairAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"setRouterAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSellPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"setTreasuryWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"setWhiteListAddress","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"}]
Contract Creation Code
608060405260c860095560c8600a55736d12d1e76eac827228f19efd531914df78b5bebc600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200007057600080fd5b5060405162002f3838038062002f388339818101604052810190620000969190620004ee565b6040518060400160405280600781526020017f43617262696679000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f434259000000000000000000000000000000000000000000000000000000000081525081600390805190602001906200011a92919062000399565b5080600490805190602001906200013392919062000399565b5050506200014881836200021a60201b60201c565b620001586200038760201b60201c565b600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160086000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050620006d6565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200028c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002839062000596565b60405180910390fd5b620002a0600083836200038f60201b60201c565b8060026000828254620002b49190620005e7565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000367919062000655565b60405180910390a362000383600083836200039460201b60201c565b5050565b600033905090565b505050565b505050565b828054620003a790620006a1565b90600052602060002090601f016020900481019282620003cb576000855562000417565b82601f10620003e657805160ff191683800117855562000417565b8280016001018555821562000417579182015b8281111562000416578251825591602001919060010190620003f9565b5b5090506200042691906200042a565b5090565b5b80821115620004455760008160009055506001016200042b565b5090565b600080fd5b6000819050919050565b62000463816200044e565b81146200046f57600080fd5b50565b600081519050620004838162000458565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620004b68262000489565b9050919050565b620004c881620004a9565b8114620004d457600080fd5b50565b600081519050620004e881620004bd565b92915050565b6000806040838503121562000508576200050762000449565b5b6000620005188582860162000472565b92505060206200052b85828601620004d7565b9150509250929050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200057e601f8362000535565b91506200058b8262000546565b602082019050919050565b60006020820190508181036000830152620005b1816200056f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620005f4826200044e565b915062000601836200044e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620006395762000638620005b8565b5b828201905092915050565b6200064f816200044e565b82525050565b60006020820190506200066c600083018462000644565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006ba57607f821691505b602082108103620006d057620006cf62000672565b5b50919050565b61285280620006e66000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c806395d89b41116100de578063d7aed24511610097578063e4748b9e11610071578063e4748b9e14610472578063e4a86a9914610490578063e59f6b2d146104ac578063f5573875146104dc57610173565b8063d7aed245146103f4578063dd62ed3e14610424578063e0f3ccf51461045457610173565b806395d89b41146103225780639f838f0b14610340578063a457c2d71461035c578063a8602fea1461038c578063a9059cbb146103a8578063c3803660146103d857610173565b80633950935111610130578063395093511461024e57806340facd241461027e57806342966c681461029a5780635daf3146146102b657806370a08231146102d45780638da5cb5b1461030457610173565b806306fdde0314610178578063095ea7b31461019657806318160ddd146101c657806323b872dd146101e457806328ffe65c14610214578063313ce56714610230575b600080fd5b61018061050c565b60405161018d9190611c82565b60405180910390f35b6101b060048036038101906101ab9190611d3d565b61059e565b6040516101bd9190611d98565b60405180910390f35b6101ce6105c1565b6040516101db9190611dc2565b60405180910390f35b6101fe60048036038101906101f99190611ddd565b6105cb565b60405161020b9190611d98565b60405180910390f35b61022e60048036038101906102299190611e5c565b6107b6565b005b61023861095f565b6040516102459190611eb8565b60405180910390f35b61026860048036038101906102639190611d3d565b610968565b6040516102759190611d98565b60405180910390f35b61029860048036038101906102939190611ed3565b61099f565b005b6102b460048036038101906102af9190611ed3565b610a84565b005b6102be610a98565b6040516102cb9190611f0f565b60405180910390f35b6102ee60048036038101906102e99190611f2a565b610abe565b6040516102fb9190611dc2565b60405180910390f35b61030c610b06565b6040516103199190611f0f565b60405180910390f35b61032a610b2c565b6040516103379190611c82565b60405180910390f35b61035a60048036038101906103559190611ed3565b610bbe565b005b61037660048036038101906103719190611d3d565b610ca3565b6040516103839190611d98565b60405180910390f35b6103a660048036038101906103a19190611f2a565b610d1a565b005b6103c260048036038101906103bd9190611d3d565b610e66565b6040516103cf9190611d98565b60405180910390f35b6103f260048036038101906103ed9190611e5c565b611058565b005b61040e60048036038101906104099190611f2a565b611201565b60405161041b9190611d98565b60405180910390f35b61043e60048036038101906104399190611f57565b611257565b60405161044b9190611dc2565b60405180910390f35b61045c6112de565b6040516104699190611dc2565b60405180910390f35b61047a6112e4565b6040516104879190611dc2565b60405180910390f35b6104aa60048036038101906104a59190611e5c565b6112ea565b005b6104c660048036038101906104c19190611f2a565b611493565b6040516104d39190611d98565b60405180910390f35b6104f660048036038101906104f19190611f2a565b6114e9565b6040516105039190611d98565b60405180910390f35b60606003805461051b90611fc6565b80601f016020809104026020016040519081016040528092919081815260200182805461054790611fc6565b80156105945780601f1061056957610100808354040283529160200191610594565b820191906000526020600020905b81548152906001019060200180831161057757829003601f168201915b5050505050905090565b6000806105a961153f565b90506105b6818585611547565b600191505092915050565b6000600254905090565b6000806105d661153f565b90506105e3858285611710565b600080600860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806106875750600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b905080610792576007600061069a61153f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156107375750600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156107915761271085600a5461074d9190612026565b61075791906120af565b915060008211156107905761078f87600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461179c565b5b5b5b6107a8878784886107a391906120e0565b61179c565b600193505050509392505050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166107f761153f565b73ffffffffffffffffffffffffffffffffffffffff161461084d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084490612186565b60405180910390fd5b81600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b490612218565b60405180910390fd5b81600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508115158373ffffffffffffffffffffffffffffffffffffffff167f09b50446349d7fd45dbe59f55204a44404c2adf607c59e9420b87535ed2454b160405160405180910390a3505050565b60006012905090565b60008061097361153f565b90506109948185856109858589611257565b61098f9190612238565b611547565b600191505092915050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166109e061153f565b73ffffffffffffffffffffffffffffffffffffffff1614610a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2d90612186565b60405180910390fd5b60c8811115610a7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7190612300565b60405180910390fd5b80600a8190555050565b610a95610a8f61153f565b82611a12565b50565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060048054610b3b90611fc6565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6790611fc6565b8015610bb45780601f10610b8957610100808354040283529160200191610bb4565b820191906000526020600020905b815481529060010190602001808311610b9757829003601f168201915b5050505050905090565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610bff61153f565b73ffffffffffffffffffffffffffffffffffffffff1614610c55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4c90612186565b60405180910390fd5b60c8811115610c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9090612300565b60405180910390fd5b8060098190555050565b600080610cae61153f565b90506000610cbc8286611257565b905083811015610d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf890612392565b60405180910390fd5b610d0e8286868403611547565b60019250505092915050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610d5b61153f565b73ffffffffffffffffffffffffffffffffffffffff1614610db1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da890612186565b60405180910390fd5b80600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1890612218565b60405180910390fd5b81600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b60008060009050600060086000610e7b61153f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610f175750600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b90508061102f5760066000610f2a61153f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610fcd575060076000610f8461153f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561102e5761271084600954610fe39190612026565b610fed91906120af565b9150600082111561102d5761102c61100361153f565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461179c565b5b5b5b61104c61103a61153f565b86848761104791906120e0565b61179c565b60019250505092915050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661109961153f565b73ffffffffffffffffffffffffffffffffffffffff16146110ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e690612186565b60405180910390fd5b81600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361115f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115690612218565b60405180910390fd5b81600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508115158373ffffffffffffffffffffffffffffffffffffffff167ff40a563af144a84735f7f6c7c3029794b0ac17713e5f048d3fd00ed85aa4ca7a60405160405180910390a3505050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b60095481565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661132b61153f565b73ffffffffffffffffffffffffffffffffffffffff1614611381576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137890612186565b60405180910390fd5b81600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036113f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e890612218565b60405180910390fd5b81600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508115158373ffffffffffffffffffffffffffffffffffffffff167ffd813a33bba8e3b5e540229e266ccd9c045fd61bcb50873786f1bede0ddad36760405160405180910390a3505050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036115b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ad90612424565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161c906124b6565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516117039190611dc2565b60405180910390a3505050565b600061171c8484611257565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146117965781811015611788576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177f90612522565b60405180910390fd5b6117958484848403611547565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361180b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611802906125b4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361187a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187190612646565b60405180910390fd5b611885838383611bdf565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561190b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611902906126d8565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119f99190611dc2565b60405180910390a3611a0c848484611be4565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a789061276a565b60405180910390fd5b611a8d82600083611bdf565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0a906127fc565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611bc69190611dc2565b60405180910390a3611bda83600084611be4565b505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611c23578082015181840152602081019050611c08565b83811115611c32576000848401525b50505050565b6000601f19601f8301169050919050565b6000611c5482611be9565b611c5e8185611bf4565b9350611c6e818560208601611c05565b611c7781611c38565b840191505092915050565b60006020820190508181036000830152611c9c8184611c49565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611cd482611ca9565b9050919050565b611ce481611cc9565b8114611cef57600080fd5b50565b600081359050611d0181611cdb565b92915050565b6000819050919050565b611d1a81611d07565b8114611d2557600080fd5b50565b600081359050611d3781611d11565b92915050565b60008060408385031215611d5457611d53611ca4565b5b6000611d6285828601611cf2565b9250506020611d7385828601611d28565b9150509250929050565b60008115159050919050565b611d9281611d7d565b82525050565b6000602082019050611dad6000830184611d89565b92915050565b611dbc81611d07565b82525050565b6000602082019050611dd76000830184611db3565b92915050565b600080600060608486031215611df657611df5611ca4565b5b6000611e0486828701611cf2565b9350506020611e1586828701611cf2565b9250506040611e2686828701611d28565b9150509250925092565b611e3981611d7d565b8114611e4457600080fd5b50565b600081359050611e5681611e30565b92915050565b60008060408385031215611e7357611e72611ca4565b5b6000611e8185828601611cf2565b9250506020611e9285828601611e47565b9150509250929050565b600060ff82169050919050565b611eb281611e9c565b82525050565b6000602082019050611ecd6000830184611ea9565b92915050565b600060208284031215611ee957611ee8611ca4565b5b6000611ef784828501611d28565b91505092915050565b611f0981611cc9565b82525050565b6000602082019050611f246000830184611f00565b92915050565b600060208284031215611f4057611f3f611ca4565b5b6000611f4e84828501611cf2565b91505092915050565b60008060408385031215611f6e57611f6d611ca4565b5b6000611f7c85828601611cf2565b9250506020611f8d85828601611cf2565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611fde57607f821691505b602082108103611ff157611ff0611f97565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061203182611d07565b915061203c83611d07565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561207557612074611ff7565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006120ba82611d07565b91506120c583611d07565b9250826120d5576120d4612080565b5b828204905092915050565b60006120eb82611d07565b91506120f683611d07565b92508282101561210957612108611ff7565b5b828203905092915050565b7f4f6e6c792074686520636f6e7472616374206f776e65722063616e2063616c6c60008201527f20746869732066756e6374696f6e2e0000000000000000000000000000000000602082015250565b6000612170602f83611bf4565b915061217b82612114565b604082019050919050565b6000602082019050818103600083015261219f81612163565b9050919050565b7f4164647265737320706172616d657465722063616e6e6f74206265206e756c6c60008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b6000612202602183611bf4565b915061220d826121a6565b604082019050919050565b60006020820190508181036000830152612231816121f5565b9050919050565b600061224382611d07565b915061224e83611d07565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561228357612282611ff7565b5b828201905092915050565b7f456e746572656420616d6f756e742065786365656473204d415820546178204c60008201527f696d69742e000000000000000000000000000000000000000000000000000000602082015250565b60006122ea602583611bf4565b91506122f58261228e565b604082019050919050565b60006020820190508181036000830152612319816122dd565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061237c602583611bf4565b915061238782612320565b604082019050919050565b600060208201905081810360008301526123ab8161236f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061240e602483611bf4565b9150612419826123b2565b604082019050919050565b6000602082019050818103600083015261243d81612401565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006124a0602283611bf4565b91506124ab82612444565b604082019050919050565b600060208201905081810360008301526124cf81612493565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061250c601d83611bf4565b9150612517826124d6565b602082019050919050565b6000602082019050818103600083015261253b816124ff565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061259e602583611bf4565b91506125a982612542565b604082019050919050565b600060208201905081810360008301526125cd81612591565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612630602383611bf4565b915061263b826125d4565b604082019050919050565b6000602082019050818103600083015261265f81612623565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006126c2602683611bf4565b91506126cd82612666565b604082019050919050565b600060208201905081810360008301526126f1816126b5565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612754602183611bf4565b915061275f826126f8565b604082019050919050565b6000602082019050818103600083015261278381612747565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006127e6602283611bf4565b91506127f18261278a565b604082019050919050565b60006020820190508181036000830152612815816127d9565b905091905056fea26469706673582212201b8ff492db55873cee638b1ff00dbf3932d06c693130352afdeb894c31a21e1c64736f6c634300080d0033000000000000000000000000000000000000000000295be96e64066972000000000000000000000000000000e4b219d3775e5be63c1eb50abafda0b447ab0af1
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101735760003560e01c806395d89b41116100de578063d7aed24511610097578063e4748b9e11610071578063e4748b9e14610472578063e4a86a9914610490578063e59f6b2d146104ac578063f5573875146104dc57610173565b8063d7aed245146103f4578063dd62ed3e14610424578063e0f3ccf51461045457610173565b806395d89b41146103225780639f838f0b14610340578063a457c2d71461035c578063a8602fea1461038c578063a9059cbb146103a8578063c3803660146103d857610173565b80633950935111610130578063395093511461024e57806340facd241461027e57806342966c681461029a5780635daf3146146102b657806370a08231146102d45780638da5cb5b1461030457610173565b806306fdde0314610178578063095ea7b31461019657806318160ddd146101c657806323b872dd146101e457806328ffe65c14610214578063313ce56714610230575b600080fd5b61018061050c565b60405161018d9190611c82565b60405180910390f35b6101b060048036038101906101ab9190611d3d565b61059e565b6040516101bd9190611d98565b60405180910390f35b6101ce6105c1565b6040516101db9190611dc2565b60405180910390f35b6101fe60048036038101906101f99190611ddd565b6105cb565b60405161020b9190611d98565b60405180910390f35b61022e60048036038101906102299190611e5c565b6107b6565b005b61023861095f565b6040516102459190611eb8565b60405180910390f35b61026860048036038101906102639190611d3d565b610968565b6040516102759190611d98565b60405180910390f35b61029860048036038101906102939190611ed3565b61099f565b005b6102b460048036038101906102af9190611ed3565b610a84565b005b6102be610a98565b6040516102cb9190611f0f565b60405180910390f35b6102ee60048036038101906102e99190611f2a565b610abe565b6040516102fb9190611dc2565b60405180910390f35b61030c610b06565b6040516103199190611f0f565b60405180910390f35b61032a610b2c565b6040516103379190611c82565b60405180910390f35b61035a60048036038101906103559190611ed3565b610bbe565b005b61037660048036038101906103719190611d3d565b610ca3565b6040516103839190611d98565b60405180910390f35b6103a660048036038101906103a19190611f2a565b610d1a565b005b6103c260048036038101906103bd9190611d3d565b610e66565b6040516103cf9190611d98565b60405180910390f35b6103f260048036038101906103ed9190611e5c565b611058565b005b61040e60048036038101906104099190611f2a565b611201565b60405161041b9190611d98565b60405180910390f35b61043e60048036038101906104399190611f57565b611257565b60405161044b9190611dc2565b60405180910390f35b61045c6112de565b6040516104699190611dc2565b60405180910390f35b61047a6112e4565b6040516104879190611dc2565b60405180910390f35b6104aa60048036038101906104a59190611e5c565b6112ea565b005b6104c660048036038101906104c19190611f2a565b611493565b6040516104d39190611d98565b60405180910390f35b6104f660048036038101906104f19190611f2a565b6114e9565b6040516105039190611d98565b60405180910390f35b60606003805461051b90611fc6565b80601f016020809104026020016040519081016040528092919081815260200182805461054790611fc6565b80156105945780601f1061056957610100808354040283529160200191610594565b820191906000526020600020905b81548152906001019060200180831161057757829003601f168201915b5050505050905090565b6000806105a961153f565b90506105b6818585611547565b600191505092915050565b6000600254905090565b6000806105d661153f565b90506105e3858285611710565b600080600860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806106875750600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b905080610792576007600061069a61153f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156107375750600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156107915761271085600a5461074d9190612026565b61075791906120af565b915060008211156107905761078f87600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461179c565b5b5b5b6107a8878784886107a391906120e0565b61179c565b600193505050509392505050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166107f761153f565b73ffffffffffffffffffffffffffffffffffffffff161461084d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084490612186565b60405180910390fd5b81600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b490612218565b60405180910390fd5b81600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508115158373ffffffffffffffffffffffffffffffffffffffff167f09b50446349d7fd45dbe59f55204a44404c2adf607c59e9420b87535ed2454b160405160405180910390a3505050565b60006012905090565b60008061097361153f565b90506109948185856109858589611257565b61098f9190612238565b611547565b600191505092915050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166109e061153f565b73ffffffffffffffffffffffffffffffffffffffff1614610a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2d90612186565b60405180910390fd5b60c8811115610a7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7190612300565b60405180910390fd5b80600a8190555050565b610a95610a8f61153f565b82611a12565b50565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060048054610b3b90611fc6565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6790611fc6565b8015610bb45780601f10610b8957610100808354040283529160200191610bb4565b820191906000526020600020905b815481529060010190602001808311610b9757829003601f168201915b5050505050905090565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610bff61153f565b73ffffffffffffffffffffffffffffffffffffffff1614610c55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4c90612186565b60405180910390fd5b60c8811115610c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9090612300565b60405180910390fd5b8060098190555050565b600080610cae61153f565b90506000610cbc8286611257565b905083811015610d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf890612392565b60405180910390fd5b610d0e8286868403611547565b60019250505092915050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610d5b61153f565b73ffffffffffffffffffffffffffffffffffffffff1614610db1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da890612186565b60405180910390fd5b80600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1890612218565b60405180910390fd5b81600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b60008060009050600060086000610e7b61153f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610f175750600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b90508061102f5760066000610f2a61153f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610fcd575060076000610f8461153f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561102e5761271084600954610fe39190612026565b610fed91906120af565b9150600082111561102d5761102c61100361153f565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461179c565b5b5b5b61104c61103a61153f565b86848761104791906120e0565b61179c565b60019250505092915050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661109961153f565b73ffffffffffffffffffffffffffffffffffffffff16146110ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e690612186565b60405180910390fd5b81600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361115f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115690612218565b60405180910390fd5b81600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508115158373ffffffffffffffffffffffffffffffffffffffff167ff40a563af144a84735f7f6c7c3029794b0ac17713e5f048d3fd00ed85aa4ca7a60405160405180910390a3505050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b60095481565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661132b61153f565b73ffffffffffffffffffffffffffffffffffffffff1614611381576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137890612186565b60405180910390fd5b81600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036113f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e890612218565b60405180910390fd5b81600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508115158373ffffffffffffffffffffffffffffffffffffffff167ffd813a33bba8e3b5e540229e266ccd9c045fd61bcb50873786f1bede0ddad36760405160405180910390a3505050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036115b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ad90612424565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161c906124b6565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516117039190611dc2565b60405180910390a3505050565b600061171c8484611257565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146117965781811015611788576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177f90612522565b60405180910390fd5b6117958484848403611547565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361180b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611802906125b4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361187a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187190612646565b60405180910390fd5b611885838383611bdf565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561190b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611902906126d8565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119f99190611dc2565b60405180910390a3611a0c848484611be4565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a789061276a565b60405180910390fd5b611a8d82600083611bdf565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0a906127fc565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611bc69190611dc2565b60405180910390a3611bda83600084611be4565b505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611c23578082015181840152602081019050611c08565b83811115611c32576000848401525b50505050565b6000601f19601f8301169050919050565b6000611c5482611be9565b611c5e8185611bf4565b9350611c6e818560208601611c05565b611c7781611c38565b840191505092915050565b60006020820190508181036000830152611c9c8184611c49565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611cd482611ca9565b9050919050565b611ce481611cc9565b8114611cef57600080fd5b50565b600081359050611d0181611cdb565b92915050565b6000819050919050565b611d1a81611d07565b8114611d2557600080fd5b50565b600081359050611d3781611d11565b92915050565b60008060408385031215611d5457611d53611ca4565b5b6000611d6285828601611cf2565b9250506020611d7385828601611d28565b9150509250929050565b60008115159050919050565b611d9281611d7d565b82525050565b6000602082019050611dad6000830184611d89565b92915050565b611dbc81611d07565b82525050565b6000602082019050611dd76000830184611db3565b92915050565b600080600060608486031215611df657611df5611ca4565b5b6000611e0486828701611cf2565b9350506020611e1586828701611cf2565b9250506040611e2686828701611d28565b9150509250925092565b611e3981611d7d565b8114611e4457600080fd5b50565b600081359050611e5681611e30565b92915050565b60008060408385031215611e7357611e72611ca4565b5b6000611e8185828601611cf2565b9250506020611e9285828601611e47565b9150509250929050565b600060ff82169050919050565b611eb281611e9c565b82525050565b6000602082019050611ecd6000830184611ea9565b92915050565b600060208284031215611ee957611ee8611ca4565b5b6000611ef784828501611d28565b91505092915050565b611f0981611cc9565b82525050565b6000602082019050611f246000830184611f00565b92915050565b600060208284031215611f4057611f3f611ca4565b5b6000611f4e84828501611cf2565b91505092915050565b60008060408385031215611f6e57611f6d611ca4565b5b6000611f7c85828601611cf2565b9250506020611f8d85828601611cf2565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611fde57607f821691505b602082108103611ff157611ff0611f97565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061203182611d07565b915061203c83611d07565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561207557612074611ff7565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006120ba82611d07565b91506120c583611d07565b9250826120d5576120d4612080565b5b828204905092915050565b60006120eb82611d07565b91506120f683611d07565b92508282101561210957612108611ff7565b5b828203905092915050565b7f4f6e6c792074686520636f6e7472616374206f776e65722063616e2063616c6c60008201527f20746869732066756e6374696f6e2e0000000000000000000000000000000000602082015250565b6000612170602f83611bf4565b915061217b82612114565b604082019050919050565b6000602082019050818103600083015261219f81612163565b9050919050565b7f4164647265737320706172616d657465722063616e6e6f74206265206e756c6c60008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b6000612202602183611bf4565b915061220d826121a6565b604082019050919050565b60006020820190508181036000830152612231816121f5565b9050919050565b600061224382611d07565b915061224e83611d07565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561228357612282611ff7565b5b828201905092915050565b7f456e746572656420616d6f756e742065786365656473204d415820546178204c60008201527f696d69742e000000000000000000000000000000000000000000000000000000602082015250565b60006122ea602583611bf4565b91506122f58261228e565b604082019050919050565b60006020820190508181036000830152612319816122dd565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061237c602583611bf4565b915061238782612320565b604082019050919050565b600060208201905081810360008301526123ab8161236f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061240e602483611bf4565b9150612419826123b2565b604082019050919050565b6000602082019050818103600083015261243d81612401565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006124a0602283611bf4565b91506124ab82612444565b604082019050919050565b600060208201905081810360008301526124cf81612493565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061250c601d83611bf4565b9150612517826124d6565b602082019050919050565b6000602082019050818103600083015261253b816124ff565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061259e602583611bf4565b91506125a982612542565b604082019050919050565b600060208201905081810360008301526125cd81612591565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612630602383611bf4565b915061263b826125d4565b604082019050919050565b6000602082019050818103600083015261265f81612623565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006126c2602683611bf4565b91506126cd82612666565b604082019050919050565b600060208201905081810360008301526126f1816126b5565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612754602183611bf4565b915061275f826126f8565b604082019050919050565b6000602082019050818103600083015261278381612747565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006127e6602283611bf4565b91506127f18261278a565b604082019050919050565b60006020820190508181036000830152612815816127d9565b905091905056fea26469706673582212201b8ff492db55873cee638b1ff00dbf3932d06c693130352afdeb894c31a21e1c64736f6c634300080d0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000295be96e64066972000000000000000000000000000000e4b219d3775e5be63c1eb50abafda0b447ab0af1
-----Decoded View---------------
Arg [0] : totalSupply (uint256): 50000000000000000000000000
Arg [1] : vaultAddress (address): 0xE4B219d3775E5BE63c1EB50aBafda0b447AB0AF1
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000295be96e64066972000000
Arg [1] : 000000000000000000000000e4b219d3775e5be63c1eb50abafda0b447ab0af1
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.