ETH Price: $3,482.09 (+3.28%)
Gas: 3 Gwei

Token

XFLOKI (XFLOKI)
 

Overview

Max Total Supply

100,000,000,000 XFLOKI

Holders

392

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 7 Decimals)

Balance
761,256,050.0030503 XFLOKI

Value
$0.00
0x96e6e39769e47003d3366e16f455fa5904369031
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:
XFLOKI

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-27
*/

// SPDX-License-Identifier: Unlicensed

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.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 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 == msg.sender, "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _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/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.8.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.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 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 7;
    }

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


        _beforeTokenTransfer(from, to, amount);

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

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

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

        _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 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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 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 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: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}


pragma solidity ^0.8.0;


contract XFLOKI is ERC20, ERC20Burnable, Ownable {
    uint256 private constant INITIAL_SUPPLY = 100000000000 * 10**7;


    constructor() ERC20("XFLOKI", "XFLOKI") {
        _mint(msg.sender, INITIAL_SUPPLY);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","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":"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":"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":"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"}]

60806040523480156200001157600080fd5b506040518060400160405280600681526020017f58464c4f4b4900000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f58464c4f4b49000000000000000000000000000000000000000000000000000081525081600390805190602001906200009692919062000338565b508060049080519060200190620000af92919062000338565b505050620000d2620000c6620000f260201b60201c565b620000fa60201b60201c565b620000ec33670de0b6b3a7640000620001c060201b60201c565b62000586565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000233576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200022a906200043b565b60405180910390fd5b62000247600083836200032e60201b60201c565b80600260008282546200025b91906200048b565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200030e91906200045d565b60405180910390a36200032a600083836200033360201b60201c565b5050565b505050565b505050565b8280546200034690620004f2565b90600052602060002090601f0160209004810192826200036a5760008555620003b6565b82601f106200038557805160ff1916838001178555620003b6565b82800160010185558215620003b6579182015b82811115620003b557825182559160200191906001019062000398565b5b509050620003c59190620003c9565b5090565b5b80821115620003e4576000816000905550600101620003ca565b5090565b6000620003f7601f836200047a565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6200043581620004e8565b82525050565b600060208201905081810360008301526200045681620003e8565b9050919050565b60006020820190506200047460008301846200042a565b92915050565b600082825260208201905092915050565b60006200049882620004e8565b9150620004a583620004e8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620004dd57620004dc62000528565b5b828201905092915050565b6000819050919050565b600060028204905060018216806200050b57607f821691505b6020821081141562000522576200052162000557565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61192a80620005966000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d71461029d578063a9059cbb146102cd578063dd62ed3e146102fd578063f2fde38b1461032d57610100565b8063715018a61461023b57806379cc6790146102455780638da5cb5b1461026157806395d89b411461027f57610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf57806342966c68146101ef57806370a082311461020b57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d610349565b60405161011a9190611573565b60405180910390f35b61013d6004803603810190610138919061104d565b6103db565b60405161014a9190611558565b60405180910390f35b61015b6103fe565b60405161016891906116f5565b60405180910390f35b61018b60048036038101906101869190610ffe565b610408565b6040516101989190611558565b60405180910390f35b6101a9610437565b6040516101b69190611710565b60405180910390f35b6101d960048036038101906101d4919061104d565b610440565b6040516101e69190611558565b60405180910390f35b61020960048036038101906102049190611089565b610477565b005b61022560048036038101906102209190610f99565b61048b565b60405161023291906116f5565b60405180910390f35b6102436104d3565b005b61025f600480360381019061025a919061104d565b6104e7565b005b610269610507565b604051610276919061153d565b60405180910390f35b610287610531565b6040516102949190611573565b60405180910390f35b6102b760048036038101906102b2919061104d565b6105c3565b6040516102c49190611558565b60405180910390f35b6102e760048036038101906102e2919061104d565b61063a565b6040516102f49190611558565b60405180910390f35b61031760048036038101906103129190610fc2565b61065d565b60405161032491906116f5565b60405180910390f35b61034760048036038101906103429190610f99565b6106e4565b005b60606003805461035890611825565b80601f016020809104026020016040519081016040528092919081815260200182805461038490611825565b80156103d15780601f106103a6576101008083540402835291602001916103d1565b820191906000526020600020905b8154815290600101906020018083116103b457829003601f168201915b5050505050905090565b6000806103e6610768565b90506103f3818585610770565b600191505092915050565b6000600254905090565b600080610413610768565b905061042085828561093b565b61042b8585856109c7565b60019150509392505050565b60006007905090565b60008061044b610768565b905061046c81858561045d858961065d565b6104679190611747565b610770565b600191505092915050565b610488610482610768565b82610c3f565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104db610e0d565b6104e56000610e9f565b565b6104f9826104f3610768565b8361093b565b6105038282610c3f565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461054090611825565b80601f016020809104026020016040519081016040528092919081815260200182805461056c90611825565b80156105b95780601f1061058e576101008083540402835291602001916105b9565b820191906000526020600020905b81548152906001019060200180831161059c57829003601f168201915b5050505050905090565b6000806105ce610768565b905060006105dc828661065d565b905083811015610621576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610618906116d5565b60405180910390fd5b61062e8286868403610770565b60019250505092915050565b600080610645610768565b90506106528185856109c7565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6106ec610e0d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561075c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610753906115d5565b60405180910390fd5b61076581610e9f565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d7906116b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610850576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610847906115f5565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161092e91906116f5565b60405180910390a3505050565b6000610947848461065d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109c157818110156109b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109aa90611615565b60405180910390fd5b6109c08484848403610770565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2e90611695565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610aa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9e90611595565b60405180910390fd5b610ab2838383610f65565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610b38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2f90611635565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c2691906116f5565b60405180910390a3610c39848484610f6a565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca690611675565b60405180910390fd5b610cbb82600083610f65565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d38906115b5565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610df491906116f5565b60405180910390a3610e0883600084610f6a565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9490611655565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081359050610f7e816118c6565b92915050565b600081359050610f93816118dd565b92915050565b600060208284031215610fab57600080fd5b6000610fb984828501610f6f565b91505092915050565b60008060408385031215610fd557600080fd5b6000610fe385828601610f6f565b9250506020610ff485828601610f6f565b9150509250929050565b60008060006060848603121561101357600080fd5b600061102186828701610f6f565b935050602061103286828701610f6f565b925050604061104386828701610f84565b9150509250925092565b6000806040838503121561106057600080fd5b600061106e85828601610f6f565b925050602061107f85828601610f84565b9150509250929050565b60006020828403121561109b57600080fd5b60006110a984828501610f84565b91505092915050565b6110bb8161179d565b82525050565b6110ca816117af565b82525050565b60006110db8261172b565b6110e58185611736565b93506110f58185602086016117f2565b6110fe816118b5565b840191505092915050565b6000611116602383611736565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061117c602283611736565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006111e2602683611736565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611248602283611736565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006112ae601d83611736565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b60006112ee602683611736565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611354602083611736565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611394602183611736565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006113fa602583611736565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611460602483611736565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006114c6602583611736565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b611528816117db565b82525050565b611537816117e5565b82525050565b600060208201905061155260008301846110b2565b92915050565b600060208201905061156d60008301846110c1565b92915050565b6000602082019050818103600083015261158d81846110d0565b905092915050565b600060208201905081810360008301526115ae81611109565b9050919050565b600060208201905081810360008301526115ce8161116f565b9050919050565b600060208201905081810360008301526115ee816111d5565b9050919050565b6000602082019050818103600083015261160e8161123b565b9050919050565b6000602082019050818103600083015261162e816112a1565b9050919050565b6000602082019050818103600083015261164e816112e1565b9050919050565b6000602082019050818103600083015261166e81611347565b9050919050565b6000602082019050818103600083015261168e81611387565b9050919050565b600060208201905081810360008301526116ae816113ed565b9050919050565b600060208201905081810360008301526116ce81611453565b9050919050565b600060208201905081810360008301526116ee816114b9565b9050919050565b600060208201905061170a600083018461151f565b92915050565b6000602082019050611725600083018461152e565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611752826117db565b915061175d836117db565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561179257611791611857565b5b828201905092915050565b60006117a8826117bb565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156118105780820151818401526020810190506117f5565b8381111561181f576000848401525b50505050565b6000600282049050600182168061183d57607f821691505b6020821081141561185157611850611886565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b6118cf8161179d565b81146118da57600080fd5b50565b6118e6816117db565b81146118f157600080fd5b5056fea2646970667358221220b4e7b4add27270a98a233f541f098a518b4cae4baadcbeb5c9c678346d00790164736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d71461029d578063a9059cbb146102cd578063dd62ed3e146102fd578063f2fde38b1461032d57610100565b8063715018a61461023b57806379cc6790146102455780638da5cb5b1461026157806395d89b411461027f57610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf57806342966c68146101ef57806370a082311461020b57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d610349565b60405161011a9190611573565b60405180910390f35b61013d6004803603810190610138919061104d565b6103db565b60405161014a9190611558565b60405180910390f35b61015b6103fe565b60405161016891906116f5565b60405180910390f35b61018b60048036038101906101869190610ffe565b610408565b6040516101989190611558565b60405180910390f35b6101a9610437565b6040516101b69190611710565b60405180910390f35b6101d960048036038101906101d4919061104d565b610440565b6040516101e69190611558565b60405180910390f35b61020960048036038101906102049190611089565b610477565b005b61022560048036038101906102209190610f99565b61048b565b60405161023291906116f5565b60405180910390f35b6102436104d3565b005b61025f600480360381019061025a919061104d565b6104e7565b005b610269610507565b604051610276919061153d565b60405180910390f35b610287610531565b6040516102949190611573565b60405180910390f35b6102b760048036038101906102b2919061104d565b6105c3565b6040516102c49190611558565b60405180910390f35b6102e760048036038101906102e2919061104d565b61063a565b6040516102f49190611558565b60405180910390f35b61031760048036038101906103129190610fc2565b61065d565b60405161032491906116f5565b60405180910390f35b61034760048036038101906103429190610f99565b6106e4565b005b60606003805461035890611825565b80601f016020809104026020016040519081016040528092919081815260200182805461038490611825565b80156103d15780601f106103a6576101008083540402835291602001916103d1565b820191906000526020600020905b8154815290600101906020018083116103b457829003601f168201915b5050505050905090565b6000806103e6610768565b90506103f3818585610770565b600191505092915050565b6000600254905090565b600080610413610768565b905061042085828561093b565b61042b8585856109c7565b60019150509392505050565b60006007905090565b60008061044b610768565b905061046c81858561045d858961065d565b6104679190611747565b610770565b600191505092915050565b610488610482610768565b82610c3f565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104db610e0d565b6104e56000610e9f565b565b6104f9826104f3610768565b8361093b565b6105038282610c3f565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461054090611825565b80601f016020809104026020016040519081016040528092919081815260200182805461056c90611825565b80156105b95780601f1061058e576101008083540402835291602001916105b9565b820191906000526020600020905b81548152906001019060200180831161059c57829003601f168201915b5050505050905090565b6000806105ce610768565b905060006105dc828661065d565b905083811015610621576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610618906116d5565b60405180910390fd5b61062e8286868403610770565b60019250505092915050565b600080610645610768565b90506106528185856109c7565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6106ec610e0d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561075c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610753906115d5565b60405180910390fd5b61076581610e9f565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d7906116b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610850576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610847906115f5565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161092e91906116f5565b60405180910390a3505050565b6000610947848461065d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109c157818110156109b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109aa90611615565b60405180910390fd5b6109c08484848403610770565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2e90611695565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610aa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9e90611595565b60405180910390fd5b610ab2838383610f65565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610b38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2f90611635565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c2691906116f5565b60405180910390a3610c39848484610f6a565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca690611675565b60405180910390fd5b610cbb82600083610f65565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d38906115b5565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610df491906116f5565b60405180910390a3610e0883600084610f6a565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9490611655565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081359050610f7e816118c6565b92915050565b600081359050610f93816118dd565b92915050565b600060208284031215610fab57600080fd5b6000610fb984828501610f6f565b91505092915050565b60008060408385031215610fd557600080fd5b6000610fe385828601610f6f565b9250506020610ff485828601610f6f565b9150509250929050565b60008060006060848603121561101357600080fd5b600061102186828701610f6f565b935050602061103286828701610f6f565b925050604061104386828701610f84565b9150509250925092565b6000806040838503121561106057600080fd5b600061106e85828601610f6f565b925050602061107f85828601610f84565b9150509250929050565b60006020828403121561109b57600080fd5b60006110a984828501610f84565b91505092915050565b6110bb8161179d565b82525050565b6110ca816117af565b82525050565b60006110db8261172b565b6110e58185611736565b93506110f58185602086016117f2565b6110fe816118b5565b840191505092915050565b6000611116602383611736565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061117c602283611736565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006111e2602683611736565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611248602283611736565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006112ae601d83611736565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b60006112ee602683611736565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611354602083611736565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611394602183611736565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006113fa602583611736565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611460602483611736565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006114c6602583611736565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b611528816117db565b82525050565b611537816117e5565b82525050565b600060208201905061155260008301846110b2565b92915050565b600060208201905061156d60008301846110c1565b92915050565b6000602082019050818103600083015261158d81846110d0565b905092915050565b600060208201905081810360008301526115ae81611109565b9050919050565b600060208201905081810360008301526115ce8161116f565b9050919050565b600060208201905081810360008301526115ee816111d5565b9050919050565b6000602082019050818103600083015261160e8161123b565b9050919050565b6000602082019050818103600083015261162e816112a1565b9050919050565b6000602082019050818103600083015261164e816112e1565b9050919050565b6000602082019050818103600083015261166e81611347565b9050919050565b6000602082019050818103600083015261168e81611387565b9050919050565b600060208201905081810360008301526116ae816113ed565b9050919050565b600060208201905081810360008301526116ce81611453565b9050919050565b600060208201905081810360008301526116ee816114b9565b9050919050565b600060208201905061170a600083018461151f565b92915050565b6000602082019050611725600083018461152e565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611752826117db565b915061175d836117db565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561179257611791611857565b5b828201905092915050565b60006117a8826117bb565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156118105780820151818401526020810190506117f5565b8381111561181f576000848401525b50505050565b6000600282049050600182168061183d57607f821691505b6020821081141561185157611850611886565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b6118cf8161179d565b81146118da57600080fd5b50565b6118e6816117db565b81146118f157600080fd5b5056fea2646970667358221220b4e7b4add27270a98a233f541f098a518b4cae4baadcbeb5c9c678346d00790164736f6c63430008000033

Deployed Bytecode Sourcemap

21774:226:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9390:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11740:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10509:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12521:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10352:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13225:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21162:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10680:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2815:103;;;:::i;:::-;;21572:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2170:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9609:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13966:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11013:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11269:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3073:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9390:100;9444:13;9477:5;9470:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9390:100;:::o;11740:201::-;11823:4;11840:13;11856:12;:10;:12::i;:::-;11840:28;;11879:32;11888:5;11895:7;11904:6;11879:8;:32::i;:::-;11929:4;11922:11;;;11740:201;;;;:::o;10509:108::-;10570:7;10597:12;;10590:19;;10509:108;:::o;12521:295::-;12652:4;12669:15;12687:12;:10;:12::i;:::-;12669:30;;12710:38;12726:4;12732:7;12741:6;12710:15;:38::i;:::-;12759:27;12769:4;12775:2;12779:6;12759:9;:27::i;:::-;12804:4;12797:11;;;12521:295;;;;;:::o;10352:92::-;10410:5;10435:1;10428:8;;10352:92;:::o;13225:238::-;13313:4;13330:13;13346:12;:10;:12::i;:::-;13330:28;;13369:64;13378:5;13385:7;13422:10;13394:25;13404:5;13411:7;13394:9;:25::i;:::-;:38;;;;:::i;:::-;13369:8;:64::i;:::-;13451:4;13444:11;;;13225:238;;;;:::o;21162:91::-;21218:27;21224:12;:10;:12::i;:::-;21238:6;21218:5;:27::i;:::-;21162:91;:::o;10680:127::-;10754:7;10781:9;:18;10791:7;10781:18;;;;;;;;;;;;;;;;10774:25;;10680:127;;;:::o;2815:103::-;2056:13;:11;:13::i;:::-;2880:30:::1;2907:1;2880:18;:30::i;:::-;2815:103::o:0;21572:164::-;21649:46;21665:7;21674:12;:10;:12::i;:::-;21688:6;21649:15;:46::i;:::-;21706:22;21712:7;21721:6;21706:5;:22::i;:::-;21572:164;;:::o;2170:87::-;2216:7;2243:6;;;;;;;;;;;2236:13;;2170:87;:::o;9609:104::-;9665:13;9698:7;9691:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9609:104;:::o;13966:436::-;14059:4;14076:13;14092:12;:10;:12::i;:::-;14076:28;;14115:24;14142:25;14152:5;14159:7;14142:9;:25::i;:::-;14115:52;;14206:15;14186:16;:35;;14178:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14299:60;14308:5;14315:7;14343:15;14324:16;:34;14299:8;:60::i;:::-;14390:4;14383:11;;;;13966:436;;;;:::o;11013:193::-;11092:4;11109:13;11125:12;:10;:12::i;:::-;11109:28;;11148;11158:5;11165:2;11169:6;11148:9;:28::i;:::-;11194:4;11187:11;;;11013:193;;;;:::o;11269:151::-;11358:7;11385:11;:18;11397:5;11385:18;;;;;;;;;;;;;;;:27;11404:7;11385:27;;;;;;;;;;;;;;;;11378:34;;11269:151;;;;:::o;3073:201::-;2056:13;:11;:13::i;:::-;3182:1:::1;3162:22;;:8;:22;;;;3154:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3238:28;3257:8;3238:18;:28::i;:::-;3073:201:::0;:::o;721:98::-;774:7;801:10;794:17;;721:98;:::o;17995:380::-;18148:1;18131:19;;:5;:19;;;;18123:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18229:1;18210:21;;:7;:21;;;;18202:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18313:6;18283:11;:18;18295:5;18283:18;;;;;;;;;;;;;;;:27;18302:7;18283:27;;;;;;;;;;;;;;;:36;;;;18351:7;18335:32;;18344:5;18335:32;;;18360:6;18335:32;;;;;;:::i;:::-;;;;;;;;17995:380;;;:::o;18666:453::-;18801:24;18828:25;18838:5;18845:7;18828:9;:25::i;:::-;18801:52;;18888:17;18868:16;:37;18864:248;;18950:6;18930:16;:26;;18922:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19034:51;19043:5;19050:7;19078:6;19059:16;:25;19034:8;:51::i;:::-;18864:248;18666:453;;;;:::o;14872:842::-;15019:1;15003:18;;:4;:18;;;;14995:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15096:1;15082:16;;:2;:16;;;;15074:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15153:38;15174:4;15180:2;15184:6;15153:20;:38::i;:::-;15204:19;15226:9;:15;15236:4;15226:15;;;;;;;;;;;;;;;;15204:37;;15275:6;15260:11;:21;;15252:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15392:6;15378:11;:20;15360:9;:15;15370:4;15360:15;;;;;;;;;;;;;;;:38;;;;15595:6;15578:9;:13;15588:2;15578:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15645:2;15630:26;;15639:4;15630:26;;;15649:6;15630:26;;;;;;:::i;:::-;;;;;;;;15669:37;15689:4;15695:2;15699:6;15669:19;:37::i;:::-;14872:842;;;;:::o;16882:675::-;16985:1;16966:21;;:7;:21;;;;16958:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;17038:49;17059:7;17076:1;17080:6;17038:20;:49::i;:::-;17100:22;17125:9;:18;17135:7;17125:18;;;;;;;;;;;;;;;;17100:43;;17180:6;17162:14;:24;;17154:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17299:6;17282:14;:23;17261:9;:18;17271:7;17261:18;;;;;;;;;;;;;;;:44;;;;17416:6;17400:12;;:22;;;;;;;;;;;17477:1;17451:37;;17460:7;17451:37;;;17481:6;17451:37;;;;;;:::i;:::-;;;;;;;;17501:48;17521:7;17538:1;17542:6;17501:19;:48::i;:::-;16882:675;;;:::o;2335:129::-;2409:10;2399:20;;:6;;;;;;;;;;;:20;;;2391:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;2335:129::o;3434:191::-;3508:16;3527:6;;;;;;;;;;;3508:25;;3553:8;3544:6;;:17;;;;;;;;;;;;;;;;;;3608:8;3577:40;;3598:8;3577:40;;;;;;;;;;;;3434:191;;:::o;19719:125::-;;;;:::o;20448:124::-;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:262::-;;2057:2;2045:9;2036:7;2032:23;2028:32;2025:2;;;2073:1;2070;2063:12;2025:2;2116:1;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2087:117;2015:196;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2282:53;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2400:50;;:::o;2456:364::-;;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;;;;;:::o;2826:367::-;;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3086:34;3082:1;3077:3;3073:11;3066:55;3152:5;3147:2;3142:3;3138:12;3131:27;3184:2;3179:3;3175:12;3168:19;;2972:221;;;:::o;3199:366::-;;3362:67;3426:2;3421:3;3362:67;:::i;:::-;3355:74;;3459:34;3455:1;3450:3;3446:11;3439:55;3525:4;3520:2;3515:3;3511:12;3504:26;3556:2;3551:3;3547:12;3540:19;;3345:220;;;:::o;3571:370::-;;3734:67;3798:2;3793:3;3734:67;:::i;:::-;3727:74;;3831:34;3827:1;3822:3;3818:11;3811:55;3897:8;3892:2;3887:3;3883:12;3876:30;3932:2;3927:3;3923:12;3916:19;;3717:224;;;:::o;3947:366::-;;4110:67;4174:2;4169:3;4110:67;:::i;:::-;4103:74;;4207:34;4203:1;4198:3;4194:11;4187:55;4273:4;4268:2;4263:3;4259:12;4252:26;4304:2;4299:3;4295:12;4288:19;;4093:220;;;:::o;4319:327::-;;4482:67;4546:2;4541:3;4482:67;:::i;:::-;4475:74;;4579:31;4575:1;4570:3;4566:11;4559:52;4637:2;4632:3;4628:12;4621:19;;4465:181;;;:::o;4652:370::-;;4815:67;4879:2;4874:3;4815:67;:::i;:::-;4808:74;;4912:34;4908:1;4903:3;4899:11;4892:55;4978:8;4973:2;4968:3;4964:12;4957:30;5013:2;5008:3;5004:12;4997:19;;4798:224;;;:::o;5028:330::-;;5191:67;5255:2;5250:3;5191:67;:::i;:::-;5184:74;;5288:34;5284:1;5279:3;5275:11;5268:55;5349:2;5344:3;5340:12;5333:19;;5174:184;;;:::o;5364:365::-;;5527:67;5591:2;5586:3;5527:67;:::i;:::-;5520:74;;5624:34;5620:1;5615:3;5611:11;5604:55;5690:3;5685:2;5680:3;5676:12;5669:25;5720:2;5715:3;5711:12;5704:19;;5510:219;;;:::o;5735:369::-;;5898:67;5962:2;5957:3;5898:67;:::i;:::-;5891:74;;5995:34;5991:1;5986:3;5982:11;5975:55;6061:7;6056:2;6051:3;6047:12;6040:29;6095:2;6090:3;6086:12;6079:19;;5881:223;;;:::o;6110:368::-;;6273:67;6337:2;6332:3;6273:67;:::i;:::-;6266:74;;6370:34;6366:1;6361:3;6357:11;6350:55;6436:6;6431:2;6426:3;6422:12;6415:28;6469:2;6464:3;6460:12;6453:19;;6256:222;;;:::o;6484:369::-;;6647:67;6711:2;6706:3;6647:67;:::i;:::-;6640:74;;6744:34;6740:1;6735:3;6731:11;6724:55;6810:7;6805:2;6800:3;6796:12;6789:29;6844:2;6839:3;6835:12;6828:19;;6630:223;;;:::o;6859:118::-;6946:24;6964:5;6946:24;:::i;:::-;6941:3;6934:37;6924:53;;:::o;6983:112::-;7066:22;7082:5;7066:22;:::i;:::-;7061:3;7054:35;7044:51;;:::o;7101:222::-;;7232:2;7221:9;7217:18;7209:26;;7245:71;7313:1;7302:9;7298:17;7289:6;7245:71;:::i;:::-;7199:124;;;;:::o;7329:210::-;;7454:2;7443:9;7439:18;7431:26;;7467:65;7529:1;7518:9;7514:17;7505:6;7467:65;:::i;:::-;7421:118;;;;:::o;7545:313::-;;7696:2;7685:9;7681:18;7673:26;;7745:9;7739:4;7735:20;7731:1;7720:9;7716:17;7709:47;7773:78;7846:4;7837:6;7773:78;:::i;:::-;7765:86;;7663:195;;;;:::o;7864:419::-;;8068:2;8057:9;8053:18;8045:26;;8117:9;8111:4;8107:20;8103:1;8092:9;8088:17;8081:47;8145:131;8271:4;8145:131;:::i;:::-;8137:139;;8035:248;;;:::o;8289:419::-;;8493:2;8482:9;8478:18;8470:26;;8542:9;8536:4;8532:20;8528:1;8517:9;8513:17;8506:47;8570:131;8696:4;8570:131;:::i;:::-;8562:139;;8460:248;;;:::o;8714:419::-;;8918:2;8907:9;8903:18;8895:26;;8967:9;8961:4;8957:20;8953:1;8942:9;8938:17;8931:47;8995:131;9121:4;8995:131;:::i;:::-;8987:139;;8885:248;;;:::o;9139:419::-;;9343:2;9332:9;9328:18;9320:26;;9392:9;9386:4;9382:20;9378:1;9367:9;9363:17;9356:47;9420:131;9546:4;9420:131;:::i;:::-;9412:139;;9310:248;;;:::o;9564:419::-;;9768:2;9757:9;9753:18;9745:26;;9817:9;9811:4;9807:20;9803:1;9792:9;9788:17;9781:47;9845:131;9971:4;9845:131;:::i;:::-;9837:139;;9735:248;;;:::o;9989:419::-;;10193:2;10182:9;10178:18;10170:26;;10242:9;10236:4;10232:20;10228:1;10217:9;10213:17;10206:47;10270:131;10396:4;10270:131;:::i;:::-;10262:139;;10160:248;;;:::o;10414:419::-;;10618:2;10607:9;10603:18;10595:26;;10667:9;10661:4;10657:20;10653:1;10642:9;10638:17;10631:47;10695:131;10821:4;10695:131;:::i;:::-;10687:139;;10585:248;;;:::o;10839:419::-;;11043:2;11032:9;11028:18;11020:26;;11092:9;11086:4;11082:20;11078:1;11067:9;11063:17;11056:47;11120:131;11246:4;11120:131;:::i;:::-;11112:139;;11010:248;;;:::o;11264:419::-;;11468:2;11457:9;11453:18;11445:26;;11517:9;11511:4;11507:20;11503:1;11492:9;11488:17;11481:47;11545:131;11671:4;11545:131;:::i;:::-;11537:139;;11435:248;;;:::o;11689:419::-;;11893:2;11882:9;11878:18;11870:26;;11942:9;11936:4;11932:20;11928:1;11917:9;11913:17;11906:47;11970:131;12096:4;11970:131;:::i;:::-;11962:139;;11860:248;;;:::o;12114:419::-;;12318:2;12307:9;12303:18;12295:26;;12367:9;12361:4;12357:20;12353:1;12342:9;12338:17;12331:47;12395:131;12521:4;12395:131;:::i;:::-;12387:139;;12285:248;;;:::o;12539:222::-;;12670:2;12659:9;12655:18;12647:26;;12683:71;12751:1;12740:9;12736:17;12727:6;12683:71;:::i;:::-;12637:124;;;;:::o;12767:214::-;;12894:2;12883:9;12879:18;12871:26;;12907:67;12971:1;12960:9;12956:17;12947:6;12907:67;:::i;:::-;12861:120;;;;:::o;12987:99::-;;13073:5;13067:12;13057:22;;13046:40;;;:::o;13092:169::-;;13210:6;13205:3;13198:19;13250:4;13245:3;13241:14;13226:29;;13188:73;;;;:::o;13267:305::-;;13326:20;13344:1;13326:20;:::i;:::-;13321:25;;13360:20;13378:1;13360:20;:::i;:::-;13355:25;;13514:1;13446:66;13442:74;13439:1;13436:81;13433:2;;;13520:18;;:::i;:::-;13433:2;13564:1;13561;13557:9;13550:16;;13311:261;;;;:::o;13578:96::-;;13644:24;13662:5;13644:24;:::i;:::-;13633:35;;13623:51;;;:::o;13680:90::-;;13757:5;13750:13;13743:21;13732:32;;13722:48;;;:::o;13776:126::-;;13853:42;13846:5;13842:54;13831:65;;13821:81;;;:::o;13908:77::-;;13974:5;13963:16;;13953:32;;;:::o;13991:86::-;;14066:4;14059:5;14055:16;14044:27;;14034:43;;;:::o;14083:307::-;14151:1;14161:113;14175:6;14172:1;14169:13;14161:113;;;14260:1;14255:3;14251:11;14245:18;14241:1;14236:3;14232:11;14225:39;14197:2;14194:1;14190:10;14185:15;;14161:113;;;14292:6;14289:1;14286:13;14283:2;;;14372:1;14363:6;14358:3;14354:16;14347:27;14283:2;14132:258;;;;:::o;14396:320::-;;14477:1;14471:4;14467:12;14457:22;;14524:1;14518:4;14514:12;14545:18;14535:2;;14601:4;14593:6;14589:17;14579:27;;14535:2;14663;14655:6;14652:14;14632:18;14629:38;14626:2;;;14682:18;;:::i;:::-;14626:2;14447:269;;;;:::o;14722:180::-;14770:77;14767:1;14760:88;14867:4;14864:1;14857:15;14891:4;14888:1;14881:15;14908:180;14956:77;14953:1;14946:88;15053:4;15050:1;15043:15;15077:4;15074:1;15067:15;15094:102;;15186:2;15182:7;15177:2;15170:5;15166:14;15162:28;15152:38;;15142:54;;;:::o;15202:122::-;15275:24;15293:5;15275:24;:::i;:::-;15268:5;15265:35;15255:2;;15314:1;15311;15304:12;15255:2;15245:79;:::o;15330:122::-;15403:24;15421:5;15403:24;:::i;:::-;15396:5;15393:35;15383:2;;15442:1;15439;15432:12;15383:2;15373:79;:::o

Swarm Source

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