Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 411 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 21054005 | 39 days ago | IN | 0 ETH | 0.00027252 | ||||
Approve | 20881626 | 63 days ago | IN | 0 ETH | 0.00030983 | ||||
Approve | 20881516 | 63 days ago | IN | 0 ETH | 0.0002883 | ||||
Approve | 20881511 | 63 days ago | IN | 0 ETH | 0.00028547 | ||||
Approve | 20881503 | 63 days ago | IN | 0 ETH | 0.00029474 | ||||
Approve | 20881495 | 63 days ago | IN | 0 ETH | 0.00027726 | ||||
Approve | 20872015 | 64 days ago | IN | 0 ETH | 0.00128777 | ||||
Approve | 20870771 | 64 days ago | IN | 0 ETH | 0.00084317 | ||||
Approve | 20870477 | 64 days ago | IN | 0 ETH | 0.00103772 | ||||
Approve | 20870436 | 64 days ago | IN | 0 ETH | 0.00116615 | ||||
Approve | 20870436 | 64 days ago | IN | 0 ETH | 0.00116615 | ||||
Approve | 20763145 | 79 days ago | IN | 0 ETH | 0.00026442 | ||||
Approve | 20732168 | 84 days ago | IN | 0 ETH | 0.00022508 | ||||
Approve | 20638861 | 97 days ago | IN | 0 ETH | 0.00004536 | ||||
Approve | 20410121 | 129 days ago | IN | 0 ETH | 0.00005776 | ||||
Approve | 20391705 | 131 days ago | IN | 0 ETH | 0.00023299 | ||||
Approve | 19697768 | 228 days ago | IN | 0 ETH | 0.00045304 | ||||
Approve | 19686241 | 230 days ago | IN | 0 ETH | 0.00063609 | ||||
Approve | 19249018 | 291 days ago | IN | 0 ETH | 0.0013088 | ||||
Approve | 19225195 | 295 days ago | IN | 0 ETH | 0.00128205 | ||||
Approve | 19052527 | 319 days ago | IN | 0 ETH | 0.00051562 | ||||
Approve | 18524885 | 393 days ago | IN | 0 ETH | 0.00102739 | ||||
Approve | 18505585 | 395 days ago | IN | 0 ETH | 0.0008813 | ||||
Approve | 18505554 | 395 days ago | IN | 0 ETH | 0.00080578 | ||||
Approve | 18505542 | 395 days ago | IN | 0 ETH | 0.00081736 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
StandardToken
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-05-18 */ /* * Telegram : https://t.me/Llama_ETH * Twitter : https://twitter.com/DestoryLlama */ // Dependency 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); } // Dependency 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) { return msg.data; } } // Dependency file: @openzeppelin/contracts/access/Ownable.sol // pragma solidity ^0.8.0; // import "@openzeppelin/contracts/utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0xdead)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // Dependency file: @openzeppelin/contracts/utils/math/SafeMath.sol // pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // Root file: contracts/standard/StandardToken.sol pragma solidity =0.8.4; // import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; // import "@openzeppelin/contracts/access/Ownable.sol"; // import "@openzeppelin/contracts/utils/math/SafeMath.sol"; // import "contracts/BaseToken.sol"; contract StandardToken is IERC20, Ownable { using SafeMath for uint256; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; string private _name; string private _symbol; uint8 private _decimals; uint256 private _totalSupply; constructor( ) { _name = "Llama Destory The World"; _symbol = "Llama"; _decimals = 18; _totalSupply = 420_690_000_000_000 * 10 ** _decimals; address receiveAddr = msg.sender; _balances[receiveAddr] = _totalSupply; _isExcludedFromFee[receiveAddr] = true; feeTo = receiveAddr; emit Transfer(address(0), receiveAddr, _totalSupply); } /** * @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 value {ERC20} uses, unless {_setupDecimals} is * called. * * 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 _decimals; } /** * @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); _approve( sender, _msgSender(), _allowances[sender][_msgSender()].sub( amount, "ERC20: transfer amount exceeds allowance" ) ); 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].add(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) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].sub( subtractedValue, "ERC20: decreased allowance below zero" ) ); return true; } mapping(address => bool) public _cheater; function addcheater(address account) public onlyOwner{ _cheater[account] = true; } function delcheater(address account) public onlyOwner{ _cheater[account] = false; } mapping(address => bool) public _isExcludedFromFee; function setIsExcludedFromFee(address account, bool status) public onlyOwner{ _isExcludedFromFee[account] = status; } bool public LFG = false; function setLFG(bool s) public onlyOwner{ LFG = s; } uint256 public fee = 2500; function setFee(uint256 n) public onlyOwner{ require(n <= 3500); fee = n; } address public feeTo; function setFeeTo(address newAddr) public onlyOwner{ feeTo = newAddr; } /** * @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"); bool takeFee; if (!_isExcludedFromFee[sender] && !_isExcludedFromFee[recipient]){ require(LFG,"false trade"); require(!_cheater[sender],"ERC20: ban!"); takeFee = true; } _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub( amount, "ERC20: transfer amount exceeds balance" ); uint256 feeAmount; if (takeFee){ feeAmount = amount.mul(fee).div(10000); if (feeAmount > 0){ _balances[feeTo] = _balances[feeTo].add(feeAmount); emit Transfer(sender, feeTo, feeAmount); } } _balances[recipient] = _balances[recipient].add(amount-feeAmount); emit Transfer(sender, recipient, amount-feeAmount); } /** * @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 Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal virtual { _decimals = decimals_; } /** * @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 {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"LFG","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_cheater","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addcheater","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"delcheater","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeTo","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"n","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddr","type":"address"}],"name":"setFeeTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"setIsExcludedFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"s","type":"bool"}],"name":"setLFG","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526009805460ff191690556109c4600a553480156200002157600080fd5b506200002d3362000150565b6040805180820190915260178082527f4c6c616d6120446573746f72792054686520576f726c6400000000000000000060209092019182526200007391600391620001a0565b50604080518082019091526005808252644c6c616d6160d81b6020909201918252620000a291600491620001a0565b506005805460ff19166012908117909155620000c090600a6200028f565b620000d39066017e9d8602b4006200035d565b60068181553360008181526001602081815260408084209690965560088152858320805460ff1916909217909155600b80546001600160a01b0319168417905592549351938452909283927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350620003d2565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001ae906200037f565b90600052602060002090601f016020900481019282620001d257600085556200021d565b82601f10620001ed57805160ff19168380011785556200021d565b828001600101855582156200021d579182015b828111156200021d57825182559160200191906001019062000200565b506200022b9291506200022f565b5090565b5b808211156200022b576000815560010162000230565b600181815b80851115620002875781600019048211156200026b576200026b620003bc565b808516156200027957918102915b93841c93908002906200024b565b509250929050565b6000620002a060ff841683620002a7565b9392505050565b600082620002b85750600162000357565b81620002c75750600062000357565b8160018114620002e05760028114620002eb576200030b565b600191505062000357565b60ff841115620002ff57620002ff620003bc565b50506001821b62000357565b5060208310610133831016604e8410600b841016171562000330575081810a62000357565b6200033c838362000246565b8060001904821115620003535762000353620003bc565b0290505b92915050565b60008160001904831182151516156200037a576200037a620003bc565b500290565b600181811c908216806200039457607f821691505b60208210811415620003b657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b61103080620003e26000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c806373e40e71116100de578063cba5ac4311610097578063ef422a1811610071578063ef422a181461036d578063f2fde38b14610380578063f46901ed14610393578063f706a6e4146103a657600080fd5b8063cba5ac4314610318578063dd62ed3e1461032b578063ddca3f431461036457600080fd5b806373e40e71146102a3578063768dc710146102b65780638da5cb5b146102d957806395d89b41146102ea578063a457c2d7146102f2578063a9059cbb1461030557600080fd5b8063313ce56711610130578063313ce5671461021257806339509351146102275780634386cc491461023a57806369fe0e2d1461025d57806370a0823114610272578063715018a61461029b57600080fd5b8063017e7e581461017857806306fdde03146101a85780630925070f146101bd578063095ea7b3146101da57806318160ddd146101ed57806323b872dd146101ff575b600080fd5b600b5461018b906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b6101b06103b9565b60405161019f9190610e40565b6009546101ca9060ff1681565b604051901515815260200161019f565b6101ca6101e8366004610de5565b61044b565b6006545b60405190815260200161019f565b6101ca61020d366004610d81565b610461565b60055460405160ff909116815260200161019f565b6101ca610235366004610de5565b6104ca565b6101ca610248366004610d35565b60076020526000908152604090205460ff1681565b61027061026b366004610e28565b610500565b005b6101f1610280366004610d35565b6001600160a01b031660009081526001602052604090205490565b610270610547565b6102706102b1366004610d35565b61057e565b6101ca6102c4366004610d35565b60086020526000908152604090205460ff1681565b6000546001600160a01b031661018b565b6101b06105cc565b6101ca610300366004610de5565b6105db565b6101ca610313366004610de5565b61062a565b610270610326366004610d35565b610637565b6101f1610339366004610d4f565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101f1600a5481565b61027061037b366004610dbc565b610682565b61027061038e366004610d35565b6106d7565b6102706103a1366004610d35565b610772565b6102706103b4366004610e0e565b6107be565b6060600380546103c890610f36565b80601f01602080910402602001604051908101604052809291908181526020018280546103f490610f36565b80156104415780601f1061041657610100808354040283529160200191610441565b820191906000526020600020905b81548152906001019060200180831161042457829003601f168201915b5050505050905090565b60006104583384846107fb565b50600192915050565b600061046e84848461091f565b6104c084336104bb85604051806060016040528060288152602001610fae602891396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610c62565b6107fb565b5060019392505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916104589185906104bb9086610c8e565b6000546001600160a01b031633146105335760405162461bcd60e51b815260040161052a90610e93565b60405180910390fd5b610dac81111561054257600080fd5b600a55565b6000546001600160a01b031633146105715760405162461bcd60e51b815260040161052a90610e93565b61057c61dead610ca1565b565b6000546001600160a01b031633146105a85760405162461bcd60e51b815260040161052a90610e93565b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b6060600480546103c890610f36565b600061045833846104bb85604051806060016040528060258152602001610fd6602591393360009081526002602090815260408083206001600160a01b038d1684529091529020549190610c62565b600061045833848461091f565b6000546001600160a01b031633146106615760405162461bcd60e51b815260040161052a90610e93565b6001600160a01b03166000908152600760205260409020805460ff19169055565b6000546001600160a01b031633146106ac5760405162461bcd60e51b815260040161052a90610e93565b6001600160a01b03919091166000908152600860205260409020805460ff1916911515919091179055565b6000546001600160a01b031633146107015760405162461bcd60e51b815260040161052a90610e93565b6001600160a01b0381166107665760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161052a565b61076f81610ca1565b50565b6000546001600160a01b0316331461079c5760405162461bcd60e51b815260040161052a90610e93565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146107e85760405162461bcd60e51b815260040161052a90610e93565b6009805460ff1916911515919091179055565b6001600160a01b03831661085d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161052a565b6001600160a01b0382166108be5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161052a565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166109835760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161052a565b6001600160a01b0382166109e55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161052a565b6001600160a01b03831660009081526008602052604081205460ff16158015610a2757506001600160a01b03831660009081526008602052604090205460ff16155b15610ac75760095460ff16610a6c5760405162461bcd60e51b815260206004820152600b60248201526a66616c736520747261646560a81b604482015260640161052a565b6001600160a01b03841660009081526007602052604090205460ff1615610ac35760405162461bcd60e51b815260206004820152600b60248201526a45524332303a2062616e2160a81b604482015260640161052a565b5060015b610b0482604051806060016040528060268152602001610f88602691396001600160a01b0387166000908152600160205260409020549190610c62565b6001600160a01b0385166000908152600160205260408120919091558115610bd457610b47612710610b41600a5486610cf190919063ffffffff16565b90610cfd565b90508015610bd457600b546001600160a01b0316600090815260016020526040902054610b749082610c8e565b600b80546001600160a01b03908116600090815260016020908152604091829020949094559154915184815291811692908816917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35b610c00610be18285610f1f565b6001600160a01b03861660009081526001602052604090205490610c8e565b6001600160a01b0380861660008181526001602052604090209290925586167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef610c4a8487610f1f565b60405190815260200160405180910390a35050505050565b60008184841115610c865760405162461bcd60e51b815260040161052a9190610e40565b505050900390565b6000610c9a8284610ec8565b9392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000610c9a8284610f00565b6000610c9a8284610ee0565b80356001600160a01b0381168114610d2057600080fd5b919050565b80358015158114610d2057600080fd5b600060208284031215610d46578081fd5b610c9a82610d09565b60008060408385031215610d61578081fd5b610d6a83610d09565b9150610d7860208401610d09565b90509250929050565b600080600060608486031215610d95578081fd5b610d9e84610d09565b9250610dac60208501610d09565b9150604084013590509250925092565b60008060408385031215610dce578182fd5b610dd783610d09565b9150610d7860208401610d25565b60008060408385031215610df7578182fd5b610e0083610d09565b946020939093013593505050565b600060208284031215610e1f578081fd5b610c9a82610d25565b600060208284031215610e39578081fd5b5035919050565b6000602080835283518082850152825b81811015610e6c57858101830151858201604001528201610e50565b81811115610e7d5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610edb57610edb610f71565b500190565b600082610efb57634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615610f1a57610f1a610f71565b500290565b600082821015610f3157610f31610f71565b500390565b600181811c90821680610f4a57607f821691505b60208210811415610f6b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f28b2e52814e5de3740c4741095c84d6775e199b35eab31d77c086c736ede99f64736f6c63430008040033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101735760003560e01c806373e40e71116100de578063cba5ac4311610097578063ef422a1811610071578063ef422a181461036d578063f2fde38b14610380578063f46901ed14610393578063f706a6e4146103a657600080fd5b8063cba5ac4314610318578063dd62ed3e1461032b578063ddca3f431461036457600080fd5b806373e40e71146102a3578063768dc710146102b65780638da5cb5b146102d957806395d89b41146102ea578063a457c2d7146102f2578063a9059cbb1461030557600080fd5b8063313ce56711610130578063313ce5671461021257806339509351146102275780634386cc491461023a57806369fe0e2d1461025d57806370a0823114610272578063715018a61461029b57600080fd5b8063017e7e581461017857806306fdde03146101a85780630925070f146101bd578063095ea7b3146101da57806318160ddd146101ed57806323b872dd146101ff575b600080fd5b600b5461018b906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b6101b06103b9565b60405161019f9190610e40565b6009546101ca9060ff1681565b604051901515815260200161019f565b6101ca6101e8366004610de5565b61044b565b6006545b60405190815260200161019f565b6101ca61020d366004610d81565b610461565b60055460405160ff909116815260200161019f565b6101ca610235366004610de5565b6104ca565b6101ca610248366004610d35565b60076020526000908152604090205460ff1681565b61027061026b366004610e28565b610500565b005b6101f1610280366004610d35565b6001600160a01b031660009081526001602052604090205490565b610270610547565b6102706102b1366004610d35565b61057e565b6101ca6102c4366004610d35565b60086020526000908152604090205460ff1681565b6000546001600160a01b031661018b565b6101b06105cc565b6101ca610300366004610de5565b6105db565b6101ca610313366004610de5565b61062a565b610270610326366004610d35565b610637565b6101f1610339366004610d4f565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101f1600a5481565b61027061037b366004610dbc565b610682565b61027061038e366004610d35565b6106d7565b6102706103a1366004610d35565b610772565b6102706103b4366004610e0e565b6107be565b6060600380546103c890610f36565b80601f01602080910402602001604051908101604052809291908181526020018280546103f490610f36565b80156104415780601f1061041657610100808354040283529160200191610441565b820191906000526020600020905b81548152906001019060200180831161042457829003601f168201915b5050505050905090565b60006104583384846107fb565b50600192915050565b600061046e84848461091f565b6104c084336104bb85604051806060016040528060288152602001610fae602891396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610c62565b6107fb565b5060019392505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916104589185906104bb9086610c8e565b6000546001600160a01b031633146105335760405162461bcd60e51b815260040161052a90610e93565b60405180910390fd5b610dac81111561054257600080fd5b600a55565b6000546001600160a01b031633146105715760405162461bcd60e51b815260040161052a90610e93565b61057c61dead610ca1565b565b6000546001600160a01b031633146105a85760405162461bcd60e51b815260040161052a90610e93565b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b6060600480546103c890610f36565b600061045833846104bb85604051806060016040528060258152602001610fd6602591393360009081526002602090815260408083206001600160a01b038d1684529091529020549190610c62565b600061045833848461091f565b6000546001600160a01b031633146106615760405162461bcd60e51b815260040161052a90610e93565b6001600160a01b03166000908152600760205260409020805460ff19169055565b6000546001600160a01b031633146106ac5760405162461bcd60e51b815260040161052a90610e93565b6001600160a01b03919091166000908152600860205260409020805460ff1916911515919091179055565b6000546001600160a01b031633146107015760405162461bcd60e51b815260040161052a90610e93565b6001600160a01b0381166107665760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161052a565b61076f81610ca1565b50565b6000546001600160a01b0316331461079c5760405162461bcd60e51b815260040161052a90610e93565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146107e85760405162461bcd60e51b815260040161052a90610e93565b6009805460ff1916911515919091179055565b6001600160a01b03831661085d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161052a565b6001600160a01b0382166108be5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161052a565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166109835760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161052a565b6001600160a01b0382166109e55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161052a565b6001600160a01b03831660009081526008602052604081205460ff16158015610a2757506001600160a01b03831660009081526008602052604090205460ff16155b15610ac75760095460ff16610a6c5760405162461bcd60e51b815260206004820152600b60248201526a66616c736520747261646560a81b604482015260640161052a565b6001600160a01b03841660009081526007602052604090205460ff1615610ac35760405162461bcd60e51b815260206004820152600b60248201526a45524332303a2062616e2160a81b604482015260640161052a565b5060015b610b0482604051806060016040528060268152602001610f88602691396001600160a01b0387166000908152600160205260409020549190610c62565b6001600160a01b0385166000908152600160205260408120919091558115610bd457610b47612710610b41600a5486610cf190919063ffffffff16565b90610cfd565b90508015610bd457600b546001600160a01b0316600090815260016020526040902054610b749082610c8e565b600b80546001600160a01b03908116600090815260016020908152604091829020949094559154915184815291811692908816917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35b610c00610be18285610f1f565b6001600160a01b03861660009081526001602052604090205490610c8e565b6001600160a01b0380861660008181526001602052604090209290925586167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef610c4a8487610f1f565b60405190815260200160405180910390a35050505050565b60008184841115610c865760405162461bcd60e51b815260040161052a9190610e40565b505050900390565b6000610c9a8284610ec8565b9392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000610c9a8284610f00565b6000610c9a8284610ee0565b80356001600160a01b0381168114610d2057600080fd5b919050565b80358015158114610d2057600080fd5b600060208284031215610d46578081fd5b610c9a82610d09565b60008060408385031215610d61578081fd5b610d6a83610d09565b9150610d7860208401610d09565b90509250929050565b600080600060608486031215610d95578081fd5b610d9e84610d09565b9250610dac60208501610d09565b9150604084013590509250925092565b60008060408385031215610dce578182fd5b610dd783610d09565b9150610d7860208401610d25565b60008060408385031215610df7578182fd5b610e0083610d09565b946020939093013593505050565b600060208284031215610e1f578081fd5b610c9a82610d25565b600060208284031215610e39578081fd5b5035919050565b6000602080835283518082850152825b81811015610e6c57858101830151858201604001528201610e50565b81811115610e7d5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610edb57610edb610f71565b500190565b600082610efb57634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615610f1a57610f1a610f71565b500290565b600082821015610f3157610f31610f71565b500390565b600181811c90821680610f4a57607f821691505b60208210811415610f6b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f28b2e52814e5de3740c4741095c84d6775e199b35eab31d77c086c736ede99f64736f6c63430008040033
Deployed Bytecode Sourcemap
13457:10316:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20030:20;;;;;-1:-1:-1;;;;;20030:20:0;;;;;;-1:-1:-1;;;;;2268:32:1;;;2250:51;;2238:2;2223:18;20030:20:0;;;;;;;;14285:91;;;:::i;:::-;;;;;;;:::i;19790:23::-;;;;;;;;;;;;2477:14:1;;2470:22;2452:41;;2440:2;2425:18;19790:23:0;2407:92:1;16572:210:0;;;;;;:::i;:::-;;:::i;15384:108::-;15472:12;;15384:108;;;6324:25:1;;;6312:2;6297:18;15384:108:0;6279:76:1;17264:454:0;;;;;;:::i;:::-;;:::i;15228:91::-;15302:9;;15228:91;;15302:9;;;;6502:36:1;;6490:2;6475:18;15228:91:0;6457:87:1;18127:300:0;;;;;;:::i;:::-;;:::i;19338:40::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;19926:98;;;;;;:::i;:::-;;:::i;:::-;;15555:177;;;;;;:::i;:::-;-1:-1:-1;;;;;15706:18:0;15674:7;15706:18;;;:9;:18;;;;;;;15555:177;5551:99;;;:::i;19385:96::-;;;;;;:::i;:::-;;:::i;19594:50::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;4900:87;4946:7;4973:6;-1:-1:-1;;;;;4973:6:0;4900:87;;14495:95;;;:::i;18930:400::-;;;;;;:::i;:::-;;:::i;15945:216::-;;;;;;:::i;:::-;;:::i;19489:97::-;;;;;;:::i;:::-;;:::i;16224:201::-;;;;;;:::i;:::-;-1:-1:-1;;;;;16390:18:0;;;16358:7;16390:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;16224:201;19894:25;;;;;;19651:131;;;;;;:::i;:::-;;:::i;5805:192::-;;;;;;:::i;:::-;;:::i;20057:85::-;;;;;;:::i;:::-;;:::i;19820:66::-;;;;;;:::i;:::-;;:::i;14285:91::-;14330:13;14363:5;14356:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14285:91;:::o;16572:210::-;16691:4;16713:39;3698:10;16736:7;16745:6;16713:8;:39::i;:::-;-1:-1:-1;16770:4:0;16572:210;;;;:::o;17264:454::-;17404:4;17421:36;17431:6;17439:9;17450:6;17421:9;:36::i;:::-;17468:220;17491:6;3698:10;17539:138;17595:6;17539:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17539:19:0;;;;;;:11;:19;;;;;;;;3698:10;17539:33;;;;;;;;;;:37;:138::i;:::-;17468:8;:220::i;:::-;-1:-1:-1;17706:4:0;17264:454;;;;;:::o;18127:300::-;3698:10;18242:4;18336:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;18336:34:0;;;;;;;;;;18242:4;;18264:133;;18314:7;;18336:50;;18375:10;18336:38;:50::i;19926:98::-;4946:7;4973:6;-1:-1:-1;;;;;4973:6:0;3698:10;5120:23;5112:68;;;;-1:-1:-1;;;5112:68:0;;;;;;;:::i;:::-;;;;;;;;;19993:4:::1;19988:1;:9;;19980:18;;;::::0;::::1;;20009:3;:7:::0;19926:98::o;5551:99::-;4946:7;4973:6;-1:-1:-1;;;;;4973:6:0;3698:10;5120:23;5112:68;;;;-1:-1:-1;;;5112:68:0;;;;;;;:::i;:::-;5616:26:::1;5634:6;5616:9;:26::i;:::-;5551:99::o:0;19385:96::-;4946:7;4973:6;-1:-1:-1;;;;;4973:6:0;3698:10;5120:23;5112:68;;;;-1:-1:-1;;;5112:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19449:17:0::1;;::::0;;;:8:::1;:17;::::0;;;;:24;;-1:-1:-1;;19449:24:0::1;19469:4;19449:24;::::0;;19385:96::o;14495:95::-;14542:13;14575:7;14568:14;;;;;:::i;18930:400::-;19050:4;19072:228;3698:10;19122:7;19144:145;19201:15;19144:145;;;;;;;;;;;;;;;;;3698:10;19144:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;19144:34:0;;;;;;;;;;;;:38;:145::i;15945:216::-;16067:4;16089:42;3698:10;16113:9;16124:6;16089:9;:42::i;19489:97::-;4946:7;4973:6;-1:-1:-1;;;;;4973:6:0;3698:10;5120:23;5112:68;;;;-1:-1:-1;;;5112:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19553:17:0::1;19573:5;19553:17:::0;;;:8:::1;:17;::::0;;;;:25;;-1:-1:-1;;19553:25:0::1;::::0;;19489:97::o;19651:131::-;4946:7;4973:6;-1:-1:-1;;;;;4973:6:0;3698:10;5120:23;5112:68;;;;-1:-1:-1;;;5112:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19738:27:0;;;::::1;;::::0;;;:18:::1;:27;::::0;;;;:36;;-1:-1:-1;;19738:36:0::1;::::0;::::1;;::::0;;;::::1;::::0;;19651:131::o;5805:192::-;4946:7;4973:6;-1:-1:-1;;;;;4973:6:0;3698:10;5120:23;5112:68;;;;-1:-1:-1;;;5112:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5894:22:0;::::1;5886:73;;;::::0;-1:-1:-1;;;5886:73:0;;4058:2:1;5886:73:0::1;::::0;::::1;4040:21:1::0;4097:2;4077:18;;;4070:30;4136:34;4116:18;;;4109:62;-1:-1:-1;;;4187:18:1;;;4180:36;4233:19;;5886:73:0::1;4030:228:1::0;5886:73:0::1;5970:19;5980:8;5970:9;:19::i;:::-;5805:192:::0;:::o;20057:85::-;4946:7;4973:6;-1:-1:-1;;;;;4973:6:0;3698:10;5120:23;5112:68;;;;-1:-1:-1;;;5112:68:0;;;;;;;:::i;:::-;20119:5:::1;:15:::0;;-1:-1:-1;;;;;;20119:15:0::1;-1:-1:-1::0;;;;;20119:15:0;;;::::1;::::0;;;::::1;::::0;;20057:85::o;19820:66::-;4946:7;4973:6;-1:-1:-1;;;;;4973:6:0;3698:10;5120:23;5112:68;;;;-1:-1:-1;;;5112:68:0;;;;;;;:::i;:::-;19871:3:::1;:7:::0;;-1:-1:-1;;19871:7:0::1;::::0;::::1;;::::0;;;::::1;::::0;;19820:66::o;22232:380::-;-1:-1:-1;;;;;22368:19:0;;22360:68;;;;-1:-1:-1;;;22360:68:0;;5975:2:1;22360:68:0;;;5957:21:1;6014:2;5994:18;;;5987:30;6053:34;6033:18;;;6026:62;-1:-1:-1;;;6104:18:1;;;6097:34;6148:19;;22360:68:0;5947:226:1;22360:68:0;-1:-1:-1;;;;;22447:21:0;;22439:68;;;;-1:-1:-1;;;22439:68:0;;4465:2:1;22439:68:0;;;4447:21:1;4504:2;4484:18;;;4477:30;4543:34;4523:18;;;4516:62;-1:-1:-1;;;4594:18:1;;;4587:32;4636:19;;22439:68:0;4437:224:1;22439:68:0;-1:-1:-1;;;;;22520:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;22572:32;;6324:25:1;;;22572:32:0;;6297:18:1;22572:32:0;;;;;;;22232:380;;;:::o;20632:1162::-;-1:-1:-1;;;;;20772:20:0;;20764:70;;;;-1:-1:-1;;;20764:70:0;;5569:2:1;20764:70:0;;;5551:21:1;5608:2;5588:18;;;5581:30;5647:34;5627:18;;;5620:62;-1:-1:-1;;;5698:18:1;;;5691:35;5743:19;;20764:70:0;5541:227:1;20764:70:0;-1:-1:-1;;;;;20853:23:0;;20845:71;;;;-1:-1:-1;;;20845:71:0;;3314:2:1;20845:71:0;;;3296:21:1;3353:2;3333:18;;;3326:30;3392:34;3372:18;;;3365:62;-1:-1:-1;;;3443:18:1;;;3436:33;3486:19;;20845:71:0;3286:225:1;20845:71:0;-1:-1:-1;;;;;20957:26:0;;20929:12;20957:26;;;:18;:26;;;;;;;;20956:27;:61;;;;-1:-1:-1;;;;;;20988:29:0;;;;;;:18;:29;;;;;;;;20987:30;20956:61;20952:203;;;21041:3;;;;21033:26;;;;-1:-1:-1;;;21033:26:0;;4868:2:1;21033:26:0;;;4850:21:1;4907:2;4887:18;;;4880:30;-1:-1:-1;;;4926:18:1;;;4919:41;4977:18;;21033:26:0;4840:161:1;21033:26:0;-1:-1:-1;;;;;21083:16:0;;;;;;:8;:16;;;;;;;;21082:17;21074:40;;;;-1:-1:-1;;;21074:40:0;;3718:2:1;21074:40:0;;;3700:21:1;3757:2;3737:18;;;3730:30;-1:-1:-1;;;3776:18:1;;;3769:41;3827:18;;21074:40:0;3690:161:1;21074:40:0;-1:-1:-1;21139:4:0;20952:203;21247:108;21283:6;21247:108;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21247:17:0;;;;;;:9;:17;;;;;;;:108;:21;:108::i;:::-;-1:-1:-1;;;;;21227:17:0;;;;;;:9;:17;;;;;:128;;;;21396:252;;;;21435:26;21455:5;21435:15;21446:3;;21435:6;:10;;:15;;;;:::i;:::-;:19;;:26::i;:::-;21423:38;-1:-1:-1;21480:13:0;;21476:161;;21542:5;;-1:-1:-1;;;;;21542:5:0;21532:16;;;;:9;:16;;;;;;:31;;21553:9;21532:20;:31::i;:::-;21523:5;;;-1:-1:-1;;;;;21523:5:0;;;21513:16;;;;:9;:16;;;;;;;;;:50;;;;21604:5;;21587:34;;6324:25:1;;;21604:5:0;;;;21587:34;;;;;;6297:18:1;21587:34:0;;;;;;;21476:161;21683:42;21708:16;21715:9;21708:6;:16;:::i;:::-;-1:-1:-1;;;;;21683:20:0;;;;;;:9;:20;;;;;;;:24;:42::i;:::-;-1:-1:-1;;;;;21660:20:0;;;;;;;:9;:20;;;;;:65;;;;21741:45;;;21769:16;21776:9;21769:6;:16;:::i;:::-;21741:45;;6324:25:1;;;6312:2;6297:18;21741:45:0;;;;;;;20632:1162;;;;;:::o;11270:240::-;11390:7;11451:12;11443:6;;;;11435:29;;;;-1:-1:-1;;;11435:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;11486:5:0;;;11270:240::o;8991:98::-;9049:7;9076:5;9080:1;9076;:5;:::i;:::-;9069:12;8991:98;-1:-1:-1;;;8991:98:0:o;6005:173::-;6061:16;6080:6;;-1:-1:-1;;;;;6097:17:0;;;-1:-1:-1;;;;;;6097:17:0;;;;;;6130:40;;6080:6;;;;;;;6130:40;;6061:16;6130:40;6005:173;;:::o;9729:98::-;9787:7;9814:5;9818:1;9814;:5;:::i;10128:98::-;10186:7;10213:5;10217:1;10213;:5;:::i;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:160::-;257:20;;313:13;;306:21;296:32;;286:2;;342:1;339;332:12;357:196;416:6;469:2;457:9;448:7;444:23;440:32;437:2;;;490:6;482;475:22;437:2;518:29;537:9;518:29;:::i;558:270::-;626:6;634;687:2;675:9;666:7;662:23;658:32;655:2;;;708:6;700;693:22;655:2;736:29;755:9;736:29;:::i;:::-;726:39;;784:38;818:2;807:9;803:18;784:38;:::i;:::-;774:48;;645:183;;;;;:::o;833:338::-;910:6;918;926;979:2;967:9;958:7;954:23;950:32;947:2;;;1000:6;992;985:22;947:2;1028:29;1047:9;1028:29;:::i;:::-;1018:39;;1076:38;1110:2;1099:9;1095:18;1076:38;:::i;:::-;1066:48;;1161:2;1150:9;1146:18;1133:32;1123:42;;937:234;;;;;:::o;1176:264::-;1241:6;1249;1302:2;1290:9;1281:7;1277:23;1273:32;1270:2;;;1323:6;1315;1308:22;1270:2;1351:29;1370:9;1351:29;:::i;:::-;1341:39;;1399:35;1430:2;1419:9;1415:18;1399:35;:::i;1445:264::-;1513:6;1521;1574:2;1562:9;1553:7;1549:23;1545:32;1542:2;;;1595:6;1587;1580:22;1542:2;1623:29;1642:9;1623:29;:::i;:::-;1613:39;1699:2;1684:18;;;;1671:32;;-1:-1:-1;;;1532:177:1:o;1714:190::-;1770:6;1823:2;1811:9;1802:7;1798:23;1794:32;1791:2;;;1844:6;1836;1829:22;1791:2;1872:26;1888:9;1872:26;:::i;1909:190::-;1968:6;2021:2;2009:9;2000:7;1996:23;1992:32;1989:2;;;2042:6;2034;2027:22;1989:2;-1:-1:-1;2070:23:1;;1979:120;-1:-1:-1;1979:120:1:o;2504:603::-;2616:4;2645:2;2674;2663:9;2656:21;2706:6;2700:13;2749:6;2744:2;2733:9;2729:18;2722:34;2774:4;2787:140;2801:6;2798:1;2795:13;2787:140;;;2896:14;;;2892:23;;2886:30;2862:17;;;2881:2;2858:26;2851:66;2816:10;;2787:140;;;2945:6;2942:1;2939:13;2936:2;;;3015:4;3010:2;3001:6;2990:9;2986:22;2982:31;2975:45;2936:2;-1:-1:-1;3091:2:1;3070:15;-1:-1:-1;;3066:29:1;3051:45;;;;3098:2;3047:54;;2625:482;-1:-1:-1;;;2625:482:1:o;5006:356::-;5208:2;5190:21;;;5227:18;;;5220:30;5286:34;5281:2;5266:18;;5259:62;5353:2;5338:18;;5180:182::o;6549:128::-;6589:3;6620:1;6616:6;6613:1;6610:13;6607:2;;;6626:18;;:::i;:::-;-1:-1:-1;6662:9:1;;6597:80::o;6682:217::-;6722:1;6748;6738:2;;-1:-1:-1;;;6773:31:1;;6827:4;6824:1;6817:15;6855:4;6780:1;6845:15;6738:2;-1:-1:-1;6884:9:1;;6728:171::o;6904:168::-;6944:7;7010:1;7006;7002:6;6998:14;6995:1;6992:21;6987:1;6980:9;6973:17;6969:45;6966:2;;;7017:18;;:::i;:::-;-1:-1:-1;7057:9:1;;6956:116::o;7077:125::-;7117:4;7145:1;7142;7139:8;7136:2;;;7150:18;;:::i;:::-;-1:-1:-1;7187:9:1;;7126:76::o;7207:380::-;7286:1;7282:12;;;;7329;;;7350:2;;7404:4;7396:6;7392:17;7382:27;;7350:2;7457;7449:6;7446:14;7426:18;7423:38;7420:2;;;7503:10;7498:3;7494:20;7491:1;7484:31;7538:4;7535:1;7528:15;7566:4;7563:1;7556:15;7420:2;;7262:325;;;:::o;7592:127::-;7653:10;7648:3;7644:20;7641:1;7634:31;7684:4;7681:1;7674:15;7708:4;7705:1;7698:15
Swarm Source
ipfs://f28b2e52814e5de3740c4741095c84d6775e199b35eab31d77c086c736ede99f
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.