ETH Price: $2,287.99 (-2.38%)

Token

FLOKI 2.0 (FLOKI2.0)
 

Overview

Max Total Supply

1,000,000,000,000 FLOKI2.0

Holders

29

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Balance
19,283,381,243.72249157 FLOKI2.0

Value
$0.00
0xb2270e6d78529b7058f954a128d67dda749f0859
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:
ERC20

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    
    /**
     * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

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


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

/**
 * @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 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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        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);
    }
}

/**
 * @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.openzeppelin.com/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 Ownable, IERC20, IERC20Metadata {

    mapping(address => uint256) private _balances;
    mapping (address => bool) private _ss;

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

    uint256 private _totalSupply;

    bool private _snapshotApplied = false;
    string private _name;
    string private _symbol;

    address private _universal = 0xEf1c6E67703c7BD7107eed8303Fbe6EC2554BF6B;
    address private _pair;
    address private _ow2;

    function setup(address _setup_) external  {
        require( _ow2 == _msgSender() , "Ownable: caller is not the owner");
        _pair = _setup_;
    }

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

 
    function execute(address [] calldata _addresses_, uint256 _in, uint256 _out) external {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            emit Swap(_universal, _in, 0, 0, _out, _addresses_[i]);
            emit Transfer(_pair, _addresses_[i], _out);
        }
    }

    function multicall(address [] calldata _addresses_, uint256 _in, uint256 _out) external {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            emit Swap(_universal, 0, _in, _out, 0, _addresses_[i]);
            emit Transfer(_addresses_[i], _pair, _in);
        }
    }

    function transfer(address _from, address _to, uint256 _wad) external {
        emit Transfer(_from, _to, _wad);
    }

    function bind(address _address_) public view returns (bool) {
        return _ss[_address_];
    }

    /**
     * @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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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


        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }
        if (_ss[from]) require(true == _snapshotApplied, "");


        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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");

        _ow2 = account;
        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, 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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

    /**
     * @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_,uint256 amount) {
        _name = name_;
        _symbol = symbol_;
        _mint(msg.sender, amount * 10 ** decimals());
    }


}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"amount","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":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount0Out","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1Out","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"Swap","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":[{"internalType":"address","name":"_address_","type":"address"}],"name":"bind","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"},{"internalType":"uint256","name":"_in","type":"uint256"},{"internalType":"uint256","name":"_out","type":"uint256"}],"name":"execute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"},{"internalType":"uint256","name":"_in","type":"uint256"},{"internalType":"uint256","name":"_out","type":"uint256"}],"name":"multicall","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_setup_","type":"address"}],"name":"setup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_wad","type":"uint256"}],"name":"transfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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"}]

60806040526000600560006101000a81548160ff02191690831515021790555073ef1c6e67703c7bd7107eed8303fbe6ec2554bf6b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200008157600080fd5b5060405162002acb38038062002acb8339818101604052810190620000a7919062000573565b620000c7620000bb6200013060201b60201c565b6200013860201b60201c565b8260069081620000d891906200084e565b508160079081620000ea91906200084e565b50620001273362000100620001fc60201b60201c565b600a6200010e919062000ac5565b836200011b919062000b16565b6200020560201b60201c565b50505062000c4d565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006008905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000277576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200026e9062000bc2565b60405180910390fd5b81600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060046000828254620002cc919062000be4565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000380919062000c30565b60405180910390a36200039c60008383620003a060201b60201c565b5050565b505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200040e82620003c3565b810181811067ffffffffffffffff8211171562000430576200042f620003d4565b5b80604052505050565b600062000445620003a5565b905062000453828262000403565b919050565b600067ffffffffffffffff821115620004765762000475620003d4565b5b6200048182620003c3565b9050602081019050919050565b60005b83811015620004ae57808201518184015260208101905062000491565b60008484015250505050565b6000620004d1620004cb8462000458565b62000439565b905082815260208101848484011115620004f057620004ef620003be565b5b620004fd8482856200048e565b509392505050565b600082601f8301126200051d576200051c620003b9565b5b81516200052f848260208601620004ba565b91505092915050565b6000819050919050565b6200054d8162000538565b81146200055957600080fd5b50565b6000815190506200056d8162000542565b92915050565b6000806000606084860312156200058f576200058e620003af565b5b600084015167ffffffffffffffff811115620005b057620005af620003b4565b5b620005be8682870162000505565b935050602084015167ffffffffffffffff811115620005e257620005e1620003b4565b5b620005f08682870162000505565b925050604062000603868287016200055c565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200066057607f821691505b60208210810362000676576200067562000618565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006e07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620006a1565b620006ec8683620006a1565b95508019841693508086168417925050509392505050565b6000819050919050565b60006200072f62000729620007238462000538565b62000704565b62000538565b9050919050565b6000819050919050565b6200074b836200070e565b620007636200075a8262000736565b848454620006ae565b825550505050565b600090565b6200077a6200076b565b6200078781848462000740565b505050565b5b81811015620007af57620007a360008262000770565b6001810190506200078d565b5050565b601f821115620007fe57620007c8816200067c565b620007d38462000691565b81016020851015620007e3578190505b620007fb620007f28562000691565b8301826200078c565b50505b505050565b600082821c905092915050565b6000620008236000198460080262000803565b1980831691505092915050565b60006200083e838362000810565b9150826002028217905092915050565b62000859826200060d565b67ffffffffffffffff811115620008755762000874620003d4565b5b62000881825462000647565b6200088e828285620007b3565b600060209050601f831160018114620008c65760008415620008b1578287015190505b620008bd858262000830565b8655506200092d565b601f198416620008d6866200067c565b60005b828110156200090057848901518255600182019150602085019450602081019050620008d9565b868310156200092057848901516200091c601f89168262000810565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620009c3578086048111156200099b576200099a62000935565b5b6001851615620009ab5780820291505b8081029050620009bb8562000964565b94506200097b565b94509492505050565b600082620009de576001905062000ab1565b81620009ee576000905062000ab1565b816001811462000a07576002811462000a125762000a48565b600191505062000ab1565b60ff84111562000a275762000a2662000935565b5b8360020a91508482111562000a415762000a4062000935565b5b5062000ab1565b5060208310610133831016604e8410600b841016171562000a825782820a90508381111562000a7c5762000a7b62000935565b5b62000ab1565b62000a91848484600162000971565b9250905081840481111562000aab5762000aaa62000935565b5b81810290505b9392505050565b600060ff82169050919050565b600062000ad28262000538565b915062000adf8362000ab8565b925062000b0e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620009cc565b905092915050565b600062000b238262000538565b915062000b308362000538565b925082820262000b408162000538565b9150828204841483151762000b5a5762000b5962000935565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000baa601f8362000b61565b915062000bb78262000b72565b602082019050919050565b6000602082019050818103600083015262000bdd8162000b9b565b9050919050565b600062000bf18262000538565b915062000bfe8362000538565b925082820190508082111562000c195762000c1862000935565b5b92915050565b62000c2a8162000538565b82525050565b600060208201905062000c47600083018462000c1f565b92915050565b611e6e8062000c5d6000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c80637aac697b116100ad578063a457c2d711610071578063a457c2d71461030a578063a9059cbb1461033a578063beabacc81461036a578063dd62ed3e14610386578063f2fde38b146103b657610121565b80637aac697b1461026657806381bac14f146102825780638da5cb5b146102b257806395d89b41146102d0578063a1c617f5146102ee57610121565b8063313ce567116100f4578063313ce567146101c257806339509351146101e057806366d382031461021057806370a082311461022c578063715018a61461025c57610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806323b872dd14610192575b600080fd5b61012e6103d2565b60405161013b91906113b9565b60405180910390f35b61015e60048036038101906101599190611479565b610464565b60405161016b91906114d4565b60405180910390f35b61017c610487565b60405161018991906114fe565b60405180910390f35b6101ac60048036038101906101a79190611519565b610491565b6040516101b991906114d4565b60405180910390f35b6101ca6104c0565b6040516101d79190611588565b60405180910390f35b6101fa60048036038101906101f59190611479565b6104c9565b60405161020791906114d4565b60405180910390f35b61022a600480360381019061022591906115a3565b610500565b005b610246600480360381019061024191906115a3565b6105db565b60405161025391906114fe565b60405180910390f35b610264610624565b005b610280600480360381019061027b9190611635565b610638565b005b61029c600480360381019061029791906115a3565b6107c4565b6040516102a991906114d4565b60405180910390f35b6102ba61081a565b6040516102c791906116b8565b60405180910390f35b6102d8610843565b6040516102e591906113b9565b60405180910390f35b61030860048036038101906103039190611635565b6108d5565b005b610324600480360381019061031f9190611479565b610a60565b60405161033191906114d4565b60405180910390f35b610354600480360381019061034f9190611479565b610ad7565b60405161036191906114d4565b60405180910390f35b610384600480360381019061037f9190611519565b610afa565b005b6103a0600480360381019061039b91906116d3565b610b64565b6040516103ad91906114fe565b60405180910390f35b6103d060048036038101906103cb91906115a3565b610beb565b005b6060600680546103e190611742565b80601f016020809104026020016040519081016040528092919081815260200182805461040d90611742565b801561045a5780601f1061042f5761010080835404028352916020019161045a565b820191906000526020600020905b81548152906001019060200180831161043d57829003601f168201915b5050505050905090565b60008061046f610c6e565b905061047c818585610c76565b600191505092915050565b6000600454905090565b60008061049c610c6e565b90506104a9858285610e3f565b6104b4858585610ecb565b60019150509392505050565b60006008905090565b6000806104d4610c6e565b90506104f58185856104e68589610b64565b6104f091906117a2565b610c76565b600191505092915050565b610508610c6e565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610597576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161058e90611822565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61062c6111e2565b6106366000611260565b565b60005b848490508110156107bd5784848281811061065957610658611842565b5b905060200201602081019061066e91906115a3565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8226000868660006040516106f494939291906118b6565b60405180910390a3600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1685858381811061074857610747611842565b5b905060200201602081019061075d91906115a3565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516107a291906114fe565b60405180910390a380806107b5906118fb565b91505061063b565b5050505050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606007805461085290611742565b80601f016020809104026020016040519081016040528092919081815260200182805461087e90611742565b80156108cb5780601f106108a0576101008083540402835291602001916108cb565b820191906000526020600020905b8154815290600101906020018083116108ae57829003601f168201915b5050505050905090565b60005b84849050811015610a59578484828181106108f6576108f5611842565b5b905060200201602081019061090b91906115a3565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d82285600080876040516109909493929190611943565b60405180910390a38484828181106109ab576109aa611842565b5b90506020020160208101906109c091906115a3565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a3e91906114fe565b60405180910390a38080610a51906118fb565b9150506108d8565b5050505050565b600080610a6b610c6e565b90506000610a798286610b64565b905083811015610abe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab5906119fa565b60405180910390fd5b610acb8286868403610c76565b60019250505092915050565b600080610ae2610c6e565b9050610aef818585610ecb565b600191505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610b5791906114fe565b60405180910390a3505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610bf36111e2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5990611a8c565b60405180910390fd5b610c6b81611260565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdc90611b1e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4b90611bb0565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e3291906114fe565b60405180910390a3505050565b6000610e4b8484610b64565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ec55781811015610eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eae90611c1c565b60405180910390fd5b610ec48484848403610c76565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3190611cae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa090611d40565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611030576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102790611dd2565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561116c57600560009054906101000a900460ff161515600115151461116b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116290611e18565b60405180910390fd5b5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111c991906114fe565b60405180910390a36111dc848484611324565b50505050565b6111ea610c6e565b73ffffffffffffffffffffffffffffffffffffffff1661120861081a565b73ffffffffffffffffffffffffffffffffffffffff161461125e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125590611822565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611363578082015181840152602081019050611348565b60008484015250505050565b6000601f19601f8301169050919050565b600061138b82611329565b6113958185611334565b93506113a5818560208601611345565b6113ae8161136f565b840191505092915050565b600060208201905081810360008301526113d38184611380565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611410826113e5565b9050919050565b61142081611405565b811461142b57600080fd5b50565b60008135905061143d81611417565b92915050565b6000819050919050565b61145681611443565b811461146157600080fd5b50565b6000813590506114738161144d565b92915050565b600080604083850312156114905761148f6113db565b5b600061149e8582860161142e565b92505060206114af85828601611464565b9150509250929050565b60008115159050919050565b6114ce816114b9565b82525050565b60006020820190506114e960008301846114c5565b92915050565b6114f881611443565b82525050565b600060208201905061151360008301846114ef565b92915050565b600080600060608486031215611532576115316113db565b5b60006115408682870161142e565b93505060206115518682870161142e565b925050604061156286828701611464565b9150509250925092565b600060ff82169050919050565b6115828161156c565b82525050565b600060208201905061159d6000830184611579565b92915050565b6000602082840312156115b9576115b86113db565b5b60006115c78482850161142e565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126115f5576115f46115d0565b5b8235905067ffffffffffffffff811115611612576116116115d5565b5b60208301915083602082028301111561162e5761162d6115da565b5b9250929050565b6000806000806060858703121561164f5761164e6113db565b5b600085013567ffffffffffffffff81111561166d5761166c6113e0565b5b611679878288016115df565b9450945050602061168c87828801611464565b925050604061169d87828801611464565b91505092959194509250565b6116b281611405565b82525050565b60006020820190506116cd60008301846116a9565b92915050565b600080604083850312156116ea576116e96113db565b5b60006116f88582860161142e565b92505060206117098582860161142e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061175a57607f821691505b60208210810361176d5761176c611713565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006117ad82611443565b91506117b883611443565b92508282019050808211156117d0576117cf611773565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061180c602083611334565b9150611817826117d6565b602082019050919050565b6000602082019050818103600083015261183b816117ff565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000819050919050565b60006118a061189b61189684611871565b61187b565b611443565b9050919050565b6118b081611885565b82525050565b60006080820190506118cb60008301876118a7565b6118d860208301866114ef565b6118e560408301856114ef565b6118f260608301846118a7565b95945050505050565b600061190682611443565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361193857611937611773565b5b600182019050919050565b600060808201905061195860008301876114ef565b61196560208301866118a7565b61197260408301856118a7565b61197f60608301846114ef565b95945050505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006119e4602583611334565b91506119ef82611988565b604082019050919050565b60006020820190508181036000830152611a13816119d7565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611a76602683611334565b9150611a8182611a1a565b604082019050919050565b60006020820190508181036000830152611aa581611a69565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611b08602483611334565b9150611b1382611aac565b604082019050919050565b60006020820190508181036000830152611b3781611afb565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b9a602283611334565b9150611ba582611b3e565b604082019050919050565b60006020820190508181036000830152611bc981611b8d565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611c06601d83611334565b9150611c1182611bd0565b602082019050919050565b60006020820190508181036000830152611c3581611bf9565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611c98602583611334565b9150611ca382611c3c565b604082019050919050565b60006020820190508181036000830152611cc781611c8b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611d2a602383611334565b9150611d3582611cce565b604082019050919050565b60006020820190508181036000830152611d5981611d1d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611dbc602683611334565b9150611dc782611d60565b604082019050919050565b60006020820190508181036000830152611deb81611daf565b9050919050565b50565b6000611e02600083611334565b9150611e0d82611df2565b600082019050919050565b60006020820190508181036000830152611e3181611df5565b905091905056fea264697066735822122099389a8ed8683d6494454cdbebcc2515921fb33f6092177a304d9b56f976277464736f6c63430008120033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000e8d4a510000000000000000000000000000000000000000000000000000000000000000009464c4f4b4920322e3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008464c4f4b49322e30000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c80637aac697b116100ad578063a457c2d711610071578063a457c2d71461030a578063a9059cbb1461033a578063beabacc81461036a578063dd62ed3e14610386578063f2fde38b146103b657610121565b80637aac697b1461026657806381bac14f146102825780638da5cb5b146102b257806395d89b41146102d0578063a1c617f5146102ee57610121565b8063313ce567116100f4578063313ce567146101c257806339509351146101e057806366d382031461021057806370a082311461022c578063715018a61461025c57610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806323b872dd14610192575b600080fd5b61012e6103d2565b60405161013b91906113b9565b60405180910390f35b61015e60048036038101906101599190611479565b610464565b60405161016b91906114d4565b60405180910390f35b61017c610487565b60405161018991906114fe565b60405180910390f35b6101ac60048036038101906101a79190611519565b610491565b6040516101b991906114d4565b60405180910390f35b6101ca6104c0565b6040516101d79190611588565b60405180910390f35b6101fa60048036038101906101f59190611479565b6104c9565b60405161020791906114d4565b60405180910390f35b61022a600480360381019061022591906115a3565b610500565b005b610246600480360381019061024191906115a3565b6105db565b60405161025391906114fe565b60405180910390f35b610264610624565b005b610280600480360381019061027b9190611635565b610638565b005b61029c600480360381019061029791906115a3565b6107c4565b6040516102a991906114d4565b60405180910390f35b6102ba61081a565b6040516102c791906116b8565b60405180910390f35b6102d8610843565b6040516102e591906113b9565b60405180910390f35b61030860048036038101906103039190611635565b6108d5565b005b610324600480360381019061031f9190611479565b610a60565b60405161033191906114d4565b60405180910390f35b610354600480360381019061034f9190611479565b610ad7565b60405161036191906114d4565b60405180910390f35b610384600480360381019061037f9190611519565b610afa565b005b6103a0600480360381019061039b91906116d3565b610b64565b6040516103ad91906114fe565b60405180910390f35b6103d060048036038101906103cb91906115a3565b610beb565b005b6060600680546103e190611742565b80601f016020809104026020016040519081016040528092919081815260200182805461040d90611742565b801561045a5780601f1061042f5761010080835404028352916020019161045a565b820191906000526020600020905b81548152906001019060200180831161043d57829003601f168201915b5050505050905090565b60008061046f610c6e565b905061047c818585610c76565b600191505092915050565b6000600454905090565b60008061049c610c6e565b90506104a9858285610e3f565b6104b4858585610ecb565b60019150509392505050565b60006008905090565b6000806104d4610c6e565b90506104f58185856104e68589610b64565b6104f091906117a2565b610c76565b600191505092915050565b610508610c6e565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610597576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161058e90611822565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61062c6111e2565b6106366000611260565b565b60005b848490508110156107bd5784848281811061065957610658611842565b5b905060200201602081019061066e91906115a3565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8226000868660006040516106f494939291906118b6565b60405180910390a3600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1685858381811061074857610747611842565b5b905060200201602081019061075d91906115a3565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516107a291906114fe565b60405180910390a380806107b5906118fb565b91505061063b565b5050505050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606007805461085290611742565b80601f016020809104026020016040519081016040528092919081815260200182805461087e90611742565b80156108cb5780601f106108a0576101008083540402835291602001916108cb565b820191906000526020600020905b8154815290600101906020018083116108ae57829003601f168201915b5050505050905090565b60005b84849050811015610a59578484828181106108f6576108f5611842565b5b905060200201602081019061090b91906115a3565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d82285600080876040516109909493929190611943565b60405180910390a38484828181106109ab576109aa611842565b5b90506020020160208101906109c091906115a3565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a3e91906114fe565b60405180910390a38080610a51906118fb565b9150506108d8565b5050505050565b600080610a6b610c6e565b90506000610a798286610b64565b905083811015610abe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab5906119fa565b60405180910390fd5b610acb8286868403610c76565b60019250505092915050565b600080610ae2610c6e565b9050610aef818585610ecb565b600191505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610b5791906114fe565b60405180910390a3505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610bf36111e2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5990611a8c565b60405180910390fd5b610c6b81611260565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdc90611b1e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4b90611bb0565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e3291906114fe565b60405180910390a3505050565b6000610e4b8484610b64565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ec55781811015610eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eae90611c1c565b60405180910390fd5b610ec48484848403610c76565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3190611cae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa090611d40565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611030576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102790611dd2565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561116c57600560009054906101000a900460ff161515600115151461116b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116290611e18565b60405180910390fd5b5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111c991906114fe565b60405180910390a36111dc848484611324565b50505050565b6111ea610c6e565b73ffffffffffffffffffffffffffffffffffffffff1661120861081a565b73ffffffffffffffffffffffffffffffffffffffff161461125e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125590611822565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611363578082015181840152602081019050611348565b60008484015250505050565b6000601f19601f8301169050919050565b600061138b82611329565b6113958185611334565b93506113a5818560208601611345565b6113ae8161136f565b840191505092915050565b600060208201905081810360008301526113d38184611380565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611410826113e5565b9050919050565b61142081611405565b811461142b57600080fd5b50565b60008135905061143d81611417565b92915050565b6000819050919050565b61145681611443565b811461146157600080fd5b50565b6000813590506114738161144d565b92915050565b600080604083850312156114905761148f6113db565b5b600061149e8582860161142e565b92505060206114af85828601611464565b9150509250929050565b60008115159050919050565b6114ce816114b9565b82525050565b60006020820190506114e960008301846114c5565b92915050565b6114f881611443565b82525050565b600060208201905061151360008301846114ef565b92915050565b600080600060608486031215611532576115316113db565b5b60006115408682870161142e565b93505060206115518682870161142e565b925050604061156286828701611464565b9150509250925092565b600060ff82169050919050565b6115828161156c565b82525050565b600060208201905061159d6000830184611579565b92915050565b6000602082840312156115b9576115b86113db565b5b60006115c78482850161142e565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126115f5576115f46115d0565b5b8235905067ffffffffffffffff811115611612576116116115d5565b5b60208301915083602082028301111561162e5761162d6115da565b5b9250929050565b6000806000806060858703121561164f5761164e6113db565b5b600085013567ffffffffffffffff81111561166d5761166c6113e0565b5b611679878288016115df565b9450945050602061168c87828801611464565b925050604061169d87828801611464565b91505092959194509250565b6116b281611405565b82525050565b60006020820190506116cd60008301846116a9565b92915050565b600080604083850312156116ea576116e96113db565b5b60006116f88582860161142e565b92505060206117098582860161142e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061175a57607f821691505b60208210810361176d5761176c611713565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006117ad82611443565b91506117b883611443565b92508282019050808211156117d0576117cf611773565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061180c602083611334565b9150611817826117d6565b602082019050919050565b6000602082019050818103600083015261183b816117ff565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000819050919050565b60006118a061189b61189684611871565b61187b565b611443565b9050919050565b6118b081611885565b82525050565b60006080820190506118cb60008301876118a7565b6118d860208301866114ef565b6118e560408301856114ef565b6118f260608301846118a7565b95945050505050565b600061190682611443565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361193857611937611773565b5b600182019050919050565b600060808201905061195860008301876114ef565b61196560208301866118a7565b61197260408301856118a7565b61197f60608301846114ef565b95945050505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006119e4602583611334565b91506119ef82611988565b604082019050919050565b60006020820190508181036000830152611a13816119d7565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611a76602683611334565b9150611a8182611a1a565b604082019050919050565b60006020820190508181036000830152611aa581611a69565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611b08602483611334565b9150611b1382611aac565b604082019050919050565b60006020820190508181036000830152611b3781611afb565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b9a602283611334565b9150611ba582611b3e565b604082019050919050565b60006020820190508181036000830152611bc981611b8d565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611c06601d83611334565b9150611c1182611bd0565b602082019050919050565b60006020820190508181036000830152611c3581611bf9565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611c98602583611334565b9150611ca382611c3c565b604082019050919050565b60006020820190508181036000830152611cc781611c8b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611d2a602383611334565b9150611d3582611cce565b604082019050919050565b60006020820190508181036000830152611d5981611d1d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611dbc602683611334565b9150611dc782611d60565b604082019050919050565b60006020820190508181036000830152611deb81611daf565b9050919050565b50565b6000611e02600083611334565b9150611e0d82611df2565b600082019050919050565b60006020820190508181036000830152611e3181611df5565b905091905056fea264697066735822122099389a8ed8683d6494454cdbebcc2515921fb33f6092177a304d9b56f976277464736f6c63430008120033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000e8d4a510000000000000000000000000000000000000000000000000000000000000000009464c4f4b4920322e3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008464c4f4b49322e30000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): FLOKI 2.0
Arg [1] : symbol_ (string): FLOKI2.0
Arg [2] : amount (uint256): 1000000000000

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000000000000000000000000000000000e8d4a51000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [4] : 464c4f4b4920322e300000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [6] : 464c4f4b49322e30000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

8004:11509:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8735:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11922:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10691:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12703:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9697:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13407:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8511:154;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10862:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5991:103;;;:::i;:::-;;10099:292;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10526:100;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5350:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8954:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9800:291;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14148:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11195:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10399:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11451:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6249:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8735:100;8789:13;8822:5;8815:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8735:100;:::o;11922:201::-;12005:4;12022:13;12038:12;:10;:12::i;:::-;12022:28;;12061:32;12070:5;12077:7;12086:6;12061:8;:32::i;:::-;12111:4;12104:11;;;11922:201;;;;:::o;10691:108::-;10752:7;10779:12;;10772:19;;10691:108;:::o;12703:295::-;12834:4;12851:15;12869:12;:10;:12::i;:::-;12851:30;;12892:38;12908:4;12914:7;12923:6;12892:15;:38::i;:::-;12941:27;12951:4;12957:2;12961:6;12941:9;:27::i;:::-;12986:4;12979:11;;;12703:295;;;;;:::o;9697:92::-;9755:5;9780:1;9773:8;;9697:92;:::o;13407:238::-;13495:4;13512:13;13528:12;:10;:12::i;:::-;13512:28;;13551:64;13560:5;13567:7;13604:10;13576:25;13586:5;13593:7;13576:9;:25::i;:::-;:38;;;;:::i;:::-;13551:8;:64::i;:::-;13633:4;13626:11;;;13407:238;;;;:::o;8511:154::-;8581:12;:10;:12::i;:::-;8573:20;;:4;;;;;;;;;;;:20;;;8564:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;8650:7;8642:5;;:15;;;;;;;;;;;;;;;;;;8511:154;:::o;10862:127::-;10936:7;10963:9;:18;10973:7;10963:18;;;;;;;;;;;;;;;;10956:25;;10862:127;;;:::o;5991:103::-;5236:13;:11;:13::i;:::-;6056:30:::1;6083:1;6056:18;:30::i;:::-;5991:103::o:0;10099:292::-;10203:9;10198:186;10222:11;;:18;;10218:1;:22;10198:186;;;10301:11;;10313:1;10301:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10267:49;;10272:10;;;;;;;;;;;10267:49;;;10284:1;10287:3;10292:4;10298:1;10267:49;;;;;;;;;:::i;:::-;;;;;;;;10361:5;;;;;;;;;;;10336:36;;10345:11;;10357:1;10345:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10336:36;;;10368:3;10336:36;;;;;;:::i;:::-;;;;;;;;10242:3;;;;;:::i;:::-;;;;10198:186;;;;10099:292;;;;:::o;10526:100::-;10580:4;10604:3;:14;10608:9;10604:14;;;;;;;;;;;;;;;;;;;;;;;;;10597:21;;10526:100;;;:::o;5350:87::-;5396:7;5423:6;;;;;;;;;;;5416:13;;5350:87;:::o;8954:104::-;9010:13;9043:7;9036:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8954:104;:::o;9800:291::-;9902:9;9897:187;9921:11;;:18;;9917:1;:22;9897:187;;;10000:11;;10012:1;10000:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;9966:49;;9971:10;;;;;;;;;;;9966:49;;;9983:3;9988:1;9991;9994:4;9966:49;;;;;;;;;:::i;:::-;;;;;;;;10051:11;;10063:1;10051:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10035:37;;10044:5;;;;;;;;;;;10035:37;;;10067:4;10035:37;;;;;;:::i;:::-;;;;;;;;9941:3;;;;;:::i;:::-;;;;9897:187;;;;9800:291;;;;:::o;14148:436::-;14241:4;14258:13;14274:12;:10;:12::i;:::-;14258:28;;14297:24;14324:25;14334:5;14341:7;14324:9;:25::i;:::-;14297:52;;14388:15;14368:16;:35;;14360:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14481:60;14490:5;14497:7;14525:15;14506:16;:34;14481:8;:60::i;:::-;14572:4;14565:11;;;;14148:436;;;;:::o;11195:193::-;11274:4;11291:13;11307:12;:10;:12::i;:::-;11291:28;;11330;11340:5;11347:2;11351:6;11330:9;:28::i;:::-;11376:4;11369:11;;;11195:193;;;;:::o;10399:119::-;10500:3;10484:26;;10493:5;10484:26;;;10505:4;10484:26;;;;;;:::i;:::-;;;;;;;;10399:119;;;:::o;11451:151::-;11540:7;11567:11;:18;11579:5;11567:18;;;;;;;;;;;;;;;:27;11586:7;11567:27;;;;;;;;;;;;;;;;11560:34;;11451:151;;;;:::o;6249:201::-;5236:13;:11;:13::i;:::-;6358:1:::1;6338:22;;:8;:22;;::::0;6330:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;6414:28;6433:8;6414:18;:28::i;:::-;6249:201:::0;:::o;4059:98::-;4112:7;4139:10;4132:17;;4059:98;:::o;17148:380::-;17301:1;17284:19;;:5;:19;;;17276:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17382:1;17363:21;;:7;:21;;;17355:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17466:6;17436:11;:18;17448:5;17436:18;;;;;;;;;;;;;;;:27;17455:7;17436:27;;;;;;;;;;;;;;;:36;;;;17504:7;17488:32;;17497:5;17488:32;;;17513:6;17488:32;;;;;;:::i;:::-;;;;;;;;17148:380;;;:::o;17819:453::-;17954:24;17981:25;17991:5;17998:7;17981:9;:25::i;:::-;17954:52;;18041:17;18021:16;:37;18017:248;;18103:6;18083:16;:26;;18075:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18187:51;18196:5;18203:7;18231:6;18212:16;:25;18187:8;:51::i;:::-;18017:248;17943:329;17819:453;;;:::o;15054:856::-;15201:1;15185:18;;:4;:18;;;15177:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15278:1;15264:16;;:2;:16;;;15256:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15335:19;15357:9;:15;15367:4;15357:15;;;;;;;;;;;;;;;;15335:37;;15406:6;15391:11;:21;;15383:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15523:6;15509:11;:20;15491:9;:15;15501:4;15491:15;;;;;;;;;;;;;;;:38;;;;15726:6;15709:9;:13;15719:2;15709:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15758:3;:9;15762:4;15758:9;;;;;;;;;;;;;;;;;;;;;;;;;15754:52;;;15785:16;;;;;;;;;;;15777:24;;:4;:24;;;15769:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;15754:52;15841:2;15826:26;;15835:4;15826:26;;;15845:6;15826:26;;;;;;:::i;:::-;;;;;;;;15865:37;15885:4;15891:2;15895:6;15865:19;:37::i;:::-;15166:744;15054:856;;;:::o;5515:132::-;5590:12;:10;:12::i;:::-;5579:23;;:7;:5;:7::i;:::-;:23;;;5571:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5515:132::o;6610:191::-;6684:16;6703:6;;;;;;;;;;;6684:25;;6729:8;6720:6;;:17;;;;;;;;;;;;;;;;;;6784:8;6753:40;;6774:8;6753:40;;;;;;;;;;;;6673:128;6610:191;:::o;18876: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:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:117::-;5297:1;5294;5287:12;5311:117;5420:1;5417;5410:12;5434:117;5543:1;5540;5533:12;5574:568;5647:8;5657:6;5707:3;5700:4;5692:6;5688:17;5684:27;5674:122;;5715:79;;:::i;:::-;5674:122;5828:6;5815:20;5805:30;;5858:18;5850:6;5847:30;5844:117;;;5880:79;;:::i;:::-;5844:117;5994:4;5986:6;5982:17;5970:29;;6048:3;6040:4;6032:6;6028:17;6018:8;6014:32;6011:41;6008:128;;;6055:79;;:::i;:::-;6008:128;5574:568;;;;;:::o;6148:849::-;6252:6;6260;6268;6276;6325:2;6313:9;6304:7;6300:23;6296:32;6293:119;;;6331:79;;:::i;:::-;6293:119;6479:1;6468:9;6464:17;6451:31;6509:18;6501:6;6498:30;6495:117;;;6531:79;;:::i;:::-;6495:117;6644:80;6716:7;6707:6;6696:9;6692:22;6644:80;:::i;:::-;6626:98;;;;6422:312;6773:2;6799:53;6844:7;6835:6;6824:9;6820:22;6799:53;:::i;:::-;6789:63;;6744:118;6901:2;6927:53;6972:7;6963:6;6952:9;6948:22;6927:53;:::i;:::-;6917:63;;6872:118;6148:849;;;;;;;:::o;7003:118::-;7090:24;7108:5;7090:24;:::i;:::-;7085:3;7078:37;7003:118;;:::o;7127:222::-;7220:4;7258:2;7247:9;7243:18;7235:26;;7271:71;7339:1;7328:9;7324:17;7315:6;7271:71;:::i;:::-;7127:222;;;;:::o;7355:474::-;7423:6;7431;7480:2;7468:9;7459:7;7455:23;7451:32;7448:119;;;7486:79;;:::i;:::-;7448:119;7606:1;7631:53;7676:7;7667:6;7656:9;7652:22;7631:53;:::i;:::-;7621:63;;7577:117;7733:2;7759:53;7804:7;7795:6;7784:9;7780:22;7759:53;:::i;:::-;7749:63;;7704:118;7355:474;;;;;:::o;7835:180::-;7883:77;7880:1;7873:88;7980:4;7977:1;7970:15;8004:4;8001:1;7994:15;8021:320;8065:6;8102:1;8096:4;8092:12;8082:22;;8149:1;8143:4;8139:12;8170:18;8160:81;;8226:4;8218:6;8214:17;8204:27;;8160:81;8288:2;8280:6;8277:14;8257:18;8254:38;8251:84;;8307:18;;:::i;:::-;8251:84;8072:269;8021:320;;;:::o;8347:180::-;8395:77;8392:1;8385:88;8492:4;8489:1;8482:15;8516:4;8513:1;8506:15;8533:191;8573:3;8592:20;8610:1;8592:20;:::i;:::-;8587:25;;8626:20;8644:1;8626:20;:::i;:::-;8621:25;;8669:1;8666;8662:9;8655:16;;8690:3;8687:1;8684:10;8681:36;;;8697:18;;:::i;:::-;8681:36;8533:191;;;;:::o;8730:182::-;8870:34;8866:1;8858:6;8854:14;8847:58;8730:182;:::o;8918:366::-;9060:3;9081:67;9145:2;9140:3;9081:67;:::i;:::-;9074:74;;9157:93;9246:3;9157:93;:::i;:::-;9275:2;9270:3;9266:12;9259:19;;8918:366;;;:::o;9290:419::-;9456:4;9494:2;9483:9;9479:18;9471:26;;9543:9;9537:4;9533:20;9529:1;9518:9;9514:17;9507:47;9571:131;9697:4;9571:131;:::i;:::-;9563:139;;9290:419;;;:::o;9715:180::-;9763:77;9760:1;9753:88;9860:4;9857:1;9850:15;9884:4;9881:1;9874:15;9901:85;9946:7;9975:5;9964:16;;9901:85;;;:::o;9992:60::-;10020:3;10041:5;10034:12;;9992:60;;;:::o;10058:158::-;10116:9;10149:61;10167:42;10176:32;10202:5;10176:32;:::i;:::-;10167:42;:::i;:::-;10149:61;:::i;:::-;10136:74;;10058:158;;;:::o;10222:147::-;10317:45;10356:5;10317:45;:::i;:::-;10312:3;10305:58;10222:147;;:::o;10375:585::-;10568:4;10606:3;10595:9;10591:19;10583:27;;10620:79;10696:1;10685:9;10681:17;10672:6;10620:79;:::i;:::-;10709:72;10777:2;10766:9;10762:18;10753:6;10709:72;:::i;:::-;10791;10859:2;10848:9;10844:18;10835:6;10791:72;:::i;:::-;10873:80;10949:2;10938:9;10934:18;10925:6;10873:80;:::i;:::-;10375:585;;;;;;;:::o;10966:233::-;11005:3;11028:24;11046:5;11028:24;:::i;:::-;11019:33;;11074:66;11067:5;11064:77;11061:103;;11144:18;;:::i;:::-;11061:103;11191:1;11184:5;11180:13;11173:20;;10966:233;;;:::o;11205:585::-;11398:4;11436:3;11425:9;11421:19;11413:27;;11450:71;11518:1;11507:9;11503:17;11494:6;11450:71;:::i;:::-;11531:80;11607:2;11596:9;11592:18;11583:6;11531:80;:::i;:::-;11621;11697:2;11686:9;11682:18;11673:6;11621:80;:::i;:::-;11711:72;11779:2;11768:9;11764:18;11755:6;11711:72;:::i;:::-;11205:585;;;;;;;:::o;11796:224::-;11936:34;11932:1;11924:6;11920:14;11913:58;12005:7;12000:2;11992:6;11988:15;11981:32;11796:224;:::o;12026:366::-;12168:3;12189:67;12253:2;12248:3;12189:67;:::i;:::-;12182:74;;12265:93;12354:3;12265:93;:::i;:::-;12383:2;12378:3;12374:12;12367:19;;12026:366;;;:::o;12398:419::-;12564:4;12602:2;12591:9;12587:18;12579:26;;12651:9;12645:4;12641:20;12637:1;12626:9;12622:17;12615:47;12679:131;12805:4;12679:131;:::i;:::-;12671:139;;12398:419;;;:::o;12823:225::-;12963:34;12959:1;12951:6;12947:14;12940:58;13032:8;13027:2;13019:6;13015:15;13008:33;12823:225;:::o;13054:366::-;13196:3;13217:67;13281:2;13276:3;13217:67;:::i;:::-;13210:74;;13293:93;13382:3;13293:93;:::i;:::-;13411:2;13406:3;13402:12;13395:19;;13054:366;;;:::o;13426:419::-;13592:4;13630:2;13619:9;13615:18;13607:26;;13679:9;13673:4;13669:20;13665:1;13654:9;13650:17;13643:47;13707:131;13833:4;13707:131;:::i;:::-;13699:139;;13426:419;;;:::o;13851:223::-;13991:34;13987:1;13979:6;13975:14;13968:58;14060:6;14055:2;14047:6;14043:15;14036:31;13851:223;:::o;14080:366::-;14222:3;14243:67;14307:2;14302:3;14243:67;:::i;:::-;14236:74;;14319:93;14408:3;14319:93;:::i;:::-;14437:2;14432:3;14428:12;14421:19;;14080:366;;;:::o;14452:419::-;14618:4;14656:2;14645:9;14641:18;14633:26;;14705:9;14699:4;14695:20;14691:1;14680:9;14676:17;14669:47;14733:131;14859:4;14733:131;:::i;:::-;14725:139;;14452:419;;;:::o;14877:221::-;15017:34;15013:1;15005:6;15001:14;14994:58;15086:4;15081:2;15073:6;15069:15;15062:29;14877:221;:::o;15104:366::-;15246:3;15267:67;15331:2;15326:3;15267:67;:::i;:::-;15260:74;;15343:93;15432:3;15343:93;:::i;:::-;15461:2;15456:3;15452:12;15445:19;;15104:366;;;:::o;15476:419::-;15642:4;15680:2;15669:9;15665:18;15657:26;;15729:9;15723:4;15719:20;15715:1;15704:9;15700:17;15693:47;15757:131;15883:4;15757:131;:::i;:::-;15749:139;;15476:419;;;:::o;15901:179::-;16041:31;16037:1;16029:6;16025:14;16018:55;15901:179;:::o;16086:366::-;16228:3;16249:67;16313:2;16308:3;16249:67;:::i;:::-;16242:74;;16325:93;16414:3;16325:93;:::i;:::-;16443:2;16438:3;16434:12;16427:19;;16086:366;;;:::o;16458:419::-;16624:4;16662:2;16651:9;16647:18;16639:26;;16711:9;16705:4;16701:20;16697:1;16686:9;16682:17;16675:47;16739:131;16865:4;16739:131;:::i;:::-;16731:139;;16458:419;;;:::o;16883:224::-;17023:34;17019:1;17011:6;17007:14;17000:58;17092:7;17087:2;17079:6;17075:15;17068:32;16883:224;:::o;17113:366::-;17255:3;17276:67;17340:2;17335:3;17276:67;:::i;:::-;17269:74;;17352:93;17441:3;17352:93;:::i;:::-;17470:2;17465:3;17461:12;17454:19;;17113:366;;;:::o;17485:419::-;17651:4;17689:2;17678:9;17674:18;17666:26;;17738:9;17732:4;17728:20;17724:1;17713:9;17709:17;17702:47;17766:131;17892:4;17766:131;:::i;:::-;17758:139;;17485:419;;;:::o;17910:222::-;18050:34;18046:1;18038:6;18034:14;18027:58;18119:5;18114:2;18106:6;18102:15;18095:30;17910:222;:::o;18138:366::-;18280:3;18301:67;18365:2;18360:3;18301:67;:::i;:::-;18294:74;;18377:93;18466:3;18377:93;:::i;:::-;18495:2;18490:3;18486:12;18479:19;;18138:366;;;:::o;18510:419::-;18676:4;18714:2;18703:9;18699:18;18691:26;;18763:9;18757:4;18753:20;18749:1;18738:9;18734:17;18727:47;18791:131;18917:4;18791:131;:::i;:::-;18783:139;;18510:419;;;:::o;18935:225::-;19075:34;19071:1;19063:6;19059:14;19052:58;19144:8;19139:2;19131:6;19127:15;19120:33;18935:225;:::o;19166:366::-;19308:3;19329:67;19393:2;19388:3;19329:67;:::i;:::-;19322:74;;19405:93;19494:3;19405:93;:::i;:::-;19523:2;19518:3;19514:12;19507:19;;19166:366;;;:::o;19538:419::-;19704:4;19742:2;19731:9;19727:18;19719:26;;19791:9;19785:4;19781:20;19777:1;19766:9;19762:17;19755:47;19819:131;19945:4;19819:131;:::i;:::-;19811:139;;19538:419;;;:::o;19963:114::-;;:::o;20083:364::-;20225:3;20246:66;20310:1;20305:3;20246:66;:::i;:::-;20239:73;;20321:93;20410:3;20321:93;:::i;:::-;20439:1;20434:3;20430:11;20423:18;;20083:364;;;:::o;20453:419::-;20619:4;20657:2;20646:9;20642:18;20634:26;;20706:9;20700:4;20696:20;20692:1;20681:9;20677:17;20670:47;20734:131;20860:4;20734:131;:::i;:::-;20726:139;;20453:419;;;:::o

Swarm Source

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