Ellerium token contract has migrated to a new address.
ERC-20
Source Code
Overview
Max Total Supply
1,005,054,452,325.323338153338932514 ELM
Holders
3,314 (0.00%)
Market
Price
$0.00 @ 0.000000 ETH
Onchain Market Cap
-
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.0000000000000002 ELMValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
ElleriumTokenERC20v2
Compiler Version
v0.8.0+commit.c7dfd78e
Optimization Enabled:
No with 200 runs
Other Settings:
byzantium EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity ^0.8.0;
//SPDX-License-Identifier: UNLICENSED
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "./interfaces/IUniswapV2Factory.sol";
import "./interfaces/IUniswapV2Router02.sol";
import "./interfaces/IUniswapV2Pair.sol";
/**
* Tales of Elleria
*/
contract ElleriumTokenERC20v2 is Context, IERC20, IERC20Metadata, Ownable {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name = "Ellerium";
string private _symbol = "ELM";
bool private _allowHumanTrades = false;
mapping (address => bool) private _isBlacklisted;
// Address of our gnosis safe.
address private blacklistedFeesAddress = 0x69832Af74774baE99D999e7F74FE3F7d5833bF84;
mapping (address => bool) private _approvedAddresses;
constructor() {
_mint(msg.sender, 150000 * 1e18);
_approvedAddresses[msg.sender] = true;
}
/**
* Allows the changing of the
* fees address if necessary.
*/
function UpdateFeesAddress(address _feesAddr) public onlyOwner {
blacklistedFeesAddress = _feesAddr;
}
/**
* Allows approval of certain contracts
* to mint tokens. (bridge, staking)
*/
function SetApprovedAddress(address _address, bool _allowed) public onlyOwner {
_approvedAddresses[_address] = _allowed;
emit AdminAddressChange(_address, _allowed);
}
/**
* Sets blacklist status for certain addresses.
* Would be necessary to 'unban' wallets who bought during
* the anti-bot-trade period.
*/
function SetBlacklistedAddress(address[] memory _addresses, bool _blacklisted) public {
require (msg.sender == owner() || _approvedAddresses[msg.sender]);
for (uint256 i = 0; i < _addresses.length; i++) {
_isBlacklisted[_addresses[i]] = _blacklisted;
emit Blacklist(_addresses[i], _blacklisted);
}
}
/**
* One-time function to enable trades.
* Trades cannot be disabled hereafter.
*/
function EnableTrades() external onlyOwner {
_allowHumanTrades = true;
}
/**
* Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* Returns the symbol of the token.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* 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`).
*/
function decimals() public view virtual override returns (uint8) {
return 18;
}
/**
* See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* See {IERC20-transfer}.
*/
function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
/**
* See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* See {IERC20-approve}.
*
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
/**
* 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}.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
uint256 currentAllowance = _allowances[sender][_msgSender()];
require(currentAllowance >= amount, "EZBA");
unchecked {
_approve(sender, _msgSender(), currentAllowance - amount);
}
return true;
}
/**
* Atomically increases the allowance granted to `spender` by the caller.
*
* Emits an {Approval} event indicating the updated allowance.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
return true;
}
/**
* Atomically decreases the allowance granted to `spender` by the caller.
*
* Emits an {Approval} event indicating the updated allowance.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
uint256 currentAllowance = _allowances[_msgSender()][spender];
require(currentAllowance >= subtractedValue, "EZC");
unchecked {
_approve(_msgSender(), spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* Moves `amount` of tokens from `sender` to `recipient`.
*
* This internal function is equivalent to {transfer}, with a
* blacklist function to prevent bots from swapping tokens
* automatically after LP is added to.
*
* Emits a {Transfer} event.
*/
function _transfer(
address sender,
address recipient,
uint256 amount
) internal virtual {
require(sender != address(0), "EZA");
uint256 senderBalance = _balances[sender];
address actualRecipient = recipient;
require(senderBalance >= amount, "EZB");
unchecked {
_balances[sender] = senderBalance - amount;
}
// Blacklisted addresses are not allowed to transfer; bots not allowed to make transactions until trades enabled.
if ((_isBlacklisted[sender] || _isBlacklisted[msg.sender] || _isBlacklisted[tx.origin] || !_allowHumanTrades) && tx.origin != owner()) {
actualRecipient = blacklistedFeesAddress;
}
// Blacklists if someone buys while trades are not enabled yet. Allows us time to distribute funds and set up announcements.
if (!_allowHumanTrades && !_approvedAddresses[recipient]) {
actualRecipient = blacklistedFeesAddress;
_isBlacklisted[msg.sender] = true;
_isBlacklisted[tx.origin] = true;
emit Blacklist(msg.sender, true);
emit Blacklist(tx.origin, true);
}
// Demint for burn transactions.
if (recipient == address(0)) {
_totalSupply = _totalSupply - amount;
}
_balances[actualRecipient] = _balances[actualRecipient] + amount;
emit Transfer(sender, recipient, amount);
}
/**Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*/
function _mint(address account, uint256 amount) internal {
require(account != address(0), "34");
_totalSupply = _totalSupply + amount;
_balances[account] = _balances[account] + amount;
emit Transfer(address(0), account, amount);
}
/**
* Mint function for our project approved addresses.
* -> Bridging and staking reward contracts.
*/
function mint(address _recipient, uint256 _amount) public {
require(_approvedAddresses[msg.sender], "33");
_mint(_recipient, _amount);
}
/**
* 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), "EZD");
require(spender != address(0), "EZE");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
event Blacklist(address _address, bool isBlacklisted);
event AdminAddressChange(address _address, bool isAdmin);
}//SPDX-License-Identifier: MIT
pragma solidity >=0.6.2;
interface IUniswapV2Router01 {
function factory() external pure returns (address);
function WETH() external pure returns (address);
function addLiquidity(
address tokenA,
address tokenB,
uint256 amountADesired,
uint256 amountBDesired,
uint256 amountAMin,
uint256 amountBMin,
address to,
uint256 deadline
)
external
returns (
uint256 amountA,
uint256 amountB,
uint256 liquidity
);
function addLiquidityETH(
address token,
uint256 amountTokenDesired,
uint256 amountTokenMin,
uint256 amountETHMin,
address to,
uint256 deadline
)
external
payable
returns (
uint256 amountToken,
uint256 amountETH,
uint256 liquidity
);
function removeLiquidity(
address tokenA,
address tokenB,
uint256 liquidity,
uint256 amountAMin,
uint256 amountBMin,
address to,
uint256 deadline
) external returns (uint256 amountA, uint256 amountB);
function removeLiquidityETH(
address token,
uint256 liquidity,
uint256 amountTokenMin,
uint256 amountETHMin,
address to,
uint256 deadline
) external returns (uint256 amountToken, uint256 amountETH);
function removeLiquidityWithPermit(
address tokenA,
address tokenB,
uint256 liquidity,
uint256 amountAMin,
uint256 amountBMin,
address to,
uint256 deadline,
bool approveMax,
uint8 v,
bytes32 r,
bytes32 s
) external returns (uint256 amountA, uint256 amountB);
function removeLiquidityETHWithPermit(
address token,
uint256 liquidity,
uint256 amountTokenMin,
uint256 amountETHMin,
address to,
uint256 deadline,
bool approveMax,
uint8 v,
bytes32 r,
bytes32 s
) external returns (uint256 amountToken, uint256 amountETH);
function swapExactTokensForTokens(
uint256 amountIn,
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external returns (uint256[] memory amounts);
function swapTokensForExactTokens(
uint256 amountOut,
uint256 amountInMax,
address[] calldata path,
address to,
uint256 deadline
) external returns (uint256[] memory amounts);
function swapExactETHForTokens(
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external payable returns (uint256[] memory amounts);
function swapTokensForExactETH(
uint256 amountOut,
uint256 amountInMax,
address[] calldata path,
address to,
uint256 deadline
) external returns (uint256[] memory amounts);
function swapExactTokensForETH(
uint256 amountIn,
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external returns (uint256[] memory amounts);
function swapETHForExactTokens(
uint256 amountOut,
address[] calldata path,
address to,
uint256 deadline
) external payable returns (uint256[] memory amounts);
function quote(
uint256 amountA,
uint256 reserveA,
uint256 reserveB
) external pure returns (uint256 amountB);
function getAmountOut(
uint256 amountIn,
uint256 reserveIn,
uint256 reserveOut
) external pure returns (uint256 amountOut);
function getAmountIn(
uint256 amountOut,
uint256 reserveIn,
uint256 reserveOut
) external pure returns (uint256 amountIn);
function getAmountsOut(uint256 amountIn, address[] calldata path)
external
view
returns (uint256[] memory amounts);
function getAmountsIn(uint256 amountOut, address[] calldata path)
external
view
returns (uint256[] memory amounts);
}
interface IUniswapV2Router02 is IUniswapV2Router01 {
function removeLiquidityETHSupportingFeeOnTransferTokens(
address token,
uint256 liquidity,
uint256 amountTokenMin,
uint256 amountETHMin,
address to,
uint256 deadline
) external returns (uint256 amountETH);
function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
address token,
uint256 liquidity,
uint256 amountTokenMin,
uint256 amountETHMin,
address to,
uint256 deadline,
bool approveMax,
uint8 v,
bytes32 r,
bytes32 s
) external returns (uint256 amountETH);
function swapExactTokensForTokensSupportingFeeOnTransferTokens(
uint256 amountIn,
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external;
function swapExactETHForTokensSupportingFeeOnTransferTokens(
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external payable;
function swapExactTokensForETHSupportingFeeOnTransferTokens(
uint256 amountIn,
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external;
}//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
interface IUniswapV2Pair {
event Approval(address indexed owner, address indexed spender, uint value);
event Transfer(address indexed from, address indexed to, uint value);
function name() external pure returns (string memory);
function symbol() external pure returns (string memory);
function decimals() external pure returns (uint8);
function totalSupply() external view returns (uint);
function balanceOf(address owner) external view returns (uint);
function allowance(address owner, address spender) external view returns (uint);
function approve(address spender, uint value) external returns (bool);
function transfer(address to, uint value) external returns (bool);
function transferFrom(address from, address to, uint value) external returns (bool);
function DOMAIN_SEPARATOR() external view returns (bytes32);
function PERMIT_TYPEHASH() external pure returns (bytes32);
function nonces(address owner) external view returns (uint);
function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;
event Mint(address indexed sender, uint amount0, uint amount1);
event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
event Swap(
address indexed sender,
uint amount0In,
uint amount1In,
uint amount0Out,
uint amount1Out,
address indexed to
);
event Sync(uint112 reserve0, uint112 reserve1);
function MINIMUM_LIQUIDITY() external pure returns (uint);
function factory() external view returns (address);
function token0() external view returns (address);
function token1() external view returns (address);
function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
function price0CumulativeLast() external view returns (uint);
function price1CumulativeLast() external view returns (uint);
function kLast() external view returns (uint);
function mint(address to) external returns (uint liquidity);
function burn(address to) external returns (uint amount0, uint amount1);
function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
function skim(address to) external;
function sync() external;
function initialize(address, address) external;
}//SPDX-License-Identifier: MIT
pragma solidity >=0.5.0;
interface IUniswapV2Factory {
event PairCreated(
address indexed token0,
address indexed token1,
address pair,
uint256
);
function feeTo() external view returns (address);
function feeToSetter() external view returns (address);
function getPair(address tokenA, address tokenB)
external
view
returns (address pair);
function allPairs(uint256) external view returns (address pair);
function allPairsLength() external view returns (uint256);
function createPair(address tokenA, address tokenB)
external
returns (address pair);
function setFeeTo(address) external;
function setFeeToSetter(address) external;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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: MIT
// OpenZeppelin Contracts v4.4.0 (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 v4.4.0 (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.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 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 {
_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);
}
}{
"remappings": [],
"optimizer": {
"enabled": false,
"runs": 200
},
"evmVersion": "byzantium",
"libraries": {},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_address","type":"address"},{"indexed":false,"internalType":"bool","name":"isAdmin","type":"bool"}],"name":"AdminAddressChange","type":"event"},{"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":false,"internalType":"address","name":"_address","type":"address"},{"indexed":false,"internalType":"bool","name":"isBlacklisted","type":"bool"}],"name":"Blacklist","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":[],"name":"EnableTrades","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_allowed","type":"bool"}],"name":"SetApprovedAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"bool","name":"_blacklisted","type":"bool"}],"name":"SetBlacklistedAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_feesAddr","type":"address"}],"name":"UpdateFeesAddress","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60806040526040518060400160405280600881526020017f456c6c657269756d000000000000000000000000000000000000000000000000815250600490805190602001906200005192919062000424565b506040518060400160405280600381526020017f454c4d0000000000000000000000000000000000000000000000000000000000815250600590805190602001906200009f92919062000424565b506000600660006101000a81548160ff0219169083151502179055507369832af74774bae99d999e7f74fe3f7d5833bf84600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200011d57600080fd5b50620001506200013b620001d3640100000000026401000000009004565b620001db640100000000026401000000009004565b6200017533691fc3842bd1f071c000006200029f640100000000026401000000009004565b6001600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000672565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000312576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003099062000527565b60405180910390fd5b8060035462000322919062000577565b60038190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000375919062000577565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000418919062000549565b60405180910390a35050565b8280546200043290620005de565b90600052602060002090601f016020900481019282620004565760008555620004a2565b82601f106200047157805160ff1916838001178555620004a2565b82800160010185558215620004a2579182015b82811115620004a157825182559160200191906001019062000484565b5b509050620004b19190620004b5565b5090565b5b80821115620004d0576000816000905550600101620004b6565b5090565b6000620004e360028362000566565b91507f33340000000000000000000000000000000000000000000000000000000000006000830152602082019050919050565b6200052181620005d4565b82525050565b600060208201905081810360008301526200054281620004d4565b9050919050565b600060208201905062000560600083018462000516565b92915050565b600082825260208201905092915050565b60006200058482620005d4565b91506200059183620005d4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620005c957620005c862000614565b5b828201905092915050565b6000819050919050565b60006002820490506001821680620005f757607f821691505b602082108114156200060e576200060d62000643565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61235a80620006826000396000f3fe608060405234801561001057600080fd5b506004361061013e576000357c01000000000000000000000000000000000000000000000000000000009004806370a08231116100ca578063a457c2d71161008e578063a457c2d714610301578063a9059cbb14610331578063dd62ed3e14610361578063e285e8a314610391578063f2fde38b146103ad5761013e565b806370a082311461026f578063715018a61461029f57806381250959146102a95780638da5cb5b146102c557806395d89b41146102e35761013e565b8063313ce56711610111578063313ce567146101df57806339509351146101fd5780633ddc60f41461022d57806340c10f19146102495780635265b0dd146102655761013e565b806306fdde0314610143578063095ea7b31461016157806318160ddd1461019157806323b872dd146101af575b600080fd5b61014b6103c9565b6040516101589190611ea3565b60405180910390f35b61017b60048036038101906101769190611a99565b61045b565b6040516101889190611e88565b60405180910390f35b610199610479565b6040516101a69190612005565b60405180910390f35b6101c960048036038101906101c49190611a0e565b610483565b6040516101d69190611e88565b60405180910390f35b6101e761057b565b6040516101f49190612020565b60405180910390f35b61021760048036038101906102129190611a99565b610584565b6040516102249190611e88565b60405180910390f35b610247600480360381019061024291906119a9565b610630565b005b610263600480360381019061025e9190611a99565b6106f0565b005b61026d61078a565b005b610289600480360381019061028491906119a9565b610823565b6040516102969190612005565b60405180910390f35b6102a761086c565b005b6102c360048036038101906102be9190611ad5565b6108f4565b005b6102cd610abb565b6040516102da9190611e44565b60405180910390f35b6102eb610ae4565b6040516102f89190611ea3565b60405180910390f35b61031b60048036038101906103169190611a99565b610b76565b6040516103289190611e88565b60405180910390f35b61034b60048036038101906103469190611a99565b610c61565b6040516103589190611e88565b60405180910390f35b61037b600480360381019061037691906119d2565b610c7f565b6040516103889190612005565b60405180910390f35b6103ab60048036038101906103a69190611a5d565b610d06565b005b6103c760048036038101906103c291906119a9565b610e16565b005b6060600480546103d8906121c6565b80601f0160208091040260200160405190810160405280929190818152602001828054610404906121c6565b80156104515780601f1061042657610100808354040283529160200191610451565b820191906000526020600020905b81548152906001019060200180831161043457829003601f168201915b5050505050905090565b600061046f610468610f0e565b8484610f16565b6001905092915050565b6000600354905090565b60006104908484846110e1565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104db610f0e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561055b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161055290611ee5565b60405180910390fd5b61056f85610567610f0e565b858403610f16565b60019150509392505050565b60006012905090565b6000610626610591610f0e565b84846002600061059f610f0e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461062191906120b4565b610f16565b6001905092915050565b610638610f0e565b73ffffffffffffffffffffffffffffffffffffffff16610656610abb565b73ffffffffffffffffffffffffffffffffffffffff16146106ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a390611fa5565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661077c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077390611fe5565b60405180910390fd5b6107868282611694565b5050565b610792610f0e565b73ffffffffffffffffffffffffffffffffffffffff166107b0610abb565b73ffffffffffffffffffffffffffffffffffffffff1614610806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fd90611fa5565b60405180910390fd5b6001600660006101000a81548160ff021916908315150217905550565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610874610f0e565b73ffffffffffffffffffffffffffffffffffffffff16610892610abb565b73ffffffffffffffffffffffffffffffffffffffff16146108e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108df90611fa5565b60405180910390fd5b6108f26000611810565b565b6108fc610abb565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061097e5750600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61098757600080fd5b60005b8251811015610ab65781600760008584815181106109d1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507ff7e58a63a036e3a7ef7921f83b6ae47930cf5c293dd3bfe7a857c6863409046d838281518110610a84577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015183604051610a9b929190611e5f565b60405180910390a18080610aae906121f8565b91505061098a565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610af3906121c6565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1f906121c6565b8015610b6c5780601f10610b4157610100808354040283529160200191610b6c565b820191906000526020600020905b815481529060010190602001808311610b4f57829003601f168201915b5050505050905090565b60008060026000610b85610f0e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3990611f25565b60405180910390fd5b610c56610c4d610f0e565b85858403610f16565b600191505092915050565b6000610c75610c6e610f0e565b84846110e1565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d0e610f0e565b73ffffffffffffffffffffffffffffffffffffffff16610d2c610abb565b73ffffffffffffffffffffffffffffffffffffffff1614610d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7990611fa5565b60405180910390fd5b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507fa2eab11e7d342e9f254ea1c9e34466a2b53fbb250525ed9de79436cce63819e98282604051610e0a929190611e5f565b60405180910390a15050565b610e1e610f0e565b73ffffffffffffffffffffffffffffffffffffffff16610e3c610abb565b73ffffffffffffffffffffffffffffffffffffffff1614610e92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8990611fa5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef990611f05565b60405180910390fd5b610f0b81611810565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7d90611ec5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ff6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fed90611fc5565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110d49190612005565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611151576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114890611f65565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000839050828210156111dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d490611f85565b60405180910390fd5b828203600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806112c45750600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806113185750600760003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806113305750600660009054906101000a900460ff16155b801561136f575061133f610abb565b73ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614155b1561139a57600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505b600660009054906101000a900460ff161580156114015750600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561155057600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506001600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600760003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507ff7e58a63a036e3a7ef7921f83b6ae47930cf5c293dd3bfe7a857c6863409046d33600160405161150d929190611e5f565b60405180910390a17ff7e58a63a036e3a7ef7921f83b6ae47930cf5c293dd3bfe7a857c6863409046d326001604051611547929190611e5f565b60405180910390a15b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561159a5782600354611593919061210a565b6003819055505b82600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115e591906120b4565b600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516116859190612005565b60405180910390a35050505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fb90611f45565b60405180910390fd5b8060035461171291906120b4565b60038190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461176391906120b4565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516118049190612005565b60405180910390a35050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006118e76118e28461206c565b61203b565b9050808382526020820190508285602086028201111561190657600080fd5b60005b85811015611936578161191c8882611940565b845260208401935060208301925050600181019050611909565b5050509392505050565b60008135905061194f816122df565b92915050565b600082601f83011261196657600080fd5b81356119768482602086016118d4565b91505092915050565b60008135905061198e816122f6565b92915050565b6000813590506119a38161230d565b92915050565b6000602082840312156119bb57600080fd5b60006119c984828501611940565b91505092915050565b600080604083850312156119e557600080fd5b60006119f385828601611940565b9250506020611a0485828601611940565b9150509250929050565b600080600060608486031215611a2357600080fd5b6000611a3186828701611940565b9350506020611a4286828701611940565b9250506040611a5386828701611994565b9150509250925092565b60008060408385031215611a7057600080fd5b6000611a7e85828601611940565b9250506020611a8f8582860161197f565b9150509250929050565b60008060408385031215611aac57600080fd5b6000611aba85828601611940565b9250506020611acb85828601611994565b9150509250929050565b60008060408385031215611ae857600080fd5b600083013567ffffffffffffffff811115611b0257600080fd5b611b0e85828601611955565b9250506020611b1f8582860161197f565b9150509250929050565b611b328161213e565b82525050565b611b4181612150565b82525050565b6000611b5282612098565b611b5c81856120a3565b9350611b6c818560208601612193565b611b75816122ce565b840191505092915050565b6000611b8d6003836120a3565b91507f455a4400000000000000000000000000000000000000000000000000000000006000830152602082019050919050565b6000611bcd6004836120a3565b91507f455a4241000000000000000000000000000000000000000000000000000000006000830152602082019050919050565b6000611c0d6026836120a3565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611c736003836120a3565b91507f455a4300000000000000000000000000000000000000000000000000000000006000830152602082019050919050565b6000611cb36002836120a3565b91507f33340000000000000000000000000000000000000000000000000000000000006000830152602082019050919050565b6000611cf36003836120a3565b91507f455a4100000000000000000000000000000000000000000000000000000000006000830152602082019050919050565b6000611d336003836120a3565b91507f455a4200000000000000000000000000000000000000000000000000000000006000830152602082019050919050565b6000611d736020836120a3565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611db36003836120a3565b91507f455a4500000000000000000000000000000000000000000000000000000000006000830152602082019050919050565b6000611df36002836120a3565b91507f33330000000000000000000000000000000000000000000000000000000000006000830152602082019050919050565b611e2f8161217c565b82525050565b611e3e81612186565b82525050565b6000602082019050611e596000830184611b29565b92915050565b6000604082019050611e746000830185611b29565b611e816020830184611b38565b9392505050565b6000602082019050611e9d6000830184611b38565b92915050565b60006020820190508181036000830152611ebd8184611b47565b905092915050565b60006020820190508181036000830152611ede81611b80565b9050919050565b60006020820190508181036000830152611efe81611bc0565b9050919050565b60006020820190508181036000830152611f1e81611c00565b9050919050565b60006020820190508181036000830152611f3e81611c66565b9050919050565b60006020820190508181036000830152611f5e81611ca6565b9050919050565b60006020820190508181036000830152611f7e81611ce6565b9050919050565b60006020820190508181036000830152611f9e81611d26565b9050919050565b60006020820190508181036000830152611fbe81611d66565b9050919050565b60006020820190508181036000830152611fde81611da6565b9050919050565b60006020820190508181036000830152611ffe81611de6565b9050919050565b600060208201905061201a6000830184611e26565b92915050565b60006020820190506120356000830184611e35565b92915050565b6000604051905081810181811067ffffffffffffffff821117156120625761206161229f565b5b8060405250919050565b600067ffffffffffffffff8211156120875761208661229f565b5b602082029050602081019050919050565b600081519050919050565b600082825260208201905092915050565b60006120bf8261217c565b91506120ca8361217c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156120ff576120fe612241565b5b828201905092915050565b60006121158261217c565b91506121208361217c565b92508282101561213357612132612241565b5b828203905092915050565b60006121498261215c565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156121b1578082015181840152602081019050612196565b838111156121c0576000848401525b50505050565b600060028204905060018216806121de57607f821691505b602082108114156121f2576121f1612270565b5b50919050565b60006122038261217c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561223657612235612241565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6122e88161213e565b81146122f357600080fd5b50565b6122ff81612150565b811461230a57600080fd5b50565b6123168161217c565b811461232157600080fd5b5056fea2646970667358221220b49f8ca916f6bc0e90d55b9eb540c2c531c8dd4c39295484cd1325f15c83098764736f6c63430008000033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061013e576000357c01000000000000000000000000000000000000000000000000000000009004806370a08231116100ca578063a457c2d71161008e578063a457c2d714610301578063a9059cbb14610331578063dd62ed3e14610361578063e285e8a314610391578063f2fde38b146103ad5761013e565b806370a082311461026f578063715018a61461029f57806381250959146102a95780638da5cb5b146102c557806395d89b41146102e35761013e565b8063313ce56711610111578063313ce567146101df57806339509351146101fd5780633ddc60f41461022d57806340c10f19146102495780635265b0dd146102655761013e565b806306fdde0314610143578063095ea7b31461016157806318160ddd1461019157806323b872dd146101af575b600080fd5b61014b6103c9565b6040516101589190611ea3565b60405180910390f35b61017b60048036038101906101769190611a99565b61045b565b6040516101889190611e88565b60405180910390f35b610199610479565b6040516101a69190612005565b60405180910390f35b6101c960048036038101906101c49190611a0e565b610483565b6040516101d69190611e88565b60405180910390f35b6101e761057b565b6040516101f49190612020565b60405180910390f35b61021760048036038101906102129190611a99565b610584565b6040516102249190611e88565b60405180910390f35b610247600480360381019061024291906119a9565b610630565b005b610263600480360381019061025e9190611a99565b6106f0565b005b61026d61078a565b005b610289600480360381019061028491906119a9565b610823565b6040516102969190612005565b60405180910390f35b6102a761086c565b005b6102c360048036038101906102be9190611ad5565b6108f4565b005b6102cd610abb565b6040516102da9190611e44565b60405180910390f35b6102eb610ae4565b6040516102f89190611ea3565b60405180910390f35b61031b60048036038101906103169190611a99565b610b76565b6040516103289190611e88565b60405180910390f35b61034b60048036038101906103469190611a99565b610c61565b6040516103589190611e88565b60405180910390f35b61037b600480360381019061037691906119d2565b610c7f565b6040516103889190612005565b60405180910390f35b6103ab60048036038101906103a69190611a5d565b610d06565b005b6103c760048036038101906103c291906119a9565b610e16565b005b6060600480546103d8906121c6565b80601f0160208091040260200160405190810160405280929190818152602001828054610404906121c6565b80156104515780601f1061042657610100808354040283529160200191610451565b820191906000526020600020905b81548152906001019060200180831161043457829003601f168201915b5050505050905090565b600061046f610468610f0e565b8484610f16565b6001905092915050565b6000600354905090565b60006104908484846110e1565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104db610f0e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561055b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161055290611ee5565b60405180910390fd5b61056f85610567610f0e565b858403610f16565b60019150509392505050565b60006012905090565b6000610626610591610f0e565b84846002600061059f610f0e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461062191906120b4565b610f16565b6001905092915050565b610638610f0e565b73ffffffffffffffffffffffffffffffffffffffff16610656610abb565b73ffffffffffffffffffffffffffffffffffffffff16146106ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a390611fa5565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661077c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077390611fe5565b60405180910390fd5b6107868282611694565b5050565b610792610f0e565b73ffffffffffffffffffffffffffffffffffffffff166107b0610abb565b73ffffffffffffffffffffffffffffffffffffffff1614610806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fd90611fa5565b60405180910390fd5b6001600660006101000a81548160ff021916908315150217905550565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610874610f0e565b73ffffffffffffffffffffffffffffffffffffffff16610892610abb565b73ffffffffffffffffffffffffffffffffffffffff16146108e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108df90611fa5565b60405180910390fd5b6108f26000611810565b565b6108fc610abb565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061097e5750600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61098757600080fd5b60005b8251811015610ab65781600760008584815181106109d1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507ff7e58a63a036e3a7ef7921f83b6ae47930cf5c293dd3bfe7a857c6863409046d838281518110610a84577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015183604051610a9b929190611e5f565b60405180910390a18080610aae906121f8565b91505061098a565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610af3906121c6565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1f906121c6565b8015610b6c5780601f10610b4157610100808354040283529160200191610b6c565b820191906000526020600020905b815481529060010190602001808311610b4f57829003601f168201915b5050505050905090565b60008060026000610b85610f0e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3990611f25565b60405180910390fd5b610c56610c4d610f0e565b85858403610f16565b600191505092915050565b6000610c75610c6e610f0e565b84846110e1565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d0e610f0e565b73ffffffffffffffffffffffffffffffffffffffff16610d2c610abb565b73ffffffffffffffffffffffffffffffffffffffff1614610d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7990611fa5565b60405180910390fd5b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507fa2eab11e7d342e9f254ea1c9e34466a2b53fbb250525ed9de79436cce63819e98282604051610e0a929190611e5f565b60405180910390a15050565b610e1e610f0e565b73ffffffffffffffffffffffffffffffffffffffff16610e3c610abb565b73ffffffffffffffffffffffffffffffffffffffff1614610e92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8990611fa5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef990611f05565b60405180910390fd5b610f0b81611810565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7d90611ec5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ff6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fed90611fc5565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110d49190612005565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611151576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114890611f65565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000839050828210156111dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d490611f85565b60405180910390fd5b828203600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806112c45750600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806113185750600760003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806113305750600660009054906101000a900460ff16155b801561136f575061133f610abb565b73ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614155b1561139a57600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505b600660009054906101000a900460ff161580156114015750600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561155057600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506001600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600760003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507ff7e58a63a036e3a7ef7921f83b6ae47930cf5c293dd3bfe7a857c6863409046d33600160405161150d929190611e5f565b60405180910390a17ff7e58a63a036e3a7ef7921f83b6ae47930cf5c293dd3bfe7a857c6863409046d326001604051611547929190611e5f565b60405180910390a15b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561159a5782600354611593919061210a565b6003819055505b82600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115e591906120b4565b600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516116859190612005565b60405180910390a35050505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fb90611f45565b60405180910390fd5b8060035461171291906120b4565b60038190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461176391906120b4565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516118049190612005565b60405180910390a35050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006118e76118e28461206c565b61203b565b9050808382526020820190508285602086028201111561190657600080fd5b60005b85811015611936578161191c8882611940565b845260208401935060208301925050600181019050611909565b5050509392505050565b60008135905061194f816122df565b92915050565b600082601f83011261196657600080fd5b81356119768482602086016118d4565b91505092915050565b60008135905061198e816122f6565b92915050565b6000813590506119a38161230d565b92915050565b6000602082840312156119bb57600080fd5b60006119c984828501611940565b91505092915050565b600080604083850312156119e557600080fd5b60006119f385828601611940565b9250506020611a0485828601611940565b9150509250929050565b600080600060608486031215611a2357600080fd5b6000611a3186828701611940565b9350506020611a4286828701611940565b9250506040611a5386828701611994565b9150509250925092565b60008060408385031215611a7057600080fd5b6000611a7e85828601611940565b9250506020611a8f8582860161197f565b9150509250929050565b60008060408385031215611aac57600080fd5b6000611aba85828601611940565b9250506020611acb85828601611994565b9150509250929050565b60008060408385031215611ae857600080fd5b600083013567ffffffffffffffff811115611b0257600080fd5b611b0e85828601611955565b9250506020611b1f8582860161197f565b9150509250929050565b611b328161213e565b82525050565b611b4181612150565b82525050565b6000611b5282612098565b611b5c81856120a3565b9350611b6c818560208601612193565b611b75816122ce565b840191505092915050565b6000611b8d6003836120a3565b91507f455a4400000000000000000000000000000000000000000000000000000000006000830152602082019050919050565b6000611bcd6004836120a3565b91507f455a4241000000000000000000000000000000000000000000000000000000006000830152602082019050919050565b6000611c0d6026836120a3565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611c736003836120a3565b91507f455a4300000000000000000000000000000000000000000000000000000000006000830152602082019050919050565b6000611cb36002836120a3565b91507f33340000000000000000000000000000000000000000000000000000000000006000830152602082019050919050565b6000611cf36003836120a3565b91507f455a4100000000000000000000000000000000000000000000000000000000006000830152602082019050919050565b6000611d336003836120a3565b91507f455a4200000000000000000000000000000000000000000000000000000000006000830152602082019050919050565b6000611d736020836120a3565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611db36003836120a3565b91507f455a4500000000000000000000000000000000000000000000000000000000006000830152602082019050919050565b6000611df36002836120a3565b91507f33330000000000000000000000000000000000000000000000000000000000006000830152602082019050919050565b611e2f8161217c565b82525050565b611e3e81612186565b82525050565b6000602082019050611e596000830184611b29565b92915050565b6000604082019050611e746000830185611b29565b611e816020830184611b38565b9392505050565b6000602082019050611e9d6000830184611b38565b92915050565b60006020820190508181036000830152611ebd8184611b47565b905092915050565b60006020820190508181036000830152611ede81611b80565b9050919050565b60006020820190508181036000830152611efe81611bc0565b9050919050565b60006020820190508181036000830152611f1e81611c00565b9050919050565b60006020820190508181036000830152611f3e81611c66565b9050919050565b60006020820190508181036000830152611f5e81611ca6565b9050919050565b60006020820190508181036000830152611f7e81611ce6565b9050919050565b60006020820190508181036000830152611f9e81611d26565b9050919050565b60006020820190508181036000830152611fbe81611d66565b9050919050565b60006020820190508181036000830152611fde81611da6565b9050919050565b60006020820190508181036000830152611ffe81611de6565b9050919050565b600060208201905061201a6000830184611e26565b92915050565b60006020820190506120356000830184611e35565b92915050565b6000604051905081810181811067ffffffffffffffff821117156120625761206161229f565b5b8060405250919050565b600067ffffffffffffffff8211156120875761208661229f565b5b602082029050602081019050919050565b600081519050919050565b600082825260208201905092915050565b60006120bf8261217c565b91506120ca8361217c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156120ff576120fe612241565b5b828201905092915050565b60006121158261217c565b91506121208361217c565b92508282101561213357612132612241565b5b828203905092915050565b60006121498261215c565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156121b1578082015181840152602081019050612196565b838111156121c0576000848401525b50505050565b600060028204905060018216806121de57607f821691505b602082108114156121f2576121f1612270565b5b50919050565b60006122038261217c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561223657612235612241565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6122e88161213e565b81146122f357600080fd5b50565b6122ff81612150565b811461230a57600080fd5b50565b6123168161217c565b811461232157600080fd5b5056fea2646970667358221220b49f8ca916f6bc0e90d55b9eb540c2c531c8dd4c39295484cd1325f15c83098764736f6c63430008000033
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.
Add Token to MetaMask (Web3)