ERC-20
Overview
Max Total Supply
1,000,000,000 SonicAI
Holders
1
Market
Price
-
Onchain Market Cap
-
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
SonicAI
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity)
/** *Submitted for verification at SonicScan.org on 2024-12-18 */ /* The first and unique agent AI on SONIC Chain. https://t.me/SonicAIonSonic */ // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.19; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the 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); } // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ 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); } // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol) /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * 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}. */ 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; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev 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 {} } // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } contract SonicAI is ERC20,Ownable{ constructor() ERC20("Sonic Agent AI", "SonicAI") { _mint(msg.sender, 1000000000 * 10 ** decimals()); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":[],"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":"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":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561000f575f80fd5b506040518060400160405280600e81526020016d536f6e6963204167656e7420414960901b81525060405180604001604052806007815260200166536f6e6963414960c81b81525081600390816100669190610285565b5060046100738282610285565b50505061008c6100876100b460201b60201c565b6100b8565b6100af3361009c6012600a610438565b6100aa90633b9aca0061044d565b610109565b610477565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382166101635760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060025f8282546101749190610464565b90915550506001600160a01b0382165f90815260208190526040812080548392906101a0908490610464565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061021657607f821691505b60208210810361023457634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156101e957805f5260205f20601f840160051c8101602085101561025f5750805b601f840160051c820191505b8181101561027e575f815560010161026b565b5050505050565b81516001600160401b0381111561029e5761029e6101ee565b6102b2816102ac8454610202565b8461023a565b6020601f8211600181146102e4575f83156102cd5750848201515b5f19600385901b1c1916600184901b17845561027e565b5f84815260208120601f198516915b8281101561031357878501518255602094850194600190920191016102f3565b508482101561033057868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b6001815b600184111561038e578085048111156103725761037261033f565b600184161561038057908102905b60019390931c928002610357565b935093915050565b5f826103a457506001610432565b816103b057505f610432565b81600181146103c657600281146103d0576103ec565b6001915050610432565b60ff8411156103e1576103e161033f565b50506001821b610432565b5060208310610133831016604e8410600b841016171561040f575081810a610432565b61041b5f198484610353565b805f190482111561042e5761042e61033f565b0290505b92915050565b5f61044660ff841683610396565b9392505050565b80820281158282048414176104325761043261033f565b808201808211156104325761043261033f565b6109f2806104845f395ff3fe608060405234801561000f575f80fd5b50600436106100e5575f3560e01c8063715018a611610088578063a457c2d711610063578063a457c2d7146101c6578063a9059cbb146101d9578063dd62ed3e146101ec578063f2fde38b146101ff575f80fd5b8063715018a6146101995780638da5cb5b146101a357806395d89b41146101be575f80fd5b806323b872dd116100c357806323b872dd1461013c578063313ce5671461014f578063395093511461015e57806370a0823114610171575f80fd5b806306fdde03146100e9578063095ea7b31461010757806318160ddd1461012a575b5f80fd5b6100f1610212565b6040516100fe9190610862565b60405180910390f35b61011a6101153660046108b2565b6102a2565b60405190151581526020016100fe565b6002545b6040519081526020016100fe565b61011a61014a3660046108da565b6102bb565b604051601281526020016100fe565b61011a61016c3660046108b2565b6102de565b61012e61017f366004610914565b6001600160a01b03165f9081526020819052604090205490565b6101a16102ff565b005b6005546040516001600160a01b0390911681526020016100fe565b6100f1610312565b61011a6101d43660046108b2565b610321565b61011a6101e73660046108b2565b6103a0565b61012e6101fa366004610934565b6103ad565b6101a161020d366004610914565b6103d7565b60606003805461022190610965565b80601f016020809104026020016040519081016040528092919081815260200182805461024d90610965565b80156102985780601f1061026f57610100808354040283529160200191610298565b820191905f5260205f20905b81548152906001019060200180831161027b57829003601f168201915b5050505050905090565b5f336102af818585610450565b60019150505b92915050565b5f336102c8858285610573565b6102d38585856105eb565b506001949350505050565b5f336102af8185856102f083836103ad565b6102fa919061099d565b610450565b6103076107b7565b6103105f610811565b565b60606004805461022190610965565b5f338161032e82866103ad565b9050838110156103935760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6102d38286868403610450565b5f336102af8185856105eb565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6103df6107b7565b6001600160a01b0381166104445760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161038a565b61044d81610811565b50565b6001600160a01b0383166104b25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161038a565b6001600160a01b0382166105135760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161038a565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f61057e84846103ad565b90505f1981146105e557818110156105d85760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161038a565b6105e58484848403610450565b50505050565b6001600160a01b03831661064f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161038a565b6001600160a01b0382166106b15760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161038a565b6001600160a01b0383165f90815260208190526040902054818110156107285760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161038a565b6001600160a01b038085165f9081526020819052604080822085850390559185168152908120805484929061075e90849061099d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516107aa91815260200190565b60405180910390a36105e5565b6005546001600160a01b031633146103105760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161038a565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b03811681146108ad575f80fd5b919050565b5f80604083850312156108c3575f80fd5b6108cc83610897565b946020939093013593505050565b5f805f606084860312156108ec575f80fd5b6108f584610897565b925061090360208501610897565b929592945050506040919091013590565b5f60208284031215610924575f80fd5b61092d82610897565b9392505050565b5f8060408385031215610945575f80fd5b61094e83610897565b915061095c60208401610897565b90509250929050565b600181811c9082168061097957607f821691505b60208210810361099757634e487b7160e01b5f52602260045260245ffd5b50919050565b808201808211156102b557634e487b7160e01b5f52601160045260245ffdfea26469706673582212209f9ce309ddac1df887e96e0a81f01cd491dbf2c211491f3a147c0fa75c5bb56164736f6c634300081a0033
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106100e5575f3560e01c8063715018a611610088578063a457c2d711610063578063a457c2d7146101c6578063a9059cbb146101d9578063dd62ed3e146101ec578063f2fde38b146101ff575f80fd5b8063715018a6146101995780638da5cb5b146101a357806395d89b41146101be575f80fd5b806323b872dd116100c357806323b872dd1461013c578063313ce5671461014f578063395093511461015e57806370a0823114610171575f80fd5b806306fdde03146100e9578063095ea7b31461010757806318160ddd1461012a575b5f80fd5b6100f1610212565b6040516100fe9190610862565b60405180910390f35b61011a6101153660046108b2565b6102a2565b60405190151581526020016100fe565b6002545b6040519081526020016100fe565b61011a61014a3660046108da565b6102bb565b604051601281526020016100fe565b61011a61016c3660046108b2565b6102de565b61012e61017f366004610914565b6001600160a01b03165f9081526020819052604090205490565b6101a16102ff565b005b6005546040516001600160a01b0390911681526020016100fe565b6100f1610312565b61011a6101d43660046108b2565b610321565b61011a6101e73660046108b2565b6103a0565b61012e6101fa366004610934565b6103ad565b6101a161020d366004610914565b6103d7565b60606003805461022190610965565b80601f016020809104026020016040519081016040528092919081815260200182805461024d90610965565b80156102985780601f1061026f57610100808354040283529160200191610298565b820191905f5260205f20905b81548152906001019060200180831161027b57829003601f168201915b5050505050905090565b5f336102af818585610450565b60019150505b92915050565b5f336102c8858285610573565b6102d38585856105eb565b506001949350505050565b5f336102af8185856102f083836103ad565b6102fa919061099d565b610450565b6103076107b7565b6103105f610811565b565b60606004805461022190610965565b5f338161032e82866103ad565b9050838110156103935760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6102d38286868403610450565b5f336102af8185856105eb565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6103df6107b7565b6001600160a01b0381166104445760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161038a565b61044d81610811565b50565b6001600160a01b0383166104b25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161038a565b6001600160a01b0382166105135760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161038a565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f61057e84846103ad565b90505f1981146105e557818110156105d85760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161038a565b6105e58484848403610450565b50505050565b6001600160a01b03831661064f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161038a565b6001600160a01b0382166106b15760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161038a565b6001600160a01b0383165f90815260208190526040902054818110156107285760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161038a565b6001600160a01b038085165f9081526020819052604080822085850390559185168152908120805484929061075e90849061099d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516107aa91815260200190565b60405180910390a36105e5565b6005546001600160a01b031633146103105760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161038a565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b03811681146108ad575f80fd5b919050565b5f80604083850312156108c3575f80fd5b6108cc83610897565b946020939093013593505050565b5f805f606084860312156108ec575f80fd5b6108f584610897565b925061090360208501610897565b929592945050506040919091013590565b5f60208284031215610924575f80fd5b61092d82610897565b9392505050565b5f8060408385031215610945575f80fd5b61094e83610897565b915061095c60208401610897565b90509250929050565b600181811c9082168061097957607f821691505b60208210810361099757634e487b7160e01b5f52602260045260245ffd5b50919050565b808201808211156102b557634e487b7160e01b5f52601160045260245ffdfea26469706673582212209f9ce309ddac1df887e96e0a81f01cd491dbf2c211491f3a147c0fa75c5bb56164736f6c634300081a0033
Deployed Bytecode Sourcemap
19849:163:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6437:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8788:201;;;;;;:::i;:::-;;:::i;:::-;;;1085:14:1;;1078:22;1060:41;;1048:2;1033:18;8788:201:0;920:187:1;7557:108:0;7645:12;;7557:108;;;1258:25:1;;;1246:2;1231:18;7557:108:0;1112:177:1;9569:295:0;;;;;;:::i;:::-;;:::i;7399:93::-;;;7482:2;1815:36:1;;1803:2;1788:18;7399:93:0;1673:184:1;10273:238:0;;;;;;:::i;:::-;;:::i;7728:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;7829:18:0;7802:7;7829:18;;;;;;;;;;;;7728:127;19026:103;;;:::i;:::-;;18378:87;18451:6;;18378:87;;-1:-1:-1;;;;;18451:6:0;;;2199:51:1;;2187:2;2172:18;18378:87:0;2053:203:1;6656:104:0;;;:::i;11014:436::-;;;;;;:::i;:::-;;:::i;8061:193::-;;;;;;:::i;:::-;;:::i;8317:151::-;;;;;;:::i;:::-;;:::i;19284:201::-;;;;;;:::i;:::-;;:::i;6437:100::-;6491:13;6524:5;6517:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6437:100;:::o;8788:201::-;8871:4;829:10;8927:32;829:10;8943:7;8952:6;8927:8;:32::i;:::-;8977:4;8970:11;;;8788:201;;;;;:::o;9569:295::-;9700:4;829:10;9758:38;9774:4;829:10;9789:6;9758:15;:38::i;:::-;9807:27;9817:4;9823:2;9827:6;9807:9;:27::i;:::-;-1:-1:-1;9852:4:0;;9569:295;-1:-1:-1;;;;9569:295:0:o;10273:238::-;10361:4;829:10;10417:64;829:10;10433:7;10470:10;10442:25;829:10;10433:7;10442:9;:25::i;:::-;:38;;;;:::i;:::-;10417:8;:64::i;19026:103::-;18264:13;:11;:13::i;:::-;19091:30:::1;19118:1;19091:18;:30::i;:::-;19026:103::o:0;6656:104::-;6712:13;6745:7;6738:14;;;;;:::i;11014:436::-;11107:4;829:10;11107:4;11190:25;829:10;11207:7;11190:9;:25::i;:::-;11163:52;;11254:15;11234:16;:35;;11226:85;;;;-1:-1:-1;;;11226:85:0;;3340:2:1;11226:85:0;;;3322:21:1;3379:2;3359:18;;;3352:30;3418:34;3398:18;;;3391:62;-1:-1:-1;;;3469:18:1;;;3462:35;3514:19;;11226:85:0;;;;;;;;;11347:60;11356:5;11363:7;11391:15;11372:16;:34;11347:8;:60::i;8061:193::-;8140:4;829:10;8196:28;829:10;8213:2;8217:6;8196:9;:28::i;8317:151::-;-1:-1:-1;;;;;8433:18:0;;;8406:7;8433:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8317:151::o;19284:201::-;18264:13;:11;:13::i;:::-;-1:-1:-1;;;;;19373:22:0;::::1;19365:73;;;::::0;-1:-1:-1;;;19365:73:0;;3746:2:1;19365:73:0::1;::::0;::::1;3728:21:1::0;3785:2;3765:18;;;3758:30;3824:34;3804:18;;;3797:62;-1:-1:-1;;;3875:18:1;;;3868:36;3921:19;;19365:73:0::1;3544:402:1::0;19365:73:0::1;19449:28;19468:8;19449:18;:28::i;:::-;19284:201:::0;:::o;14639:380::-;-1:-1:-1;;;;;14775:19:0;;14767:68;;;;-1:-1:-1;;;14767:68:0;;4153:2:1;14767:68:0;;;4135:21:1;4192:2;4172:18;;;4165:30;4231:34;4211:18;;;4204:62;-1:-1:-1;;;4282:18:1;;;4275:34;4326:19;;14767:68:0;3951:400:1;14767:68:0;-1:-1:-1;;;;;14854:21:0;;14846:68;;;;-1:-1:-1;;;14846:68:0;;4558:2:1;14846:68:0;;;4540:21:1;4597:2;4577:18;;;4570:30;4636:34;4616:18;;;4609:62;-1:-1:-1;;;4687:18:1;;;4680:32;4729:19;;14846:68:0;4356:398:1;14846:68:0;-1:-1:-1;;;;;14927:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14979:32;;1258:25:1;;;14979:32:0;;1231:18:1;14979:32:0;;;;;;;14639:380;;;:::o;15310:453::-;15445:24;15472:25;15482:5;15489:7;15472:9;:25::i;:::-;15445:52;;-1:-1:-1;;15512:16:0;:37;15508:248;;15594:6;15574:16;:26;;15566:68;;;;-1:-1:-1;;;15566:68:0;;4961:2:1;15566:68:0;;;4943:21:1;5000:2;4980:18;;;4973:30;5039:31;5019:18;;;5012:59;5088:18;;15566:68:0;4759:353:1;15566:68:0;15678:51;15687:5;15694:7;15722:6;15703:16;:25;15678:8;:51::i;:::-;15434:329;15310:453;;;:::o;11920:671::-;-1:-1:-1;;;;;12051:18:0;;12043:68;;;;-1:-1:-1;;;12043:68:0;;5319:2:1;12043:68:0;;;5301:21:1;5358:2;5338:18;;;5331:30;5397:34;5377:18;;;5370:62;-1:-1:-1;;;5448:18:1;;;5441:35;5493:19;;12043:68:0;5117:401:1;12043:68:0;-1:-1:-1;;;;;12130:16:0;;12122:64;;;;-1:-1:-1;;;12122:64:0;;5725:2:1;12122:64:0;;;5707:21:1;5764:2;5744:18;;;5737:30;5803:34;5783:18;;;5776:62;-1:-1:-1;;;5854:18:1;;;5847:33;5897:19;;12122:64:0;5523:399:1;12122:64:0;-1:-1:-1;;;;;12272:15:0;;12250:19;12272:15;;;;;;;;;;;12306:21;;;;12298:72;;;;-1:-1:-1;;;12298:72:0;;6129:2:1;12298:72:0;;;6111:21:1;6168:2;6148:18;;;6141:30;6207:34;6187:18;;;6180:62;-1:-1:-1;;;6258:18:1;;;6251:36;6304:19;;12298:72:0;5927:402:1;12298:72:0;-1:-1:-1;;;;;12406:15:0;;;:9;:15;;;;;;;;;;;12424:20;;;12406:38;;12466:13;;;;;;;;:23;;12438:6;;12406:9;12466:23;;12438:6;;12466:23;:::i;:::-;;;;;;;;12522:2;-1:-1:-1;;;;;12507:26:0;12516:4;-1:-1:-1;;;;;12507:26:0;;12526:6;12507:26;;;;1258:25:1;;1246:2;1231:18;;1112:177;12507:26:0;;;;;;;;12546:37;16363:125;18543:132;18451:6;;-1:-1:-1;;;;;18451:6:0;829:10;18607:23;18599:68;;;;-1:-1:-1;;;18599:68:0;;6536:2:1;18599:68:0;;;6518:21:1;;;6555:18;;;6548:30;6614:34;6594:18;;;6587:62;6666:18;;18599:68:0;6334:356:1;19645:191:0;19738:6;;;-1:-1:-1;;;;;19755:17:0;;;-1:-1:-1;;;;;;19755:17:0;;;;;;;19788:40;;19738:6;;;19755:17;19738:6;;19788:40;;19719:16;;19788:40;19708:128;19645:191;:::o;14:418:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:173::-;505:20;;-1:-1:-1;;;;;554:31:1;;544:42;;534:70;;600:1;597;590:12;534:70;437:173;;;:::o;615:300::-;683:6;691;744:2;732:9;723:7;719:23;715:32;712:52;;;760:1;757;750:12;712:52;783:29;802:9;783:29;:::i;:::-;773:39;881:2;866:18;;;;853:32;;-1:-1:-1;;;615:300:1:o;1294:374::-;1371:6;1379;1387;1440:2;1428:9;1419:7;1415:23;1411:32;1408:52;;;1456:1;1453;1446:12;1408:52;1479:29;1498:9;1479:29;:::i;:::-;1469:39;;1527:38;1561:2;1550:9;1546:18;1527:38;:::i;:::-;1294:374;;1517:48;;-1:-1:-1;;;1634:2:1;1619:18;;;;1606:32;;1294:374::o;1862:186::-;1921:6;1974:2;1962:9;1953:7;1949:23;1945:32;1942:52;;;1990:1;1987;1980:12;1942:52;2013:29;2032:9;2013:29;:::i;:::-;2003:39;1862:186;-1:-1:-1;;;1862:186:1:o;2261:260::-;2329:6;2337;2390:2;2378:9;2369:7;2365:23;2361:32;2358:52;;;2406:1;2403;2396:12;2358:52;2429:29;2448:9;2429:29;:::i;:::-;2419:39;;2477:38;2511:2;2500:9;2496:18;2477:38;:::i;:::-;2467:48;;2261:260;;;;;:::o;2526:380::-;2605:1;2601:12;;;;2648;;;2669:61;;2723:4;2715:6;2711:17;2701:27;;2669:61;2776:2;2768:6;2765:14;2745:18;2742:38;2739:161;;2822:10;2817:3;2813:20;2810:1;2803:31;2857:4;2854:1;2847:15;2885:4;2882:1;2875:15;2739:161;;2526:380;;;:::o;2911:222::-;2976:9;;;2997:10;;;2994:133;;;3049:10;3044:3;3040:20;3037:1;3030:31;3084:4;3081:1;3074:15;3112:4;3109:1;3102:15
Swarm Source
ipfs://9f9ce309ddac1df887e96e0a81f01cd491dbf2c211491f3a147c0fa75c5bb561
[ 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.