ERC-20
Overview
Max Total Supply
100,000,000 MEEP
Holders
109
Total Transfers
-
Market
Price
-
Onchain Market Cap
-
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
MEEPSONIC
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity)
/** *Submitted for verification at SonicScan.org on 2024-12-21 */ /** *Submitted for verification at ftmscan.com on 2024-10-08 */ // SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the 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.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; /** * @dev Interface for the optional metadata functions from the ERC20 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 (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } } // File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 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 ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-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 ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 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.0.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 ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. */ 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}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `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: * ``` * 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/access/Ownable.sol // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; /** * @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. * * The initial owner is set to the address provided by the deployer. 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; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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 { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _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: contracts/token.sol pragma solidity ^0.8.20; contract MEEPSONIC is ERC20, Ownable(msg.sender) { bool public lubricating = true; address public liquidityPool; // Mint the totalSupply (100 M) to the deployer constructor() ERC20("MEEP", "MEEP") { _mint(msg.sender, 100000000 * 10 ** 18); } // Function to set lubricating state function setLubricating(bool _state) external onlyOwner { lubricating = _state; } // Define the LP address to enable trading! function setLiquidityPool(address _liquidityPool) external onlyOwner { liquidityPool = _liquidityPool; } // Override _update function to include lubricating logic (previously _beforeTokenTransfer) function _update( address from, address to, uint256 amount ) internal virtual override { super._update(from, to, amount); // If liquidityPool is address(0) we've not yet enabled trading. Liquidity Loading.... if(liquidityPool == address(0)) { require(from == owner() || to == owner(), "Patience - trading hasn't started yet"); return; } // Allow deployer (owner) to send/receive any amount and the liquidityPool to receive any amount. // This allows for loading of the LP, and for people to sell tokens into the LP whilst lubrication in progress. if (lubricating && from != owner() && to != liquidityPool) { // Require that a receiving wallet will not hold more than 1% of supply after a transfer whilst lubrication is in effect require( balanceOf(to) <= totalSupply() / 100, "Just getting warmed up, limit of 1% of MEEP until warm up is complete." ); } } // Renounce the contract and pass ownership to address(0) to lock the contract forever more. function renounceTokenOwnership() public onlyOwner { renounceOwnership(); } }
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"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","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":[{"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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lubricating","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":"nonpayable","type":"function"},{"inputs":[],"name":"renounceTokenOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_liquidityPool","type":"address"}],"name":"setLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setLubricating","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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
60806040526005805460ff60a01b1916600160a01b17905534801561002357600080fd5b5060408051808201825260048082526304d4545560e41b60208084018290528451808601909552918452908301523391600361005f83826104b0565b50600461006c82826104b0565b5050506001600160a01b03811661009e57604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b6100a7816100c2565b506100bd336a52b7d2dcc80cd2e4000000610114565b6105b7565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821661013e5760405163ec442f0560e01b815260006004820152602401610095565b61014a6000838361014e565b5050565b6101598383836102e8565b6006546001600160a01b03166101f1576005546001600160a01b038481169116148061019257506005546001600160a01b038381169116145b6101ec5760405162461bcd60e51b815260206004820152602560248201527f50617469656e6365202d2074726164696e67206861736e27742073746172746560448201526419081e595d60da1b6064820152608401610095565b505050565b600554600160a01b900460ff16801561021857506005546001600160a01b03848116911614155b801561023257506006546001600160a01b03838116911614155b156101ec57606461024260025490565b61024c919061056e565b6001600160a01b03831660009081526020819052604090205411156101ec5760405162461bcd60e51b815260206004820152604660248201527f4a7573742067657474696e67207761726d65642075702c206c696d6974206f6660448201527f203125206f66204d45455020756e74696c207761726d20757020697320636f6d606482015265383632ba329760d11b608482015260a401610095565b6001600160a01b0383166103135780600260008282546103089190610590565b909155506103859050565b6001600160a01b038316600090815260208190526040902054818110156103665760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610095565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b0382166103a1576002805482900390556103c0565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161040591815260200190565b60405180910390a3505050565b634e487b7160e01b600052604160045260246000fd5b600181811c9082168061043c57607f821691505b60208210810361045c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156101ec57806000526020600020601f840160051c810160208510156104895750805b601f840160051c820191505b818110156104a95760008155600101610495565b5050505050565b81516001600160401b038111156104c9576104c9610412565b6104dd816104d78454610428565b84610462565b6020601f82116001811461051157600083156104f95750848201515b600019600385901b1c1916600184901b1784556104a9565b600084815260208120601f198516915b828110156105415787850151825560209485019460019092019101610521565b508482101561055f5786840151600019600387901b60f8161c191681555b50505050600190811b01905550565b60008261058b57634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156105b157634e487b7160e01b600052601160045260246000fd5b92915050565b610b3e806105c66000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a257806395d89b411161007157806395d89b411461022e578063a9059cbb14610236578063dd62ed3e14610249578063e14f08d514610282578063f2fde38b1461028a57600080fd5b806370a08231146101d8578063715018a6146102015780638da5cb5b1461020957806395afda0c1461021a57600080fd5b806323b872dd116100de57806323b872dd14610178578063313ce5671461018b5780634bc3e7db1461019a578063665a11ca146101ad57600080fd5b8063018770201461011057806306fdde0314610125578063095ea7b31461014357806318160ddd14610166575b600080fd5b61012361011e36600461095f565b61029d565b005b61012d6102c7565b60405161013a9190610981565b60405180910390f35b6101566101513660046109cf565b610359565b604051901515815260200161013a565b6002545b60405190815260200161013a565b6101566101863660046109f9565b610373565b6040516012815260200161013a565b6101236101a8366004610a36565b610397565b6006546101c0906001600160a01b031681565b6040516001600160a01b03909116815260200161013a565b61016a6101e636600461095f565b6001600160a01b031660009081526020819052604090205490565b6101236103bd565b6005546001600160a01b03166101c0565b60055461015690600160a01b900460ff1681565b61012d6103d1565b6101566102443660046109cf565b6103e0565b61016a610257366004610a58565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101236103ee565b61012361029836600461095f565b6103fe565b6102a5610441565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6060600380546102d690610a8b565b80601f016020809104026020016040519081016040528092919081815260200182805461030290610a8b565b801561034f5780601f106103245761010080835404028352916020019161034f565b820191906000526020600020905b81548152906001019060200180831161033257829003601f168201915b5050505050905090565b60003361036781858561046e565b60019150505b92915050565b600033610381858285610480565b61038c8585856104fe565b506001949350505050565b61039f610441565b60058054911515600160a01b0260ff60a01b19909216919091179055565b6103c5610441565b6103cf600061055d565b565b6060600480546102d690610a8b565b6000336103678185856104fe565b6103f6610441565b6103cf6103bd565b610406610441565b6001600160a01b03811661043557604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b61043e8161055d565b50565b6005546001600160a01b031633146103cf5760405163118cdaa760e01b815233600482015260240161042c565b61047b83838360016105af565b505050565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981146104f857818110156104e957604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161042c565b6104f8848484840360006105af565b50505050565b6001600160a01b03831661052857604051634b637e8f60e11b81526000600482015260240161042c565b6001600160a01b0382166105525760405163ec442f0560e01b81526000600482015260240161042c565b61047b838383610684565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0384166105d95760405163e602df0560e01b81526000600482015260240161042c565b6001600160a01b03831661060357604051634a1406b160e11b81526000600482015260240161042c565b6001600160a01b03808516600090815260016020908152604080832093871683529290522082905580156104f857826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161067691815260200190565b60405180910390a350505050565b61068f838383610819565b6006546001600160a01b0316610722576005546001600160a01b03848116911614806106c857506005546001600160a01b038381169116145b61047b5760405162461bcd60e51b815260206004820152602560248201527f50617469656e6365202d2074726164696e67206861736e27742073746172746560448201526419081e595d60da1b606482015260840161042c565b600554600160a01b900460ff16801561074957506005546001600160a01b03848116911614155b801561076357506006546001600160a01b03838116911614155b1561047b57606461077360025490565b61077d9190610ac5565b6001600160a01b038316600090815260208190526040902054111561047b5760405162461bcd60e51b815260206004820152604660248201527f4a7573742067657474696e67207761726d65642075702c206c696d6974206f6660448201527f203125206f66204d45455020756e74696c207761726d20757020697320636f6d606482015265383632ba329760d11b608482015260a40161042c565b6001600160a01b0383166108445780600260008282546108399190610ae7565b909155506108b69050565b6001600160a01b038316600090815260208190526040902054818110156108975760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161042c565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b0382166108d2576002805482900390556108f1565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161093691815260200190565b60405180910390a3505050565b80356001600160a01b038116811461095a57600080fd5b919050565b60006020828403121561097157600080fd5b61097a82610943565b9392505050565b602081526000825180602084015260005b818110156109af5760208186018101516040868401015201610992565b506000604082850101526040601f19601f83011684010191505092915050565b600080604083850312156109e257600080fd5b6109eb83610943565b946020939093013593505050565b600080600060608486031215610a0e57600080fd5b610a1784610943565b9250610a2560208501610943565b929592945050506040919091013590565b600060208284031215610a4857600080fd5b8135801515811461097a57600080fd5b60008060408385031215610a6b57600080fd5b610a7483610943565b9150610a8260208401610943565b90509250929050565b600181811c90821680610a9f57607f821691505b602082108103610abf57634e487b7160e01b600052602260045260246000fd5b50919050565b600082610ae257634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561036d57634e487b7160e01b600052601160045260246000fdfea26469706673582212200a277acb7b224289551218f743309d805aaf8ead5c3fccd0d9efbc6b2cdd3a5c64736f6c634300081a0033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a257806395d89b411161007157806395d89b411461022e578063a9059cbb14610236578063dd62ed3e14610249578063e14f08d514610282578063f2fde38b1461028a57600080fd5b806370a08231146101d8578063715018a6146102015780638da5cb5b1461020957806395afda0c1461021a57600080fd5b806323b872dd116100de57806323b872dd14610178578063313ce5671461018b5780634bc3e7db1461019a578063665a11ca146101ad57600080fd5b8063018770201461011057806306fdde0314610125578063095ea7b31461014357806318160ddd14610166575b600080fd5b61012361011e36600461095f565b61029d565b005b61012d6102c7565b60405161013a9190610981565b60405180910390f35b6101566101513660046109cf565b610359565b604051901515815260200161013a565b6002545b60405190815260200161013a565b6101566101863660046109f9565b610373565b6040516012815260200161013a565b6101236101a8366004610a36565b610397565b6006546101c0906001600160a01b031681565b6040516001600160a01b03909116815260200161013a565b61016a6101e636600461095f565b6001600160a01b031660009081526020819052604090205490565b6101236103bd565b6005546001600160a01b03166101c0565b60055461015690600160a01b900460ff1681565b61012d6103d1565b6101566102443660046109cf565b6103e0565b61016a610257366004610a58565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101236103ee565b61012361029836600461095f565b6103fe565b6102a5610441565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6060600380546102d690610a8b565b80601f016020809104026020016040519081016040528092919081815260200182805461030290610a8b565b801561034f5780601f106103245761010080835404028352916020019161034f565b820191906000526020600020905b81548152906001019060200180831161033257829003601f168201915b5050505050905090565b60003361036781858561046e565b60019150505b92915050565b600033610381858285610480565b61038c8585856104fe565b506001949350505050565b61039f610441565b60058054911515600160a01b0260ff60a01b19909216919091179055565b6103c5610441565b6103cf600061055d565b565b6060600480546102d690610a8b565b6000336103678185856104fe565b6103f6610441565b6103cf6103bd565b610406610441565b6001600160a01b03811661043557604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b61043e8161055d565b50565b6005546001600160a01b031633146103cf5760405163118cdaa760e01b815233600482015260240161042c565b61047b83838360016105af565b505050565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981146104f857818110156104e957604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161042c565b6104f8848484840360006105af565b50505050565b6001600160a01b03831661052857604051634b637e8f60e11b81526000600482015260240161042c565b6001600160a01b0382166105525760405163ec442f0560e01b81526000600482015260240161042c565b61047b838383610684565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0384166105d95760405163e602df0560e01b81526000600482015260240161042c565b6001600160a01b03831661060357604051634a1406b160e11b81526000600482015260240161042c565b6001600160a01b03808516600090815260016020908152604080832093871683529290522082905580156104f857826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161067691815260200190565b60405180910390a350505050565b61068f838383610819565b6006546001600160a01b0316610722576005546001600160a01b03848116911614806106c857506005546001600160a01b038381169116145b61047b5760405162461bcd60e51b815260206004820152602560248201527f50617469656e6365202d2074726164696e67206861736e27742073746172746560448201526419081e595d60da1b606482015260840161042c565b600554600160a01b900460ff16801561074957506005546001600160a01b03848116911614155b801561076357506006546001600160a01b03838116911614155b1561047b57606461077360025490565b61077d9190610ac5565b6001600160a01b038316600090815260208190526040902054111561047b5760405162461bcd60e51b815260206004820152604660248201527f4a7573742067657474696e67207761726d65642075702c206c696d6974206f6660448201527f203125206f66204d45455020756e74696c207761726d20757020697320636f6d606482015265383632ba329760d11b608482015260a40161042c565b6001600160a01b0383166108445780600260008282546108399190610ae7565b909155506108b69050565b6001600160a01b038316600090815260208190526040902054818110156108975760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161042c565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b0382166108d2576002805482900390556108f1565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161093691815260200190565b60405180910390a3505050565b80356001600160a01b038116811461095a57600080fd5b919050565b60006020828403121561097157600080fd5b61097a82610943565b9392505050565b602081526000825180602084015260005b818110156109af5760208186018101516040868401015201610992565b506000604082850101526040601f19601f83011684010191505092915050565b600080604083850312156109e257600080fd5b6109eb83610943565b946020939093013593505050565b600080600060608486031215610a0e57600080fd5b610a1784610943565b9250610a2560208501610943565b929592945050506040919091013590565b600060208284031215610a4857600080fd5b8135801515811461097a57600080fd5b60008060408385031215610a6b57600080fd5b610a7483610943565b9150610a8260208401610943565b90509250929050565b600181811c90821680610a9f57607f821691505b602082108103610abf57634e487b7160e01b600052602260045260246000fd5b50919050565b600082610ae257634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561036d57634e487b7160e01b600052601160045260246000fdfea26469706673582212200a277acb7b224289551218f743309d805aaf8ead5c3fccd0d9efbc6b2cdd3a5c64736f6c634300081a0033
Deployed Bytecode Sourcemap
25849:1966:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26333:118;;;;;;:::i;:::-;;:::i;:::-;;13272:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15565:190;;;;;;:::i;:::-;;:::i;:::-;;;1385:14:1;;1378:22;1360:41;;1348:2;1333:18;15565:190:0;1220:187:1;14374:99:0;14453:12;;14374:99;;;1558:25:1;;;1546:2;1531:18;14374:99:0;1412:177:1;16333:249:0;;;;;;:::i;:::-;;:::i;14225:84::-;;;14299:2;2115:36:1;;2103:2;2088:18;14225:84:0;1973:184:1;26181:95:0;;;;;;:::i;:::-;;:::i;25947:28::-;;;;;-1:-1:-1;;;;;25947:28:0;;;;;;-1:-1:-1;;;;;2604:32:1;;;2586:51;;2574:2;2559:18;25947:28:0;2440:203:1;14536:118:0;;;;;;:::i;:::-;-1:-1:-1;;;;;14628:18:0;14601:7;14628:18;;;;;;;;;;;;14536:118;24947:103;;;:::i;24272:87::-;24345:6;;-1:-1:-1;;;;;24345:6:0;24272:87;;25910:30;;;;;-1:-1:-1;;;25910:30:0;;;;;;13482:95;;;:::i;14859:182::-;;;;;;:::i;:::-;;:::i;15104:142::-;;;;;;:::i;:::-;-1:-1:-1;;;;;15211:18:0;;;15184:7;15211:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15104:142;27723:89;;;:::i;25205:220::-;;;;;;:::i;:::-;;:::i;26333:118::-;24158:13;:11;:13::i;:::-;26413::::1;:30:::0;;-1:-1:-1;;;;;;26413:30:0::1;-1:-1:-1::0;;;;;26413:30:0;;;::::1;::::0;;;::::1;::::0;;26333:118::o;13272:91::-;13317:13;13350:5;13343:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13272:91;:::o;15565:190::-;15638:4;4357:10;15694:31;4357:10;15710:7;15719:5;15694:8;:31::i;:::-;15743:4;15736:11;;;15565:190;;;;;:::o;16333:249::-;16420:4;4357:10;16478:37;16494:4;4357:10;16509:5;16478:15;:37::i;:::-;16526:26;16536:4;16542:2;16546:5;16526:9;:26::i;:::-;-1:-1:-1;16570:4:0;;16333:249;-1:-1:-1;;;;16333:249:0:o;26181:95::-;24158:13;:11;:13::i;:::-;26248:11:::1;:20:::0;;;::::1;;-1:-1:-1::0;;;26248:20:0::1;-1:-1:-1::0;;;;26248:20:0;;::::1;::::0;;;::::1;::::0;;26181:95::o;24947:103::-;24158:13;:11;:13::i;:::-;25012:30:::1;25039:1;25012:18;:30::i;:::-;24947:103::o:0;13482:95::-;13529:13;13562:7;13555:14;;;;;:::i;14859:182::-;14928:4;4357:10;14984:27;4357:10;15001:2;15005:5;14984:9;:27::i;27723:89::-;24158:13;:11;:13::i;:::-;27785:19:::1;:17;:19::i;25205:220::-:0;24158:13;:11;:13::i;:::-;-1:-1:-1;;;;;25290:22:0;::::1;25286:93;;25336:31;::::0;-1:-1:-1;;;25336:31:0;;25364:1:::1;25336:31;::::0;::::1;2586:51:1::0;2559:18;;25336:31:0::1;;;;;;;;25286:93;25389:28;25408:8;25389:18;:28::i;:::-;25205:220:::0;:::o;24437:166::-;24345:6;;-1:-1:-1;;;;;24345:6:0;4357:10;24497:23;24493:103;;24544:40;;-1:-1:-1;;;24544:40:0;;4357:10;24544:40;;;2586:51:1;2559:18;;24544:40:0;2440:203:1;20392:130:0;20477:37;20486:5;20493:7;20502:5;20509:4;20477:8;:37::i;:::-;20392:130;;;:::o;22108:487::-;-1:-1:-1;;;;;15211:18:0;;;22208:24;15211:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;22275:37:0;;22271:317;;22352:5;22333:16;:24;22329:132;;;22385:60;;-1:-1:-1;;;22385:60:0;;-1:-1:-1;;;;;3518:32:1;;22385:60:0;;;3500:51:1;3567:18;;;3560:34;;;3610:18;;;3603:34;;;3473:18;;22385:60:0;3298:345:1;22329:132:0;22504:57;22513:5;22520:7;22548:5;22529:16;:24;22555:5;22504:8;:57::i;:::-;22197:398;22108:487;;;:::o;16967:308::-;-1:-1:-1;;;;;17051:18:0;;17047:88;;17093:30;;-1:-1:-1;;;17093:30:0;;17120:1;17093:30;;;2586:51:1;2559:18;;17093:30:0;2440:203:1;17047:88:0;-1:-1:-1;;;;;17149:16:0;;17145:88;;17189:32;;-1:-1:-1;;;17189:32:0;;17218:1;17189:32;;;2586:51:1;2559:18;;17189:32:0;2440:203:1;17145:88:0;17243:24;17251:4;17257:2;17261:5;17243:7;:24::i;25585:191::-;25678:6;;;-1:-1:-1;;;;;25695:17:0;;;-1:-1:-1;;;;;;25695:17:0;;;;;;;25728:40;;25678:6;;;25695:17;25678:6;;25728:40;;25659:16;;25728:40;25648:128;25585:191;:::o;21373:443::-;-1:-1:-1;;;;;21486:19:0;;21482:91;;21529:32;;-1:-1:-1;;;21529:32:0;;21558:1;21529:32;;;2586:51:1;2559:18;;21529:32:0;2440:203:1;21482:91:0;-1:-1:-1;;;;;21587:21:0;;21583:92;;21632:31;;-1:-1:-1;;;21632:31:0;;21660:1;21632:31;;;2586:51:1;2559:18;;21632:31:0;2440:203:1;21583:92:0;-1:-1:-1;;;;;21685:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;21731:78;;;;21782:7;-1:-1:-1;;;;;21766:31:0;21775:5;-1:-1:-1;;;;;21766:31:0;;21791:5;21766:31;;;;1558:25:1;;1546:2;1531:18;;1412:177;21766:31:0;;;;;;;;21373:443;;;;:::o;26556:1063::-;26686:31;26700:4;26706:2;26710:6;26686:13;:31::i;:::-;26827:13;;-1:-1:-1;;;;;26827:13:0;26824:162;;24345:6;;-1:-1:-1;;;;;26879:15:0;;;24345:6;;26879:15;;:32;;-1:-1:-1;24345:6:0;;-1:-1:-1;;;;;26898:13:0;;;24345:6;;26898:13;26879:32;26871:82;;;;-1:-1:-1;;;26871:82:0;;3850:2:1;26871:82:0;;;3832:21:1;3889:2;3869:18;;;3862:30;3928:34;3908:18;;;3901:62;-1:-1:-1;;;3979:18:1;;;3972:35;4024:19;;26871:82:0;3648:401:1;26824:162:0;27228:11;;-1:-1:-1;;;27228:11:0;;;;:30;;;;-1:-1:-1;24345:6:0;;-1:-1:-1;;;;;27243:15:0;;;24345:6;;27243:15;;27228:30;:53;;;;-1:-1:-1;27268:13:0;;-1:-1:-1;;;;;27262:19:0;;;27268:13;;27262:19;;27228:53;27224:388;;;27491:3;27475:13;14453:12;;;14374:99;27475:13;:19;;;;:::i;:::-;-1:-1:-1;;;;;14628:18:0;;14601:7;14628:18;;;;;;;;;;;27458:36;;27432:168;;;;-1:-1:-1;;;27432:168:0;;4478:2:1;27432:168:0;;;4460:21:1;4517:2;4497:18;;;4490:30;4556:34;4536:18;;;4529:62;4627:34;4607:18;;;4600:62;-1:-1:-1;;;4678:19:1;;;4671:37;4725:19;;27432:168:0;4276:474:1;17599:1135:0;-1:-1:-1;;;;;17689:18:0;;17685:552;;17843:5;17827:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;17685:552:0;;-1:-1:-1;17685:552:0;;-1:-1:-1;;;;;17903:15:0;;17881:19;17903:15;;;;;;;;;;;17937:19;;;17933:117;;;17984:50;;-1:-1:-1;;;17984:50:0;;-1:-1:-1;;;;;3518:32:1;;17984:50:0;;;3500:51:1;3567:18;;;3560:34;;;3610:18;;;3603:34;;;3473:18;;17984:50:0;3298:345:1;17933:117:0;-1:-1:-1;;;;;18173:15:0;;:9;:15;;;;;;;;;;18191:19;;;;18173:37;;17685:552;-1:-1:-1;;;;;18253:16:0;;18249:435;;18419:12;:21;;;;;;;18249:435;;;-1:-1:-1;;;;;18635:13:0;;:9;:13;;;;;;;;;;:22;;;;;;18249:435;18716:2;-1:-1:-1;;;;;18701:25:0;18710:4;-1:-1:-1;;;;;18701:25:0;;18720:5;18701:25;;;;1558::1;;1546:2;1531:18;;1412:177;18701:25:0;;;;;;;;17599:1135;;;:::o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;:::-;333:39;192:186;-1:-1:-1;;;192:186:1:o;383:527::-;532:2;521:9;514:21;495:4;564:6;558:13;607:6;602:2;591:9;587:18;580:34;632:1;642:140;656:6;653:1;650:13;642:140;;;767:2;751:14;;;747:23;;741:30;736:2;717:17;;;713:26;706:66;671:10;642:140;;;646:3;831:1;826:2;817:6;806:9;802:22;798:31;791:42;901:2;894;890:7;885:2;877:6;873:15;869:29;858:9;854:45;850:54;842:62;;;383:527;;;;:::o;915:300::-;983:6;991;1044:2;1032:9;1023:7;1019:23;1015:32;1012:52;;;1060:1;1057;1050:12;1012:52;1083:29;1102:9;1083:29;:::i;:::-;1073:39;1181:2;1166:18;;;;1153:32;;-1:-1:-1;;;915:300:1:o;1594:374::-;1671:6;1679;1687;1740:2;1728:9;1719:7;1715:23;1711:32;1708:52;;;1756:1;1753;1746:12;1708:52;1779:29;1798:9;1779:29;:::i;:::-;1769:39;;1827:38;1861:2;1850:9;1846:18;1827:38;:::i;:::-;1594:374;;1817:48;;-1:-1:-1;;;1934:2:1;1919:18;;;;1906:32;;1594:374::o;2162:273::-;2218:6;2271:2;2259:9;2250:7;2246:23;2242:32;2239:52;;;2287:1;2284;2277:12;2239:52;2326:9;2313:23;2379:5;2372:13;2365:21;2358:5;2355:32;2345:60;;2401:1;2398;2391:12;2648:260;2716:6;2724;2777:2;2765:9;2756:7;2752:23;2748:32;2745:52;;;2793:1;2790;2783:12;2745:52;2816:29;2835:9;2816:29;:::i;:::-;2806:39;;2864:38;2898:2;2887:9;2883:18;2864:38;:::i;:::-;2854:48;;2648:260;;;;;:::o;2913:380::-;2992:1;2988:12;;;;3035;;;3056:61;;3110:4;3102:6;3098:17;3088:27;;3056:61;3163:2;3155:6;3152:14;3132:18;3129:38;3126:161;;3209:10;3204:3;3200:20;3197:1;3190:31;3244:4;3241:1;3234:15;3272:4;3269:1;3262:15;3126:161;;2913:380;;;:::o;4054:217::-;4094:1;4120;4110:132;;4164:10;4159:3;4155:20;4152:1;4145:31;4199:4;4196:1;4189:15;4227:4;4224:1;4217:15;4110:132;-1:-1:-1;4256:9:1;;4054:217::o;4755:222::-;4820:9;;;4841:10;;;4838:133;;;4893:10;4888:3;4884:20;4881:1;4874:31;4928:4;4925:1;4918:15;4956:4;4953:1;4946:15
Swarm Source
ipfs://0a277acb7b224289551218f743309d805aaf8ead5c3fccd0d9efbc6b2cdd3a5c
[ 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.