ERC-20
Overview
Max Total Supply
1,000,000,000 BIRD
Holders
26
Market
Price
$0.00 @ 0.000000 ETH
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
1,984,847.5 BIRDValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
BigBird
Compiler Version
v0.8.10-1.0.1
ZkSolc Version
v1.5.10
Contract Source Code (Solidity)
/** *Submitted for verification at abscan.org on 2025-01-27 */ // SPDX-License-Identifier: MIT pragma solidity 0.8.10; 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 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() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { 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 { _setOwner(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" ); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } /** * @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 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 `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 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 `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 `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 ); } interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf( address account ) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ 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}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ 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. * * Requirements: * * - `spender` cannot be the zero address. */ 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. * * 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) { 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. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ 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`, 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 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 {} } abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } contract BigBird is ERC20, Ownable, Pausable { constructor() ERC20("Big Bird", "BIRD") { _mint(msg.sender, 1000000000000000000000000000); } function burn(uint256 amount) external { _burn(msg.sender, amount); } function pause() external onlyOwner { _pause(); } function unpause() external onlyOwner { _unpause(); } function _beforeTokenTransfer( address from, address to, uint256 amount ) internal override whenNotPaused { super._beforeTokenTransfer(from, to, amount); } }
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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","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":"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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
9c4d535b0000000000000000000000000000000000000000000000000000000000000000010001bdfb2de6cca25fd9f53d814849810017fa85361499b483e664166dc4ca00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x00040000000000020000008003000039000000400030043f0000000100200190000000220000c13d00000060021002700000016202200197000000040020008c000005410000413d000000000301043b000000e003300270000001780030009c0000003f0000213d000001850030009c0000008d0000a13d000001860030009c000000fe0000a13d000001870030009c000002830000613d000001880030009c000002980000613d000001890030009c000005410000c13d0000000001000416000000000001004b000005410000c13d0000000501000039000000000101041a00000196001001980000000001000039000000010100c039000000800010043f0000019c01000041000005850001042e0000000001000416000000000001004b000005410000c13d0000000801000039000000800010043f0000016301000041000000a00010043f0000010001000039000000400010043f0000000406000039000000c00060043f0000016401000041000000e00010043f0000000303000039000000000103041a000000010210019000000001041002700000007f0440618f0000001f0040008c00000000010000390000000101002039000000000012004b000000660000613d000001af01000041000000000010043f0000002201000039000000040010043f000001b0010000410000058600010430000001790030009c000000ae0000a13d0000017a0030009c000001590000a13d0000017b0030009c000002ae0000613d0000017c0030009c000002c90000613d0000017d0030009c000005410000c13d000000240020008c000005410000413d0000000002000416000000000002004b000005410000c13d0000000401100370000000000601043b0000016a0060009c000005410000213d0000000501000039000000000201041a0000016a032001970000000005000411000000000053004b000003000000c13d000000000006004b000003f00000c13d0000017601000041000000800010043f0000002001000039000000840010043f0000002601000039000000a40010043f0000019201000041000000c40010043f0000019301000041000000e40010043f00000194010000410000058600010430000000200040008c000000800000413d000400000004001d000000000030043f0000000001000414000001620010009c0000016201008041000000c00110021000000165011001c700008010020000390584057f0000040f0000000100200190000005410000613d000000000101043b00000004020000290000001f0220003900000005022002700000000002210019000000000021004b00000004060000390000000303000039000000800000813d000000000001041b0000000101100039000000000021004b0000007c0000413d000000a00100043d000001660110019700000010011001bf000000000013041b000000c00700043d000001670070009c000000cc0000413d000001af01000041000000000010043f0000004101000039000000040010043f000001b00100004100000586000104300000018c0030009c000001920000213d0000018f0030009c0000022e0000613d000001900030009c000005410000c13d000000440020008c000005410000413d0000000002000416000000000002004b000005410000c13d0000000402100370000000000202043b000400000002001d0000016a0020009c000005410000213d0000002401100370000000000301043b00000000010004110000016a01100198000003c10000c13d0000017601000041000000800010043f0000002001000039000000840010043f0000002401000039000000a40010043f000001a901000041000000c40010043f000001a801000041000000e40010043f00000194010000410000058600010430000001800030009c000002210000213d000001830030009c0000024d0000613d000001840030009c000005410000c13d0000000001000416000000000001004b000005410000c13d0000000501000039000000000201041a0000016a032001970000000005000411000000000053004b000003000000c13d0000016b02200197000000000021041b0000000001000414000001620010009c0000016201008041000000c00110021000000191011001c70000800d0200003900000003030000390000016d0400004100000000060000190584057a0000040f0000000100200190000003dd0000c13d000005410000013d000000000106041a000000010010019000000001031002700000007f0330618f0000001f0030008c00000000020000390000000102002039000000000121013f0000000100100190000000390000c13d000000200030008c000000f60000413d000300000003001d000400000007001d000000000060043f0000000001000414000001620010009c0000016201008041000000c00110021000000165011001c700008010020000390584057f0000040f0000000100200190000005410000613d00000004070000290000001f027000390000000502200270000000200070008c0000000002004019000000000301043b00000003010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b0000000406000039000000f60000813d000000000002041b0000000102200039000000000012004b000000f20000413d000000200070008c000003090000413d000000000060043f000001b802700198000003140000c13d000000e0030000390000016801000041000003220000013d0000018a0030009c000002e30000613d0000018b0030009c000005410000c13d000000440020008c000005410000413d0000000002000416000000000002004b000005410000c13d0000000402100370000000000202043b000400000002001d0000016a0020009c000005410000213d0000002401100370000000000101043b000300000001001d0000000001000411000000000010043f0000000101000039000000200010043f0000000001000414000001620010009c0000016201008041000000c00110021000000170011001c700008010020000390584057f0000040f0000000100200190000005410000613d000000000101043b0000000402000029000000000020043f000000200010043f0000000001000414000001620010009c0000016201008041000000c00110021000000170011001c700008010020000390584057f0000040f0000000100200190000005410000613d000000010200008a000000030220014f000000000101043b000000000301041a000000000023004b000003620000213d00000000010004110000016a01100198000004720000613d000200000003001d000000040000006b000004a50000613d000000000010043f0000000101000039000000200010043f0000000001000414000001620010009c0000016201008041000000c00110021000000170011001c700008010020000390584057f0000040f0000000100200190000005410000613d000000000101043b0000000402000029000000000020043f000000200010043f0000000001000414000001620010009c0000016201008041000000c00110021000000170011001c700008010020000390584057f0000040f0000000100200190000005410000613d00000002030000290000000302300029000000000101043b000000000021041b000000400100043d0000000000210435000001620010009c000001620100804100000040011002100000000002000414000004310000013d0000017e0030009c000002ea0000613d0000017f0030009c000005410000c13d000000440020008c000005410000413d0000000002000416000000000002004b000005410000c13d0000000402100370000000000202043b000400000002001d0000016a0020009c000005410000213d0000002401100370000000000101043b000300000001001d0000000001000411000000000010043f0000000101000039000000200010043f0000000001000414000001620010009c0000016201008041000000c00110021000000170011001c700008010020000390584057f0000040f0000000100200190000005410000613d000000000101043b0000000402000029000000000020043f000000200010043f0000000001000414000001620010009c0000016201008041000000c00110021000000170011001c700008010020000390584057f0000040f0000000100200190000005410000613d000000000101043b000000000101041a000000030210006c0000046f0000813d000000400100043d00000064021000390000019803000041000000000032043500000044021000390000019903000041000000000032043500000024021000390000002503000039000004ae0000013d0000018d0030009c000002630000613d0000018e0030009c000005410000c13d000000640020008c000005410000413d0000000002000416000000000002004b000005410000c13d0000000402100370000000000202043b000400000002001d0000016a0020009c000005410000213d0000002402100370000000000202043b000300000002001d0000016a0020009c000005410000213d0000004401100370000000000201043b000000040000006b000002bd0000613d000000030000006b000003e40000613d0000000501000039000000000101041a0000019600100198000004650000c13d000200000002001d0000000401000029000000000010043f000000200000043f0000000001000414000001620010009c0000016201008041000000c00110021000000170011001c700008010020000390584057f0000040f0000000100200190000005410000613d000000000101043b000000000101041a00010002001000740000045b0000413d0000000401000029000000000010043f000000200000043f0000000001000414000001620010009c0000016201008041000000c00110021000000170011001c700008010020000390584057f0000040f0000000100200190000005410000613d000000000101043b0000000102000029000000000021041b0000000301000029000000000010043f000000200000043f0000000001000414000001620010009c0000016201008041000000c00110021000000170011001c700008010020000390584057f0000040f0000000100200190000005410000613d000000010200008a000000020320014f000000000101043b000000000201041a000000000032004b000003620000213d00000002030000290000000002320019000000000021041b000000400100043d0000000000310435000001620010009c000001620100804100000040011002100000000002000414000001620020009c0000016202008041000000c002200210000000000112019f00000165011001c70000800d0200003900000003030000390000017304000041000000040500002900000003060000290584057a0000040f0000000100200190000005410000613d0000000401000029000000000010043f0000000101000039000000200010043f0000000001000414000001620010009c0000016201008041000000c00110021000000170011001c700008010020000390584057f0000040f0000000100200190000005410000613d000000000101043b00000000020004110000016a02200197000300000002001d000000000020043f000000200010043f0000000001000414000001620010009c0000016201008041000000c00110021000000170011001c700008010020000390584057f0000040f0000000100200190000005410000613d000000000101043b000000000101041a00020002001000740000050f0000813d000000400100043d0000006402100039000001ad0300004100000000003204350000004402100039000001ae03000041000000000032043500000024021000390000002803000039000004ae0000013d000001810030009c0000026b0000613d000001820030009c000005410000c13d0000000001000416000000000001004b000005410000c13d0000000501000039000000000101041a0000016a01100197000000800010043f0000019c01000041000005850001042e0000000001000416000000000001004b000005410000c13d0000000303000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f0000000100500190000000390000c13d000000800010043f000000000004004b000003850000613d000000000030043f000000000001004b000002fe0000613d000001b70200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000002440000413d000004090000013d000000240020008c000005410000413d0000000002000416000000000002004b000005410000c13d0000000401100370000000000101043b0000016a0010009c000005410000213d000000000010043f000000200000043f0000000001000414000001620010009c0000016201008041000000c00110021000000170011001c700008010020000390584057f0000040f0000000100200190000005410000613d000000000101043b000002db0000013d0000000001000416000000000001004b000005410000c13d0000000201000039000000000101041a000000800010043f0000019c01000041000005850001042e0000000001000416000000000001004b000005410000c13d0000000501000039000000000301041a0000016a043001970000000002000411000000000024004b000003000000c13d0000019600300198000004650000c13d0000016e033001970000019d033001c7000000000031041b000000800020043f0000000001000414000001620010009c0000016201008041000000c0011002100000019e011001c70000800d0200003900000001030000390000019f04000041000003da0000013d0000000001000416000000000001004b000005410000c13d0000000501000039000000000201041a0000016a042001970000000003000411000000000034004b000003000000c13d0000019600200198000003cf0000c13d0000017601000041000000800010043f0000002001000039000000840010043f0000001401000039000000a40010043f000001a701000041000000c40010043f000001a5010000410000058600010430000000240020008c000005410000413d0000000002000416000000000002004b000005410000c13d0000000401100370000000000301043b0000000002000411000000000002004b000003680000c13d0000017601000041000000800010043f0000002001000039000000840010043f0000002101000039000000a40010043f000001a201000041000000c40010043f000001a301000041000000e40010043f00000194010000410000058600010430000000440020008c000005410000413d0000000002000416000000000002004b000005410000c13d0000000402100370000000000202043b000400000002001d0000016a0020009c000005410000213d0000002401100370000000000201043b00000000010004110000016a03100198000003e20000c13d0000017601000041000000800010043f0000002001000039000000840010043f0000002501000039000000a40010043f000001b501000041000000c40010043f000001b601000041000000e40010043f00000194010000410000058600010430000000440020008c000005410000413d0000000002000416000000000002004b000005410000c13d0000000402100370000000000202043b0000016a0020009c000005410000213d0000002401100370000000000101043b000400000001001d0000016a0010009c000005410000213d0000000001020019058405590000040f00000004020000290584056a0000040f000000000101041a000000400200043d0000000000120435000001620020009c0000016202008041000000400120021000000195011001c7000005850001042e0000000001000416000000000001004b000005410000c13d0000001201000039000000800010043f0000019c01000041000005850001042e0000000001000416000000000001004b000005410000c13d0000000403000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f0000000100500190000000390000c13d000000800010043f000000000004004b000003850000613d000000000030043f000000000001004b000003ff0000c13d0000002001000039000003880000013d0000017601000041000000800010043f0000002001000039000000840010043f000000a40010043f000001a401000041000000c40010043f000001a5010000410000058600010430000000000007004b00000000010000190000032d0000613d0000000301700210000001b90110027f000001b901100167000000e00200043d000000000112016f0000000102700210000000000121019f0000032d0000013d00000168010000410000002004000039000000010320008a0000000503300270000001690330009a0000000005040019000000c0044000390000000004040433000000000041041b00000020045000390000000101100039000000000031004b000003190000c13d000000e003500039000000000072004b0000032b0000813d0000000302700210000000f80220018f000001b90220027f000001b9022001670000000003030433000000000223016f000000000021041b000000010170021000000001011001bf000000000016041b00000000060004110004016a0060019b0000000504000039000000000104041a0000016b0210019700000004022001af000000000024041b000000400200043d000001620020009c000001620200804100000040022002100000000003000414000001620030009c0000016203008041000000c003300210000000000223019f0000016a051001970000016c012001c70000800d0200003900000003030000390000016d040000410584057a0000040f0000000100200190000005410000613d0000000502000039000000000102041a0000016e01100197000000000012041b0000000403000029000000000003004b0000035e0000c13d000000400100043d00000044021000390000017503000041000000000032043500000024021000390000001f03000039000000000032043500000176020000410000000000210435000000040210003900000020030000390000000000320435000001620010009c0000016201008041000000400110021000000177011001c700000586000104300000000201000039000000000201041a0000016f0220009c000003970000413d000001af01000041000000000010043f0000001101000039000000040010043f000001b00100004100000586000104300000000501000039000000000101041a0000019600100198000004650000c13d000400000003001d0000016a01200197000300000001001d000000000010043f000000200000043f0000000001000414000001620010009c0000016201008041000000c00110021000000170011001c700008010020000390584057f0000040f0000000100200190000005410000613d000000000101043b000000000101041a000000040110006c0000047c0000813d000000400100043d0000006402100039000001a00300004100000000003204350000004402100039000001a103000041000004ab0000013d000001ba01200197000000a00010043f00000040010000390000008001100039000400000001001d000000400010043f0000008002000039058405430000040f00000004020000290000000001210049000001620010009c00000162010080410000006001100210000001620020009c00000162020080410000004002200210000000000121019f000005850001042e000000000021041b000000000030043f000000200000043f0000000001000414000001620010009c0000016201008041000000c00110021000000170011001c700008010020000390584057f0000040f0000000100200190000005410000613d000000000101043b000000000201041a0000016f0220009c000003620000813d000000000021041b0000017201000041000000400200043d0000000000120435000001620020009c000001620200804100000040012002100000000002000414000001620020009c0000016202008041000000c002200210000000000112019f00000165011001c70000800d0200003900000003030000390000017304000041000000000500001900000000060004110584057a0000040f0000000100200190000005410000613d0000002001000039000001000010044300000120000004430000017401000041000005850001042e000000040000006b0000040e0000c13d0000017601000041000000800010043f0000002001000039000000840010043f0000002201000039000000a40010043f000001ac01000041000000c40010043f000001ab01000041000000e40010043f000001940100004100000586000104300000016e02200197000000000021041b000000800030043f0000000001000414000001620010009c0000016201008041000000c0011002100000019e011001c70000800d020000390000000103000039000001a6040000410584057a0000040f0000000100200190000005410000613d000000400100043d000001620010009c00000162010080410000004001100210000005850001042e000000040000006b000004460000c13d0000017601000041000000800010043f0000002001000039000000840010043f0000002301000039000000a40010043f000001b301000041000000c40010043f000001b401000041000000e40010043f000001940100004100000586000104300000016b02200197000000000262019f000000000021041b0000000001000414000001620010009c0000016201008041000000c00110021000000191011001c70000800d0200003900000003030000390000016d040000410584057a0000040f0000000100200190000003dd0000c13d000005410000013d000001680200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000004010000413d0000005f01300039000001b8011001970000019b0010009c000000870000213d000003880000013d000300000003001d000000000010043f0000000101000039000000200010043f0000000001000414000001620010009c0000016201008041000000c00110021000000170011001c700008010020000390584057f0000040f0000000100200190000005410000613d000000000101043b0000000402000029000000000020043f000000200010043f0000000001000414000001620010009c0000016201008041000000c00110021000000170011001c700008010020000390584057f0000040f0000000100200190000005410000613d000000000101043b0000000302000029000000000021041b000000400100043d0000000000210435000001620010009c000001620100804100000040011002100000000002000414000001620020009c0000016202008041000000c002200210000000000112019f00000165011001c70000800d0200003900000003030000390000019704000041000000000500041100000004060000290584057a0000040f0000000100200190000005410000613d000000400100043d00000001020000390000000000210435000001620010009c0000016201008041000000400110021000000195011001c7000005850001042e0000000501000039000000000101041a0000019600100198000004650000c13d000300000002001d000200000003001d000000000030043f000000200000043f0000000001000414000001620010009c0000016201008041000000c00110021000000170011001c700008010020000390584057f0000040f0000000100200190000005410000613d000000000101043b000000000101041a0001000300100074000004b90000813d000000400100043d0000006402100039000001b10300004100000000003204350000004402100039000001b203000041000000000032043500000024021000390000002603000039000004ae0000013d0000017601000041000000800010043f0000002001000039000000840010043f0000001001000039000000a40010043f000001aa01000041000000c40010043f000001a501000041000005860001043000000000010004110000016a01100198000004a20000c13d000000400100043d0000006402100039000001a80300004100000000003204350000004402100039000001a903000041000000000032043500000024021000390000002403000039000004ae0000013d000200000001001d0000000301000029000000000010043f000000200000043f0000000001000414000001620010009c0000016201008041000000c00110021000000170011001c700008010020000390584057f0000040f0000000100200190000005410000613d000000000101043b0000000202000029000000000021041b0000000201000039000000000201041a0000000403000029000000000232004b000003620000413d000000000021041b000000400100043d0000000000310435000001620010009c000001620100804100000040011002100000000002000414000001620020009c0000016202008041000000c002200210000000000112019f00000165011001c70000800d02000039000000030300003900000173040000410000000005000411000000c70000013d000300000002001d000000040000006b000004ec0000c13d000000400100043d0000006402100039000001ab0300004100000000003204350000004402100039000001ac03000041000000000032043500000024021000390000002203000039000000000032043500000176020000410000000000210435000000040210003900000020030000390000000000320435000001620010009c000001620100804100000040011002100000019a011001c700000586000104300000000201000029000000000010043f000000200000043f0000000001000414000001620010009c0000016201008041000000c00110021000000170011001c700008010020000390584057f0000040f0000000100200190000005410000613d000000000101043b0000000102000029000000000021041b0000000401000029000000000010043f000000200000043f0000000001000414000001620010009c0000016201008041000000c00110021000000170011001c700008010020000390584057f0000040f0000000100200190000005410000613d000000010200008a000000030320014f000000000101043b000000000201041a000000000032004b000003620000213d00000003030000290000000002320019000000000021041b000000400100043d0000000000310435000001620010009c000001620100804100000040011002100000000002000414000001620020009c0000016202008041000000c002200210000000000112019f00000165011001c70000800d0200003900000003030000390000017304000041000004390000013d000000000010043f0000000101000039000000200010043f0000000001000414000001620010009c0000016201008041000000c00110021000000170011001c700008010020000390584057f0000040f0000000100200190000005410000613d000000000101043b0000000402000029000000000020043f000000200010043f0000000001000414000001620010009c0000016201008041000000c00110021000000170011001c700008010020000390584057f0000040f0000000100200190000005410000613d000000000101043b0000000302000029000000000021041b000000400100043d0000000000210435000001620010009c000001620100804100000040011002100000000002000414000004310000013d000000030000006b000004a50000613d0000000401000029000000000010043f0000000101000039000000200010043f0000000001000414000001620010009c0000016201008041000000c00110021000000170011001c700008010020000390584057f0000040f0000000100200190000005410000613d000000000101043b0000000302000029000000000020043f000000200010043f0000000001000414000001620010009c0000016201008041000000c00110021000000170011001c700008010020000390584057f0000040f0000000100200190000005410000613d000000000101043b0000000202000029000000000021041b000000400100043d0000000000210435000001620010009c000001620100804100000040011002100000000002000414000001620020009c0000016202008041000000c002200210000000000112019f00000165011001c70000800d0200003900000003030000390000019704000041000000040500002900000000060004110584057a0000040f00000001002001900000043e0000c13d000000000100001900000586000104300000002003000039000000000431043600000000320204340000000000240435000000000002004b0000004001100039000005550000613d000000000400001900000000054100190000000006430019000000000606043300000000006504350000002004400039000000000024004b0000054b0000413d000005550000a13d000000000321001900000000000304350000001f02200039000001b8022001970000000001210019000000000001042d0000016a01100197000000000010043f0000000101000039000000200010043f0000000001000414000001620010009c0000016201008041000000c00110021000000170011001c700008010020000390584057f0000040f0000000100200190000005680000613d000000000101043b000000000001042d000000000100001900000586000104300000016a02200197000000000020043f000000200010043f0000000001000414000001620010009c0000016201008041000000c00110021000000170011001c700008010020000390584057f0000040f0000000100200190000005780000613d000000000101043b000000000001042d000000000100001900000586000104300000057d002104210000000102000039000000000001042d0000000002000019000000000001042d00000582002104230000000102000039000000000001042d0000000002000019000000000001042d0000058400000432000005850001042e0000058600010430000000000000000000000000000000000000000000000000000000000000000000000000ffffffff426967204269726400000000000000000000000000000000000000000000000042495244000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000020000000000000000000000000ffffffffffffffff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000008a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b75ca53043ea007e5c65182cbb028f60d7179ff4b55739a3949b401801c942e64000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0ffffffffffffffffffffff00fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffcc4d1c3602f7fc3180000000200000000000000000000000000000000000040000000000000000000000000fffffffffffffffffffffffffffffffffffffffffcc4d1c3602f7fc317ffffff0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef000000020000000000000000000000000000004000000100000000000000000045524332303a206d696e7420746f20746865207a65726f20616464726573730008c379a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000000000000000000000070a082300000000000000000000000000000000000000000000000000000000095d89b4000000000000000000000000000000000000000000000000000000000a9059cba00000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000f2fde38b0000000000000000000000000000000000000000000000000000000095d89b4100000000000000000000000000000000000000000000000000000000a457c2d7000000000000000000000000000000000000000000000000000000008456cb58000000000000000000000000000000000000000000000000000000008456cb59000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000715018a600000000000000000000000000000000000000000000000000000000313ce566000000000000000000000000000000000000000000000000000000003f4ba839000000000000000000000000000000000000000000000000000000003f4ba83a0000000000000000000000000000000000000000000000000000000042966c68000000000000000000000000000000000000000000000000000000005c975abb00000000000000000000000000000000000000000000000000000000313ce56700000000000000000000000000000000000000000000000000000000395093510000000000000000000000000000000000000000000000000000000018160ddc0000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000023b872dd0000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000095ea7b302000000000000000000000000000000000000000000008000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008400000080000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000ff00000000000000000000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925207a65726f00000000000000000000000000000000000000000000000000000045524332303a2064656372656173656420616c6c6f77616e63652062656c6f770000000000000000000000000000000000000084000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff7f00000000000000000000000000000000000000200000008000000000000000000000000000000000000000010000000000000000000000000000000000000000020000000000000000000000000000000000002000000080000000000000000062e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258636500000000000000000000000000000000000000000000000000000000000045524332303a206275726e20616d6f756e7420657863656564732062616c616e45524332303a206275726e2066726f6d20746865207a65726f2061646472657373000000000000000000000000000000000000000000000000000000000000004f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000000000000000000000640000008000000000000000005db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa5061757361626c653a206e6f7420706175736564000000000000000000000000726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f206164645061757361626c653a2070617573656400000000000000000000000000000000737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f2061646472656c6c6f77616e636500000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e74206578636565647320614e487b71000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000616c616e6365000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e742065786365656473206245524332303a207472616e7366657220746f20746865207a65726f2061646472657373000000000000000000000000000000000000000000000000000000000045524332303a207472616e736665722066726f6d20746865207a65726f2061646472657373000000000000000000000000000000000000000000000000000000c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85bffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000002caa22cf0d97a31fc44bdda8b6627bd18831f7cfd8edc2af527b3509b1c4a48f
[ 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.