ERC-20
MEME
Overview
Max Total Supply
100,000,000 MEM
Holders
682 (0.00%)
Market
Price
$0.01 @ 0.000004 ETH (+1.97%)
Onchain Market Cap
$1,278,594.00
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
14,717.8832149161 MEMValue
$188.18 ( ~0.0559063190552076 Eth) [0.0147%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Memecoin
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-06-10 */ // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/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) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The defaut value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); _approve(sender, _msgSender(), currentAllowance - amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); _approve(_msgSender(), spender, currentAllowance - subtractedValue); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); _balances[sender] = senderBalance - amount; _balances[recipient] += amount; emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); _balances[account] = accountBalance - amount; _totalSupply -= amount; emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } // File: @openzeppelin/contracts/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 () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: @openzeppelin/contracts/security/Pausable.sol pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor () { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File: contracts/Memecoin.sol pragma solidity 0.8.0; /** * @title Memecoin token * @dev main ERC20 currency for meme.com contracts */ contract Memecoin is Ownable, Pausable, ERC20 { constructor(uint256 _totalSupply, string memory _memeTokenName, string memory _memeTokenSymbol) ERC20(_memeTokenName, _memeTokenSymbol) { _mint(msg.sender, _totalSupply); } /** * @dev See {ERC20-transfer}. * - adds trasfer only when contract is not paused */ function transfer(address recipient, uint256 amount) public virtual override whenNotPaused returns (bool) { return super.transfer(recipient, amount); } /** * @dev See {ERC20-transferFrom}. * - adds trasferForm only when contract is not paused */ function transferFrom(address from, address to, uint256 value) public virtual override whenNotPaused returns (bool) { return super.transferFrom(from, to, value); } /** * @dev Allows address to burn a number of coins in its ownership * @param _amount Amount of coins to burn */ function burn(uint256 _amount) virtual external whenNotPaused { _burn(msg.sender, _amount); } /** * @dev Pause contract */ function pause() external onlyOwner { _pause(); } /** * @dev Unpoause contract */ function unpause() external onlyOwner { _unpause(); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"string","name":"_memeTokenName","type":"string"},{"internalType":"string","name":"_memeTokenSymbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620014be380380620014be833981016040819052620000349162000310565b8181600062000042620000e2565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506000805460ff60a01b191690558151620000ae906004906020850190620001bf565b508051620000c4906005906020840190620001bf565b505050620000d93384620000e660201b60201c565b50505062000439565b3390565b6001600160a01b038216620001185760405162461bcd60e51b81526004016200010f9062000381565b60405180910390fd5b6200012660008383620001ba565b80600360008282546200013a9190620003c1565b90915550506001600160a01b0382166000908152600160205260408120805483929062000169908490620003c1565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620001ae908590620003b8565b60405180910390a35050565b505050565b828054620001cd90620003e6565b90600052602060002090601f016020900481019282620001f157600085556200023c565b82601f106200020c57805160ff19168380011785556200023c565b828001600101855582156200023c579182015b828111156200023c5782518255916020019190600101906200021f565b506200024a9291506200024e565b5090565b5b808211156200024a57600081556001016200024f565b600082601f83011262000276578081fd5b81516001600160401b038082111562000293576200029362000423565b6040516020601f8401601f1916820181018381118382101715620002bb57620002bb62000423565b6040528382528584018101871015620002d2578485fd5b8492505b83831015620002f55785830181015182840182015291820191620002d6565b838311156200030657848185840101525b5095945050505050565b60008060006060848603121562000325578283fd5b835160208501519093506001600160401b038082111562000344578384fd5b620003528783880162000265565b9350604086015191508082111562000368578283fd5b50620003778682870162000265565b9150509250925092565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60008219821115620003e157634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680620003fb57607f821691505b602082108114156200041d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61107580620004496000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a257806395d89b411161007157806395d89b4114610206578063a457c2d71461020e578063a9059cbb14610221578063dd62ed3e14610234578063f2fde38b1461024757610116565b806370a08231146101ce578063715018a6146101e15780638456cb59146101e95780638da5cb5b146101f157610116565b8063313ce567116100e9578063313ce5671461018157806339509351146101965780633f4ba83a146101a957806342966c68146101b35780635c975abb146101c657610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461015957806323b872dd1461016e575b600080fd5b61012361025a565b6040516101309190610c1e565b60405180910390f35b61014c610147366004610bbe565b6102ec565b6040516101309190610c13565b610161610309565b6040516101309190610fa8565b61014c61017c366004610b83565b61030f565b610189610352565b6040516101309190610fb1565b61014c6101a4366004610bbe565b610357565b6101b16103ab565b005b6101b16101c1366004610be7565b6103f4565b61014c610426565b6101616101dc366004610b37565b610436565b6101b1610455565b6101b16104de565b6101f9610525565b6040516101309190610bff565b610123610534565b61014c61021c366004610bbe565b610543565b61014c61022f366004610bbe565b6105be565b610161610242366004610b51565b6105f6565b6101b1610255366004610b37565b610621565b60606004805461026990610fee565b80601f016020809104026020016040519081016040528092919081815260200182805461029590610fee565b80156102e25780601f106102b7576101008083540402835291602001916102e2565b820191906000526020600020905b8154815290600101906020018083116102c557829003601f168201915b5050505050905090565b60006103006102f96106e1565b84846106e5565b50600192915050565b60035490565b6000610319610426565b1561033f5760405162461bcd60e51b815260040161033690610df2565b60405180910390fd5b61034a848484610799565b949350505050565b601290565b60006103006103646106e1565b8484600260006103726106e1565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546103a69190610fbf565b6106e5565b6103b36106e1565b6001600160a01b03166103c4610525565b6001600160a01b0316146103ea5760405162461bcd60e51b815260040161033690610e64565b6103f261082b565b565b6103fc610426565b156104195760405162461bcd60e51b815260040161033690610df2565b610423338261089c565b50565b600054600160a01b900460ff1690565b6001600160a01b0381166000908152600160205260409020545b919050565b61045d6106e1565b6001600160a01b031661046e610525565b6001600160a01b0316146104945760405162461bcd60e51b815260040161033690610e64565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6104e66106e1565b6001600160a01b03166104f7610525565b6001600160a01b03161461051d5760405162461bcd60e51b815260040161033690610e64565b6103f2610982565b6000546001600160a01b031690565b60606005805461026990610fee565b600080600260006105526106e1565b6001600160a01b039081168252602080830193909352604091820160009081209188168152925290205490508281101561059e5760405162461bcd60e51b815260040161033690610f63565b6105b46105a96106e1565b856103a68685610fd7565b5060019392505050565b60006105c8610426565b156105e55760405162461bcd60e51b815260040161033690610df2565b6105ef83836109e3565b9392505050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6106296106e1565b6001600160a01b031661063a610525565b6001600160a01b0316146106605760405162461bcd60e51b815260040161033690610e64565b6001600160a01b0381166106865760405162461bcd60e51b815260040161033690610d24565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b03831661070b5760405162461bcd60e51b815260040161033690610f1f565b6001600160a01b0382166107315760405162461bcd60e51b815260040161033690610d6a565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061078c908590610fa8565b60405180910390a3505050565b60006107a68484846109f3565b6001600160a01b0384166000908152600260205260408120816107c76106e1565b6001600160a01b03166001600160a01b031681526020019081526020016000205490508281101561080a5760405162461bcd60e51b815260040161033690610e1c565b610820856108166106e1565b6103a68685610fd7565b506001949350505050565b610833610426565b61084f5760405162461bcd60e51b815260040161033690610cb4565b6000805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6108856106e1565b6040516108929190610bff565b60405180910390a1565b6001600160a01b0382166108c25760405162461bcd60e51b815260040161033690610e99565b6108ce82600083610b1b565b6001600160a01b038216600090815260016020526040902054818110156109075760405162461bcd60e51b815260040161033690610ce2565b6109118282610fd7565b6001600160a01b0384166000908152600160205260408120919091556003805484929061093f908490610fd7565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061078c908690610fa8565b61098a610426565b156109a75760405162461bcd60e51b815260040161033690610df2565b6000805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586108856106e1565b60006103006109f06106e1565b84845b6001600160a01b038316610a195760405162461bcd60e51b815260040161033690610eda565b6001600160a01b038216610a3f5760405162461bcd60e51b815260040161033690610c71565b610a4a838383610b1b565b6001600160a01b03831660009081526001602052604090205481811015610a835760405162461bcd60e51b815260040161033690610dac565b610a8d8282610fd7565b6001600160a01b038086166000908152600160205260408082209390935590851681529081208054849290610ac3908490610fbf565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b0d9190610fa8565b60405180910390a350505050565b505050565b80356001600160a01b038116811461045057600080fd5b600060208284031215610b48578081fd5b6105ef82610b20565b60008060408385031215610b63578081fd5b610b6c83610b20565b9150610b7a60208401610b20565b90509250929050565b600080600060608486031215610b97578081fd5b610ba084610b20565b9250610bae60208501610b20565b9150604084013590509250925092565b60008060408385031215610bd0578182fd5b610bd983610b20565b946020939093013593505050565b600060208284031215610bf8578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610c4a57858101830151858201604001528201610c2e565b81811115610c5b5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610fd257610fd2611029565b500190565b600082821015610fe957610fe9611029565b500390565b60028104600182168061100257607f821691505b6020821081141561102357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220fd067d59de30b1667e26b793a75284e57f909ff934e066576dae3e24a7ed8a9064736f6c6343000800003300000000000000000000000000000000000000000052b7d2dcc80cd2e4000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000084d656d65636f696e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034d454d0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a257806395d89b411161007157806395d89b4114610206578063a457c2d71461020e578063a9059cbb14610221578063dd62ed3e14610234578063f2fde38b1461024757610116565b806370a08231146101ce578063715018a6146101e15780638456cb59146101e95780638da5cb5b146101f157610116565b8063313ce567116100e9578063313ce5671461018157806339509351146101965780633f4ba83a146101a957806342966c68146101b35780635c975abb146101c657610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461015957806323b872dd1461016e575b600080fd5b61012361025a565b6040516101309190610c1e565b60405180910390f35b61014c610147366004610bbe565b6102ec565b6040516101309190610c13565b610161610309565b6040516101309190610fa8565b61014c61017c366004610b83565b61030f565b610189610352565b6040516101309190610fb1565b61014c6101a4366004610bbe565b610357565b6101b16103ab565b005b6101b16101c1366004610be7565b6103f4565b61014c610426565b6101616101dc366004610b37565b610436565b6101b1610455565b6101b16104de565b6101f9610525565b6040516101309190610bff565b610123610534565b61014c61021c366004610bbe565b610543565b61014c61022f366004610bbe565b6105be565b610161610242366004610b51565b6105f6565b6101b1610255366004610b37565b610621565b60606004805461026990610fee565b80601f016020809104026020016040519081016040528092919081815260200182805461029590610fee565b80156102e25780601f106102b7576101008083540402835291602001916102e2565b820191906000526020600020905b8154815290600101906020018083116102c557829003601f168201915b5050505050905090565b60006103006102f96106e1565b84846106e5565b50600192915050565b60035490565b6000610319610426565b1561033f5760405162461bcd60e51b815260040161033690610df2565b60405180910390fd5b61034a848484610799565b949350505050565b601290565b60006103006103646106e1565b8484600260006103726106e1565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546103a69190610fbf565b6106e5565b6103b36106e1565b6001600160a01b03166103c4610525565b6001600160a01b0316146103ea5760405162461bcd60e51b815260040161033690610e64565b6103f261082b565b565b6103fc610426565b156104195760405162461bcd60e51b815260040161033690610df2565b610423338261089c565b50565b600054600160a01b900460ff1690565b6001600160a01b0381166000908152600160205260409020545b919050565b61045d6106e1565b6001600160a01b031661046e610525565b6001600160a01b0316146104945760405162461bcd60e51b815260040161033690610e64565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6104e66106e1565b6001600160a01b03166104f7610525565b6001600160a01b03161461051d5760405162461bcd60e51b815260040161033690610e64565b6103f2610982565b6000546001600160a01b031690565b60606005805461026990610fee565b600080600260006105526106e1565b6001600160a01b039081168252602080830193909352604091820160009081209188168152925290205490508281101561059e5760405162461bcd60e51b815260040161033690610f63565b6105b46105a96106e1565b856103a68685610fd7565b5060019392505050565b60006105c8610426565b156105e55760405162461bcd60e51b815260040161033690610df2565b6105ef83836109e3565b9392505050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6106296106e1565b6001600160a01b031661063a610525565b6001600160a01b0316146106605760405162461bcd60e51b815260040161033690610e64565b6001600160a01b0381166106865760405162461bcd60e51b815260040161033690610d24565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b03831661070b5760405162461bcd60e51b815260040161033690610f1f565b6001600160a01b0382166107315760405162461bcd60e51b815260040161033690610d6a565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061078c908590610fa8565b60405180910390a3505050565b60006107a68484846109f3565b6001600160a01b0384166000908152600260205260408120816107c76106e1565b6001600160a01b03166001600160a01b031681526020019081526020016000205490508281101561080a5760405162461bcd60e51b815260040161033690610e1c565b610820856108166106e1565b6103a68685610fd7565b506001949350505050565b610833610426565b61084f5760405162461bcd60e51b815260040161033690610cb4565b6000805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6108856106e1565b6040516108929190610bff565b60405180910390a1565b6001600160a01b0382166108c25760405162461bcd60e51b815260040161033690610e99565b6108ce82600083610b1b565b6001600160a01b038216600090815260016020526040902054818110156109075760405162461bcd60e51b815260040161033690610ce2565b6109118282610fd7565b6001600160a01b0384166000908152600160205260408120919091556003805484929061093f908490610fd7565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061078c908690610fa8565b61098a610426565b156109a75760405162461bcd60e51b815260040161033690610df2565b6000805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586108856106e1565b60006103006109f06106e1565b84845b6001600160a01b038316610a195760405162461bcd60e51b815260040161033690610eda565b6001600160a01b038216610a3f5760405162461bcd60e51b815260040161033690610c71565b610a4a838383610b1b565b6001600160a01b03831660009081526001602052604090205481811015610a835760405162461bcd60e51b815260040161033690610dac565b610a8d8282610fd7565b6001600160a01b038086166000908152600160205260408082209390935590851681529081208054849290610ac3908490610fbf565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b0d9190610fa8565b60405180910390a350505050565b505050565b80356001600160a01b038116811461045057600080fd5b600060208284031215610b48578081fd5b6105ef82610b20565b60008060408385031215610b63578081fd5b610b6c83610b20565b9150610b7a60208401610b20565b90509250929050565b600080600060608486031215610b97578081fd5b610ba084610b20565b9250610bae60208501610b20565b9150604084013590509250925092565b60008060408385031215610bd0578182fd5b610bd983610b20565b946020939093013593505050565b600060208284031215610bf8578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610c4a57858101830151858201604001528201610c2e565b81811115610c5b5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610fd257610fd2611029565b500190565b600082821015610fe957610fe9611029565b500390565b60028104600182168061100257607f821691505b6020821081141561102357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220fd067d59de30b1667e26b793a75284e57f909ff934e066576dae3e24a7ed8a9064736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000084d656d65636f696e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034d454d0000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 100000000000000000000000000
Arg [1] : _memeTokenName (string): Memecoin
Arg [2] : _memeTokenSymbol (string): MEM
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [4] : 4d656d65636f696e000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4d454d0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
20015:1351:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6528:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8695:169;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;7648:108::-;;;:::i;:::-;;;;;;;:::i;20661:205::-;;;;;;:::i;:::-;;:::i;7490:93::-;;;:::i;:::-;;;;;;;:::i;10177:215::-;;;;;;:::i;:::-;;:::i;21284:79::-;;;:::i;:::-;;20997:125;;;;;;:::i;:::-;;:::i;18673:86::-;;;:::i;7819:127::-;;;;;;:::i;:::-;;:::i;17044:148::-;;;:::i;21166:70::-;;;:::i;16393:87::-;;;:::i;:::-;;;;;;;:::i;6747:104::-;;;:::i;10895:377::-;;;;;;:::i;:::-;;:::i;20356:193::-;;;;;;:::i;:::-;;:::i;8397:151::-;;;;;;:::i;:::-;;:::i;17347:244::-;;;;;;:::i;:::-;;:::i;6528:100::-;6582:13;6615:5;6608:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6528:100;:::o;8695:169::-;8778:4;8795:39;8804:12;:10;:12::i;:::-;8818:7;8827:6;8795:8;:39::i;:::-;-1:-1:-1;8852:4:0;8695:169;;;;:::o;7648:108::-;7736:12;;7648:108;:::o;20661:205::-;20801:4;18999:8;:6;:8::i;:::-;18998:9;18990:38;;;;-1:-1:-1;;;18990:38:0;;;;;;;:::i;:::-;;;;;;;;;20825:35:::1;20844:4;20850:2;20854:5;20825:18;:35::i;:::-;20818:42:::0;20661:205;-1:-1:-1;;;;20661:205:0:o;7490:93::-;7573:2;7490:93;:::o;10177:215::-;10265:4;10282:80;10291:12;:10;:12::i;:::-;10305:7;10351:10;10314:11;:25;10326:12;:10;:12::i;:::-;-1:-1:-1;;;;;10314:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;10314:25:0;;;:34;;;;;;;;;;:47;;;;:::i;:::-;10282:8;:80::i;21284:79::-;16624:12;:10;:12::i;:::-;-1:-1:-1;;;;;16613:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;16613:23:0;;16605:68;;;;-1:-1:-1;;;16605:68:0;;;;;;;:::i;:::-;21342:10:::1;:8;:10::i;:::-;21284:79::o:0;20997:125::-;18999:8;:6;:8::i;:::-;18998:9;18990:38;;;;-1:-1:-1;;;18990:38:0;;;;;;;:::i;:::-;21090:26:::1;21096:10;21108:7;21090:5;:26::i;:::-;20997:125:::0;:::o;18673:86::-;18720:4;18744:7;-1:-1:-1;;;18744:7:0;;;;;18673:86::o;7819:127::-;-1:-1:-1;;;;;7920:18:0;;7893:7;7920:18;;;:9;:18;;;;;;7819:127;;;;:::o;17044:148::-;16624:12;:10;:12::i;:::-;-1:-1:-1;;;;;16613:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;16613:23:0;;16605:68;;;;-1:-1:-1;;;16605:68:0;;;;;;;:::i;:::-;17151:1:::1;17135:6:::0;;17114:40:::1;::::0;-1:-1:-1;;;;;17135:6:0;;::::1;::::0;17114:40:::1;::::0;17151:1;;17114:40:::1;17182:1;17165:19:::0;;-1:-1:-1;;;;;;17165:19:0::1;::::0;;17044:148::o;21166:70::-;16624:12;:10;:12::i;:::-;-1:-1:-1;;;;;16613:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;16613:23:0;;16605:68;;;;-1:-1:-1;;;16605:68:0;;;;;;;:::i;:::-;21222:8:::1;:6;:8::i;16393:87::-:0;16439:7;16466:6;-1:-1:-1;;;;;16466:6:0;16393:87;:::o;6747:104::-;6803:13;6836:7;6829:14;;;;;:::i;10895:377::-;10988:4;11005:24;11032:11;:25;11044:12;:10;:12::i;:::-;-1:-1:-1;;;;;11032:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;11032:25:0;;;:34;;;;;;;;;;;-1:-1:-1;11085:35:0;;;;11077:85;;;;-1:-1:-1;;;11077:85:0;;;;;;;:::i;:::-;11173:67;11182:12;:10;:12::i;:::-;11196:7;11205:34;11224:15;11205:16;:34;:::i;11173:67::-;-1:-1:-1;11260:4:0;;10895:377;-1:-1:-1;;;10895:377:0:o;20356:193::-;20486:4;18999:8;:6;:8::i;:::-;18998:9;18990:38;;;;-1:-1:-1;;;18990:38:0;;;;;;;:::i;:::-;20510:33:::1;20525:9;20536:6;20510:14;:33::i;:::-;20503:40:::0;20356:193;-1:-1:-1;;;20356:193:0:o;8397:151::-;-1:-1:-1;;;;;8513:18:0;;;8486:7;8513:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8397:151::o;17347:244::-;16624:12;:10;:12::i;:::-;-1:-1:-1;;;;;16613:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;16613:23:0;;16605:68;;;;-1:-1:-1;;;16605:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17436:22:0;::::1;17428:73;;;;-1:-1:-1::0;;;17428:73:0::1;;;;;;;:::i;:::-;17538:6;::::0;;17517:38:::1;::::0;-1:-1:-1;;;;;17517:38:0;;::::1;::::0;17538:6;::::1;::::0;17517:38:::1;::::0;::::1;17566:6;:17:::0;;-1:-1:-1;;;;;;17566:17:0::1;-1:-1:-1::0;;;;;17566:17:0;;;::::1;::::0;;;::::1;::::0;;17347:244::o;4115:98::-;4195:10;4115:98;:::o;14251:346::-;-1:-1:-1;;;;;14353:19:0;;14345:68;;;;-1:-1:-1;;;14345:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14432:21:0;;14424:68;;;;-1:-1:-1;;;14424:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14505:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;14557:32;;;;;14535:6;;14557:32;:::i;:::-;;;;;;;;14251:346;;;:::o;9346:422::-;9452:4;9469:36;9479:6;9487:9;9498:6;9469:9;:36::i;:::-;-1:-1:-1;;;;;9545:19:0;;9518:24;9545:19;;;:11;:19;;;;;9518:24;9565:12;:10;:12::i;:::-;-1:-1:-1;;;;;9545:33:0;-1:-1:-1;;;;;9545:33:0;;;;;;;;;;;;;9518:60;;9617:6;9597:16;:26;;9589:79;;;;-1:-1:-1;;;9589:79:0;;;;;;;:::i;:::-;9679:57;9688:6;9696:12;:10;:12::i;:::-;9710:25;9729:6;9710:16;:25;:::i;9679:57::-;-1:-1:-1;9756:4:0;;9346:422;-1:-1:-1;;;;9346:422:0:o;19732:120::-;19276:8;:6;:8::i;:::-;19268:41;;;;-1:-1:-1;;;19268:41:0;;;;;;;:::i;:::-;19801:5:::1;19791:15:::0;;-1:-1:-1;;;;19791:15:0::1;::::0;;19822:22:::1;19831:12;:10;:12::i;:::-;19822:22;;;;;;:::i;:::-;;;;;;;;19732:120::o:0;13319:494::-;-1:-1:-1;;;;;13403:21:0;;13395:67;;;;-1:-1:-1;;;13395:67:0;;;;;;;:::i;:::-;13475:49;13496:7;13513:1;13517:6;13475:20;:49::i;:::-;-1:-1:-1;;;;;13562:18:0;;13537:22;13562:18;;;:9;:18;;;;;;13599:24;;;;13591:71;;;;-1:-1:-1;;;13591:71:0;;;;;;;:::i;:::-;13694:23;13711:6;13694:14;:23;:::i;:::-;-1:-1:-1;;;;;13673:18:0;;;;;;:9;:18;;;;;:44;;;;13728:12;:22;;13744:6;;13673:18;13728:22;;13744:6;;13728:22;:::i;:::-;;;;-1:-1:-1;;13768:37:0;;13794:1;;-1:-1:-1;;;;;13768:37:0;;;;;;;13798:6;;13768:37;:::i;19473:118::-;18999:8;:6;:8::i;:::-;18998:9;18990:38;;;;-1:-1:-1;;;18990:38:0;;;;;;;:::i;:::-;19533:7:::1;:14:::0;;-1:-1:-1;;;;19533:14:0::1;-1:-1:-1::0;;;19533:14:0::1;::::0;;19563:20:::1;19570:12;:10;:12::i;8159:175::-:0;8245:4;8262:42;8272:12;:10;:12::i;:::-;8286:9;8297:6;11762:604;-1:-1:-1;;;;;11868:20:0;;11860:70;;;;-1:-1:-1;;;11860:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11949:23:0;;11941:71;;;;-1:-1:-1;;;11941:71:0;;;;;;;:::i;:::-;12025:47;12046:6;12054:9;12065:6;12025:20;:47::i;:::-;-1:-1:-1;;;;;12109:17:0;;12085:21;12109:17;;;:9;:17;;;;;;12145:23;;;;12137:74;;;;-1:-1:-1;;;12137:74:0;;;;;;;:::i;:::-;12242:22;12258:6;12242:13;:22;:::i;:::-;-1:-1:-1;;;;;12222:17:0;;;;;;;:9;:17;;;;;;:42;;;;12275:20;;;;;;;;:30;;12299:6;;12222:17;12275:30;;12299:6;;12275:30;:::i;:::-;;;;;;;;12340:9;-1:-1:-1;;;;;12323:35:0;12332:6;-1:-1:-1;;;;;12323:35:0;;12351:6;12323:35;;;;;;:::i;:::-;;;;;;;;11762:604;;;;:::o;15200:92::-;;;;:::o;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:266::-;;;1152:2;1140:9;1131:7;1127:23;1123:32;1120:2;;;1173:6;1165;1158:22;1120:2;1201:31;1222:9;1201:31;:::i;:::-;1191:41;1279:2;1264:18;;;;1251:32;;-1:-1:-1;;;1110:179:1:o;1294:190::-;;1406:2;1394:9;1385:7;1381:23;1377:32;1374:2;;;1427:6;1419;1412:22;1374:2;-1:-1:-1;1455:23:1;;1364:120;-1:-1:-1;1364:120:1:o;1489:203::-;-1:-1:-1;;;;;1653:32:1;;;;1635:51;;1623:2;1608:18;;1590:102::o;1697:187::-;1862:14;;1855:22;1837:41;;1825:2;1810:18;;1792:92::o;1889:603::-;;2030:2;2059;2048:9;2041:21;2091:6;2085:13;2134:6;2129:2;2118:9;2114:18;2107:34;2159:4;2172:140;2186:6;2183:1;2180:13;2172:140;;;2281:14;;;2277:23;;2271:30;2247:17;;;2266:2;2243:26;2236:66;2201:10;;2172:140;;;2330:6;2327:1;2324:13;2321:2;;;2400:4;2395:2;2386:6;2375:9;2371:22;2367:31;2360:45;2321:2;-1:-1:-1;2476:2:1;2455:15;-1:-1:-1;;2451:29:1;2436:45;;;;2483:2;2432:54;;2010:482;-1:-1:-1;;;2010:482:1:o;2497:399::-;2699:2;2681:21;;;2738:2;2718:18;;;2711:30;2777:34;2772:2;2757:18;;2750:62;-1:-1:-1;;;2843:2:1;2828:18;;2821:33;2886:3;2871:19;;2671:225::o;2901:344::-;3103:2;3085:21;;;3142:2;3122:18;;;3115:30;-1:-1:-1;;;3176:2:1;3161:18;;3154:50;3236:2;3221:18;;3075:170::o;3250:398::-;3452:2;3434:21;;;3491:2;3471:18;;;3464:30;3530:34;3525:2;3510:18;;3503:62;-1:-1:-1;;;3596:2:1;3581:18;;3574:32;3638:3;3623:19;;3424:224::o;3653:402::-;3855:2;3837:21;;;3894:2;3874:18;;;3867:30;3933:34;3928:2;3913:18;;3906:62;-1:-1:-1;;;3999:2:1;3984:18;;3977:36;4045:3;4030:19;;3827:228::o;4060:398::-;4262:2;4244:21;;;4301:2;4281:18;;;4274:30;4340:34;4335:2;4320:18;;4313:62;-1:-1:-1;;;4406:2:1;4391:18;;4384:32;4448:3;4433:19;;4234:224::o;4463:402::-;4665:2;4647:21;;;4704:2;4684:18;;;4677:30;4743:34;4738:2;4723:18;;4716:62;-1:-1:-1;;;4809:2:1;4794:18;;4787:36;4855:3;4840:19;;4637:228::o;4870:340::-;5072:2;5054:21;;;5111:2;5091:18;;;5084:30;-1:-1:-1;;;5145:2:1;5130:18;;5123:46;5201:2;5186:18;;5044:166::o;5215:404::-;5417:2;5399:21;;;5456:2;5436:18;;;5429:30;5495:34;5490:2;5475:18;;5468:62;-1:-1:-1;;;5561:2:1;5546:18;;5539:38;5609:3;5594:19;;5389:230::o;5624:356::-;5826:2;5808:21;;;5845:18;;;5838:30;5904:34;5899:2;5884:18;;5877:62;5971:2;5956:18;;5798:182::o;5985:397::-;6187:2;6169:21;;;6226:2;6206:18;;;6199:30;6265:34;6260:2;6245:18;;6238:62;-1:-1:-1;;;6331:2:1;6316:18;;6309:31;6372:3;6357:19;;6159:223::o;6387:401::-;6589:2;6571:21;;;6628:2;6608:18;;;6601:30;6667:34;6662:2;6647:18;;6640:62;-1:-1:-1;;;6733:2:1;6718:18;;6711:35;6778:3;6763:19;;6561:227::o;6793:400::-;6995:2;6977:21;;;7034:2;7014:18;;;7007:30;7073:34;7068:2;7053:18;;7046:62;-1:-1:-1;;;7139:2:1;7124:18;;7117:34;7183:3;7168:19;;6967:226::o;7198:401::-;7400:2;7382:21;;;7439:2;7419:18;;;7412:30;7478:34;7473:2;7458:18;;7451:62;-1:-1:-1;;;7544:2:1;7529:18;;7522:35;7589:3;7574:19;;7372:227::o;7604:177::-;7750:25;;;7738:2;7723:18;;7705:76::o;7786:184::-;7958:4;7946:17;;;;7928:36;;7916:2;7901:18;;7883:87::o;7975:128::-;;8046:1;8042:6;8039:1;8036:13;8033:2;;;8052:18;;:::i;:::-;-1:-1:-1;8088:9:1;;8023:80::o;8108:125::-;;8176:1;8173;8170:8;8167:2;;;8181:18;;:::i;:::-;-1:-1:-1;8218:9:1;;8157:76::o;8238:380::-;8323:1;8313:12;;8370:1;8360:12;;;8381:2;;8435:4;8427:6;8423:17;8413:27;;8381:2;8488;8480:6;8477:14;8457:18;8454:38;8451:2;;;8534:10;8529:3;8525:20;8522:1;8515:31;8569:4;8566:1;8559:15;8597:4;8594:1;8587:15;8451:2;;8293:325;;;:::o;8623:127::-;8684:10;8679:3;8675:20;8672:1;8665:31;8715:4;8712:1;8705:15;8739:4;8736:1;8729:15
Swarm Source
ipfs://fd067d59de30b1667e26b793a75284e57f909ff934e066576dae3e24a7ed8a90
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.