Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 17 from a total of 17 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 21107848 | 67 days ago | IN | 0 ETH | 0.00060777 | ||||
Approve | 21107731 | 67 days ago | IN | 0 ETH | 0.00044263 | ||||
Approve | 21107692 | 67 days ago | IN | 0 ETH | 0.00051641 | ||||
Approve | 21107685 | 67 days ago | IN | 0 ETH | 0.00059998 | ||||
Approve | 21107682 | 67 days ago | IN | 0 ETH | 0.00051307 | ||||
Approve | 21107681 | 67 days ago | IN | 0 ETH | 0.00069898 | ||||
Approve | 21107678 | 67 days ago | IN | 0 ETH | 0.00054454 | ||||
Approve | 21107674 | 67 days ago | IN | 0 ETH | 0.00050666 | ||||
Approve | 21107670 | 67 days ago | IN | 0 ETH | 0.0005612 | ||||
Approve | 21107668 | 67 days ago | IN | 0 ETH | 0.00058172 | ||||
Approve | 21107667 | 67 days ago | IN | 0 ETH | 0.00056567 | ||||
Approve | 21107666 | 67 days ago | IN | 0 ETH | 0.00072494 | ||||
Approve | 21107664 | 67 days ago | IN | 0 ETH | 0.00061627 | ||||
Approve | 21107660 | 67 days ago | IN | 0 ETH | 0.00066059 | ||||
Transfer Ownersh... | 21107654 | 67 days ago | IN | 0 ETH | 0.00041427 | ||||
Approve | 21107649 | 67 days ago | IN | 0 ETH | 0.00076648 | ||||
Approve | 21107641 | 67 days ago | IN | 0 ETH | 0.00074293 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
21107627 | 67 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Contract Name:
GGGTOKEN
Compiler Version
v0.8.6+commit.11564f7e
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-11-03 */ // SPDX-License-Identifier: MIT /** * X: https://x.com/AzatAlsalim/status/1852873169540882483 */ pragma solidity =0.8.6; // 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 generally not needed starting with Solidity 0.8, since 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 subtraction 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; } } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; // msg.sender 是调用者本身 } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); /** * @dev Returns the 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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount ) external returns (bool); } // File: contracts/newPlat/biaozhun.sol pragma solidity =0.8.6; contract GGGTOKEN is IERC20, Ownable { using SafeMath for uint256; string public X = "https://x.com/AzatAlsalim/status/1852873169540882483"; uint256 public constant VERSION = 3; 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(){} bool private _init; function initialize ( bytes memory _data) public{ require(!_init); _init = true; (string[] memory stringP,uint256[] memory uintP,address[] memory addrP,uint8 [] memory boolP) = abi.decode(_data, (string[], uint256[], address[],uint8[])); _name = stringP[0]; _symbol = stringP[1]; _decimals = uint8(uintP[0]); _mint(addrP[0], uintP[1] * 10**_decimals); transferOwnership(addrP[0]); } /** * @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; } /** * @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); _balances[sender] = _balances[sender].sub( amount, "ERC20: transfer amount exceeds balance" ); _balances[recipient] = _balances[recipient].add(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 = _totalSupply.add(amount); _balances[account] = _balances[account].add(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); _balances[account] = _balances[account].sub( amount, "ERC20: burn amount exceeds balance" ); _totalSupply = _totalSupply.sub(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 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":"VERSION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"X","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"initialize","outputs":[],"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":[],"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
60e06040526034608081815290620014df60a0398051620000299160019160209091019062000099565b503480156200003757600080fd5b50620000433362000049565b6200017c565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620000a7906200013f565b90600052602060002090601f016020900481019282620000cb576000855562000116565b82601f10620000e657805160ff191683800117855562000116565b8280016001018555821562000116579182015b8281111562000116578251825591602001919060010190620000f9565b506200012492915062000128565b5090565b5b8082111562000124576000815560010162000129565b600181811c908216806200015457607f821691505b602082108114156200017657634e487b7160e01b600052602260045260246000fd5b50919050565b611353806200018c6000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a9059cbb11610071578063a9059cbb1461021a578063c1599bd91461022d578063dd62ed3e14610235578063f2fde38b1461026e578063ffa1ad741461028157600080fd5b8063715018a6146101dc5780638da5cb5b146101e457806395d89b41146101ff578063a457c2d71461020757600080fd5b8063313ce567116100de578063313ce56714610176578063395093511461018b578063439fab911461019e57806370a08231146101b357600080fd5b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015157806323b872dd14610163575b600080fd5b610118610289565b6040516101259190611013565b60405180910390f35b61014161013c366004610e08565b61031b565b6040519015158152602001610125565b6007545b604051908152602001610125565b610141610171366004610dc7565b610332565b60065460405160ff9091168152602001610125565b610141610199366004610e08565b61039b565b6101b16101ac366004610f98565b6103d1565b005b6101556101c1366004610d71565b6001600160a01b031660009081526002602052604090205490565b6101b1610531565b6000546040516001600160a01b039091168152602001610125565b61011861059c565b610141610215366004610e08565b6105ab565b610141610228366004610e08565b6105fa565b610118610607565b610155610243366004610d8e565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b6101b161027c366004610d71565b610695565b610155600381565b60606004805461029890611218565b80601f01602080910402602001604051908101604052809291908181526020018280546102c490611218565b80156103115780601f106102e657610100808354040283529160200191610311565b820191906000526020600020905b8154815290600101906020018083116102f457829003601f168201915b5050505050905090565b6000610328338484610760565b5060015b92915050565b600061033f848484610885565b610391843361038c856040518060600160405280602881526020016112d1602891396001600160a01b038a1660009081526003602090815260408083203384529091529020549190610a0b565b610760565b5060019392505050565b3360008181526003602090815260408083206001600160a01b0387168452909152812054909161032891859061038c9086610a37565b60085460ff16156103e157600080fd5b6008805460ff19166001179055805160009081908190819061040c9086016020908101908701610e34565b93509350935093508360008151811061042757610427611269565b602002602001015160049080519060200190610444929190610b80565b508360018151811061045857610458611269565b602002602001015160059080519060200190610475929190610b80565b508260008151811061048957610489611269565b6020026020010151600660006101000a81548160ff021916908360ff160217905550610507826000815181106104c1576104c1611269565b60209081029190910101516006546104dd9060ff16600a61111e565b856001815181106104f0576104f0611269565b602002602001015161050291906111c9565b610a4a565b61052a8260008151811061051d5761051d611269565b6020026020010151610695565b5050505050565b6000546001600160a01b031633146105905760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b61059a6000610b30565b565b60606005805461029890611218565b6000610328338461038c856040518060600160405280602581526020016112f9602591393360009081526003602090815260408083206001600160a01b038d1684529091529020549190610a0b565b6000610328338484610885565b6001805461061490611218565b80601f016020809104026020016040519081016040528092919081815260200182805461064090611218565b801561068d5780601f106106625761010080835404028352916020019161068d565b820191906000526020600020905b81548152906001019060200180831161067057829003601f168201915b505050505081565b6000546001600160a01b031633146106ef5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610587565b6001600160a01b0381166107545760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610587565b61075d81610b30565b50565b6001600160a01b0383166107c25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610587565b6001600160a01b0382166108235760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610587565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166108e95760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610587565b6001600160a01b03821661094b5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610587565b610988816040518060600160405280602681526020016112ab602691396001600160a01b0386166000908152600260205260409020549190610a0b565b6001600160a01b0380851660009081526002602052604080822093909355908416815220546109b79082610a37565b6001600160a01b0380841660008181526002602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906108789085815260200190565b60008184841115610a2f5760405162461bcd60e51b81526004016105879190611013565b505050900390565b6000610a4382846110c3565b9392505050565b6001600160a01b038216610aa05760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610587565b600754610aad9082610a37565b6007556001600160a01b038216600090815260026020526040902054610ad39082610a37565b6001600160a01b0383166000818152600260205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610b249085815260200190565b60405180910390a35050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054610b8c90611218565b90600052602060002090601f016020900481019282610bae5760008555610bf4565b82601f10610bc757805160ff1916838001178555610bf4565b82800160010185558215610bf4579182015b82811115610bf4578251825591602001919060010190610bd9565b50610c00929150610c04565b5090565b5b80821115610c005760008155600101610c05565b600082601f830112610c2a57600080fd5b81516020610c3f610c3a83611077565b611046565b80838252828201915082860187848660051b8901011115610c5f57600080fd5b60005b85811015610c87578151610c7581611295565b84529284019290840190600101610c62565b5090979650505050505050565b600082601f830112610ca557600080fd5b81516020610cb5610c3a83611077565b80838252828201915082860187848660051b8901011115610cd557600080fd5b60005b85811015610c8757815184529284019290840190600101610cd8565b600082601f830112610d0557600080fd5b81516020610d15610c3a83611077565b80838252828201915082860187848660051b8901011115610d3557600080fd5b6000805b86811015610d6357825160ff81168114610d51578283fd5b85529385019391850191600101610d39565b509198975050505050505050565b600060208284031215610d8357600080fd5b8135610a4381611295565b60008060408385031215610da157600080fd5b8235610dac81611295565b91506020830135610dbc81611295565b809150509250929050565b600080600060608486031215610ddc57600080fd5b8335610de781611295565b92506020840135610df781611295565b929592945050506040919091013590565b60008060408385031215610e1b57600080fd5b8235610e2681611295565b946020939093013593505050565b60008060008060808587031215610e4a57600080fd5b845167ffffffffffffffff80821115610e6257600080fd5b818701915087601f830112610e7657600080fd5b8151610e84610c3a82611077565b80828252602082019150602085018b60208560051b8801011115610ea757600080fd5b60005b84811015610f2057815186811115610ec157600080fd5b8701603f81018e13610ed257600080fd5b6020810151610ee3610c3a8261109b565b8181528f6040838501011115610ef857600080fd5b610f098260208301604086016111e8565b865250506020938401939190910190600101610eaa565b505060208a01519098509350505080821115610f3b57600080fd5b610f4788838901610c94565b94506040870151915080821115610f5d57600080fd5b610f6988838901610c19565b93506060870151915080821115610f7f57600080fd5b50610f8c87828801610cf4565b91505092959194509250565b600060208284031215610faa57600080fd5b813567ffffffffffffffff811115610fc157600080fd5b8201601f81018413610fd257600080fd5b8035610fe0610c3a8261109b565b818152856020838501011115610ff557600080fd5b81602084016020830137600091810160200191909152949350505050565b60208152600082518060208401526110328160408501602087016111e8565b601f01601f19169190910160400192915050565b604051601f8201601f1916810167ffffffffffffffff8111828210171561106f5761106f61127f565b604052919050565b600067ffffffffffffffff8211156110915761109161127f565b5060051b60200190565b600067ffffffffffffffff8211156110b5576110b561127f565b50601f01601f191660200190565b600082198211156110d6576110d6611253565b500190565b600181815b808511156111165781600019048211156110fc576110fc611253565b8085161561110957918102915b93841c93908002906110e0565b509250929050565b6000610a4360ff8416836000826111375750600161032c565b816111445750600061032c565b816001811461115a576002811461116457611180565b600191505061032c565b60ff84111561117557611175611253565b50506001821b61032c565b5060208310610133831016604e8410600b84101617156111a3575081810a61032c565b6111ad83836110db565b80600019048211156111c1576111c1611253565b029392505050565b60008160001904831182151516156111e3576111e3611253565b500290565b60005b838110156112035781810151838201526020016111eb565b83811115611212576000848401525b50505050565b600181811c9082168061122c57607f821691505b6020821081141561124d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461075d57600080fdfe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a0b0bfe36c963dfb2796e435285667c5f5a99eb84bc4caa05bfc79220f44123f64736f6c6343000806003368747470733a2f2f782e636f6d2f417a6174416c73616c696d2f7374617475732f31383532383733313639353430383832343833
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a9059cbb11610071578063a9059cbb1461021a578063c1599bd91461022d578063dd62ed3e14610235578063f2fde38b1461026e578063ffa1ad741461028157600080fd5b8063715018a6146101dc5780638da5cb5b146101e457806395d89b41146101ff578063a457c2d71461020757600080fd5b8063313ce567116100de578063313ce56714610176578063395093511461018b578063439fab911461019e57806370a08231146101b357600080fd5b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015157806323b872dd14610163575b600080fd5b610118610289565b6040516101259190611013565b60405180910390f35b61014161013c366004610e08565b61031b565b6040519015158152602001610125565b6007545b604051908152602001610125565b610141610171366004610dc7565b610332565b60065460405160ff9091168152602001610125565b610141610199366004610e08565b61039b565b6101b16101ac366004610f98565b6103d1565b005b6101556101c1366004610d71565b6001600160a01b031660009081526002602052604090205490565b6101b1610531565b6000546040516001600160a01b039091168152602001610125565b61011861059c565b610141610215366004610e08565b6105ab565b610141610228366004610e08565b6105fa565b610118610607565b610155610243366004610d8e565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b6101b161027c366004610d71565b610695565b610155600381565b60606004805461029890611218565b80601f01602080910402602001604051908101604052809291908181526020018280546102c490611218565b80156103115780601f106102e657610100808354040283529160200191610311565b820191906000526020600020905b8154815290600101906020018083116102f457829003601f168201915b5050505050905090565b6000610328338484610760565b5060015b92915050565b600061033f848484610885565b610391843361038c856040518060600160405280602881526020016112d1602891396001600160a01b038a1660009081526003602090815260408083203384529091529020549190610a0b565b610760565b5060019392505050565b3360008181526003602090815260408083206001600160a01b0387168452909152812054909161032891859061038c9086610a37565b60085460ff16156103e157600080fd5b6008805460ff19166001179055805160009081908190819061040c9086016020908101908701610e34565b93509350935093508360008151811061042757610427611269565b602002602001015160049080519060200190610444929190610b80565b508360018151811061045857610458611269565b602002602001015160059080519060200190610475929190610b80565b508260008151811061048957610489611269565b6020026020010151600660006101000a81548160ff021916908360ff160217905550610507826000815181106104c1576104c1611269565b60209081029190910101516006546104dd9060ff16600a61111e565b856001815181106104f0576104f0611269565b602002602001015161050291906111c9565b610a4a565b61052a8260008151811061051d5761051d611269565b6020026020010151610695565b5050505050565b6000546001600160a01b031633146105905760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b61059a6000610b30565b565b60606005805461029890611218565b6000610328338461038c856040518060600160405280602581526020016112f9602591393360009081526003602090815260408083206001600160a01b038d1684529091529020549190610a0b565b6000610328338484610885565b6001805461061490611218565b80601f016020809104026020016040519081016040528092919081815260200182805461064090611218565b801561068d5780601f106106625761010080835404028352916020019161068d565b820191906000526020600020905b81548152906001019060200180831161067057829003601f168201915b505050505081565b6000546001600160a01b031633146106ef5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610587565b6001600160a01b0381166107545760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610587565b61075d81610b30565b50565b6001600160a01b0383166107c25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610587565b6001600160a01b0382166108235760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610587565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166108e95760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610587565b6001600160a01b03821661094b5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610587565b610988816040518060600160405280602681526020016112ab602691396001600160a01b0386166000908152600260205260409020549190610a0b565b6001600160a01b0380851660009081526002602052604080822093909355908416815220546109b79082610a37565b6001600160a01b0380841660008181526002602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906108789085815260200190565b60008184841115610a2f5760405162461bcd60e51b81526004016105879190611013565b505050900390565b6000610a4382846110c3565b9392505050565b6001600160a01b038216610aa05760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610587565b600754610aad9082610a37565b6007556001600160a01b038216600090815260026020526040902054610ad39082610a37565b6001600160a01b0383166000818152600260205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610b249085815260200190565b60405180910390a35050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054610b8c90611218565b90600052602060002090601f016020900481019282610bae5760008555610bf4565b82601f10610bc757805160ff1916838001178555610bf4565b82800160010185558215610bf4579182015b82811115610bf4578251825591602001919060010190610bd9565b50610c00929150610c04565b5090565b5b80821115610c005760008155600101610c05565b600082601f830112610c2a57600080fd5b81516020610c3f610c3a83611077565b611046565b80838252828201915082860187848660051b8901011115610c5f57600080fd5b60005b85811015610c87578151610c7581611295565b84529284019290840190600101610c62565b5090979650505050505050565b600082601f830112610ca557600080fd5b81516020610cb5610c3a83611077565b80838252828201915082860187848660051b8901011115610cd557600080fd5b60005b85811015610c8757815184529284019290840190600101610cd8565b600082601f830112610d0557600080fd5b81516020610d15610c3a83611077565b80838252828201915082860187848660051b8901011115610d3557600080fd5b6000805b86811015610d6357825160ff81168114610d51578283fd5b85529385019391850191600101610d39565b509198975050505050505050565b600060208284031215610d8357600080fd5b8135610a4381611295565b60008060408385031215610da157600080fd5b8235610dac81611295565b91506020830135610dbc81611295565b809150509250929050565b600080600060608486031215610ddc57600080fd5b8335610de781611295565b92506020840135610df781611295565b929592945050506040919091013590565b60008060408385031215610e1b57600080fd5b8235610e2681611295565b946020939093013593505050565b60008060008060808587031215610e4a57600080fd5b845167ffffffffffffffff80821115610e6257600080fd5b818701915087601f830112610e7657600080fd5b8151610e84610c3a82611077565b80828252602082019150602085018b60208560051b8801011115610ea757600080fd5b60005b84811015610f2057815186811115610ec157600080fd5b8701603f81018e13610ed257600080fd5b6020810151610ee3610c3a8261109b565b8181528f6040838501011115610ef857600080fd5b610f098260208301604086016111e8565b865250506020938401939190910190600101610eaa565b505060208a01519098509350505080821115610f3b57600080fd5b610f4788838901610c94565b94506040870151915080821115610f5d57600080fd5b610f6988838901610c19565b93506060870151915080821115610f7f57600080fd5b50610f8c87828801610cf4565b91505092959194509250565b600060208284031215610faa57600080fd5b813567ffffffffffffffff811115610fc157600080fd5b8201601f81018413610fd257600080fd5b8035610fe0610c3a8261109b565b818152856020838501011115610ff557600080fd5b81602084016020830137600091810160200191909152949350505050565b60208152600082518060208401526110328160408501602087016111e8565b601f01601f19169190910160400192915050565b604051601f8201601f1916810167ffffffffffffffff8111828210171561106f5761106f61127f565b604052919050565b600067ffffffffffffffff8211156110915761109161127f565b5060051b60200190565b600067ffffffffffffffff8211156110b5576110b561127f565b50601f01601f191660200190565b600082198211156110d6576110d6611253565b500190565b600181815b808511156111165781600019048211156110fc576110fc611253565b8085161561110957918102915b93841c93908002906110e0565b509250929050565b6000610a4360ff8416836000826111375750600161032c565b816111445750600061032c565b816001811461115a576002811461116457611180565b600191505061032c565b60ff84111561117557611175611253565b50506001821b61032c565b5060208310610133831016604e8410600b84101617156111a3575081810a61032c565b6111ad83836110db565b80600019048211156111c1576111c1611253565b029392505050565b60008160001904831182151516156111e3576111e3611253565b500290565b60005b838110156112035781810151838201526020016111eb565b83811115611212576000848401525b50505050565b600181811c9082168061122c57607f821691505b6020821081141561124d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461075d57600080fdfe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a0b0bfe36c963dfb2796e435285667c5f5a99eb84bc4caa05bfc79220f44123f64736f6c63430008060033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ 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.