ETH Price: $3,164.87 (-7.91%)
Gas: 11 Gwei

Token

Kenta (KENTA)
 

Overview

Max Total Supply

60,117,450,000 KENTA

Holders

60

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.582277922779536926 KENTA

Value
$0.00
0x10144301511e6d3b0cc2156edc17737f4add0f1f
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:
Kenta

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-13
*/

// File: ..\..\node_modules\@openzeppelin\contracts\token\ERC20\IERC20.sol

// OpenZeppelin Contracts (last updated v4.9.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: ..\..\node_modules\@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: ..\..\node_modules\@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: ..\..\node_modules\@openzeppelin\contracts\token\ERC20\ERC20.sol

// OpenZeppelin Contracts (last updated v4.9.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].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's 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:
     *
     * - `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: ..\..\node_modules\@openzeppelin\contracts\security\Pausable.sol

// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// File: @openzeppelin\contracts\token\ERC20\extensions\ERC20Pausable.sol

// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/ERC20Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev ERC20 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 *
 * IMPORTANT: This contract does not include public pause and unpause functions. In
 * addition to inheriting this contract, you must define both functions, invoking the
 * {Pausable-_pause} and {Pausable-_unpause} internal functions, with appropriate
 * access control, e.g. using {AccessControl} or {Ownable}. Not doing so will
 * make the contract unpausable.
 */
abstract contract ERC20Pausable is ERC20, Pausable {
    /**
     * @dev See {ERC20-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);

        require(!paused(), "ERC20Pausable: token transfer while paused");
    }
}

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

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

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

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

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

// File: Kenta.sol

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
 * @title Kenta
 * @dev Implementation of an ERC20 token with additional features.
 */
contract Kenta is ERC20Pausable, Ownable {
    uint256 constant TOTAL_SUPPLY = 120 * 10**9 * 10**18;
    uint256 constant TAX_FEE = 2; // 2% tax fee

    address public taxWallet = 0xc5403ee71Ac5d637FFd870A24AFF0773DB1B017A;

    event FunctionCalled(string functionName);
    event TransferWithTax(address indexed sender, address indexed recipient, uint256 amount, uint256 taxAmount);

    /**
     * @dev Constructor that assigns the total supply to the creator of the contract.
     */
    constructor() ERC20("Kenta", "KENTA") {
        _mint(msg.sender, TOTAL_SUPPLY);
    }

    /**
     * @dev Changes the tax wallet address.
     * @param _taxWallet The address of the new tax wallet.
     */
    function setTaxWallet(address _taxWallet) public onlyOwner {
        require(_taxWallet != address(0), "Invalid address");
        taxWallet = _taxWallet;
        emit FunctionCalled("SetTaxWallet");
    }

    /**
     * @dev Burns an amount of tokens.
     * @param amount The amount to burn.
     */
    function burn(uint256 amount) public onlyOwner {
        _burn(msg.sender, amount);
        emit FunctionCalled("Burn");
    }

    /**
     * @dev Renounces ownership of the contract.
     */
    function renounceOwnership() public virtual override onlyOwner {
        super.renounceOwnership();
        emit FunctionCalled("RenounceOwnership");
    }

    /**
     * @dev Pauses token transfers.
     */
    function pause() public onlyOwner {
        _pause();
        emit FunctionCalled("Pause");
    }

    /**
     * @dev Resumes token transfers after a pause.
     */
    function unpause() public onlyOwner {
        _unpause();
        emit FunctionCalled("Unpause");
    }

    /**
     * @dev Returns the maximum purchase limit, which is 1% of the total supply.
     */
    function getMaxPurchaseLimit() public view returns (uint256) {
        return totalSupply() / 100;
    }

    /**
     * @dev Carries out a token transfer considering the tax.
     * @param sender The address of the sender.
     * @param recipient The address of the recipient.
     * @param amount The amount to transfer.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual override {
        require(amount > 0, "Amount must be greater than 0");
        if (sender != owner()) {
            require(amount <= getMaxPurchaseLimit(), "Amount exceeds the 1% total supply limit");
        }

        uint256 taxAmount = (amount * TAX_FEE) / 100;
        uint256 amountAfterTax = amount - taxAmount;

        super._transfer(sender, taxWallet, taxAmount); // Transfer of the tax
        super._transfer(sender, recipient, amountAfterTax);

        emit TransferWithTax(sender, recipient, amountAfterTax, taxAmount);
    }
}

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":false,"internalType":"string","name":"functionName","type":"string"}],"name":"FunctionCalled","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"taxAmount","type":"uint256"}],"name":"TransferWithTax","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getMaxPurchaseLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_taxWallet","type":"address"}],"name":"setTaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405273c5403ee71ac5d637ffd870a24aff0773db1b017a600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200006657600080fd5b506040518060400160405280600581526020017f4b656e74610000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4b454e54410000000000000000000000000000000000000000000000000000008152508160039081620000e491906200069f565b508060049081620000f691906200069f565b5050506000600560006101000a81548160ff02191690831515021790555062000134620001286200015960201b60201c565b6200016160201b60201c565b62000153336c0183bdac6ae9bc1c8cc00000006200022760201b60201c565b62000939565b600033905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000299576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200029090620007e7565b60405180910390fd5b620002ad600083836200039460201b60201c565b8060026000828254620002c1919062000838565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000374919062000884565b60405180910390a362000390600083836200040460201b60201c565b5050565b620003ac8383836200040960201b62000a2b1760201c565b620003bc6200040e60201b60201c565b15620003ff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003f69062000917565b60405180910390fd5b505050565b505050565b505050565b6000600560009054906101000a900460ff16905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004a757607f821691505b602082108103620004bd57620004bc6200045f565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005277fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004e8565b620005338683620004e8565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005806200057a62000574846200054b565b62000555565b6200054b565b9050919050565b6000819050919050565b6200059c836200055f565b620005b4620005ab8262000587565b848454620004f5565b825550505050565b600090565b620005cb620005bc565b620005d881848462000591565b505050565b5b818110156200060057620005f4600082620005c1565b600181019050620005de565b5050565b601f8211156200064f576200061981620004c3565b6200062484620004d8565b8101602085101562000634578190505b6200064c6200064385620004d8565b830182620005dd565b50505b505050565b600082821c905092915050565b6000620006746000198460080262000654565b1980831691505092915050565b60006200068f838362000661565b9150826002028217905092915050565b620006aa8262000425565b67ffffffffffffffff811115620006c657620006c562000430565b5b620006d282546200048e565b620006df82828562000604565b600060209050601f83116001811462000717576000841562000702578287015190505b6200070e858262000681565b8655506200077e565b601f1984166200072786620004c3565b60005b8281101562000751578489015182556001820191506020850194506020810190506200072a565b868310156200077157848901516200076d601f89168262000661565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620007cf601f8362000786565b9150620007dc8262000797565b602082019050919050565b600060208201905081810360008301526200080281620007c0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000845826200054b565b915062000852836200054b565b92508282019050808211156200086d576200086c62000809565b5b92915050565b6200087e816200054b565b82525050565b60006020820190506200089b600083018462000873565b92915050565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b6000620008ff602a8362000786565b91506200090c82620008a1565b604082019050919050565b600060208201905081810360008301526200093281620008f0565b9050919050565b61259480620009496000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c80635c975abb116100b857806395d89b411161007c57806395d89b4114610308578063a457c2d714610326578063a9059cbb14610356578063dd62ed3e14610386578063ea414b28146103b6578063f2fde38b146103d257610137565b80635c975abb1461028857806370a08231146102a6578063715018a6146102d65780638456cb59146102e05780638da5cb5b146102ea57610137565b8063313ce567116100ff578063313ce567146101f657806339509351146102145780633b4fa771146102445780633f4ba83a1461026257806342966c681461026c57610137565b806306fdde031461013c578063095ea7b31461015a57806318160ddd1461018a57806323b872dd146101a85780632dc0562d146101d8575b600080fd5b6101446103ee565b6040516101519190611609565b60405180910390f35b610174600480360381019061016f91906116c4565b610480565b604051610181919061171f565b60405180910390f35b6101926104a3565b60405161019f9190611749565b60405180910390f35b6101c260048036038101906101bd9190611764565b6104ad565b6040516101cf919061171f565b60405180910390f35b6101e06104dc565b6040516101ed91906117c6565b60405180910390f35b6101fe610502565b60405161020b91906117fd565b60405180910390f35b61022e600480360381019061022991906116c4565b61050b565b60405161023b919061171f565b60405180910390f35b61024c610542565b6040516102599190611749565b60405180910390f35b61026a61055d565b005b61028660048036038101906102819190611818565b6105a4565b005b6102906105ee565b60405161029d919061171f565b60405180910390f35b6102c060048036038101906102bb9190611845565b610605565b6040516102cd9190611749565b60405180910390f35b6102de61064d565b005b6102e8610694565b005b6102f26106db565b6040516102ff91906117c6565b60405180910390f35b610310610705565b60405161031d9190611609565b60405180910390f35b610340600480360381019061033b91906116c4565b610797565b60405161034d919061171f565b60405180910390f35b610370600480360381019061036b91906116c4565b61080e565b60405161037d919061171f565b60405180910390f35b6103a0600480360381019061039b9190611872565b610831565b6040516103ad9190611749565b60405180910390f35b6103d060048036038101906103cb9190611845565b6108b8565b005b6103ec60048036038101906103e79190611845565b6109a8565b005b6060600380546103fd906118e1565b80601f0160208091040260200160405190810160405280929190818152602001828054610429906118e1565b80156104765780601f1061044b57610100808354040283529160200191610476565b820191906000526020600020905b81548152906001019060200180831161045957829003601f168201915b5050505050905090565b60008061048b610a30565b9050610498818585610a38565b600191505092915050565b6000600254905090565b6000806104b8610a30565b90506104c5858285610c01565b6104d0858585610c8d565b60019150509392505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b600080610516610a30565b90506105378185856105288589610831565b6105329190611941565b610a38565b600191505092915050565b6000606461054e6104a3565b61055891906119a4565b905090565b610565610e28565b61056d610ea6565b7fac7c932dfed5a12f8cee69b87b1db28759f9abab0760d37031670980a55a216860405161059a90611a21565b60405180910390a1565b6105ac610e28565b6105b63382610f09565b7fac7c932dfed5a12f8cee69b87b1db28759f9abab0760d37031670980a55a21686040516105e390611a8d565b60405180910390a150565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610655610e28565b61065d6110d6565b7fac7c932dfed5a12f8cee69b87b1db28759f9abab0760d37031670980a55a216860405161068a90611af9565b60405180910390a1565b61069c610e28565b6106a46110ea565b7fac7c932dfed5a12f8cee69b87b1db28759f9abab0760d37031670980a55a21686040516106d190611b65565b60405180910390a1565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610714906118e1565b80601f0160208091040260200160405190810160405280929190818152602001828054610740906118e1565b801561078d5780601f106107625761010080835404028352916020019161078d565b820191906000526020600020905b81548152906001019060200180831161077057829003601f168201915b5050505050905090565b6000806107a2610a30565b905060006107b08286610831565b9050838110156107f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ec90611bf7565b60405180910390fd5b6108028286868403610a38565b60019250505092915050565b600080610819610a30565b9050610826818585610c8d565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108c0610e28565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361092f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092690611c63565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fac7c932dfed5a12f8cee69b87b1db28759f9abab0760d37031670980a55a216860405161099d90611ccf565b60405180910390a150565b6109b0610e28565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1690611d61565b60405180910390fd5b610a288161114d565b50565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610aa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9e90611df3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0d90611e85565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610bf49190611749565b60405180910390a3505050565b6000610c0d8484610831565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c875781811015610c79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7090611ef1565b60405180910390fd5b610c868484848403610a38565b5b50505050565b60008111610cd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc790611f5d565b60405180910390fd5b610cd86106db565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610d5557610d12610542565b811115610d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4b90611fef565b60405180910390fd5b5b60006064600283610d66919061200f565b610d7091906119a4565b905060008183610d809190612051565b9050610daf85600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611213565b610dba858583611213565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167f6d2113f8bd5342f6e43e5be71ffa1b2f8d07c3c24185fc9d1c3b77785265e5b58385604051610e19929190612085565b60405180910390a35050505050565b610e30610a30565b73ffffffffffffffffffffffffffffffffffffffff16610e4e6106db565b73ffffffffffffffffffffffffffffffffffffffff1614610ea4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9b906120fa565b60405180910390fd5b565b610eae611489565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610ef2610a30565b604051610eff91906117c6565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6f9061218c565b60405180910390fd5b610f84826000836114d2565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561100a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110019061221e565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110bd9190611749565b60405180910390a36110d18360008461152a565b505050565b6110de610e28565b6110e8600061114d565b565b6110f261152f565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611136610a30565b60405161114391906117c6565b60405180910390a1565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611282576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611279906122b0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e890612342565b60405180910390fd5b6112fc8383836114d2565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611382576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611379906123d4565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114709190611749565b60405180910390a361148384848461152a565b50505050565b6114916105ee565b6114d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c790612440565b60405180910390fd5b565b6114dd838383610a2b565b6114e56105ee565b15611525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151c906124d2565b60405180910390fd5b505050565b505050565b6115376105ee565b15611577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156e9061253e565b60405180910390fd5b565b600081519050919050565b600082825260208201905092915050565b60005b838110156115b3578082015181840152602081019050611598565b60008484015250505050565b6000601f19601f8301169050919050565b60006115db82611579565b6115e58185611584565b93506115f5818560208601611595565b6115fe816115bf565b840191505092915050565b6000602082019050818103600083015261162381846115d0565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061165b82611630565b9050919050565b61166b81611650565b811461167657600080fd5b50565b60008135905061168881611662565b92915050565b6000819050919050565b6116a18161168e565b81146116ac57600080fd5b50565b6000813590506116be81611698565b92915050565b600080604083850312156116db576116da61162b565b5b60006116e985828601611679565b92505060206116fa858286016116af565b9150509250929050565b60008115159050919050565b61171981611704565b82525050565b60006020820190506117346000830184611710565b92915050565b6117438161168e565b82525050565b600060208201905061175e600083018461173a565b92915050565b60008060006060848603121561177d5761177c61162b565b5b600061178b86828701611679565b935050602061179c86828701611679565b92505060406117ad868287016116af565b9150509250925092565b6117c081611650565b82525050565b60006020820190506117db60008301846117b7565b92915050565b600060ff82169050919050565b6117f7816117e1565b82525050565b600060208201905061181260008301846117ee565b92915050565b60006020828403121561182e5761182d61162b565b5b600061183c848285016116af565b91505092915050565b60006020828403121561185b5761185a61162b565b5b600061186984828501611679565b91505092915050565b600080604083850312156118895761188861162b565b5b600061189785828601611679565b92505060206118a885828601611679565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806118f957607f821691505b60208210810361190c5761190b6118b2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061194c8261168e565b91506119578361168e565b925082820190508082111561196f5761196e611912565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006119af8261168e565b91506119ba8361168e565b9250826119ca576119c9611975565b5b828204905092915050565b7f556e706175736500000000000000000000000000000000000000000000000000600082015250565b6000611a0b600783611584565b9150611a16826119d5565b602082019050919050565b60006020820190508181036000830152611a3a816119fe565b9050919050565b7f4275726e00000000000000000000000000000000000000000000000000000000600082015250565b6000611a77600483611584565b9150611a8282611a41565b602082019050919050565b60006020820190508181036000830152611aa681611a6a565b9050919050565b7f52656e6f756e63654f776e657273686970000000000000000000000000000000600082015250565b6000611ae3601183611584565b9150611aee82611aad565b602082019050919050565b60006020820190508181036000830152611b1281611ad6565b9050919050565b7f5061757365000000000000000000000000000000000000000000000000000000600082015250565b6000611b4f600583611584565b9150611b5a82611b19565b602082019050919050565b60006020820190508181036000830152611b7e81611b42565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611be1602583611584565b9150611bec82611b85565b604082019050919050565b60006020820190508181036000830152611c1081611bd4565b9050919050565b7f496e76616c696420616464726573730000000000000000000000000000000000600082015250565b6000611c4d600f83611584565b9150611c5882611c17565b602082019050919050565b60006020820190508181036000830152611c7c81611c40565b9050919050565b7f53657454617857616c6c65740000000000000000000000000000000000000000600082015250565b6000611cb9600c83611584565b9150611cc482611c83565b602082019050919050565b60006020820190508181036000830152611ce881611cac565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611d4b602683611584565b9150611d5682611cef565b604082019050919050565b60006020820190508181036000830152611d7a81611d3e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ddd602483611584565b9150611de882611d81565b604082019050919050565b60006020820190508181036000830152611e0c81611dd0565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e6f602283611584565b9150611e7a82611e13565b604082019050919050565b60006020820190508181036000830152611e9e81611e62565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611edb601d83611584565b9150611ee682611ea5565b602082019050919050565b60006020820190508181036000830152611f0a81611ece565b9050919050565b7f416d6f756e74206d7573742062652067726561746572207468616e2030000000600082015250565b6000611f47601d83611584565b9150611f5282611f11565b602082019050919050565b60006020820190508181036000830152611f7681611f3a565b9050919050565b7f416d6f756e7420657863656564732074686520312520746f74616c207375707060008201527f6c79206c696d6974000000000000000000000000000000000000000000000000602082015250565b6000611fd9602883611584565b9150611fe482611f7d565b604082019050919050565b6000602082019050818103600083015261200881611fcc565b9050919050565b600061201a8261168e565b91506120258361168e565b92508282026120338161168e565b9150828204841483151761204a57612049611912565b5b5092915050565b600061205c8261168e565b91506120678361168e565b925082820390508181111561207f5761207e611912565b5b92915050565b600060408201905061209a600083018561173a565b6120a7602083018461173a565b9392505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006120e4602083611584565b91506120ef826120ae565b602082019050919050565b60006020820190508181036000830152612113816120d7565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612176602183611584565b91506121818261211a565b604082019050919050565b600060208201905081810360008301526121a581612169565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612208602283611584565b9150612213826121ac565b604082019050919050565b60006020820190508181036000830152612237816121fb565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061229a602583611584565b91506122a58261223e565b604082019050919050565b600060208201905081810360008301526122c98161228d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061232c602383611584565b9150612337826122d0565b604082019050919050565b6000602082019050818103600083015261235b8161231f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006123be602683611584565b91506123c982612362565b604082019050919050565b600060208201905081810360008301526123ed816123b1565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b600061242a601483611584565b9150612435826123f4565b602082019050919050565b600060208201905081810360008301526124598161241d565b9050919050565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b60006124bc602a83611584565b91506124c782612460565b604082019050919050565b600060208201905081810360008301526124eb816124af565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000612528601083611584565b9150612533826124f2565b602082019050919050565b600060208201905081810360008301526125578161251b565b905091905056fea2646970667358221220404ead4821652edd829bb7c648ceea2ff433bfdd95644b402880ba9aabf0861564736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c80635c975abb116100b857806395d89b411161007c57806395d89b4114610308578063a457c2d714610326578063a9059cbb14610356578063dd62ed3e14610386578063ea414b28146103b6578063f2fde38b146103d257610137565b80635c975abb1461028857806370a08231146102a6578063715018a6146102d65780638456cb59146102e05780638da5cb5b146102ea57610137565b8063313ce567116100ff578063313ce567146101f657806339509351146102145780633b4fa771146102445780633f4ba83a1461026257806342966c681461026c57610137565b806306fdde031461013c578063095ea7b31461015a57806318160ddd1461018a57806323b872dd146101a85780632dc0562d146101d8575b600080fd5b6101446103ee565b6040516101519190611609565b60405180910390f35b610174600480360381019061016f91906116c4565b610480565b604051610181919061171f565b60405180910390f35b6101926104a3565b60405161019f9190611749565b60405180910390f35b6101c260048036038101906101bd9190611764565b6104ad565b6040516101cf919061171f565b60405180910390f35b6101e06104dc565b6040516101ed91906117c6565b60405180910390f35b6101fe610502565b60405161020b91906117fd565b60405180910390f35b61022e600480360381019061022991906116c4565b61050b565b60405161023b919061171f565b60405180910390f35b61024c610542565b6040516102599190611749565b60405180910390f35b61026a61055d565b005b61028660048036038101906102819190611818565b6105a4565b005b6102906105ee565b60405161029d919061171f565b60405180910390f35b6102c060048036038101906102bb9190611845565b610605565b6040516102cd9190611749565b60405180910390f35b6102de61064d565b005b6102e8610694565b005b6102f26106db565b6040516102ff91906117c6565b60405180910390f35b610310610705565b60405161031d9190611609565b60405180910390f35b610340600480360381019061033b91906116c4565b610797565b60405161034d919061171f565b60405180910390f35b610370600480360381019061036b91906116c4565b61080e565b60405161037d919061171f565b60405180910390f35b6103a0600480360381019061039b9190611872565b610831565b6040516103ad9190611749565b60405180910390f35b6103d060048036038101906103cb9190611845565b6108b8565b005b6103ec60048036038101906103e79190611845565b6109a8565b005b6060600380546103fd906118e1565b80601f0160208091040260200160405190810160405280929190818152602001828054610429906118e1565b80156104765780601f1061044b57610100808354040283529160200191610476565b820191906000526020600020905b81548152906001019060200180831161045957829003601f168201915b5050505050905090565b60008061048b610a30565b9050610498818585610a38565b600191505092915050565b6000600254905090565b6000806104b8610a30565b90506104c5858285610c01565b6104d0858585610c8d565b60019150509392505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b600080610516610a30565b90506105378185856105288589610831565b6105329190611941565b610a38565b600191505092915050565b6000606461054e6104a3565b61055891906119a4565b905090565b610565610e28565b61056d610ea6565b7fac7c932dfed5a12f8cee69b87b1db28759f9abab0760d37031670980a55a216860405161059a90611a21565b60405180910390a1565b6105ac610e28565b6105b63382610f09565b7fac7c932dfed5a12f8cee69b87b1db28759f9abab0760d37031670980a55a21686040516105e390611a8d565b60405180910390a150565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610655610e28565b61065d6110d6565b7fac7c932dfed5a12f8cee69b87b1db28759f9abab0760d37031670980a55a216860405161068a90611af9565b60405180910390a1565b61069c610e28565b6106a46110ea565b7fac7c932dfed5a12f8cee69b87b1db28759f9abab0760d37031670980a55a21686040516106d190611b65565b60405180910390a1565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610714906118e1565b80601f0160208091040260200160405190810160405280929190818152602001828054610740906118e1565b801561078d5780601f106107625761010080835404028352916020019161078d565b820191906000526020600020905b81548152906001019060200180831161077057829003601f168201915b5050505050905090565b6000806107a2610a30565b905060006107b08286610831565b9050838110156107f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ec90611bf7565b60405180910390fd5b6108028286868403610a38565b60019250505092915050565b600080610819610a30565b9050610826818585610c8d565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108c0610e28565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361092f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092690611c63565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fac7c932dfed5a12f8cee69b87b1db28759f9abab0760d37031670980a55a216860405161099d90611ccf565b60405180910390a150565b6109b0610e28565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1690611d61565b60405180910390fd5b610a288161114d565b50565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610aa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9e90611df3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0d90611e85565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610bf49190611749565b60405180910390a3505050565b6000610c0d8484610831565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c875781811015610c79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7090611ef1565b60405180910390fd5b610c868484848403610a38565b5b50505050565b60008111610cd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc790611f5d565b60405180910390fd5b610cd86106db565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610d5557610d12610542565b811115610d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4b90611fef565b60405180910390fd5b5b60006064600283610d66919061200f565b610d7091906119a4565b905060008183610d809190612051565b9050610daf85600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611213565b610dba858583611213565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167f6d2113f8bd5342f6e43e5be71ffa1b2f8d07c3c24185fc9d1c3b77785265e5b58385604051610e19929190612085565b60405180910390a35050505050565b610e30610a30565b73ffffffffffffffffffffffffffffffffffffffff16610e4e6106db565b73ffffffffffffffffffffffffffffffffffffffff1614610ea4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9b906120fa565b60405180910390fd5b565b610eae611489565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610ef2610a30565b604051610eff91906117c6565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6f9061218c565b60405180910390fd5b610f84826000836114d2565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561100a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110019061221e565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110bd9190611749565b60405180910390a36110d18360008461152a565b505050565b6110de610e28565b6110e8600061114d565b565b6110f261152f565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611136610a30565b60405161114391906117c6565b60405180910390a1565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611282576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611279906122b0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e890612342565b60405180910390fd5b6112fc8383836114d2565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611382576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611379906123d4565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114709190611749565b60405180910390a361148384848461152a565b50505050565b6114916105ee565b6114d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c790612440565b60405180910390fd5b565b6114dd838383610a2b565b6114e56105ee565b15611525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151c906124d2565b60405180910390fd5b505050565b505050565b6115376105ee565b15611577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156e9061253e565b60405180910390fd5b565b600081519050919050565b600082825260208201905092915050565b60005b838110156115b3578082015181840152602081019050611598565b60008484015250505050565b6000601f19601f8301169050919050565b60006115db82611579565b6115e58185611584565b93506115f5818560208601611595565b6115fe816115bf565b840191505092915050565b6000602082019050818103600083015261162381846115d0565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061165b82611630565b9050919050565b61166b81611650565b811461167657600080fd5b50565b60008135905061168881611662565b92915050565b6000819050919050565b6116a18161168e565b81146116ac57600080fd5b50565b6000813590506116be81611698565b92915050565b600080604083850312156116db576116da61162b565b5b60006116e985828601611679565b92505060206116fa858286016116af565b9150509250929050565b60008115159050919050565b61171981611704565b82525050565b60006020820190506117346000830184611710565b92915050565b6117438161168e565b82525050565b600060208201905061175e600083018461173a565b92915050565b60008060006060848603121561177d5761177c61162b565b5b600061178b86828701611679565b935050602061179c86828701611679565b92505060406117ad868287016116af565b9150509250925092565b6117c081611650565b82525050565b60006020820190506117db60008301846117b7565b92915050565b600060ff82169050919050565b6117f7816117e1565b82525050565b600060208201905061181260008301846117ee565b92915050565b60006020828403121561182e5761182d61162b565b5b600061183c848285016116af565b91505092915050565b60006020828403121561185b5761185a61162b565b5b600061186984828501611679565b91505092915050565b600080604083850312156118895761188861162b565b5b600061189785828601611679565b92505060206118a885828601611679565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806118f957607f821691505b60208210810361190c5761190b6118b2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061194c8261168e565b91506119578361168e565b925082820190508082111561196f5761196e611912565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006119af8261168e565b91506119ba8361168e565b9250826119ca576119c9611975565b5b828204905092915050565b7f556e706175736500000000000000000000000000000000000000000000000000600082015250565b6000611a0b600783611584565b9150611a16826119d5565b602082019050919050565b60006020820190508181036000830152611a3a816119fe565b9050919050565b7f4275726e00000000000000000000000000000000000000000000000000000000600082015250565b6000611a77600483611584565b9150611a8282611a41565b602082019050919050565b60006020820190508181036000830152611aa681611a6a565b9050919050565b7f52656e6f756e63654f776e657273686970000000000000000000000000000000600082015250565b6000611ae3601183611584565b9150611aee82611aad565b602082019050919050565b60006020820190508181036000830152611b1281611ad6565b9050919050565b7f5061757365000000000000000000000000000000000000000000000000000000600082015250565b6000611b4f600583611584565b9150611b5a82611b19565b602082019050919050565b60006020820190508181036000830152611b7e81611b42565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611be1602583611584565b9150611bec82611b85565b604082019050919050565b60006020820190508181036000830152611c1081611bd4565b9050919050565b7f496e76616c696420616464726573730000000000000000000000000000000000600082015250565b6000611c4d600f83611584565b9150611c5882611c17565b602082019050919050565b60006020820190508181036000830152611c7c81611c40565b9050919050565b7f53657454617857616c6c65740000000000000000000000000000000000000000600082015250565b6000611cb9600c83611584565b9150611cc482611c83565b602082019050919050565b60006020820190508181036000830152611ce881611cac565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611d4b602683611584565b9150611d5682611cef565b604082019050919050565b60006020820190508181036000830152611d7a81611d3e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ddd602483611584565b9150611de882611d81565b604082019050919050565b60006020820190508181036000830152611e0c81611dd0565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e6f602283611584565b9150611e7a82611e13565b604082019050919050565b60006020820190508181036000830152611e9e81611e62565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611edb601d83611584565b9150611ee682611ea5565b602082019050919050565b60006020820190508181036000830152611f0a81611ece565b9050919050565b7f416d6f756e74206d7573742062652067726561746572207468616e2030000000600082015250565b6000611f47601d83611584565b9150611f5282611f11565b602082019050919050565b60006020820190508181036000830152611f7681611f3a565b9050919050565b7f416d6f756e7420657863656564732074686520312520746f74616c207375707060008201527f6c79206c696d6974000000000000000000000000000000000000000000000000602082015250565b6000611fd9602883611584565b9150611fe482611f7d565b604082019050919050565b6000602082019050818103600083015261200881611fcc565b9050919050565b600061201a8261168e565b91506120258361168e565b92508282026120338161168e565b9150828204841483151761204a57612049611912565b5b5092915050565b600061205c8261168e565b91506120678361168e565b925082820390508181111561207f5761207e611912565b5b92915050565b600060408201905061209a600083018561173a565b6120a7602083018461173a565b9392505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006120e4602083611584565b91506120ef826120ae565b602082019050919050565b60006020820190508181036000830152612113816120d7565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612176602183611584565b91506121818261211a565b604082019050919050565b600060208201905081810360008301526121a581612169565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612208602283611584565b9150612213826121ac565b604082019050919050565b60006020820190508181036000830152612237816121fb565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061229a602583611584565b91506122a58261223e565b604082019050919050565b600060208201905081810360008301526122c98161228d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061232c602383611584565b9150612337826122d0565b604082019050919050565b6000602082019050818103600083015261235b8161231f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006123be602683611584565b91506123c982612362565b604082019050919050565b600060208201905081810360008301526123ed816123b1565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b600061242a601483611584565b9150612435826123f4565b602082019050919050565b600060208201905081810360008301526124598161241d565b9050919050565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b60006124bc602a83611584565b91506124c782612460565b604082019050919050565b600060208201905081810360008301526124eb816124af565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000612528601083611584565b9150612533826124f2565b602082019050919050565b600060208201905081810360008301526125578161251b565b905091905056fea2646970667358221220404ead4821652edd829bb7c648ceea2ff433bfdd95644b402880ba9aabf0861564736f6c63430008120033

Deployed Bytecode Sourcemap

24510:2851:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6685:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9045:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7814:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9826:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24668:69;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7656:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10496:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26370:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26156;;;:::i;:::-;;25552:129;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19366:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7985:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25757:158;;;:::i;:::-;;25978:100;;;:::i;:::-;;22877:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6904:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11237:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8318:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8574:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25235:209;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23776:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6685:100;6739:13;6772:5;6765:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6685:100;:::o;9045:201::-;9128:4;9145:13;9161:12;:10;:12::i;:::-;9145:28;;9184:32;9193:5;9200:7;9209:6;9184:8;:32::i;:::-;9234:4;9227:11;;;9045:201;;;;:::o;7814:108::-;7875:7;7902:12;;7895:19;;7814:108;:::o;9826:261::-;9923:4;9940:15;9958:12;:10;:12::i;:::-;9940:30;;9981:38;9997:4;10003:7;10012:6;9981:15;:38::i;:::-;10030:27;10040:4;10046:2;10050:6;10030:9;:27::i;:::-;10075:4;10068:11;;;9826:261;;;;;:::o;24668:69::-;;;;;;;;;;;;;:::o;7656:93::-;7714:5;7739:2;7732:9;;7656:93;:::o;10496:238::-;10584:4;10601:13;10617:12;:10;:12::i;:::-;10601:28;;10640:64;10649:5;10656:7;10693:10;10665:25;10675:5;10682:7;10665:9;:25::i;:::-;:38;;;;:::i;:::-;10640:8;:64::i;:::-;10722:4;10715:11;;;10496:238;;;;:::o;26370:106::-;26422:7;26465:3;26449:13;:11;:13::i;:::-;:19;;;;:::i;:::-;26442:26;;26370:106;:::o;26156:::-;22763:13;:11;:13::i;:::-;26203:10:::1;:8;:10::i;:::-;26229:25;;;;;;:::i;:::-;;;;;;;;26156:106::o:0;25552:129::-;22763:13;:11;:13::i;:::-;25610:25:::1;25616:10;25628:6;25610:5;:25::i;:::-;25651:22;;;;;;:::i;:::-;;;;;;;;25552:129:::0;:::o;19366:86::-;19413:4;19437:7;;;;;;;;;;;19430:14;;19366:86;:::o;7985:127::-;8059:7;8086:9;:18;8096:7;8086:18;;;;;;;;;;;;;;;;8079:25;;7985:127;;;:::o;25757:158::-;22763:13;:11;:13::i;:::-;25831:25:::1;:23;:25::i;:::-;25872:35;;;;;;:::i;:::-;;;;;;;;25757:158::o:0;25978:100::-;22763:13;:11;:13::i;:::-;26023:8:::1;:6;:8::i;:::-;26047:23;;;;;;:::i;:::-;;;;;;;;25978:100::o:0;22877:87::-;22923:7;22950:6;;;;;;;;;;;22943:13;;22877:87;:::o;6904:104::-;6960:13;6993:7;6986:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6904:104;:::o;11237:436::-;11330:4;11347:13;11363:12;:10;:12::i;:::-;11347:28;;11386:24;11413:25;11423:5;11430:7;11413:9;:25::i;:::-;11386:52;;11477:15;11457:16;:35;;11449:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11570:60;11579:5;11586:7;11614:15;11595:16;:34;11570:8;:60::i;:::-;11661:4;11654:11;;;;11237:436;;;;:::o;8318:193::-;8397:4;8414:13;8430:12;:10;:12::i;:::-;8414:28;;8453;8463:5;8470:2;8474:6;8453:9;:28::i;:::-;8499:4;8492:11;;;8318:193;;;;:::o;8574:151::-;8663:7;8690:11;:18;8702:5;8690:18;;;;;;;;;;;;;;;:27;8709:7;8690:27;;;;;;;;;;;;;;;;8683:34;;8574:151;;;;:::o;25235:209::-;22763:13;:11;:13::i;:::-;25335:1:::1;25313:24;;:10;:24;;::::0;25305:52:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;25380:10;25368:9;;:22;;;;;;;;;;;;;;;;;;25406:30;;;;;;:::i;:::-;;;;;;;;25235:209:::0;:::o;23776:201::-;22763:13;:11;:13::i;:::-;23885:1:::1;23865:22;;:8;:22;;::::0;23857:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;23941:28;23960:8;23941:18;:28::i;:::-;23776:201:::0;:::o;16886:91::-;;;;:::o;4308:98::-;4361:7;4388:10;4381:17;;4308:98;:::o;15230:346::-;15349:1;15332:19;;:5;:19;;;15324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15430:1;15411:21;;:7;:21;;;15403:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15514:6;15484:11;:18;15496:5;15484:18;;;;;;;;;;;;;;;:27;15503:7;15484:27;;;;;;;;;;;;;;;:36;;;;15552:7;15536:32;;15545:5;15536:32;;;15561:6;15536:32;;;;;;:::i;:::-;;;;;;;;15230:346;;;:::o;15867:419::-;15968:24;15995:25;16005:5;16012:7;15995:9;:25::i;:::-;15968:52;;16055:17;16035:16;:37;16031:248;;16117:6;16097:16;:26;;16089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16201:51;16210:5;16217:7;16245:6;16226:16;:25;16201:8;:51::i;:::-;16031:248;15957:329;15867:419;;;:::o;26715:643::-;26839:1;26830:6;:10;26822:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;26899:7;:5;:7::i;:::-;26889:17;;:6;:17;;;26885:134;;26941:21;:19;:21::i;:::-;26931:6;:31;;26923:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;26885:134;27031:17;27072:3;24644:1;27052:6;:16;;;;:::i;:::-;27051:24;;;;:::i;:::-;27031:44;;27086:22;27120:9;27111:6;:18;;;;:::i;:::-;27086:43;;27142:45;27158:6;27166:9;;;;;;;;;;;27177;27142:15;:45::i;:::-;27221:50;27237:6;27245:9;27256:14;27221:15;:50::i;:::-;27313:9;27289:61;;27305:6;27289:61;;;27324:14;27340:9;27289:61;;;;;;;:::i;:::-;;;;;;;;26811:547;;26715:643;;;:::o;23042:132::-;23117:12;:10;:12::i;:::-;23106:23;;:7;:5;:7::i;:::-;:23;;;23098:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23042:132::o;20221:120::-;19230:16;:14;:16::i;:::-;20290:5:::1;20280:7;;:15;;;;;;;;;;;;;;;;;;20311:22;20320:12;:10;:12::i;:::-;20311:22;;;;;;:::i;:::-;;;;;;;;20221:120::o:0;14117:675::-;14220:1;14201:21;;:7;:21;;;14193:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14273:49;14294:7;14311:1;14315:6;14273:20;:49::i;:::-;14335:22;14360:9;:18;14370:7;14360:18;;;;;;;;;;;;;;;;14335:43;;14415:6;14397:14;:24;;14389:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14534:6;14517:14;:23;14496:9;:18;14506:7;14496:18;;;;;;;;;;;;;;;:44;;;;14651:6;14635:12;;:22;;;;;;;;;;;14712:1;14686:37;;14695:7;14686:37;;;14716:6;14686:37;;;;;;:::i;:::-;;;;;;;;14736:48;14756:7;14773:1;14777:6;14736:19;:48::i;:::-;14182:610;14117:675;;:::o;23518:103::-;22763:13;:11;:13::i;:::-;23583:30:::1;23610:1;23583:18;:30::i;:::-;23518:103::o:0;19962:118::-;18971:19;:17;:19::i;:::-;20032:4:::1;20022:7;;:14;;;;;;;;;;;;;;;;;;20052:20;20059:12;:10;:12::i;:::-;20052:20;;;;;;:::i;:::-;;;;;;;;19962:118::o:0;24137:191::-;24211:16;24230:6;;;;;;;;;;;24211:25;;24256:8;24247:6;;:17;;;;;;;;;;;;;;;;;;24311:8;24280:40;;24301:8;24280:40;;;;;;;;;;;;24200:128;24137:191;:::o;12143:806::-;12256:1;12240:18;;:4;:18;;;12232:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12333:1;12319:16;;:2;:16;;;12311:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12388:38;12409:4;12415:2;12419:6;12388:20;:38::i;:::-;12439:19;12461:9;:15;12471:4;12461:15;;;;;;;;;;;;;;;;12439:37;;12510:6;12495:11;:21;;12487:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12627:6;12613:11;:20;12595:9;:15;12605:4;12595:15;;;;;;;;;;;;;;;:38;;;;12830:6;12813:9;:13;12823:2;12813:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;12880:2;12865:26;;12874:4;12865:26;;;12884:6;12865:26;;;;;;:::i;:::-;;;;;;;;12904:37;12924:4;12930:2;12934:6;12904:19;:37::i;:::-;12221:728;12143:806;;;:::o;19710:108::-;19777:8;:6;:8::i;:::-;19769:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;19710:108::o;21401:238::-;21510:44;21537:4;21543:2;21547:6;21510:26;:44::i;:::-;21576:8;:6;:8::i;:::-;21575:9;21567:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;21401:238;;;:::o;17581:90::-;;;;:::o;19525:108::-;19596:8;:6;:8::i;:::-;19595:9;19587:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;19525:108::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:118::-;4510:24;4528:5;4510:24;:::i;:::-;4505:3;4498:37;4423:118;;:::o;4547:222::-;4640:4;4678:2;4667:9;4663:18;4655:26;;4691:71;4759:1;4748:9;4744:17;4735:6;4691:71;:::i;:::-;4547:222;;;;:::o;4775:86::-;4810:7;4850:4;4843:5;4839:16;4828:27;;4775:86;;;:::o;4867:112::-;4950:22;4966:5;4950:22;:::i;:::-;4945:3;4938:35;4867:112;;:::o;4985:214::-;5074:4;5112:2;5101:9;5097:18;5089:26;;5125:67;5189:1;5178:9;5174:17;5165:6;5125:67;:::i;:::-;4985:214;;;;:::o;5205:329::-;5264:6;5313:2;5301:9;5292:7;5288:23;5284:32;5281:119;;;5319:79;;:::i;:::-;5281:119;5439:1;5464:53;5509:7;5500:6;5489:9;5485:22;5464:53;:::i;:::-;5454:63;;5410:117;5205:329;;;;:::o;5540:::-;5599:6;5648:2;5636:9;5627:7;5623:23;5619:32;5616:119;;;5654:79;;:::i;:::-;5616:119;5774:1;5799:53;5844:7;5835:6;5824:9;5820:22;5799:53;:::i;:::-;5789:63;;5745:117;5540:329;;;;:::o;5875:474::-;5943:6;5951;6000:2;5988:9;5979:7;5975:23;5971:32;5968:119;;;6006:79;;:::i;:::-;5968:119;6126:1;6151:53;6196:7;6187:6;6176:9;6172:22;6151:53;:::i;:::-;6141:63;;6097:117;6253:2;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6224:118;5875:474;;;;;:::o;6355:180::-;6403:77;6400:1;6393:88;6500:4;6497:1;6490:15;6524:4;6521:1;6514:15;6541:320;6585:6;6622:1;6616:4;6612:12;6602:22;;6669:1;6663:4;6659:12;6690:18;6680:81;;6746:4;6738:6;6734:17;6724:27;;6680:81;6808:2;6800:6;6797:14;6777:18;6774:38;6771:84;;6827:18;;:::i;:::-;6771:84;6592:269;6541:320;;;:::o;6867:180::-;6915:77;6912:1;6905:88;7012:4;7009:1;7002:15;7036:4;7033:1;7026:15;7053:191;7093:3;7112:20;7130:1;7112:20;:::i;:::-;7107:25;;7146:20;7164:1;7146:20;:::i;:::-;7141:25;;7189:1;7186;7182:9;7175:16;;7210:3;7207:1;7204:10;7201:36;;;7217:18;;:::i;:::-;7201:36;7053:191;;;;:::o;7250:180::-;7298:77;7295:1;7288:88;7395:4;7392:1;7385:15;7419:4;7416:1;7409:15;7436:185;7476:1;7493:20;7511:1;7493:20;:::i;:::-;7488:25;;7527:20;7545:1;7527:20;:::i;:::-;7522:25;;7566:1;7556:35;;7571:18;;:::i;:::-;7556:35;7613:1;7610;7606:9;7601:14;;7436:185;;;;:::o;7627:157::-;7767:9;7763:1;7755:6;7751:14;7744:33;7627:157;:::o;7790:365::-;7932:3;7953:66;8017:1;8012:3;7953:66;:::i;:::-;7946:73;;8028:93;8117:3;8028:93;:::i;:::-;8146:2;8141:3;8137:12;8130:19;;7790:365;;;:::o;8161:419::-;8327:4;8365:2;8354:9;8350:18;8342:26;;8414:9;8408:4;8404:20;8400:1;8389:9;8385:17;8378:47;8442:131;8568:4;8442:131;:::i;:::-;8434:139;;8161:419;;;:::o;8586:154::-;8726:6;8722:1;8714:6;8710:14;8703:30;8586:154;:::o;8746:365::-;8888:3;8909:66;8973:1;8968:3;8909:66;:::i;:::-;8902:73;;8984:93;9073:3;8984:93;:::i;:::-;9102:2;9097:3;9093:12;9086:19;;8746:365;;;:::o;9117:419::-;9283:4;9321:2;9310:9;9306:18;9298:26;;9370:9;9364:4;9360:20;9356:1;9345:9;9341:17;9334:47;9398:131;9524:4;9398:131;:::i;:::-;9390:139;;9117:419;;;:::o;9542:167::-;9682:19;9678:1;9670:6;9666:14;9659:43;9542:167;:::o;9715:366::-;9857:3;9878:67;9942:2;9937:3;9878:67;:::i;:::-;9871:74;;9954:93;10043:3;9954:93;:::i;:::-;10072:2;10067:3;10063:12;10056:19;;9715:366;;;:::o;10087:419::-;10253:4;10291:2;10280:9;10276:18;10268:26;;10340:9;10334:4;10330:20;10326:1;10315:9;10311:17;10304:47;10368:131;10494:4;10368:131;:::i;:::-;10360:139;;10087:419;;;:::o;10512:155::-;10652:7;10648:1;10640:6;10636:14;10629:31;10512:155;:::o;10673:365::-;10815:3;10836:66;10900:1;10895:3;10836:66;:::i;:::-;10829:73;;10911:93;11000:3;10911:93;:::i;:::-;11029:2;11024:3;11020:12;11013:19;;10673:365;;;:::o;11044:419::-;11210:4;11248:2;11237:9;11233:18;11225:26;;11297:9;11291:4;11287:20;11283:1;11272:9;11268:17;11261:47;11325:131;11451:4;11325:131;:::i;:::-;11317:139;;11044:419;;;:::o;11469:224::-;11609:34;11605:1;11597:6;11593:14;11586:58;11678:7;11673:2;11665:6;11661:15;11654:32;11469:224;:::o;11699:366::-;11841:3;11862:67;11926:2;11921:3;11862:67;:::i;:::-;11855:74;;11938:93;12027:3;11938:93;:::i;:::-;12056:2;12051:3;12047:12;12040:19;;11699:366;;;:::o;12071:419::-;12237:4;12275:2;12264:9;12260:18;12252:26;;12324:9;12318:4;12314:20;12310:1;12299:9;12295:17;12288:47;12352:131;12478:4;12352:131;:::i;:::-;12344:139;;12071:419;;;:::o;12496:165::-;12636:17;12632:1;12624:6;12620:14;12613:41;12496:165;:::o;12667:366::-;12809:3;12830:67;12894:2;12889:3;12830:67;:::i;:::-;12823:74;;12906:93;12995:3;12906:93;:::i;:::-;13024:2;13019:3;13015:12;13008:19;;12667:366;;;:::o;13039:419::-;13205:4;13243:2;13232:9;13228:18;13220:26;;13292:9;13286:4;13282:20;13278:1;13267:9;13263:17;13256:47;13320:131;13446:4;13320:131;:::i;:::-;13312:139;;13039:419;;;:::o;13464:162::-;13604:14;13600:1;13592:6;13588:14;13581:38;13464:162;:::o;13632:366::-;13774:3;13795:67;13859:2;13854:3;13795:67;:::i;:::-;13788:74;;13871:93;13960:3;13871:93;:::i;:::-;13989:2;13984:3;13980:12;13973:19;;13632:366;;;:::o;14004:419::-;14170:4;14208:2;14197:9;14193:18;14185:26;;14257:9;14251:4;14247:20;14243:1;14232:9;14228:17;14221:47;14285:131;14411:4;14285:131;:::i;:::-;14277:139;;14004:419;;;:::o;14429:225::-;14569:34;14565:1;14557:6;14553:14;14546:58;14638:8;14633:2;14625:6;14621:15;14614:33;14429:225;:::o;14660:366::-;14802:3;14823:67;14887:2;14882:3;14823:67;:::i;:::-;14816:74;;14899:93;14988:3;14899:93;:::i;:::-;15017:2;15012:3;15008:12;15001:19;;14660:366;;;:::o;15032:419::-;15198:4;15236:2;15225:9;15221:18;15213:26;;15285:9;15279:4;15275:20;15271:1;15260:9;15256:17;15249:47;15313:131;15439:4;15313:131;:::i;:::-;15305:139;;15032:419;;;:::o;15457:223::-;15597:34;15593:1;15585:6;15581:14;15574:58;15666:6;15661:2;15653:6;15649:15;15642:31;15457:223;:::o;15686:366::-;15828:3;15849:67;15913:2;15908:3;15849:67;:::i;:::-;15842:74;;15925:93;16014:3;15925:93;:::i;:::-;16043:2;16038:3;16034:12;16027:19;;15686:366;;;:::o;16058:419::-;16224:4;16262:2;16251:9;16247:18;16239:26;;16311:9;16305:4;16301:20;16297:1;16286:9;16282:17;16275:47;16339:131;16465:4;16339:131;:::i;:::-;16331:139;;16058:419;;;:::o;16483:221::-;16623:34;16619:1;16611:6;16607:14;16600:58;16692:4;16687:2;16679:6;16675:15;16668:29;16483:221;:::o;16710:366::-;16852:3;16873:67;16937:2;16932:3;16873:67;:::i;:::-;16866:74;;16949:93;17038:3;16949:93;:::i;:::-;17067:2;17062:3;17058:12;17051:19;;16710:366;;;:::o;17082:419::-;17248:4;17286:2;17275:9;17271:18;17263:26;;17335:9;17329:4;17325:20;17321:1;17310:9;17306:17;17299:47;17363:131;17489:4;17363:131;:::i;:::-;17355:139;;17082:419;;;:::o;17507:179::-;17647:31;17643:1;17635:6;17631:14;17624:55;17507:179;:::o;17692:366::-;17834:3;17855:67;17919:2;17914:3;17855:67;:::i;:::-;17848:74;;17931:93;18020:3;17931:93;:::i;:::-;18049:2;18044:3;18040:12;18033:19;;17692:366;;;:::o;18064:419::-;18230:4;18268:2;18257:9;18253:18;18245:26;;18317:9;18311:4;18307:20;18303:1;18292:9;18288:17;18281:47;18345:131;18471:4;18345:131;:::i;:::-;18337:139;;18064:419;;;:::o;18489:179::-;18629:31;18625:1;18617:6;18613:14;18606:55;18489:179;:::o;18674:366::-;18816:3;18837:67;18901:2;18896:3;18837:67;:::i;:::-;18830:74;;18913:93;19002:3;18913:93;:::i;:::-;19031:2;19026:3;19022:12;19015:19;;18674:366;;;:::o;19046:419::-;19212:4;19250:2;19239:9;19235:18;19227:26;;19299:9;19293:4;19289:20;19285:1;19274:9;19270:17;19263:47;19327:131;19453:4;19327:131;:::i;:::-;19319:139;;19046:419;;;:::o;19471:227::-;19611:34;19607:1;19599:6;19595:14;19588:58;19680:10;19675:2;19667:6;19663:15;19656:35;19471:227;:::o;19704:366::-;19846:3;19867:67;19931:2;19926:3;19867:67;:::i;:::-;19860:74;;19943:93;20032:3;19943:93;:::i;:::-;20061:2;20056:3;20052:12;20045:19;;19704:366;;;:::o;20076:419::-;20242:4;20280:2;20269:9;20265:18;20257:26;;20329:9;20323:4;20319:20;20315:1;20304:9;20300:17;20293:47;20357:131;20483:4;20357:131;:::i;:::-;20349:139;;20076:419;;;:::o;20501:410::-;20541:7;20564:20;20582:1;20564:20;:::i;:::-;20559:25;;20598:20;20616:1;20598:20;:::i;:::-;20593:25;;20653:1;20650;20646:9;20675:30;20693:11;20675:30;:::i;:::-;20664:41;;20854:1;20845:7;20841:15;20838:1;20835:22;20815:1;20808:9;20788:83;20765:139;;20884:18;;:::i;:::-;20765:139;20549:362;20501:410;;;;:::o;20917:194::-;20957:4;20977:20;20995:1;20977:20;:::i;:::-;20972:25;;21011:20;21029:1;21011:20;:::i;:::-;21006:25;;21055:1;21052;21048:9;21040:17;;21079:1;21073:4;21070:11;21067:37;;;21084:18;;:::i;:::-;21067:37;20917:194;;;;:::o;21117:332::-;21238:4;21276:2;21265:9;21261:18;21253:26;;21289:71;21357:1;21346:9;21342:17;21333:6;21289:71;:::i;:::-;21370:72;21438:2;21427:9;21423:18;21414:6;21370:72;:::i;:::-;21117:332;;;;;:::o;21455:182::-;21595:34;21591:1;21583:6;21579:14;21572:58;21455:182;:::o;21643:366::-;21785:3;21806:67;21870:2;21865:3;21806:67;:::i;:::-;21799:74;;21882:93;21971:3;21882:93;:::i;:::-;22000:2;21995:3;21991:12;21984:19;;21643:366;;;:::o;22015:419::-;22181:4;22219:2;22208:9;22204:18;22196:26;;22268:9;22262:4;22258:20;22254:1;22243:9;22239:17;22232:47;22296:131;22422:4;22296:131;:::i;:::-;22288:139;;22015:419;;;:::o;22440:220::-;22580:34;22576:1;22568:6;22564:14;22557:58;22649:3;22644:2;22636:6;22632:15;22625:28;22440:220;:::o;22666:366::-;22808:3;22829:67;22893:2;22888:3;22829:67;:::i;:::-;22822:74;;22905:93;22994:3;22905:93;:::i;:::-;23023:2;23018:3;23014:12;23007:19;;22666:366;;;:::o;23038:419::-;23204:4;23242:2;23231:9;23227:18;23219:26;;23291:9;23285:4;23281:20;23277:1;23266:9;23262:17;23255:47;23319:131;23445:4;23319:131;:::i;:::-;23311:139;;23038:419;;;:::o;23463:221::-;23603:34;23599:1;23591:6;23587:14;23580:58;23672:4;23667:2;23659:6;23655:15;23648:29;23463:221;:::o;23690:366::-;23832:3;23853:67;23917:2;23912:3;23853:67;:::i;:::-;23846:74;;23929:93;24018:3;23929:93;:::i;:::-;24047:2;24042:3;24038:12;24031:19;;23690:366;;;:::o;24062:419::-;24228:4;24266:2;24255:9;24251:18;24243:26;;24315:9;24309:4;24305:20;24301:1;24290:9;24286:17;24279:47;24343:131;24469:4;24343:131;:::i;:::-;24335:139;;24062:419;;;:::o;24487:224::-;24627:34;24623:1;24615:6;24611:14;24604:58;24696:7;24691:2;24683:6;24679:15;24672:32;24487:224;:::o;24717:366::-;24859:3;24880:67;24944:2;24939:3;24880:67;:::i;:::-;24873:74;;24956:93;25045:3;24956:93;:::i;:::-;25074:2;25069:3;25065:12;25058:19;;24717:366;;;:::o;25089:419::-;25255:4;25293:2;25282:9;25278:18;25270:26;;25342:9;25336:4;25332:20;25328:1;25317:9;25313:17;25306:47;25370:131;25496:4;25370:131;:::i;:::-;25362:139;;25089:419;;;:::o;25514:222::-;25654:34;25650:1;25642:6;25638:14;25631:58;25723:5;25718:2;25710:6;25706:15;25699:30;25514:222;:::o;25742:366::-;25884:3;25905:67;25969:2;25964:3;25905:67;:::i;:::-;25898:74;;25981:93;26070:3;25981:93;:::i;:::-;26099:2;26094:3;26090:12;26083:19;;25742:366;;;:::o;26114:419::-;26280:4;26318:2;26307:9;26303:18;26295:26;;26367:9;26361:4;26357:20;26353:1;26342:9;26338:17;26331:47;26395:131;26521:4;26395:131;:::i;:::-;26387:139;;26114:419;;;:::o;26539:225::-;26679:34;26675:1;26667:6;26663:14;26656:58;26748:8;26743:2;26735:6;26731:15;26724:33;26539:225;:::o;26770:366::-;26912:3;26933:67;26997:2;26992:3;26933:67;:::i;:::-;26926:74;;27009:93;27098:3;27009:93;:::i;:::-;27127:2;27122:3;27118:12;27111:19;;26770:366;;;:::o;27142:419::-;27308:4;27346:2;27335:9;27331:18;27323:26;;27395:9;27389:4;27385:20;27381:1;27370:9;27366:17;27359:47;27423:131;27549:4;27423:131;:::i;:::-;27415:139;;27142:419;;;:::o;27567:170::-;27707:22;27703:1;27695:6;27691:14;27684:46;27567:170;:::o;27743:366::-;27885:3;27906:67;27970:2;27965:3;27906:67;:::i;:::-;27899:74;;27982:93;28071:3;27982:93;:::i;:::-;28100:2;28095:3;28091:12;28084:19;;27743:366;;;:::o;28115:419::-;28281:4;28319:2;28308:9;28304:18;28296:26;;28368:9;28362:4;28358:20;28354:1;28343:9;28339:17;28332:47;28396:131;28522:4;28396:131;:::i;:::-;28388:139;;28115:419;;;:::o;28540:229::-;28680:34;28676:1;28668:6;28664:14;28657:58;28749:12;28744:2;28736:6;28732:15;28725:37;28540:229;:::o;28775:366::-;28917:3;28938:67;29002:2;28997:3;28938:67;:::i;:::-;28931:74;;29014:93;29103:3;29014:93;:::i;:::-;29132:2;29127:3;29123:12;29116:19;;28775:366;;;:::o;29147:419::-;29313:4;29351:2;29340:9;29336:18;29328:26;;29400:9;29394:4;29390:20;29386:1;29375:9;29371:17;29364:47;29428:131;29554:4;29428:131;:::i;:::-;29420:139;;29147:419;;;:::o;29572:166::-;29712:18;29708:1;29700:6;29696:14;29689:42;29572:166;:::o;29744:366::-;29886:3;29907:67;29971:2;29966:3;29907:67;:::i;:::-;29900:74;;29983:93;30072:3;29983:93;:::i;:::-;30101:2;30096:3;30092:12;30085:19;;29744:366;;;:::o;30116:419::-;30282:4;30320:2;30309:9;30305:18;30297:26;;30369:9;30363:4;30359:20;30355:1;30344:9;30340:17;30333:47;30397:131;30523:4;30397:131;:::i;:::-;30389:139;;30116:419;;;:::o

Swarm Source

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