ETH Price: $2,764.19 (+5.36%)

Token

ProfessorSnapeClintonGoku69Inu (ETHEREUM)
 

Overview

Max Total Supply

80,000,000,000,000 ETHEREUM

Holders

40

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.773781612942848694 ETHEREUM

Value
$0.00
0x305e04b8cbf6042DdCc7E16C1b5126DdDEB1EFBF
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:
ProfessorSnapeClintonGoku69Inu

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

//  _______  _______  _______  _______   ______   _____  _________
// (  ____ )(  ____ \(  ____ \(  ____ \ / ____ \ / ___ \ \__   __/
// | (    )|| (    \/| (    \/| (    \/( (    \/( (   ) )   ) (   
// | (____)|| (_____ | |      | |      | (____  ( (___) |   | |   
// |  _____)(_____  )| |      | | ____ |  ___ \  \____  |   | |   
// | (            ) || |      | | \_  )| (   ) )      ) |   | |   
// | )      /\____) || (____/\| (___) |( (___) )/\____) )___) (___
// |/       \_______)(_______/(_______) \_____/ \______/ \_______/
                                                               

// https://pscg69i.xyz/
// Telegram: https://t.me/pscg69i
// Twitter: https://twitter.com/pscg69i

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

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;




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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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


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

pragma solidity ^0.8.0;



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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

// File: yeyotoeth.sol





 
pragma solidity ^0.8.0;
 
contract ProfessorSnapeClintonGoku69Inu is Ownable, ERC20 {
    IUniswapV2Router02 public uniswapV2Router;
    bool public limited;
    bool public taxesEnabled = true;
    bool public pause = true;
    uint256 public maxHoldingAmount;
    uint256 public minHoldingAmount;
    uint256 taxPercent = 2; 
 
    bool inSwapAndLiq;
 
    address public marketingWallet = 0x9f3EFb4bf1806FC0A1b3a60E4494D95FC365f058;
    address public uniswapV2Pair;
    mapping(address => bool) public blacklists;
    mapping(address => bool) public _isExcludedFromFees;
 
    modifier lockTheSwap() {
        inSwapAndLiq = true;
        _;
        inSwapAndLiq = false;
    }
 
    constructor() ERC20("ProfessorSnapeClintonGoku69Inu", "ETHEREUM") {
        _mint(msg.sender, 80000000000000000000000000000000);
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
 
        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;
 
        _isExcludedFromFees[msg.sender] = true;
        _isExcludedFromFees[marketingWallet] = true;
        _isExcludedFromFees[uniswapV2Pair] = true;
 
        marketingWallet = 0x9f3EFb4bf1806FC0A1b3a60E4494D95FC365f058;
    }
 
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "ERC20: transfer must be greater than 0");
 
        uint256 taxAmount;
        if (taxesEnabled) {
            if (from == uniswapV2Pair) {
                //Buy
 
                if (!_isExcludedFromFees[to])
                    taxAmount = (amount * taxPercent) / 100;
            }
            // Sell
            if (to == uniswapV2Pair) {
                if (!_isExcludedFromFees[from])
                    taxAmount = (amount * taxPercent) / 100;
            }
        }
 
        uint256 contractTokenBalance = balanceOf(address(this));
        bool overMinTokenBalance = contractTokenBalance >=
            (totalSupply() * 3) / 1000;
 
        if (overMinTokenBalance && !inSwapAndLiq && from != uniswapV2Pair) {
            handleTax();
        }
 
        // Fees
        if (taxAmount > 0) {
            uint256 userAmount = amount - taxAmount;
            super._transfer(from, address(this), taxAmount);
            super._transfer(from, to, userAmount);
        } else {
            super._transfer(from, to, amount);
        }
    }
 
    function handleTax() internal lockTheSwap {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
 
        _approve(
            address(this),
            address(uniswapV2Router),
            balanceOf(address(this))
        );
 
        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            balanceOf(address(this)),
            0, // accept any amount of ETH
            path,
            marketingWallet,
            block.timestamp
        );
    }
 
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        require(!blacklists[to] && !blacklists[from], "Blacklisted");
                
        if (pause) {
            require(from == owner() || to == owner(), "trading is not started");
            return;
        }
        
        if (limited && from == uniswapV2Pair) {
            require(
                super.balanceOf(to) + amount <= maxHoldingAmount &&
                    super.balanceOf(to) + amount >= minHoldingAmount,
                "Forbid"
            );
        }
    }
 
    function changeMarketingWallet(
        address _newMarketingWallet
    ) external onlyOwner {
        marketingWallet = _newMarketingWallet;
    }
 
    function changeTaxPercent(uint256 _newTaxPercent) external onlyOwner {
        taxPercent = _newTaxPercent;
    }

    function togglePause() external onlyOwner{	
        pause = !pause;	
    }	
 
    function excludeFromFees(
        address _address,
        bool _isExcluded
    ) external onlyOwner {
        _isExcludedFromFees[_address] = _isExcluded;
    }
 
    function burn(uint256 value) external {
        _burn(msg.sender, value);
    }
 
    function enableTaxes(bool _enable) external onlyOwner {
        taxesEnabled = _enable;
    }
 
    function toggleLimited() external onlyOwner {
        limited = !limited;
    }
 
    function blacklist(
        address _address,
        bool _isBlacklisting
    ) external onlyOwner {
        blacklists[_address] = _isBlacklisting;
    }
 
    function setRule(
        bool _limited,
        uint256 _maxHoldingAmount,
        uint256 _minHoldingAmount
    ) external onlyOwner {
        limited = _limited;
        maxHoldingAmount = _maxHoldingAmount;
        minHoldingAmount = _minHoldingAmount;
    }
}
 
// Interfaces
interface IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint
    );
 
    function feeTo() external view returns (address);
 
    function feeToSetter() external view returns (address);
 
    function getPair(
        address tokenA,
        address tokenB
    ) external view returns (address pair);
 
    function allPairs(uint) external view returns (address pair);
 
    function allPairsLength() external view returns (uint);
 
    function createPair(
        address tokenA,
        address tokenB
    ) external returns (address pair);
 
    function setFeeTo(address) external;
 
    function setFeeToSetter(address) external;
}
 
interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);
 
    function name() external pure returns (string memory);
 
    function symbol() external pure returns (string memory);
 
    function decimals() external pure returns (uint8);
 
    function totalSupply() external view returns (uint);
 
    function balanceOf(address owner) external view returns (uint);
 
    function allowance(
        address owner,
        address spender
    ) external view returns (uint);
 
    function approve(address spender, uint value) external returns (bool);
 
    function transfer(address to, uint value) external returns (bool);
 
    function transferFrom(
        address from,
        address to,
        uint value
    ) external returns (bool);
 
    function DOMAIN_SEPARATOR() external view returns (bytes32);
 
    function PERMIT_TYPEHASH() external pure returns (bytes32);
 
    function nonces(address owner) external view returns (uint);
 
    function permit(
        address owner,
        address spender,
        uint value,
        uint deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;
 
    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(
        address indexed sender,
        uint amount0,
        uint amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);
 
    function MINIMUM_LIQUIDITY() external pure returns (uint);
 
    function factory() external view returns (address);
 
    function token0() external view returns (address);
 
    function token1() external view returns (address);
 
    function getReserves()
        external
        view
        returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
 
    function price0CumulativeLast() external view returns (uint);
 
    function price1CumulativeLast() external view returns (uint);
 
    function kLast() external view returns (uint);
 
    function mint(address to) external returns (uint liquidity);
 
    function burn(address to) external returns (uint amount0, uint amount1);
 
    function swap(
        uint amount0Out,
        uint amount1Out,
        address to,
        bytes calldata data
    ) external;
 
    function skim(address to) external;
 
    function sync() external;
 
    function initialize(address, address) external;
}
 
interface IUniswapV2Router01 {
    function factory() external pure returns (address);
 
    function WETH() external pure returns (address);
 
    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
 
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    )
        external
        payable
        returns (uint amountToken, uint amountETH, uint liquidity);
 
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
 
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
 
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint amountA, uint amountB);
 
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint amountToken, uint amountETH);
 
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
 
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
 
    function swapExactETHForTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable returns (uint[] memory amounts);
 
    function swapTokensForExactETH(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
 
    function swapExactTokensForETH(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
 
    function swapETHForExactTokens(
        uint amountOut,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable returns (uint[] memory amounts);
 
    function quote(
        uint amountA,
        uint reserveA,
        uint reserveB
    ) external pure returns (uint amountB);
 
    function getAmountOut(
        uint amountIn,
        uint reserveIn,
        uint reserveOut
    ) external pure returns (uint amountOut);
 
    function getAmountIn(
        uint amountOut,
        uint reserveIn,
        uint reserveOut
    ) external pure returns (uint amountIn);
 
    function getAmountsOut(
        uint amountIn,
        address[] calldata path
    ) external view returns (uint[] memory amounts);
 
    function getAmountsIn(
        uint amountOut,
        address[] calldata path
    ) external view returns (uint[] memory amounts);
}
 
interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
 
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint amountETH);
 
    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
 
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
 
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newMarketingWallet","type":"address"}],"name":"changeMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newTaxPercent","type":"uint256"}],"name":"changeTaxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enable","type":"bool"}],"name":"enableTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isExcluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"setRule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxesEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleLimited","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePause","outputs":[],"stateMutability":"nonpayable","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":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040526001600660156101000a81548160ff0219169083151502179055506001600660166101000a81548160ff0219169083151502179055506002600955739f3efb4bf1806fc0a1b3a60e4494d95fc365f058600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000a157600080fd5b506040518060400160405280601e81526020017f50726f666573736f72536e617065436c696e746f6e476f6b753639496e7500008152506040518060400160405280600881526020017f455448455245554d0000000000000000000000000000000000000000000000008152506200012e620001226200055f60201b60201c565b6200056760201b60201c565b81600490805190602001906200014692919062000aec565b5080600590805190602001906200015f92919062000aec565b50505062000182336d03f1bdf10116048a5934000000006200062b60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001e457600080fd5b505afa158015620001f9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021f919062000bb3565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200028257600080fd5b505afa15801562000297573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002bd919062000bb3565b6040518363ffffffff1660e01b8152600401620002dc92919062000d09565b602060405180830381600087803b158015620002f757600080fd5b505af11580156200030c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000332919062000bb3565b905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550739f3efb4bf1806fc0a1b3a60e4494d95fc365f058600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505062000f35565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200069e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006959062000d7a565b60405180910390fd5b620006b2600083836200079a60201b60201c565b8060036000828254620006c6919062000dec565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200077a919062000dbe565b60405180910390a3620007966000838362000a7560201b60201c565b5050565b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156200083f5750600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b62000881576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008789062000d9c565b60405180910390fd5b600660169054906101000a900460ff16156200096357620008a762000a7a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806200091b5750620008ec62000a7a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6200095d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009549062000d58565b60405180910390fd5b62000a70565b600660149054906101000a900460ff168015620009cd5750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1562000a6f5760075481620009ed8462000aa360201b6200089d1760201c565b620009f9919062000dec565b1115801562000a2c57506008548162000a1d8462000aa360201b6200089d1760201c565b62000a29919062000dec565b10155b62000a6e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a659062000d36565b60405180910390fd5b5b5b505050565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000afa9062000e87565b90600052602060002090601f01602090048101928262000b1e576000855562000b6a565b82601f1062000b3957805160ff191683800117855562000b6a565b8280016001018555821562000b6a579182015b8281111562000b6957825182559160200191906001019062000b4c565b5b50905062000b79919062000b7d565b5090565b5b8082111562000b9857600081600090555060010162000b7e565b5090565b60008151905062000bad8162000f1b565b92915050565b60006020828403121562000bc657600080fd5b600062000bd68482850162000b9c565b91505092915050565b62000bea8162000e49565b82525050565b600062000bff60068362000ddb565b91507f466f7262696400000000000000000000000000000000000000000000000000006000830152602082019050919050565b600062000c4160168362000ddb565b91507f74726164696e67206973206e6f742073746172746564000000000000000000006000830152602082019050919050565b600062000c83601f8362000ddb565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b600062000cc5600b8362000ddb565b91507f426c61636b6c69737465640000000000000000000000000000000000000000006000830152602082019050919050565b62000d038162000e7d565b82525050565b600060408201905062000d20600083018562000bdf565b62000d2f602083018462000bdf565b9392505050565b6000602082019050818103600083015262000d518162000bf0565b9050919050565b6000602082019050818103600083015262000d738162000c32565b9050919050565b6000602082019050818103600083015262000d958162000c74565b9050919050565b6000602082019050818103600083015262000db78162000cb6565b9050919050565b600060208201905062000dd5600083018462000cf8565b92915050565b600082825260208201905092915050565b600062000df98262000e7d565b915062000e068362000e7d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e3e5762000e3d62000ebd565b5b828201905092915050565b600062000e568262000e5d565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000600282049050600182168062000ea057607f821691505b6020821081141562000eb75762000eb662000eec565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b62000f268162000e49565b811462000f3257600080fd5b50565b612d7b8062000f456000396000f3fe608060405234801561001057600080fd5b50600436106101fb5760003560e01c806375f0a8741161011a578063bb85c6d1116100ad578063d07ea4e21161007c578063d07ea4e214610580578063dd62ed3e1461059c578063e0bf7fd1146105cc578063f2fde38b146105fc578063fc06b26a14610618576101fb565b8063bb85c6d114610520578063bff51ef81461053c578063c02466681461055a578063c4ae316814610576576101fb565b80638da5cb5b116100e95780638da5cb5b1461048457806395d89b41146104a2578063a457c2d7146104c0578063a9059cbb146104f0576101fb565b806375f0a8741461040c5780638456cb591461042a578063860a32ec1461044857806389f9a1d314610466576101fb565b8063302757441161019257806342966c681161016157806342966c681461039857806349bd5a5e146103b457806370a08231146103d2578063715018a614610402576101fb565b80633027574414610312578063313ce5671461032e578063395093511461034c578063404e51291461037c576101fb565b806316c02129116101ce57806316c021291461027657806318160ddd146102a65780631ab99e12146102c457806323b872dd146102e2576101fb565b806303417ed51461020057806306fdde031461020a578063095ea7b3146102285780631694505e14610258575b600080fd5b610208610634565b005b610212610668565b60405161021f9190612776565b60405180910390f35b610242600480360381019061023d9190611ff4565b6106fa565b60405161024f9190612740565b60405180910390f35b61026061071d565b60405161026d919061275b565b60405180910390f35b610290600480360381019061028b9190611edb565b610743565b60405161029d9190612740565b60405180910390f35b6102ae610763565b6040516102bb9190612978565b60405180910390f35b6102cc61076d565b6040516102d99190612978565b60405180910390f35b6102fc60048036038101906102f79190611f69565b610773565b6040516103099190612740565b60405180910390f35b61032c60048036038101906103279190612030565b6107a2565b005b6103366107c7565b60405161034391906129ed565b60405180910390f35b61036660048036038101906103619190611ff4565b6107d0565b6040516103739190612740565b60405180910390f35b61039660048036038101906103919190611fb8565b610807565b005b6103b260048036038101906103ad91906120a8565b61086a565b005b6103bc610877565b6040516103c99190612725565b60405180910390f35b6103ec60048036038101906103e79190611edb565b61089d565b6040516103f99190612978565b60405180910390f35b61040a6108e6565b005b6104146108fa565b6040516104219190612725565b60405180910390f35b610432610920565b60405161043f9190612740565b60405180910390f35b610450610933565b60405161045d9190612740565b60405180910390f35b61046e610946565b60405161047b9190612978565b60405180910390f35b61048c61094c565b6040516104999190612725565b60405180910390f35b6104aa610975565b6040516104b79190612776565b60405180910390f35b6104da60048036038101906104d59190611ff4565b610a07565b6040516104e79190612740565b60405180910390f35b61050a60048036038101906105059190611ff4565b610a7e565b6040516105179190612740565b60405180910390f35b61053a60048036038101906105359190611edb565b610aa1565b005b610544610aed565b6040516105519190612740565b60405180910390f35b610574600480360381019061056f9190611fb8565b610b00565b005b61057e610b63565b005b61059a60048036038101906105959190612059565b610b97565b005b6105b660048036038101906105b19190611f2d565b610bcc565b6040516105c39190612978565b60405180910390f35b6105e660048036038101906105e19190611edb565b610c53565b6040516105f39190612740565b60405180910390f35b61061660048036038101906106119190611edb565b610c73565b005b610632600480360381019061062d91906120a8565b610cf7565b005b61063c610d09565b600660149054906101000a900460ff1615600660146101000a81548160ff021916908315150217905550565b60606004805461067790612c30565b80601f01602080910402602001604051908101604052809291908181526020018280546106a390612c30565b80156106f05780601f106106c5576101008083540402835291602001916106f0565b820191906000526020600020905b8154815290600101906020018083116106d357829003601f168201915b5050505050905090565b600080610705610d87565b9050610712818585610d8f565b600191505092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c6020528060005260406000206000915054906101000a900460ff1681565b6000600354905090565b60085481565b60008061077e610d87565b905061078b858285610f5a565b610796858585610fe6565b60019150509392505050565b6107aa610d09565b80600660156101000a81548160ff02191690831515021790555050565b60006012905090565b6000806107db610d87565b90506107fc8185856107ed8589610bcc565b6107f79190612a5d565b610d8f565b600191505092915050565b61080f610d09565b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61087433826113ab565b50565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108ee610d09565b6108f8600061157b565b565b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660169054906101000a900460ff1681565b600660149054906101000a900460ff1681565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461098490612c30565b80601f01602080910402602001604051908101604052809291908181526020018280546109b090612c30565b80156109fd5780601f106109d2576101008083540402835291602001916109fd565b820191906000526020600020905b8154815290600101906020018083116109e057829003601f168201915b5050505050905090565b600080610a12610d87565b90506000610a208286610bcc565b905083811015610a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5c90612938565b60405180910390fd5b610a728286868403610d8f565b60019250505092915050565b600080610a89610d87565b9050610a96818585610fe6565b600191505092915050565b610aa9610d09565b80600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600660159054906101000a900460ff1681565b610b08610d09565b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610b6b610d09565b600660169054906101000a900460ff1615600660166101000a81548160ff021916908315150217905550565b610b9f610d09565b82600660146101000a81548160ff0219169083151502179055508160078190555080600881905550505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600d6020528060005260406000206000915054906101000a900460ff1681565b610c7b610d09565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce2906127d8565b60405180910390fd5b610cf48161157b565b50565b610cff610d09565b8060098190555050565b610d11610d87565b73ffffffffffffffffffffffffffffffffffffffff16610d2f61094c565b73ffffffffffffffffffffffffffffffffffffffff1614610d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7c90612898565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df690612918565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e66906127f8565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f4d9190612978565b60405180910390a3505050565b6000610f668484610bcc565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610fe05781811015610fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc990612838565b60405180910390fd5b610fdf8484848403610d8f565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611056576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104d906128f8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bd90612798565b60405180910390fd5b60008111611109576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110090612818565b60405180910390fd5b6000600660159054906101000a900460ff16156112ab57600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156111e557600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166111e4576064600954836111d79190612ae4565b6111e19190612ab3565b90505b5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112aa57600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166112a95760646009548361129c9190612ae4565b6112a69190612ab3565b90505b5b5b60006112b63061089d565b905060006103e860036112c7610763565b6112d19190612ae4565b6112db9190612ab3565b82101590508080156112fa5750600a60009054906101000a900460ff16155b80156113545750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b156113625761136161163f565b5b600083111561139757600083856113799190612b3e565b905061138687308661196a565b61139187878361196a565b506113a3565b6113a286868661196a565b5b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561141b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611412906128b8565b60405180910390fd5b61142782600083611be5565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156114ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a5906127b8565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115629190612978565b60405180910390a361157683600084611e82565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001600a60006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff81111561169d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156116cb5781602001602082028036833780820191505090505b5090503081600081518110611709577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156117ab57600080fd5b505afa1580156117bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117e39190611f04565b8160018151811061181d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061188c30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166118873061089d565b610d8f565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9476118d33061089d565b600084600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b815260040161191a959493929190612993565b600060405180830381600087803b15801561193457600080fd5b505af1158015611948573d6000803e3d6000fd5b50505050506000600a60006101000a81548160ff021916908315150217905550565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156119da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d1906128f8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4190612798565b60405180910390fd5b611a55838383611be5565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad390612858565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611bcc9190612978565b60405180910390a3611bdf848484611e82565b50505050565b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611c895750600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b611cc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbf90612958565b60405180910390fd5b600660169054906101000a900460ff1615611d9457611ce561094c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611d505750611d2161094c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611d8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d86906128d8565b60405180910390fd5b611e7d565b600660149054906101000a900460ff168015611dfd5750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15611e7c5760075481611e0f8461089d565b611e199190612a5d565b11158015611e3c575060085481611e2f8461089d565b611e399190612a5d565b10155b611e7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7290612878565b60405180910390fd5b5b5b505050565b505050565b600081359050611e9681612d00565b92915050565b600081519050611eab81612d00565b92915050565b600081359050611ec081612d17565b92915050565b600081359050611ed581612d2e565b92915050565b600060208284031215611eed57600080fd5b6000611efb84828501611e87565b91505092915050565b600060208284031215611f1657600080fd5b6000611f2484828501611e9c565b91505092915050565b60008060408385031215611f4057600080fd5b6000611f4e85828601611e87565b9250506020611f5f85828601611e87565b9150509250929050565b600080600060608486031215611f7e57600080fd5b6000611f8c86828701611e87565b9350506020611f9d86828701611e87565b9250506040611fae86828701611ec6565b9150509250925092565b60008060408385031215611fcb57600080fd5b6000611fd985828601611e87565b9250506020611fea85828601611eb1565b9150509250929050565b6000806040838503121561200757600080fd5b600061201585828601611e87565b925050602061202685828601611ec6565b9150509250929050565b60006020828403121561204257600080fd5b600061205084828501611eb1565b91505092915050565b60008060006060848603121561206e57600080fd5b600061207c86828701611eb1565b935050602061208d86828701611ec6565b925050604061209e86828701611ec6565b9150509250925092565b6000602082840312156120ba57600080fd5b60006120c884828501611ec6565b91505092915050565b60006120dd83836120e9565b60208301905092915050565b6120f281612b72565b82525050565b61210181612b72565b82525050565b600061211282612a18565b61211c8185612a3b565b935061212783612a08565b8060005b8381101561215857815161213f88826120d1565b975061214a83612a2e565b92505060018101905061212b565b5085935050505092915050565b61216e81612b84565b82525050565b61217d81612bc7565b82525050565b61218c81612beb565b82525050565b600061219d82612a23565b6121a78185612a4c565b93506121b7818560208601612bfd565b6121c081612cef565b840191505092915050565b60006121d8602383612a4c565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061223e602283612a4c565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006122a4602683612a4c565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061230a602283612a4c565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612370602683612a4c565b91507f45524332303a207472616e73666572206d75737420626520677265617465722060008301527f7468616e203000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006123d6601d83612a4c565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b6000612416602683612a4c565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061247c600683612a4c565b91507f466f7262696400000000000000000000000000000000000000000000000000006000830152602082019050919050565b60006124bc602083612a4c565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006124fc602183612a4c565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612562601683612a4c565b91507f74726164696e67206973206e6f742073746172746564000000000000000000006000830152602082019050919050565b60006125a2602583612a4c565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612608602483612a4c565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061266e602583612a4c565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006126d4600b83612a4c565b91507f426c61636b6c69737465640000000000000000000000000000000000000000006000830152602082019050919050565b61271081612bb0565b82525050565b61271f81612bba565b82525050565b600060208201905061273a60008301846120f8565b92915050565b60006020820190506127556000830184612165565b92915050565b60006020820190506127706000830184612174565b92915050565b600060208201905081810360008301526127908184612192565b905092915050565b600060208201905081810360008301526127b1816121cb565b9050919050565b600060208201905081810360008301526127d181612231565b9050919050565b600060208201905081810360008301526127f181612297565b9050919050565b60006020820190508181036000830152612811816122fd565b9050919050565b6000602082019050818103600083015261283181612363565b9050919050565b60006020820190508181036000830152612851816123c9565b9050919050565b6000602082019050818103600083015261287181612409565b9050919050565b600060208201905081810360008301526128918161246f565b9050919050565b600060208201905081810360008301526128b1816124af565b9050919050565b600060208201905081810360008301526128d1816124ef565b9050919050565b600060208201905081810360008301526128f181612555565b9050919050565b6000602082019050818103600083015261291181612595565b9050919050565b60006020820190508181036000830152612931816125fb565b9050919050565b6000602082019050818103600083015261295181612661565b9050919050565b60006020820190508181036000830152612971816126c7565b9050919050565b600060208201905061298d6000830184612707565b92915050565b600060a0820190506129a86000830188612707565b6129b56020830187612183565b81810360408301526129c78186612107565b90506129d660608301856120f8565b6129e36080830184612707565b9695505050505050565b6000602082019050612a026000830184612716565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000612a6882612bb0565b9150612a7383612bb0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612aa857612aa7612c62565b5b828201905092915050565b6000612abe82612bb0565b9150612ac983612bb0565b925082612ad957612ad8612c91565b5b828204905092915050565b6000612aef82612bb0565b9150612afa83612bb0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612b3357612b32612c62565b5b828202905092915050565b6000612b4982612bb0565b9150612b5483612bb0565b925082821015612b6757612b66612c62565b5b828203905092915050565b6000612b7d82612b90565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000612bd282612bd9565b9050919050565b6000612be482612b90565b9050919050565b6000612bf682612bb0565b9050919050565b60005b83811015612c1b578082015181840152602081019050612c00565b83811115612c2a576000848401525b50505050565b60006002820490506001821680612c4857607f821691505b60208210811415612c5c57612c5b612cc0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b612d0981612b72565b8114612d1457600080fd5b50565b612d2081612b84565b8114612d2b57600080fd5b50565b612d3781612bb0565b8114612d4257600080fd5b5056fea2646970667358221220dd034253dc2c8068c54946a8091dbc1bcdcfc5987729130608a4717e82147d1f64736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101fb5760003560e01c806375f0a8741161011a578063bb85c6d1116100ad578063d07ea4e21161007c578063d07ea4e214610580578063dd62ed3e1461059c578063e0bf7fd1146105cc578063f2fde38b146105fc578063fc06b26a14610618576101fb565b8063bb85c6d114610520578063bff51ef81461053c578063c02466681461055a578063c4ae316814610576576101fb565b80638da5cb5b116100e95780638da5cb5b1461048457806395d89b41146104a2578063a457c2d7146104c0578063a9059cbb146104f0576101fb565b806375f0a8741461040c5780638456cb591461042a578063860a32ec1461044857806389f9a1d314610466576101fb565b8063302757441161019257806342966c681161016157806342966c681461039857806349bd5a5e146103b457806370a08231146103d2578063715018a614610402576101fb565b80633027574414610312578063313ce5671461032e578063395093511461034c578063404e51291461037c576101fb565b806316c02129116101ce57806316c021291461027657806318160ddd146102a65780631ab99e12146102c457806323b872dd146102e2576101fb565b806303417ed51461020057806306fdde031461020a578063095ea7b3146102285780631694505e14610258575b600080fd5b610208610634565b005b610212610668565b60405161021f9190612776565b60405180910390f35b610242600480360381019061023d9190611ff4565b6106fa565b60405161024f9190612740565b60405180910390f35b61026061071d565b60405161026d919061275b565b60405180910390f35b610290600480360381019061028b9190611edb565b610743565b60405161029d9190612740565b60405180910390f35b6102ae610763565b6040516102bb9190612978565b60405180910390f35b6102cc61076d565b6040516102d99190612978565b60405180910390f35b6102fc60048036038101906102f79190611f69565b610773565b6040516103099190612740565b60405180910390f35b61032c60048036038101906103279190612030565b6107a2565b005b6103366107c7565b60405161034391906129ed565b60405180910390f35b61036660048036038101906103619190611ff4565b6107d0565b6040516103739190612740565b60405180910390f35b61039660048036038101906103919190611fb8565b610807565b005b6103b260048036038101906103ad91906120a8565b61086a565b005b6103bc610877565b6040516103c99190612725565b60405180910390f35b6103ec60048036038101906103e79190611edb565b61089d565b6040516103f99190612978565b60405180910390f35b61040a6108e6565b005b6104146108fa565b6040516104219190612725565b60405180910390f35b610432610920565b60405161043f9190612740565b60405180910390f35b610450610933565b60405161045d9190612740565b60405180910390f35b61046e610946565b60405161047b9190612978565b60405180910390f35b61048c61094c565b6040516104999190612725565b60405180910390f35b6104aa610975565b6040516104b79190612776565b60405180910390f35b6104da60048036038101906104d59190611ff4565b610a07565b6040516104e79190612740565b60405180910390f35b61050a60048036038101906105059190611ff4565b610a7e565b6040516105179190612740565b60405180910390f35b61053a60048036038101906105359190611edb565b610aa1565b005b610544610aed565b6040516105519190612740565b60405180910390f35b610574600480360381019061056f9190611fb8565b610b00565b005b61057e610b63565b005b61059a60048036038101906105959190612059565b610b97565b005b6105b660048036038101906105b19190611f2d565b610bcc565b6040516105c39190612978565b60405180910390f35b6105e660048036038101906105e19190611edb565b610c53565b6040516105f39190612740565b60405180910390f35b61061660048036038101906106119190611edb565b610c73565b005b610632600480360381019061062d91906120a8565b610cf7565b005b61063c610d09565b600660149054906101000a900460ff1615600660146101000a81548160ff021916908315150217905550565b60606004805461067790612c30565b80601f01602080910402602001604051908101604052809291908181526020018280546106a390612c30565b80156106f05780601f106106c5576101008083540402835291602001916106f0565b820191906000526020600020905b8154815290600101906020018083116106d357829003601f168201915b5050505050905090565b600080610705610d87565b9050610712818585610d8f565b600191505092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c6020528060005260406000206000915054906101000a900460ff1681565b6000600354905090565b60085481565b60008061077e610d87565b905061078b858285610f5a565b610796858585610fe6565b60019150509392505050565b6107aa610d09565b80600660156101000a81548160ff02191690831515021790555050565b60006012905090565b6000806107db610d87565b90506107fc8185856107ed8589610bcc565b6107f79190612a5d565b610d8f565b600191505092915050565b61080f610d09565b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61087433826113ab565b50565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108ee610d09565b6108f8600061157b565b565b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660169054906101000a900460ff1681565b600660149054906101000a900460ff1681565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461098490612c30565b80601f01602080910402602001604051908101604052809291908181526020018280546109b090612c30565b80156109fd5780601f106109d2576101008083540402835291602001916109fd565b820191906000526020600020905b8154815290600101906020018083116109e057829003601f168201915b5050505050905090565b600080610a12610d87565b90506000610a208286610bcc565b905083811015610a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5c90612938565b60405180910390fd5b610a728286868403610d8f565b60019250505092915050565b600080610a89610d87565b9050610a96818585610fe6565b600191505092915050565b610aa9610d09565b80600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600660159054906101000a900460ff1681565b610b08610d09565b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610b6b610d09565b600660169054906101000a900460ff1615600660166101000a81548160ff021916908315150217905550565b610b9f610d09565b82600660146101000a81548160ff0219169083151502179055508160078190555080600881905550505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600d6020528060005260406000206000915054906101000a900460ff1681565b610c7b610d09565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce2906127d8565b60405180910390fd5b610cf48161157b565b50565b610cff610d09565b8060098190555050565b610d11610d87565b73ffffffffffffffffffffffffffffffffffffffff16610d2f61094c565b73ffffffffffffffffffffffffffffffffffffffff1614610d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7c90612898565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df690612918565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e66906127f8565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f4d9190612978565b60405180910390a3505050565b6000610f668484610bcc565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610fe05781811015610fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc990612838565b60405180910390fd5b610fdf8484848403610d8f565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611056576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104d906128f8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bd90612798565b60405180910390fd5b60008111611109576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110090612818565b60405180910390fd5b6000600660159054906101000a900460ff16156112ab57600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156111e557600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166111e4576064600954836111d79190612ae4565b6111e19190612ab3565b90505b5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112aa57600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166112a95760646009548361129c9190612ae4565b6112a69190612ab3565b90505b5b5b60006112b63061089d565b905060006103e860036112c7610763565b6112d19190612ae4565b6112db9190612ab3565b82101590508080156112fa5750600a60009054906101000a900460ff16155b80156113545750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b156113625761136161163f565b5b600083111561139757600083856113799190612b3e565b905061138687308661196a565b61139187878361196a565b506113a3565b6113a286868661196a565b5b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561141b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611412906128b8565b60405180910390fd5b61142782600083611be5565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156114ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a5906127b8565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115629190612978565b60405180910390a361157683600084611e82565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001600a60006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff81111561169d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156116cb5781602001602082028036833780820191505090505b5090503081600081518110611709577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156117ab57600080fd5b505afa1580156117bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117e39190611f04565b8160018151811061181d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061188c30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166118873061089d565b610d8f565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9476118d33061089d565b600084600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b815260040161191a959493929190612993565b600060405180830381600087803b15801561193457600080fd5b505af1158015611948573d6000803e3d6000fd5b50505050506000600a60006101000a81548160ff021916908315150217905550565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156119da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d1906128f8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4190612798565b60405180910390fd5b611a55838383611be5565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad390612858565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611bcc9190612978565b60405180910390a3611bdf848484611e82565b50505050565b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611c895750600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b611cc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbf90612958565b60405180910390fd5b600660169054906101000a900460ff1615611d9457611ce561094c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611d505750611d2161094c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611d8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d86906128d8565b60405180910390fd5b611e7d565b600660149054906101000a900460ff168015611dfd5750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15611e7c5760075481611e0f8461089d565b611e199190612a5d565b11158015611e3c575060085481611e2f8461089d565b611e399190612a5d565b10155b611e7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7290612878565b60405180910390fd5b5b5b505050565b505050565b600081359050611e9681612d00565b92915050565b600081519050611eab81612d00565b92915050565b600081359050611ec081612d17565b92915050565b600081359050611ed581612d2e565b92915050565b600060208284031215611eed57600080fd5b6000611efb84828501611e87565b91505092915050565b600060208284031215611f1657600080fd5b6000611f2484828501611e9c565b91505092915050565b60008060408385031215611f4057600080fd5b6000611f4e85828601611e87565b9250506020611f5f85828601611e87565b9150509250929050565b600080600060608486031215611f7e57600080fd5b6000611f8c86828701611e87565b9350506020611f9d86828701611e87565b9250506040611fae86828701611ec6565b9150509250925092565b60008060408385031215611fcb57600080fd5b6000611fd985828601611e87565b9250506020611fea85828601611eb1565b9150509250929050565b6000806040838503121561200757600080fd5b600061201585828601611e87565b925050602061202685828601611ec6565b9150509250929050565b60006020828403121561204257600080fd5b600061205084828501611eb1565b91505092915050565b60008060006060848603121561206e57600080fd5b600061207c86828701611eb1565b935050602061208d86828701611ec6565b925050604061209e86828701611ec6565b9150509250925092565b6000602082840312156120ba57600080fd5b60006120c884828501611ec6565b91505092915050565b60006120dd83836120e9565b60208301905092915050565b6120f281612b72565b82525050565b61210181612b72565b82525050565b600061211282612a18565b61211c8185612a3b565b935061212783612a08565b8060005b8381101561215857815161213f88826120d1565b975061214a83612a2e565b92505060018101905061212b565b5085935050505092915050565b61216e81612b84565b82525050565b61217d81612bc7565b82525050565b61218c81612beb565b82525050565b600061219d82612a23565b6121a78185612a4c565b93506121b7818560208601612bfd565b6121c081612cef565b840191505092915050565b60006121d8602383612a4c565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061223e602283612a4c565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006122a4602683612a4c565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061230a602283612a4c565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612370602683612a4c565b91507f45524332303a207472616e73666572206d75737420626520677265617465722060008301527f7468616e203000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006123d6601d83612a4c565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b6000612416602683612a4c565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061247c600683612a4c565b91507f466f7262696400000000000000000000000000000000000000000000000000006000830152602082019050919050565b60006124bc602083612a4c565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006124fc602183612a4c565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612562601683612a4c565b91507f74726164696e67206973206e6f742073746172746564000000000000000000006000830152602082019050919050565b60006125a2602583612a4c565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612608602483612a4c565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061266e602583612a4c565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006126d4600b83612a4c565b91507f426c61636b6c69737465640000000000000000000000000000000000000000006000830152602082019050919050565b61271081612bb0565b82525050565b61271f81612bba565b82525050565b600060208201905061273a60008301846120f8565b92915050565b60006020820190506127556000830184612165565b92915050565b60006020820190506127706000830184612174565b92915050565b600060208201905081810360008301526127908184612192565b905092915050565b600060208201905081810360008301526127b1816121cb565b9050919050565b600060208201905081810360008301526127d181612231565b9050919050565b600060208201905081810360008301526127f181612297565b9050919050565b60006020820190508181036000830152612811816122fd565b9050919050565b6000602082019050818103600083015261283181612363565b9050919050565b60006020820190508181036000830152612851816123c9565b9050919050565b6000602082019050818103600083015261287181612409565b9050919050565b600060208201905081810360008301526128918161246f565b9050919050565b600060208201905081810360008301526128b1816124af565b9050919050565b600060208201905081810360008301526128d1816124ef565b9050919050565b600060208201905081810360008301526128f181612555565b9050919050565b6000602082019050818103600083015261291181612595565b9050919050565b60006020820190508181036000830152612931816125fb565b9050919050565b6000602082019050818103600083015261295181612661565b9050919050565b60006020820190508181036000830152612971816126c7565b9050919050565b600060208201905061298d6000830184612707565b92915050565b600060a0820190506129a86000830188612707565b6129b56020830187612183565b81810360408301526129c78186612107565b90506129d660608301856120f8565b6129e36080830184612707565b9695505050505050565b6000602082019050612a026000830184612716565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000612a6882612bb0565b9150612a7383612bb0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612aa857612aa7612c62565b5b828201905092915050565b6000612abe82612bb0565b9150612ac983612bb0565b925082612ad957612ad8612c91565b5b828204905092915050565b6000612aef82612bb0565b9150612afa83612bb0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612b3357612b32612c62565b5b828202905092915050565b6000612b4982612bb0565b9150612b5483612bb0565b925082821015612b6757612b66612c62565b5b828203905092915050565b6000612b7d82612b90565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000612bd282612bd9565b9050919050565b6000612be482612b90565b9050919050565b6000612bf682612bb0565b9050919050565b60005b83811015612c1b578082015181840152602081019050612c00565b83811115612c2a576000848401525b50505050565b60006002820490506001821680612c4857607f821691505b60208210811415612c5c57612c5b612cc0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b612d0981612b72565b8114612d1457600080fd5b50565b612d2081612b84565b8114612d2b57600080fd5b50565b612d3781612bb0565b8114612d4257600080fd5b5056fea2646970667358221220dd034253dc2c8068c54946a8091dbc1bcdcfc5987729130608a4717e82147d1f64736f6c63430008000033

Deployed Bytecode Sourcemap

22421:5404:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27293:81;;;:::i;:::-;;7304:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9655:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22486:41;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22882:42;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8424:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22667:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10436:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27189:95;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8266:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11140:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27383:160;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27099:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22847:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8595:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21539:103;;;:::i;:::-;;22765:75;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22598:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22534:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22629:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20891:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7523:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11881:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8928:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26554:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22560:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26923:167;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26837:76;;;:::i;:::-;;27552:270;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9184:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22931:51;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21797:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26714:115;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27293:81;20777:13;:11;:13::i;:::-;27359:7:::1;;;;;;;;;;;27358:8;27348:7;;:18;;;;;;;;;;;;;;;;;;27293:81::o:0;7304:100::-;7358:13;7391:5;7384:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7304:100;:::o;9655:201::-;9738:4;9755:13;9771:12;:10;:12::i;:::-;9755:28;;9794:32;9803:5;9810:7;9819:6;9794:8;:32::i;:::-;9844:4;9837:11;;;9655:201;;;;:::o;22486:41::-;;;;;;;;;;;;;:::o;22882:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;8424:108::-;8485:7;8512:12;;8505:19;;8424:108;:::o;22667:31::-;;;;:::o;10436:295::-;10567:4;10584:15;10602:12;:10;:12::i;:::-;10584:30;;10625:38;10641:4;10647:7;10656:6;10625:15;:38::i;:::-;10674:27;10684:4;10690:2;10694:6;10674:9;:27::i;:::-;10719:4;10712:11;;;10436:295;;;;;:::o;27189:95::-;20777:13;:11;:13::i;:::-;27269:7:::1;27254:12;;:22;;;;;;;;;;;;;;;;;;27189:95:::0;:::o;8266:93::-;8324:5;8349:2;8342:9;;8266:93;:::o;11140:238::-;11228:4;11245:13;11261:12;:10;:12::i;:::-;11245:28;;11284:64;11293:5;11300:7;11337:10;11309:25;11319:5;11326:7;11309:9;:25::i;:::-;:38;;;;:::i;:::-;11284:8;:64::i;:::-;11366:4;11359:11;;;11140:238;;;;:::o;27383:160::-;20777:13;:11;:13::i;:::-;27520:15:::1;27497:10;:20;27508:8;27497:20;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;27383:160:::0;;:::o;27099:81::-;27148:24;27154:10;27166:5;27148;:24::i;:::-;27099:81;:::o;22847:28::-;;;;;;;;;;;;;:::o;8595:127::-;8669:7;8696:9;:18;8706:7;8696:18;;;;;;;;;;;;;;;;8689:25;;8595:127;;;:::o;21539:103::-;20777:13;:11;:13::i;:::-;21604:30:::1;21631:1;21604:18;:30::i;:::-;21539:103::o:0;22765:75::-;;;;;;;;;;;;;:::o;22598:24::-;;;;;;;;;;;;;:::o;22534:19::-;;;;;;;;;;;;;:::o;22629:31::-;;;;:::o;20891:87::-;20937:7;20964:6;;;;;;;;;;;20957:13;;20891:87;:::o;7523:104::-;7579:13;7612:7;7605:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7523:104;:::o;11881:436::-;11974:4;11991:13;12007:12;:10;:12::i;:::-;11991:28;;12030:24;12057:25;12067:5;12074:7;12057:9;:25::i;:::-;12030:52;;12121:15;12101:16;:35;;12093:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;12214:60;12223:5;12230:7;12258:15;12239:16;:34;12214:8;:60::i;:::-;12305:4;12298:11;;;;11881:436;;;;:::o;8928:193::-;9007:4;9024:13;9040:12;:10;:12::i;:::-;9024:28;;9063;9073:5;9080:2;9084:6;9063:9;:28::i;:::-;9109:4;9102:11;;;8928:193;;;;:::o;26554:151::-;20777:13;:11;:13::i;:::-;26678:19:::1;26660:15;;:37;;;;;;;;;;;;;;;;;;26554:151:::0;:::o;22560:31::-;;;;;;;;;;;;;:::o;26923:167::-;20777:13;:11;:13::i;:::-;27071:11:::1;27039:19;:29;27059:8;27039:29;;;;;;;;;;;;;;;;:43;;;;;;;;;;;;;;;;;;26923:167:::0;;:::o;26837:76::-;20777:13;:11;:13::i;:::-;26899:5:::1;;;;;;;;;;;26898:6;26890:5;;:14;;;;;;;;;;;;;;;;;;26837:76::o:0;27552:270::-;20777:13;:11;:13::i;:::-;27712:8:::1;27702:7;;:18;;;;;;;;;;;;;;;;;;27750:17;27731:16;:36;;;;27797:17;27778:16;:36;;;;27552:270:::0;;;:::o;9184:151::-;9273:7;9300:11;:18;9312:5;9300:18;;;;;;;;;;;;;;;:27;9319:7;9300:27;;;;;;;;;;;;;;;;9293:34;;9184:151;;;;:::o;22931:51::-;;;;;;;;;;;;;;;;;;;;;;:::o;21797:201::-;20777:13;:11;:13::i;:::-;21906:1:::1;21886:22;;:8;:22;;;;21878:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21962:28;21981:8;21962:18;:28::i;:::-;21797:201:::0;:::o;26714:115::-;20777:13;:11;:13::i;:::-;26807:14:::1;26794:10;:27;;;;26714:115:::0;:::o;21056:132::-;21131:12;:10;:12::i;:::-;21120:23;;:7;:5;:7::i;:::-;:23;;;21112:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21056:132::o;4946:98::-;4999:7;5026:10;5019:17;;4946:98;:::o;15908:380::-;16061:1;16044:19;;:5;:19;;;;16036:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16142:1;16123:21;;:7;:21;;;;16115:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16226:6;16196:11;:18;16208:5;16196:18;;;;;;;;;;;;;;;:27;16215:7;16196:27;;;;;;;;;;;;;;;:36;;;;16264:7;16248:32;;16257:5;16248:32;;;16273:6;16248:32;;;;;;:::i;:::-;;;;;;;;15908:380;;;:::o;16579:453::-;16714:24;16741:25;16751:5;16758:7;16741:9;:25::i;:::-;16714:52;;16801:17;16781:16;:37;16777:248;;16863:6;16843:16;:26;;16835:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16947:51;16956:5;16963:7;16991:6;16972:16;:25;16947:8;:51::i;:::-;16777:248;16579:453;;;;:::o;23852:1380::-;24000:1;23984:18;;:4;:18;;;;23976:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24077:1;24063:16;;:2;:16;;;;24055:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;24147:1;24138:6;:10;24130:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;24205:17;24237:12;;;;;;;;;;;24233:409;;;24278:13;;;;;;;;;;;24270:21;;:4;:21;;;24266:178;;;24343:19;:23;24363:2;24343:23;;;;;;;;;;;;;;;;;;;;;;;;;24338:90;;24425:3;24411:10;;24402:6;:19;;;;:::i;:::-;24401:27;;;;:::i;:::-;24389:39;;24338:90;24266:178;24489:13;;;;;;;;;;;24483:19;;:2;:19;;;24479:152;;;24528:19;:25;24548:4;24528:25;;;;;;;;;;;;;;;;;;;;;;;;;24523:92;;24612:3;24598:10;;24589:6;:19;;;;:::i;:::-;24588:27;;;;:::i;:::-;24576:39;;24523:92;24479:152;24233:409;24655:28;24686:24;24704:4;24686:9;:24::i;:::-;24655:55;;24721:24;24807:4;24802:1;24786:13;:11;:13::i;:::-;:17;;;;:::i;:::-;24785:26;;;;:::i;:::-;24748:20;:63;;24721:90;;24829:19;:36;;;;;24853:12;;;;;;;;;;;24852:13;24829:36;:61;;;;;24877:13;;;;;;;;;;;24869:21;;:4;:21;;;;24829:61;24825:105;;;24907:11;:9;:11::i;:::-;24825:105;24976:1;24964:9;:13;24960:265;;;24994:18;25024:9;25015:6;:18;;;;:::i;:::-;24994:39;;25048:47;25064:4;25078;25085:9;25048:15;:47::i;:::-;25110:37;25126:4;25132:2;25136:10;25110:15;:37::i;:::-;24960:265;;;;25180:33;25196:4;25202:2;25206:6;25180:15;:33::i;:::-;24960:265;23852:1380;;;;;;:::o;14795:675::-;14898:1;14879:21;;:7;:21;;;;14871:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14951:49;14972:7;14989:1;14993:6;14951:20;:49::i;:::-;15013:22;15038:9;:18;15048:7;15038:18;;;;;;;;;;;;;;;;15013:43;;15093:6;15075:14;:24;;15067:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15212:6;15195:14;:23;15174:9;:18;15184:7;15174:18;;;;;;;;;;;;;;;:44;;;;15329:6;15313:12;;:22;;;;;;;;;;;15390:1;15364:37;;15373:7;15364:37;;;15394:6;15364:37;;;;;;:::i;:::-;;;;;;;;15414:48;15434:7;15451:1;15455:6;15414:19;:48::i;:::-;14795:675;;;:::o;22158:191::-;22232:16;22251:6;;;;;;;;;;;22232:25;;22277:8;22268:6;;:17;;;;;;;;;;;;;;;;;;22332:8;22301:40;;22322:8;22301:40;;;;;;;;;;;;22158:191;;:::o;25241:656::-;23041:4;23026:12;;:19;;;;;;;;;;;;;;;;;;25354:21:::1;25392:1;25378:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25354:40;;25423:4;25405;25410:1;25405:7;;;;;;;;;;;;;;;;;;;;;:23;;;;;;;;;::::0;::::1;25449:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;25439:4;25444:1;25439:7;;;;;;;;;;;;;;;;;;;;;:32;;;;;;;;;::::0;::::1;25485:125;25516:4;25544:15;;;;;;;;;;;25575:24;25593:4;25575:9;:24::i;:::-;25485:8;:125::i;:::-;25650:15;;;;;;;;;;;:66;;;25731:24;25749:4;25731:9;:24::i;:::-;25770:1;25814:4;25833:15;;;;;;;;;;;25863;25650:239;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;23056:1;23083:5:::0;23068:12;;:20;;;;;;;;;;;;;;;;;;25241:656::o;12787:840::-;12934:1;12918:18;;:4;:18;;;;12910:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13011:1;12997:16;;:2;:16;;;;12989:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;13066:38;13087:4;13093:2;13097:6;13066:20;:38::i;:::-;13117:19;13139:9;:15;13149:4;13139:15;;;;;;;;;;;;;;;;13117:37;;13188:6;13173:11;:21;;13165:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;13305:6;13291:11;:20;13273:9;:15;13283:4;13273:15;;;;;;;;;;;;;;;:38;;;;13508:6;13491:9;:13;13501:2;13491:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;13558:2;13543:26;;13552:4;13543:26;;;13562:6;13543:26;;;;;;:::i;:::-;;;;;;;;13582:37;13602:4;13608:2;13612:6;13582:19;:37::i;:::-;12787:840;;;;:::o;25906:639::-;26058:10;:14;26069:2;26058:14;;;;;;;;;;;;;;;;;;;;;;;;;26057:15;:36;;;;;26077:10;:16;26088:4;26077:16;;;;;;;;;;;;;;;;;;;;;;;;;26076:17;26057:36;26049:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;26142:5;;;;;;;;;;;26138:126;;;26180:7;:5;:7::i;:::-;26172:15;;:4;:15;;;:32;;;;26197:7;:5;:7::i;:::-;26191:13;;:2;:13;;;26172:32;26164:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;26246:7;;26138:126;26288:7;;;;;;;;;;;:32;;;;;26307:13;;;;;;;;;;;26299:21;;:4;:21;;;26288:32;26284:254;;;26395:16;;26385:6;26363:19;26379:2;26363:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;:121;;;;;26468:16;;26458:6;26436:19;26452:2;26436:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;26363:121;26337:189;;;;;;;;;;;;:::i;:::-;;;;;;;;;26284:254;25906:639;;;;:::o;18361:124::-;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:143::-;;240:6;234:13;225:22;;256:33;283:5;256:33;:::i;:::-;215:80;;;;:::o;301:133::-;;382:6;369:20;360:29;;398:30;422:5;398:30;:::i;:::-;350:84;;;;:::o;440:139::-;;524:6;511:20;502:29;;540:33;567:5;540:33;:::i;:::-;492:87;;;;:::o;585:262::-;;693:2;681:9;672:7;668:23;664:32;661:2;;;709:1;706;699:12;661:2;752:1;777:53;822:7;813:6;802:9;798:22;777:53;:::i;:::-;767:63;;723:117;651:196;;;;:::o;853:284::-;;972:2;960:9;951:7;947:23;943:32;940:2;;;988:1;985;978:12;940:2;1031:1;1056:64;1112:7;1103:6;1092:9;1088:22;1056:64;:::i;:::-;1046:74;;1002:128;930:207;;;;:::o;1143:407::-;;;1268:2;1256:9;1247:7;1243:23;1239:32;1236:2;;;1284:1;1281;1274:12;1236:2;1327:1;1352:53;1397:7;1388:6;1377:9;1373:22;1352:53;:::i;:::-;1342:63;;1298:117;1454:2;1480:53;1525:7;1516:6;1505:9;1501:22;1480:53;:::i;:::-;1470:63;;1425:118;1226:324;;;;;:::o;1556:552::-;;;;1698:2;1686:9;1677:7;1673:23;1669:32;1666:2;;;1714:1;1711;1704:12;1666:2;1757:1;1782:53;1827:7;1818:6;1807:9;1803:22;1782:53;:::i;:::-;1772:63;;1728:117;1884:2;1910:53;1955:7;1946:6;1935:9;1931:22;1910:53;:::i;:::-;1900:63;;1855:118;2012:2;2038:53;2083:7;2074:6;2063:9;2059:22;2038:53;:::i;:::-;2028:63;;1983:118;1656:452;;;;;:::o;2114:401::-;;;2236:2;2224:9;2215:7;2211:23;2207:32;2204:2;;;2252:1;2249;2242:12;2204:2;2295:1;2320:53;2365:7;2356:6;2345:9;2341:22;2320:53;:::i;:::-;2310:63;;2266:117;2422:2;2448:50;2490:7;2481:6;2470:9;2466:22;2448:50;:::i;:::-;2438:60;;2393:115;2194:321;;;;;:::o;2521:407::-;;;2646:2;2634:9;2625:7;2621:23;2617:32;2614:2;;;2662:1;2659;2652:12;2614:2;2705:1;2730:53;2775:7;2766:6;2755:9;2751:22;2730:53;:::i;:::-;2720:63;;2676:117;2832:2;2858:53;2903:7;2894:6;2883:9;2879:22;2858:53;:::i;:::-;2848:63;;2803:118;2604:324;;;;;:::o;2934:256::-;;3039:2;3027:9;3018:7;3014:23;3010:32;3007:2;;;3055:1;3052;3045:12;3007:2;3098:1;3123:50;3165:7;3156:6;3145:9;3141:22;3123:50;:::i;:::-;3113:60;;3069:114;2997:193;;;;:::o;3196:546::-;;;;3335:2;3323:9;3314:7;3310:23;3306:32;3303:2;;;3351:1;3348;3341:12;3303:2;3394:1;3419:50;3461:7;3452:6;3441:9;3437:22;3419:50;:::i;:::-;3409:60;;3365:114;3518:2;3544:53;3589:7;3580:6;3569:9;3565:22;3544:53;:::i;:::-;3534:63;;3489:118;3646:2;3672:53;3717:7;3708:6;3697:9;3693:22;3672:53;:::i;:::-;3662:63;;3617:118;3293:449;;;;;:::o;3748:262::-;;3856:2;3844:9;3835:7;3831:23;3827:32;3824:2;;;3872:1;3869;3862:12;3824:2;3915:1;3940:53;3985:7;3976:6;3965:9;3961:22;3940:53;:::i;:::-;3930:63;;3886:117;3814:196;;;;:::o;4016:179::-;;4106:46;4148:3;4140:6;4106:46;:::i;:::-;4184:4;4179:3;4175:14;4161:28;;4096:99;;;;:::o;4201:108::-;4278:24;4296:5;4278:24;:::i;:::-;4273:3;4266:37;4256:53;;:::o;4315:118::-;4402:24;4420:5;4402:24;:::i;:::-;4397:3;4390:37;4380:53;;:::o;4469:732::-;;4617:54;4665:5;4617:54;:::i;:::-;4687:86;4766:6;4761:3;4687:86;:::i;:::-;4680:93;;4797:56;4847:5;4797:56;:::i;:::-;4876:7;4907:1;4892:284;4917:6;4914:1;4911:13;4892:284;;;4993:6;4987:13;5020:63;5079:3;5064:13;5020:63;:::i;:::-;5013:70;;5106:60;5159:6;5106:60;:::i;:::-;5096:70;;4952:224;4939:1;4936;4932:9;4927:14;;4892:284;;;4896:14;5192:3;5185:10;;4593:608;;;;;;;:::o;5207:109::-;5288:21;5303:5;5288:21;:::i;:::-;5283:3;5276:34;5266:50;;:::o;5322:185::-;5436:64;5494:5;5436:64;:::i;:::-;5431:3;5424:77;5414:93;;:::o;5513:147::-;5608:45;5647:5;5608:45;:::i;:::-;5603:3;5596:58;5586:74;;:::o;5666:364::-;;5782:39;5815:5;5782:39;:::i;:::-;5837:71;5901:6;5896:3;5837:71;:::i;:::-;5830:78;;5917:52;5962:6;5957:3;5950:4;5943:5;5939:16;5917:52;:::i;:::-;5994:29;6016:6;5994:29;:::i;:::-;5989:3;5985:39;5978:46;;5758:272;;;;;:::o;6036:367::-;;6199:67;6263:2;6258:3;6199:67;:::i;:::-;6192:74;;6296:34;6292:1;6287:3;6283:11;6276:55;6362:5;6357:2;6352:3;6348:12;6341:27;6394:2;6389:3;6385:12;6378:19;;6182:221;;;:::o;6409:366::-;;6572:67;6636:2;6631:3;6572:67;:::i;:::-;6565:74;;6669:34;6665:1;6660:3;6656:11;6649:55;6735:4;6730:2;6725:3;6721:12;6714:26;6766:2;6761:3;6757:12;6750:19;;6555:220;;;:::o;6781:370::-;;6944:67;7008:2;7003:3;6944:67;:::i;:::-;6937:74;;7041:34;7037:1;7032:3;7028:11;7021:55;7107:8;7102:2;7097:3;7093:12;7086:30;7142:2;7137:3;7133:12;7126:19;;6927:224;;;:::o;7157:366::-;;7320:67;7384:2;7379:3;7320:67;:::i;:::-;7313:74;;7417:34;7413:1;7408:3;7404:11;7397:55;7483:4;7478:2;7473:3;7469:12;7462:26;7514:2;7509:3;7505:12;7498:19;;7303:220;;;:::o;7529:370::-;;7692:67;7756:2;7751:3;7692:67;:::i;:::-;7685:74;;7789:34;7785:1;7780:3;7776:11;7769:55;7855:8;7850:2;7845:3;7841:12;7834:30;7890:2;7885:3;7881:12;7874:19;;7675:224;;;:::o;7905:327::-;;8068:67;8132:2;8127:3;8068:67;:::i;:::-;8061:74;;8165:31;8161:1;8156:3;8152:11;8145:52;8223:2;8218:3;8214:12;8207:19;;8051:181;;;:::o;8238:370::-;;8401:67;8465:2;8460:3;8401:67;:::i;:::-;8394:74;;8498:34;8494:1;8489:3;8485:11;8478:55;8564:8;8559:2;8554:3;8550:12;8543:30;8599:2;8594:3;8590:12;8583:19;;8384:224;;;:::o;8614:303::-;;8777:66;8841:1;8836:3;8777:66;:::i;:::-;8770:73;;8873:8;8869:1;8864:3;8860:11;8853:29;8908:2;8903:3;8899:12;8892:19;;8760:157;;;:::o;8923:330::-;;9086:67;9150:2;9145:3;9086:67;:::i;:::-;9079:74;;9183:34;9179:1;9174:3;9170:11;9163:55;9244:2;9239:3;9235:12;9228:19;;9069:184;;;:::o;9259:365::-;;9422:67;9486:2;9481:3;9422:67;:::i;:::-;9415:74;;9519:34;9515:1;9510:3;9506:11;9499:55;9585:3;9580:2;9575:3;9571:12;9564:25;9615:2;9610:3;9606:12;9599:19;;9405:219;;;:::o;9630:320::-;;9793:67;9857:2;9852:3;9793:67;:::i;:::-;9786:74;;9890:24;9886:1;9881:3;9877:11;9870:45;9941:2;9936:3;9932:12;9925:19;;9776:174;;;:::o;9956:369::-;;10119:67;10183:2;10178:3;10119:67;:::i;:::-;10112:74;;10216:34;10212:1;10207:3;10203:11;10196:55;10282:7;10277:2;10272:3;10268:12;10261:29;10316:2;10311:3;10307:12;10300:19;;10102:223;;;:::o;10331:368::-;;10494:67;10558:2;10553:3;10494:67;:::i;:::-;10487:74;;10591:34;10587:1;10582:3;10578:11;10571:55;10657:6;10652:2;10647:3;10643:12;10636:28;10690:2;10685:3;10681:12;10674:19;;10477:222;;;:::o;10705:369::-;;10868:67;10932:2;10927:3;10868:67;:::i;:::-;10861:74;;10965:34;10961:1;10956:3;10952:11;10945:55;11031:7;11026:2;11021:3;11017:12;11010:29;11065:2;11060:3;11056:12;11049:19;;10851:223;;;:::o;11080:309::-;;11243:67;11307:2;11302:3;11243:67;:::i;:::-;11236:74;;11340:13;11336:1;11331:3;11327:11;11320:34;11380:2;11375:3;11371:12;11364:19;;11226:163;;;:::o;11395:118::-;11482:24;11500:5;11482:24;:::i;:::-;11477:3;11470:37;11460:53;;:::o;11519:112::-;11602:22;11618:5;11602:22;:::i;:::-;11597:3;11590:35;11580:51;;:::o;11637:222::-;;11768:2;11757:9;11753:18;11745:26;;11781:71;11849:1;11838:9;11834:17;11825:6;11781:71;:::i;:::-;11735:124;;;;:::o;11865:210::-;;11990:2;11979:9;11975:18;11967:26;;12003:65;12065:1;12054:9;12050:17;12041:6;12003:65;:::i;:::-;11957:118;;;;:::o;12081:276::-;;12239:2;12228:9;12224:18;12216:26;;12252:98;12347:1;12336:9;12332:17;12323:6;12252:98;:::i;:::-;12206:151;;;;:::o;12363:313::-;;12514:2;12503:9;12499:18;12491:26;;12563:9;12557:4;12553:20;12549:1;12538:9;12534:17;12527:47;12591:78;12664:4;12655:6;12591:78;:::i;:::-;12583:86;;12481:195;;;;:::o;12682:419::-;;12886:2;12875:9;12871:18;12863:26;;12935:9;12929:4;12925:20;12921:1;12910:9;12906:17;12899:47;12963:131;13089:4;12963:131;:::i;:::-;12955:139;;12853:248;;;:::o;13107:419::-;;13311:2;13300:9;13296:18;13288:26;;13360:9;13354:4;13350:20;13346:1;13335:9;13331:17;13324:47;13388:131;13514:4;13388:131;:::i;:::-;13380:139;;13278:248;;;:::o;13532:419::-;;13736:2;13725:9;13721:18;13713:26;;13785:9;13779:4;13775:20;13771:1;13760:9;13756:17;13749:47;13813:131;13939:4;13813:131;:::i;:::-;13805:139;;13703:248;;;:::o;13957:419::-;;14161:2;14150:9;14146:18;14138:26;;14210:9;14204:4;14200:20;14196:1;14185:9;14181:17;14174:47;14238:131;14364:4;14238:131;:::i;:::-;14230:139;;14128:248;;;:::o;14382:419::-;;14586:2;14575:9;14571:18;14563:26;;14635:9;14629:4;14625:20;14621:1;14610:9;14606:17;14599:47;14663:131;14789:4;14663:131;:::i;:::-;14655:139;;14553:248;;;:::o;14807:419::-;;15011:2;15000:9;14996:18;14988:26;;15060:9;15054:4;15050:20;15046:1;15035:9;15031:17;15024:47;15088:131;15214:4;15088:131;:::i;:::-;15080:139;;14978:248;;;:::o;15232:419::-;;15436:2;15425:9;15421:18;15413:26;;15485:9;15479:4;15475:20;15471:1;15460:9;15456:17;15449:47;15513:131;15639:4;15513:131;:::i;:::-;15505:139;;15403:248;;;:::o;15657:419::-;;15861:2;15850:9;15846:18;15838:26;;15910:9;15904:4;15900:20;15896:1;15885:9;15881:17;15874:47;15938:131;16064:4;15938:131;:::i;:::-;15930:139;;15828:248;;;:::o;16082:419::-;;16286:2;16275:9;16271:18;16263:26;;16335:9;16329:4;16325:20;16321:1;16310:9;16306:17;16299:47;16363:131;16489:4;16363:131;:::i;:::-;16355:139;;16253:248;;;:::o;16507:419::-;;16711:2;16700:9;16696:18;16688:26;;16760:9;16754:4;16750:20;16746:1;16735:9;16731:17;16724:47;16788:131;16914:4;16788:131;:::i;:::-;16780:139;;16678:248;;;:::o;16932:419::-;;17136:2;17125:9;17121:18;17113:26;;17185:9;17179:4;17175:20;17171:1;17160:9;17156:17;17149:47;17213:131;17339:4;17213:131;:::i;:::-;17205:139;;17103:248;;;:::o;17357:419::-;;17561:2;17550:9;17546:18;17538:26;;17610:9;17604:4;17600:20;17596:1;17585:9;17581:17;17574:47;17638:131;17764:4;17638:131;:::i;:::-;17630:139;;17528:248;;;:::o;17782:419::-;;17986:2;17975:9;17971:18;17963:26;;18035:9;18029:4;18025:20;18021:1;18010:9;18006:17;17999:47;18063:131;18189:4;18063:131;:::i;:::-;18055:139;;17953:248;;;:::o;18207:419::-;;18411:2;18400:9;18396:18;18388:26;;18460:9;18454:4;18450:20;18446:1;18435:9;18431:17;18424:47;18488:131;18614:4;18488:131;:::i;:::-;18480:139;;18378:248;;;:::o;18632:419::-;;18836:2;18825:9;18821:18;18813:26;;18885:9;18879:4;18875:20;18871:1;18860:9;18856:17;18849:47;18913:131;19039:4;18913:131;:::i;:::-;18905:139;;18803:248;;;:::o;19057:222::-;;19188:2;19177:9;19173:18;19165:26;;19201:71;19269:1;19258:9;19254:17;19245:6;19201:71;:::i;:::-;19155:124;;;;:::o;19285:831::-;;19586:3;19575:9;19571:19;19563:27;;19600:71;19668:1;19657:9;19653:17;19644:6;19600:71;:::i;:::-;19681:80;19757:2;19746:9;19742:18;19733:6;19681:80;:::i;:::-;19808:9;19802:4;19798:20;19793:2;19782:9;19778:18;19771:48;19836:108;19939:4;19930:6;19836:108;:::i;:::-;19828:116;;19954:72;20022:2;20011:9;20007:18;19998:6;19954:72;:::i;:::-;20036:73;20104:3;20093:9;20089:19;20080:6;20036:73;:::i;:::-;19553:563;;;;;;;;:::o;20122:214::-;;20249:2;20238:9;20234:18;20226:26;;20262:67;20326:1;20315:9;20311:17;20302:6;20262:67;:::i;:::-;20216:120;;;;:::o;20342:132::-;;20432:3;20424:11;;20462:4;20457:3;20453:14;20445:22;;20414:60;;;:::o;20480:114::-;;20581:5;20575:12;20565:22;;20554:40;;;:::o;20600:99::-;;20686:5;20680:12;20670:22;;20659:40;;;:::o;20705:113::-;;20807:4;20802:3;20798:14;20790:22;;20780:38;;;:::o;20824:184::-;;20957:6;20952:3;20945:19;20997:4;20992:3;20988:14;20973:29;;20935:73;;;;:::o;21014:169::-;;21132:6;21127:3;21120:19;21172:4;21167:3;21163:14;21148:29;;21110:73;;;;:::o;21189:305::-;;21248:20;21266:1;21248:20;:::i;:::-;21243:25;;21282:20;21300:1;21282:20;:::i;:::-;21277:25;;21436:1;21368:66;21364:74;21361:1;21358:81;21355:2;;;21442:18;;:::i;:::-;21355:2;21486:1;21483;21479:9;21472:16;;21233:261;;;;:::o;21500:185::-;;21557:20;21575:1;21557:20;:::i;:::-;21552:25;;21591:20;21609:1;21591:20;:::i;:::-;21586:25;;21630:1;21620:2;;21635:18;;:::i;:::-;21620:2;21677:1;21674;21670:9;21665:14;;21542:143;;;;:::o;21691:348::-;;21754:20;21772:1;21754:20;:::i;:::-;21749:25;;21788:20;21806:1;21788:20;:::i;:::-;21783:25;;21976:1;21908:66;21904:74;21901:1;21898:81;21893:1;21886:9;21879:17;21875:105;21872:2;;;21983:18;;:::i;:::-;21872:2;22031:1;22028;22024:9;22013:20;;21739:300;;;;:::o;22045:191::-;;22105:20;22123:1;22105:20;:::i;:::-;22100:25;;22139:20;22157:1;22139:20;:::i;:::-;22134:25;;22178:1;22175;22172:8;22169:2;;;22183:18;;:::i;:::-;22169:2;22228:1;22225;22221:9;22213:17;;22090:146;;;;:::o;22242:96::-;;22308:24;22326:5;22308:24;:::i;:::-;22297:35;;22287:51;;;:::o;22344:90::-;;22421:5;22414:13;22407:21;22396:32;;22386:48;;;:::o;22440:126::-;;22517:42;22510:5;22506:54;22495:65;;22485:81;;;:::o;22572:77::-;;22638:5;22627:16;;22617:32;;;:::o;22655:86::-;;22730:4;22723:5;22719:16;22708:27;;22698:43;;;:::o;22747:180::-;;22857:64;22915:5;22857:64;:::i;:::-;22844:77;;22834:93;;;:::o;22933:140::-;;23043:24;23061:5;23043:24;:::i;:::-;23030:37;;23020:53;;;:::o;23079:121::-;;23170:24;23188:5;23170:24;:::i;:::-;23157:37;;23147:53;;;:::o;23206:307::-;23274:1;23284:113;23298:6;23295:1;23292:13;23284:113;;;23383:1;23378:3;23374:11;23368:18;23364:1;23359:3;23355:11;23348:39;23320:2;23317:1;23313:10;23308:15;;23284:113;;;23415:6;23412:1;23409:13;23406:2;;;23495:1;23486:6;23481:3;23477:16;23470:27;23406:2;23255:258;;;;:::o;23519:320::-;;23600:1;23594:4;23590:12;23580:22;;23647:1;23641:4;23637:12;23668:18;23658:2;;23724:4;23716:6;23712:17;23702:27;;23658:2;23786;23778:6;23775:14;23755:18;23752:38;23749:2;;;23805:18;;:::i;:::-;23749:2;23570:269;;;;:::o;23845:180::-;23893:77;23890:1;23883:88;23990:4;23987:1;23980:15;24014:4;24011:1;24004:15;24031:180;24079:77;24076:1;24069:88;24176:4;24173:1;24166:15;24200:4;24197:1;24190:15;24217:180;24265:77;24262:1;24255:88;24362:4;24359:1;24352:15;24386:4;24383:1;24376:15;24403:102;;24495:2;24491:7;24486:2;24479:5;24475:14;24471:28;24461:38;;24451:54;;;:::o;24511:122::-;24584:24;24602:5;24584:24;:::i;:::-;24577:5;24574:35;24564:2;;24623:1;24620;24613:12;24564:2;24554:79;:::o;24639:116::-;24709:21;24724:5;24709:21;:::i;:::-;24702:5;24699:32;24689:2;;24745:1;24742;24735:12;24689:2;24679:76;:::o;24761:122::-;24834:24;24852:5;24834:24;:::i;:::-;24827:5;24824:35;24814:2;;24873:1;24870;24863:12;24814:2;24804:79;:::o

Swarm Source

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