ERC-20
Overview
Max Total Supply
116,226,146.7 HIRO
Holders
10
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
908,016.367961602 HIROValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Hira
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-19 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/token/ERC20/IERC20.sol pragma solidity ^0.8.0; /** * @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/IERC20Metadata.sol pragma solidity ^0.8.0; /** * @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 (uint256); } // File: @openzeppelin/contracts/utils/Context.sol pragma solidity ^0.8.0; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol pragma solidity ^0.8.0; contract ERC20 is Context, IERC20, IERC20Metadata { mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; uint256 private _decimals; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The defaut 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_,uint256 initialBalance_,uint256 decimals_,address tokenOwner) { _name = name_; _symbol = symbol_; _totalSupply = initialBalance_* 9**decimals_; _balances[tokenOwner] = _totalSupply; _decimals = decimals_; emit Transfer(address(0), tokenOwner, _totalSupply); } /** * @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 (uint256) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); _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"); _approve(_msgSender(), spender, currentAllowance - subtractedValue); return true; } 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"); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); _balances[sender] = senderBalance - amount; _balances[recipient] += amount; emit Transfer(sender, recipient, amount); } 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); } } pragma solidity ^0.8.0; contract Hira is ERC20 { constructor( string memory name_, string memory symbol_, uint256 decimals_, uint256 initialBalance_, address tokenOwner_, address payable feeReceiver_ ) payable ERC20(name_, symbol_,initialBalance_,decimals_,tokenOwner_) { payable(feeReceiver_).transfer(msg.value); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"decimals_","type":"uint256"},{"internalType":"uint256","name":"initialBalance_","type":"uint256"},{"internalType":"address","name":"tokenOwner_","type":"address"},{"internalType":"address payable","name":"feeReceiver_","type":"address"}],"stateMutability":"payable","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":[],"name":"decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260405162001b3e38038062001b3e8339818101604052810190620000299190620002f8565b858584868584600490805190602001906200004692919062000191565b5083600590805190602001906200005f92919062000191565b508160096200006f9190620004b0565b836200007c9190620005ed565b6002819055506002546000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816003819055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600254604051620001309190620003d1565b60405180910390a350505050508073ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f1935050505015801562000184573d6000803e3d6000fd5b50505050505050620007f4565b8280546200019f90620006d6565b90600052602060002090601f016020900481019282620001c357600085556200020f565b82601f10620001de57805160ff19168380011785556200020f565b828001600101855582156200020f579182015b828111156200020e578251825591602001919060010190620001f1565b5b5090506200021e919062000222565b5090565b5b808211156200023d57600081600090555060010162000223565b5090565b600062000258620002528462000422565b620003ee565b9050828152602081018484840111156200027157600080fd5b6200027e848285620006a0565b509392505050565b6000815190506200029781620007a6565b92915050565b600081519050620002ae81620007c0565b92915050565b600082601f830112620002c657600080fd5b8151620002d884826020860162000241565b91505092915050565b600081519050620002f281620007da565b92915050565b60008060008060008060c087890312156200031257600080fd5b600087015167ffffffffffffffff8111156200032d57600080fd5b6200033b89828a01620002b4565b965050602087015167ffffffffffffffff8111156200035957600080fd5b6200036789828a01620002b4565b95505060406200037a89828a01620002e1565b94505060606200038d89828a01620002e1565b9350506080620003a089828a0162000286565b92505060a0620003b389828a016200029d565b9150509295509295509295565b620003cb8162000696565b82525050565b6000602082019050620003e86000830184620003c0565b92915050565b6000604051905081810181811067ffffffffffffffff821117156200041857620004176200076a565b5b8060405250919050565b600067ffffffffffffffff82111562000440576200043f6200076a565b5b601f19601f8301169050602081019050919050565b6000808291508390505b6001851115620004a7578086048111156200047f576200047e6200070c565b5b60018516156200048f5780820291505b80810290506200049f8562000799565b94506200045f565b94509492505050565b6000620004bd8262000696565b9150620004ca8362000696565b9250620004f97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000501565b905092915050565b600082620005135760019050620005e6565b81620005235760009050620005e6565b81600181146200053c576002811462000547576200057d565b6001915050620005e6565b60ff8411156200055c576200055b6200070c565b5b8360020a9150848211156200057657620005756200070c565b5b50620005e6565b5060208310610133831016604e8410600b8410161715620005b75782820a905083811115620005b157620005b06200070c565b5b620005e6565b620005c6848484600162000455565b92509050818404811115620005e057620005df6200070c565b5b81810290505b9392505050565b6000620005fa8262000696565b9150620006078362000696565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200064357620006426200070c565b5b828202905092915050565b60006200065b8262000676565b9050919050565b60006200066f8262000676565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620006c0578082015181840152602081019050620006a3565b83811115620006d0576000848401525b50505050565b60006002820490506001821680620006ef57607f821691505b602082108114156200070657620007056200073b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008160011c9050919050565b620007b1816200064e565b8114620007bd57600080fd5b50565b620007cb8162000662565b8114620007d757600080fd5b50565b620007e58162000696565b8114620007f157600080fd5b50565b61133a80620008046000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190610ff7565b60405180910390f35b6100e660048036038101906100e19190610c7f565b610308565b6040516100f39190610fdc565b60405180910390f35b610104610326565b60405161011191906110f9565b60405180910390f35b610134600480360381019061012f9190610c30565b610330565b6040516101419190610fdc565b60405180910390f35b610152610431565b60405161015f91906110f9565b60405180910390f35b610182600480360381019061017d9190610c7f565b61043b565b60405161018f9190610fdc565b60405180910390f35b6101b260048036038101906101ad9190610bcb565b6104e7565b6040516101bf91906110f9565b60405180910390f35b6101d061052f565b6040516101dd9190610ff7565b60405180910390f35b61020060048036038101906101fb9190610c7f565b6105c1565b60405161020d9190610fdc565b60405180910390f35b610230600480360381019061022b9190610c7f565b6106b5565b60405161023d9190610fdc565b60405180910390f35b610260600480360381019061025b9190610bf4565b6106d3565b60405161026d91906110f9565b60405180910390f35b60606004805461028590611235565b80601f01602080910402602001604051908101604052809291908181526020018280546102b190611235565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b600061031c61031561075a565b8484610762565b6001905092915050565b6000600254905090565b600061033d84848461092d565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061038861075a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ff90611079565b60405180910390fd5b6104258561041461075a565b85846104209190611186565b610762565b60019150509392505050565b6000600354905090565b60006104dd61044861075a565b84846001600061045661075a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104d89190611130565b610762565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606005805461053e90611235565b80601f016020809104026020016040519081016040528092919081815260200182805461056a90611235565b80156105b75780601f1061058c576101008083540402835291602001916105b7565b820191906000526020600020905b81548152906001019060200180831161059a57829003601f168201915b5050505050905090565b600080600160006105d061075a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561068d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610684906110d9565b60405180910390fd5b6106aa61069861075a565b8585846106a59190611186565b610762565b600191505092915050565b60006106c96106c261075a565b848461092d565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c9906110b9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610842576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083990611039565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161092091906110f9565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561099d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099490611099565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0490611019565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8a90611059565b60405180910390fd5b8181610a9f9190611186565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b2f9190611130565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b9391906110f9565b60405180910390a350505050565b600081359050610bb0816112d6565b92915050565b600081359050610bc5816112ed565b92915050565b600060208284031215610bdd57600080fd5b6000610beb84828501610ba1565b91505092915050565b60008060408385031215610c0757600080fd5b6000610c1585828601610ba1565b9250506020610c2685828601610ba1565b9150509250929050565b600080600060608486031215610c4557600080fd5b6000610c5386828701610ba1565b9350506020610c6486828701610ba1565b9250506040610c7586828701610bb6565b9150509250925092565b60008060408385031215610c9257600080fd5b6000610ca085828601610ba1565b9250506020610cb185828601610bb6565b9150509250929050565b610cc4816111cc565b82525050565b6000610cd582611114565b610cdf818561111f565b9350610cef818560208601611202565b610cf8816112c5565b840191505092915050565b6000610d1060238361111f565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610d7660228361111f565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610ddc60268361111f565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610e4260288361111f565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610ea860258361111f565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610f0e60248361111f565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610f7460258361111f565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b610fd6816111f8565b82525050565b6000602082019050610ff16000830184610cbb565b92915050565b600060208201905081810360008301526110118184610cca565b905092915050565b6000602082019050818103600083015261103281610d03565b9050919050565b6000602082019050818103600083015261105281610d69565b9050919050565b6000602082019050818103600083015261107281610dcf565b9050919050565b6000602082019050818103600083015261109281610e35565b9050919050565b600060208201905081810360008301526110b281610e9b565b9050919050565b600060208201905081810360008301526110d281610f01565b9050919050565b600060208201905081810360008301526110f281610f67565b9050919050565b600060208201905061110e6000830184610fcd565b92915050565b600081519050919050565b600082825260208201905092915050565b600061113b826111f8565b9150611146836111f8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561117b5761117a611267565b5b828201905092915050565b6000611191826111f8565b915061119c836111f8565b9250828210156111af576111ae611267565b5b828203905092915050565b60006111c5826111d8565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015611220578082015181840152602081019050611205565b8381111561122f576000848401525b50505050565b6000600282049050600182168061124d57607f821691505b6020821081141561126157611260611296565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b6112df816111ba565b81146112ea57600080fd5b50565b6112f6816111f8565b811461130157600080fd5b5056fea2646970667358221220ac66715f3da6ac3a5b0496d559a203eba5d8f351d4f23f881fae9257d6844fc364736f6c6343000800003300000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000011e1a300000000000000000000000000be6cc8747a010e8179842ab6e7cd3c79889cb4dd000000000000000000000000be6cc8747a010e8179842ab6e7cd3c79889cb4dd00000000000000000000000000000000000000000000000000000000000000084869726120496e7500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044849524f00000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190610ff7565b60405180910390f35b6100e660048036038101906100e19190610c7f565b610308565b6040516100f39190610fdc565b60405180910390f35b610104610326565b60405161011191906110f9565b60405180910390f35b610134600480360381019061012f9190610c30565b610330565b6040516101419190610fdc565b60405180910390f35b610152610431565b60405161015f91906110f9565b60405180910390f35b610182600480360381019061017d9190610c7f565b61043b565b60405161018f9190610fdc565b60405180910390f35b6101b260048036038101906101ad9190610bcb565b6104e7565b6040516101bf91906110f9565b60405180910390f35b6101d061052f565b6040516101dd9190610ff7565b60405180910390f35b61020060048036038101906101fb9190610c7f565b6105c1565b60405161020d9190610fdc565b60405180910390f35b610230600480360381019061022b9190610c7f565b6106b5565b60405161023d9190610fdc565b60405180910390f35b610260600480360381019061025b9190610bf4565b6106d3565b60405161026d91906110f9565b60405180910390f35b60606004805461028590611235565b80601f01602080910402602001604051908101604052809291908181526020018280546102b190611235565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b600061031c61031561075a565b8484610762565b6001905092915050565b6000600254905090565b600061033d84848461092d565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061038861075a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ff90611079565b60405180910390fd5b6104258561041461075a565b85846104209190611186565b610762565b60019150509392505050565b6000600354905090565b60006104dd61044861075a565b84846001600061045661075a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104d89190611130565b610762565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606005805461053e90611235565b80601f016020809104026020016040519081016040528092919081815260200182805461056a90611235565b80156105b75780601f1061058c576101008083540402835291602001916105b7565b820191906000526020600020905b81548152906001019060200180831161059a57829003601f168201915b5050505050905090565b600080600160006105d061075a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561068d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610684906110d9565b60405180910390fd5b6106aa61069861075a565b8585846106a59190611186565b610762565b600191505092915050565b60006106c96106c261075a565b848461092d565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c9906110b9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610842576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083990611039565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161092091906110f9565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561099d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099490611099565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0490611019565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8a90611059565b60405180910390fd5b8181610a9f9190611186565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b2f9190611130565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b9391906110f9565b60405180910390a350505050565b600081359050610bb0816112d6565b92915050565b600081359050610bc5816112ed565b92915050565b600060208284031215610bdd57600080fd5b6000610beb84828501610ba1565b91505092915050565b60008060408385031215610c0757600080fd5b6000610c1585828601610ba1565b9250506020610c2685828601610ba1565b9150509250929050565b600080600060608486031215610c4557600080fd5b6000610c5386828701610ba1565b9350506020610c6486828701610ba1565b9250506040610c7586828701610bb6565b9150509250925092565b60008060408385031215610c9257600080fd5b6000610ca085828601610ba1565b9250506020610cb185828601610bb6565b9150509250929050565b610cc4816111cc565b82525050565b6000610cd582611114565b610cdf818561111f565b9350610cef818560208601611202565b610cf8816112c5565b840191505092915050565b6000610d1060238361111f565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610d7660228361111f565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610ddc60268361111f565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610e4260288361111f565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610ea860258361111f565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610f0e60248361111f565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610f7460258361111f565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b610fd6816111f8565b82525050565b6000602082019050610ff16000830184610cbb565b92915050565b600060208201905081810360008301526110118184610cca565b905092915050565b6000602082019050818103600083015261103281610d03565b9050919050565b6000602082019050818103600083015261105281610d69565b9050919050565b6000602082019050818103600083015261107281610dcf565b9050919050565b6000602082019050818103600083015261109281610e35565b9050919050565b600060208201905081810360008301526110b281610e9b565b9050919050565b600060208201905081810360008301526110d281610f01565b9050919050565b600060208201905081810360008301526110f281610f67565b9050919050565b600060208201905061110e6000830184610fcd565b92915050565b600081519050919050565b600082825260208201905092915050565b600061113b826111f8565b9150611146836111f8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561117b5761117a611267565b5b828201905092915050565b6000611191826111f8565b915061119c836111f8565b9250828210156111af576111ae611267565b5b828203905092915050565b60006111c5826111d8565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015611220578082015181840152602081019050611205565b8381111561122f576000848401525b50505050565b6000600282049050600182168061124d57607f821691505b6020821081141561126157611260611296565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b6112df816111ba565b81146112ea57600080fd5b50565b6112f6816111f8565b811461130157600080fd5b5056fea2646970667358221220ac66715f3da6ac3a5b0496d559a203eba5d8f351d4f23f881fae9257d6844fc364736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000000000011e1a300000000000000000000000000be6cc8747a010e8179842ab6e7cd3c79889cb4dd000000000000000000000000be6cc8747a010e8179842ab6e7cd3c79889cb4dd00000000000000000000000000000000000000000000000000000000000000084869726120496e7500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044849524f00000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): Hira Inu
Arg [1] : symbol_ (string): HIRO
Arg [2] : decimals_ (uint256): 9
Arg [3] : initialBalance_ (uint256): 300000000
Arg [4] : tokenOwner_ (address): 0xbE6cC8747a010E8179842Ab6E7cd3C79889CB4Dd
Arg [5] : feeReceiver_ (address): 0xbE6cC8747a010E8179842Ab6E7cd3C79889CB4Dd
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [3] : 0000000000000000000000000000000000000000000000000000000011e1a300
Arg [4] : 000000000000000000000000be6cc8747a010e8179842ab6e7cd3c79889cb4dd
Arg [5] : 000000000000000000000000be6cc8747a010e8179842ab6e7cd3c79889cb4dd
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [7] : 4869726120496e75000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [9] : 4849524f00000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
10845:373:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5128:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7304:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6257:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7955:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6090:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8786:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6428:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5347:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9504:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6768:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7006:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5128:100;5182:13;5215:5;5208:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5128:100;:::o;7304:169::-;7387:4;7404:39;7413:12;:10;:12::i;:::-;7427:7;7436:6;7404:8;:39::i;:::-;7461:4;7454:11;;7304:169;;;;:::o;6257:108::-;6318:7;6345:12;;6338:19;;6257:108;:::o;7955:422::-;8061:4;8078:36;8088:6;8096:9;8107:6;8078:9;:36::i;:::-;8127:24;8154:11;:19;8166:6;8154:19;;;;;;;;;;;;;;;:33;8174:12;:10;:12::i;:::-;8154:33;;;;;;;;;;;;;;;;8127:60;;8226:6;8206:16;:26;;8198:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;8288:57;8297:6;8305:12;:10;:12::i;:::-;8338:6;8319:16;:25;;;;:::i;:::-;8288:8;:57::i;:::-;8365:4;8358:11;;;7955:422;;;;;:::o;6090:102::-;6148:7;6175:9;;6168:16;;6090:102;:::o;8786:215::-;8874:4;8891:80;8900:12;:10;:12::i;:::-;8914:7;8960:10;8923:11;:25;8935:12;:10;:12::i;:::-;8923:25;;;;;;;;;;;;;;;:34;8949:7;8923:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;8891:8;:80::i;:::-;8989:4;8982:11;;8786:215;;;;:::o;6428:127::-;6502:7;6529:9;:18;6539:7;6529:18;;;;;;;;;;;;;;;;6522:25;;6428:127;;;:::o;5347:104::-;5403:13;5436:7;5429:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5347:104;:::o;9504:377::-;9597:4;9614:24;9641:11;:25;9653:12;:10;:12::i;:::-;9641:25;;;;;;;;;;;;;;;:34;9667:7;9641:34;;;;;;;;;;;;;;;;9614:61;;9714:15;9694:16;:35;;9686:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;9782:67;9791:12;:10;:12::i;:::-;9805:7;9833:15;9814:16;:34;;;;:::i;:::-;9782:8;:67::i;:::-;9869:4;9862:11;;;9504:377;;;;:::o;6768:175::-;6854:4;6871:42;6881:12;:10;:12::i;:::-;6895:9;6906:6;6871:9;:42::i;:::-;6931:4;6924:11;;6768:175;;;;:::o;7006:151::-;7095:7;7122:11;:18;7134:5;7122:18;;;;;;;;;;;;;;;:27;7141:7;7122:27;;;;;;;;;;;;;;;;7115:34;;7006:151;;;;:::o;3617:98::-;3670:7;3697:10;3690:17;;3617:98;:::o;10449:346::-;10568:1;10551:19;;:5;:19;;;;10543:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10649:1;10630:21;;:7;:21;;;;10622:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10733:6;10703:11;:18;10715:5;10703:18;;;;;;;;;;;;;;;:27;10722:7;10703:27;;;;;;;;;;;;;;;:36;;;;10771:7;10755:32;;10764:5;10755:32;;;10780:6;10755:32;;;;;;:::i;:::-;;;;;;;;10449:346;;;:::o;9891:546::-;10015:1;9997:20;;:6;:20;;;;9989:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;10099:1;10078:23;;:9;:23;;;;10070:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;10156:21;10180:9;:17;10190:6;10180:17;;;;;;;;;;;;;;;;10156:41;;10233:6;10216:13;:23;;10208:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;10329:6;10313:13;:22;;;;:::i;:::-;10293:9;:17;10303:6;10293:17;;;;;;;;;;;;;;;:42;;;;10370:6;10346:9;:20;10356:9;10346:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;10411:9;10394:35;;10403:6;10394:35;;;10422:6;10394:35;;;;;;:::i;:::-;;;;;;;;9891:546;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:109::-;2030:21;2045:5;2030:21;:::i;:::-;2025:3;2018:34;2008:50;;:::o;2064:364::-;;2180:39;2213:5;2180:39;:::i;:::-;2235:71;2299:6;2294:3;2235:71;:::i;:::-;2228:78;;2315:52;2360:6;2355:3;2348:4;2341:5;2337:16;2315:52;:::i;:::-;2392:29;2414:6;2392:29;:::i;:::-;2387:3;2383:39;2376:46;;2156:272;;;;;:::o;2434:367::-;;2597:67;2661:2;2656:3;2597:67;:::i;:::-;2590:74;;2694:34;2690:1;2685:3;2681:11;2674:55;2760:5;2755:2;2750:3;2746:12;2739:27;2792:2;2787:3;2783:12;2776:19;;2580:221;;;:::o;2807:366::-;;2970:67;3034:2;3029:3;2970:67;:::i;:::-;2963:74;;3067:34;3063:1;3058:3;3054:11;3047:55;3133:4;3128:2;3123:3;3119:12;3112:26;3164:2;3159:3;3155:12;3148:19;;2953:220;;;:::o;3179:370::-;;3342:67;3406:2;3401:3;3342:67;:::i;:::-;3335:74;;3439:34;3435:1;3430:3;3426:11;3419:55;3505:8;3500:2;3495:3;3491:12;3484:30;3540:2;3535:3;3531:12;3524:19;;3325:224;;;:::o;3555:372::-;;3718:67;3782:2;3777:3;3718:67;:::i;:::-;3711:74;;3815:34;3811:1;3806:3;3802:11;3795:55;3881:10;3876:2;3871:3;3867:12;3860:32;3918:2;3913:3;3909:12;3902:19;;3701:226;;;:::o;3933:369::-;;4096:67;4160:2;4155:3;4096:67;:::i;:::-;4089:74;;4193:34;4189:1;4184:3;4180:11;4173:55;4259:7;4254:2;4249:3;4245:12;4238:29;4293:2;4288:3;4284:12;4277:19;;4079:223;;;:::o;4308:368::-;;4471:67;4535:2;4530:3;4471:67;:::i;:::-;4464:74;;4568:34;4564:1;4559:3;4555:11;4548:55;4634:6;4629:2;4624:3;4620:12;4613:28;4667:2;4662:3;4658:12;4651:19;;4454:222;;;:::o;4682:369::-;;4845:67;4909:2;4904:3;4845:67;:::i;:::-;4838:74;;4942:34;4938:1;4933:3;4929:11;4922:55;5008:7;5003:2;4998:3;4994:12;4987:29;5042:2;5037:3;5033:12;5026:19;;4828:223;;;:::o;5057:118::-;5144:24;5162:5;5144:24;:::i;:::-;5139:3;5132:37;5122:53;;:::o;5181:210::-;;5306:2;5295:9;5291:18;5283:26;;5319:65;5381:1;5370:9;5366:17;5357:6;5319:65;:::i;:::-;5273:118;;;;:::o;5397:313::-;;5548:2;5537:9;5533:18;5525:26;;5597:9;5591:4;5587:20;5583:1;5572:9;5568:17;5561:47;5625:78;5698:4;5689:6;5625:78;:::i;:::-;5617:86;;5515:195;;;;:::o;5716:419::-;;5920:2;5909:9;5905:18;5897:26;;5969:9;5963:4;5959:20;5955:1;5944:9;5940:17;5933:47;5997:131;6123:4;5997:131;:::i;:::-;5989:139;;5887:248;;;:::o;6141:419::-;;6345:2;6334:9;6330:18;6322:26;;6394:9;6388:4;6384:20;6380:1;6369:9;6365:17;6358:47;6422:131;6548:4;6422:131;:::i;:::-;6414:139;;6312:248;;;:::o;6566:419::-;;6770:2;6759:9;6755:18;6747:26;;6819:9;6813:4;6809:20;6805:1;6794:9;6790:17;6783:47;6847:131;6973:4;6847:131;:::i;:::-;6839:139;;6737:248;;;:::o;6991:419::-;;7195:2;7184:9;7180:18;7172:26;;7244:9;7238:4;7234:20;7230:1;7219:9;7215:17;7208:47;7272:131;7398:4;7272:131;:::i;:::-;7264:139;;7162:248;;;:::o;7416:419::-;;7620:2;7609:9;7605:18;7597:26;;7669:9;7663:4;7659:20;7655:1;7644:9;7640:17;7633:47;7697:131;7823:4;7697:131;:::i;:::-;7689:139;;7587:248;;;:::o;7841:419::-;;8045:2;8034:9;8030:18;8022:26;;8094:9;8088:4;8084:20;8080:1;8069:9;8065:17;8058:47;8122:131;8248:4;8122:131;:::i;:::-;8114:139;;8012:248;;;:::o;8266:419::-;;8470:2;8459:9;8455:18;8447:26;;8519:9;8513:4;8509:20;8505:1;8494:9;8490:17;8483:47;8547:131;8673:4;8547:131;:::i;:::-;8539:139;;8437:248;;;:::o;8691:222::-;;8822:2;8811:9;8807:18;8799:26;;8835:71;8903:1;8892:9;8888:17;8879:6;8835:71;:::i;:::-;8789:124;;;;:::o;8919:99::-;;9005:5;8999:12;8989:22;;8978:40;;;:::o;9024:169::-;;9142:6;9137:3;9130:19;9182:4;9177:3;9173:14;9158:29;;9120:73;;;;:::o;9199:305::-;;9258:20;9276:1;9258:20;:::i;:::-;9253:25;;9292:20;9310:1;9292:20;:::i;:::-;9287:25;;9446:1;9378:66;9374:74;9371:1;9368:81;9365:2;;;9452:18;;:::i;:::-;9365:2;9496:1;9493;9489:9;9482:16;;9243:261;;;;:::o;9510:191::-;;9570:20;9588:1;9570:20;:::i;:::-;9565:25;;9604:20;9622:1;9604:20;:::i;:::-;9599:25;;9643:1;9640;9637:8;9634:2;;;9648:18;;:::i;:::-;9634:2;9693:1;9690;9686:9;9678:17;;9555:146;;;;:::o;9707:96::-;;9773:24;9791:5;9773:24;:::i;:::-;9762:35;;9752:51;;;:::o;9809:90::-;;9886:5;9879:13;9872:21;9861:32;;9851:48;;;:::o;9905:126::-;;9982:42;9975:5;9971:54;9960:65;;9950:81;;;:::o;10037:77::-;;10103:5;10092:16;;10082:32;;;:::o;10120:307::-;10188:1;10198:113;10212:6;10209:1;10206:13;10198:113;;;10297:1;10292:3;10288:11;10282:18;10278:1;10273:3;10269:11;10262:39;10234:2;10231:1;10227:10;10222:15;;10198:113;;;10329:6;10326:1;10323:13;10320:2;;;10409:1;10400:6;10395:3;10391:16;10384:27;10320:2;10169:258;;;;:::o;10433:320::-;;10514:1;10508:4;10504:12;10494:22;;10561:1;10555:4;10551:12;10582:18;10572:2;;10638:4;10630:6;10626:17;10616:27;;10572:2;10700;10692:6;10689:14;10669:18;10666:38;10663:2;;;10719:18;;:::i;:::-;10663:2;10484:269;;;;:::o;10759:180::-;10807:77;10804:1;10797:88;10904:4;10901:1;10894:15;10928:4;10925:1;10918:15;10945:180;10993:77;10990:1;10983:88;11090:4;11087:1;11080:15;11114:4;11111:1;11104:15;11131:102;;11223:2;11219:7;11214:2;11207:5;11203:14;11199:28;11189:38;;11179:54;;;:::o;11239:122::-;11312:24;11330:5;11312:24;:::i;:::-;11305:5;11302:35;11292:2;;11351:1;11348;11341:12;11292:2;11282:79;:::o;11367:122::-;11440:24;11458:5;11440:24;:::i;:::-;11433:5;11430:35;11420:2;;11479:1;11476;11469:12;11420:2;11410:79;:::o
Swarm Source
ipfs://ac66715f3da6ac3a5b0496d559a203eba5d8f351d4f23f881fae9257d6844fc3
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.