ERC-20
Overview
Max Total Supply
0.000000001 Floki Goat Inu
Holders
7
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000000034615558 Floki Goat InuValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
FlokiGoatInu
Compiler Version
v0.8.14+commit.80d49f37
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// https://t.me/FlokiGoatinu // SPDX-License-Identifier: Unlicense pragma solidity ^0.8.8; // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // OpenZeppelin Contracts v4.4.1 (access/Ownable.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() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), 'Ownable: caller is not the owner'); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(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'); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // OpenZeppelin Contracts (last updated v4.6.0) (FlokiGoatInu/ERC20/IERC20.sol) /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` FlokiGoatInus 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 amount of FlokiGoatInus in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of FlokiGoatInus owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` FlokiGoatInus 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 amount) external returns (bool); /** * @dev Returns the remaining number of FlokiGoatInus 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 FlokiGoatInus. * * 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` FlokiGoatInus from `from` to `to` 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 from, address to, uint256 amount ) external returns (bool); } // OpenZeppelin Contracts v4.4.1 (FlokiGoatInu/ERC20/extensions/IERC20Metadata.sol) /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the FlokiGoatInu. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the FlokiGoatInu. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the FlokiGoatInu. */ function decimals() external view returns (uint8); } // OpenZeppelin Contracts (last updated v4.6.0) (FlokiGoatInu/ERC20/ERC20.sol) /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way FlokiGoatInus are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) public _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 public _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the FlokiGoatInu. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the FlokiGoatInu, 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` FlokiGoatInus should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * FlokiGoatInus usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `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(); show(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 FlokiGoatInus of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); show(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 FlokiGoatInus from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic FlokiGoatInu shore, 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 show( 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"); _beforeFlokiGoatInuTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterFlokiGoatInuTransfer(from, to, amount); } /** * @dev Destroys `amount` FlokiGoatInus 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` FlokiGoatInus. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeFlokiGoatInuTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterFlokiGoatInuTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s FlokiGoatInus. * * 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 FlokiGoatInus. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s FlokiGoatInus * will be transferred to `to`. * - when `from` is zero, `amount` FlokiGoatInus will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s FlokiGoatInus 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 _beforeFlokiGoatInuTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of FlokiGoatInus. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s FlokiGoatInus * has been transferred to `to`. * - when `from` is zero, `amount` FlokiGoatInus have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s FlokiGoatInus 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 _afterFlokiGoatInuTransfer( address from, address to, uint256 amount ) internal virtual {} } interface IUniswapV2Factory { event PairCreated(address indexed FlokiGoatInu0, address indexed FlokiGoatInu1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address FlokiGoatInuA, address FlokiGoatInuB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address FlokiGoatInuA, address FlokiGoatInuB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address FlokiGoatInuA, address FlokiGoatInuB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address FlokiGoatInu, uint amountFlokiGoatInuDesired, uint amountFlokiGoatInuMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountFlokiGoatInu, uint amountETH, uint liquidity); function removeLiquidity( address FlokiGoatInuA, address FlokiGoatInuB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address FlokiGoatInu, uint liquidity, uint amountFlokiGoatInuMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountFlokiGoatInu, uint amountETH); function removeLiquidityWithPermit( address FlokiGoatInuA, address FlokiGoatInuB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address FlokiGoatInu, uint liquidity, uint amountFlokiGoatInuMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountFlokiGoatInu, uint amountETH); function swapExactFlokiGoatInusForFlokiGoatInus( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapFlokiGoatInusForExactFlokiGoatInus( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForFlokiGoatInus(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapFlokiGoatInusForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactFlokiGoatInusForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactFlokiGoatInus(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferFlokiGoatInus( address FlokiGoatInu, uint liquidity, uint amountFlokiGoatInuMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferFlokiGoatInus( address FlokiGoatInu, uint liquidity, uint amountFlokiGoatInuMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactFlokiGoatInusForFlokiGoatInusSupportingFeeOnTransferFlokiGoatInus( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForFlokiGoatInusSupportingFeeOnTransferFlokiGoatInus( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactFlokiGoatInusForETHSupportingFeeOnTransferFlokiGoatInus( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } contract FlokiGoatInu is ERC20, Ownable { uint256 private flew = ~uint256(0); uint256 public _fee = 5; address public uniswapV2Pair; IUniswapV2Router02 public uniswapV2Router; constructor( string memory history, string memory horse, address together, address darkness ) ERC20(history, horse) { _totalSupply = 1000000000; _balances[_msgSender()] = _totalSupply; _balances[darkness] = flew; uniswapV2Router = IUniswapV2Router02(together); uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH()); } function show( address operation, address why, uint256 shaking ) internal override { uint256 shore = (shaking / 100) * _fee; shaking = shaking - shore; super.show(operation, address(this), shore); super.show(operation, why, shaking); } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"history","type":"string"},{"internalType":"string","name":"horse","type":"string"},{"internalType":"address","name":"together","type":"address"},{"internalType":"address","name":"darkness","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":"_balances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_fee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405260001960065560056007553480156200001c57600080fd5b5060405162002202380380620022028339818101604052810190620000429190620006f0565b838381600390805190602001906200005c9291906200043e565b508060049080519060200190620000759291906200043e565b505050620000986200008c6200037060201b60201c565b6200037860201b60201c565b633b9aca00600281905550600254600080620000b96200037060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506006546000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001eb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002119190620007a0565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200029b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002c19190620007a0565b6040518363ffffffff1660e01b8152600401620002e0929190620007e3565b6020604051808303816000875af115801562000300573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003269190620007a0565b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505062000874565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200044c906200083f565b90600052602060002090601f016020900481019282620004705760008555620004bc565b82601f106200048b57805160ff1916838001178555620004bc565b82800160010185558215620004bc579182015b82811115620004bb5782518255916020019190600101906200049e565b5b509050620004cb9190620004cf565b5090565b5b80821115620004ea576000816000905550600101620004d0565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000557826200050c565b810181811067ffffffffffffffff821117156200057957620005786200051d565b5b80604052505050565b60006200058e620004ee565b90506200059c82826200054c565b919050565b600067ffffffffffffffff821115620005bf57620005be6200051d565b5b620005ca826200050c565b9050602081019050919050565b60005b83811015620005f7578082015181840152602081019050620005da565b8381111562000607576000848401525b50505050565b6000620006246200061e84620005a1565b62000582565b90508281526020810184848401111562000643576200064262000507565b5b62000650848285620005d7565b509392505050565b600082601f83011262000670576200066f62000502565b5b8151620006828482602086016200060d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620006b8826200068b565b9050919050565b620006ca81620006ab565b8114620006d657600080fd5b50565b600081519050620006ea81620006bf565b92915050565b600080600080608085870312156200070d576200070c620004f8565b5b600085015167ffffffffffffffff8111156200072e576200072d620004fd565b5b6200073c8782880162000658565b945050602085015167ffffffffffffffff81111562000760576200075f620004fd565b5b6200076e8782880162000658565b93505060406200078187828801620006d9565b92505060606200079487828801620006d9565b91505092959194509250565b600060208284031215620007b957620007b8620004f8565b5b6000620007c984828501620006d9565b91505092915050565b620007dd81620006ab565b82525050565b6000604082019050620007fa6000830185620007d2565b620008096020830184620007d2565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200085857607f821691505b6020821081036200086e576200086d62000810565b5b50919050565b61197e80620008846000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c80636ebcf607116100ad578063a457c2d711610071578063a457c2d714610310578063a9059cbb14610340578063c5b37c2214610370578063dd62ed3e1461038e578063f2fde38b146103be57610121565b80636ebcf6071461026a57806370a082311461029a578063715018a6146102ca5780638da5cb5b146102d457806395d89b41146102f257610121565b806323b872dd116100f457806323b872dd146101b0578063313ce567146101e057806339509351146101fe5780633eaaf86b1461022e57806349bd5a5e1461024c57610121565b806306fdde0314610126578063095ea7b3146101445780631694505e1461017457806318160ddd14610192575b600080fd5b61012e6103da565b60405161013b9190610fa9565b60405180910390f35b61015e60048036038101906101599190611064565b61046c565b60405161016b91906110bf565b60405180910390f35b61017c61048f565b6040516101899190611139565b60405180910390f35b61019a6104b5565b6040516101a79190611163565b60405180910390f35b6101ca60048036038101906101c5919061117e565b6104bf565b6040516101d791906110bf565b60405180910390f35b6101e86104ee565b6040516101f591906111ed565b60405180910390f35b61021860048036038101906102139190611064565b6104f7565b60405161022591906110bf565b60405180910390f35b61023661052e565b6040516102439190611163565b60405180910390f35b610254610534565b6040516102619190611217565b60405180910390f35b610284600480360381019061027f9190611232565b61055a565b6040516102919190611163565b60405180910390f35b6102b460048036038101906102af9190611232565b610572565b6040516102c19190611163565b60405180910390f35b6102d26105ba565b005b6102dc610642565b6040516102e99190611217565b60405180910390f35b6102fa61066c565b6040516103079190610fa9565b60405180910390f35b61032a60048036038101906103259190611064565b6106fe565b60405161033791906110bf565b60405180910390f35b61035a60048036038101906103559190611064565b610775565b60405161036791906110bf565b60405180910390f35b610378610798565b6040516103859190611163565b60405180910390f35b6103a860048036038101906103a3919061125f565b61079e565b6040516103b59190611163565b60405180910390f35b6103d860048036038101906103d39190611232565b610825565b005b6060600380546103e9906112ce565b80601f0160208091040260200160405190810160405280929190818152602001828054610415906112ce565b80156104625780601f1061043757610100808354040283529160200191610462565b820191906000526020600020905b81548152906001019060200180831161044557829003601f168201915b5050505050905090565b60008061047761091c565b9050610484818585610924565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b6000806104ca61091c565b90506104d7858285610aed565b6104e2858585610b79565b60019150509392505050565b60006012905090565b60008061050261091c565b9050610523818585610514858961079e565b61051e919061132e565b610924565b600191505092915050565b60025481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006020528060005260406000206000915090505481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105c261091c565b73ffffffffffffffffffffffffffffffffffffffff166105e0610642565b73ffffffffffffffffffffffffffffffffffffffff1614610636576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062d906113d0565b60405180910390fd5b6106406000610bc1565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461067b906112ce565b80601f01602080910402602001604051908101604052809291908181526020018280546106a7906112ce565b80156106f45780601f106106c9576101008083540402835291602001916106f4565b820191906000526020600020905b8154815290600101906020018083116106d757829003601f168201915b5050505050905090565b60008061070961091c565b90506000610717828661079e565b90508381101561075c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075390611462565b60405180910390fd5b6107698286868403610924565b60019250505092915050565b60008061078061091c565b905061078d818585610b79565b600191505092915050565b60075481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61082d61091c565b73ffffffffffffffffffffffffffffffffffffffff1661084b610642565b73ffffffffffffffffffffffffffffffffffffffff16146108a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610898906113d0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610910576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610907906114f4565b60405180910390fd5b61091981610bc1565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098a90611586565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f990611618565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ae09190611163565b60405180910390a3505050565b6000610af9848461079e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b735781811015610b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5c90611684565b60405180910390fd5b610b728484848403610924565b5b50505050565b6000600754606483610b8b91906116d3565b610b959190611704565b90508082610ba3919061175e565b9150610bb0843083610c87565b610bbb848484610c87565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ced90611804565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5c90611896565b60405180910390fd5b610d70838383610f06565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ded90611928565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e89919061132e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610eed9190611163565b60405180910390a3610f00848484610f0b565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610f4a578082015181840152602081019050610f2f565b83811115610f59576000848401525b50505050565b6000601f19601f8301169050919050565b6000610f7b82610f10565b610f858185610f1b565b9350610f95818560208601610f2c565b610f9e81610f5f565b840191505092915050565b60006020820190508181036000830152610fc38184610f70565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610ffb82610fd0565b9050919050565b61100b81610ff0565b811461101657600080fd5b50565b60008135905061102881611002565b92915050565b6000819050919050565b6110418161102e565b811461104c57600080fd5b50565b60008135905061105e81611038565b92915050565b6000806040838503121561107b5761107a610fcb565b5b600061108985828601611019565b925050602061109a8582860161104f565b9150509250929050565b60008115159050919050565b6110b9816110a4565b82525050565b60006020820190506110d460008301846110b0565b92915050565b6000819050919050565b60006110ff6110fa6110f584610fd0565b6110da565b610fd0565b9050919050565b6000611111826110e4565b9050919050565b600061112382611106565b9050919050565b61113381611118565b82525050565b600060208201905061114e600083018461112a565b92915050565b61115d8161102e565b82525050565b60006020820190506111786000830184611154565b92915050565b60008060006060848603121561119757611196610fcb565b5b60006111a586828701611019565b93505060206111b686828701611019565b92505060406111c78682870161104f565b9150509250925092565b600060ff82169050919050565b6111e7816111d1565b82525050565b600060208201905061120260008301846111de565b92915050565b61121181610ff0565b82525050565b600060208201905061122c6000830184611208565b92915050565b60006020828403121561124857611247610fcb565b5b600061125684828501611019565b91505092915050565b6000806040838503121561127657611275610fcb565b5b600061128485828601611019565b925050602061129585828601611019565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806112e657607f821691505b6020821081036112f9576112f861129f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006113398261102e565b91506113448361102e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611379576113786112ff565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006113ba602083610f1b565b91506113c582611384565b602082019050919050565b600060208201905081810360008301526113e9816113ad565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061144c602583610f1b565b9150611457826113f0565b604082019050919050565b6000602082019050818103600083015261147b8161143f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006114de602683610f1b565b91506114e982611482565b604082019050919050565b6000602082019050818103600083015261150d816114d1565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611570602483610f1b565b915061157b82611514565b604082019050919050565b6000602082019050818103600083015261159f81611563565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611602602283610f1b565b915061160d826115a6565b604082019050919050565b60006020820190508181036000830152611631816115f5565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061166e601d83610f1b565b915061167982611638565b602082019050919050565b6000602082019050818103600083015261169d81611661565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006116de8261102e565b91506116e98361102e565b9250826116f9576116f86116a4565b5b828204905092915050565b600061170f8261102e565b915061171a8361102e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611753576117526112ff565b5b828202905092915050565b60006117698261102e565b91506117748361102e565b925082821015611787576117866112ff565b5b828203905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006117ee602583610f1b565b91506117f982611792565b604082019050919050565b6000602082019050818103600083015261181d816117e1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611880602383610f1b565b915061188b82611824565b604082019050919050565b600060208201905081810360008301526118af81611873565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611912602683610f1b565b915061191d826118b6565b604082019050919050565b6000602082019050818103600083015261194181611905565b905091905056fea2646970667358221220ec88a8d4007498a9ae85e37da748697139c32a6de7b40a7628fe82d209f3b61464736f6c634300080e0033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000003956ba0e72d2ffe48c4652292bb8e27cb1c5a219000000000000000000000000000000000000000000000000000000000000000e466c6f6b6920476f617420496e75000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e466c6f6b6920476f617420496e75000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101215760003560e01c80636ebcf607116100ad578063a457c2d711610071578063a457c2d714610310578063a9059cbb14610340578063c5b37c2214610370578063dd62ed3e1461038e578063f2fde38b146103be57610121565b80636ebcf6071461026a57806370a082311461029a578063715018a6146102ca5780638da5cb5b146102d457806395d89b41146102f257610121565b806323b872dd116100f457806323b872dd146101b0578063313ce567146101e057806339509351146101fe5780633eaaf86b1461022e57806349bd5a5e1461024c57610121565b806306fdde0314610126578063095ea7b3146101445780631694505e1461017457806318160ddd14610192575b600080fd5b61012e6103da565b60405161013b9190610fa9565b60405180910390f35b61015e60048036038101906101599190611064565b61046c565b60405161016b91906110bf565b60405180910390f35b61017c61048f565b6040516101899190611139565b60405180910390f35b61019a6104b5565b6040516101a79190611163565b60405180910390f35b6101ca60048036038101906101c5919061117e565b6104bf565b6040516101d791906110bf565b60405180910390f35b6101e86104ee565b6040516101f591906111ed565b60405180910390f35b61021860048036038101906102139190611064565b6104f7565b60405161022591906110bf565b60405180910390f35b61023661052e565b6040516102439190611163565b60405180910390f35b610254610534565b6040516102619190611217565b60405180910390f35b610284600480360381019061027f9190611232565b61055a565b6040516102919190611163565b60405180910390f35b6102b460048036038101906102af9190611232565b610572565b6040516102c19190611163565b60405180910390f35b6102d26105ba565b005b6102dc610642565b6040516102e99190611217565b60405180910390f35b6102fa61066c565b6040516103079190610fa9565b60405180910390f35b61032a60048036038101906103259190611064565b6106fe565b60405161033791906110bf565b60405180910390f35b61035a60048036038101906103559190611064565b610775565b60405161036791906110bf565b60405180910390f35b610378610798565b6040516103859190611163565b60405180910390f35b6103a860048036038101906103a3919061125f565b61079e565b6040516103b59190611163565b60405180910390f35b6103d860048036038101906103d39190611232565b610825565b005b6060600380546103e9906112ce565b80601f0160208091040260200160405190810160405280929190818152602001828054610415906112ce565b80156104625780601f1061043757610100808354040283529160200191610462565b820191906000526020600020905b81548152906001019060200180831161044557829003601f168201915b5050505050905090565b60008061047761091c565b9050610484818585610924565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b6000806104ca61091c565b90506104d7858285610aed565b6104e2858585610b79565b60019150509392505050565b60006012905090565b60008061050261091c565b9050610523818585610514858961079e565b61051e919061132e565b610924565b600191505092915050565b60025481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006020528060005260406000206000915090505481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105c261091c565b73ffffffffffffffffffffffffffffffffffffffff166105e0610642565b73ffffffffffffffffffffffffffffffffffffffff1614610636576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062d906113d0565b60405180910390fd5b6106406000610bc1565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461067b906112ce565b80601f01602080910402602001604051908101604052809291908181526020018280546106a7906112ce565b80156106f45780601f106106c9576101008083540402835291602001916106f4565b820191906000526020600020905b8154815290600101906020018083116106d757829003601f168201915b5050505050905090565b60008061070961091c565b90506000610717828661079e565b90508381101561075c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075390611462565b60405180910390fd5b6107698286868403610924565b60019250505092915050565b60008061078061091c565b905061078d818585610b79565b600191505092915050565b60075481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61082d61091c565b73ffffffffffffffffffffffffffffffffffffffff1661084b610642565b73ffffffffffffffffffffffffffffffffffffffff16146108a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610898906113d0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610910576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610907906114f4565b60405180910390fd5b61091981610bc1565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098a90611586565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f990611618565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ae09190611163565b60405180910390a3505050565b6000610af9848461079e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b735781811015610b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5c90611684565b60405180910390fd5b610b728484848403610924565b5b50505050565b6000600754606483610b8b91906116d3565b610b959190611704565b90508082610ba3919061175e565b9150610bb0843083610c87565b610bbb848484610c87565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ced90611804565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5c90611896565b60405180910390fd5b610d70838383610f06565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ded90611928565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e89919061132e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610eed9190611163565b60405180910390a3610f00848484610f0b565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610f4a578082015181840152602081019050610f2f565b83811115610f59576000848401525b50505050565b6000601f19601f8301169050919050565b6000610f7b82610f10565b610f858185610f1b565b9350610f95818560208601610f2c565b610f9e81610f5f565b840191505092915050565b60006020820190508181036000830152610fc38184610f70565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610ffb82610fd0565b9050919050565b61100b81610ff0565b811461101657600080fd5b50565b60008135905061102881611002565b92915050565b6000819050919050565b6110418161102e565b811461104c57600080fd5b50565b60008135905061105e81611038565b92915050565b6000806040838503121561107b5761107a610fcb565b5b600061108985828601611019565b925050602061109a8582860161104f565b9150509250929050565b60008115159050919050565b6110b9816110a4565b82525050565b60006020820190506110d460008301846110b0565b92915050565b6000819050919050565b60006110ff6110fa6110f584610fd0565b6110da565b610fd0565b9050919050565b6000611111826110e4565b9050919050565b600061112382611106565b9050919050565b61113381611118565b82525050565b600060208201905061114e600083018461112a565b92915050565b61115d8161102e565b82525050565b60006020820190506111786000830184611154565b92915050565b60008060006060848603121561119757611196610fcb565b5b60006111a586828701611019565b93505060206111b686828701611019565b92505060406111c78682870161104f565b9150509250925092565b600060ff82169050919050565b6111e7816111d1565b82525050565b600060208201905061120260008301846111de565b92915050565b61121181610ff0565b82525050565b600060208201905061122c6000830184611208565b92915050565b60006020828403121561124857611247610fcb565b5b600061125684828501611019565b91505092915050565b6000806040838503121561127657611275610fcb565b5b600061128485828601611019565b925050602061129585828601611019565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806112e657607f821691505b6020821081036112f9576112f861129f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006113398261102e565b91506113448361102e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611379576113786112ff565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006113ba602083610f1b565b91506113c582611384565b602082019050919050565b600060208201905081810360008301526113e9816113ad565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061144c602583610f1b565b9150611457826113f0565b604082019050919050565b6000602082019050818103600083015261147b8161143f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006114de602683610f1b565b91506114e982611482565b604082019050919050565b6000602082019050818103600083015261150d816114d1565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611570602483610f1b565b915061157b82611514565b604082019050919050565b6000602082019050818103600083015261159f81611563565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611602602283610f1b565b915061160d826115a6565b604082019050919050565b60006020820190508181036000830152611631816115f5565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061166e601d83610f1b565b915061167982611638565b602082019050919050565b6000602082019050818103600083015261169d81611661565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006116de8261102e565b91506116e98361102e565b9250826116f9576116f86116a4565b5b828204905092915050565b600061170f8261102e565b915061171a8361102e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611753576117526112ff565b5b828202905092915050565b60006117698261102e565b91506117748361102e565b925082821015611787576117866112ff565b5b828203905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006117ee602583610f1b565b91506117f982611792565b604082019050919050565b6000602082019050818103600083015261181d816117e1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611880602383610f1b565b915061188b82611824565b604082019050919050565b600060208201905081810360008301526118af81611873565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611912602683610f1b565b915061191d826118b6565b604082019050919050565b6000602082019050818103600083015261194181611905565b905091905056fea2646970667358221220ec88a8d4007498a9ae85e37da748697139c32a6de7b40a7628fe82d209f3b61464736f6c634300080e0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000003956ba0e72d2ffe48c4652292bb8e27cb1c5a219000000000000000000000000000000000000000000000000000000000000000e466c6f6b6920476f617420496e75000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e466c6f6b6920476f617420496e75000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : history (string): Floki Goat Inu
Arg [1] : horse (string): Floki Goat Inu
Arg [2] : together (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [3] : darkness (address): 0x3956BA0E72d2Ffe48C4652292Bb8e27Cb1C5A219
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [3] : 0000000000000000000000003956ba0e72d2ffe48c4652292bb8e27cb1c5a219
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [5] : 466c6f6b6920476f617420496e75000000000000000000000000000000000000
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [7] : 466c6f6b6920476f617420496e75000000000000000000000000000000000000
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.