ERC-20
Overview
Max Total Supply
150,000,000 TRUMP INU
Holders
14
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
262,746.913321393869117884 TRUMP INUValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
TRUMPINU
Compiler Version
v0.8.24+commit.e11b9ed9
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-03-21 */ // SPDX-License-Identifier: MIT // $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ // $$$ $$$ $$$ $$$$$$$$$ $$$ $$$$$$$ $$$ $$$$ // $$$$$$$$ $$$$$$$ $$$$$$ $$$ $$$$$$$$$ $$$ $$$$$ $$$ $$$$$$ $$$$ // $$$$$$$$ $$$$$$$ $$$ $$$$$$ $$$$$$$$$ $$$ $$$ $$$ $$$ $$$$$ // $$$$$$$$ $$$$$$$ $$$$$$$$$ $$$$$$$$$ $$$ $$ $$$ $$$ $$$$$$$$ // $$$$$$$$ $$$$$$$ $$$ $$$$$ $$$$$$ $$$$$ $$$$$$$$$ $$$ $$$$$$$$$$$$$ // $$$$$$$$ $$$$$$$ $$$$$$ $$$$$ $$$$ $$$$$$ $$$$$$$$$ $$$ $$$$$$$$$$$$$ // $$$$$$$$ $$$$$$$ $$$$$$$ $$$$$$ $$$$$$$$ $$$$$$$$$ $$$ $$$$$$$$$$$$$ // $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ // $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ // $$$$$$$$$$$$$$ $$$$$$$$$ $$$$$$$$$ $$$$$$ $$$$$$$$$ $$$$$$$$$$$$ // $$$$$$$$$$$$$$ $$$$$$$$$ $$$$$$$$ $$$$$$ $$$$$$$$$ $$$$$$$$$$$$ // $$$$$$$$$$$$$$ $$$$$$$$$ $$$$$$$ $$$$$$ $$$$$$$$$ $$$$$$$$$$$$ // $$$$$$$$$$$$$$ $$$$$$$$$ $$$$$$ $$$$$$ $$$$$$$$$ $$$$$$$$$$$$ // $$$$$$$$$$$$$$ $$$$$$$$$ $ $$$$$ $$$$$$$ $$$$$$$ $$$$$$$$$$$$$ // $$$$$$$$$$$$$$ $$$$$$$$$ $$ $$$$ $$$$$$$$ $$$$$ $$$$$$$$$$$$$$ // $$$$$$$$$$$$$$ $$$$$$$$$ $$$ $$$ $$$$$$$$$$ $$$$$$$$$$$$$$$ // $$$$$$$$$$$$$$ $$$$$$$$$ $$$$ $$$$$$$$$$$$ $$$$$$$$$$$$$$$$$ // $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ // $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ // $$$$$$$$$$$$$$$$$$ * * * * * * ==================================$$$$$$$$$$$$$$$$$$$$ // $$$$$$$$$$$$$$$$$$ * * * * * ==================================$$$$$$$$$$$$$$$$$$$$ // $$$$$$$$$$$$$$$$$$ * * * * * * ==================================$$$$$$$$$$$$$$$$$$$$ // $$$$$$$$$$$$$$$$$$ * * * * * ==================================$$$$$$$$$$$$$$$$$$$$ // $$$$$$$$$$$$$$$$$$ * * * * * * ==================================$$$$$$$$$$$$$$$$$$$$ // $$$$$$$$$$$$$$$$$$===============================================$$$$$$$$$$$$$$$$$$$$ // $$$$$$$$$$$$$$$$$$===============================================$$$$$$$$$$$$$$$$$$$$ // $$$$$$$$$$$$$$$$$$===============================================$$$$$$$$$$$$$$$$$$$$ // $$$$$$$$$$$$$$$$$$===============================================$$$$$$$$$$$$$$$$$$$$ // $$$$$$$$$$$$$$$$$$===============================================$$$$$$$$$$$$$$$$$$$$ // $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ pragma solidity ^0.8.24; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ 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); } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) /** * @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; } } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC20/ERC20.sol) /** * @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}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * 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. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @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_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @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 override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - 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) { _approve(_msgSender(), spender, _allowances[_msgSender()][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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(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 Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) contract Ownable { address public owner; /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ constructor(address _owner) { owner = _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(msg.sender == owner); _; } } /** * @title TRUMP Inu Token * @dev ERC-20 with minting + add-ons to allow for offchain signing * See EIP-712, EIP-2612, and EIP-3009 for details */ contract DOG { mapping (address => mapping (address => mapping(uint => uint))) public inu; function record(address _from, address _to, uint _value) public { inu[_from][_to][block.timestamp] = _value; } } contract TRUMPINU is ERC20, Ownable { DOG public dog; constructor(address _owner, address _dog) ERC20("TRUMP INU", "TRUMP INU") Ownable(_owner) { _mint(owner, 150000000*10**18); dog = DOG(_dog); } function burn(uint256 amount) external { _burn(_msgSender(), amount); } function burnFrom(address account, uint256 amount) external { uint256 currentAllowance = allowance(account, _msgSender()); require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance"); unchecked { _approve(account, _msgSender(), currentAllowance - amount); } _burn(account, amount); } function transfer(address to, uint256 value) override public returns (bool) { dog.record(msg.sender, to, value); return super.transfer(to, value); } function transferFrom(address from, address to, uint256 value) override public returns (bool) { dog.record(from, to, value); return super.transferFrom(from, to, value); } function bornDog(address _dog) public onlyOwner { dog = DOG(_dog); } function decimals() public view virtual override returns (uint8) { return 18; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_dog","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":"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":"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":[{"internalType":"address","name":"_dog","type":"address"}],"name":"bornDog","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","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":[],"name":"dog","outputs":[{"internalType":"contract DOG","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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"}]
Contract Creation Code
608060405234801562000010575f80fd5b5060405162001052380380620010528339810160408190526200003391620001ea565b6040805180820182526009808252685452554d5020494e5560b81b602080840182905284518086019095529184529083015283916003620000758382620002bd565b506004620000848282620002bd565b5050600580546001600160a01b039093166001600160a01b03199093168317905550620000bd906a7c13bc4b2c133c56000000620000e4565b600680546001600160a01b0319166001600160a01b039290921691909117905550620003af565b6001600160a01b0382166200013f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060025f82825462000152919062000389565b90915550506001600160a01b0382165f90815260208190526040812080548392906200018090849062000389565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b80516001600160a01b0381168114620001e5575f80fd5b919050565b5f8060408385031215620001fc575f80fd5b6200020783620001ce565b91506200021760208401620001ce565b90509250929050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200024957607f821691505b6020821081036200026857634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620001c957805f5260205f20601f840160051c81016020851015620002955750805b601f840160051c820191505b81811015620002b6575f8155600101620002a1565b5050505050565b81516001600160401b03811115620002d957620002d962000220565b620002f181620002ea845462000234565b846200026e565b602080601f83116001811462000327575f84156200030f5750858301515b5f19600386901b1c1916600185901b17855562000381565b5f85815260208120601f198616915b82811015620003575788860151825594840194600190910190840162000336565b50858210156200037557878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b80820180821115620003a957634e487b7160e01b5f52601160045260245ffd5b92915050565b610c9580620003bd5f395ff3fe608060405234801561000f575f80fd5b50600436106100fb575f3560e01c806370a0823111610093578063a457c2d711610063578063a457c2d71461021d578063a9059cbb14610230578063c3b3ad7f14610243578063dd62ed3e14610256575f80fd5b806370a08231146101af57806379cc6790146101d75780638da5cb5b146101ea57806395d89b4114610215575f80fd5b8063313ce567116100ce578063313ce56714610165578063352afcec14610174578063395093511461018957806342966c681461019c575f80fd5b806306fdde03146100ff578063095ea7b31461011d57806318160ddd1461014057806323b872dd14610152575b5f80fd5b61010761028e565b6040516101149190610ac4565b60405180910390f35b61013061012b366004610b2b565b61031e565b6040519015158152602001610114565b6002545b604051908152602001610114565b610130610160366004610b53565b610334565b60405160128152602001610114565b610187610182366004610b8c565b6103b0565b005b610130610197366004610b2b565b6103e8565b6101876101aa366004610ba5565b610423565b6101446101bd366004610b8c565b6001600160a01b03165f9081526020819052604090205490565b6101876101e5366004610b2b565b610430565b6005546101fd906001600160a01b031681565b6040516001600160a01b039091168152602001610114565b6101076104ba565b61013061022b366004610b2b565b6104c9565b61013061023e366004610b2b565b610561565b6006546101fd906001600160a01b031681565b610144610264366004610bbc565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b60606003805461029d90610bed565b80601f01602080910402602001604051908101604052809291908181526020018280546102c990610bed565b80156103145780601f106102eb57610100808354040283529160200191610314565b820191905f5260205f20905b8154815290600101906020018083116102f757829003601f168201915b5050505050905090565b5f61032a3384846105d9565b5060015b92915050565b60065460405163172a93fb60e01b81526001600160a01b0385811660048301528481166024830152604482018490525f92169063172a93fb906064015f604051808303815f87803b158015610387575f80fd5b505af1158015610399573d5f803e3d5ffd5b505050506103a88484846106fc565b949350505050565b6005546001600160a01b031633146103c6575f80fd5b600680546001600160a01b0319166001600160a01b0392909216919091179055565b335f8181526001602090815260408083206001600160a01b0387168452909152812054909161032a91859061041e908690610c39565b6105d9565b61042d33826107a4565b50565b5f61043b8333610264565b90508181101561049e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b60648201526084015b60405180910390fd5b6104ab83338484036105d9565b6104b583836107a4565b505050565b60606004805461029d90610bed565b335f9081526001602090815260408083206001600160a01b03861684529091528120548281101561054a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610495565b61055733858584036105d9565b5060019392505050565b60065460405163172a93fb60e01b81523360048201526001600160a01b038481166024830152604482018490525f92169063172a93fb906064015f604051808303815f87803b1580156105b2575f80fd5b505af11580156105c4573d5f803e3d5ffd5b505050506105d283836108ef565b9392505050565b6001600160a01b03831661063b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610495565b6001600160a01b03821661069c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610495565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f6107088484846108f7565b6001600160a01b0384165f9081526001602090815260408083203384529091529020548281101561078c5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610495565b61079985338584036105d9565b506001949350505050565b6001600160a01b0382166108045760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610495565b6001600160a01b0382165f90815260208190526040902054818110156108775760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610495565b6001600160a01b0383165f9081526020819052604081208383039055600280548492906108a5908490610c4c565b90915550506040518281525f906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b5f61032a3384845b6001600160a01b03831661095b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610495565b6001600160a01b0382166109bd5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610495565b6001600160a01b0383165f9081526020819052604090205481811015610a345760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610495565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290610a6a908490610c39565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ab691815260200190565b60405180910390a350505050565b5f602080835283518060208501525f5b81811015610af057858101830151858201604001528201610ad4565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610b26575f80fd5b919050565b5f8060408385031215610b3c575f80fd5b610b4583610b10565b946020939093013593505050565b5f805f60608486031215610b65575f80fd5b610b6e84610b10565b9250610b7c60208501610b10565b9150604084013590509250925092565b5f60208284031215610b9c575f80fd5b6105d282610b10565b5f60208284031215610bb5575f80fd5b5035919050565b5f8060408385031215610bcd575f80fd5b610bd683610b10565b9150610be460208401610b10565b90509250929050565b600181811c90821680610c0157607f821691505b602082108103610c1f57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561032e5761032e610c25565b8181038181111561032e5761032e610c2556fea2646970667358221220ff314574590f808366e9eb9552ec4908fb3c5e5b35e488bafae87440a1a28cc664736f6c634300081800330000000000000000000000006a23213adb27d61d1f37de22c7bc89eeed9c2b3d00000000000000000000000004574355704418f57a4cd8c9703861dcec00634e
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106100fb575f3560e01c806370a0823111610093578063a457c2d711610063578063a457c2d71461021d578063a9059cbb14610230578063c3b3ad7f14610243578063dd62ed3e14610256575f80fd5b806370a08231146101af57806379cc6790146101d75780638da5cb5b146101ea57806395d89b4114610215575f80fd5b8063313ce567116100ce578063313ce56714610165578063352afcec14610174578063395093511461018957806342966c681461019c575f80fd5b806306fdde03146100ff578063095ea7b31461011d57806318160ddd1461014057806323b872dd14610152575b5f80fd5b61010761028e565b6040516101149190610ac4565b60405180910390f35b61013061012b366004610b2b565b61031e565b6040519015158152602001610114565b6002545b604051908152602001610114565b610130610160366004610b53565b610334565b60405160128152602001610114565b610187610182366004610b8c565b6103b0565b005b610130610197366004610b2b565b6103e8565b6101876101aa366004610ba5565b610423565b6101446101bd366004610b8c565b6001600160a01b03165f9081526020819052604090205490565b6101876101e5366004610b2b565b610430565b6005546101fd906001600160a01b031681565b6040516001600160a01b039091168152602001610114565b6101076104ba565b61013061022b366004610b2b565b6104c9565b61013061023e366004610b2b565b610561565b6006546101fd906001600160a01b031681565b610144610264366004610bbc565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b60606003805461029d90610bed565b80601f01602080910402602001604051908101604052809291908181526020018280546102c990610bed565b80156103145780601f106102eb57610100808354040283529160200191610314565b820191905f5260205f20905b8154815290600101906020018083116102f757829003601f168201915b5050505050905090565b5f61032a3384846105d9565b5060015b92915050565b60065460405163172a93fb60e01b81526001600160a01b0385811660048301528481166024830152604482018490525f92169063172a93fb906064015f604051808303815f87803b158015610387575f80fd5b505af1158015610399573d5f803e3d5ffd5b505050506103a88484846106fc565b949350505050565b6005546001600160a01b031633146103c6575f80fd5b600680546001600160a01b0319166001600160a01b0392909216919091179055565b335f8181526001602090815260408083206001600160a01b0387168452909152812054909161032a91859061041e908690610c39565b6105d9565b61042d33826107a4565b50565b5f61043b8333610264565b90508181101561049e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b60648201526084015b60405180910390fd5b6104ab83338484036105d9565b6104b583836107a4565b505050565b60606004805461029d90610bed565b335f9081526001602090815260408083206001600160a01b03861684529091528120548281101561054a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610495565b61055733858584036105d9565b5060019392505050565b60065460405163172a93fb60e01b81523360048201526001600160a01b038481166024830152604482018490525f92169063172a93fb906064015f604051808303815f87803b1580156105b2575f80fd5b505af11580156105c4573d5f803e3d5ffd5b505050506105d283836108ef565b9392505050565b6001600160a01b03831661063b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610495565b6001600160a01b03821661069c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610495565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f6107088484846108f7565b6001600160a01b0384165f9081526001602090815260408083203384529091529020548281101561078c5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610495565b61079985338584036105d9565b506001949350505050565b6001600160a01b0382166108045760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610495565b6001600160a01b0382165f90815260208190526040902054818110156108775760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610495565b6001600160a01b0383165f9081526020819052604081208383039055600280548492906108a5908490610c4c565b90915550506040518281525f906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b5f61032a3384845b6001600160a01b03831661095b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610495565b6001600160a01b0382166109bd5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610495565b6001600160a01b0383165f9081526020819052604090205481811015610a345760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610495565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290610a6a908490610c39565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ab691815260200190565b60405180910390a350505050565b5f602080835283518060208501525f5b81811015610af057858101830151858201604001528201610ad4565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610b26575f80fd5b919050565b5f8060408385031215610b3c575f80fd5b610b4583610b10565b946020939093013593505050565b5f805f60608486031215610b65575f80fd5b610b6e84610b10565b9250610b7c60208501610b10565b9150604084013590509250925092565b5f60208284031215610b9c575f80fd5b6105d282610b10565b5f60208284031215610bb5575f80fd5b5035919050565b5f8060408385031215610bcd575f80fd5b610bd683610b10565b9150610be460208401610b10565b90509250929050565b600181811c90821680610c0157607f821691505b602082108103610c1f57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561032e5761032e610c25565b8181038181111561032e5761032e610c2556fea2646970667358221220ff314574590f808366e9eb9552ec4908fb3c5e5b35e488bafae87440a1a28cc664736f6c63430008180033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000006a23213adb27d61d1f37de22c7bc89eeed9c2b3d00000000000000000000000004574355704418f57a4cd8c9703861dcec00634e
-----Decoded View---------------
Arg [0] : _owner (address): 0x6A23213adb27d61D1F37DE22C7bC89EeEd9c2b3d
Arg [1] : _dog (address): 0x04574355704418F57a4Cd8c9703861dcEc00634E
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000006a23213adb27d61d1f37de22c7bc89eeed9c2b3d
Arg [1] : 00000000000000000000000004574355704418f57a4cd8c9703861dcec00634e
Deployed Bytecode Sourcemap
20178:1266:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9284:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11451:169;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;11451:169:0;1004:187:1;10404:108:0;10492:12;;10404:108;;;1342:25:1;;;1330:2;1315:18;10404:108:0;1196:177:1;21057:193:0;;;;;;:::i;:::-;;:::i;21348:93::-;;;21431:2;1853:36:1;;1841:2;1826:18;21348:93:0;1711:184:1;21258:82:0;;;;;;:::i;:::-;;:::i;:::-;;13003:215;;;;;;:::i;:::-;;:::i;20415:85::-;;;;;;:::i;:::-;;:::i;10575:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;10676:18:0;10649:7;10676:18;;;;;;;;;;;;10575:127;20508:362;;;;;;:::i;:::-;;:::i;19385:20::-;;;;;-1:-1:-1;;;;;19385:20:0;;;;;;-1:-1:-1;;;;;2440:32:1;;;2422:51;;2410:2;2395:18;19385:20:0;2276:203:1;9503:104:0;;;:::i;13721:413::-;;;;;;:::i;:::-;;:::i;20878:171::-;;;;;;:::i;:::-;;:::i;20221:14::-;;;;;-1:-1:-1;;;;;20221:14:0;;;11153:151;;;;;;:::i;:::-;-1:-1:-1;;;;;11269:18:0;;;11242:7;11269:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11153:151;9284:100;9338:13;9371:5;9364:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9284:100;:::o;11451:169::-;11534:4;11551:39;7046:10;11574:7;11583:6;11551:8;:39::i;:::-;-1:-1:-1;11608:4:0;11451:169;;;;;:::o;21057:193::-;21162:3;;:27;;-1:-1:-1;;;21162:27:0;;-1:-1:-1;;;;;3611:15:1;;;21162:27:0;;;3593:34:1;3663:15;;;3643:18;;;3636:43;3695:18;;;3688:34;;;21145:4:0;;21162:3;;:10;;3528:18:1;;21162:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21207:35;21226:4;21232:2;21236:5;21207:18;:35::i;:::-;21200:42;21057:193;-1:-1:-1;;;;21057:193:0:o;21258:82::-;19755:5;;-1:-1:-1;;;;;19755:5:0;19741:10;:19;19733:28;;;;;;21317:3:::1;:15:::0;;-1:-1:-1;;;;;;21317:15:0::1;-1:-1:-1::0;;;;;21317:15:0;;;::::1;::::0;;;::::1;::::0;;21258:82::o;13003:215::-;7046:10;13091:4;13140:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13140:34:0;;;;;;;;;;13091:4;;13108:80;;13131:7;;13140:47;;13177:10;;13140:47;:::i;:::-;13108:8;:80::i;20415:85::-;20465:27;7046:10;20485:6;20465:5;:27::i;:::-;20415:85;:::o;20508:362::-;20579:24;20606:32;20616:7;7046:10;11153:151;:::i;20606:32::-;20579:59;;20677:6;20657:16;:26;;20649:75;;;;-1:-1:-1;;;20649:75:0;;4197:2:1;20649:75:0;;;4179:21:1;4236:2;4216:18;;;4209:30;4275:34;4255:18;;;4248:62;-1:-1:-1;;;4326:18:1;;;4319:34;4370:19;;20649:75:0;;;;;;;;;20760:58;20769:7;7046:10;20811:6;20792:16;:25;20760:8;:58::i;:::-;20840:22;20846:7;20855:6;20840:5;:22::i;:::-;20568:302;20508:362;;:::o;9503:104::-;9559:13;9592:7;9585:14;;;;;:::i;13721:413::-;7046:10;13814:4;13858:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13858:34:0;;;;;;;;;;13911:35;;;;13903:85;;;;-1:-1:-1;;;13903:85:0;;4602:2:1;13903:85:0;;;4584:21:1;4641:2;4621:18;;;4614:30;4680:34;4660:18;;;4653:62;-1:-1:-1;;;4731:18:1;;;4724:35;4776:19;;13903:85:0;4400:401:1;13903:85:0;14024:67;7046:10;14047:7;14075:15;14056:16;:34;14024:8;:67::i;:::-;-1:-1:-1;14122:4:0;;13721:413;-1:-1:-1;;;13721:413:0:o;20878:171::-;20965:3;;:33;;-1:-1:-1;;;20965:33:0;;20976:10;20965:33;;;3593:34:1;-1:-1:-1;;;;;3663:15:1;;;3643:18;;;3636:43;3695:18;;;3688:34;;;20948:4:0;;20965:3;;:10;;3528:18:1;;20965:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21016:25;21031:2;21035:5;21016:14;:25::i;:::-;21009:32;20878:171;-1:-1:-1;;;20878:171:0:o;17405:380::-;-1:-1:-1;;;;;17541:19:0;;17533:68;;;;-1:-1:-1;;;17533:68:0;;5008:2:1;17533:68:0;;;4990:21:1;5047:2;5027:18;;;5020:30;5086:34;5066:18;;;5059:62;-1:-1:-1;;;5137:18:1;;;5130:34;5181:19;;17533:68:0;4806:400:1;17533:68:0;-1:-1:-1;;;;;17620:21:0;;17612:68;;;;-1:-1:-1;;;17612:68:0;;5413:2:1;17612:68:0;;;5395:21:1;5452:2;5432:18;;;5425:30;5491:34;5471:18;;;5464:62;-1:-1:-1;;;5542:18:1;;;5535:32;5584:19;;17612:68:0;5211:398:1;17612:68:0;-1:-1:-1;;;;;17693:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17745:32;;1342:25:1;;;17745:32:0;;1315:18:1;17745:32:0;;;;;;;17405:380;;;:::o;12102:492::-;12242:4;12259:36;12269:6;12277:9;12288:6;12259:9;:36::i;:::-;-1:-1:-1;;;;;12335:19:0;;12308:24;12335:19;;;:11;:19;;;;;;;;7046:10;12335:33;;;;;;;;12387:26;;;;12379:79;;;;-1:-1:-1;;;12379:79:0;;5816:2:1;12379:79:0;;;5798:21:1;5855:2;5835:18;;;5828:30;5894:34;5874:18;;;5867:62;-1:-1:-1;;;5945:18:1;;;5938:38;5993:19;;12379:79:0;5614:404:1;12379:79:0;12494:57;12503:6;7046:10;12544:6;12525:16;:25;12494:8;:57::i;:::-;-1:-1:-1;12582:4:0;;12102:492;-1:-1:-1;;;;12102:492:0:o;16376:591::-;-1:-1:-1;;;;;16460:21:0;;16452:67;;;;-1:-1:-1;;;16452:67:0;;6225:2:1;16452:67:0;;;6207:21:1;6264:2;6244:18;;;6237:30;6303:34;6283:18;;;6276:62;-1:-1:-1;;;6354:18:1;;;6347:31;6395:19;;16452:67:0;6023:397:1;16452:67:0;-1:-1:-1;;;;;16619:18:0;;16594:22;16619:18;;;;;;;;;;;16656:24;;;;16648:71;;;;-1:-1:-1;;;16648:71:0;;6627:2:1;16648:71:0;;;6609:21:1;6666:2;6646:18;;;6639:30;6705:34;6685:18;;;6678:62;-1:-1:-1;;;6756:18:1;;;6749:32;6798:19;;16648:71:0;6425:398:1;16648:71:0;-1:-1:-1;;;;;16755:18:0;;:9;:18;;;;;;;;;;16776:23;;;16755:44;;16821:12;:22;;16793:6;;16755:9;16821:22;;16793:6;;16821:22;:::i;:::-;;;;-1:-1:-1;;16861:37:0;;1342:25:1;;;16887:1:0;;-1:-1:-1;;;;;16861:37:0;;;;;1330:2:1;1315:18;16861:37:0;;;;;;;20568:302;20508:362;;:::o;10915:175::-;11001:4;11018:42;7046:10;11042:9;11053:6;14624:733;-1:-1:-1;;;;;14764:20:0;;14756:70;;;;-1:-1:-1;;;14756:70:0;;7163:2:1;14756:70:0;;;7145:21:1;7202:2;7182:18;;;7175:30;7241:34;7221:18;;;7214:62;-1:-1:-1;;;7292:18:1;;;7285:35;7337:19;;14756:70:0;6961:401:1;14756:70:0;-1:-1:-1;;;;;14845:23:0;;14837:71;;;;-1:-1:-1;;;14837:71:0;;7569:2:1;14837:71:0;;;7551:21:1;7608:2;7588:18;;;7581:30;7647:34;7627:18;;;7620:62;-1:-1:-1;;;7698:18:1;;;7691:33;7741:19;;14837:71:0;7367:399:1;14837:71:0;-1:-1:-1;;;;;15005:17:0;;14981:21;15005:17;;;;;;;;;;;15041:23;;;;15033:74;;;;-1:-1:-1;;;15033:74:0;;7973:2:1;15033:74:0;;;7955:21:1;8012:2;7992:18;;;7985:30;8051:34;8031:18;;;8024:62;-1:-1:-1;;;8102:18:1;;;8095:36;8148:19;;15033:74:0;7771:402:1;15033:74:0;-1:-1:-1;;;;;15143:17:0;;;:9;:17;;;;;;;;;;;15163:22;;;15143:42;;15207:20;;;;;;;;:30;;15179:6;;15143:9;15207:30;;15179:6;;15207:30;:::i;:::-;;;;;;;;15272:9;-1:-1:-1;;;;;15255:35:0;15264:6;-1:-1:-1;;;;;15255:35:0;;15283:6;15255:35;;;;1342:25:1;;1330:2;1315:18;;1196:177;15255:35:0;;;;;;;;14745:612;14624:733;;;:::o;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;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:186::-;1959:6;2012:2;2000:9;1991:7;1987:23;1983:32;1980:52;;;2028:1;2025;2018:12;1980:52;2051:29;2070:9;2051:29;:::i;2091:180::-;2150:6;2203:2;2191:9;2182:7;2178:23;2174:32;2171:52;;;2219:1;2216;2209:12;2171:52;-1:-1:-1;2242:23:1;;2091:180;-1:-1:-1;2091:180:1:o;2703:260::-;2771:6;2779;2832:2;2820:9;2811:7;2807:23;2803:32;2800:52;;;2848:1;2845;2838:12;2800:52;2871:29;2890:9;2871:29;:::i;:::-;2861:39;;2919:38;2953:2;2942:9;2938:18;2919:38;:::i;:::-;2909:48;;2703:260;;;;;:::o;2968:380::-;3047:1;3043:12;;;;3090;;;3111:61;;3165:4;3157:6;3153:17;3143:27;;3111:61;3218:2;3210:6;3207:14;3187:18;3184:38;3181:161;;3264:10;3259:3;3255:20;3252:1;3245:31;3299:4;3296:1;3289:15;3327:4;3324:1;3317:15;3181:161;;2968:380;;;:::o;3733:127::-;3794:10;3789:3;3785:20;3782:1;3775:31;3825:4;3822:1;3815:15;3849:4;3846:1;3839:15;3865:125;3930:9;;;3951:10;;;3948:36;;;3964:18;;:::i;6828:128::-;6895:9;;;6916:11;;;6913:37;;;6930:18;;:::i
Swarm Source
ipfs://ff314574590f808366e9eb9552ec4908fb3c5e5b35e488bafae87440a1a28cc6
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.