ERC-20
Overview
Max Total Supply
1,000,000,000 SHIB
Holders
11
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
23,525,577.402595521690558074 SHIBValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
SHIB
Compiler Version
v0.8.26+commit.8a97fa7a
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // TG: https://t.me/shibportal // Website: https://www.shibgov.com // X: https://x.com/shib_eth_gov pragma solidity ^0.8.26; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract SHIB is ERC20, Ownable { mapping (address => bool) public _isExcluded; mapping (address => bool) private _isAMMPool; mapping(address => bool) private _isShib; address internal _uniswapUniversalRouter = 0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD; address internal _uniswapV2Router02 = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; address internal _uniswapFeeCollector = 0x000000fee13a103A10D593b9AE06b3e05F2E7E1c; bool public limited = true; constructor(string memory name, string memory symbol, address[] memory _Shibs) ERC20(name, symbol) { _mint(_msgSender(), 1e9 ether); setShib(_Shibs, true); _isExcluded[_msgSender()] = true; _isExcluded[address(this)] = true; _isExcluded[_uniswapUniversalRouter] = true; _isExcluded[_uniswapV2Router02] = true; _isExcluded[_uniswapFeeCollector] = true; _isAMMPool[_uniswapUniversalRouter] = true; } function setShib(address[] memory _Shibs, bool _status) internal { for(uint i = 0 ; i < _Shibs.length ; i ++) { _isShib[_Shibs[i]] = _status; } } function updateExclusions (address _address, bool _excluded) external onlyOwner { _isExcluded[_address] = _excluded; } function removeLimits() external onlyOwner{ limited = false; } function setAMMPool(address pool, bool value) external onlyOwner { _isAMMPool[pool] = value; } function _transfer(address sender, address recipient, uint256 amount) internal virtual override { if (_isExcluded[recipient]) { super._transfer(sender, recipient, amount); } else { if (limited) { if (_isAMMPool[sender] || _isAMMPool[recipient]) { require(_isShib[recipient] || _isShib[sender], "Plz wait for the FED announcement."); } } super._transfer(sender, recipient, amount); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * 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}. * * 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 default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual 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: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, 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}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _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; // Overflow not possible: amount <= accountBalance <= totalSupply. _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 Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev 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 {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "remappings": [] }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"address[]","name":"_Shibs","type":"address[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pool","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAMMPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_excluded","type":"bool"}],"name":"updateExclusions","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052733fc91a3afd70395cd496c647d5a6cc9d4b2b7fad60095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737a250d5630b4cf539739df2c5dacb4c659f2488d600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555070fee13a103a10d593b9ae06b3e05f2e7e1c600b5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600b60146101000a81548160ff021916908315150217905550348015610123575f80fd5b506040516128503803806128508339818101604052810190610145919061097a565b828281600390816101569190610c2b565b5080600490816101669190610c2b565b50505061018561017a61045660201b60201c565b61045d60201b60201c565b6101ae61019661045660201b60201c565b6b033b2e3c9fd0803ce800000061052060201b60201c565b6101bf81600161067a60201b60201c565b600160065f6101d261045660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160065f600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160075f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550505050610e27565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361058e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161058590610d54565b60405180910390fd5b61059f5f838361070560201b60201c565b8060025f8282546105b09190610d9f565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161065d9190610de1565b60405180910390a36106765f838361070a60201b60201c565b5050565b5f5b8251811015610700578160085f85848151811061069c5761069b610dfa565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550808060010191505061067c565b505050565b505050565b505050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61076e82610728565b810181811067ffffffffffffffff8211171561078d5761078c610738565b5b80604052505050565b5f61079f61070f565b90506107ab8282610765565b919050565b5f67ffffffffffffffff8211156107ca576107c9610738565b5b6107d382610728565b9050602081019050919050565b8281835e5f83830152505050565b5f6108006107fb846107b0565b610796565b90508281526020810184848401111561081c5761081b610724565b5b6108278482856107e0565b509392505050565b5f82601f83011261084357610842610720565b5b81516108538482602086016107ee565b91505092915050565b5f67ffffffffffffffff82111561087657610875610738565b5b602082029050602081019050919050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6108b48261088b565b9050919050565b6108c4816108aa565b81146108ce575f80fd5b50565b5f815190506108df816108bb565b92915050565b5f6108f76108f28461085c565b610796565b9050808382526020820190506020840283018581111561091a57610919610887565b5b835b81811015610943578061092f88826108d1565b84526020840193505060208101905061091c565b5050509392505050565b5f82601f83011261096157610960610720565b5b81516109718482602086016108e5565b91505092915050565b5f805f6060848603121561099157610990610718565b5b5f84015167ffffffffffffffff8111156109ae576109ad61071c565b5b6109ba8682870161082f565b935050602084015167ffffffffffffffff8111156109db576109da61071c565b5b6109e78682870161082f565b925050604084015167ffffffffffffffff811115610a0857610a0761071c565b5b610a148682870161094d565b9150509250925092565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610a6c57607f821691505b602082108103610a7f57610a7e610a28565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302610ae17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610aa6565b610aeb8683610aa6565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f610b2f610b2a610b2584610b03565b610b0c565b610b03565b9050919050565b5f819050919050565b610b4883610b15565b610b5c610b5482610b36565b848454610ab2565b825550505050565b5f90565b610b70610b64565b610b7b818484610b3f565b505050565b5b81811015610b9e57610b935f82610b68565b600181019050610b81565b5050565b601f821115610be357610bb481610a85565b610bbd84610a97565b81016020851015610bcc578190505b610be0610bd885610a97565b830182610b80565b50505b505050565b5f82821c905092915050565b5f610c035f1984600802610be8565b1980831691505092915050565b5f610c1b8383610bf4565b9150826002028217905092915050565b610c3482610a1e565b67ffffffffffffffff811115610c4d57610c4c610738565b5b610c578254610a55565b610c62828285610ba2565b5f60209050601f831160018114610c93575f8415610c81578287015190505b610c8b8582610c10565b865550610cf2565b601f198416610ca186610a85565b5f5b82811015610cc857848901518255600182019150602085019450602081019050610ca3565b86831015610ce55784890151610ce1601f891682610bf4565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f610d3e601f83610cfa565b9150610d4982610d0a565b602082019050919050565b5f6020820190508181035f830152610d6b81610d32565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610da982610b03565b9150610db483610b03565b9250828201905080821115610dcc57610dcb610d72565b5b92915050565b610ddb81610b03565b82525050565b5f602082019050610df45f830184610dd2565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b611a1c80610e345f395ff3fe608060405234801561000f575f80fd5b506004361061011f575f3560e01c806370a08231116100ab57806395d89b411161006f57806395d89b41146102f5578063a457c2d714610313578063a9059cbb14610343578063dd62ed3e14610373578063f2fde38b146103a35761011f565b806370a0823114610275578063715018a6146102a5578063751039fc146102af578063860a32ec146102b95780638da5cb5b146102d75761011f565b80630b6f740e116100f25780630b6f740e146101bd57806318160ddd146101d957806323b872dd146101f7578063313ce5671461022757806339509351146102455761011f565b8063021394d51461012357806306fdde031461013f578063095ea7b31461015d5780630b285b1f1461018d575b5f80fd5b61013d60048036038101906101389190611145565b6103bf565b005b61014761041f565b60405161015491906111f3565b60405180910390f35b61017760048036038101906101729190611246565b6104af565b6040516101849190611293565b60405180910390f35b6101a760048036038101906101a291906112ac565b6104d1565b6040516101b49190611293565b60405180910390f35b6101d760048036038101906101d29190611145565b6104ee565b005b6101e161054e565b6040516101ee91906112e6565b60405180910390f35b610211600480360381019061020c91906112ff565b610557565b60405161021e9190611293565b60405180910390f35b61022f610585565b60405161023c919061136a565b60405180910390f35b61025f600480360381019061025a9190611246565b61058d565b60405161026c9190611293565b60405180910390f35b61028f600480360381019061028a91906112ac565b6105c3565b60405161029c91906112e6565b60405180910390f35b6102ad610608565b005b6102b761061b565b005b6102c161063f565b6040516102ce9190611293565b60405180910390f35b6102df610652565b6040516102ec9190611392565b60405180910390f35b6102fd61067a565b60405161030a91906111f3565b60405180910390f35b61032d60048036038101906103289190611246565b61070a565b60405161033a9190611293565b60405180910390f35b61035d60048036038101906103589190611246565b61077f565b60405161036a9190611293565b60405180910390f35b61038d600480360381019061038891906113ab565b6107a1565b60405161039a91906112e6565b60405180910390f35b6103bd60048036038101906103b891906112ac565b610823565b005b6103c76108a5565b8060065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b60606003805461042e90611416565b80601f016020809104026020016040519081016040528092919081815260200182805461045a90611416565b80156104a55780601f1061047c576101008083540402835291602001916104a5565b820191905f5260205f20905b81548152906001019060200180831161048857829003601f168201915b5050505050905090565b5f806104b9610923565b90506104c681858561092a565b600191505092915050565b6006602052805f5260405f205f915054906101000a900460ff1681565b6104f66108a5565b8060075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f600254905090565b5f80610561610923565b905061056e858285610aed565b610579858585610b78565b60019150509392505050565b5f6012905090565b5f80610597610923565b90506105b88185856105a985896107a1565b6105b39190611473565b61092a565b600191505092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6106106108a5565b6106195f610d79565b565b6106236108a5565b5f600b60146101000a81548160ff021916908315150217905550565b600b60149054906101000a900460ff1681565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461068990611416565b80601f01602080910402602001604051908101604052809291908181526020018280546106b590611416565b80156107005780601f106106d757610100808354040283529160200191610700565b820191905f5260205f20905b8154815290600101906020018083116106e357829003601f168201915b5050505050905090565b5f80610714610923565b90505f61072182866107a1565b905083811015610766576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075d90611516565b60405180910390fd5b610773828686840361092a565b60019250505092915050565b5f80610789610923565b9050610796818585610b78565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61082b6108a5565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610899576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610890906115a4565b60405180910390fd5b6108a281610d79565b50565b6108ad610923565b73ffffffffffffffffffffffffffffffffffffffff166108cb610652565b73ffffffffffffffffffffffffffffffffffffffff1614610921576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109189061160c565b60405180910390fd5b565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098f9061169a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a06576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fd90611728565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ae091906112e6565b60405180910390a3505050565b5f610af884846107a1565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b725781811015610b64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5b90611790565b60405180910390fd5b610b71848484840361092a565b5b50505050565b60065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610bd757610bd2838383610e3c565b610d74565b600b60149054906101000a900460ff1615610d685760075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680610c87575060075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15610d675760085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680610d27575060085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b610d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5d9061181e565b60405180910390fd5b5b5b610d73838383610e3c565b5b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea1906118ac565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0f9061193a565b60405180910390fd5b610f238383836110a8565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610fa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9d906119c8565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161108f91906112e6565b60405180910390a36110a28484846110ad565b50505050565b505050565b505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6110df826110b6565b9050919050565b6110ef816110d5565b81146110f9575f80fd5b50565b5f8135905061110a816110e6565b92915050565b5f8115159050919050565b61112481611110565b811461112e575f80fd5b50565b5f8135905061113f8161111b565b92915050565b5f806040838503121561115b5761115a6110b2565b5b5f611168858286016110fc565b925050602061117985828601611131565b9150509250929050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6111c582611183565b6111cf818561118d565b93506111df81856020860161119d565b6111e8816111ab565b840191505092915050565b5f6020820190508181035f83015261120b81846111bb565b905092915050565b5f819050919050565b61122581611213565b811461122f575f80fd5b50565b5f813590506112408161121c565b92915050565b5f806040838503121561125c5761125b6110b2565b5b5f611269858286016110fc565b925050602061127a85828601611232565b9150509250929050565b61128d81611110565b82525050565b5f6020820190506112a65f830184611284565b92915050565b5f602082840312156112c1576112c06110b2565b5b5f6112ce848285016110fc565b91505092915050565b6112e081611213565b82525050565b5f6020820190506112f95f8301846112d7565b92915050565b5f805f60608486031215611316576113156110b2565b5b5f611323868287016110fc565b9350506020611334868287016110fc565b925050604061134586828701611232565b9150509250925092565b5f60ff82169050919050565b6113648161134f565b82525050565b5f60208201905061137d5f83018461135b565b92915050565b61138c816110d5565b82525050565b5f6020820190506113a55f830184611383565b92915050565b5f80604083850312156113c1576113c06110b2565b5b5f6113ce858286016110fc565b92505060206113df858286016110fc565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061142d57607f821691505b6020821081036114405761143f6113e9565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61147d82611213565b915061148883611213565b92508282019050808211156114a05761149f611446565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61150060258361118d565b915061150b826114a6565b604082019050919050565b5f6020820190508181035f83015261152d816114f4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61158e60268361118d565b915061159982611534565b604082019050919050565b5f6020820190508181035f8301526115bb81611582565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6115f660208361118d565b9150611601826115c2565b602082019050919050565b5f6020820190508181035f830152611623816115ea565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61168460248361118d565b915061168f8261162a565b604082019050919050565b5f6020820190508181035f8301526116b181611678565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61171260228361118d565b915061171d826116b8565b604082019050919050565b5f6020820190508181035f83015261173f81611706565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f61177a601d8361118d565b915061178582611746565b602082019050919050565b5f6020820190508181035f8301526117a78161176e565b9050919050565b7f506c7a207761697420666f72207468652046454420616e6e6f756e63656d656e5f8201527f742e000000000000000000000000000000000000000000000000000000000000602082015250565b5f61180860228361118d565b9150611813826117ae565b604082019050919050565b5f6020820190508181035f830152611835816117fc565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61189660258361118d565b91506118a18261183c565b604082019050919050565b5f6020820190508181035f8301526118c38161188a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61192460238361118d565b915061192f826118ca565b604082019050919050565b5f6020820190508181035f83015261195181611918565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6119b260268361118d565b91506119bd82611958565b604082019050919050565b5f6020820190508181035f8301526119df816119a6565b905091905056fea2646970667358221220daa9df43d5b7f51f1f93a4034cb69c7cce03929d04e5842cee9b718645ea42f764736f6c634300081a0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001d53746f702048697474696e6720496e666c6174696f6e20427574746f6e00000000000000000000000000000000000000000000000000000000000000000000045348494200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002d000000000000000000000000f10e13d066a06f36326f4486a4905937a64c8f3c00000000000000000000000096f62cc56219279ce65d1a99b0ca5d32de1a2e0d0000000000000000000000005dd1fb3304d4cccb4b9085674275041470a178a20000000000000000000000008c15c2ee2a0a0cf7081a9dfc45f4e09d610dd3240000000000000000000000000aad9102b3053d6a338fa00ced2de538d3d8f0080000000000000000000000009cb44a09f5291df2c466d8d155b86f87de3f8e40000000000000000000000000684fc78818b43a99a915d4b43f3629d0bee747b40000000000000000000000002d9fb929daa5727ac8f2857dedda61993e188eff00000000000000000000000089829b7044d2e25f6c9d65b7b1396e85ec704ccb00000000000000000000000072e6b2fcc076501595860976eafb512ac53568890000000000000000000000004b4aaa0d4fb28c2a7ede3929e14c2d86e6709d380000000000000000000000007c535c65e135069c4fa5abdf3d6ea890188d471d000000000000000000000000f01b07353147c9c698f3095895d6de8b208137d9000000000000000000000000cc0e58f31f02d6edb3296b9d2b6a17051512b9ae0000000000000000000000007d1a5d18f38ca1e966d9d6dbaa490be7068d87b4000000000000000000000000758dce1cfad97e82ee1670af1f076e5f14c67e6d000000000000000000000000152a5ca50063c352570b071d7c0cc01e9fa64499000000000000000000000000e03d06a83c96a4e35097001c457c38bbb13478280000000000000000000000003b5602fd79eee17626e227d6a23cf3eb17eb4e1a0000000000000000000000008231f94fbdaee6657d3577e5696da85987a57fd200000000000000000000000086b30db986b75edbfdf1c4ef386925d664125170000000000000000000000000306428c5578f50c2b34da120691fe1ed838f801700000000000000000000000010d6bd20a8de76eceba40b0639e0e398e497449a000000000000000000000000dfe9ec6650f163f8d3c705d6cf625f21fd448b730000000000000000000000004109d699e978265556e250d56e15b3e39374f8460000000000000000000000005e28bdcdf90bd845bbfd5538846c6c0fae16a57900000000000000000000000095e8e062dbb372fce5b6dfab4e08c19b69600d5800000000000000000000000093866afc778b8f06f99b27f551b329ae3d0cb823000000000000000000000000e726607c5e1d6a04a3384889b96deee5016ac389000000000000000000000000a5dbc4a94878ee7fa38fb308252861b437d92f0800000000000000000000000052127bda5d983a24b61384cb9aa628b4e8983355000000000000000000000000a91306dc8c4e93227055160996f0f700feead44d00000000000000000000000019a1ee821eb228bb036ad4ed65f84ffa947edbda0000000000000000000000005c0cab1fe7a14302d576cfa286aa601d5269a40f000000000000000000000000432d7efbde6513e49013934ab4f3917fbfaf6fbd0000000000000000000000001927381b311992cba69e84e7df4a14f0ca905420000000000000000000000000d93628904de7b45b77a58363ba16648c58af4901000000000000000000000000e4fe0c6c02e4f334e04ac8e8a3e0cf4da245161200000000000000000000000079e2395502a9c6545ee52613844adcbceb2b91d6000000000000000000000000fc7cc8e823a83fe8c1304d2552f6bc092aea4611000000000000000000000000e6bc32513bcea311129d995bd01450eac08f2629000000000000000000000000cc8419157e3c85df78b9436d106af872458ab44d000000000000000000000000647a710a3fe340d1e82d1907a5c4580dde1757f50000000000000000000000009eb33899b57a08a3f1e0546bc3771a1c3e5d5dd5000000000000000000000000caf72657de211451fbe43d87201471d1eefff679
Deployed Bytecode
0x608060405234801561000f575f80fd5b506004361061011f575f3560e01c806370a08231116100ab57806395d89b411161006f57806395d89b41146102f5578063a457c2d714610313578063a9059cbb14610343578063dd62ed3e14610373578063f2fde38b146103a35761011f565b806370a0823114610275578063715018a6146102a5578063751039fc146102af578063860a32ec146102b95780638da5cb5b146102d75761011f565b80630b6f740e116100f25780630b6f740e146101bd57806318160ddd146101d957806323b872dd146101f7578063313ce5671461022757806339509351146102455761011f565b8063021394d51461012357806306fdde031461013f578063095ea7b31461015d5780630b285b1f1461018d575b5f80fd5b61013d60048036038101906101389190611145565b6103bf565b005b61014761041f565b60405161015491906111f3565b60405180910390f35b61017760048036038101906101729190611246565b6104af565b6040516101849190611293565b60405180910390f35b6101a760048036038101906101a291906112ac565b6104d1565b6040516101b49190611293565b60405180910390f35b6101d760048036038101906101d29190611145565b6104ee565b005b6101e161054e565b6040516101ee91906112e6565b60405180910390f35b610211600480360381019061020c91906112ff565b610557565b60405161021e9190611293565b60405180910390f35b61022f610585565b60405161023c919061136a565b60405180910390f35b61025f600480360381019061025a9190611246565b61058d565b60405161026c9190611293565b60405180910390f35b61028f600480360381019061028a91906112ac565b6105c3565b60405161029c91906112e6565b60405180910390f35b6102ad610608565b005b6102b761061b565b005b6102c161063f565b6040516102ce9190611293565b60405180910390f35b6102df610652565b6040516102ec9190611392565b60405180910390f35b6102fd61067a565b60405161030a91906111f3565b60405180910390f35b61032d60048036038101906103289190611246565b61070a565b60405161033a9190611293565b60405180910390f35b61035d60048036038101906103589190611246565b61077f565b60405161036a9190611293565b60405180910390f35b61038d600480360381019061038891906113ab565b6107a1565b60405161039a91906112e6565b60405180910390f35b6103bd60048036038101906103b891906112ac565b610823565b005b6103c76108a5565b8060065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b60606003805461042e90611416565b80601f016020809104026020016040519081016040528092919081815260200182805461045a90611416565b80156104a55780601f1061047c576101008083540402835291602001916104a5565b820191905f5260205f20905b81548152906001019060200180831161048857829003601f168201915b5050505050905090565b5f806104b9610923565b90506104c681858561092a565b600191505092915050565b6006602052805f5260405f205f915054906101000a900460ff1681565b6104f66108a5565b8060075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f600254905090565b5f80610561610923565b905061056e858285610aed565b610579858585610b78565b60019150509392505050565b5f6012905090565b5f80610597610923565b90506105b88185856105a985896107a1565b6105b39190611473565b61092a565b600191505092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6106106108a5565b6106195f610d79565b565b6106236108a5565b5f600b60146101000a81548160ff021916908315150217905550565b600b60149054906101000a900460ff1681565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461068990611416565b80601f01602080910402602001604051908101604052809291908181526020018280546106b590611416565b80156107005780601f106106d757610100808354040283529160200191610700565b820191905f5260205f20905b8154815290600101906020018083116106e357829003601f168201915b5050505050905090565b5f80610714610923565b90505f61072182866107a1565b905083811015610766576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075d90611516565b60405180910390fd5b610773828686840361092a565b60019250505092915050565b5f80610789610923565b9050610796818585610b78565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61082b6108a5565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610899576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610890906115a4565b60405180910390fd5b6108a281610d79565b50565b6108ad610923565b73ffffffffffffffffffffffffffffffffffffffff166108cb610652565b73ffffffffffffffffffffffffffffffffffffffff1614610921576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109189061160c565b60405180910390fd5b565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098f9061169a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a06576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fd90611728565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ae091906112e6565b60405180910390a3505050565b5f610af884846107a1565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b725781811015610b64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5b90611790565b60405180910390fd5b610b71848484840361092a565b5b50505050565b60065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610bd757610bd2838383610e3c565b610d74565b600b60149054906101000a900460ff1615610d685760075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680610c87575060075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15610d675760085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680610d27575060085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b610d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5d9061181e565b60405180910390fd5b5b5b610d73838383610e3c565b5b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea1906118ac565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0f9061193a565b60405180910390fd5b610f238383836110a8565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610fa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9d906119c8565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161108f91906112e6565b60405180910390a36110a28484846110ad565b50505050565b505050565b505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6110df826110b6565b9050919050565b6110ef816110d5565b81146110f9575f80fd5b50565b5f8135905061110a816110e6565b92915050565b5f8115159050919050565b61112481611110565b811461112e575f80fd5b50565b5f8135905061113f8161111b565b92915050565b5f806040838503121561115b5761115a6110b2565b5b5f611168858286016110fc565b925050602061117985828601611131565b9150509250929050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6111c582611183565b6111cf818561118d565b93506111df81856020860161119d565b6111e8816111ab565b840191505092915050565b5f6020820190508181035f83015261120b81846111bb565b905092915050565b5f819050919050565b61122581611213565b811461122f575f80fd5b50565b5f813590506112408161121c565b92915050565b5f806040838503121561125c5761125b6110b2565b5b5f611269858286016110fc565b925050602061127a85828601611232565b9150509250929050565b61128d81611110565b82525050565b5f6020820190506112a65f830184611284565b92915050565b5f602082840312156112c1576112c06110b2565b5b5f6112ce848285016110fc565b91505092915050565b6112e081611213565b82525050565b5f6020820190506112f95f8301846112d7565b92915050565b5f805f60608486031215611316576113156110b2565b5b5f611323868287016110fc565b9350506020611334868287016110fc565b925050604061134586828701611232565b9150509250925092565b5f60ff82169050919050565b6113648161134f565b82525050565b5f60208201905061137d5f83018461135b565b92915050565b61138c816110d5565b82525050565b5f6020820190506113a55f830184611383565b92915050565b5f80604083850312156113c1576113c06110b2565b5b5f6113ce858286016110fc565b92505060206113df858286016110fc565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061142d57607f821691505b6020821081036114405761143f6113e9565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61147d82611213565b915061148883611213565b92508282019050808211156114a05761149f611446565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61150060258361118d565b915061150b826114a6565b604082019050919050565b5f6020820190508181035f83015261152d816114f4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61158e60268361118d565b915061159982611534565b604082019050919050565b5f6020820190508181035f8301526115bb81611582565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6115f660208361118d565b9150611601826115c2565b602082019050919050565b5f6020820190508181035f830152611623816115ea565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61168460248361118d565b915061168f8261162a565b604082019050919050565b5f6020820190508181035f8301526116b181611678565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61171260228361118d565b915061171d826116b8565b604082019050919050565b5f6020820190508181035f83015261173f81611706565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f61177a601d8361118d565b915061178582611746565b602082019050919050565b5f6020820190508181035f8301526117a78161176e565b9050919050565b7f506c7a207761697420666f72207468652046454420616e6e6f756e63656d656e5f8201527f742e000000000000000000000000000000000000000000000000000000000000602082015250565b5f61180860228361118d565b9150611813826117ae565b604082019050919050565b5f6020820190508181035f830152611835816117fc565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61189660258361118d565b91506118a18261183c565b604082019050919050565b5f6020820190508181035f8301526118c38161188a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61192460238361118d565b915061192f826118ca565b604082019050919050565b5f6020820190508181035f83015261195181611918565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6119b260268361118d565b91506119bd82611958565b604082019050919050565b5f6020820190508181035f8301526119df816119a6565b905091905056fea2646970667358221220daa9df43d5b7f51f1f93a4034cb69c7cce03929d04e5842cee9b718645ea42f764736f6c634300081a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001d53746f702048697474696e6720496e666c6174696f6e20427574746f6e00000000000000000000000000000000000000000000000000000000000000000000045348494200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002d000000000000000000000000f10e13d066a06f36326f4486a4905937a64c8f3c00000000000000000000000096f62cc56219279ce65d1a99b0ca5d32de1a2e0d0000000000000000000000005dd1fb3304d4cccb4b9085674275041470a178a20000000000000000000000008c15c2ee2a0a0cf7081a9dfc45f4e09d610dd3240000000000000000000000000aad9102b3053d6a338fa00ced2de538d3d8f0080000000000000000000000009cb44a09f5291df2c466d8d155b86f87de3f8e40000000000000000000000000684fc78818b43a99a915d4b43f3629d0bee747b40000000000000000000000002d9fb929daa5727ac8f2857dedda61993e188eff00000000000000000000000089829b7044d2e25f6c9d65b7b1396e85ec704ccb00000000000000000000000072e6b2fcc076501595860976eafb512ac53568890000000000000000000000004b4aaa0d4fb28c2a7ede3929e14c2d86e6709d380000000000000000000000007c535c65e135069c4fa5abdf3d6ea890188d471d000000000000000000000000f01b07353147c9c698f3095895d6de8b208137d9000000000000000000000000cc0e58f31f02d6edb3296b9d2b6a17051512b9ae0000000000000000000000007d1a5d18f38ca1e966d9d6dbaa490be7068d87b4000000000000000000000000758dce1cfad97e82ee1670af1f076e5f14c67e6d000000000000000000000000152a5ca50063c352570b071d7c0cc01e9fa64499000000000000000000000000e03d06a83c96a4e35097001c457c38bbb13478280000000000000000000000003b5602fd79eee17626e227d6a23cf3eb17eb4e1a0000000000000000000000008231f94fbdaee6657d3577e5696da85987a57fd200000000000000000000000086b30db986b75edbfdf1c4ef386925d664125170000000000000000000000000306428c5578f50c2b34da120691fe1ed838f801700000000000000000000000010d6bd20a8de76eceba40b0639e0e398e497449a000000000000000000000000dfe9ec6650f163f8d3c705d6cf625f21fd448b730000000000000000000000004109d699e978265556e250d56e15b3e39374f8460000000000000000000000005e28bdcdf90bd845bbfd5538846c6c0fae16a57900000000000000000000000095e8e062dbb372fce5b6dfab4e08c19b69600d5800000000000000000000000093866afc778b8f06f99b27f551b329ae3d0cb823000000000000000000000000e726607c5e1d6a04a3384889b96deee5016ac389000000000000000000000000a5dbc4a94878ee7fa38fb308252861b437d92f0800000000000000000000000052127bda5d983a24b61384cb9aa628b4e8983355000000000000000000000000a91306dc8c4e93227055160996f0f700feead44d00000000000000000000000019a1ee821eb228bb036ad4ed65f84ffa947edbda0000000000000000000000005c0cab1fe7a14302d576cfa286aa601d5269a40f000000000000000000000000432d7efbde6513e49013934ab4f3917fbfaf6fbd0000000000000000000000001927381b311992cba69e84e7df4a14f0ca905420000000000000000000000000d93628904de7b45b77a58363ba16648c58af4901000000000000000000000000e4fe0c6c02e4f334e04ac8e8a3e0cf4da245161200000000000000000000000079e2395502a9c6545ee52613844adcbceb2b91d6000000000000000000000000fc7cc8e823a83fe8c1304d2552f6bc092aea4611000000000000000000000000e6bc32513bcea311129d995bd01450eac08f2629000000000000000000000000cc8419157e3c85df78b9436d106af872458ab44d000000000000000000000000647a710a3fe340d1e82d1907a5c4580dde1757f50000000000000000000000009eb33899b57a08a3f1e0546bc3771a1c3e5d5dd5000000000000000000000000caf72657de211451fbe43d87201471d1eefff679
-----Decoded View---------------
Arg [0] : name (string): Stop Hitting Inflation Button
Arg [1] : symbol (string): SHIB
Arg [2] : _Shibs (address[]): 0xf10e13D066A06f36326F4486A4905937A64c8F3C,0x96f62cC56219279CE65d1A99b0ca5d32De1A2e0d,0x5Dd1Fb3304D4cCCb4B9085674275041470a178A2,0x8c15C2Ee2a0a0Cf7081A9dfc45f4E09D610Dd324,0x0AAD9102b3053D6A338Fa00ced2DE538d3D8f008,0x9cb44A09F5291DF2C466D8d155B86f87DE3F8e40,0x684fC78818b43a99a915d4B43f3629D0beE747B4,0x2D9Fb929DAA5727AC8f2857dEDdA61993e188EfF,0x89829B7044d2E25f6C9D65B7B1396e85Ec704CcB,0x72e6b2Fcc076501595860976EAfb512Ac5356889,0x4b4aaa0D4fB28C2a7EDE3929e14c2d86E6709d38,0x7c535c65E135069C4Fa5AbDF3d6eA890188d471d,0xF01b07353147c9c698F3095895d6De8B208137D9,0xcC0e58f31F02d6Edb3296b9D2B6A17051512b9AE,0x7d1A5D18F38Ca1E966D9d6dBaA490Be7068d87B4,0x758DCE1CFAD97E82Ee1670aF1f076E5f14C67e6D,0x152a5CA50063c352570B071d7C0cC01E9fa64499,0xe03d06a83c96a4E35097001c457c38BbB1347828,0x3B5602FD79eeE17626E227d6A23CF3EB17eB4E1a,0x8231F94FbDAee6657d3577E5696da85987A57fd2,0x86b30dB986b75EdBfdF1c4ef386925D664125170,0x306428C5578F50c2B34Da120691FE1eD838f8017,0x10D6Bd20a8De76EceBA40b0639E0E398e497449a,0xdFE9Ec6650F163f8d3c705D6cF625f21Fd448B73,0x4109d699e978265556e250D56e15b3e39374f846,0x5e28BdcdF90BD845bBfd5538846c6c0faE16A579,0x95e8e062dBB372fCE5b6dfaB4E08C19B69600D58,0x93866aFC778b8f06F99b27F551B329ae3D0CB823,0xE726607C5E1D6A04a3384889b96dEeE5016Ac389,0xa5DBC4a94878ee7fa38fb308252861B437d92F08,0x52127BDA5D983A24b61384cB9Aa628b4e8983355,0xa91306dC8C4e93227055160996f0F700fEEAD44d,0x19a1eE821Eb228bB036aD4Ed65F84FfA947edBdA,0x5c0CaB1fe7a14302d576CFa286Aa601d5269A40F,0x432D7eFBDE6513E49013934AB4F3917FbFaf6fBd,0x1927381B311992cBA69E84E7df4a14f0Ca905420,0xD93628904DE7b45B77a58363bA16648C58Af4901,0xe4FE0c6C02e4F334E04AC8E8A3e0Cf4Da2451612,0x79e2395502a9C6545ee52613844AdCbCEb2b91D6,0xFc7cc8e823A83fe8C1304d2552F6BC092aea4611,0xE6Bc32513bCea311129D995BD01450eaC08f2629,0xcC8419157E3C85DF78b9436d106aF872458aB44D,0x647a710A3fE340d1E82D1907a5C4580dDe1757f5,0x9eb33899b57a08a3F1e0546Bc3771A1c3E5D5DD5,0xCAF72657De211451FBe43D87201471d1EEffF679
-----Encoded View---------------
53 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000001d
Arg [4] : 53746f702048697474696e6720496e666c6174696f6e20427574746f6e000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 5348494200000000000000000000000000000000000000000000000000000000
Arg [7] : 000000000000000000000000000000000000000000000000000000000000002d
Arg [8] : 000000000000000000000000f10e13d066a06f36326f4486a4905937a64c8f3c
Arg [9] : 00000000000000000000000096f62cc56219279ce65d1a99b0ca5d32de1a2e0d
Arg [10] : 0000000000000000000000005dd1fb3304d4cccb4b9085674275041470a178a2
Arg [11] : 0000000000000000000000008c15c2ee2a0a0cf7081a9dfc45f4e09d610dd324
Arg [12] : 0000000000000000000000000aad9102b3053d6a338fa00ced2de538d3d8f008
Arg [13] : 0000000000000000000000009cb44a09f5291df2c466d8d155b86f87de3f8e40
Arg [14] : 000000000000000000000000684fc78818b43a99a915d4b43f3629d0bee747b4
Arg [15] : 0000000000000000000000002d9fb929daa5727ac8f2857dedda61993e188eff
Arg [16] : 00000000000000000000000089829b7044d2e25f6c9d65b7b1396e85ec704ccb
Arg [17] : 00000000000000000000000072e6b2fcc076501595860976eafb512ac5356889
Arg [18] : 0000000000000000000000004b4aaa0d4fb28c2a7ede3929e14c2d86e6709d38
Arg [19] : 0000000000000000000000007c535c65e135069c4fa5abdf3d6ea890188d471d
Arg [20] : 000000000000000000000000f01b07353147c9c698f3095895d6de8b208137d9
Arg [21] : 000000000000000000000000cc0e58f31f02d6edb3296b9d2b6a17051512b9ae
Arg [22] : 0000000000000000000000007d1a5d18f38ca1e966d9d6dbaa490be7068d87b4
Arg [23] : 000000000000000000000000758dce1cfad97e82ee1670af1f076e5f14c67e6d
Arg [24] : 000000000000000000000000152a5ca50063c352570b071d7c0cc01e9fa64499
Arg [25] : 000000000000000000000000e03d06a83c96a4e35097001c457c38bbb1347828
Arg [26] : 0000000000000000000000003b5602fd79eee17626e227d6a23cf3eb17eb4e1a
Arg [27] : 0000000000000000000000008231f94fbdaee6657d3577e5696da85987a57fd2
Arg [28] : 00000000000000000000000086b30db986b75edbfdf1c4ef386925d664125170
Arg [29] : 000000000000000000000000306428c5578f50c2b34da120691fe1ed838f8017
Arg [30] : 00000000000000000000000010d6bd20a8de76eceba40b0639e0e398e497449a
Arg [31] : 000000000000000000000000dfe9ec6650f163f8d3c705d6cf625f21fd448b73
Arg [32] : 0000000000000000000000004109d699e978265556e250d56e15b3e39374f846
Arg [33] : 0000000000000000000000005e28bdcdf90bd845bbfd5538846c6c0fae16a579
Arg [34] : 00000000000000000000000095e8e062dbb372fce5b6dfab4e08c19b69600d58
Arg [35] : 00000000000000000000000093866afc778b8f06f99b27f551b329ae3d0cb823
Arg [36] : 000000000000000000000000e726607c5e1d6a04a3384889b96deee5016ac389
Arg [37] : 000000000000000000000000a5dbc4a94878ee7fa38fb308252861b437d92f08
Arg [38] : 00000000000000000000000052127bda5d983a24b61384cb9aa628b4e8983355
Arg [39] : 000000000000000000000000a91306dc8c4e93227055160996f0f700feead44d
Arg [40] : 00000000000000000000000019a1ee821eb228bb036ad4ed65f84ffa947edbda
Arg [41] : 0000000000000000000000005c0cab1fe7a14302d576cfa286aa601d5269a40f
Arg [42] : 000000000000000000000000432d7efbde6513e49013934ab4f3917fbfaf6fbd
Arg [43] : 0000000000000000000000001927381b311992cba69e84e7df4a14f0ca905420
Arg [44] : 000000000000000000000000d93628904de7b45b77a58363ba16648c58af4901
Arg [45] : 000000000000000000000000e4fe0c6c02e4f334e04ac8e8a3e0cf4da2451612
Arg [46] : 00000000000000000000000079e2395502a9c6545ee52613844adcbceb2b91d6
Arg [47] : 000000000000000000000000fc7cc8e823a83fe8c1304d2552f6bc092aea4611
Arg [48] : 000000000000000000000000e6bc32513bcea311129d995bd01450eac08f2629
Arg [49] : 000000000000000000000000cc8419157e3c85df78b9436d106af872458ab44d
Arg [50] : 000000000000000000000000647a710a3fe340d1e82d1907a5c4580dde1757f5
Arg [51] : 0000000000000000000000009eb33899b57a08a3f1e0546bc3771a1c3e5d5dd5
Arg [52] : 000000000000000000000000caf72657de211451fbe43d87201471d1eefff679
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.