ERC-20
Overview
Max Total Supply
1,120,228,200 BURGERS
Holders
160
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.643314377818921376 BURGERSValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BurgerDAO
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity 0.8.19; import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol"; import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import {IUniswapV2Router02} from "../interfaces/IUniswapV2Router02.sol"; import {IUniswapV2Factory} from "../interfaces/IUniswapV2Factory.sol"; // ▀█████████▄ ███ █▄ ▄████████ ▄██████▄ ▄████████ ▄████████ ████████▄ ▄████████ ▄██████▄ // ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ▀███ ███ ███ ███ ███ // ███ ███ ███ ███ ███ ███ ███ █▀ ███ █▀ ███ ███ ███ ███ ███ ███ ███ ███ // ▄███▄▄▄██▀ ███ ███ ▄███▄▄▄▄██▀ ▄███ ▄███▄▄▄ ▄███▄▄▄▄██▀ ███ ███ ███ ███ ███ ███ // ▀▀███▀▀▀██▄ ███ ███ ▀▀███▀▀▀▀▀ ▀▀███ ████▄ ▀▀███▀▀▀ ▀▀███▀▀▀▀▀ ███ ███ ▀███████████ ███ ███ // ███ ██▄ ███ ███ ▀███████████ ███ ███ ███ █▄ ▀███████████ ███ ███ ███ ███ ███ ███ // ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ▄███ ███ ███ ███ ███ // ▄█████████▀ ████████▀ ███ ███ ████████▀ ██████████ ███ ███ ████████▀ ███ █▀ ▀██████▀ // ███ ███ ███ ███ // Telegram: https://t.me/burgerdaoeth // Website: https://burgerdao.fun/ contract BurgerDAO is ERC20, Ownable { mapping(address => bool) public _whitelist; uint256 public maxPerWallet; constructor() ERC20("BurgerDAO", "BURGERS") { _whitelist[msg.sender] = true; _whitelist[address(this)] = true; _whitelist[0x000000000000000000000000000000000000dEaD] = true; _mint(address(this), 69_420_000 * 1e18); maxPerWallet = (totalSupply() * 3) / 100; } function openTrading() external payable onlyOwner { IUniswapV2Router02 uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); address uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()) .createPair(address(this), uniswapV2Router.WETH()); _whitelist[uniswapV2Pair] = true; _approve( address(this), address(uniswapV2Router), balanceOf(address(this)) ); uniswapV2Router.addLiquidityETH{value: msg.value}( address(this), balanceOf(address(this)), balanceOf(address(this)), msg.value, owner(), block.timestamp ); renounceOwnership(); } function burn(uint256 amt) external { require(_whitelist[msg.sender]); _burn(msg.sender, amt); } function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual override { if (from == owner()) return; if (!_whitelist[to]) { // no more than 3% of the supply per wallet require(balanceOf(to) + amount < maxPerWallet, "max wallet"); } } }
// 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) internal _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 internal _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]; 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 v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @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 amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `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 tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @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; } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity 0.8.19; interface IUniswapV2Factory { function createPair( address tokenA, address tokenB ) external returns (address pair); function getPair( address tokenA, address tokenB ) external view returns (address pair); }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity 0.8.19; interface IUniswapV2Router02 { function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable returns (uint[] memory amounts); function swapTokensForExactETH( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactTokensForETH( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapETHForExactTokens( uint amountOut, address[] calldata path, address to, uint deadline ) external payable returns (uint[] memory amounts); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); 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); }
{ "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":[],"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":"_whitelist","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":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"payable","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"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600981526020017f42757267657244414f00000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f425552474552530000000000000000000000000000000000000000000000000081525081600390816200008f91906200085a565b508060049081620000a191906200085a565b505050620000c4620000b86200022360201b60201c565b6200022b60201b60201c565b6001600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016006600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620001eb306a396c41bd9e54ada3800000620002f160201b60201c565b60646003620001ff6200045e60201b60201c565b6200020b919062000970565b620002179190620009ea565b60078190555062000b80565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000363576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200035a9062000a83565b60405180910390fd5b62000377600083836200046860201b60201c565b80600260008282546200038b919062000aa5565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200043e919062000af1565b60405180910390a36200045a600083836200046d60201b60201c565b5050565b6000600254905090565b505050565b6200047d6200056e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603156200056957600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1662000568576007548162000518846200059860201b60201c565b62000524919062000aa5565b1062000567576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200055e9062000b5e565b60405180910390fd5b5b5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200066257607f821691505b6020821081036200067857620006776200061a565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006e27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620006a3565b620006ee8683620006a3565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200073b620007356200072f8462000706565b62000710565b62000706565b9050919050565b6000819050919050565b62000757836200071a565b6200076f620007668262000742565b848454620006b0565b825550505050565b600090565b6200078662000777565b620007938184846200074c565b505050565b5b81811015620007bb57620007af6000826200077c565b60018101905062000799565b5050565b601f8211156200080a57620007d4816200067e565b620007df8462000693565b81016020851015620007ef578190505b62000807620007fe8562000693565b83018262000798565b50505b505050565b600082821c905092915050565b60006200082f600019846008026200080f565b1980831691505092915050565b60006200084a83836200081c565b9150826002028217905092915050565b6200086582620005e0565b67ffffffffffffffff811115620008815762000880620005eb565b5b6200088d825462000649565b6200089a828285620007bf565b600060209050601f831160018114620008d25760008415620008bd578287015190505b620008c985826200083c565b86555062000939565b601f198416620008e2866200067e565b60005b828110156200090c57848901518255600182019150602085019450602081019050620008e5565b868310156200092c578489015162000928601f8916826200081c565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200097d8262000706565b91506200098a8362000706565b92508282026200099a8162000706565b91508282048414831517620009b457620009b362000941565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620009f78262000706565b915062000a048362000706565b92508262000a175762000a16620009bb565b5b828204905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000a6b601f8362000a22565b915062000a788262000a33565b602082019050919050565b6000602082019050818103600083015262000a9e8162000a5c565b9050919050565b600062000ab28262000706565b915062000abf8362000706565b925082820190508082111562000ada5762000ad962000941565b5b92915050565b62000aeb8162000706565b82525050565b600060208201905062000b08600083018462000ae0565b92915050565b7f6d61782077616c6c657400000000000000000000000000000000000000000000600082015250565b600062000b46600a8362000a22565b915062000b538262000b0e565b602082019050919050565b6000602082019050818103600083015262000b798162000b37565b9050919050565b611f3f8062000b906000396000f3fe6080604052600436106101095760003560e01c8063715018a611610095578063a9059cbb11610064578063a9059cbb14610381578063c9567bf9146103be578063cfdb63ac146103c8578063dd62ed3e14610405578063f2fde38b1461044257610109565b8063715018a6146102d75780638da5cb5b146102ee57806395d89b4114610319578063a457c2d71461034457610109565b8063313ce567116100dc578063313ce567146101de578063395093511461020957806342966c6814610246578063453c23101461026f57806370a082311461029a57610109565b806306fdde031461010e578063095ea7b31461013957806318160ddd1461017657806323b872dd146101a1575b600080fd5b34801561011a57600080fd5b5061012361046b565b6040516101309190611495565b60405180910390f35b34801561014557600080fd5b50610160600480360381019061015b9190611550565b6104fd565b60405161016d91906115ab565b60405180910390f35b34801561018257600080fd5b5061018b610520565b60405161019891906115d5565b60405180910390f35b3480156101ad57600080fd5b506101c860048036038101906101c391906115f0565b61052a565b6040516101d591906115ab565b60405180910390f35b3480156101ea57600080fd5b506101f3610559565b604051610200919061165f565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190611550565b610562565b60405161023d91906115ab565b60405180910390f35b34801561025257600080fd5b5061026d6004803603810190610268919061167a565b610599565b005b34801561027b57600080fd5b506102846105fc565b60405161029191906115d5565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc91906116a7565b610602565b6040516102ce91906115d5565b60405180910390f35b3480156102e357600080fd5b506102ec61064a565b005b3480156102fa57600080fd5b5061030361065e565b60405161031091906116e3565b60405180910390f35b34801561032557600080fd5b5061032e610688565b60405161033b9190611495565b60405180910390f35b34801561035057600080fd5b5061036b60048036038101906103669190611550565b61071a565b60405161037891906115ab565b60405180910390f35b34801561038d57600080fd5b506103a860048036038101906103a39190611550565b610791565b6040516103b591906115ab565b60405180910390f35b6103c66107b4565b005b3480156103d457600080fd5b506103ef60048036038101906103ea91906116a7565b610a4b565b6040516103fc91906115ab565b60405180910390f35b34801561041157600080fd5b5061042c600480360381019061042791906116fe565b610a6b565b60405161043991906115d5565b60405180910390f35b34801561044e57600080fd5b50610469600480360381019061046491906116a7565b610af2565b005b60606003805461047a9061176d565b80601f01602080910402602001604051908101604052809291908181526020018280546104a69061176d565b80156104f35780601f106104c8576101008083540402835291602001916104f3565b820191906000526020600020905b8154815290600101906020018083116104d657829003601f168201915b5050505050905090565b600080610508610b75565b9050610515818585610b7d565b600191505092915050565b6000600254905090565b600080610535610b75565b9050610542858285610d46565b61054d858585610dd2565b60019150509392505050565b60006012905090565b60008061056d610b75565b905061058e81858561057f8589610a6b565b61058991906117cd565b610b7d565b600191505092915050565b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166105ef57600080fd5b6105f93382611048565b50565b60075481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106526111d2565b61065c6000611250565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106979061176d565b80601f01602080910402602001604051908101604052809291908181526020018280546106c39061176d565b80156107105780601f106106e557610100808354040283529160200191610710565b820191906000526020600020905b8154815290600101906020018083116106f357829003601f168201915b5050505050905090565b600080610725610b75565b905060006107338286610a6b565b905083811015610778576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076f90611873565b60405180910390fd5b6107858286868403610b7d565b60019250505092915050565b60008061079c610b75565b90506107a9818585610dd2565b600191505092915050565b6107bc6111d2565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610822573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061084691906118a8565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156108ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108d191906118a8565b6040518363ffffffff1660e01b81526004016108ee9291906118d5565b6020604051808303816000875af115801561090d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061093191906118a8565b90506001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061099e308361099930610602565b610b7d565b8173ffffffffffffffffffffffffffffffffffffffff1663f305d71934306109c530610602565b6109ce30610602565b346109d761065e565b426040518863ffffffff1660e01b81526004016109f9969594939291906118fe565b60606040518083038185885af1158015610a17573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610a3c9190611974565b505050610a4761064a565b5050565b60066020528060005260406000206000915054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610afa6111d2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6090611a39565b60405180910390fd5b610b7281611250565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be390611acb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5290611b5d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d3991906115d5565b60405180910390a3505050565b6000610d528484610a6b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610dcc5781811015610dbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db590611bc9565b60405180910390fd5b610dcb8484848403610b7d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3890611c5b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610eb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea790611ced565b60405180910390fd5b610ebb838383611316565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3890611d7f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161102f91906115d5565b60405180910390a361104284848461131b565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ae90611e11565b60405180910390fd5b6110c382600083611316565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181016000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540192505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111b991906115d5565b60405180910390a36111cd8360008461131b565b505050565b6111da610b75565b73ffffffffffffffffffffffffffffffffffffffff166111f861065e565b73ffffffffffffffffffffffffffffffffffffffff161461124e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124590611e7d565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b61132361065e565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16031561140057600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166113ff57600754816113b484610602565b6113be91906117cd565b106113fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f590611ee9565b60405180910390fd5b5b5b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561143f578082015181840152602081019050611424565b60008484015250505050565b6000601f19601f8301169050919050565b600061146782611405565b6114718185611410565b9350611481818560208601611421565b61148a8161144b565b840191505092915050565b600060208201905081810360008301526114af818461145c565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006114e7826114bc565b9050919050565b6114f7816114dc565b811461150257600080fd5b50565b600081359050611514816114ee565b92915050565b6000819050919050565b61152d8161151a565b811461153857600080fd5b50565b60008135905061154a81611524565b92915050565b60008060408385031215611567576115666114b7565b5b600061157585828601611505565b92505060206115868582860161153b565b9150509250929050565b60008115159050919050565b6115a581611590565b82525050565b60006020820190506115c0600083018461159c565b92915050565b6115cf8161151a565b82525050565b60006020820190506115ea60008301846115c6565b92915050565b600080600060608486031215611609576116086114b7565b5b600061161786828701611505565b935050602061162886828701611505565b92505060406116398682870161153b565b9150509250925092565b600060ff82169050919050565b61165981611643565b82525050565b60006020820190506116746000830184611650565b92915050565b6000602082840312156116905761168f6114b7565b5b600061169e8482850161153b565b91505092915050565b6000602082840312156116bd576116bc6114b7565b5b60006116cb84828501611505565b91505092915050565b6116dd816114dc565b82525050565b60006020820190506116f860008301846116d4565b92915050565b60008060408385031215611715576117146114b7565b5b600061172385828601611505565b925050602061173485828601611505565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061178557607f821691505b6020821081036117985761179761173e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006117d88261151a565b91506117e38361151a565b92508282019050808211156117fb576117fa61179e565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061185d602583611410565b915061186882611801565b604082019050919050565b6000602082019050818103600083015261188c81611850565b9050919050565b6000815190506118a2816114ee565b92915050565b6000602082840312156118be576118bd6114b7565b5b60006118cc84828501611893565b91505092915050565b60006040820190506118ea60008301856116d4565b6118f760208301846116d4565b9392505050565b600060c08201905061191360008301896116d4565b61192060208301886115c6565b61192d60408301876115c6565b61193a60608301866115c6565b61194760808301856116d4565b61195460a08301846115c6565b979650505050505050565b60008151905061196e81611524565b92915050565b60008060006060848603121561198d5761198c6114b7565b5b600061199b8682870161195f565b93505060206119ac8682870161195f565b92505060406119bd8682870161195f565b9150509250925092565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611a23602683611410565b9150611a2e826119c7565b604082019050919050565b60006020820190508181036000830152611a5281611a16565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ab5602483611410565b9150611ac082611a59565b604082019050919050565b60006020820190508181036000830152611ae481611aa8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b47602283611410565b9150611b5282611aeb565b604082019050919050565b60006020820190508181036000830152611b7681611b3a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611bb3601d83611410565b9150611bbe82611b7d565b602082019050919050565b60006020820190508181036000830152611be281611ba6565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611c45602583611410565b9150611c5082611be9565b604082019050919050565b60006020820190508181036000830152611c7481611c38565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611cd7602383611410565b9150611ce282611c7b565b604082019050919050565b60006020820190508181036000830152611d0681611cca565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611d69602683611410565b9150611d7482611d0d565b604082019050919050565b60006020820190508181036000830152611d9881611d5c565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611dfb602183611410565b9150611e0682611d9f565b604082019050919050565b60006020820190508181036000830152611e2a81611dee565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611e67602083611410565b9150611e7282611e31565b602082019050919050565b60006020820190508181036000830152611e9681611e5a565b9050919050565b7f6d61782077616c6c657400000000000000000000000000000000000000000000600082015250565b6000611ed3600a83611410565b9150611ede82611e9d565b602082019050919050565b60006020820190508181036000830152611f0281611ec6565b905091905056fea26469706673582212201f7a02ef451516b6c9b891527cf85bd4bf2aef367f3f7aaa5927576d9fa553a764736f6c63430008130033
Deployed Bytecode
0x6080604052600436106101095760003560e01c8063715018a611610095578063a9059cbb11610064578063a9059cbb14610381578063c9567bf9146103be578063cfdb63ac146103c8578063dd62ed3e14610405578063f2fde38b1461044257610109565b8063715018a6146102d75780638da5cb5b146102ee57806395d89b4114610319578063a457c2d71461034457610109565b8063313ce567116100dc578063313ce567146101de578063395093511461020957806342966c6814610246578063453c23101461026f57806370a082311461029a57610109565b806306fdde031461010e578063095ea7b31461013957806318160ddd1461017657806323b872dd146101a1575b600080fd5b34801561011a57600080fd5b5061012361046b565b6040516101309190611495565b60405180910390f35b34801561014557600080fd5b50610160600480360381019061015b9190611550565b6104fd565b60405161016d91906115ab565b60405180910390f35b34801561018257600080fd5b5061018b610520565b60405161019891906115d5565b60405180910390f35b3480156101ad57600080fd5b506101c860048036038101906101c391906115f0565b61052a565b6040516101d591906115ab565b60405180910390f35b3480156101ea57600080fd5b506101f3610559565b604051610200919061165f565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190611550565b610562565b60405161023d91906115ab565b60405180910390f35b34801561025257600080fd5b5061026d6004803603810190610268919061167a565b610599565b005b34801561027b57600080fd5b506102846105fc565b60405161029191906115d5565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc91906116a7565b610602565b6040516102ce91906115d5565b60405180910390f35b3480156102e357600080fd5b506102ec61064a565b005b3480156102fa57600080fd5b5061030361065e565b60405161031091906116e3565b60405180910390f35b34801561032557600080fd5b5061032e610688565b60405161033b9190611495565b60405180910390f35b34801561035057600080fd5b5061036b60048036038101906103669190611550565b61071a565b60405161037891906115ab565b60405180910390f35b34801561038d57600080fd5b506103a860048036038101906103a39190611550565b610791565b6040516103b591906115ab565b60405180910390f35b6103c66107b4565b005b3480156103d457600080fd5b506103ef60048036038101906103ea91906116a7565b610a4b565b6040516103fc91906115ab565b60405180910390f35b34801561041157600080fd5b5061042c600480360381019061042791906116fe565b610a6b565b60405161043991906115d5565b60405180910390f35b34801561044e57600080fd5b50610469600480360381019061046491906116a7565b610af2565b005b60606003805461047a9061176d565b80601f01602080910402602001604051908101604052809291908181526020018280546104a69061176d565b80156104f35780601f106104c8576101008083540402835291602001916104f3565b820191906000526020600020905b8154815290600101906020018083116104d657829003601f168201915b5050505050905090565b600080610508610b75565b9050610515818585610b7d565b600191505092915050565b6000600254905090565b600080610535610b75565b9050610542858285610d46565b61054d858585610dd2565b60019150509392505050565b60006012905090565b60008061056d610b75565b905061058e81858561057f8589610a6b565b61058991906117cd565b610b7d565b600191505092915050565b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166105ef57600080fd5b6105f93382611048565b50565b60075481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106526111d2565b61065c6000611250565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106979061176d565b80601f01602080910402602001604051908101604052809291908181526020018280546106c39061176d565b80156107105780601f106106e557610100808354040283529160200191610710565b820191906000526020600020905b8154815290600101906020018083116106f357829003601f168201915b5050505050905090565b600080610725610b75565b905060006107338286610a6b565b905083811015610778576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076f90611873565b60405180910390fd5b6107858286868403610b7d565b60019250505092915050565b60008061079c610b75565b90506107a9818585610dd2565b600191505092915050565b6107bc6111d2565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610822573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061084691906118a8565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156108ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108d191906118a8565b6040518363ffffffff1660e01b81526004016108ee9291906118d5565b6020604051808303816000875af115801561090d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061093191906118a8565b90506001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061099e308361099930610602565b610b7d565b8173ffffffffffffffffffffffffffffffffffffffff1663f305d71934306109c530610602565b6109ce30610602565b346109d761065e565b426040518863ffffffff1660e01b81526004016109f9969594939291906118fe565b60606040518083038185885af1158015610a17573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610a3c9190611974565b505050610a4761064a565b5050565b60066020528060005260406000206000915054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610afa6111d2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6090611a39565b60405180910390fd5b610b7281611250565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be390611acb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5290611b5d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d3991906115d5565b60405180910390a3505050565b6000610d528484610a6b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610dcc5781811015610dbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db590611bc9565b60405180910390fd5b610dcb8484848403610b7d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3890611c5b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610eb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea790611ced565b60405180910390fd5b610ebb838383611316565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3890611d7f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161102f91906115d5565b60405180910390a361104284848461131b565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ae90611e11565b60405180910390fd5b6110c382600083611316565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181016000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540192505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111b991906115d5565b60405180910390a36111cd8360008461131b565b505050565b6111da610b75565b73ffffffffffffffffffffffffffffffffffffffff166111f861065e565b73ffffffffffffffffffffffffffffffffffffffff161461124e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124590611e7d565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b61132361065e565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16031561140057600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166113ff57600754816113b484610602565b6113be91906117cd565b106113fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f590611ee9565b60405180910390fd5b5b5b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561143f578082015181840152602081019050611424565b60008484015250505050565b6000601f19601f8301169050919050565b600061146782611405565b6114718185611410565b9350611481818560208601611421565b61148a8161144b565b840191505092915050565b600060208201905081810360008301526114af818461145c565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006114e7826114bc565b9050919050565b6114f7816114dc565b811461150257600080fd5b50565b600081359050611514816114ee565b92915050565b6000819050919050565b61152d8161151a565b811461153857600080fd5b50565b60008135905061154a81611524565b92915050565b60008060408385031215611567576115666114b7565b5b600061157585828601611505565b92505060206115868582860161153b565b9150509250929050565b60008115159050919050565b6115a581611590565b82525050565b60006020820190506115c0600083018461159c565b92915050565b6115cf8161151a565b82525050565b60006020820190506115ea60008301846115c6565b92915050565b600080600060608486031215611609576116086114b7565b5b600061161786828701611505565b935050602061162886828701611505565b92505060406116398682870161153b565b9150509250925092565b600060ff82169050919050565b61165981611643565b82525050565b60006020820190506116746000830184611650565b92915050565b6000602082840312156116905761168f6114b7565b5b600061169e8482850161153b565b91505092915050565b6000602082840312156116bd576116bc6114b7565b5b60006116cb84828501611505565b91505092915050565b6116dd816114dc565b82525050565b60006020820190506116f860008301846116d4565b92915050565b60008060408385031215611715576117146114b7565b5b600061172385828601611505565b925050602061173485828601611505565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061178557607f821691505b6020821081036117985761179761173e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006117d88261151a565b91506117e38361151a565b92508282019050808211156117fb576117fa61179e565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061185d602583611410565b915061186882611801565b604082019050919050565b6000602082019050818103600083015261188c81611850565b9050919050565b6000815190506118a2816114ee565b92915050565b6000602082840312156118be576118bd6114b7565b5b60006118cc84828501611893565b91505092915050565b60006040820190506118ea60008301856116d4565b6118f760208301846116d4565b9392505050565b600060c08201905061191360008301896116d4565b61192060208301886115c6565b61192d60408301876115c6565b61193a60608301866115c6565b61194760808301856116d4565b61195460a08301846115c6565b979650505050505050565b60008151905061196e81611524565b92915050565b60008060006060848603121561198d5761198c6114b7565b5b600061199b8682870161195f565b93505060206119ac8682870161195f565b92505060406119bd8682870161195f565b9150509250925092565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611a23602683611410565b9150611a2e826119c7565b604082019050919050565b60006020820190508181036000830152611a5281611a16565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ab5602483611410565b9150611ac082611a59565b604082019050919050565b60006020820190508181036000830152611ae481611aa8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b47602283611410565b9150611b5282611aeb565b604082019050919050565b60006020820190508181036000830152611b7681611b3a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611bb3601d83611410565b9150611bbe82611b7d565b602082019050919050565b60006020820190508181036000830152611be281611ba6565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611c45602583611410565b9150611c5082611be9565b604082019050919050565b60006020820190508181036000830152611c7481611c38565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611cd7602383611410565b9150611ce282611c7b565b604082019050919050565b60006020820190508181036000830152611d0681611cca565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611d69602683611410565b9150611d7482611d0d565b604082019050919050565b60006020820190508181036000830152611d9881611d5c565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611dfb602183611410565b9150611e0682611d9f565b604082019050919050565b60006020820190508181036000830152611e2a81611dee565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611e67602083611410565b9150611e7282611e31565b602082019050919050565b60006020820190508181036000830152611e9681611e5a565b9050919050565b7f6d61782077616c6c657400000000000000000000000000000000000000000000600082015250565b6000611ed3600a83611410565b9150611ede82611e9d565b602082019050919050565b60006020820190508181036000830152611f0281611ec6565b905091905056fea26469706673582212201f7a02ef451516b6c9b891527cf85bd4bf2aef367f3f7aaa5927576d9fa553a764736f6c63430008130033
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.