Overview
S Balance
0 S
S Value
-More Info
Private Name Tags
ContractCreator
TokenTracker
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
HippoToken
Compiler Version
v0.8.28+commit.7893614a
Contract Source Code (Solidity)
/** *Submitted for verification at SonicScan.org on 2024-12-19 */ // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC-20 standard as defined in the ERC. */ 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 value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` 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 value) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; /** * @dev Interface for the optional metadata functions from the ERC-20 standard. */ 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); } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) 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 Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol // OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC-20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC-721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC-1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; /** * @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}. * * 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 ERC-20 * applications. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * 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 returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual 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 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 decimals() public view virtual returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual 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 `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` 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 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * Skips emitting an {Approval} event indicating an allowance update. This is not * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve]. * * 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 `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` 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. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` 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. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * * ```solidity * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } } // File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.20; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys a `value` amount of tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 value) public virtual { _burn(_msgSender(), value); } /** * @dev Destroys a `value` amount of tokens from `account`, deducting from * the caller's allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `value`. */ function burnFrom(address account, uint256 value) public virtual { _spendAllowance(account, _msgSender(), value); _burn(account, value); } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @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 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 { _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); } } // File: Hippo.sol pragma solidity ^0.8.28; contract HippoToken is ERC20Burnable, Ownable { // Mapping to track airdropped addresses mapping(address => bool) private _airdropped; // Total initial supply (1 billion tokens with 18 decimals) uint256 public constant INITIAL_SUPPLY = 1_000_000_000 * 10 ** 18; /** * @dev Constructor to initialize the token with its name, symbol, and initial supply. * The entire supply is minted to the contract deployer's address. */ constructor() ERC20("HippoToken", "HIPPO") { _mint(msg.sender, INITIAL_SUPPLY); } /** * @dev Airdrop tokens to multiple recipients in a single transaction. * @param recipients Array of recipient addresses. * @param amounts Array of token amounts to airdrop to each recipient. * * Requirements: * - Only the owner can call this function. * - Recipients and amounts arrays must have the same length. * - A recipient cannot receive tokens more than once through this airdrop. */ function airdrop(address[] calldata recipients, uint256[] calldata amounts) external onlyOwner { require(recipients.length == amounts.length, "Mismatched arrays"); for (uint256 i = 0; i < recipients.length; i++) { require(!_airdropped[recipients[i]], "Address already airdropped"); // Mark address as airdropped and mint tokens _airdropped[recipients[i]] = true; _mint(recipients[i], amounts[i]); } } /** * @dev Override renounceOwnership to prevent accidental loss of contract control. * * This function intentionally reverts, and therefore it does not modify the contract state. */ function renounceOwnership() public view override onlyOwner { revert("Ownership cannot be renounced"); } /** * @dev Check if an address has already been airdropped tokens. * @param account Address to check. * @return True if the address has received airdrop tokens, otherwise false. */ function isAirdropped(address account) external view returns (bool) { return _airdropped[account]; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"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":[],"name":"INITIAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","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":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isAirdropped","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"value","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
608060405234801561001057600080fd5b506040518060400160405280600a8152602001692434b83837aa37b5b2b760b11b81525060405180604001604052806005815260200164484950504f60d81b81525081600390816100619190610300565b50600461006e8282610300565b5050506100876100826100a260201b60201c565b6100a6565b61009d336b033b2e3c9fd0803ce80000006100f8565b6103e5565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166101275760405163ec442f0560e01b8152600060048201526024015b60405180910390fd5b61013360008383610137565b5050565b6001600160a01b03831661016257806002600082825461015791906103be565b909155506101d49050565b6001600160a01b038316600090815260208190526040902054818110156101b55760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161011e565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b0382166101f05760028054829003905561020f565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161025491815260200190565b60405180910390a3505050565b634e487b7160e01b600052604160045260246000fd5b600181811c9082168061028b57607f821691505b6020821081036102ab57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156102fb57806000526020600020601f840160051c810160208510156102d85750805b601f840160051c820191505b818110156102f857600081556001016102e4565b50505b505050565b81516001600160401b0381111561031957610319610261565b61032d816103278454610277565b846102b1565b6020601f82116001811461036157600083156103495750848201515b600019600385901b1c1916600184901b1784556102f8565b600084815260208120601f198516915b828110156103915787850151825560209485019460019092019101610371565b50848210156103af5786840151600019600387901b60f8161c191681555b50505050600190811b01905550565b808201808211156103df57634e487b7160e01b600052601160045260246000fd5b92915050565b610d15806103f46000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a257806395d89b411161007157806395d89b411461021f578063a9059cbb14610227578063bfa51df91461023a578063dd62ed3e14610266578063f2fde38b1461029f57600080fd5b806370a08231146101c0578063715018a6146101e957806379cc6790146101f15780638da5cb5b1461020457600080fd5b80632ff2e9dc116100de5780632ff2e9dc14610176578063313ce5671461018957806342966c681461019857806367243482146101ad57600080fd5b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015157806323b872dd14610163575b600080fd5b6101186102b2565b6040516101259190610a3d565b60405180910390f35b61014161013c366004610aa7565b610344565b6040519015158152602001610125565b6002545b604051908152602001610125565b610141610171366004610ad1565b61035e565b6101556b033b2e3c9fd0803ce800000081565b60405160128152602001610125565b6101ab6101a6366004610b0e565b610382565b005b6101ab6101bb366004610b73565b61038f565b6101556101ce366004610be4565b6001600160a01b031660009081526020819052604090205490565b6101ab610551565b6101ab6101ff366004610aa7565b6105c3565b6005546040516001600160a01b039091168152602001610125565b6101186105dc565b610141610235366004610aa7565b6105eb565b610141610248366004610be4565b6001600160a01b031660009081526006602052604090205460ff1690565b610155610274366004610c06565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101ab6102ad366004610be4565b6105f9565b6060600380546102c190610c39565b80601f01602080910402602001604051908101604052809291908181526020018280546102ed90610c39565b801561033a5780601f1061030f5761010080835404028352916020019161033a565b820191906000526020600020905b81548152906001019060200180831161031d57829003601f168201915b5050505050905090565b600033610352818585610691565b60019150505b92915050565b60003361036c8582856106a3565b610377858585610721565b506001949350505050565b61038c3382610780565b50565b6005546001600160a01b031633146103c25760405162461bcd60e51b81526004016103b990610c73565b60405180910390fd5b8281146104055760405162461bcd60e51b81526020600482015260116024820152704d69736d6174636865642061727261797360781b60448201526064016103b9565b60005b8381101561054a576006600086868481811061042657610426610ca8565b905060200201602081019061043b9190610be4565b6001600160a01b0316815260208101919091526040016000205460ff16156104a55760405162461bcd60e51b815260206004820152601a60248201527f4164647265737320616c72656164792061697264726f7070656400000000000060448201526064016103b9565b6001600660008787858181106104bd576104bd610ca8565b90506020020160208101906104d29190610be4565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905561054285858381811061050f5761050f610ca8565b90506020020160208101906105249190610be4565b84848481811061053657610536610ca8565b905060200201356107b6565b600101610408565b5050505050565b6005546001600160a01b0316331461057b5760405162461bcd60e51b81526004016103b990610c73565b60405162461bcd60e51b815260206004820152601d60248201527f4f776e6572736869702063616e6e6f742062652072656e6f756e63656400000060448201526064016103b9565b6105ce8233836106a3565b6105d88282610780565b5050565b6060600480546102c190610c39565b600033610352818585610721565b6005546001600160a01b031633146106235760405162461bcd60e51b81526004016103b990610c73565b6001600160a01b0381166106885760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103b9565b61038c816107ec565b61069e838383600161083e565b505050565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811461071b578181101561070c57604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016103b9565b61071b8484848403600061083e565b50505050565b6001600160a01b03831661074b57604051634b637e8f60e11b8152600060048201526024016103b9565b6001600160a01b0382166107755760405163ec442f0560e01b8152600060048201526024016103b9565b61069e838383610913565b6001600160a01b0382166107aa57604051634b637e8f60e11b8152600060048201526024016103b9565b6105d882600083610913565b6001600160a01b0382166107e05760405163ec442f0560e01b8152600060048201526024016103b9565b6105d860008383610913565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0384166108685760405163e602df0560e01b8152600060048201526024016103b9565b6001600160a01b03831661089257604051634a1406b160e11b8152600060048201526024016103b9565b6001600160a01b038085166000908152600160209081526040808320938716835292905220829055801561071b57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161090591815260200190565b60405180910390a350505050565b6001600160a01b03831661093e5780600260008282546109339190610cbe565b909155506109b09050565b6001600160a01b038316600090815260208190526040902054818110156109915760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016103b9565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b0382166109cc576002805482900390556109eb565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610a3091815260200190565b60405180910390a3505050565b602081526000825180602084015260005b81811015610a6b5760208186018101516040868401015201610a4e565b506000604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610aa257600080fd5b919050565b60008060408385031215610aba57600080fd5b610ac383610a8b565b946020939093013593505050565b600080600060608486031215610ae657600080fd5b610aef84610a8b565b9250610afd60208501610a8b565b929592945050506040919091013590565b600060208284031215610b2057600080fd5b5035919050565b60008083601f840112610b3957600080fd5b50813567ffffffffffffffff811115610b5157600080fd5b6020830191508360208260051b8501011115610b6c57600080fd5b9250929050565b60008060008060408587031215610b8957600080fd5b843567ffffffffffffffff811115610ba057600080fd5b610bac87828801610b27565b909550935050602085013567ffffffffffffffff811115610bcc57600080fd5b610bd887828801610b27565b95989497509550505050565b600060208284031215610bf657600080fd5b610bff82610a8b565b9392505050565b60008060408385031215610c1957600080fd5b610c2283610a8b565b9150610c3060208401610a8b565b90509250929050565b600181811c90821680610c4d57607f821691505b602082108103610c6d57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b8082018082111561035857634e487b7160e01b600052601160045260246000fdfea2646970667358221220f6e2eff3bc078b75b41b6cc5f812a19b3dd9623f87a56d20aec3b5d05a93514b64736f6c634300081c0033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a257806395d89b411161007157806395d89b411461021f578063a9059cbb14610227578063bfa51df91461023a578063dd62ed3e14610266578063f2fde38b1461029f57600080fd5b806370a08231146101c0578063715018a6146101e957806379cc6790146101f15780638da5cb5b1461020457600080fd5b80632ff2e9dc116100de5780632ff2e9dc14610176578063313ce5671461018957806342966c681461019857806367243482146101ad57600080fd5b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015157806323b872dd14610163575b600080fd5b6101186102b2565b6040516101259190610a3d565b60405180910390f35b61014161013c366004610aa7565b610344565b6040519015158152602001610125565b6002545b604051908152602001610125565b610141610171366004610ad1565b61035e565b6101556b033b2e3c9fd0803ce800000081565b60405160128152602001610125565b6101ab6101a6366004610b0e565b610382565b005b6101ab6101bb366004610b73565b61038f565b6101556101ce366004610be4565b6001600160a01b031660009081526020819052604090205490565b6101ab610551565b6101ab6101ff366004610aa7565b6105c3565b6005546040516001600160a01b039091168152602001610125565b6101186105dc565b610141610235366004610aa7565b6105eb565b610141610248366004610be4565b6001600160a01b031660009081526006602052604090205460ff1690565b610155610274366004610c06565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101ab6102ad366004610be4565b6105f9565b6060600380546102c190610c39565b80601f01602080910402602001604051908101604052809291908181526020018280546102ed90610c39565b801561033a5780601f1061030f5761010080835404028352916020019161033a565b820191906000526020600020905b81548152906001019060200180831161031d57829003601f168201915b5050505050905090565b600033610352818585610691565b60019150505b92915050565b60003361036c8582856106a3565b610377858585610721565b506001949350505050565b61038c3382610780565b50565b6005546001600160a01b031633146103c25760405162461bcd60e51b81526004016103b990610c73565b60405180910390fd5b8281146104055760405162461bcd60e51b81526020600482015260116024820152704d69736d6174636865642061727261797360781b60448201526064016103b9565b60005b8381101561054a576006600086868481811061042657610426610ca8565b905060200201602081019061043b9190610be4565b6001600160a01b0316815260208101919091526040016000205460ff16156104a55760405162461bcd60e51b815260206004820152601a60248201527f4164647265737320616c72656164792061697264726f7070656400000000000060448201526064016103b9565b6001600660008787858181106104bd576104bd610ca8565b90506020020160208101906104d29190610be4565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905561054285858381811061050f5761050f610ca8565b90506020020160208101906105249190610be4565b84848481811061053657610536610ca8565b905060200201356107b6565b600101610408565b5050505050565b6005546001600160a01b0316331461057b5760405162461bcd60e51b81526004016103b990610c73565b60405162461bcd60e51b815260206004820152601d60248201527f4f776e6572736869702063616e6e6f742062652072656e6f756e63656400000060448201526064016103b9565b6105ce8233836106a3565b6105d88282610780565b5050565b6060600480546102c190610c39565b600033610352818585610721565b6005546001600160a01b031633146106235760405162461bcd60e51b81526004016103b990610c73565b6001600160a01b0381166106885760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103b9565b61038c816107ec565b61069e838383600161083e565b505050565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811461071b578181101561070c57604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016103b9565b61071b8484848403600061083e565b50505050565b6001600160a01b03831661074b57604051634b637e8f60e11b8152600060048201526024016103b9565b6001600160a01b0382166107755760405163ec442f0560e01b8152600060048201526024016103b9565b61069e838383610913565b6001600160a01b0382166107aa57604051634b637e8f60e11b8152600060048201526024016103b9565b6105d882600083610913565b6001600160a01b0382166107e05760405163ec442f0560e01b8152600060048201526024016103b9565b6105d860008383610913565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0384166108685760405163e602df0560e01b8152600060048201526024016103b9565b6001600160a01b03831661089257604051634a1406b160e11b8152600060048201526024016103b9565b6001600160a01b038085166000908152600160209081526040808320938716835292905220829055801561071b57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161090591815260200190565b60405180910390a350505050565b6001600160a01b03831661093e5780600260008282546109339190610cbe565b909155506109b09050565b6001600160a01b038316600090815260208190526040902054818110156109915760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016103b9565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b0382166109cc576002805482900390556109eb565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610a3091815260200190565b60405180910390a3505050565b602081526000825180602084015260005b81811015610a6b5760208186018101516040868401015201610a4e565b506000604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610aa257600080fd5b919050565b60008060408385031215610aba57600080fd5b610ac383610a8b565b946020939093013593505050565b600080600060608486031215610ae657600080fd5b610aef84610a8b565b9250610afd60208501610a8b565b929592945050506040919091013590565b600060208284031215610b2057600080fd5b5035919050565b60008083601f840112610b3957600080fd5b50813567ffffffffffffffff811115610b5157600080fd5b6020830191508360208260051b8501011115610b6c57600080fd5b9250929050565b60008060008060408587031215610b8957600080fd5b843567ffffffffffffffff811115610ba057600080fd5b610bac87828801610b27565b909550935050602085013567ffffffffffffffff811115610bcc57600080fd5b610bd887828801610b27565b95989497509550505050565b600060208284031215610bf657600080fd5b610bff82610a8b565b9392505050565b60008060408385031215610c1957600080fd5b610c2283610a8b565b9150610c3060208401610a8b565b90509250929050565b600181811c90821680610c4d57607f821691505b602082108103610c6d57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b8082018082111561035857634e487b7160e01b600052601160045260246000fdfea2646970667358221220f6e2eff3bc078b75b41b6cc5f812a19b3dd9623f87a56d20aec3b5d05a93514b64736f6c634300081c0033
Deployed Bytecode Sourcemap
26027:2210:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12882:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15175:190;;;;;;:::i;:::-;;:::i;:::-;;;1194:14:1;;1187:22;1169:41;;1157:2;1142:18;15175:190:0;1029:187:1;13984:99:0;14063:12;;13984:99;;;1367:25:1;;;1355:2;1340:18;13984:99:0;1221:177:1;15975:249:0;;;;;;:::i;:::-;;:::i;26244:65::-;;26285:24;26244:65;;13835:84;;;13909:2;1924:36:1;;1912:2;1897:18;13835:84:0;1782:184:1;22855:89:0;;;;;;:::i;:::-;;:::i;:::-;;27056:508;;;;;;:::i;:::-;;:::i;14146:118::-;;;;;;:::i;:::-;-1:-1:-1;;;;;14238:18:0;14211:7;14238:18;;;;;;;;;;;;14146:118;27784;;;:::i;23273:161::-;;;;;;:::i;:::-;;:::i;24503:87::-;24576:6;;24503:87;;-1:-1:-1;;;;;24576:6:0;;;3684:51:1;;3672:2;3657:18;24503:87:0;3538:203:1;13092:95:0;;;:::i;14469:182::-;;;;;;:::i;:::-;;:::i;28120:114::-;;;;;;:::i;:::-;-1:-1:-1;;;;;28206:20:0;28182:4;28206:20;;;:11;:20;;;;;;;;;28120:114;14714:142;;;;;;:::i;:::-;-1:-1:-1;;;;;14821:18:0;;;14794:7;14821:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14714:142;25412:201;;;;;;:::i;:::-;;:::i;12882:91::-;12927:13;12960:5;12953:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12882:91;:::o;15175:190::-;15248:4;4368:10;15304:31;4368:10;15320:7;15329:5;15304:8;:31::i;:::-;15353:4;15346:11;;;15175:190;;;;;:::o;15975:249::-;16062:4;4368:10;16120:37;16136:4;4368:10;16151:5;16120:15;:37::i;:::-;16168:26;16178:4;16184:2;16188:5;16168:9;:26::i;:::-;-1:-1:-1;16212:4:0;;15975:249;-1:-1:-1;;;;15975:249:0:o;22855:89::-;22910:26;4368:10;22930:5;22910;:26::i;:::-;22855:89;:::o;27056:508::-;24576:6;;-1:-1:-1;;;;;24576:6:0;4368:10;24723:23;24715:68;;;;-1:-1:-1;;;24715:68:0;;;;;;;:::i;:::-;;;;;;;;;27170:35;;::::1;27162:65;;;::::0;-1:-1:-1;;;27162:65:0;;4959:2:1;27162:65:0::1;::::0;::::1;4941:21:1::0;4998:2;4978:18;;;4971:30;-1:-1:-1;;;5017:18:1;;;5010:47;5074:18;;27162:65:0::1;4757:341:1::0;27162:65:0::1;27253:9;27248:309;27268:21:::0;;::::1;27248:309;;;27320:11;:26;27332:10;;27343:1;27332:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;27320:26:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;27320:26:0;;::::1;;27319:27;27311:66;;;::::0;-1:-1:-1;;;27311:66:0;;5437:2:1;27311:66:0::1;::::0;::::1;5419:21:1::0;5476:2;5456:18;;;5449:30;5515:28;5495:18;;;5488:56;5561:18;;27311:66:0::1;5235:350:1::0;27311:66:0::1;27494:4;27465:11;:26;27477:10;;27488:1;27477:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;27465:26:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;27465:26:0;:33;;-1:-1:-1;;27465:33:0::1;::::0;::::1;;::::0;;;::::1;::::0;;27513:32:::1;27519:10:::0;;27530:1;27519:13;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;27534:7;;27542:1;27534:10;;;;;;;:::i;:::-;;;;;;;27513:5;:32::i;:::-;27291:3;;27248:309;;;;27056:508:::0;;;;:::o;27784:118::-;24576:6;;-1:-1:-1;;;;;24576:6:0;4368:10;24723:23;24715:68;;;;-1:-1:-1;;;24715:68:0;;;;;;;:::i;:::-;27855:39:::1;::::0;-1:-1:-1;;;27855:39:0;;5792:2:1;27855:39:0::1;::::0;::::1;5774:21:1::0;5831:2;5811:18;;;5804:30;5870:31;5850:18;;;5843:59;5919:18;;27855:39:0::1;5590:353:1::0;23273:161:0;23349:45;23365:7;4368:10;23388:5;23349:15;:45::i;:::-;23405:21;23411:7;23420:5;23405;:21::i;:::-;23273:161;;:::o;13092:95::-;13139:13;13172:7;13165:14;;;;;:::i;14469:182::-;14538:4;4368:10;14594:27;4368:10;14611:2;14615:5;14594:9;:27::i;25412:201::-;24576:6;;-1:-1:-1;;;;;24576:6:0;4368:10;24723:23;24715:68;;;;-1:-1:-1;;;24715:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25501:22:0;::::1;25493:73;;;::::0;-1:-1:-1;;;25493:73:0;;6150:2:1;25493:73:0::1;::::0;::::1;6132:21:1::0;6189:2;6169:18;;;6162:30;6228:34;6208:18;;;6201:62;-1:-1:-1;;;6279:18:1;;;6272:36;6325:19;;25493:73:0::1;5948:402:1::0;25493:73:0::1;25577:28;25596:8;25577:18;:28::i;20034:130::-:0;20119:37;20128:5;20135:7;20144:5;20151:4;20119:8;:37::i;:::-;20034:130;;;:::o;21766:487::-;-1:-1:-1;;;;;14821:18:0;;;21866:24;14821:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;21933:37:0;;21929:317;;22010:5;21991:16;:24;21987:132;;;22043:60;;-1:-1:-1;;;22043:60:0;;-1:-1:-1;;;;;6575:32:1;;22043:60:0;;;6557:51:1;6624:18;;;6617:34;;;6667:18;;;6660:34;;;6530:18;;22043:60:0;6355:345:1;21987:132:0;22162:57;22171:5;22178:7;22206:5;22187:16;:24;22213:5;22162:8;:57::i;:::-;21855:398;21766:487;;;:::o;16609:308::-;-1:-1:-1;;;;;16693:18:0;;16689:88;;16735:30;;-1:-1:-1;;;16735:30:0;;16762:1;16735:30;;;3684:51:1;3657:18;;16735:30:0;3538:203:1;16689:88:0;-1:-1:-1;;;;;16791:16:0;;16787:88;;16831:32;;-1:-1:-1;;;16831:32:0;;16860:1;16831:32;;;3684:51:1;3657:18;;16831:32:0;3538:203:1;16787:88:0;16885:24;16893:4;16899:2;16903:5;16885:7;:24::i;19270:211::-;-1:-1:-1;;;;;19341:21:0;;19337:91;;19386:30;;-1:-1:-1;;;19386:30:0;;19413:1;19386:30;;;3684:51:1;3657:18;;19386:30:0;3538:203:1;19337:91:0;19438:35;19446:7;19463:1;19467:5;19438:7;:35::i;18729:213::-;-1:-1:-1;;;;;18800:21:0;;18796:93;;18845:32;;-1:-1:-1;;;18845:32:0;;18874:1;18845:32;;;3684:51:1;3657:18;;18845:32:0;3538:203:1;18796:93:0;18899:35;18915:1;18919:7;18928:5;18899:7;:35::i;25773:191::-;25866:6;;;-1:-1:-1;;;;;25883:17:0;;;-1:-1:-1;;;;;;25883:17:0;;;;;;;25916:40;;25866:6;;;25883:17;25866:6;;25916:40;;25847:16;;25916:40;25836:128;25773:191;:::o;21031:443::-;-1:-1:-1;;;;;21144:19:0;;21140:91;;21187:32;;-1:-1:-1;;;21187:32:0;;21216:1;21187:32;;;3684:51:1;3657:18;;21187:32:0;3538:203:1;21140:91:0;-1:-1:-1;;;;;21245:21:0;;21241:92;;21290:31;;-1:-1:-1;;;21290:31:0;;21318:1;21290:31;;;3684:51:1;3657:18;;21290:31:0;3538:203:1;21241:92:0;-1:-1:-1;;;;;21343:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;21389:78;;;;21440:7;-1:-1:-1;;;;;21424:31:0;21433:5;-1:-1:-1;;;;;21424:31:0;;21449:5;21424:31;;;;1367:25:1;;1355:2;1340:18;;1221:177;21424:31:0;;;;;;;;21031:443;;;;:::o;17241:1135::-;-1:-1:-1;;;;;17331:18:0;;17327:552;;17485:5;17469:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;17327:552:0;;-1:-1:-1;17327:552:0;;-1:-1:-1;;;;;17545:15:0;;17523:19;17545:15;;;;;;;;;;;17579:19;;;17575:117;;;17626:50;;-1:-1:-1;;;17626:50:0;;-1:-1:-1;;;;;6575:32:1;;17626:50:0;;;6557:51:1;6624:18;;;6617:34;;;6667:18;;;6660:34;;;6530:18;;17626:50:0;6355:345:1;17575:117:0;-1:-1:-1;;;;;17815:15:0;;:9;:15;;;;;;;;;;17833:19;;;;17815:37;;17327:552;-1:-1:-1;;;;;17895:16:0;;17891:435;;18061:12;:21;;;;;;;17891:435;;;-1:-1:-1;;;;;18277:13:0;;:9;:13;;;;;;;;;;:22;;;;;;17891:435;18358:2;-1:-1:-1;;;;;18343:25:0;18352:4;-1:-1:-1;;;;;18343:25:0;;18362:5;18343:25;;;;1367::1;;1355:2;1340:18;;1221:177;18343:25:0;;;;;;;;17241:1135;;;:::o;14:527:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;263:1;273:140;287:6;284:1;281:13;273:140;;;398:2;382:14;;;378:23;;372:30;367:2;348:17;;;344:26;337:66;302:10;273:140;;;277:3;462:1;457:2;448:6;437:9;433:22;429:31;422:42;532:2;525;521:7;516:2;508:6;504:15;500:29;489:9;485:45;481:54;473:62;;;14:527;;;;:::o;546:173::-;614:20;;-1:-1:-1;;;;;663:31:1;;653:42;;643:70;;709:1;706;699:12;643:70;546:173;;;:::o;724:300::-;792:6;800;853:2;841:9;832:7;828:23;824:32;821:52;;;869:1;866;859:12;821:52;892:29;911:9;892:29;:::i;:::-;882:39;990:2;975:18;;;;962:32;;-1:-1:-1;;;724:300:1:o;1403:374::-;1480:6;1488;1496;1549:2;1537:9;1528:7;1524:23;1520:32;1517:52;;;1565:1;1562;1555:12;1517:52;1588:29;1607:9;1588:29;:::i;:::-;1578:39;;1636:38;1670:2;1659:9;1655:18;1636:38;:::i;:::-;1403:374;;1626:48;;-1:-1:-1;;;1743:2:1;1728:18;;;;1715:32;;1403:374::o;1971:226::-;2030:6;2083:2;2071:9;2062:7;2058:23;2054:32;2051:52;;;2099:1;2096;2089:12;2051:52;-1:-1:-1;2144:23:1;;1971:226;-1:-1:-1;1971:226:1:o;2202:367::-;2265:8;2275:6;2329:3;2322:4;2314:6;2310:17;2306:27;2296:55;;2347:1;2344;2337:12;2296:55;-1:-1:-1;2370:20:1;;2413:18;2402:30;;2399:50;;;2445:1;2442;2435:12;2399:50;2482:4;2474:6;2470:17;2458:29;;2542:3;2535:4;2525:6;2522:1;2518:14;2510:6;2506:27;2502:38;2499:47;2496:67;;;2559:1;2556;2549:12;2496:67;2202:367;;;;;:::o;2574:768::-;2696:6;2704;2712;2720;2773:2;2761:9;2752:7;2748:23;2744:32;2741:52;;;2789:1;2786;2779:12;2741:52;2829:9;2816:23;2862:18;2854:6;2851:30;2848:50;;;2894:1;2891;2884:12;2848:50;2933:70;2995:7;2986:6;2975:9;2971:22;2933:70;:::i;:::-;3022:8;;-1:-1:-1;2907:96:1;-1:-1:-1;;3110:2:1;3095:18;;3082:32;3139:18;3126:32;;3123:52;;;3171:1;3168;3161:12;3123:52;3210:72;3274:7;3263:8;3252:9;3248:24;3210:72;:::i;:::-;2574:768;;;;-1:-1:-1;3301:8:1;-1:-1:-1;;;;2574:768:1:o;3347:186::-;3406:6;3459:2;3447:9;3438:7;3434:23;3430:32;3427:52;;;3475:1;3472;3465:12;3427:52;3498:29;3517:9;3498:29;:::i;:::-;3488:39;3347:186;-1:-1:-1;;;3347:186:1:o;3746:260::-;3814:6;3822;3875:2;3863:9;3854:7;3850:23;3846:32;3843:52;;;3891:1;3888;3881:12;3843:52;3914:29;3933:9;3914:29;:::i;:::-;3904:39;;3962:38;3996:2;3985:9;3981:18;3962:38;:::i;:::-;3952:48;;3746:260;;;;;:::o;4011:380::-;4090:1;4086:12;;;;4133;;;4154:61;;4208:4;4200:6;4196:17;4186:27;;4154:61;4261:2;4253:6;4250:14;4230:18;4227:38;4224:161;;4307:10;4302:3;4298:20;4295:1;4288:31;4342:4;4339:1;4332:15;4370:4;4367:1;4360:15;4224:161;;4011:380;;;:::o;4396:356::-;4598:2;4580:21;;;4617:18;;;4610:30;4676:34;4671:2;4656:18;;4649:62;4743:2;4728:18;;4396:356::o;5103:127::-;5164:10;5159:3;5155:20;5152:1;5145:31;5195:4;5192:1;5185:15;5219:4;5216:1;5209:15;6705:222;6770:9;;;6791:10;;;6788:133;;;6843:10;6838:3;6834:20;6831:1;6824:31;6878:4;6875:1;6868:15;6906:4;6903:1;6896:15
Swarm Source
ipfs://f6e2eff3bc078b75b41b6cc5f812a19b3dd9623f87a56d20aec3b5d05a93514b
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.