Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
DeFi
Overview
Max Total Supply
183,427,772 XENAI
Holders
258 ( -0.388%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
33,686.884428127011720752 XENAIValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Xenix
Compiler Version
v0.8.23+commit.f704f362
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion, Audited
Contract Source Code (Solidity Standard Json-Input format)Audit Report
// SPDX-License-Identifier: MIT pragma solidity 0.8.23; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender,address recipient,uint256 amount) external returns (bool); /** * @dev Emitted when 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 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); } interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @dev Implementation of the {IERC20} interface. */ 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. * */ 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 value of the decimals */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev Returns the totalsupply of the token */ 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]; } function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}.*/ function transferFrom(address sender,address recipient,uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event.*/ function _transfer(address sender,address recipient,uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, can be called only when deploying the contract. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. */ 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 Hook that is called before any transfer of tokens. */ function _beforeTokenTransfer(address from,address to,uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens.*/ function _afterTokenTransfer(address from,address to,uint256 amount) internal virtual {} } contract Xenix is ERC20 { constructor(address _initialWallet) ERC20("Xenix AI", "XENAI") { _mint( _initialWallet, (388888888) * (10 ** decimals())); } function burn(address to, uint256 amount) public { _burn(to, (amount) * (10 ** decimals())); } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- Solid Proof - Aug 30th, 2024 - Security Audit Report
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_initialWallet","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801562000010575f80fd5b50604051620021ae380380620021ae8339818101604052810190620000369190620002f6565b6040518060400160405280600881526020017f58656e69782041490000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f58454e41490000000000000000000000000000000000000000000000000000008152508160039081620000b391906200058a565b508060049081620000c591906200058a565b5050506200010881620000dd6200010f60201b60201c565b600a620000eb9190620007f7565b63172df938620000fc919062000847565b6200011760201b60201c565b5062000975565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000188576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200017f90620008ef565b60405180910390fd5b6200019b5f83836200028760201b60201c565b8060025f828254620001ae91906200090f565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546200020291906200090f565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200026891906200095a565b60405180910390a3620002835f83836200028c60201b60201c565b5050565b505050565b505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620002c08262000295565b9050919050565b620002d281620002b4565b8114620002dd575f80fd5b50565b5f81519050620002f081620002c7565b92915050565b5f602082840312156200030e576200030d62000291565b5b5f6200031d84828501620002e0565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620003a257607f821691505b602082108103620003b857620003b76200035d565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026200041c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620003df565b620004288683620003df565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620004726200046c620004668462000440565b62000449565b62000440565b9050919050565b5f819050919050565b6200048d8362000452565b620004a56200049c8262000479565b848454620003eb565b825550505050565b5f90565b620004bb620004ad565b620004c881848462000482565b505050565b5b81811015620004ef57620004e35f82620004b1565b600181019050620004ce565b5050565b601f8211156200053e576200050881620003be565b6200051384620003d0565b8101602085101562000523578190505b6200053b6200053285620003d0565b830182620004cd565b50505b505050565b5f82821c905092915050565b5f620005605f198460080262000543565b1980831691505092915050565b5f6200057a83836200054f565b9150826002028217905092915050565b620005958262000326565b67ffffffffffffffff811115620005b157620005b062000330565b5b620005bd82546200038a565b620005ca828285620004f3565b5f60209050601f83116001811462000600575f8415620005eb578287015190505b620005f785826200056d565b86555062000666565b601f1984166200061086620003be565b5f5b82811015620006395784890151825560018201915060208501945060208101905062000612565b8683101562000659578489015162000655601f8916826200054f565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115620006f857808604811115620006d057620006cf6200066e565b5b6001851615620006e05780820291505b8081029050620006f0856200069b565b9450620006b0565b94509492505050565b5f82620007125760019050620007e4565b8162000721575f9050620007e4565b81600181146200073a576002811462000745576200077b565b6001915050620007e4565b60ff8411156200075a57620007596200066e565b5b8360020a9150848211156200077457620007736200066e565b5b50620007e4565b5060208310610133831016604e8410600b8410161715620007b55782820a905083811115620007af57620007ae6200066e565b5b620007e4565b620007c48484846001620006a7565b92509050818404811115620007de57620007dd6200066e565b5b81810290505b9392505050565b5f60ff82169050919050565b5f620008038262000440565b91506200081083620007eb565b92506200083f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000701565b905092915050565b5f620008538262000440565b9150620008608362000440565b9250828202620008708162000440565b915082820484148315176200088a57620008896200066e565b5b5092915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f620008d7601f8362000891565b9150620008e482620008a1565b602082019050919050565b5f6020820190508181035f8301526200090881620008c9565b9050919050565b5f6200091b8262000440565b9150620009288362000440565b92508282019050808211156200094357620009426200066e565b5b92915050565b620009548162000440565b82525050565b5f6020820190506200096f5f83018462000949565b92915050565b61182b80620009835f395ff3fe608060405234801561000f575f80fd5b50600436106100b2575f3560e01c806370a082311161006f57806370a08231146101a057806395d89b41146101d05780639dc29fac146101ee578063a457c2d71461020a578063a9059cbb1461023a578063dd62ed3e1461026a576100b2565b806306fdde03146100b6578063095ea7b3146100d457806318160ddd1461010457806323b872dd14610122578063313ce567146101525780633950935114610170575b5f80fd5b6100be61029a565b6040516100cb9190610e16565b60405180910390f35b6100ee60048036038101906100e99190610ec7565b61032a565b6040516100fb9190610f1f565b60405180910390f35b61010c610347565b6040516101199190610f47565b60405180910390f35b61013c60048036038101906101379190610f60565b610350565b6040516101499190610f1f565b60405180910390f35b61015a610442565b6040516101679190610fcb565b60405180910390f35b61018a60048036038101906101859190610ec7565b61044a565b6040516101979190610f1f565b60405180910390f35b6101ba60048036038101906101b59190610fe4565b6104f1565b6040516101c79190610f47565b60405180910390f35b6101d8610536565b6040516101e59190610e16565b60405180910390f35b61020860048036038101906102039190610ec7565b6105c6565b005b610224600480360381019061021f9190610ec7565b6105f2565b6040516102319190610f1f565b60405180910390f35b610254600480360381019061024f9190610ec7565b6106d8565b6040516102619190610f1f565b60405180910390f35b610284600480360381019061027f919061100f565b6106f5565b6040516102919190610f47565b60405180910390f35b6060600380546102a99061107a565b80601f01602080910402602001604051908101604052809291908181526020018280546102d59061107a565b80156103205780601f106102f757610100808354040283529160200191610320565b820191905f5260205f20905b81548152906001019060200180831161030357829003601f168201915b5050505050905090565b5f61033d610336610777565b848461077e565b6001905092915050565b5f600254905090565b5f61035c848484610941565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6103a3610777565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610422576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104199061111a565b60405180910390fd5b6104368561042e610777565b85840361077e565b60019150509392505050565b5f6012905090565b5f6104e7610456610777565b848460015f610463610777565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546104e29190611165565b61077e565b6001905092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6060600480546105459061107a565b80601f01602080910402602001604051908101604052809291908181526020018280546105719061107a565b80156105bc5780601f10610593576101008083540402835291602001916105bc565b820191905f5260205f20905b81548152906001019060200180831161059f57829003601f168201915b5050505050905090565b6105ee826105d2610442565b600a6105de91906112c7565b836105e99190611311565b610bb6565b5050565b5f8060015f6105ff610777565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156106b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b0906113c2565b60405180910390fd5b6106cd6106c4610777565b8585840361077e565b600191505092915050565b5f6106eb6106e4610777565b8484610941565b6001905092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e390611450565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361085a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610851906114de565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109349190610f47565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a69061156c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a14906115fa565b60405180910390fd5b610a28838383610d82565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa290611688565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610b399190611165565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b9d9190610f47565b60405180910390a3610bb0848484610d87565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1b90611716565b60405180910390fd5b610c2f825f83610d82565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca9906117a4565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f828254610d0691906117c2565b925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d6a9190610f47565b60405180910390a3610d7d835f84610d87565b505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610dc3578082015181840152602081019050610da8565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610de882610d8c565b610df28185610d96565b9350610e02818560208601610da6565b610e0b81610dce565b840191505092915050565b5f6020820190508181035f830152610e2e8184610dde565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610e6382610e3a565b9050919050565b610e7381610e59565b8114610e7d575f80fd5b50565b5f81359050610e8e81610e6a565b92915050565b5f819050919050565b610ea681610e94565b8114610eb0575f80fd5b50565b5f81359050610ec181610e9d565b92915050565b5f8060408385031215610edd57610edc610e36565b5b5f610eea85828601610e80565b9250506020610efb85828601610eb3565b9150509250929050565b5f8115159050919050565b610f1981610f05565b82525050565b5f602082019050610f325f830184610f10565b92915050565b610f4181610e94565b82525050565b5f602082019050610f5a5f830184610f38565b92915050565b5f805f60608486031215610f7757610f76610e36565b5b5f610f8486828701610e80565b9350506020610f9586828701610e80565b9250506040610fa686828701610eb3565b9150509250925092565b5f60ff82169050919050565b610fc581610fb0565b82525050565b5f602082019050610fde5f830184610fbc565b92915050565b5f60208284031215610ff957610ff8610e36565b5b5f61100684828501610e80565b91505092915050565b5f806040838503121561102557611024610e36565b5b5f61103285828601610e80565b925050602061104385828601610e80565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061109157607f821691505b6020821081036110a4576110a361104d565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f611104602883610d96565b915061110f826110aa565b604082019050919050565b5f6020820190508181035f830152611131816110f8565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61116f82610e94565b915061117a83610e94565b925082820190508082111561119257611191611138565b5b92915050565b5f8160011c9050919050565b5f808291508390505b60018511156111ed578086048111156111c9576111c8611138565b5b60018516156111d85780820291505b80810290506111e685611198565b94506111ad565b94509492505050565b5f8261120557600190506112c0565b81611212575f90506112c0565b8160018114611228576002811461123257611261565b60019150506112c0565b60ff84111561124457611243611138565b5b8360020a91508482111561125b5761125a611138565b5b506112c0565b5060208310610133831016604e8410600b84101617156112965782820a90508381111561129157611290611138565b5b6112c0565b6112a384848460016111a4565b925090508184048111156112ba576112b9611138565b5b81810290505b9392505050565b5f6112d182610e94565b91506112dc83610fb0565b92506113097fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846111f6565b905092915050565b5f61131b82610e94565b915061132683610e94565b925082820261133481610e94565b9150828204841483151761134b5761134a611138565b5b5092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6113ac602583610d96565b91506113b782611352565b604082019050919050565b5f6020820190508181035f8301526113d9816113a0565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61143a602483610d96565b9150611445826113e0565b604082019050919050565b5f6020820190508181035f8301526114678161142e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6114c8602283610d96565b91506114d38261146e565b604082019050919050565b5f6020820190508181035f8301526114f5816114bc565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611556602583610d96565b9150611561826114fc565b604082019050919050565b5f6020820190508181035f8301526115838161154a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6115e4602383610d96565b91506115ef8261158a565b604082019050919050565b5f6020820190508181035f830152611611816115d8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611672602683610d96565b915061167d82611618565b604082019050919050565b5f6020820190508181035f83015261169f81611666565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f611700602183610d96565b915061170b826116a6565b604082019050919050565b5f6020820190508181035f83015261172d816116f4565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f61178e602283610d96565b915061179982611734565b604082019050919050565b5f6020820190508181035f8301526117bb81611782565b9050919050565b5f6117cc82610e94565b91506117d783610e94565b92508282039050818111156117ef576117ee611138565b5b9291505056fea2646970667358221220ea9da10f0fb5e8c81ebdeebad0b07ac3487069342ce2a1825c551cfd7c93e2ea64736f6c6343000817003300000000000000000000000050d1c2ddc3c7cd6deff2fd6db9f9a55568cefe0c
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106100b2575f3560e01c806370a082311161006f57806370a08231146101a057806395d89b41146101d05780639dc29fac146101ee578063a457c2d71461020a578063a9059cbb1461023a578063dd62ed3e1461026a576100b2565b806306fdde03146100b6578063095ea7b3146100d457806318160ddd1461010457806323b872dd14610122578063313ce567146101525780633950935114610170575b5f80fd5b6100be61029a565b6040516100cb9190610e16565b60405180910390f35b6100ee60048036038101906100e99190610ec7565b61032a565b6040516100fb9190610f1f565b60405180910390f35b61010c610347565b6040516101199190610f47565b60405180910390f35b61013c60048036038101906101379190610f60565b610350565b6040516101499190610f1f565b60405180910390f35b61015a610442565b6040516101679190610fcb565b60405180910390f35b61018a60048036038101906101859190610ec7565b61044a565b6040516101979190610f1f565b60405180910390f35b6101ba60048036038101906101b59190610fe4565b6104f1565b6040516101c79190610f47565b60405180910390f35b6101d8610536565b6040516101e59190610e16565b60405180910390f35b61020860048036038101906102039190610ec7565b6105c6565b005b610224600480360381019061021f9190610ec7565b6105f2565b6040516102319190610f1f565b60405180910390f35b610254600480360381019061024f9190610ec7565b6106d8565b6040516102619190610f1f565b60405180910390f35b610284600480360381019061027f919061100f565b6106f5565b6040516102919190610f47565b60405180910390f35b6060600380546102a99061107a565b80601f01602080910402602001604051908101604052809291908181526020018280546102d59061107a565b80156103205780601f106102f757610100808354040283529160200191610320565b820191905f5260205f20905b81548152906001019060200180831161030357829003601f168201915b5050505050905090565b5f61033d610336610777565b848461077e565b6001905092915050565b5f600254905090565b5f61035c848484610941565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6103a3610777565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610422576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104199061111a565b60405180910390fd5b6104368561042e610777565b85840361077e565b60019150509392505050565b5f6012905090565b5f6104e7610456610777565b848460015f610463610777565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546104e29190611165565b61077e565b6001905092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6060600480546105459061107a565b80601f01602080910402602001604051908101604052809291908181526020018280546105719061107a565b80156105bc5780601f10610593576101008083540402835291602001916105bc565b820191905f5260205f20905b81548152906001019060200180831161059f57829003601f168201915b5050505050905090565b6105ee826105d2610442565b600a6105de91906112c7565b836105e99190611311565b610bb6565b5050565b5f8060015f6105ff610777565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156106b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b0906113c2565b60405180910390fd5b6106cd6106c4610777565b8585840361077e565b600191505092915050565b5f6106eb6106e4610777565b8484610941565b6001905092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e390611450565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361085a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610851906114de565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109349190610f47565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a69061156c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a14906115fa565b60405180910390fd5b610a28838383610d82565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa290611688565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610b399190611165565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b9d9190610f47565b60405180910390a3610bb0848484610d87565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1b90611716565b60405180910390fd5b610c2f825f83610d82565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca9906117a4565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f828254610d0691906117c2565b925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d6a9190610f47565b60405180910390a3610d7d835f84610d87565b505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610dc3578082015181840152602081019050610da8565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610de882610d8c565b610df28185610d96565b9350610e02818560208601610da6565b610e0b81610dce565b840191505092915050565b5f6020820190508181035f830152610e2e8184610dde565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610e6382610e3a565b9050919050565b610e7381610e59565b8114610e7d575f80fd5b50565b5f81359050610e8e81610e6a565b92915050565b5f819050919050565b610ea681610e94565b8114610eb0575f80fd5b50565b5f81359050610ec181610e9d565b92915050565b5f8060408385031215610edd57610edc610e36565b5b5f610eea85828601610e80565b9250506020610efb85828601610eb3565b9150509250929050565b5f8115159050919050565b610f1981610f05565b82525050565b5f602082019050610f325f830184610f10565b92915050565b610f4181610e94565b82525050565b5f602082019050610f5a5f830184610f38565b92915050565b5f805f60608486031215610f7757610f76610e36565b5b5f610f8486828701610e80565b9350506020610f9586828701610e80565b9250506040610fa686828701610eb3565b9150509250925092565b5f60ff82169050919050565b610fc581610fb0565b82525050565b5f602082019050610fde5f830184610fbc565b92915050565b5f60208284031215610ff957610ff8610e36565b5b5f61100684828501610e80565b91505092915050565b5f806040838503121561102557611024610e36565b5b5f61103285828601610e80565b925050602061104385828601610e80565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061109157607f821691505b6020821081036110a4576110a361104d565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f611104602883610d96565b915061110f826110aa565b604082019050919050565b5f6020820190508181035f830152611131816110f8565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61116f82610e94565b915061117a83610e94565b925082820190508082111561119257611191611138565b5b92915050565b5f8160011c9050919050565b5f808291508390505b60018511156111ed578086048111156111c9576111c8611138565b5b60018516156111d85780820291505b80810290506111e685611198565b94506111ad565b94509492505050565b5f8261120557600190506112c0565b81611212575f90506112c0565b8160018114611228576002811461123257611261565b60019150506112c0565b60ff84111561124457611243611138565b5b8360020a91508482111561125b5761125a611138565b5b506112c0565b5060208310610133831016604e8410600b84101617156112965782820a90508381111561129157611290611138565b5b6112c0565b6112a384848460016111a4565b925090508184048111156112ba576112b9611138565b5b81810290505b9392505050565b5f6112d182610e94565b91506112dc83610fb0565b92506113097fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846111f6565b905092915050565b5f61131b82610e94565b915061132683610e94565b925082820261133481610e94565b9150828204841483151761134b5761134a611138565b5b5092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6113ac602583610d96565b91506113b782611352565b604082019050919050565b5f6020820190508181035f8301526113d9816113a0565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61143a602483610d96565b9150611445826113e0565b604082019050919050565b5f6020820190508181035f8301526114678161142e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6114c8602283610d96565b91506114d38261146e565b604082019050919050565b5f6020820190508181035f8301526114f5816114bc565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611556602583610d96565b9150611561826114fc565b604082019050919050565b5f6020820190508181035f8301526115838161154a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6115e4602383610d96565b91506115ef8261158a565b604082019050919050565b5f6020820190508181035f830152611611816115d8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611672602683610d96565b915061167d82611618565b604082019050919050565b5f6020820190508181035f83015261169f81611666565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f611700602183610d96565b915061170b826116a6565b604082019050919050565b5f6020820190508181035f83015261172d816116f4565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f61178e602283610d96565b915061179982611734565b604082019050919050565b5f6020820190508181035f8301526117bb81611782565b9050919050565b5f6117cc82610e94565b91506117d783610e94565b92508282039050818111156117ef576117ee611138565b5b9291505056fea2646970667358221220ea9da10f0fb5e8c81ebdeebad0b07ac3487069342ce2a1825c551cfd7c93e2ea64736f6c63430008170033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000050d1c2ddc3c7cd6deff2fd6db9f9a55568cefe0c
-----Decoded View---------------
Arg [0] : _initialWallet (address): 0x50d1c2DDc3C7CD6defF2fD6Db9F9A55568cEFE0C
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000050d1c2ddc3c7cd6deff2fd6db9f9a55568cefe0c
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.