ETH Price: $2,522.46 (-0.11%)

Token

LFGtoken (LFGT)
 

Overview

Max Total Supply

420,690,000,000 LFGT

Holders

92

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,240,530,317.108821935309368127 LFGT

Value
$0.00
0xc18a728ef6502d023d3c53048337de67b055b239
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:
LFGToken

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

// Sources flattened with hardhat v2.7.0 https://hardhat.org

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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/[email protected]


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

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


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


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

pragma solidity ^0.8.0;

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

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

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


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


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

pragma solidity ^0.8.0;



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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

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

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

        _afterTokenTransfer(account, address(0), amount);
    }

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

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

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

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



pragma solidity ^0.8.0;
/*
* https://lfg.baby
*/

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

    constructor(uint256 _totalSupply) ERC20("LFGtoken", "LFGT") {
        _mint(msg.sender, _totalSupply);
       
        //team: 0xa5959BCab94F2284bA035cb770526AF1a10dfCA8
    }

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

    function setRule(bool _limited, address _uniswapV2Pair, uint256 _maxHoldingAmount, uint256 _minHoldingAmount) external onlyOwner {
        limited = _limited;
        uniswapV2Pair[ _uniswapV2Pair]=true;
        maxHoldingAmount = _maxHoldingAmount;
        minHoldingAmount = _minHoldingAmount;
        uniswapV2=_uniswapV2Pair;
    }

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"setRule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"uniswapV2Pair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b5060405162002f5e38038062002f5e8339818101604052810190620000379190620007ad565b6040518060400160405280600881526020017f4c4647746f6b656e0000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4c46475400000000000000000000000000000000000000000000000000000000815250620000c3620000b76200011060201b60201c565b6200011860201b60201c565b8160049080519060200190620000db929190620006e6565b508060059080519060200190620000f4929190620006e6565b505050620001093382620001dc60201b60201c565b5062000b00565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200024f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200024690620008d0565b60405180910390fd5b62000263600083836200035660201b60201c565b806003600082825462000277919062000942565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002cf919062000942565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000336919062000914565b60405180910390a362000352600083836200066f60201b60201c565b5050565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015620003fb5750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6200043d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200043490620008f2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156200056157620004a56200067460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620005195750620004ea6200067460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6200055b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200055290620008ae565b60405180910390fd5b6200066a565b600660009054906101000a900460ff168015620005c75750600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15620006695760075481620005e7846200069d60201b620009841760201c565b620005f3919062000942565b111580156200062657506008548162000617846200069d60201b620009841760201c565b62000623919062000942565b10155b62000668576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200065f906200088c565b60405180910390fd5b5b5b505050565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b828054620006f490620009a9565b90600052602060002090601f01602090048101928262000718576000855562000764565b82601f106200073357805160ff191683800117855562000764565b8280016001018555821562000764579182015b828111156200076357825182559160200191906001019062000746565b5b50905062000773919062000777565b5090565b5b808211156200079257600081600090555060010162000778565b5090565b600081519050620007a78162000ae6565b92915050565b600060208284031215620007c657620007c562000a3d565b5b6000620007d68482850162000796565b91505092915050565b6000620007ee60068362000931565b9150620007fb8262000a42565b602082019050919050565b60006200081560168362000931565b9150620008228262000a6b565b602082019050919050565b60006200083c601f8362000931565b9150620008498262000a94565b602082019050919050565b600062000863600b8362000931565b9150620008708262000abd565b602082019050919050565b62000886816200099f565b82525050565b60006020820190508181036000830152620008a781620007df565b9050919050565b60006020820190508181036000830152620008c98162000806565b9050919050565b60006020820190508181036000830152620008eb816200082d565b9050919050565b600060208201905081810360008301526200090d8162000854565b9050919050565b60006020820190506200092b60008301846200087b565b92915050565b600082825260208201905092915050565b60006200094f826200099f565b91506200095c836200099f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620009945762000993620009df565b5b828201905092915050565b6000819050919050565b60006002820490506001821680620009c257607f821691505b60208210811415620009d957620009d862000a0e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b62000af1816200099f565b811462000afd57600080fd5b50565b61244e8062000b106000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c806342966c68116100c35780638da5cb5b1161007c5780638da5cb5b146103a257806395d89b41146103c0578063a457c2d7146103de578063a9059cbb1461040e578063dd62ed3e1461043e578063f2fde38b1461046e5761014d565b806342966c68146102f25780635187c0911461030e57806370a082311461032c578063715018a61461035c578063860a32ec1461036657806389f9a1d3146103845761014d565b806323b872dd1161011557806323b872dd1461020c5780632847c6de1461023c578063313ce5671461026c578063395093511461028a5780633aa633aa146102ba578063404e5129146102d65761014d565b806306fdde0314610152578063095ea7b31461017057806316c02129146101a057806318160ddd146101d05780631ab99e12146101ee575b600080fd5b61015a61048a565b6040516101679190611c2d565b60405180910390f35b61018a600480360381019061018591906118c4565b61051c565b6040516101979190611c12565b60405180910390f35b6101ba60048036038101906101b591906117c4565b61053a565b6040516101c79190611c12565b60405180910390f35b6101d861055a565b6040516101e59190611e0f565b60405180910390f35b6101f6610564565b6040516102039190611e0f565b60405180910390f35b61022660048036038101906102219190611831565b61056a565b6040516102339190611c12565b60405180910390f35b610256600480360381019061025191906117c4565b610662565b6040516102639190611c12565b60405180910390f35b610274610682565b6040516102819190611e2a565b60405180910390f35b6102a4600480360381019061029f91906118c4565b61068b565b6040516102b19190611c12565b60405180910390f35b6102d460048036038101906102cf9190611904565b610737565b005b6102f060048036038101906102eb9190611884565b61087a565b005b61030c6004803603810190610307919061196b565b610951565b005b61031661095e565b6040516103239190611bf7565b60405180910390f35b610346600480360381019061034191906117c4565b610984565b6040516103539190611e0f565b60405180910390f35b6103646109cd565b005b61036e610a55565b60405161037b9190611c12565b60405180910390f35b61038c610a68565b6040516103999190611e0f565b60405180910390f35b6103aa610a6e565b6040516103b79190611bf7565b60405180910390f35b6103c8610a97565b6040516103d59190611c2d565b60405180910390f35b6103f860048036038101906103f391906118c4565b610b29565b6040516104059190611c12565b60405180910390f35b610428600480360381019061042391906118c4565b610c14565b6040516104359190611c12565b60405180910390f35b610458600480360381019061045391906117f1565b610c32565b6040516104659190611e0f565b60405180910390f35b610488600480360381019061048391906117c4565b610cb9565b005b60606004805461049990611f73565b80601f01602080910402602001604051908101604052809291908181526020018280546104c590611f73565b80156105125780601f106104e757610100808354040283529160200191610512565b820191906000526020600020905b8154815290600101906020018083116104f557829003601f168201915b5050505050905090565b6000610530610529610db1565b8484610db9565b6001905092915050565b600a6020528060005260406000206000915054906101000a900460ff1681565b6000600354905090565b60085481565b6000610577848484610f84565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006105c2610db1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610642576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063990611d0f565b60405180910390fd5b6106568561064e610db1565b858403610db9565b60019150509392505050565b600b6020528060005260406000206000915054906101000a900460ff1681565b60006012905090565b600061072d610698610db1565b8484600260006106a6610db1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107289190611e61565b610db9565b6001905092915050565b61073f610db1565b73ffffffffffffffffffffffffffffffffffffffff1661075d610a6e565b73ffffffffffffffffffffffffffffffffffffffff16146107b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107aa90611d2f565b60405180910390fd5b83600660006101000a81548160ff0219169083151502179055506001600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550816007819055508060088190555082600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050565b610882610db1565b73ffffffffffffffffffffffffffffffffffffffff166108a0610a6e565b73ffffffffffffffffffffffffffffffffffffffff16146108f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ed90611d2f565b60405180910390fd5b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61095b3382611208565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109d5610db1565b73ffffffffffffffffffffffffffffffffffffffff166109f3610a6e565b73ffffffffffffffffffffffffffffffffffffffff1614610a49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4090611d2f565b60405180910390fd5b610a5360006113e1565b565b600660009054906101000a900460ff1681565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610aa690611f73565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad290611f73565b8015610b1f5780601f10610af457610100808354040283529160200191610b1f565b820191906000526020600020905b815481529060010190602001808311610b0257829003601f168201915b5050505050905090565b60008060026000610b38610db1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610bf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bec90611dcf565b60405180910390fd5b610c09610c00610db1565b85858403610db9565b600191505092915050565b6000610c28610c21610db1565b8484610f84565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610cc1610db1565b73ffffffffffffffffffffffffffffffffffffffff16610cdf610a6e565b73ffffffffffffffffffffffffffffffffffffffff1614610d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2c90611d2f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610da5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9c90611c8f565b60405180910390fd5b610dae816113e1565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2090611daf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9090611caf565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f779190611e0f565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ff4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610feb90611d8f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611064576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105b90611c4f565b60405180910390fd5b61106f8383836114a5565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ed90611ccf565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461118b9190611e61565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111ef9190611e0f565b60405180910390a3611202848484611780565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126f90611d4f565b60405180910390fd5b611284826000836114a5565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561130b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130290611c6f565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282546113639190611eb7565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113c89190611e0f565b60405180910390a36113dc83600084611780565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156115495750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b611588576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157f90611def565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611696576115e7610a6e565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806116525750611623610a6e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611691576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168890611d6f565b60405180910390fd5b61177b565b600660009054906101000a900460ff1680156116fb5750600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561177a576007548161170d84610984565b6117179190611e61565b1115801561173a57506008548161172d84610984565b6117379190611e61565b10155b611779576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177090611cef565b60405180910390fd5b5b5b505050565b505050565b600081359050611794816123d3565b92915050565b6000813590506117a9816123ea565b92915050565b6000813590506117be81612401565b92915050565b6000602082840312156117da576117d9612003565b5b60006117e884828501611785565b91505092915050565b6000806040838503121561180857611807612003565b5b600061181685828601611785565b925050602061182785828601611785565b9150509250929050565b60008060006060848603121561184a57611849612003565b5b600061185886828701611785565b935050602061186986828701611785565b925050604061187a868287016117af565b9150509250925092565b6000806040838503121561189b5761189a612003565b5b60006118a985828601611785565b92505060206118ba8582860161179a565b9150509250929050565b600080604083850312156118db576118da612003565b5b60006118e985828601611785565b92505060206118fa858286016117af565b9150509250929050565b6000806000806080858703121561191e5761191d612003565b5b600061192c8782880161179a565b945050602061193d87828801611785565b935050604061194e878288016117af565b925050606061195f878288016117af565b91505092959194509250565b60006020828403121561198157611980612003565b5b600061198f848285016117af565b91505092915050565b6119a181611eeb565b82525050565b6119b081611efd565b82525050565b60006119c182611e45565b6119cb8185611e50565b93506119db818560208601611f40565b6119e481612008565b840191505092915050565b60006119fc602383611e50565b9150611a0782612019565b604082019050919050565b6000611a1f602283611e50565b9150611a2a82612068565b604082019050919050565b6000611a42602683611e50565b9150611a4d826120b7565b604082019050919050565b6000611a65602283611e50565b9150611a7082612106565b604082019050919050565b6000611a88602683611e50565b9150611a9382612155565b604082019050919050565b6000611aab600683611e50565b9150611ab6826121a4565b602082019050919050565b6000611ace602883611e50565b9150611ad9826121cd565b604082019050919050565b6000611af1602083611e50565b9150611afc8261221c565b602082019050919050565b6000611b14602183611e50565b9150611b1f82612245565b604082019050919050565b6000611b37601683611e50565b9150611b4282612294565b602082019050919050565b6000611b5a602583611e50565b9150611b65826122bd565b604082019050919050565b6000611b7d602483611e50565b9150611b888261230c565b604082019050919050565b6000611ba0602583611e50565b9150611bab8261235b565b604082019050919050565b6000611bc3600b83611e50565b9150611bce826123aa565b602082019050919050565b611be281611f29565b82525050565b611bf181611f33565b82525050565b6000602082019050611c0c6000830184611998565b92915050565b6000602082019050611c2760008301846119a7565b92915050565b60006020820190508181036000830152611c4781846119b6565b905092915050565b60006020820190508181036000830152611c68816119ef565b9050919050565b60006020820190508181036000830152611c8881611a12565b9050919050565b60006020820190508181036000830152611ca881611a35565b9050919050565b60006020820190508181036000830152611cc881611a58565b9050919050565b60006020820190508181036000830152611ce881611a7b565b9050919050565b60006020820190508181036000830152611d0881611a9e565b9050919050565b60006020820190508181036000830152611d2881611ac1565b9050919050565b60006020820190508181036000830152611d4881611ae4565b9050919050565b60006020820190508181036000830152611d6881611b07565b9050919050565b60006020820190508181036000830152611d8881611b2a565b9050919050565b60006020820190508181036000830152611da881611b4d565b9050919050565b60006020820190508181036000830152611dc881611b70565b9050919050565b60006020820190508181036000830152611de881611b93565b9050919050565b60006020820190508181036000830152611e0881611bb6565b9050919050565b6000602082019050611e246000830184611bd9565b92915050565b6000602082019050611e3f6000830184611be8565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611e6c82611f29565b9150611e7783611f29565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611eac57611eab611fa5565b5b828201905092915050565b6000611ec282611f29565b9150611ecd83611f29565b925082821015611ee057611edf611fa5565b5b828203905092915050565b6000611ef682611f09565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611f5e578082015181840152602081019050611f43565b83811115611f6d576000848401525b50505050565b60006002820490506001821680611f8b57607f821691505b60208210811415611f9f57611f9e611fd4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b6123dc81611eeb565b81146123e757600080fd5b50565b6123f381611efd565b81146123fe57600080fd5b50565b61240a81611f29565b811461241557600080fd5b5056fea2646970667358221220826e7222af7561628cb9d11f3d20131799a40701afe9ad80e13250d0e77ea61f64736f6c6343000807003300000000000000000000000000000000000000054f529ca52576bc6892000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c806342966c68116100c35780638da5cb5b1161007c5780638da5cb5b146103a257806395d89b41146103c0578063a457c2d7146103de578063a9059cbb1461040e578063dd62ed3e1461043e578063f2fde38b1461046e5761014d565b806342966c68146102f25780635187c0911461030e57806370a082311461032c578063715018a61461035c578063860a32ec1461036657806389f9a1d3146103845761014d565b806323b872dd1161011557806323b872dd1461020c5780632847c6de1461023c578063313ce5671461026c578063395093511461028a5780633aa633aa146102ba578063404e5129146102d65761014d565b806306fdde0314610152578063095ea7b31461017057806316c02129146101a057806318160ddd146101d05780631ab99e12146101ee575b600080fd5b61015a61048a565b6040516101679190611c2d565b60405180910390f35b61018a600480360381019061018591906118c4565b61051c565b6040516101979190611c12565b60405180910390f35b6101ba60048036038101906101b591906117c4565b61053a565b6040516101c79190611c12565b60405180910390f35b6101d861055a565b6040516101e59190611e0f565b60405180910390f35b6101f6610564565b6040516102039190611e0f565b60405180910390f35b61022660048036038101906102219190611831565b61056a565b6040516102339190611c12565b60405180910390f35b610256600480360381019061025191906117c4565b610662565b6040516102639190611c12565b60405180910390f35b610274610682565b6040516102819190611e2a565b60405180910390f35b6102a4600480360381019061029f91906118c4565b61068b565b6040516102b19190611c12565b60405180910390f35b6102d460048036038101906102cf9190611904565b610737565b005b6102f060048036038101906102eb9190611884565b61087a565b005b61030c6004803603810190610307919061196b565b610951565b005b61031661095e565b6040516103239190611bf7565b60405180910390f35b610346600480360381019061034191906117c4565b610984565b6040516103539190611e0f565b60405180910390f35b6103646109cd565b005b61036e610a55565b60405161037b9190611c12565b60405180910390f35b61038c610a68565b6040516103999190611e0f565b60405180910390f35b6103aa610a6e565b6040516103b79190611bf7565b60405180910390f35b6103c8610a97565b6040516103d59190611c2d565b60405180910390f35b6103f860048036038101906103f391906118c4565b610b29565b6040516104059190611c12565b60405180910390f35b610428600480360381019061042391906118c4565b610c14565b6040516104359190611c12565b60405180910390f35b610458600480360381019061045391906117f1565b610c32565b6040516104659190611e0f565b60405180910390f35b610488600480360381019061048391906117c4565b610cb9565b005b60606004805461049990611f73565b80601f01602080910402602001604051908101604052809291908181526020018280546104c590611f73565b80156105125780601f106104e757610100808354040283529160200191610512565b820191906000526020600020905b8154815290600101906020018083116104f557829003601f168201915b5050505050905090565b6000610530610529610db1565b8484610db9565b6001905092915050565b600a6020528060005260406000206000915054906101000a900460ff1681565b6000600354905090565b60085481565b6000610577848484610f84565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006105c2610db1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610642576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063990611d0f565b60405180910390fd5b6106568561064e610db1565b858403610db9565b60019150509392505050565b600b6020528060005260406000206000915054906101000a900460ff1681565b60006012905090565b600061072d610698610db1565b8484600260006106a6610db1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107289190611e61565b610db9565b6001905092915050565b61073f610db1565b73ffffffffffffffffffffffffffffffffffffffff1661075d610a6e565b73ffffffffffffffffffffffffffffffffffffffff16146107b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107aa90611d2f565b60405180910390fd5b83600660006101000a81548160ff0219169083151502179055506001600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550816007819055508060088190555082600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050565b610882610db1565b73ffffffffffffffffffffffffffffffffffffffff166108a0610a6e565b73ffffffffffffffffffffffffffffffffffffffff16146108f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ed90611d2f565b60405180910390fd5b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61095b3382611208565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109d5610db1565b73ffffffffffffffffffffffffffffffffffffffff166109f3610a6e565b73ffffffffffffffffffffffffffffffffffffffff1614610a49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4090611d2f565b60405180910390fd5b610a5360006113e1565b565b600660009054906101000a900460ff1681565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610aa690611f73565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad290611f73565b8015610b1f5780601f10610af457610100808354040283529160200191610b1f565b820191906000526020600020905b815481529060010190602001808311610b0257829003601f168201915b5050505050905090565b60008060026000610b38610db1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610bf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bec90611dcf565b60405180910390fd5b610c09610c00610db1565b85858403610db9565b600191505092915050565b6000610c28610c21610db1565b8484610f84565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610cc1610db1565b73ffffffffffffffffffffffffffffffffffffffff16610cdf610a6e565b73ffffffffffffffffffffffffffffffffffffffff1614610d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2c90611d2f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610da5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9c90611c8f565b60405180910390fd5b610dae816113e1565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2090611daf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9090611caf565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f779190611e0f565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ff4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610feb90611d8f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611064576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105b90611c4f565b60405180910390fd5b61106f8383836114a5565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ed90611ccf565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461118b9190611e61565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111ef9190611e0f565b60405180910390a3611202848484611780565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126f90611d4f565b60405180910390fd5b611284826000836114a5565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561130b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130290611c6f565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282546113639190611eb7565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113c89190611e0f565b60405180910390a36113dc83600084611780565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156115495750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b611588576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157f90611def565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611696576115e7610a6e565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806116525750611623610a6e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611691576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168890611d6f565b60405180910390fd5b61177b565b600660009054906101000a900460ff1680156116fb5750600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561177a576007548161170d84610984565b6117179190611e61565b1115801561173a57506008548161172d84610984565b6117379190611e61565b10155b611779576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177090611cef565b60405180910390fd5b5b5b505050565b505050565b600081359050611794816123d3565b92915050565b6000813590506117a9816123ea565b92915050565b6000813590506117be81612401565b92915050565b6000602082840312156117da576117d9612003565b5b60006117e884828501611785565b91505092915050565b6000806040838503121561180857611807612003565b5b600061181685828601611785565b925050602061182785828601611785565b9150509250929050565b60008060006060848603121561184a57611849612003565b5b600061185886828701611785565b935050602061186986828701611785565b925050604061187a868287016117af565b9150509250925092565b6000806040838503121561189b5761189a612003565b5b60006118a985828601611785565b92505060206118ba8582860161179a565b9150509250929050565b600080604083850312156118db576118da612003565b5b60006118e985828601611785565b92505060206118fa858286016117af565b9150509250929050565b6000806000806080858703121561191e5761191d612003565b5b600061192c8782880161179a565b945050602061193d87828801611785565b935050604061194e878288016117af565b925050606061195f878288016117af565b91505092959194509250565b60006020828403121561198157611980612003565b5b600061198f848285016117af565b91505092915050565b6119a181611eeb565b82525050565b6119b081611efd565b82525050565b60006119c182611e45565b6119cb8185611e50565b93506119db818560208601611f40565b6119e481612008565b840191505092915050565b60006119fc602383611e50565b9150611a0782612019565b604082019050919050565b6000611a1f602283611e50565b9150611a2a82612068565b604082019050919050565b6000611a42602683611e50565b9150611a4d826120b7565b604082019050919050565b6000611a65602283611e50565b9150611a7082612106565b604082019050919050565b6000611a88602683611e50565b9150611a9382612155565b604082019050919050565b6000611aab600683611e50565b9150611ab6826121a4565b602082019050919050565b6000611ace602883611e50565b9150611ad9826121cd565b604082019050919050565b6000611af1602083611e50565b9150611afc8261221c565b602082019050919050565b6000611b14602183611e50565b9150611b1f82612245565b604082019050919050565b6000611b37601683611e50565b9150611b4282612294565b602082019050919050565b6000611b5a602583611e50565b9150611b65826122bd565b604082019050919050565b6000611b7d602483611e50565b9150611b888261230c565b604082019050919050565b6000611ba0602583611e50565b9150611bab8261235b565b604082019050919050565b6000611bc3600b83611e50565b9150611bce826123aa565b602082019050919050565b611be281611f29565b82525050565b611bf181611f33565b82525050565b6000602082019050611c0c6000830184611998565b92915050565b6000602082019050611c2760008301846119a7565b92915050565b60006020820190508181036000830152611c4781846119b6565b905092915050565b60006020820190508181036000830152611c68816119ef565b9050919050565b60006020820190508181036000830152611c8881611a12565b9050919050565b60006020820190508181036000830152611ca881611a35565b9050919050565b60006020820190508181036000830152611cc881611a58565b9050919050565b60006020820190508181036000830152611ce881611a7b565b9050919050565b60006020820190508181036000830152611d0881611a9e565b9050919050565b60006020820190508181036000830152611d2881611ac1565b9050919050565b60006020820190508181036000830152611d4881611ae4565b9050919050565b60006020820190508181036000830152611d6881611b07565b9050919050565b60006020820190508181036000830152611d8881611b2a565b9050919050565b60006020820190508181036000830152611da881611b4d565b9050919050565b60006020820190508181036000830152611dc881611b70565b9050919050565b60006020820190508181036000830152611de881611b93565b9050919050565b60006020820190508181036000830152611e0881611bb6565b9050919050565b6000602082019050611e246000830184611bd9565b92915050565b6000602082019050611e3f6000830184611be8565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611e6c82611f29565b9150611e7783611f29565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611eac57611eab611fa5565b5b828201905092915050565b6000611ec282611f29565b9150611ecd83611f29565b925082821015611ee057611edf611fa5565b5b828203905092915050565b6000611ef682611f09565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611f5e578082015181840152602081019050611f43565b83811115611f6d576000848401525b50505050565b60006002820490506001821680611f8b57607f821691505b60208210811415611f9f57611f9e611fd4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b6123dc81611eeb565b81146123e757600080fd5b50565b6123f381611efd565b81146123fe57600080fd5b50565b61240a81611f29565b811461241557600080fd5b5056fea2646970667358221220826e7222af7561628cb9d11f3d20131799a40701afe9ad80e13250d0e77ea61f64736f6c63430008070033

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

00000000000000000000000000000000000000054f529ca52576bc6892000000

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

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000054f529ca52576bc6892000000


Deployed Bytecode Sourcemap

19403:1607:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9383:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11550:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19579:42;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10503:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19510:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12201:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19628:43;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10345:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13102:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20010:341;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19867:135;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20926:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19548:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10674:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2784:103;;;:::i;:::-;;19446:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19472:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2133:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9602:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13820:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11014:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11252:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3042:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9383:100;9437:13;9470:5;9463:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9383:100;:::o;11550:169::-;11633:4;11650:39;11659:12;:10;:12::i;:::-;11673:7;11682:6;11650:8;:39::i;:::-;11707:4;11700:11;;11550:169;;;;:::o;19579:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;10503:108::-;10564:7;10591:12;;10584:19;;10503:108;:::o;19510:31::-;;;;:::o;12201:492::-;12341:4;12358:36;12368:6;12376:9;12387:6;12358:9;:36::i;:::-;12407:24;12434:11;:19;12446:6;12434:19;;;;;;;;;;;;;;;:33;12454:12;:10;:12::i;:::-;12434:33;;;;;;;;;;;;;;;;12407:60;;12506:6;12486:16;:26;;12478:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12593:57;12602:6;12610:12;:10;:12::i;:::-;12643:6;12624:16;:25;12593:8;:57::i;:::-;12681:4;12674:11;;;12201:492;;;;;:::o;19628:43::-;;;;;;;;;;;;;;;;;;;;;;:::o;10345:93::-;10403:5;10428:2;10421:9;;10345:93;:::o;13102:215::-;13190:4;13207:80;13216:12;:10;:12::i;:::-;13230:7;13276:10;13239:11;:25;13251:12;:10;:12::i;:::-;13239:25;;;;;;;;;;;;;;;:34;13265:7;13239:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13207:8;:80::i;:::-;13305:4;13298:11;;13102:215;;;;:::o;20010:341::-;2364:12;:10;:12::i;:::-;2353:23;;:7;:5;:7::i;:::-;:23;;;2345:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20160:8:::1;20150:7;;:18;;;;;;;;;;;;;;;;;;20210:4;20179:13;:30;20194:14;20179:30;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;20244:17;20225:16;:36;;;;20291:17;20272:16;:36;;;;20329:14;20319:9;;:24;;;;;;;;;;;;;;;;;;20010:341:::0;;;;:::o;19867:135::-;2364:12;:10;:12::i;:::-;2353:23;;:7;:5;:7::i;:::-;:23;;;2345:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19979:15:::1;19956:10;:20;19967:8;19956:20;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;19867:135:::0;;:::o;20926:81::-;20975:24;20981:10;20993:5;20975;:24::i;:::-;20926:81;:::o;19548:24::-;;;;;;;;;;;;;:::o;10674:127::-;10748:7;10775:9;:18;10785:7;10775:18;;;;;;;;;;;;;;;;10768:25;;10674:127;;;:::o;2784:103::-;2364:12;:10;:12::i;:::-;2353:23;;:7;:5;:7::i;:::-;:23;;;2345:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2849:30:::1;2876:1;2849:18;:30::i;:::-;2784:103::o:0;19446:19::-;;;;;;;;;;;;;:::o;19472:31::-;;;;:::o;2133:87::-;2179:7;2206:6;;;;;;;;;;;2199:13;;2133:87;:::o;9602:104::-;9658:13;9691:7;9684:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9602:104;:::o;13820:413::-;13913:4;13930:24;13957:11;:25;13969:12;:10;:12::i;:::-;13957:25;;;;;;;;;;;;;;;:34;13983:7;13957:34;;;;;;;;;;;;;;;;13930:61;;14030:15;14010:16;:35;;14002:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14123:67;14132:12;:10;:12::i;:::-;14146:7;14174:15;14155:16;:34;14123:8;:67::i;:::-;14221:4;14214:11;;;13820:413;;;;:::o;11014:175::-;11100:4;11117:42;11127:12;:10;:12::i;:::-;11141:9;11152:6;11117:9;:42::i;:::-;11177:4;11170:11;;11014:175;;;;:::o;11252:151::-;11341:7;11368:11;:18;11380:5;11368:18;;;;;;;;;;;;;;;:27;11387:7;11368:27;;;;;;;;;;;;;;;;11361:34;;11252:151;;;;:::o;3042:201::-;2364:12;:10;:12::i;:::-;2353:23;;:7;:5;:7::i;:::-;:23;;;2345:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3151:1:::1;3131:22;;:8;:22;;;;3123:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3207:28;3226:8;3207:18;:28::i;:::-;3042:201:::0;:::o;851:98::-;904:7;931:10;924:17;;851:98;:::o;17504:380::-;17657:1;17640:19;;:5;:19;;;;17632:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17738:1;17719:21;;:7;:21;;;;17711:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17822:6;17792:11;:18;17804:5;17792:18;;;;;;;;;;;;;;;:27;17811:7;17792:27;;;;;;;;;;;;;;;:36;;;;17860:7;17844:32;;17853:5;17844:32;;;17869:6;17844:32;;;;;;:::i;:::-;;;;;;;;17504:380;;;:::o;14723:733::-;14881:1;14863:20;;:6;:20;;;;14855:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14965:1;14944:23;;:9;:23;;;;14936:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15020:47;15041:6;15049:9;15060:6;15020:20;:47::i;:::-;15080:21;15104:9;:17;15114:6;15104:17;;;;;;;;;;;;;;;;15080:41;;15157:6;15140:13;:23;;15132:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15278:6;15262:13;:22;15242:9;:17;15252:6;15242:17;;;;;;;;;;;;;;;:42;;;;15330:6;15306:9;:20;15316:9;15306:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15371:9;15354:35;;15363:6;15354:35;;;15382:6;15354:35;;;;;;:::i;:::-;;;;;;;;15402:46;15422:6;15430:9;15441:6;15402:19;:46::i;:::-;14844:612;14723:733;;;:::o;16475:591::-;16578:1;16559:21;;:7;:21;;;;16551:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16631:49;16652:7;16669:1;16673:6;16631:20;:49::i;:::-;16693:22;16718:9;:18;16728:7;16718:18;;;;;;;;;;;;;;;;16693:43;;16773:6;16755:14;:24;;16747:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16892:6;16875:14;:23;16854:9;:18;16864:7;16854:18;;;;;;;;;;;;;;;:44;;;;16936:6;16920:12;;:22;;;;;;;:::i;:::-;;;;;;;;16986:1;16960:37;;16969:7;16960:37;;;16990:6;16960:37;;;;;;:::i;:::-;;;;;;;;17010:48;17030:7;17047:1;17051:6;17010:19;:48::i;:::-;16540:526;16475:591;;:::o;3403:191::-;3477:16;3496:6;;;;;;;;;;;3477:25;;3522:8;3513:6;;:17;;;;;;;;;;;;;;;;;;3577:8;3546:40;;3567:8;3546:40;;;;;;;;;;;;3466:128;3403:191;:::o;20359:559::-;20511:10;:14;20522:2;20511:14;;;;;;;;;;;;;;;;;;;;;;;;;20510:15;:36;;;;;20530:10;:16;20541:4;20530:16;;;;;;;;;;;;;;;;;;;;;;;;;20529:17;20510:36;20502:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;20598:1;20579:21;;:9;;;;;;;;;;;:21;;;20575:142;;;20633:7;:5;:7::i;:::-;20625:15;;:4;:15;;;:32;;;;20650:7;:5;:7::i;:::-;20644:13;;:2;:13;;;20625:32;20617:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;20699:7;;20575:142;20733:7;;;;;;;;;;;:30;;;;;20744:13;:19;20758:4;20744:19;;;;;;;;;;;;;;;;;;;;;;;;;20733:30;20729:182;;;20820:16;;20810:6;20788:19;20804:2;20788:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;:100;;;;;20872:16;;20862:6;20840:19;20856:2;20840:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;20788:100;20780:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;20729:182;20359:559;;;;:::o;19213:124::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:133::-;195:5;233:6;220:20;211:29;;249:30;273:5;249:30;:::i;:::-;152:133;;;;:::o;291:139::-;337:5;375:6;362:20;353:29;;391:33;418:5;391:33;:::i;:::-;291:139;;;;:::o;436:329::-;495:6;544:2;532:9;523:7;519:23;515:32;512:119;;;550:79;;:::i;:::-;512:119;670:1;695:53;740:7;731:6;720:9;716:22;695:53;:::i;:::-;685:63;;641:117;436:329;;;;:::o;771:474::-;839:6;847;896:2;884:9;875:7;871:23;867:32;864:119;;;902:79;;:::i;:::-;864:119;1022:1;1047:53;1092:7;1083:6;1072:9;1068:22;1047:53;:::i;:::-;1037:63;;993:117;1149:2;1175:53;1220:7;1211:6;1200:9;1196:22;1175:53;:::i;:::-;1165:63;;1120:118;771:474;;;;;:::o;1251:619::-;1328:6;1336;1344;1393:2;1381:9;1372:7;1368:23;1364:32;1361:119;;;1399:79;;:::i;:::-;1361:119;1519:1;1544:53;1589:7;1580:6;1569:9;1565:22;1544:53;:::i;:::-;1534:63;;1490:117;1646:2;1672:53;1717:7;1708:6;1697:9;1693:22;1672:53;:::i;:::-;1662:63;;1617:118;1774:2;1800:53;1845:7;1836:6;1825:9;1821:22;1800:53;:::i;:::-;1790:63;;1745:118;1251:619;;;;;:::o;1876:468::-;1941:6;1949;1998:2;1986:9;1977:7;1973:23;1969:32;1966:119;;;2004:79;;:::i;:::-;1966:119;2124:1;2149:53;2194:7;2185:6;2174:9;2170:22;2149:53;:::i;:::-;2139:63;;2095:117;2251:2;2277:50;2319:7;2310:6;2299:9;2295:22;2277:50;:::i;:::-;2267:60;;2222:115;1876:468;;;;;:::o;2350:474::-;2418:6;2426;2475:2;2463:9;2454:7;2450:23;2446:32;2443:119;;;2481:79;;:::i;:::-;2443:119;2601:1;2626:53;2671:7;2662:6;2651:9;2647:22;2626:53;:::i;:::-;2616:63;;2572:117;2728:2;2754:53;2799:7;2790:6;2779:9;2775:22;2754:53;:::i;:::-;2744:63;;2699:118;2350:474;;;;;:::o;2830:759::-;2913:6;2921;2929;2937;2986:3;2974:9;2965:7;2961:23;2957:33;2954:120;;;2993:79;;:::i;:::-;2954:120;3113:1;3138:50;3180:7;3171:6;3160:9;3156:22;3138:50;:::i;:::-;3128:60;;3084:114;3237:2;3263:53;3308:7;3299:6;3288:9;3284:22;3263:53;:::i;:::-;3253:63;;3208:118;3365:2;3391:53;3436:7;3427:6;3416:9;3412:22;3391:53;:::i;:::-;3381:63;;3336:118;3493:2;3519:53;3564:7;3555:6;3544:9;3540:22;3519:53;:::i;:::-;3509:63;;3464:118;2830:759;;;;;;;:::o;3595:329::-;3654:6;3703:2;3691:9;3682:7;3678:23;3674:32;3671:119;;;3709:79;;:::i;:::-;3671:119;3829:1;3854:53;3899:7;3890:6;3879:9;3875:22;3854:53;:::i;:::-;3844:63;;3800:117;3595:329;;;;:::o;3930:118::-;4017:24;4035:5;4017:24;:::i;:::-;4012:3;4005:37;3930:118;;:::o;4054:109::-;4135:21;4150:5;4135:21;:::i;:::-;4130:3;4123:34;4054:109;;:::o;4169:364::-;4257:3;4285:39;4318:5;4285:39;:::i;:::-;4340:71;4404:6;4399:3;4340:71;:::i;:::-;4333:78;;4420:52;4465:6;4460:3;4453:4;4446:5;4442:16;4420:52;:::i;:::-;4497:29;4519:6;4497:29;:::i;:::-;4492:3;4488:39;4481:46;;4261:272;4169:364;;;;:::o;4539:366::-;4681:3;4702:67;4766:2;4761:3;4702:67;:::i;:::-;4695:74;;4778:93;4867:3;4778:93;:::i;:::-;4896:2;4891:3;4887:12;4880:19;;4539:366;;;:::o;4911:::-;5053:3;5074:67;5138:2;5133:3;5074:67;:::i;:::-;5067:74;;5150:93;5239:3;5150:93;:::i;:::-;5268:2;5263:3;5259:12;5252:19;;4911:366;;;:::o;5283:::-;5425:3;5446:67;5510:2;5505:3;5446:67;:::i;:::-;5439:74;;5522:93;5611:3;5522:93;:::i;:::-;5640:2;5635:3;5631:12;5624:19;;5283:366;;;:::o;5655:::-;5797:3;5818:67;5882:2;5877:3;5818:67;:::i;:::-;5811:74;;5894:93;5983:3;5894:93;:::i;:::-;6012:2;6007:3;6003:12;5996:19;;5655:366;;;:::o;6027:::-;6169:3;6190:67;6254:2;6249:3;6190:67;:::i;:::-;6183:74;;6266:93;6355:3;6266:93;:::i;:::-;6384:2;6379:3;6375:12;6368:19;;6027:366;;;:::o;6399:365::-;6541:3;6562:66;6626:1;6621:3;6562:66;:::i;:::-;6555:73;;6637:93;6726:3;6637:93;:::i;:::-;6755:2;6750:3;6746:12;6739:19;;6399:365;;;:::o;6770:366::-;6912:3;6933:67;6997:2;6992:3;6933:67;:::i;:::-;6926:74;;7009:93;7098:3;7009:93;:::i;:::-;7127:2;7122:3;7118:12;7111:19;;6770:366;;;:::o;7142:::-;7284:3;7305:67;7369:2;7364:3;7305:67;:::i;:::-;7298:74;;7381:93;7470:3;7381:93;:::i;:::-;7499:2;7494:3;7490:12;7483:19;;7142:366;;;:::o;7514:::-;7656:3;7677:67;7741:2;7736:3;7677:67;:::i;:::-;7670:74;;7753:93;7842:3;7753:93;:::i;:::-;7871:2;7866:3;7862:12;7855:19;;7514:366;;;:::o;7886:::-;8028:3;8049:67;8113:2;8108:3;8049:67;:::i;:::-;8042:74;;8125:93;8214:3;8125:93;:::i;:::-;8243:2;8238:3;8234:12;8227:19;;7886:366;;;:::o;8258:::-;8400:3;8421:67;8485:2;8480:3;8421:67;:::i;:::-;8414:74;;8497:93;8586:3;8497:93;:::i;:::-;8615:2;8610:3;8606:12;8599:19;;8258:366;;;:::o;8630:::-;8772:3;8793:67;8857:2;8852:3;8793:67;:::i;:::-;8786:74;;8869:93;8958:3;8869:93;:::i;:::-;8987:2;8982:3;8978:12;8971:19;;8630:366;;;:::o;9002:::-;9144:3;9165:67;9229:2;9224:3;9165:67;:::i;:::-;9158:74;;9241:93;9330:3;9241:93;:::i;:::-;9359:2;9354:3;9350:12;9343:19;;9002:366;;;:::o;9374:::-;9516:3;9537:67;9601:2;9596:3;9537:67;:::i;:::-;9530:74;;9613:93;9702:3;9613:93;:::i;:::-;9731:2;9726:3;9722:12;9715:19;;9374:366;;;:::o;9746:118::-;9833:24;9851:5;9833:24;:::i;:::-;9828:3;9821:37;9746:118;;:::o;9870:112::-;9953:22;9969:5;9953:22;:::i;:::-;9948:3;9941:35;9870:112;;:::o;9988:222::-;10081:4;10119:2;10108:9;10104:18;10096:26;;10132:71;10200:1;10189:9;10185:17;10176:6;10132:71;:::i;:::-;9988:222;;;;:::o;10216:210::-;10303:4;10341:2;10330:9;10326:18;10318:26;;10354:65;10416:1;10405:9;10401:17;10392:6;10354:65;:::i;:::-;10216:210;;;;:::o;10432:313::-;10545:4;10583:2;10572:9;10568:18;10560:26;;10632:9;10626:4;10622:20;10618:1;10607:9;10603:17;10596:47;10660:78;10733:4;10724:6;10660:78;:::i;:::-;10652:86;;10432:313;;;;:::o;10751:419::-;10917:4;10955:2;10944:9;10940:18;10932:26;;11004:9;10998:4;10994:20;10990:1;10979:9;10975:17;10968:47;11032:131;11158:4;11032:131;:::i;:::-;11024:139;;10751:419;;;:::o;11176:::-;11342:4;11380:2;11369:9;11365:18;11357:26;;11429:9;11423:4;11419:20;11415:1;11404:9;11400:17;11393:47;11457:131;11583:4;11457:131;:::i;:::-;11449:139;;11176:419;;;:::o;11601:::-;11767:4;11805:2;11794:9;11790:18;11782:26;;11854:9;11848:4;11844:20;11840:1;11829:9;11825:17;11818:47;11882:131;12008:4;11882:131;:::i;:::-;11874:139;;11601:419;;;:::o;12026:::-;12192:4;12230:2;12219:9;12215:18;12207:26;;12279:9;12273:4;12269:20;12265:1;12254:9;12250:17;12243:47;12307:131;12433:4;12307:131;:::i;:::-;12299:139;;12026:419;;;:::o;12451:::-;12617:4;12655:2;12644:9;12640:18;12632:26;;12704:9;12698:4;12694:20;12690:1;12679:9;12675:17;12668:47;12732:131;12858:4;12732:131;:::i;:::-;12724:139;;12451:419;;;:::o;12876:::-;13042:4;13080:2;13069:9;13065:18;13057:26;;13129:9;13123:4;13119:20;13115:1;13104:9;13100:17;13093:47;13157:131;13283:4;13157:131;:::i;:::-;13149:139;;12876:419;;;:::o;13301:::-;13467:4;13505:2;13494:9;13490:18;13482:26;;13554:9;13548:4;13544:20;13540:1;13529:9;13525:17;13518:47;13582:131;13708:4;13582:131;:::i;:::-;13574:139;;13301:419;;;:::o;13726:::-;13892:4;13930:2;13919:9;13915:18;13907:26;;13979:9;13973:4;13969:20;13965:1;13954:9;13950:17;13943:47;14007:131;14133:4;14007:131;:::i;:::-;13999:139;;13726:419;;;:::o;14151:::-;14317:4;14355:2;14344:9;14340:18;14332:26;;14404:9;14398:4;14394:20;14390:1;14379:9;14375:17;14368:47;14432:131;14558:4;14432:131;:::i;:::-;14424:139;;14151:419;;;:::o;14576:::-;14742:4;14780:2;14769:9;14765:18;14757:26;;14829:9;14823:4;14819:20;14815:1;14804:9;14800:17;14793:47;14857:131;14983:4;14857:131;:::i;:::-;14849:139;;14576:419;;;:::o;15001:::-;15167:4;15205:2;15194:9;15190:18;15182:26;;15254:9;15248:4;15244:20;15240:1;15229:9;15225:17;15218:47;15282:131;15408:4;15282:131;:::i;:::-;15274:139;;15001:419;;;:::o;15426:::-;15592:4;15630:2;15619:9;15615:18;15607:26;;15679:9;15673:4;15669:20;15665:1;15654:9;15650:17;15643:47;15707:131;15833:4;15707:131;:::i;:::-;15699:139;;15426:419;;;:::o;15851:::-;16017:4;16055:2;16044:9;16040:18;16032:26;;16104:9;16098:4;16094:20;16090:1;16079:9;16075:17;16068:47;16132:131;16258:4;16132:131;:::i;:::-;16124:139;;15851:419;;;:::o;16276:::-;16442:4;16480:2;16469:9;16465:18;16457:26;;16529:9;16523:4;16519:20;16515:1;16504:9;16500:17;16493:47;16557:131;16683:4;16557:131;:::i;:::-;16549:139;;16276:419;;;:::o;16701:222::-;16794:4;16832:2;16821:9;16817:18;16809:26;;16845:71;16913:1;16902:9;16898:17;16889:6;16845:71;:::i;:::-;16701:222;;;;:::o;16929:214::-;17018:4;17056:2;17045:9;17041:18;17033:26;;17069:67;17133:1;17122:9;17118:17;17109:6;17069:67;:::i;:::-;16929:214;;;;:::o;17230:99::-;17282:6;17316:5;17310:12;17300:22;;17230:99;;;:::o;17335:169::-;17419:11;17453:6;17448:3;17441:19;17493:4;17488:3;17484:14;17469:29;;17335:169;;;;:::o;17510:305::-;17550:3;17569:20;17587:1;17569:20;:::i;:::-;17564:25;;17603:20;17621:1;17603:20;:::i;:::-;17598:25;;17757:1;17689:66;17685:74;17682:1;17679:81;17676:107;;;17763:18;;:::i;:::-;17676:107;17807:1;17804;17800:9;17793:16;;17510:305;;;;:::o;17821:191::-;17861:4;17881:20;17899:1;17881:20;:::i;:::-;17876:25;;17915:20;17933:1;17915:20;:::i;:::-;17910:25;;17954:1;17951;17948:8;17945:34;;;17959:18;;:::i;:::-;17945:34;18004:1;18001;17997:9;17989:17;;17821:191;;;;:::o;18018:96::-;18055:7;18084:24;18102:5;18084:24;:::i;:::-;18073:35;;18018:96;;;:::o;18120:90::-;18154:7;18197:5;18190:13;18183:21;18172:32;;18120:90;;;:::o;18216:126::-;18253:7;18293:42;18286:5;18282:54;18271:65;;18216:126;;;:::o;18348:77::-;18385:7;18414:5;18403:16;;18348:77;;;:::o;18431:86::-;18466:7;18506:4;18499:5;18495:16;18484:27;;18431:86;;;:::o;18523:307::-;18591:1;18601:113;18615:6;18612:1;18609:13;18601:113;;;18700:1;18695:3;18691:11;18685:18;18681:1;18676:3;18672:11;18665:39;18637:2;18634:1;18630:10;18625:15;;18601:113;;;18732:6;18729:1;18726:13;18723:101;;;18812:1;18803:6;18798:3;18794:16;18787:27;18723:101;18572:258;18523:307;;;:::o;18836:320::-;18880:6;18917:1;18911:4;18907:12;18897:22;;18964:1;18958:4;18954:12;18985:18;18975:81;;19041:4;19033:6;19029:17;19019:27;;18975:81;19103:2;19095:6;19092:14;19072:18;19069:38;19066:84;;;19122:18;;:::i;:::-;19066:84;18887:269;18836:320;;;:::o;19162:180::-;19210:77;19207:1;19200:88;19307:4;19304:1;19297:15;19331:4;19328:1;19321:15;19348:180;19396:77;19393:1;19386:88;19493:4;19490:1;19483:15;19517:4;19514:1;19507:15;19657:117;19766:1;19763;19756:12;19780:102;19821:6;19872:2;19868:7;19863:2;19856:5;19852:14;19848:28;19838:38;;19780:102;;;:::o;19888:222::-;20028:34;20024:1;20016:6;20012:14;20005:58;20097:5;20092:2;20084:6;20080:15;20073:30;19888:222;:::o;20116:221::-;20256:34;20252:1;20244:6;20240:14;20233:58;20325:4;20320:2;20312:6;20308:15;20301:29;20116:221;:::o;20343:225::-;20483:34;20479:1;20471:6;20467:14;20460:58;20552:8;20547:2;20539:6;20535:15;20528:33;20343:225;:::o;20574:221::-;20714:34;20710:1;20702:6;20698:14;20691:58;20783:4;20778:2;20770:6;20766:15;20759:29;20574:221;:::o;20801:225::-;20941:34;20937:1;20929:6;20925:14;20918:58;21010:8;21005:2;20997:6;20993:15;20986:33;20801:225;:::o;21032:156::-;21172:8;21168:1;21160:6;21156:14;21149:32;21032:156;:::o;21194:227::-;21334:34;21330:1;21322:6;21318:14;21311:58;21403:10;21398:2;21390:6;21386:15;21379:35;21194:227;:::o;21427:182::-;21567:34;21563:1;21555:6;21551:14;21544:58;21427:182;:::o;21615:220::-;21755:34;21751:1;21743:6;21739:14;21732:58;21824:3;21819:2;21811:6;21807:15;21800:28;21615:220;:::o;21841:172::-;21981:24;21977:1;21969:6;21965:14;21958:48;21841:172;:::o;22019:224::-;22159:34;22155:1;22147:6;22143:14;22136:58;22228:7;22223:2;22215:6;22211:15;22204:32;22019:224;:::o;22249:223::-;22389:34;22385:1;22377:6;22373:14;22366:58;22458:6;22453:2;22445:6;22441:15;22434:31;22249:223;:::o;22478:224::-;22618:34;22614:1;22606:6;22602:14;22595:58;22687:7;22682:2;22674:6;22670:15;22663:32;22478:224;:::o;22708:161::-;22848:13;22844:1;22836:6;22832:14;22825:37;22708:161;:::o;22875:122::-;22948:24;22966:5;22948:24;:::i;:::-;22941:5;22938:35;22928:63;;22987:1;22984;22977:12;22928:63;22875:122;:::o;23003:116::-;23073:21;23088:5;23073:21;:::i;:::-;23066:5;23063:32;23053:60;;23109:1;23106;23099:12;23053:60;23003:116;:::o;23125:122::-;23198:24;23216:5;23198:24;:::i;:::-;23191:5;23188:35;23178:63;;23237:1;23234;23227:12;23178:63;23125:122;:::o

Swarm Source

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