ETH Price: $3,300.21 (-3.49%)
Gas: 14 Gwei

Token

Bloops (BLO)
 

Overview

Max Total Supply

151,093,704 BLO

Holders

252

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Uniswap V2: BLO 5
Balance
63,071,291.143457372942649252 BLO

Value
$0.00
0x54ebc4b745ca7cdd30f6663815ce3679c1ee0690
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Bloops

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 10 : something.sol
/*
SPDX-License-Identifier: MIT

[web] bloops.tech
[twitter] @bloops
[telegram] https://t.me/verifybloops
*/
pragma solidity ^0.8.20;

import { ERC20 } from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol";
import { IUniswapV2Router02 } from "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";
import { IUniswapV2Factory } from "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";

contract Bloops is ERC20, Ownable {
    address public uniswapV2Pair;
    IUniswapV2Router02 immutable router =
        IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

    mapping(address => bool) public isExcludedFromFees;

    bool private tradingEnabled = true;
    uint256 private tradingEnabledTimestamp;
    bool antiBotActive = true;

    constructor(address initialOwner)
        ERC20("Bloops", "BLO")
        Ownable(initialOwner)
    {
        address pair = IUniswapV2Factory(router.factory()).createPair(
            address(this),
            router.WETH()
        );
        uniswapV2Pair = pair;
        isExcludedFromFees[_msgSender()] = true;
        isExcludedFromFees[initialOwner] = true;
        isExcludedFromFees[address(this)] = true;
        isExcludedFromFees[address(router)] = true;
        _approve(initialOwner, address(router), type(uint256).max);
        address[17] memory addresses = [
            // TA
            0x59B3D37ce4575a65f58C6C8Cddeadfb4a3645a71,
            0x5765D0f7E1Af4D97f2784F74B74d53386f41003c,
            0x5057A82eD5e40558630F87d593Ef98D18F86b3Ad,
            0x915FAB37e3Bc5dddF1919DB5529bd1aCB5521dA1,
            0x67f94eF8c61bbF554AbCfD459B0ccd22cF78aEaD,
            0x1Af1e67b6f99ab981821c5cFC1BE69C3a5DA8dB9,
            0x5fF3Ec1b6038b04c9f2220a71890804Fc1Aa40DB,
            0x68a1642982569b84a102D1680307F40e94dcdDa5,
            // MA
            0x9181bc9507B6eB1307855d12Af2F171C08cD2e36,
            0x3282b4BB075d0b5b5aA0Aa74Ef7CCe78F949264B,
            0xEFf79f08f6f1AdAf01F5865220860e36ef0BCBC8,
            0x553d78fE8B8653aC91d9c13FE60F9F616d57fb52,
            // OP
            0x5E96877B7B0E7D8d8dA2910a18eF5085584C5E1D,
            0x1b17CCFfEE2E446E93b5bfDbF3A844aAAce5327A,
            // M&T
            0x7637fB121e73c4668482c046E3DE4f13558D1401,
            // LTT
            0x0C42f76a8Cc0b7D2D8e602ef73B8c859BAfF3364,
            // CM
            initialOwner
        ];
        uint32[17] memory amounts = [
            // TA
            8000000,
            4500000,
            2000000,
            2000000,
            2000000,
            500000,
            500000,
            500000,
            // MA
            8000000,
            6000000,
            6000000,
            6000000,
            // OP
            18000000,
            6000000,
            // M&T
            30000000,
            // LTT
            20000000,
            // CM
            80000000
        ];
        for (uint256 i; i < 17;) {
            _mint(addresses[i], amounts[i] * 10 ** decimals());
            unchecked { ++i; }
        }
        tradingEnabled = false;
    }

    function openTrading() external onlyOwner {
        require(!tradingEnabled, "Trading already enabled");
        tradingEnabled = true;
        tradingEnabledTimestamp = block.timestamp;
    }

    function disableAntiBot() external onlyOwner {
        antiBotActive = false;
    }

    function excludeFromFees(address _address, bool _value) external onlyOwner {
        isExcludedFromFees[_address] = _value;
    }

    function burn(uint256 amount) external onlyOwner {
        _burn(msg.sender, amount);
    }

    function getAntiBotFees() private view returns (uint256) {
        if (block.timestamp > tradingEnabledTimestamp + 40 minutes) {
            return 0;
        } else if (block.timestamp >= tradingEnabledTimestamp + 20 minutes) {
            return 5;
        } else if (block.timestamp >= tradingEnabledTimestamp + 15 minutes) {
            return 25;
        } else if (block.timestamp >= tradingEnabledTimestamp) {
            return 40;
        } else {
            return 40;
        }
    }

    function _update(
        address from,
        address to,
        uint256 amount
    ) internal override {
        if (
            !antiBotActive ||
            isExcludedFromFees[from] ||
            isExcludedFromFees[to] ||
            (to != uniswapV2Pair && from != uniswapV2Pair)
        ) {
            super._update(from, to, amount);
            return;
        }

        require(tradingEnabled, "Trading is not open");

        uint256 fees = (amount * getAntiBotFees()) / 100;

        if (fees > 0) {
            super._update(from, owner(), fees);
            amount = amount - fees;
        }
        super._update(from, to, amount);
    }

    receive() external payable {
        uint256 value = msg.value;

        (bool sent, ) = payable(owner()).call{value: value}("");

        require(sent, "Failed to send Ether");
    }
}

File 2 of 10 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

File 3 of 10 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        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 swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

File 4 of 10 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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 5 of 10 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {IERC20Errors} from "../../interfaces/draft-IERC6093.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

    mapping(address account => mapping(address spender => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual 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 default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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 `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

    /**
     * @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 `value` 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 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` 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.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `value`.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Does not emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(spender, currentAllowance, value);
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }
}

File 6 of 10 : IUniswapV2Router01.sol
pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        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 7 of 10 : draft-IERC6093.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

File 8 of 10 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

/**
 * @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;
    }

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

File 9 of 10 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
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 10 of 10 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the value of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves a `value` amount of tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 value) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets a `value` amount of tokens as the allowance of `spender` over the
     * caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  },
  "remappings": []
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"initialOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableAntiBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_value","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a0604052737a250d5630b4cf539739df2c5dacb4c659f2488d60805260088054600160ff199182168117909255600a8054909116909117905534801562000045575f80fd5b5060405162001cc338038062001cc3833981016040819052620000689162000bd4565b8060405180604001604052806006815260200165426c6f6f707360d01b81525060405180604001604052806003815260200162424c4f60e81b8152508160039081620000b5919062000ca0565b506004620000c4828262000ca0565b5050506001600160a01b038116620000f657604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b62000101816200076d565b505f6080516001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000142573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000168919062000bd4565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001b6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001dc919062000bd4565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af115801562000227573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200024d919062000bd4565b600680546001600160a01b0319166001600160a01b0383161790559050600160075f620002773390565b6001600160a01b03908116825260208083019390935260409182015f908120805495151560ff19968716179055868216815260079093528183208054851660019081179091553084528284208054861682179055608051918216845291909220805490931617909155620002ef9083905f19620007be565b5f6040518061022001604052807359b3d37ce4575a65f58c6c8cddeadfb4a3645a716001600160a01b03166001600160a01b03168152602001735765d0f7e1af4d97f2784f74b74d53386f41003c6001600160a01b03166001600160a01b03168152602001735057a82ed5e40558630f87d593ef98d18f86b3ad6001600160a01b03166001600160a01b0316815260200173915fab37e3bc5dddf1919db5529bd1acb5521da16001600160a01b03166001600160a01b031681526020017367f94ef8c61bbf554abcfd459b0ccd22cf78aead6001600160a01b03166001600160a01b03168152602001731af1e67b6f99ab981821c5cfc1be69c3a5da8db96001600160a01b03166001600160a01b03168152602001735ff3ec1b6038b04c9f2220a71890804fc1aa40db6001600160a01b03166001600160a01b031681526020017368a1642982569b84a102d1680307f40e94dcdda56001600160a01b03166001600160a01b03168152602001739181bc9507b6eb1307855d12af2f171c08cd2e366001600160a01b03166001600160a01b03168152602001733282b4bb075d0b5b5aa0aa74ef7cce78f949264b6001600160a01b03166001600160a01b0316815260200173eff79f08f6f1adaf01f5865220860e36ef0bcbc86001600160a01b03166001600160a01b0316815260200173553d78fe8b8653ac91d9c13fe60f9f616d57fb526001600160a01b03166001600160a01b03168152602001735e96877b7b0e7d8d8da2910a18ef5085584c5e1d6001600160a01b03166001600160a01b03168152602001731b17ccffee2e446e93b5bfdbf3a844aaace5327a6001600160a01b03166001600160a01b03168152602001737637fb121e73c4668482c046e3de4f13558d14016001600160a01b03166001600160a01b03168152602001730c42f76a8cc0b7d2d8e602ef73b8c859baff33646001600160a01b03166001600160a01b03168152602001846001600160a01b03166001600160a01b031681525090505f604051806102200160405280627a120063ffffffff1681526020016244aa2063ffffffff168152602001621e848063ffffffff168152602001621e848063ffffffff168152602001621e848063ffffffff1681526020016207a12063ffffffff1681526020016207a12063ffffffff1681526020016207a12063ffffffff168152602001627a120063ffffffff168152602001625b8d8063ffffffff168152602001625b8d8063ffffffff168152602001625b8d8063ffffffff168152602001630112a88063ffffffff168152602001625b8d8063ffffffff1681526020016301c9c38063ffffffff1681526020016301312d0063ffffffff1681526020016304c4b40063ffffffff1681525090505f5b601181101562000757576200074e83826011811062000709576200070962000d6c565b60200201516200071c6012600a62000e8f565b84846011811062000731576200073162000d6c565b602002015163ffffffff1662000748919062000e9f565b620007d2565b600101620006e6565b50506008805460ff191690555062000f05915050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b620007cd83838360016200080e565b505050565b6001600160a01b038216620007fd5760405163ec442f0560e01b81525f6004820152602401620000ed565b6200080a5f8383620008e7565b5050565b6001600160a01b038416620008395760405163e602df0560e01b81525f6004820152602401620000ed565b6001600160a01b0383166200086457604051634a1406b160e11b81525f6004820152602401620000ed565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015620008e157826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051620008d891815260200190565b60405180910390a35b50505050565b600a5460ff1615806200091157506001600160a01b0383165f9081526007602052604090205460ff165b806200093457506001600160a01b0382165f9081526007602052604090205460ff165b806200096857506006546001600160a01b038381169116148015906200096857506006546001600160a01b03848116911614155b156200097b57620007cd83838362000a33565b60085460ff16620009cf5760405162461bcd60e51b815260206004820152601360248201527f54726164696e67206973206e6f74206f70656e000000000000000000000000006044820152606401620000ed565b5f6064620009dc62000b62565b620009e8908462000e9f565b620009f4919062000eb9565b9050801562000a2b5762000a1c8462000a156005546001600160a01b031690565b8362000a33565b62000a28818362000ed9565b91505b620008e18484845b6001600160a01b03831662000a61578060025f82825462000a55919062000eef565b9091555062000ad39050565b6001600160a01b0383165f908152602081905260409020548181101562000ab55760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401620000ed565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821662000af15760028054829003905562000b0f565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b5591815260200190565b60405180910390a3505050565b5f60095461096062000b75919062000eef565b42111562000b8257505f90565b60095462000b93906104b062000eef565b421062000ba05750600590565b60095462000bb19061038462000eef565b421062000bbe5750601990565b600954421062000bce5750602890565b50602890565b5f6020828403121562000be5575f80fd5b81516001600160a01b038116811462000bfc575f80fd5b9392505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168062000c2c57607f821691505b60208210810362000c4b57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620007cd57805f5260205f20601f840160051c8101602085101562000c785750805b601f840160051c820191505b8181101562000c99575f815560010162000c84565b5050505050565b81516001600160401b0381111562000cbc5762000cbc62000c03565b62000cd48162000ccd845462000c17565b8462000c51565b602080601f83116001811462000d0a575f841562000cf25750858301515b5f19600386901b1c1916600185901b17855562000d64565b5f85815260208120601f198616915b8281101562000d3a5788860151825594840194600190910190840162000d19565b508582101562000d5857878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111562000dd457815f190482111562000db85762000db862000d80565b8085161562000dc657918102915b93841c939080029062000d99565b509250929050565b5f8262000dec5750600162000e89565b8162000dfa57505f62000e89565b816001811462000e13576002811462000e1e5762000e3e565b600191505062000e89565b60ff84111562000e325762000e3262000d80565b50506001821b62000e89565b5060208310610133831016604e8410600b841016171562000e63575081810a62000e89565b62000e6f838362000d94565b805f190482111562000e855762000e8562000d80565b0290505b92915050565b5f62000bfc60ff84168362000ddc565b808202811582820484141762000e895762000e8962000d80565b5f8262000ed457634e487b7160e01b5f52601260045260245ffd5b500490565b8181038181111562000e895762000e8962000d80565b8082018082111562000e895762000e8962000d80565b608051610da862000f1b5f395f5050610da85ff3fe608060405260043610610108575f3560e01c806370a0823111610092578063a9059cbb11610062578063a9059cbb14610382578063c0246668146103a1578063c9567bf9146103c0578063dd62ed3e146103d4578063f2fde38b14610418575f80fd5b806370a0823114610309578063715018a61461033d5780638da5cb5b1461035157806395d89b411461036e575f80fd5b806323b872dd116100d857806323b872dd1461024b578063313ce5671461026a57806342966c681461028557806349bd5a5e146102a45780634fbee193146102db575f80fd5b806306fdde03146101c057806307ce9de4146101ea578063095ea7b3146101fe57806318160ddd1461022d575f80fd5b366101bc57345f6101216005546001600160a01b031690565b6001600160a01b0316826040515f6040518083038185875af1925050503d805f8114610168576040519150601f19603f3d011682016040523d82523d5f602084013e61016d565b606091505b50509050806101ba5760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321022ba3432b960611b60448201526064015b60405180910390fd5b005b5f80fd5b3480156101cb575f80fd5b506101d4610437565b6040516101e19190610b61565b60405180910390f35b3480156101f5575f80fd5b506101ba6104c7565b348015610209575f80fd5b5061021d610218366004610bc8565b6104db565b60405190151581526020016101e1565b348015610238575f80fd5b506002545b6040519081526020016101e1565b348015610256575f80fd5b5061021d610265366004610bf0565b6104f4565b348015610275575f80fd5b50604051601281526020016101e1565b348015610290575f80fd5b506101ba61029f366004610c29565b610517565b3480156102af575f80fd5b506006546102c3906001600160a01b031681565b6040516001600160a01b0390911681526020016101e1565b3480156102e6575f80fd5b5061021d6102f5366004610c40565b60076020525f908152604090205460ff1681565b348015610314575f80fd5b5061023d610323366004610c40565b6001600160a01b03165f9081526020819052604090205490565b348015610348575f80fd5b506101ba61052c565b34801561035c575f80fd5b506005546001600160a01b03166102c3565b348015610379575f80fd5b506101d461053f565b34801561038d575f80fd5b5061021d61039c366004610bc8565b61054e565b3480156103ac575f80fd5b506101ba6103bb366004610c60565b61055b565b3480156103cb575f80fd5b506101ba61058d565b3480156103df575f80fd5b5061023d6103ee366004610c99565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610423575f80fd5b506101ba610432366004610c40565b6105fb565b60606003805461044690610cca565b80601f016020809104026020016040519081016040528092919081815260200182805461047290610cca565b80156104bd5780601f10610494576101008083540402835291602001916104bd565b820191905f5260205f20905b8154815290600101906020018083116104a057829003601f168201915b5050505050905090565b6104cf610635565b600a805460ff19169055565b5f336104e8818585610662565b60019150505b92915050565b5f33610501858285610674565b61050c8585856106ef565b506001949350505050565b61051f610635565b610529338261074c565b50565b610534610635565b61053d5f610784565b565b60606004805461044690610cca565b5f336104e88185856106ef565b610563610635565b6001600160a01b03919091165f908152600760205260409020805460ff1916911515919091179055565b610595610635565b60085460ff16156105e85760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720616c726561647920656e61626c656400000000000000000060448201526064016101b1565b6008805460ff1916600117905542600955565b610603610635565b6001600160a01b03811661062c57604051631e4fbdf760e01b81525f60048201526024016101b1565b61052981610784565b6005546001600160a01b0316331461053d5760405163118cdaa760e01b81523360048201526024016101b1565b61066f83838360016107d5565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f1981146106e957818110156106db57604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016101b1565b6106e984848484035f6107d5565b50505050565b6001600160a01b03831661071857604051634b637e8f60e11b81525f60048201526024016101b1565b6001600160a01b0382166107415760405163ec442f0560e01b81525f60048201526024016101b1565b61066f8383836108a7565b6001600160a01b03821661077557604051634b637e8f60e11b81525f60048201526024016101b1565b610780825f836108a7565b5050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0384166107fe5760405163e602df0560e01b81525f60048201526024016101b1565b6001600160a01b03831661082757604051634a1406b160e11b81525f60048201526024016101b1565b6001600160a01b038085165f90815260016020908152604080832093871683529290522082905580156106e957826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161089991815260200190565b60405180910390a350505050565b600a5460ff1615806108d057506001600160a01b0383165f9081526007602052604090205460ff165b806108f257506001600160a01b0382165f9081526007602052604090205460ff165b8061092457506006546001600160a01b0383811691161480159061092457506006546001600160a01b03848116911614155b156109345761066f8383836109d3565b60085460ff1661097c5760405162461bcd60e51b81526020600482015260136024820152722a3930b234b7339034b9903737ba1037b832b760691b60448201526064016101b1565b5f6064610987610af9565b6109919084610d16565b61099b9190610d2d565b905080156109cc576109bf846109b96005546001600160a01b031690565b836109d3565b6109c98183610d4c565b91505b6106e98484845b6001600160a01b0383166109fd578060025f8282546109f29190610d5f565b90915550610a6d9050565b6001600160a01b0383165f9081526020819052604090205481811015610a4f5760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016101b1565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610a8957600280548290039055610aa7565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610aec91815260200190565b60405180910390a3505050565b5f600954610960610b0a9190610d5f565b421115610b1657505f90565b600954610b25906104b0610d5f565b4210610b315750600590565b600954610b4090610384610d5f565b4210610b4c5750601990565b6009544210610b5b5750602890565b50602890565b5f602080835283518060208501525f5b81811015610b8d57858101830151858201604001528201610b71565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610bc3575f80fd5b919050565b5f8060408385031215610bd9575f80fd5b610be283610bad565b946020939093013593505050565b5f805f60608486031215610c02575f80fd5b610c0b84610bad565b9250610c1960208501610bad565b9150604084013590509250925092565b5f60208284031215610c39575f80fd5b5035919050565b5f60208284031215610c50575f80fd5b610c5982610bad565b9392505050565b5f8060408385031215610c71575f80fd5b610c7a83610bad565b915060208301358015158114610c8e575f80fd5b809150509250929050565b5f8060408385031215610caa575f80fd5b610cb383610bad565b9150610cc160208401610bad565b90509250929050565b600181811c90821680610cde57607f821691505b602082108103610cfc57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176104ee576104ee610d02565b5f82610d4757634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156104ee576104ee610d02565b808201808211156104ee576104ee610d0256fea26469706673582212205d299016a962f7653bf75669e810f16a3dbe9a67479235a8289ab58f36867c1b64736f6c6343000818003300000000000000000000000029403bb17ae58113c4e491e5ac04c4d4642bed87

Deployed Bytecode

0x608060405260043610610108575f3560e01c806370a0823111610092578063a9059cbb11610062578063a9059cbb14610382578063c0246668146103a1578063c9567bf9146103c0578063dd62ed3e146103d4578063f2fde38b14610418575f80fd5b806370a0823114610309578063715018a61461033d5780638da5cb5b1461035157806395d89b411461036e575f80fd5b806323b872dd116100d857806323b872dd1461024b578063313ce5671461026a57806342966c681461028557806349bd5a5e146102a45780634fbee193146102db575f80fd5b806306fdde03146101c057806307ce9de4146101ea578063095ea7b3146101fe57806318160ddd1461022d575f80fd5b366101bc57345f6101216005546001600160a01b031690565b6001600160a01b0316826040515f6040518083038185875af1925050503d805f8114610168576040519150601f19603f3d011682016040523d82523d5f602084013e61016d565b606091505b50509050806101ba5760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321022ba3432b960611b60448201526064015b60405180910390fd5b005b5f80fd5b3480156101cb575f80fd5b506101d4610437565b6040516101e19190610b61565b60405180910390f35b3480156101f5575f80fd5b506101ba6104c7565b348015610209575f80fd5b5061021d610218366004610bc8565b6104db565b60405190151581526020016101e1565b348015610238575f80fd5b506002545b6040519081526020016101e1565b348015610256575f80fd5b5061021d610265366004610bf0565b6104f4565b348015610275575f80fd5b50604051601281526020016101e1565b348015610290575f80fd5b506101ba61029f366004610c29565b610517565b3480156102af575f80fd5b506006546102c3906001600160a01b031681565b6040516001600160a01b0390911681526020016101e1565b3480156102e6575f80fd5b5061021d6102f5366004610c40565b60076020525f908152604090205460ff1681565b348015610314575f80fd5b5061023d610323366004610c40565b6001600160a01b03165f9081526020819052604090205490565b348015610348575f80fd5b506101ba61052c565b34801561035c575f80fd5b506005546001600160a01b03166102c3565b348015610379575f80fd5b506101d461053f565b34801561038d575f80fd5b5061021d61039c366004610bc8565b61054e565b3480156103ac575f80fd5b506101ba6103bb366004610c60565b61055b565b3480156103cb575f80fd5b506101ba61058d565b3480156103df575f80fd5b5061023d6103ee366004610c99565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610423575f80fd5b506101ba610432366004610c40565b6105fb565b60606003805461044690610cca565b80601f016020809104026020016040519081016040528092919081815260200182805461047290610cca565b80156104bd5780601f10610494576101008083540402835291602001916104bd565b820191905f5260205f20905b8154815290600101906020018083116104a057829003601f168201915b5050505050905090565b6104cf610635565b600a805460ff19169055565b5f336104e8818585610662565b60019150505b92915050565b5f33610501858285610674565b61050c8585856106ef565b506001949350505050565b61051f610635565b610529338261074c565b50565b610534610635565b61053d5f610784565b565b60606004805461044690610cca565b5f336104e88185856106ef565b610563610635565b6001600160a01b03919091165f908152600760205260409020805460ff1916911515919091179055565b610595610635565b60085460ff16156105e85760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720616c726561647920656e61626c656400000000000000000060448201526064016101b1565b6008805460ff1916600117905542600955565b610603610635565b6001600160a01b03811661062c57604051631e4fbdf760e01b81525f60048201526024016101b1565b61052981610784565b6005546001600160a01b0316331461053d5760405163118cdaa760e01b81523360048201526024016101b1565b61066f83838360016107d5565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f1981146106e957818110156106db57604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016101b1565b6106e984848484035f6107d5565b50505050565b6001600160a01b03831661071857604051634b637e8f60e11b81525f60048201526024016101b1565b6001600160a01b0382166107415760405163ec442f0560e01b81525f60048201526024016101b1565b61066f8383836108a7565b6001600160a01b03821661077557604051634b637e8f60e11b81525f60048201526024016101b1565b610780825f836108a7565b5050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0384166107fe5760405163e602df0560e01b81525f60048201526024016101b1565b6001600160a01b03831661082757604051634a1406b160e11b81525f60048201526024016101b1565b6001600160a01b038085165f90815260016020908152604080832093871683529290522082905580156106e957826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161089991815260200190565b60405180910390a350505050565b600a5460ff1615806108d057506001600160a01b0383165f9081526007602052604090205460ff165b806108f257506001600160a01b0382165f9081526007602052604090205460ff165b8061092457506006546001600160a01b0383811691161480159061092457506006546001600160a01b03848116911614155b156109345761066f8383836109d3565b60085460ff1661097c5760405162461bcd60e51b81526020600482015260136024820152722a3930b234b7339034b9903737ba1037b832b760691b60448201526064016101b1565b5f6064610987610af9565b6109919084610d16565b61099b9190610d2d565b905080156109cc576109bf846109b96005546001600160a01b031690565b836109d3565b6109c98183610d4c565b91505b6106e98484845b6001600160a01b0383166109fd578060025f8282546109f29190610d5f565b90915550610a6d9050565b6001600160a01b0383165f9081526020819052604090205481811015610a4f5760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016101b1565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610a8957600280548290039055610aa7565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610aec91815260200190565b60405180910390a3505050565b5f600954610960610b0a9190610d5f565b421115610b1657505f90565b600954610b25906104b0610d5f565b4210610b315750600590565b600954610b4090610384610d5f565b4210610b4c5750601990565b6009544210610b5b5750602890565b50602890565b5f602080835283518060208501525f5b81811015610b8d57858101830151858201604001528201610b71565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610bc3575f80fd5b919050565b5f8060408385031215610bd9575f80fd5b610be283610bad565b946020939093013593505050565b5f805f60608486031215610c02575f80fd5b610c0b84610bad565b9250610c1960208501610bad565b9150604084013590509250925092565b5f60208284031215610c39575f80fd5b5035919050565b5f60208284031215610c50575f80fd5b610c5982610bad565b9392505050565b5f8060408385031215610c71575f80fd5b610c7a83610bad565b915060208301358015158114610c8e575f80fd5b809150509250929050565b5f8060408385031215610caa575f80fd5b610cb383610bad565b9150610cc160208401610bad565b90509250929050565b600181811c90821680610cde57607f821691505b602082108103610cfc57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176104ee576104ee610d02565b5f82610d4757634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156104ee576104ee610d02565b808201808211156104ee576104ee610d0256fea26469706673582212205d299016a962f7653bf75669e810f16a3dbe9a67479235a8289ab58f36867c1b64736f6c63430008180033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000029403bb17ae58113c4e491e5ac04c4d4642bed87

-----Decoded View---------------
Arg [0] : initialOwner (address): 0x29403bB17aE58113c4E491e5Ac04C4D4642Bed87

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000029403bb17ae58113c4e491e5ac04c4d4642bed87


Deployed Bytecode Sourcemap

492:4694:9:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5048:9;5032:13;5094:7;1710:6:0;;-1:-1:-1;;;;;1710:6:0;;1638:85;5094:7:9;-1:-1:-1;;;;;5086:21:9;5115:5;5086:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5070:55;;;5146:4;5138:37;;;;-1:-1:-1;;;5138:37:9;;426:2:10;5138:37:9;;;408:21:10;465:2;445:18;;;438:30;-1:-1:-1;;;484:18:10;;;477:50;544:18;;5138:37:9;;;;;;;;;5021:162;492:4694;;;;2074:89:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3457:85:9;;;;;;;;;;;;;:::i;4293:186:2:-;;;;;;;;;;-1:-1:-1;4293:186:2;;;;;:::i;:::-;;:::i;:::-;;;1728:14:10;;1721:22;1703:41;;1691:2;1676:18;4293:186:2;1563:187:10;3144:97:2;;;;;;;;;;-1:-1:-1;3222:12:2;;3144:97;;;1901:25:10;;;1889:2;1874:18;3144:97:2;1755:177:10;5039:244:2;;;;;;;;;;-1:-1:-1;5039:244:2;;;;;:::i;:::-;;:::i;3002:82::-;;;;;;;;;;-1:-1:-1;3002:82:2;;3075:2;2412:36:10;;2400:2;2385:18;3002:82:2;2270:184:10;3689:93:9;;;;;;;;;;-1:-1:-1;3689:93:9;;;;;:::i;:::-;;:::i;533:28::-;;;;;;;;;;-1:-1:-1;533:28:9;;;;-1:-1:-1;;;;;533:28:9;;;;;;-1:-1:-1;;;;;2808:32:10;;;2790:51;;2778:2;2763:18;533:28:9;2644:203:10;686:50:9;;;;;;;;;;-1:-1:-1;686:50:9;;;;;:::i;:::-;;;;;;;;;;;;;;;;3299:116:2;;;;;;;;;;-1:-1:-1;3299:116:2;;;;;:::i;:::-;-1:-1:-1;;;;;3390:18:2;3364:7;3390:18;;;;;;;;;;;;3299:116;2293:101:0;;;;;;;;;;;;;:::i;1638:85::-;;;;;;;;;;-1:-1:-1;1710:6:0;;-1:-1:-1;;;;;1710:6:0;1638:85;;2276:93:2;;;;;;;;;;;;;:::i;3610:178::-;;;;;;;;;;-1:-1:-1;3610:178:2;;;;;:::i;:::-;;:::i;3550:131:9:-;;;;;;;;;;-1:-1:-1;3550:131:9;;;;;:::i;:::-;;:::i;3253:196::-;;;;;;;;;;;;;:::i;3846:140:2:-;;;;;;;;;;-1:-1:-1;3846:140:2;;;;;:::i;:::-;-1:-1:-1;;;;;3952:18:2;;;3926:7;3952:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3846:140;2543:215:0;;;;;;;;;;-1:-1:-1;2543:215:0;;;;;:::i;:::-;;:::i;2074:89:2:-;2119:13;2151:5;2144:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2074:89;:::o;3457:85:9:-;1531:13:0;:11;:13::i;:::-;3513::9::1;:21:::0;;-1:-1:-1;;3513:21:9::1;::::0;;3457:85::o;4293:186:2:-;4366:4;735:10:5;4420:31:2;735:10:5;4436:7:2;4445:5;4420:8;:31::i;:::-;4468:4;4461:11;;;4293:186;;;;;:::o;5039:244::-;5126:4;735:10:5;5182:37:2;5198:4;735:10:5;5213:5:2;5182:15;:37::i;:::-;5229:26;5239:4;5245:2;5249:5;5229:9;:26::i;:::-;-1:-1:-1;5272:4:2;;5039:244;-1:-1:-1;;;;5039:244:2:o;3689:93:9:-;1531:13:0;:11;:13::i;:::-;3749:25:9::1;3755:10;3767:6;3749:5;:25::i;:::-;3689:93:::0;:::o;2293:101:0:-;1531:13;:11;:13::i;:::-;2357:30:::1;2384:1;2357:18;:30::i;:::-;2293:101::o:0;2276:93:2:-;2323:13;2355:7;2348:14;;;;;:::i;3610:178::-;3679:4;735:10:5;3733:27:2;735:10:5;3750:2:2;3754:5;3733:9;:27::i;3550:131:9:-;1531:13:0;:11;:13::i;:::-;-1:-1:-1;;;;;3636:28:9;;;::::1;;::::0;;;:18:::1;:28;::::0;;;;:37;;-1:-1:-1;;3636:37:9::1;::::0;::::1;;::::0;;;::::1;::::0;;3550:131::o;3253:196::-;1531:13:0;:11;:13::i;:::-;3315:14:9::1;::::0;::::1;;3314:15;3306:51;;;::::0;-1:-1:-1;;;3306:51:9;;4247:2:10;3306:51:9::1;::::0;::::1;4229:21:10::0;4286:2;4266:18;;;4259:30;4325:25;4305:18;;;4298:53;4368:18;;3306:51:9::1;4045:347:10::0;3306:51:9::1;3368:14;:21:::0;;-1:-1:-1;;3368:21:9::1;3385:4;3368:21;::::0;;3426:15:::1;3400:23;:41:::0;3253:196::o;2543:215:0:-;1531:13;:11;:13::i;:::-;-1:-1:-1;;;;;2627:22:0;::::1;2623:91;;2672:31;::::0;-1:-1:-1;;;2672:31:0;;2700:1:::1;2672:31;::::0;::::1;2790:51:10::0;2763:18;;2672:31:0::1;2644:203:10::0;2623:91:0::1;2723:28;2742:8;2723:18;:28::i;1796:162::-:0;1710:6;;-1:-1:-1;;;;;1710:6:0;735:10:5;1855:23:0;1851:101;;1901:40;;-1:-1:-1;;;1901:40:0;;735:10:5;1901:40:0;;;2790:51:10;2763:18;;1901:40:0;2644:203:10;8989:128:2;9073:37;9082:5;9089:7;9098:5;9105:4;9073:8;:37::i;:::-;8989:128;;;:::o;10663:477::-;-1:-1:-1;;;;;3952:18:2;;;10762:24;3952:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;10828:37:2;;10824:310;;10904:5;10885:16;:24;10881:130;;;10936:60;;-1:-1:-1;;;10936:60:2;;-1:-1:-1;;;;;4617:32:10;;10936:60:2;;;4599:51:10;4666:18;;;4659:34;;;4709:18;;;4702:34;;;4572:18;;10936:60:2;4397:345:10;10881:130:2;11052:57;11061:5;11068:7;11096:5;11077:16;:24;11103:5;11052:8;:57::i;:::-;10752:388;10663:477;;;:::o;5656:300::-;-1:-1:-1;;;;;5739:18:2;;5735:86;;5780:30;;-1:-1:-1;;;5780:30:2;;5807:1;5780:30;;;2790:51:10;2763:18;;5780:30:2;2644:203:10;5735:86:2;-1:-1:-1;;;;;5834:16:2;;5830:86;;5873:32;;-1:-1:-1;;;5873:32:2;;5902:1;5873:32;;;2790:51:10;2763:18;;5873:32:2;2644:203:10;5830:86:2;5925:24;5933:4;5939:2;5943:5;5925:7;:24::i;8247:206::-;-1:-1:-1;;;;;8317:21:2;;8313:89;;8361:30;;-1:-1:-1;;;8361:30:2;;8388:1;8361:30;;;2790:51:10;2763:18;;8361:30:2;2644:203:10;8313:89:2;8411:35;8419:7;8436:1;8440:5;8411:7;:35::i;:::-;8247:206;;:::o;2912:187:0:-;3004:6;;;-1:-1:-1;;;;;3020:17:0;;;-1:-1:-1;;;;;;3020:17:0;;;;;;;3052:40;;3004:6;;;3020:17;3004:6;;3052:40;;2985:16;;3052:40;2975:124;2912:187;:::o;9949:432:2:-;-1:-1:-1;;;;;10061:19:2;;10057:89;;10103:32;;-1:-1:-1;;;10103:32:2;;10132:1;10103:32;;;2790:51:10;2763:18;;10103:32:2;2644:203:10;10057:89:2;-1:-1:-1;;;;;10159:21:2;;10155:90;;10203:31;;-1:-1:-1;;;10203:31:2;;10231:1;10203:31;;;2790:51:10;2763:18;;10203:31:2;2644:203:10;10155:90:2;-1:-1:-1;;;;;10254:18:2;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;10299:76;;;;10349:7;-1:-1:-1;;;;;10333:31:2;10342:5;-1:-1:-1;;;;;10333:31:2;;10358:5;10333:31;;;;1901:25:10;;1889:2;1874:18;;1755:177;10333:31:2;;;;;;;;9949:432;;;;:::o;4305:681:9:-;4446:13;;;;4445:14;;:55;;-1:-1:-1;;;;;;4476:24:9;;;;;;:18;:24;;;;;;;;4445:55;:94;;;-1:-1:-1;;;;;;4517:22:9;;;;;;:18;:22;;;;;;;;4445:94;:157;;;-1:-1:-1;4563:13:9;;-1:-1:-1;;;;;4557:19:9;;;4563:13;;4557:19;;;;:44;;-1:-1:-1;4588:13:9;;-1:-1:-1;;;;;4580:21:9;;;4588:13;;4580:21;;4557:44;4427:266;;;4629:31;4643:4;4649:2;4653:6;4629:13;:31::i;4427:266::-;4713:14;;;;4705:46;;;;-1:-1:-1;;;4705:46:9;;4949:2:10;4705:46:9;;;4931:21:10;4988:2;4968:18;;;4961:30;-1:-1:-1;;;5007:18:10;;;5000:49;5066:18;;4705:46:9;4747:343:10;4705:46:9;4764:12;4809:3;4789:16;:14;:16::i;:::-;4780:25;;:6;:25;:::i;:::-;4779:33;;;;:::i;:::-;4764:48;-1:-1:-1;4829:8:9;;4825:112;;4854:34;4868:4;4874:7;1710:6:0;;-1:-1:-1;;;;;1710:6:0;;1638:85;4874:7:9;4883:4;4854:13;:34::i;:::-;4912:13;4921:4;4912:6;:13;:::i;:::-;4903:22;;4825:112;4947:31;4961:4;4967:2;4971:6;6271:1107:2;-1:-1:-1;;;;;6360:18:2;;6356:540;;6512:5;6496:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;6356:540:2;;-1:-1:-1;6356:540:2;;-1:-1:-1;;;;;6570:15:2;;6548:19;6570:15;;;;;;;;;;;6603:19;;;6599:115;;;6649:50;;-1:-1:-1;;;6649:50:2;;-1:-1:-1;;;;;4617:32:10;;6649:50:2;;;4599:51:10;4666:18;;;4659:34;;;4709:18;;;4702:34;;;4572:18;;6649:50:2;4397:345:10;6599:115:2;-1:-1:-1;;;;;6834:15:2;;:9;:15;;;;;;;;;;6852:19;;;;6834:37;;6356:540;-1:-1:-1;;;;;6910:16:2;;6906:425;;7073:12;:21;;;;;;;6906:425;;;-1:-1:-1;;;;;7284:13:2;;:9;:13;;;;;;;;;;:22;;;;;;6906:425;7361:2;-1:-1:-1;;;;;7346:25:2;7355:4;-1:-1:-1;;;;;7346:25:2;;7365:5;7346:25;;;;1901::10;;1889:2;1874:18;;1755:177;7346:25:2;;;;;;;;6271:1107;;;:::o;3790:507:9:-;3838:7;3880:23;;3906:10;3880:36;;;;:::i;:::-;3862:15;:54;3858:432;;;-1:-1:-1;3940:1:9;;3790:507::o;3858:432::-;3982:23;;:36;;4008:10;3982:36;:::i;:::-;3963:15;:55;3959:331;;-1:-1:-1;4042:1:9;;3790:507::o;3959:331::-;4084:23;;:36;;4110:10;4084:36;:::i;:::-;4065:15;:55;4061:229;;-1:-1:-1;4144:2:9;;3790:507::o;4061:229::-;4187:23;;4168:15;:42;4164:126;;-1:-1:-1;4234:2:9;;3790:507::o;4164:126::-;-1:-1:-1;4276:2:9;;3790:507::o;573:548:10:-;685:4;714:2;743;732:9;725:21;775:6;769:13;818:6;813:2;802:9;798:18;791:34;843:1;853:140;867:6;864:1;861:13;853:140;;;962:14;;;958:23;;952:30;928:17;;;947:2;924:26;917:66;882:10;;853:140;;;857:3;1042:1;1037:2;1028:6;1017:9;1013:22;1009:31;1002:42;1112:2;1105;1101:7;1096:2;1088:6;1084:15;1080:29;1069:9;1065:45;1061:54;1053:62;;;;573:548;;;;:::o;1126:173::-;1194:20;;-1:-1:-1;;;;;1243:31:10;;1233:42;;1223:70;;1289:1;1286;1279:12;1223:70;1126:173;;;:::o;1304:254::-;1372:6;1380;1433:2;1421:9;1412:7;1408:23;1404:32;1401:52;;;1449:1;1446;1439:12;1401:52;1472:29;1491:9;1472:29;:::i;:::-;1462:39;1548:2;1533:18;;;;1520:32;;-1:-1:-1;;;1304:254:10:o;1937:328::-;2014:6;2022;2030;2083:2;2071:9;2062:7;2058:23;2054:32;2051:52;;;2099:1;2096;2089:12;2051:52;2122:29;2141:9;2122:29;:::i;:::-;2112:39;;2170:38;2204:2;2193:9;2189:18;2170:38;:::i;:::-;2160:48;;2255:2;2244:9;2240:18;2227:32;2217:42;;1937:328;;;;;:::o;2459:180::-;2518:6;2571:2;2559:9;2550:7;2546:23;2542:32;2539:52;;;2587:1;2584;2577:12;2539:52;-1:-1:-1;2610:23:10;;2459:180;-1:-1:-1;2459:180:10:o;2852:186::-;2911:6;2964:2;2952:9;2943:7;2939:23;2935:32;2932:52;;;2980:1;2977;2970:12;2932:52;3003:29;3022:9;3003:29;:::i;:::-;2993:39;2852:186;-1:-1:-1;;;2852:186:10:o;3043:347::-;3108:6;3116;3169:2;3157:9;3148:7;3144:23;3140:32;3137:52;;;3185:1;3182;3175:12;3137:52;3208:29;3227:9;3208:29;:::i;:::-;3198:39;;3287:2;3276:9;3272:18;3259:32;3334:5;3327:13;3320:21;3313:5;3310:32;3300:60;;3356:1;3353;3346:12;3300:60;3379:5;3369:15;;;3043:347;;;;;:::o;3395:260::-;3463:6;3471;3524:2;3512:9;3503:7;3499:23;3495:32;3492:52;;;3540:1;3537;3530:12;3492:52;3563:29;3582:9;3563:29;:::i;:::-;3553:39;;3611:38;3645:2;3634:9;3630:18;3611:38;:::i;:::-;3601:48;;3395:260;;;;;:::o;3660:380::-;3739:1;3735:12;;;;3782;;;3803:61;;3857:4;3849:6;3845:17;3835:27;;3803:61;3910:2;3902:6;3899:14;3879:18;3876:38;3873:161;;3956:10;3951:3;3947:20;3944:1;3937:31;3991:4;3988:1;3981:15;4019:4;4016:1;4009:15;3873:161;;3660:380;;;:::o;5095:127::-;5156:10;5151:3;5147:20;5144:1;5137:31;5187:4;5184:1;5177:15;5211:4;5208:1;5201:15;5227:168;5300:9;;;5331;;5348:15;;;5342:22;;5328:37;5318:71;;5369:18;;:::i;5400:217::-;5440:1;5466;5456:132;;5510:10;5505:3;5501:20;5498:1;5491:31;5545:4;5542:1;5535:15;5573:4;5570:1;5563:15;5456:132;-1:-1:-1;5602:9:10;;5400:217::o;5622:128::-;5689:9;;;5710:11;;;5707:37;;;5724:18;;:::i;5755:125::-;5820:9;;;5841:10;;;5838:36;;;5854:18;;:::i

Swarm Source

ipfs://5d299016a962f7653bf75669e810f16a3dbe9a67479235a8289ab58f36867c1b
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.