ETH Price: $2,496.39 (-3.55%)

Token

Go Green (🟩)
 

Overview

Max Total Supply

69,000,000,000,000,000 🟩

Holders

33

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
loosingmoneyismypassion.eth
Balance
295,583,340,669,458.111088053917364745 🟩

Value
$0.00
0x8c1d01ace77c85bfba08ea3d1a05fb8006b3d8e6
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:
GOGREEN

Compiler Version
v0.8.25+commit.b61c2a91

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-07-25
*/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

/*


Time to Go Green 

GREEN IS THE COLOR OF THE BULL

GREEN IS GOOD

WE LIKE GREEN

YOU HAVE A TOKEN WHICHS TICKER IS LITERALLY GREEn

IT

ITS

TIME


TO

GO 


GREEN $🟩


🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩
🟩




*/

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


// File @openzeppelin/contracts/access/[email protected]


// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_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 onlyOwner() {
        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 {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


// File @openzeppelin/contracts/token/ERC20/[email protected]


// OpenZeppelin Contracts v4.4.0 (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/[email protected]


// OpenZeppelin Contracts v4.4.0 (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/[email protected]


// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * 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 Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * 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, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual 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 18;
    }

    /**
     * @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");
        unchecked {
            _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");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * 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");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, 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 _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), 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. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}


// File contracts/PepeToken.sol



pragma solidity ^0.8.0;


contract GOGREEN is Ownable, ERC20 {
    bool public limited;
    uint256 public maxHoldingAmount;
    uint256 public minHoldingAmount;
    address public uniswapV2Pair;
    mapping(address => bool) public blacklists;

    constructor(uint256 _totalSupply) ERC20(unicode"Go Green", unicode"🟩") {
        _mint(msg.sender, _totalSupply);
    }

    function bl(address _address, bool _isBlacklisting) external onlyOwner {
        blacklists[_address] = _isBlacklisting;
    }

    function LetsFuckingGo(bool _limited, address _uniswapV2Pair, uint256 _maxHoldingAmount, uint256 _minHoldingAmount) external onlyOwner {
        limited = _limited;
        uniswapV2Pair = _uniswapV2Pair;
        maxHoldingAmount = _maxHoldingAmount;
        minHoldingAmount = _minHoldingAmount;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual {
        require(!blacklists[to] && !blacklists[from], "Blacklisted");

        if (uniswapV2Pair == address(0)) {
            require(from == owner() || to == owner(), "trading is not started");
            return;
        }

        if (limited && from == uniswapV2Pair) {
            require(super.balanceOf(to) + amount <= maxHoldingAmount && super.balanceOf(to) + amount >= minHoldingAmount, "Forbid");
        }
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"LetsFuckingGo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"bl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

608060405234801561000f575f80fd5b50604051612eb0380380612eb0833981810160405281019061003191906106b2565b6040518060400160405280600881526020017f476f20477265656e0000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017ff09f9fa9000000000000000000000000000000000000000000000000000000008152506100b96100ae6100f160201b60201c565b6100f860201b60201c565b81600490816100c8919061090e565b5080600590816100d8919061090e565b5050506100eb33826101b960201b60201c565b50610c15565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021e90610a37565b60405180910390fd5b6102385f838361031d60201b60201c565b8060035f8282546102499190610a82565b925050819055508060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461029c9190610a82565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516103009190610ac4565b60405180910390a36103195f838361060960201b60201c565b5050565b600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156103bb5750600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b6103fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103f190610b27565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036105115761045c61060e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806104cd575061049e61060e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b61050c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161050390610b8f565b60405180910390fd5b610604565b60065f9054906101000a900460ff168015610578575060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561060357600754816105908461063560201b60201c565b61059a9190610a82565b111580156105c35750600854816105b68461063560201b60201c565b6105c09190610a82565b10155b610602576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f990610bf7565b60405180910390fd5b5b5b505050565b505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f80fd5b5f819050919050565b6106918161067f565b811461069b575f80fd5b50565b5f815190506106ac81610688565b92915050565b5f602082840312156106c7576106c661067b565b5b5f6106d48482850161069e565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061075857607f821691505b60208210810361076b5761076a610714565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026107cd7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610792565b6107d78683610792565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61081261080d6108088461067f565b6107ef565b61067f565b9050919050565b5f819050919050565b61082b836107f8565b61083f61083782610819565b84845461079e565b825550505050565b5f90565b610853610847565b61085e818484610822565b505050565b5b81811015610881576108765f8261084b565b600181019050610864565b5050565b601f8211156108c65761089781610771565b6108a084610783565b810160208510156108af578190505b6108c36108bb85610783565b830182610863565b50505b505050565b5f82821c905092915050565b5f6108e65f19846008026108cb565b1980831691505092915050565b5f6108fe83836108d7565b9150826002028217905092915050565b610917826106dd565b67ffffffffffffffff8111156109305761092f6106e7565b5b61093a8254610741565b610945828285610885565b5f60209050601f831160018114610976575f8415610964578287015190505b61096e85826108f3565b8655506109d5565b601f19841661098486610771565b5f5b828110156109ab57848901518255600182019150602085019450602081019050610986565b868310156109c857848901516109c4601f8916826108d7565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f610a21601f836109dd565b9150610a2c826109ed565b602082019050919050565b5f6020820190508181035f830152610a4e81610a15565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610a8c8261067f565b9150610a978361067f565b9250828201905080821115610aaf57610aae610a55565b5b92915050565b610abe8161067f565b82525050565b5f602082019050610ad75f830184610ab5565b92915050565b7f426c61636b6c69737465640000000000000000000000000000000000000000005f82015250565b5f610b11600b836109dd565b9150610b1c82610add565b602082019050919050565b5f6020820190508181035f830152610b3e81610b05565b9050919050565b7f74726164696e67206973206e6f742073746172746564000000000000000000005f82015250565b5f610b796016836109dd565b9150610b8482610b45565b602082019050919050565b5f6020820190508181035f830152610ba681610b6d565b9050919050565b7f466f7262696400000000000000000000000000000000000000000000000000005f82015250565b5f610be16006836109dd565b9150610bec82610bad565b602082019050919050565b5f6020820190508181035f830152610c0e81610bd5565b9050919050565b61228e80610c225f395ff3fe608060405234801561000f575f80fd5b5060043610610140575f3560e01c8063589a36c2116100b65780638da5cb5b1161007a5780638da5cb5b1461036457806395d89b4114610382578063a457c2d7146103a0578063a9059cbb146103d0578063dd62ed3e14610400578063f2fde38b1461043057610140565b8063589a36c2146102d257806370a08231146102ee578063715018a61461031e578063860a32ec1461032857806389f9a1d31461034657610140565b806323b872dd1161010857806323b872dd146101fe57806324b94e3f1461022e578063313ce5671461024a578063395093511461026857806342966c681461029857806349bd5a5e146102b457610140565b806306fdde0314610144578063095ea7b31461016257806316c021291461019257806318160ddd146101c25780631ab99e12146101e0575b5f80fd5b61014c61044c565b60405161015991906116e6565b60405180910390f35b61017c60048036038101906101779190611797565b6104dc565b60405161018991906117ef565b60405180910390f35b6101ac60048036038101906101a79190611808565b6104f9565b6040516101b991906117ef565b60405180910390f35b6101ca610516565b6040516101d79190611842565b60405180910390f35b6101e861051f565b6040516101f59190611842565b60405180910390f35b6102186004803603810190610213919061185b565b610525565b60405161022591906117ef565b60405180910390f35b610248600480360381019061024391906118d5565b610617565b005b610252610700565b60405161025f9190611954565b60405180910390f35b610282600480360381019061027d9190611797565b610708565b60405161028f91906117ef565b60405180910390f35b6102b260048036038101906102ad919061196d565b6107af565b005b6102bc6107bc565b6040516102c991906119a7565b60405180910390f35b6102ec60048036038101906102e791906119c0565b6107e1565b005b61030860048036038101906103039190611808565b6108b5565b6040516103159190611842565b60405180910390f35b6103266108fb565b005b610330610982565b60405161033d91906117ef565b60405180910390f35b61034e610994565b60405161035b9190611842565b60405180910390f35b61036c61099a565b60405161037991906119a7565b60405180910390f35b61038a6109c1565b60405161039791906116e6565b60405180910390f35b6103ba60048036038101906103b59190611797565b610a51565b6040516103c791906117ef565b60405180910390f35b6103ea60048036038101906103e59190611797565b610b37565b6040516103f791906117ef565b60405180910390f35b61041a600480360381019061041591906119fe565b610b54565b6040516104279190611842565b60405180910390f35b61044a60048036038101906104459190611808565b610bd6565b005b60606004805461045b90611a69565b80601f016020809104026020016040519081016040528092919081815260200182805461048790611a69565b80156104d25780601f106104a9576101008083540402835291602001916104d2565b820191905f5260205f20905b8154815290600101906020018083116104b557829003601f168201915b5050505050905090565b5f6104ef6104e8610ccc565b8484610cd3565b6001905092915050565b600a602052805f5260405f205f915054906101000a900460ff1681565b5f600354905090565b60085481565b5f610531848484610e96565b5f60025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610578610ccc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156105f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ee90611b09565b60405180910390fd5b61060b85610603610ccc565b858403610cd3565b60019150509392505050565b61061f610ccc565b73ffffffffffffffffffffffffffffffffffffffff1661063d61099a565b73ffffffffffffffffffffffffffffffffffffffff1614610693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068a90611b71565b60405180910390fd5b8360065f6101000a81548160ff0219169083151502179055508260095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816007819055508060088190555050505050565b5f6012905090565b5f6107a5610714610ccc565b848460025f610721610ccc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546107a09190611bbc565b610cd3565b6001905092915050565b6107b9338261110e565b50565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6107e9610ccc565b73ffffffffffffffffffffffffffffffffffffffff1661080761099a565b73ffffffffffffffffffffffffffffffffffffffff161461085d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085490611b71565b60405180910390fd5b80600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610903610ccc565b73ffffffffffffffffffffffffffffffffffffffff1661092161099a565b73ffffffffffffffffffffffffffffffffffffffff1614610977576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096e90611b71565b60405180910390fd5b6109805f6112dc565b565b60065f9054906101000a900460ff1681565b60075481565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546109d090611a69565b80601f01602080910402602001604051908101604052809291908181526020018280546109fc90611a69565b8015610a475780601f10610a1e57610100808354040283529160200191610a47565b820191905f5260205f20905b815481529060010190602001808311610a2a57829003601f168201915b5050505050905090565b5f8060025f610a5e610ccc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0f90611c5f565b60405180910390fd5b610b2c610b23610ccc565b85858403610cd3565b600191505092915050565b5f610b4a610b43610ccc565b8484610e96565b6001905092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610bde610ccc565b73ffffffffffffffffffffffffffffffffffffffff16610bfc61099a565b73ffffffffffffffffffffffffffffffffffffffff1614610c52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4990611b71565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb790611ced565b60405180910390fd5b610cc9816112dc565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3890611d7b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da690611e09565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e899190611842565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efb90611e97565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6990611f25565b60405180910390fd5b610f7d83838361139d565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff890611fb3565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546110919190611bbc565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110f59190611842565b60405180910390a3611108848484611671565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361117c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117390612041565b60405180910390fd5b611187825f8361139d565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561120b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611202906120cf565b60405180910390fd5b81810360015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160035f82825461126091906120ed565b925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112c49190611842565b60405180910390a36112d7835f84611671565b505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615801561143b5750600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b61147a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114719061216a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611585576114d661099a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611541575061151261099a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611580576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611577906121d2565b60405180910390fd5b61166c565b60065f9054906101000a900460ff1680156115ec575060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561166b57600754816115fe846108b5565b6116089190611bbc565b1115801561162b57506008548161161e846108b5565b6116289190611bbc565b10155b61166a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116619061223a565b60405180910390fd5b5b5b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6116b882611676565b6116c28185611680565b93506116d2818560208601611690565b6116db8161169e565b840191505092915050565b5f6020820190508181035f8301526116fe81846116ae565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6117338261170a565b9050919050565b61174381611729565b811461174d575f80fd5b50565b5f8135905061175e8161173a565b92915050565b5f819050919050565b61177681611764565b8114611780575f80fd5b50565b5f813590506117918161176d565b92915050565b5f80604083850312156117ad576117ac611706565b5b5f6117ba85828601611750565b92505060206117cb85828601611783565b9150509250929050565b5f8115159050919050565b6117e9816117d5565b82525050565b5f6020820190506118025f8301846117e0565b92915050565b5f6020828403121561181d5761181c611706565b5b5f61182a84828501611750565b91505092915050565b61183c81611764565b82525050565b5f6020820190506118555f830184611833565b92915050565b5f805f6060848603121561187257611871611706565b5b5f61187f86828701611750565b935050602061189086828701611750565b92505060406118a186828701611783565b9150509250925092565b6118b4816117d5565b81146118be575f80fd5b50565b5f813590506118cf816118ab565b92915050565b5f805f80608085870312156118ed576118ec611706565b5b5f6118fa878288016118c1565b945050602061190b87828801611750565b935050604061191c87828801611783565b925050606061192d87828801611783565b91505092959194509250565b5f60ff82169050919050565b61194e81611939565b82525050565b5f6020820190506119675f830184611945565b92915050565b5f6020828403121561198257611981611706565b5b5f61198f84828501611783565b91505092915050565b6119a181611729565b82525050565b5f6020820190506119ba5f830184611998565b92915050565b5f80604083850312156119d6576119d5611706565b5b5f6119e385828601611750565b92505060206119f4858286016118c1565b9150509250929050565b5f8060408385031215611a1457611a13611706565b5b5f611a2185828601611750565b9250506020611a3285828601611750565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611a8057607f821691505b602082108103611a9357611a92611a3c565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f611af3602883611680565b9150611afe82611a99565b604082019050919050565b5f6020820190508181035f830152611b2081611ae7565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611b5b602083611680565b9150611b6682611b27565b602082019050919050565b5f6020820190508181035f830152611b8881611b4f565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611bc682611764565b9150611bd183611764565b9250828201905080821115611be957611be8611b8f565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611c49602583611680565b9150611c5482611bef565b604082019050919050565b5f6020820190508181035f830152611c7681611c3d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611cd7602683611680565b9150611ce282611c7d565b604082019050919050565b5f6020820190508181035f830152611d0481611ccb565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611d65602483611680565b9150611d7082611d0b565b604082019050919050565b5f6020820190508181035f830152611d9281611d59565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611df3602283611680565b9150611dfe82611d99565b604082019050919050565b5f6020820190508181035f830152611e2081611de7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611e81602583611680565b9150611e8c82611e27565b604082019050919050565b5f6020820190508181035f830152611eae81611e75565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611f0f602383611680565b9150611f1a82611eb5565b604082019050919050565b5f6020820190508181035f830152611f3c81611f03565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611f9d602683611680565b9150611fa882611f43565b604082019050919050565b5f6020820190508181035f830152611fca81611f91565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f61202b602183611680565b915061203682611fd1565b604082019050919050565b5f6020820190508181035f8301526120588161201f565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f6120b9602283611680565b91506120c48261205f565b604082019050919050565b5f6020820190508181035f8301526120e6816120ad565b9050919050565b5f6120f782611764565b915061210283611764565b925082820390508181111561211a57612119611b8f565b5b92915050565b7f426c61636b6c69737465640000000000000000000000000000000000000000005f82015250565b5f612154600b83611680565b915061215f82612120565b602082019050919050565b5f6020820190508181035f83015261218181612148565b9050919050565b7f74726164696e67206973206e6f742073746172746564000000000000000000005f82015250565b5f6121bc601683611680565b91506121c782612188565b602082019050919050565b5f6020820190508181035f8301526121e9816121b0565b9050919050565b7f466f7262696400000000000000000000000000000000000000000000000000005f82015250565b5f612224600683611680565b915061222f826121f0565b602082019050919050565b5f6020820190508181035f83015261225181612218565b905091905056fea264697066735822122087d3bcf1aed1ace8637f06a5be5d23c8337adebdfd474f4c90f4f5309615879664736f6c6343000819003300000000000000000000000000000000000d49f6707a28ae4c1d89b200000000

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610140575f3560e01c8063589a36c2116100b65780638da5cb5b1161007a5780638da5cb5b1461036457806395d89b4114610382578063a457c2d7146103a0578063a9059cbb146103d0578063dd62ed3e14610400578063f2fde38b1461043057610140565b8063589a36c2146102d257806370a08231146102ee578063715018a61461031e578063860a32ec1461032857806389f9a1d31461034657610140565b806323b872dd1161010857806323b872dd146101fe57806324b94e3f1461022e578063313ce5671461024a578063395093511461026857806342966c681461029857806349bd5a5e146102b457610140565b806306fdde0314610144578063095ea7b31461016257806316c021291461019257806318160ddd146101c25780631ab99e12146101e0575b5f80fd5b61014c61044c565b60405161015991906116e6565b60405180910390f35b61017c60048036038101906101779190611797565b6104dc565b60405161018991906117ef565b60405180910390f35b6101ac60048036038101906101a79190611808565b6104f9565b6040516101b991906117ef565b60405180910390f35b6101ca610516565b6040516101d79190611842565b60405180910390f35b6101e861051f565b6040516101f59190611842565b60405180910390f35b6102186004803603810190610213919061185b565b610525565b60405161022591906117ef565b60405180910390f35b610248600480360381019061024391906118d5565b610617565b005b610252610700565b60405161025f9190611954565b60405180910390f35b610282600480360381019061027d9190611797565b610708565b60405161028f91906117ef565b60405180910390f35b6102b260048036038101906102ad919061196d565b6107af565b005b6102bc6107bc565b6040516102c991906119a7565b60405180910390f35b6102ec60048036038101906102e791906119c0565b6107e1565b005b61030860048036038101906103039190611808565b6108b5565b6040516103159190611842565b60405180910390f35b6103266108fb565b005b610330610982565b60405161033d91906117ef565b60405180910390f35b61034e610994565b60405161035b9190611842565b60405180910390f35b61036c61099a565b60405161037991906119a7565b60405180910390f35b61038a6109c1565b60405161039791906116e6565b60405180910390f35b6103ba60048036038101906103b59190611797565b610a51565b6040516103c791906117ef565b60405180910390f35b6103ea60048036038101906103e59190611797565b610b37565b6040516103f791906117ef565b60405180910390f35b61041a600480360381019061041591906119fe565b610b54565b6040516104279190611842565b60405180910390f35b61044a60048036038101906104459190611808565b610bd6565b005b60606004805461045b90611a69565b80601f016020809104026020016040519081016040528092919081815260200182805461048790611a69565b80156104d25780601f106104a9576101008083540402835291602001916104d2565b820191905f5260205f20905b8154815290600101906020018083116104b557829003601f168201915b5050505050905090565b5f6104ef6104e8610ccc565b8484610cd3565b6001905092915050565b600a602052805f5260405f205f915054906101000a900460ff1681565b5f600354905090565b60085481565b5f610531848484610e96565b5f60025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610578610ccc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156105f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ee90611b09565b60405180910390fd5b61060b85610603610ccc565b858403610cd3565b60019150509392505050565b61061f610ccc565b73ffffffffffffffffffffffffffffffffffffffff1661063d61099a565b73ffffffffffffffffffffffffffffffffffffffff1614610693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068a90611b71565b60405180910390fd5b8360065f6101000a81548160ff0219169083151502179055508260095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816007819055508060088190555050505050565b5f6012905090565b5f6107a5610714610ccc565b848460025f610721610ccc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546107a09190611bbc565b610cd3565b6001905092915050565b6107b9338261110e565b50565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6107e9610ccc565b73ffffffffffffffffffffffffffffffffffffffff1661080761099a565b73ffffffffffffffffffffffffffffffffffffffff161461085d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085490611b71565b60405180910390fd5b80600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610903610ccc565b73ffffffffffffffffffffffffffffffffffffffff1661092161099a565b73ffffffffffffffffffffffffffffffffffffffff1614610977576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096e90611b71565b60405180910390fd5b6109805f6112dc565b565b60065f9054906101000a900460ff1681565b60075481565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546109d090611a69565b80601f01602080910402602001604051908101604052809291908181526020018280546109fc90611a69565b8015610a475780601f10610a1e57610100808354040283529160200191610a47565b820191905f5260205f20905b815481529060010190602001808311610a2a57829003601f168201915b5050505050905090565b5f8060025f610a5e610ccc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0f90611c5f565b60405180910390fd5b610b2c610b23610ccc565b85858403610cd3565b600191505092915050565b5f610b4a610b43610ccc565b8484610e96565b6001905092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610bde610ccc565b73ffffffffffffffffffffffffffffffffffffffff16610bfc61099a565b73ffffffffffffffffffffffffffffffffffffffff1614610c52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4990611b71565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb790611ced565b60405180910390fd5b610cc9816112dc565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3890611d7b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da690611e09565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e899190611842565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efb90611e97565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6990611f25565b60405180910390fd5b610f7d83838361139d565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff890611fb3565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546110919190611bbc565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110f59190611842565b60405180910390a3611108848484611671565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361117c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117390612041565b60405180910390fd5b611187825f8361139d565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561120b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611202906120cf565b60405180910390fd5b81810360015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160035f82825461126091906120ed565b925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112c49190611842565b60405180910390a36112d7835f84611671565b505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615801561143b5750600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b61147a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114719061216a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611585576114d661099a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611541575061151261099a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611580576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611577906121d2565b60405180910390fd5b61166c565b60065f9054906101000a900460ff1680156115ec575060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561166b57600754816115fe846108b5565b6116089190611bbc565b1115801561162b57506008548161161e846108b5565b6116289190611bbc565b10155b61166a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116619061223a565b60405180910390fd5b5b5b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6116b882611676565b6116c28185611680565b93506116d2818560208601611690565b6116db8161169e565b840191505092915050565b5f6020820190508181035f8301526116fe81846116ae565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6117338261170a565b9050919050565b61174381611729565b811461174d575f80fd5b50565b5f8135905061175e8161173a565b92915050565b5f819050919050565b61177681611764565b8114611780575f80fd5b50565b5f813590506117918161176d565b92915050565b5f80604083850312156117ad576117ac611706565b5b5f6117ba85828601611750565b92505060206117cb85828601611783565b9150509250929050565b5f8115159050919050565b6117e9816117d5565b82525050565b5f6020820190506118025f8301846117e0565b92915050565b5f6020828403121561181d5761181c611706565b5b5f61182a84828501611750565b91505092915050565b61183c81611764565b82525050565b5f6020820190506118555f830184611833565b92915050565b5f805f6060848603121561187257611871611706565b5b5f61187f86828701611750565b935050602061189086828701611750565b92505060406118a186828701611783565b9150509250925092565b6118b4816117d5565b81146118be575f80fd5b50565b5f813590506118cf816118ab565b92915050565b5f805f80608085870312156118ed576118ec611706565b5b5f6118fa878288016118c1565b945050602061190b87828801611750565b935050604061191c87828801611783565b925050606061192d87828801611783565b91505092959194509250565b5f60ff82169050919050565b61194e81611939565b82525050565b5f6020820190506119675f830184611945565b92915050565b5f6020828403121561198257611981611706565b5b5f61198f84828501611783565b91505092915050565b6119a181611729565b82525050565b5f6020820190506119ba5f830184611998565b92915050565b5f80604083850312156119d6576119d5611706565b5b5f6119e385828601611750565b92505060206119f4858286016118c1565b9150509250929050565b5f8060408385031215611a1457611a13611706565b5b5f611a2185828601611750565b9250506020611a3285828601611750565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611a8057607f821691505b602082108103611a9357611a92611a3c565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f611af3602883611680565b9150611afe82611a99565b604082019050919050565b5f6020820190508181035f830152611b2081611ae7565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611b5b602083611680565b9150611b6682611b27565b602082019050919050565b5f6020820190508181035f830152611b8881611b4f565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611bc682611764565b9150611bd183611764565b9250828201905080821115611be957611be8611b8f565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611c49602583611680565b9150611c5482611bef565b604082019050919050565b5f6020820190508181035f830152611c7681611c3d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611cd7602683611680565b9150611ce282611c7d565b604082019050919050565b5f6020820190508181035f830152611d0481611ccb565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611d65602483611680565b9150611d7082611d0b565b604082019050919050565b5f6020820190508181035f830152611d9281611d59565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611df3602283611680565b9150611dfe82611d99565b604082019050919050565b5f6020820190508181035f830152611e2081611de7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611e81602583611680565b9150611e8c82611e27565b604082019050919050565b5f6020820190508181035f830152611eae81611e75565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611f0f602383611680565b9150611f1a82611eb5565b604082019050919050565b5f6020820190508181035f830152611f3c81611f03565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611f9d602683611680565b9150611fa882611f43565b604082019050919050565b5f6020820190508181035f830152611fca81611f91565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f61202b602183611680565b915061203682611fd1565b604082019050919050565b5f6020820190508181035f8301526120588161201f565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f6120b9602283611680565b91506120c48261205f565b604082019050919050565b5f6020820190508181035f8301526120e6816120ad565b9050919050565b5f6120f782611764565b915061210283611764565b925082820390508181111561211a57612119611b8f565b5b92915050565b7f426c61636b6c69737465640000000000000000000000000000000000000000005f82015250565b5f612154600b83611680565b915061215f82612120565b602082019050919050565b5f6020820190508181035f83015261218181612148565b9050919050565b7f74726164696e67206973206e6f742073746172746564000000000000000000005f82015250565b5f6121bc601683611680565b91506121c782612188565b602082019050919050565b5f6020820190508181035f8301526121e9816121b0565b9050919050565b7f466f7262696400000000000000000000000000000000000000000000000000005f82015250565b5f612224600683611680565b915061222f826121f0565b602082019050919050565b5f6020820190508181035f83015261225181612218565b905091905056fea264697066735822122087d3bcf1aed1ace8637f06a5be5d23c8337adebdfd474f4c90f4f5309615879664736f6c63430008190033

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

00000000000000000000000000000000000d49f6707a28ae4c1d89b200000000

-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 69000000000000000000000000000000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000d49f6707a28ae4c1d89b200000000


Deployed Bytecode Sourcemap

19852:1472:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9821:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11988:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20031:42;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10941:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19958:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12639:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20350:307;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10783:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13540:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21240:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19996:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20214:128;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11112:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3222:103;;;:::i;:::-;;19894:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19920:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2571:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10040:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14258:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11452:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11690:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3480:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9821:100;9875:13;9908:5;9901:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9821:100;:::o;11988:169::-;12071:4;12088:39;12097:12;:10;:12::i;:::-;12111:7;12120:6;12088:8;:39::i;:::-;12145:4;12138:11;;11988:169;;;;:::o;20031:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;10941:108::-;11002:7;11029:12;;11022:19;;10941:108;:::o;19958:31::-;;;;:::o;12639:492::-;12779:4;12796:36;12806:6;12814:9;12825:6;12796:9;:36::i;:::-;12845:24;12872:11;:19;12884:6;12872:19;;;;;;;;;;;;;;;:33;12892:12;:10;:12::i;:::-;12872:33;;;;;;;;;;;;;;;;12845:60;;12944:6;12924:16;:26;;12916:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;13031:57;13040:6;13048:12;:10;:12::i;:::-;13081:6;13062:16;:25;13031:8;:57::i;:::-;13119:4;13112:11;;;12639:492;;;;;:::o;20350:307::-;2802:12;:10;:12::i;:::-;2791:23;;:7;:5;:7::i;:::-;:23;;;2783:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20506:8:::1;20496:7;;:18;;;;;;;;;;;;;;;;;;20541:14;20525:13;;:30;;;;;;;;;;;;;;;;;;20585:17;20566:16;:36;;;;20632:17;20613:16;:36;;;;20350:307:::0;;;;:::o;10783:93::-;10841:5;10866:2;10859:9;;10783:93;:::o;13540:215::-;13628:4;13645:80;13654:12;:10;:12::i;:::-;13668:7;13714:10;13677:11;:25;13689:12;:10;:12::i;:::-;13677:25;;;;;;;;;;;;;;;:34;13703:7;13677:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13645:8;:80::i;:::-;13743:4;13736:11;;13540:215;;;;:::o;21240:81::-;21289:24;21295:10;21307:5;21289;:24::i;:::-;21240:81;:::o;19996:28::-;;;;;;;;;;;;;:::o;20214:128::-;2802:12;:10;:12::i;:::-;2791:23;;:7;:5;:7::i;:::-;:23;;;2783:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20319:15:::1;20296:10;:20;20307:8;20296:20;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;20214:128:::0;;:::o;11112:127::-;11186:7;11213:9;:18;11223:7;11213:18;;;;;;;;;;;;;;;;11206:25;;11112:127;;;:::o;3222:103::-;2802:12;:10;:12::i;:::-;2791:23;;:7;:5;:7::i;:::-;:23;;;2783:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3287:30:::1;3314:1;3287:18;:30::i;:::-;3222:103::o:0;19894:19::-;;;;;;;;;;;;;:::o;19920:31::-;;;;:::o;2571:87::-;2617:7;2644:6;;;;;;;;;;;2637:13;;2571:87;:::o;10040:104::-;10096:13;10129:7;10122:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10040:104;:::o;14258:413::-;14351:4;14368:24;14395:11;:25;14407:12;:10;:12::i;:::-;14395:25;;;;;;;;;;;;;;;:34;14421:7;14395:34;;;;;;;;;;;;;;;;14368:61;;14468:15;14448:16;:35;;14440:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14561:67;14570:12;:10;:12::i;:::-;14584:7;14612:15;14593:16;:34;14561:8;:67::i;:::-;14659:4;14652:11;;;14258:413;;;;:::o;11452:175::-;11538:4;11555:42;11565:12;:10;:12::i;:::-;11579:9;11590:6;11555:9;:42::i;:::-;11615:4;11608:11;;11452:175;;;;:::o;11690:151::-;11779:7;11806:11;:18;11818:5;11806:18;;;;;;;;;;;;;;;:27;11825:7;11806:27;;;;;;;;;;;;;;;;11799:34;;11690:151;;;;:::o;3480:201::-;2802:12;:10;:12::i;:::-;2791:23;;:7;:5;:7::i;:::-;:23;;;2783:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3589:1:::1;3569:22;;:8;:22;;::::0;3561:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3645:28;3664:8;3645:18;:28::i;:::-;3480:201:::0;:::o;1289:98::-;1342:7;1369:10;1362:17;;1289:98;:::o;17942:380::-;18095:1;18078:19;;:5;:19;;;18070:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18176:1;18157:21;;:7;:21;;;18149:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18260:6;18230:11;:18;18242:5;18230:18;;;;;;;;;;;;;;;:27;18249:7;18230:27;;;;;;;;;;;;;;;:36;;;;18298:7;18282:32;;18291:5;18282:32;;;18307:6;18282:32;;;;;;:::i;:::-;;;;;;;;17942:380;;;:::o;15161:733::-;15319:1;15301:20;;:6;:20;;;15293:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15403:1;15382:23;;:9;:23;;;15374:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15458:47;15479:6;15487:9;15498:6;15458:20;:47::i;:::-;15518:21;15542:9;:17;15552:6;15542:17;;;;;;;;;;;;;;;;15518:41;;15595:6;15578:13;:23;;15570:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15716:6;15700:13;:22;15680:9;:17;15690:6;15680:17;;;;;;;;;;;;;;;:42;;;;15768:6;15744:9;:20;15754:9;15744:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15809:9;15792:35;;15801:6;15792:35;;;15820:6;15792:35;;;;;;:::i;:::-;;;;;;;;15840:46;15860:6;15868:9;15879:6;15840:19;:46::i;:::-;15282:612;15161:733;;;:::o;16913:591::-;17016:1;16997:21;;:7;:21;;;16989:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;17069:49;17090:7;17107:1;17111:6;17069:20;:49::i;:::-;17131:22;17156:9;:18;17166:7;17156:18;;;;;;;;;;;;;;;;17131:43;;17211:6;17193:14;:24;;17185:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17330:6;17313:14;:23;17292:9;:18;17302:7;17292:18;;;;;;;;;;;;;;;:44;;;;17374:6;17358:12;;:22;;;;;;;:::i;:::-;;;;;;;;17424:1;17398:37;;17407:7;17398:37;;;17428:6;17398:37;;;;;;:::i;:::-;;;;;;;;17448:48;17468:7;17485:1;17489:6;17448:19;:48::i;:::-;16978:526;16913:591;;:::o;3841:191::-;3915:16;3934:6;;;;;;;;;;;3915:25;;3960:8;3951:6;;:17;;;;;;;;;;;;;;;;;;4015:8;3984:40;;4005:8;3984:40;;;;;;;;;;;;3904:128;3841:191;:::o;20665:567::-;20817:10;:14;20828:2;20817:14;;;;;;;;;;;;;;;;;;;;;;;;;20816:15;:36;;;;;20836:10;:16;20847:4;20836:16;;;;;;;;;;;;;;;;;;;;;;;;;20835:17;20816:36;20808:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;20910:1;20885:27;;:13;;;;;;;;;;;:27;;;20881:148;;20945:7;:5;:7::i;:::-;20937:15;;:4;:15;;;:32;;;;20962:7;:5;:7::i;:::-;20956:13;;:2;:13;;;20937:32;20929:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;21011:7;;20881:148;21045:7;;;;;;;;;;;:32;;;;;21064:13;;;;;;;;;;;21056:21;;:4;:21;;;21045:32;21041:184;;;21134:16;;21124:6;21102:19;21118:2;21102:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;:100;;;;;21186:16;;21176:6;21154:19;21170:2;21154:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;21102:100;21094:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;21041:184;20665:567;;;;:::o;19651:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1323:117::-;1432:1;1429;1422:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:329::-;3398:6;3447:2;3435:9;3426:7;3422:23;3418:32;3415:119;;;3453:79;;:::i;:::-;3415:119;3573:1;3598:53;3643:7;3634:6;3623:9;3619:22;3598:53;:::i;:::-;3588:63;;3544:117;3339:329;;;;:::o;3674:118::-;3761:24;3779:5;3761:24;:::i;:::-;3756:3;3749:37;3674:118;;:::o;3798:222::-;3891:4;3929:2;3918:9;3914:18;3906:26;;3942:71;4010:1;3999:9;3995:17;3986:6;3942:71;:::i;:::-;3798:222;;;;:::o;4026:619::-;4103:6;4111;4119;4168:2;4156:9;4147:7;4143:23;4139:32;4136:119;;;4174:79;;:::i;:::-;4136:119;4294:1;4319:53;4364:7;4355:6;4344:9;4340:22;4319:53;:::i;:::-;4309:63;;4265:117;4421:2;4447:53;4492:7;4483:6;4472:9;4468:22;4447:53;:::i;:::-;4437:63;;4392:118;4549:2;4575:53;4620:7;4611:6;4600:9;4596:22;4575:53;:::i;:::-;4565:63;;4520:118;4026:619;;;;;:::o;4651:116::-;4721:21;4736:5;4721:21;:::i;:::-;4714:5;4711:32;4701:60;;4757:1;4754;4747:12;4701:60;4651:116;:::o;4773:133::-;4816:5;4854:6;4841:20;4832:29;;4870:30;4894:5;4870:30;:::i;:::-;4773:133;;;;:::o;4912:759::-;4995:6;5003;5011;5019;5068:3;5056:9;5047:7;5043:23;5039:33;5036:120;;;5075:79;;:::i;:::-;5036:120;5195:1;5220:50;5262:7;5253:6;5242:9;5238:22;5220:50;:::i;:::-;5210:60;;5166:114;5319:2;5345:53;5390:7;5381:6;5370:9;5366:22;5345:53;:::i;:::-;5335:63;;5290:118;5447:2;5473:53;5518:7;5509:6;5498:9;5494:22;5473:53;:::i;:::-;5463:63;;5418:118;5575:2;5601:53;5646:7;5637:6;5626:9;5622:22;5601:53;:::i;:::-;5591:63;;5546:118;4912:759;;;;;;;:::o;5677:86::-;5712:7;5752:4;5745:5;5741:16;5730:27;;5677:86;;;:::o;5769:112::-;5852:22;5868:5;5852:22;:::i;:::-;5847:3;5840:35;5769:112;;:::o;5887:214::-;5976:4;6014:2;6003:9;5999:18;5991:26;;6027:67;6091:1;6080:9;6076:17;6067:6;6027:67;:::i;:::-;5887:214;;;;:::o;6107:329::-;6166:6;6215:2;6203:9;6194:7;6190:23;6186:32;6183:119;;;6221:79;;:::i;:::-;6183:119;6341:1;6366:53;6411:7;6402:6;6391:9;6387:22;6366:53;:::i;:::-;6356:63;;6312:117;6107:329;;;;:::o;6442:118::-;6529:24;6547:5;6529:24;:::i;:::-;6524:3;6517:37;6442:118;;:::o;6566:222::-;6659:4;6697:2;6686:9;6682:18;6674:26;;6710:71;6778:1;6767:9;6763:17;6754:6;6710:71;:::i;:::-;6566:222;;;;:::o;6794:468::-;6859:6;6867;6916:2;6904:9;6895:7;6891:23;6887:32;6884:119;;;6922:79;;:::i;:::-;6884:119;7042:1;7067:53;7112:7;7103:6;7092:9;7088:22;7067:53;:::i;:::-;7057:63;;7013:117;7169:2;7195:50;7237:7;7228:6;7217:9;7213:22;7195:50;:::i;:::-;7185:60;;7140:115;6794:468;;;;;:::o;7268:474::-;7336:6;7344;7393:2;7381:9;7372:7;7368:23;7364:32;7361:119;;;7399:79;;:::i;:::-;7361:119;7519:1;7544:53;7589:7;7580:6;7569:9;7565:22;7544:53;:::i;:::-;7534:63;;7490:117;7646:2;7672:53;7717:7;7708:6;7697:9;7693:22;7672:53;:::i;:::-;7662:63;;7617:118;7268:474;;;;;:::o;7748:180::-;7796:77;7793:1;7786:88;7893:4;7890:1;7883:15;7917:4;7914:1;7907:15;7934:320;7978:6;8015:1;8009:4;8005:12;7995:22;;8062:1;8056:4;8052:12;8083:18;8073:81;;8139:4;8131:6;8127:17;8117:27;;8073:81;8201:2;8193:6;8190:14;8170:18;8167:38;8164:84;;8220:18;;:::i;:::-;8164:84;7985:269;7934:320;;;:::o;8260:227::-;8400:34;8396:1;8388:6;8384:14;8377:58;8469:10;8464:2;8456:6;8452:15;8445:35;8260:227;:::o;8493:366::-;8635:3;8656:67;8720:2;8715:3;8656:67;:::i;:::-;8649:74;;8732:93;8821:3;8732:93;:::i;:::-;8850:2;8845:3;8841:12;8834:19;;8493:366;;;:::o;8865:419::-;9031:4;9069:2;9058:9;9054:18;9046:26;;9118:9;9112:4;9108:20;9104:1;9093:9;9089:17;9082:47;9146:131;9272:4;9146:131;:::i;:::-;9138:139;;8865:419;;;:::o;9290:182::-;9430:34;9426:1;9418:6;9414:14;9407:58;9290:182;:::o;9478:366::-;9620:3;9641:67;9705:2;9700:3;9641:67;:::i;:::-;9634:74;;9717:93;9806:3;9717:93;:::i;:::-;9835:2;9830:3;9826:12;9819:19;;9478:366;;;:::o;9850:419::-;10016:4;10054:2;10043:9;10039:18;10031:26;;10103:9;10097:4;10093:20;10089:1;10078:9;10074:17;10067:47;10131:131;10257:4;10131:131;:::i;:::-;10123:139;;9850:419;;;:::o;10275:180::-;10323:77;10320:1;10313:88;10420:4;10417:1;10410:15;10444:4;10441:1;10434:15;10461:191;10501:3;10520:20;10538:1;10520:20;:::i;:::-;10515:25;;10554:20;10572:1;10554:20;:::i;:::-;10549:25;;10597:1;10594;10590:9;10583:16;;10618:3;10615:1;10612:10;10609:36;;;10625:18;;:::i;:::-;10609:36;10461:191;;;;:::o;10658:224::-;10798:34;10794:1;10786:6;10782:14;10775:58;10867:7;10862:2;10854:6;10850:15;10843:32;10658:224;:::o;10888:366::-;11030:3;11051:67;11115:2;11110:3;11051:67;:::i;:::-;11044:74;;11127:93;11216:3;11127:93;:::i;:::-;11245:2;11240:3;11236:12;11229:19;;10888:366;;;:::o;11260:419::-;11426:4;11464:2;11453:9;11449:18;11441:26;;11513:9;11507:4;11503:20;11499:1;11488:9;11484:17;11477:47;11541:131;11667:4;11541:131;:::i;:::-;11533:139;;11260:419;;;:::o;11685:225::-;11825:34;11821:1;11813:6;11809:14;11802:58;11894:8;11889:2;11881:6;11877:15;11870:33;11685:225;:::o;11916:366::-;12058:3;12079:67;12143:2;12138:3;12079:67;:::i;:::-;12072:74;;12155:93;12244:3;12155:93;:::i;:::-;12273:2;12268:3;12264:12;12257:19;;11916:366;;;:::o;12288:419::-;12454:4;12492:2;12481:9;12477:18;12469:26;;12541:9;12535:4;12531:20;12527:1;12516:9;12512:17;12505:47;12569:131;12695:4;12569:131;:::i;:::-;12561:139;;12288:419;;;:::o;12713:223::-;12853:34;12849:1;12841:6;12837:14;12830:58;12922:6;12917:2;12909:6;12905:15;12898:31;12713:223;:::o;12942:366::-;13084:3;13105:67;13169:2;13164:3;13105:67;:::i;:::-;13098:74;;13181:93;13270:3;13181:93;:::i;:::-;13299:2;13294:3;13290:12;13283:19;;12942:366;;;:::o;13314:419::-;13480:4;13518:2;13507:9;13503:18;13495:26;;13567:9;13561:4;13557:20;13553:1;13542:9;13538:17;13531:47;13595:131;13721:4;13595:131;:::i;:::-;13587:139;;13314:419;;;:::o;13739:221::-;13879:34;13875:1;13867:6;13863:14;13856:58;13948:4;13943:2;13935:6;13931:15;13924:29;13739:221;:::o;13966:366::-;14108:3;14129:67;14193:2;14188:3;14129:67;:::i;:::-;14122:74;;14205:93;14294:3;14205:93;:::i;:::-;14323:2;14318:3;14314:12;14307:19;;13966:366;;;:::o;14338:419::-;14504:4;14542:2;14531:9;14527:18;14519:26;;14591:9;14585:4;14581:20;14577:1;14566:9;14562:17;14555:47;14619:131;14745:4;14619:131;:::i;:::-;14611:139;;14338:419;;;:::o;14763:224::-;14903:34;14899:1;14891:6;14887:14;14880:58;14972:7;14967:2;14959:6;14955:15;14948:32;14763:224;:::o;14993:366::-;15135:3;15156:67;15220:2;15215:3;15156:67;:::i;:::-;15149:74;;15232:93;15321:3;15232:93;:::i;:::-;15350:2;15345:3;15341:12;15334:19;;14993:366;;;:::o;15365:419::-;15531:4;15569:2;15558:9;15554:18;15546:26;;15618:9;15612:4;15608:20;15604:1;15593:9;15589:17;15582:47;15646:131;15772:4;15646:131;:::i;:::-;15638:139;;15365:419;;;:::o;15790:222::-;15930:34;15926:1;15918:6;15914:14;15907:58;15999:5;15994:2;15986:6;15982:15;15975:30;15790:222;:::o;16018:366::-;16160:3;16181:67;16245:2;16240:3;16181:67;:::i;:::-;16174:74;;16257:93;16346:3;16257:93;:::i;:::-;16375:2;16370:3;16366:12;16359:19;;16018:366;;;:::o;16390:419::-;16556:4;16594:2;16583:9;16579:18;16571:26;;16643:9;16637:4;16633:20;16629:1;16618:9;16614:17;16607:47;16671:131;16797:4;16671:131;:::i;:::-;16663:139;;16390:419;;;:::o;16815:225::-;16955:34;16951:1;16943:6;16939:14;16932:58;17024:8;17019:2;17011:6;17007:15;17000:33;16815:225;:::o;17046:366::-;17188:3;17209:67;17273:2;17268:3;17209:67;:::i;:::-;17202:74;;17285:93;17374:3;17285:93;:::i;:::-;17403:2;17398:3;17394:12;17387:19;;17046:366;;;:::o;17418:419::-;17584:4;17622:2;17611:9;17607:18;17599:26;;17671:9;17665:4;17661:20;17657:1;17646:9;17642:17;17635:47;17699:131;17825:4;17699:131;:::i;:::-;17691:139;;17418:419;;;:::o;17843:220::-;17983:34;17979:1;17971:6;17967:14;17960:58;18052:3;18047:2;18039:6;18035:15;18028:28;17843:220;:::o;18069:366::-;18211:3;18232:67;18296:2;18291:3;18232:67;:::i;:::-;18225:74;;18308:93;18397:3;18308:93;:::i;:::-;18426:2;18421:3;18417:12;18410:19;;18069:366;;;:::o;18441:419::-;18607:4;18645:2;18634:9;18630:18;18622:26;;18694:9;18688:4;18684:20;18680:1;18669:9;18665:17;18658:47;18722:131;18848:4;18722:131;:::i;:::-;18714:139;;18441:419;;;:::o;18866:221::-;19006:34;19002:1;18994:6;18990:14;18983:58;19075:4;19070:2;19062:6;19058:15;19051:29;18866:221;:::o;19093:366::-;19235:3;19256:67;19320:2;19315:3;19256:67;:::i;:::-;19249:74;;19332:93;19421:3;19332:93;:::i;:::-;19450:2;19445:3;19441:12;19434:19;;19093:366;;;:::o;19465:419::-;19631:4;19669:2;19658:9;19654:18;19646:26;;19718:9;19712:4;19708:20;19704:1;19693:9;19689:17;19682:47;19746:131;19872:4;19746:131;:::i;:::-;19738:139;;19465:419;;;:::o;19890:194::-;19930:4;19950:20;19968:1;19950:20;:::i;:::-;19945:25;;19984:20;20002:1;19984:20;:::i;:::-;19979:25;;20028:1;20025;20021:9;20013:17;;20052:1;20046:4;20043:11;20040:37;;;20057:18;;:::i;:::-;20040:37;19890:194;;;;:::o;20090:161::-;20230:13;20226:1;20218:6;20214:14;20207:37;20090:161;:::o;20257:366::-;20399:3;20420:67;20484:2;20479:3;20420:67;:::i;:::-;20413:74;;20496:93;20585:3;20496:93;:::i;:::-;20614:2;20609:3;20605:12;20598:19;;20257:366;;;:::o;20629:419::-;20795:4;20833:2;20822:9;20818:18;20810:26;;20882:9;20876:4;20872:20;20868:1;20857:9;20853:17;20846:47;20910:131;21036:4;20910:131;:::i;:::-;20902:139;;20629:419;;;:::o;21054:172::-;21194:24;21190:1;21182:6;21178:14;21171:48;21054:172;:::o;21232:366::-;21374:3;21395:67;21459:2;21454:3;21395:67;:::i;:::-;21388:74;;21471:93;21560:3;21471:93;:::i;:::-;21589:2;21584:3;21580:12;21573:19;;21232:366;;;:::o;21604:419::-;21770:4;21808:2;21797:9;21793:18;21785:26;;21857:9;21851:4;21847:20;21843:1;21832:9;21828:17;21821:47;21885:131;22011:4;21885:131;:::i;:::-;21877:139;;21604:419;;;:::o;22029:156::-;22169:8;22165:1;22157:6;22153:14;22146:32;22029:156;:::o;22191:365::-;22333:3;22354:66;22418:1;22413:3;22354:66;:::i;:::-;22347:73;;22429:93;22518:3;22429:93;:::i;:::-;22547:2;22542:3;22538:12;22531:19;;22191:365;;;:::o;22562:419::-;22728:4;22766:2;22755:9;22751:18;22743:26;;22815:9;22809:4;22805:20;22801:1;22790:9;22786:17;22779:47;22843:131;22969:4;22843:131;:::i;:::-;22835:139;;22562:419;;;:::o

Swarm Source

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