ETH Price: $3,309.25 (-3.22%)
Gas: 20 Gwei

Token

King Pepe (KPEPE)
 

Overview

Max Total Supply

420,690,000,000,000 KPEPE

Holders

155

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,300,326,710,413.141974518128620521 KPEPE

Value
$0.00
0xd0547fda299d54b7cecae399df6996ebb6341b69
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:
KingPepe

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-03
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.16;

interface IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint256
    );

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function allPairsLength() external view returns (uint256);

    function getPair(address tokenA, address tokenB)
        external
        view
        returns (address pair);

    function allPairs(uint256) external view returns (address pair);

    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,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 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 (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 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 (uint256);

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    event Mint(address indexed sender, uint256 amount0, uint256 amount1);
    event Burn(
        address indexed sender,
        uint256 amount0,
        uint256 amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint256 amount0In,
        uint256 amount1In,
        uint256 amount0Out,
        uint256 amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    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 (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 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,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETH(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountToken, uint256 amountETH);

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

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

/**
 * @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 decimals places of the token.
     */
    function decimals() external view returns (uint8);

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

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

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

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

    /**
     * @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() external view virtual override returns (uint256) {
        return _totalSupply;
    }

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

    /**
     * @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)
        external
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @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)
        external
        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
    ) external virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        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)
        external
        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 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)
        external
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

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

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

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

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

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

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

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

        emit Transfer(from, to, amount);
    }
}

contract KingPepe is ERC20, Ownable {
    address public immutable uniswapV2Pair;
    IUniswapV2Router02 public immutable uniswapV2Router;

    bool inSwapAndLiquify;
    uint256 private _marketingReserves = 0;
    mapping(address => bool) private _isExcludedFromFee;

    // TOKENOMICS START
    string private _name = "King Pepe";
    string private _symbol = "KPEPE";
    uint8 private _decimals = 18;
    uint256 private _supply = 420_690_000_000_000;
    uint256 public taxBuyForLiquidity = 0;
    uint256 public taxBuyForMarketing = 20;
    uint256 public taxSellForLiquidity = 0;
    uint256 public taxSellForMarketing = 20;
    uint256 public maxTxAmount = 8_414_000_000_000 * 10**_decimals;
    uint256 public maxWalletAmount = 8_414_000_000_000 * 10**_decimals;
    uint256 private _numTokensSellToAddToLiquidity = 1_000_000_000_000 * 10**_decimals;
    uint256 private _numTokensSellToAddToETH = 1_000_000_000_000 * 10**_decimals;
    address public marketingWallet = 0x3d71C51bC20ad2ae2FA58e4D6C9521d8E1422e7d;
    // TOKENOMICS END

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );

    modifier lockTheSwap() {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    /**
     * @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() ERC20(_name, _symbol) {
        _mint(msg.sender, (_supply * 10**_decimals));

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;

        _isExcludedFromFee[address(uniswapV2Router)] = true;
        _isExcludedFromFee[msg.sender] = true;
        _isExcludedFromFee[marketingWallet] = 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 override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        require(balanceOf(from) >= amount, "ERC20: transfer amount exceeds balance");

        if ((from == uniswapV2Pair || to == uniswapV2Pair) && !inSwapAndLiquify) {
            if (from != uniswapV2Pair) {
                uint256 contractLiquidityBalance = balanceOf(address(this)) - _marketingReserves;
                if (contractLiquidityBalance >= _numTokensSellToAddToLiquidity) {
                    _swapAndLiquify(_numTokensSellToAddToLiquidity);
                }
                if ((_marketingReserves) >= _numTokensSellToAddToETH) {
                    _swapTokensForEth(_numTokensSellToAddToETH);
                    _marketingReserves -= _numTokensSellToAddToETH;
                    bool sent = payable(marketingWallet).send(address(this).balance);
                    require(sent, "Failed to send ETH");
                }
            }

            uint256 transferAmount;
            if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
                transferAmount = amount;
            } 
            else {
                require(amount <= maxTxAmount, "ERC20: transfer amount exceeds the max transaction amount");
                if(from == uniswapV2Pair){
                    require((amount + balanceOf(to)) <= maxWalletAmount, "ERC20: balance amount exceeded max wallet amount limit");
                }
                uint256 marketingShare;
                uint256 liquidityShare;
                
                if (to == uniswapV2Pair) {
                    marketingShare = (amount * taxSellForMarketing) / 100;
                    liquidityShare = (amount * taxSellForLiquidity) / 100;
                } else {
                    marketingShare = (amount * taxBuyForMarketing) / 100;
                    liquidityShare = (amount * taxBuyForLiquidity) / 100;
                }
                transferAmount = amount - (marketingShare + liquidityShare);
                _marketingReserves += marketingShare;
                if (marketingShare + liquidityShare > 0) {
                    super._transfer(from, address(this), (marketingShare + liquidityShare));
                }
            }
            super._transfer(from, to, transferAmount);
        } 
        else {
            super._transfer(from, to, amount);
        }
    }

    function clearStuckETH() external {
        payable(marketingWallet).transfer(address(this).balance);
    }
    
    function clearStuckToken() external {
        require(balanceOf(address(this)) > 0, "Insufficient Balance");
        super._transfer(address(this), marketingWallet, balanceOf(address(this)));
        _marketingReserves = 0;
    }

    function _swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        uint256 half = (contractTokenBalance / 2);
        uint256 otherHalf = (contractTokenBalance - half);

        uint256 initialBalance = address(this).balance;

        _swapTokensForEth(half);

        uint256 newBalance = (address(this).balance - initialBalance);

        _addLiquidity(otherHalf, newBalance);

        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

    function _swapTokensForEth(uint256 tokenAmount) private lockTheSwap {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            (block.timestamp + 300)
        );
    }

    function _addLiquidity(uint256 tokenAmount, uint256 ethAmount)
        private
        lockTheSwap
    {
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            marketingWallet,
            block.timestamp
        );
    }

    function changeMarketingWallet(address newWallet)
        public
        onlyOwner
        returns (bool)
    {
        marketingWallet = newWallet;
        return true;
    }

    function changeTaxForLiquidityAndMarketing(uint256 _taxBuyForLiquidity, uint256 _taxBuyForMarketing, uint256 _taxSellForLiquidity, uint256 _taxSellForMarketing)
        public
        onlyOwner
        returns (bool)
    {
        require((_taxBuyForLiquidity+_taxBuyForMarketing) <= 30, "ERC20: total tax must not be greater than 30");
        require((_taxSellForLiquidity+_taxSellForMarketing) <= 30, "ERC20: total tax must not be greater than 30");
        taxBuyForLiquidity = _taxBuyForLiquidity;
        taxBuyForMarketing = _taxBuyForMarketing;
        taxSellForLiquidity = _taxSellForLiquidity;
        taxSellForMarketing = _taxSellForMarketing;

        return true;
    }

    function changeMaxTxAmount(uint256 _maxTxAmount)
        public
        onlyOwner
        returns (bool)
    {
        maxTxAmount = _maxTxAmount * 10**_decimals;

        return true;
    }

    function changeMaxWalletAmount(uint256 _maxWalletAmount)
        public
        onlyOwner
        returns (bool)
    {
        maxWalletAmount = _maxWalletAmount * 10**_decimals;

        return true;
    }

    receive() external payable {}
}

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":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"changeMarketingWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"changeMaxTxAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletAmount","type":"uint256"}],"name":"changeMaxWalletAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxBuyForLiquidity","type":"uint256"},{"internalType":"uint256","name":"_taxBuyForMarketing","type":"uint256"},{"internalType":"uint256","name":"_taxSellForLiquidity","type":"uint256"},{"internalType":"uint256","name":"_taxSellForMarketing","type":"uint256"}],"name":"changeTaxForLiquidityAndMarketing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"clearStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"clearStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxBuyForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxBuyForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxSellForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxSellForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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"},{"stateMutability":"payable","type":"receive"}]

60c060405260006006556040518060400160405280600981526020017f4b696e6720506570650000000000000000000000000000000000000000000000815250600890816200004f919062000b52565b506040518060400160405280600581526020017f4b504550450000000000000000000000000000000000000000000000000000008152506009908162000096919062000b52565b506012600a60006101000a81548160ff021916908360ff16021790555066017e9d8602b400600b556000600c556014600d556000600e556014600f55600a60009054906101000a900460ff16600a620000f0919062000dc9565b6507a7097b2c0062000103919062000e1a565b601055600a60009054906101000a900460ff16600a62000124919062000dc9565b6507a7097b2c0062000137919062000e1a565b601155600a60009054906101000a900460ff16600a62000158919062000dc9565b64e8d4a510006200016a919062000e1a565b601255600a60009054906101000a900460ff16600a6200018b919062000dc9565b64e8d4a510006200019d919062000e1a565b601355733d71c51bc20ad2ae2fa58e4d6c9521d8e1422e7d601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200020257600080fd5b5060088054620002129062000941565b80601f0160208091040260200160405190810160405280929190818152602001828054620002409062000941565b8015620002915780601f10620002655761010080835404028352916020019162000291565b820191906000526020600020905b8154815290600101906020018083116200027357829003601f168201915b505050505060098054620002a59062000941565b80601f0160208091040260200160405190810160405280929190818152602001828054620002d39062000941565b8015620003245780601f10620002f85761010080835404028352916020019162000324565b820191906000526020600020905b8154815290600101906020018083116200030657829003601f168201915b505050505081600390816200033a919062000b52565b5080600490816200034c919062000b52565b5050506200036f62000363620006c560201b60201c565b620006cd60201b60201c565b620003ad33600a60009054906101000a900460ff16600a62000392919062000dc9565b600b54620003a1919062000e1a565b6200079360201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000412573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000438919062000ee5565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620004a0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004c6919062000ee5565b6040518363ffffffff1660e01b8152600401620004e592919062000f28565b6020604051808303816000875af115801562000505573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200052b919062000ee5565b73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff168152505060016007600060a05173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160076000601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505062001041565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000805576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007fc9062000fb6565b60405180910390fd5b806002600082825462000819919062000fd8565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620008cc919062001024565b60405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200095a57607f821691505b60208210810362000970576200096f62000912565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620009da7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200099b565b620009e686836200099b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000a3362000a2d62000a2784620009fe565b62000a08565b620009fe565b9050919050565b6000819050919050565b62000a4f8362000a12565b62000a6762000a5e8262000a3a565b848454620009a8565b825550505050565b600090565b62000a7e62000a6f565b62000a8b81848462000a44565b505050565b5b8181101562000ab35762000aa760008262000a74565b60018101905062000a91565b5050565b601f82111562000b025762000acc8162000976565b62000ad7846200098b565b8101602085101562000ae7578190505b62000aff62000af6856200098b565b83018262000a90565b50505b505050565b600082821c905092915050565b600062000b276000198460080262000b07565b1980831691505092915050565b600062000b42838362000b14565b9150826002028217905092915050565b62000b5d82620008d8565b67ffffffffffffffff81111562000b795762000b78620008e3565b5b62000b85825462000941565b62000b9282828562000ab7565b600060209050601f83116001811462000bca576000841562000bb5578287015190505b62000bc1858262000b34565b86555062000c31565b601f19841662000bda8662000976565b60005b8281101562000c045784890151825560018201915060208501945060208101905062000bdd565b8683101562000c24578489015162000c20601f89168262000b14565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000cc75780860481111562000c9f5762000c9e62000c39565b5b600185161562000caf5780820291505b808102905062000cbf8562000c68565b945062000c7f565b94509492505050565b60008262000ce2576001905062000db5565b8162000cf2576000905062000db5565b816001811462000d0b576002811462000d165762000d4c565b600191505062000db5565b60ff84111562000d2b5762000d2a62000c39565b5b8360020a91508482111562000d455762000d4462000c39565b5b5062000db5565b5060208310610133831016604e8410600b841016171562000d865782820a90508381111562000d805762000d7f62000c39565b5b62000db5565b62000d95848484600162000c75565b9250905081840481111562000daf5762000dae62000c39565b5b81810290505b9392505050565b600060ff82169050919050565b600062000dd682620009fe565b915062000de38362000dbc565b925062000e127fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000cd0565b905092915050565b600062000e2782620009fe565b915062000e3483620009fe565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000e705762000e6f62000c39565b5b828202905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000ead8262000e80565b9050919050565b62000ebf8162000ea0565b811462000ecb57600080fd5b50565b60008151905062000edf8162000eb4565b92915050565b60006020828403121562000efe5762000efd62000e7b565b5b600062000f0e8482850162000ece565b91505092915050565b62000f228162000ea0565b82525050565b600060408201905062000f3f600083018562000f17565b62000f4e602083018462000f17565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f9e601f8362000f55565b915062000fab8262000f66565b602082019050919050565b6000602082019050818103600083015262000fd18162000f8f565b9050919050565b600062000fe582620009fe565b915062000ff283620009fe565b92508282019050808211156200100d576200100c62000c39565b5b92915050565b6200101e81620009fe565b82525050565b60006020820190506200103b600083018462001013565b92915050565b60805160a0516130c5620010ad600039600081816107f001528181611bf701528181611cd801528181611cff01528181611dde0152611e0501526000818161095d015281816111d60152818161122b01528181611299015281816114e0015261158f01526130c56000f3fe6080604052600436106101c65760003560e01c80638c0b5e22116100f7578063bb85c6d111610095578063e5c83f2c11610064578063e5c83f2c146106a3578063e66c19c1146106ce578063f2fde38b146106f9578063f88de0c314610722576101cd565b8063bb85c6d1146105e7578063d0e1d26214610624578063d85a28281461064f578063dd62ed3e14610666576101cd565b8063a457c2d7116100d1578063a457c2d714610517578063a9059cbb14610554578063aa4bde2814610591578063b60c30f9146105bc576101cd565b80638c0b5e22146104965780638da5cb5b146104c157806395d89b41146104ec576101cd565b8063395093511161016457806370a082311161013e57806370a08231146103da578063715018a61461041757806375f0a8741461042e57806381bfdcca14610459576101cd565b8063395093511461033557806349bd5a5e14610372578063677daa571461039d576101cd565b806318160ddd116101a057806318160ddd1461026557806323b872dd14610290578063313ce567146102cd5780633902fa05146102f8576101cd565b806306fdde03146101d2578063095ea7b3146101fd5780631694505e1461023a576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101e7610739565b6040516101f49190611f7f565b60405180910390f35b34801561020957600080fd5b50610224600480360381019061021f919061203a565b6107cb565b6040516102319190612095565b60405180910390f35b34801561024657600080fd5b5061024f6107ee565b60405161025c919061210f565b60405180910390f35b34801561027157600080fd5b5061027a610812565b6040516102879190612139565b60405180910390f35b34801561029c57600080fd5b506102b760048036038101906102b29190612154565b61081c565b6040516102c49190612095565b60405180910390f35b3480156102d957600080fd5b506102e261084b565b6040516102ef91906121c3565b60405180910390f35b34801561030457600080fd5b5061031f600480360381019061031a91906121de565b610854565b60405161032c9190612095565b60405180910390f35b34801561034157600080fd5b5061035c6004803603810190610357919061203a565b610924565b6040516103699190612095565b60405180910390f35b34801561037e57600080fd5b5061038761095b565b6040516103949190612254565b60405180910390f35b3480156103a957600080fd5b506103c460048036038101906103bf919061226f565b61097f565b6040516103d19190612095565b60405180910390f35b3480156103e657600080fd5b5061040160048036038101906103fc919061229c565b6109bf565b60405161040e9190612139565b60405180910390f35b34801561042357600080fd5b5061042c610a07565b005b34801561043a57600080fd5b50610443610a1b565b6040516104509190612254565b60405180910390f35b34801561046557600080fd5b50610480600480360381019061047b919061226f565b610a41565b60405161048d9190612095565b60405180910390f35b3480156104a257600080fd5b506104ab610a81565b6040516104b89190612139565b60405180910390f35b3480156104cd57600080fd5b506104d6610a87565b6040516104e39190612254565b60405180910390f35b3480156104f857600080fd5b50610501610ab1565b60405161050e9190611f7f565b60405180910390f35b34801561052357600080fd5b5061053e6004803603810190610539919061203a565b610b43565b60405161054b9190612095565b60405180910390f35b34801561056057600080fd5b5061057b6004803603810190610576919061203a565b610bba565b6040516105889190612095565b60405180910390f35b34801561059d57600080fd5b506105a6610bdd565b6040516105b39190612139565b60405180910390f35b3480156105c857600080fd5b506105d1610be3565b6040516105de9190612139565b60405180910390f35b3480156105f357600080fd5b5061060e6004803603810190610609919061229c565b610be9565b60405161061b9190612095565b60405180910390f35b34801561063057600080fd5b50610639610c3d565b6040516106469190612139565b60405180910390f35b34801561065b57600080fd5b50610664610c43565b005b34801561067257600080fd5b5061068d600480360381019061068891906122c9565b610ccd565b60405161069a9190612139565b60405180910390f35b3480156106af57600080fd5b506106b8610d54565b6040516106c59190612139565b60405180910390f35b3480156106da57600080fd5b506106e3610d5a565b6040516106f09190612139565b60405180910390f35b34801561070557600080fd5b50610720600480360381019061071b919061229c565b610d60565b005b34801561072e57600080fd5b50610737610de3565b005b60606003805461074890612338565b80601f016020809104026020016040519081016040528092919081815260200182805461077490612338565b80156107c15780601f10610796576101008083540402835291602001916107c1565b820191906000526020600020905b8154815290600101906020018083116107a457829003601f168201915b5050505050905090565b6000806107d6610e4e565b90506107e3818585610e56565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b600080610827610e4e565b905061083485828561101f565b61083f8585856110ab565b60019150509392505050565b60006012905090565b600061085e6116d8565b601e848661086c9190612398565b11156108ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a49061243e565b60405180910390fd5b601e82846108bb9190612398565b11156108fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f39061243e565b60405180910390fd5b84600c8190555083600d8190555082600e8190555081600f8190555060019050949350505050565b60008061092f610e4e565b90506109508185856109418589610ccd565b61094b9190612398565b610e56565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60006109896116d8565b600a60009054906101000a900460ff16600a6109a59190612591565b826109b091906125dc565b60108190555060019050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a0f6116d8565b610a196000611756565b565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610a4b6116d8565b600a60009054906101000a900460ff16600a610a679190612591565b82610a7291906125dc565b60118190555060019050919050565b60105481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610ac090612338565b80601f0160208091040260200160405190810160405280929190818152602001828054610aec90612338565b8015610b395780601f10610b0e57610100808354040283529160200191610b39565b820191906000526020600020905b815481529060010190602001808311610b1c57829003601f168201915b5050505050905090565b600080610b4e610e4e565b90506000610b5c8286610ccd565b905083811015610ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b98906126a8565b60405180910390fd5b610bae8286868403610e56565b60019250505092915050565b600080610bc5610e4e565b9050610bd28185856110ab565b600191505092915050565b60115481565b600d5481565b6000610bf36116d8565b81601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b600f5481565b6000610c4e306109bf565b11610c8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8590612714565b60405180910390fd5b610cc330601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610cbe306109bf565b61181c565b6000600681905550565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600e5481565b600c5481565b610d686116d8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dce906127a6565b60405180910390fd5b610de081611756565b50565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610e4b573d6000803e3d6000fd5b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ec5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebc90612838565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2b906128ca565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110129190612139565b60405180910390a3505050565b600061102b8484610ccd565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110a55781811015611097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108e90612936565b60405180910390fd5b6110a48484848403610e56565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361111a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611111906129c8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611189576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118090612a5a565b60405180910390fd5b80611193846109bf565b10156111d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cb90612aec565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061127957507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80156112925750600560149054906101000a900460ff16155b156116c7577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146113e95760006006546112f8306109bf565b6113029190612b0c565b9050601254811061131957611318601254611a7c565b5b601354600654106113e75761132f601354611b3d565b601354600660008282546113439190612b0c565b925050819055506000601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050509050806113e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dc90612b8c565b60405180910390fd5b505b505b6000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061148c5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611499578190506116b6565b6010548211156114de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d590612c1e565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361158a5760115461153d846109bf565b836115489190612398565b1115611589576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158090612cb0565b60405180910390fd5b5b6000807f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361161d576064600f54856115f091906125dc565b6115fa9190612cff565b91506064600e548561160c91906125dc565b6116169190612cff565b9050611656565b6064600d548561162d91906125dc565b6116379190612cff565b91506064600c548561164991906125dc565b6116539190612cff565b90505b80826116629190612398565b8461166d9190612b0c565b925081600660008282546116819190612398565b92505081905550600081836116969190612398565b11156116b3576116b2863083856116ad9190612398565b61181c565b5b50505b6116c184848361181c565b506116d3565b6116d283838361181c565b5b505050565b6116e0610e4e565b73ffffffffffffffffffffffffffffffffffffffff166116fe610a87565b73ffffffffffffffffffffffffffffffffffffffff1614611754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174b90612d7c565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361188b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611882906129c8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f190612a5a565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611980576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197790612aec565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a6e9190612139565b60405180910390a350505050565b6001600560146101000a81548160ff0219169083151502179055506000600282611aa69190612cff565b905060008183611ab69190612b0c565b90506000479050611ac683611b3d565b60008147611ad49190612b0c565b9050611ae08382611dbd565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561848285604051611b1393929190612d9c565b60405180910390a1505050506000600560146101000a81548160ff02191690831515021790555050565b6001600560146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115611b7557611b74612dd3565b5b604051908082528060200260200182016040528015611ba35781602001602082028036833780820191505090505b5090503081600081518110611bbb57611bba612e02565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c60573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c849190612e46565b81600181518110611c9857611c97612e02565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611cfd307f000000000000000000000000000000000000000000000000000000000000000084610e56565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947836000843061012c42611d4c9190612398565b6040518663ffffffff1660e01b8152600401611d6c959493929190612f6c565b600060405180830381600087803b158015611d8657600080fd5b505af1158015611d9a573d6000803e3d6000fd5b50505050506000600560146101000a81548160ff02191690831515021790555050565b6001600560146101000a81548160ff021916908315150217905550611e03307f000000000000000000000000000000000000000000000000000000000000000084610e56565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401611e8a96959493929190612fc6565b60606040518083038185885af1158015611ea8573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611ecd919061303c565b5050506000600560146101000a81548160ff0219169083151502179055505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611f29578082015181840152602081019050611f0e565b60008484015250505050565b6000601f19601f8301169050919050565b6000611f5182611eef565b611f5b8185611efa565b9350611f6b818560208601611f0b565b611f7481611f35565b840191505092915050565b60006020820190508181036000830152611f998184611f46565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611fd182611fa6565b9050919050565b611fe181611fc6565b8114611fec57600080fd5b50565b600081359050611ffe81611fd8565b92915050565b6000819050919050565b61201781612004565b811461202257600080fd5b50565b6000813590506120348161200e565b92915050565b6000806040838503121561205157612050611fa1565b5b600061205f85828601611fef565b925050602061207085828601612025565b9150509250929050565b60008115159050919050565b61208f8161207a565b82525050565b60006020820190506120aa6000830184612086565b92915050565b6000819050919050565b60006120d56120d06120cb84611fa6565b6120b0565b611fa6565b9050919050565b60006120e7826120ba565b9050919050565b60006120f9826120dc565b9050919050565b612109816120ee565b82525050565b60006020820190506121246000830184612100565b92915050565b61213381612004565b82525050565b600060208201905061214e600083018461212a565b92915050565b60008060006060848603121561216d5761216c611fa1565b5b600061217b86828701611fef565b935050602061218c86828701611fef565b925050604061219d86828701612025565b9150509250925092565b600060ff82169050919050565b6121bd816121a7565b82525050565b60006020820190506121d860008301846121b4565b92915050565b600080600080608085870312156121f8576121f7611fa1565b5b600061220687828801612025565b945050602061221787828801612025565b935050604061222887828801612025565b925050606061223987828801612025565b91505092959194509250565b61224e81611fc6565b82525050565b60006020820190506122696000830184612245565b92915050565b60006020828403121561228557612284611fa1565b5b600061229384828501612025565b91505092915050565b6000602082840312156122b2576122b1611fa1565b5b60006122c084828501611fef565b91505092915050565b600080604083850312156122e0576122df611fa1565b5b60006122ee85828601611fef565b92505060206122ff85828601611fef565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061235057607f821691505b60208210810361236357612362612309565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006123a382612004565b91506123ae83612004565b92508282019050808211156123c6576123c5612369565b5b92915050565b7f45524332303a20746f74616c20746178206d757374206e6f742062652067726560008201527f61746572207468616e2033300000000000000000000000000000000000000000602082015250565b6000612428602c83611efa565b9150612433826123cc565b604082019050919050565b600060208201905081810360008301526124578161241b565b9050919050565b60008160011c9050919050565b6000808291508390505b60018511156124b55780860481111561249157612490612369565b5b60018516156124a05780820291505b80810290506124ae8561245e565b9450612475565b94509492505050565b6000826124ce576001905061258a565b816124dc576000905061258a565b81600181146124f257600281146124fc5761252b565b600191505061258a565b60ff84111561250e5761250d612369565b5b8360020a91508482111561252557612524612369565b5b5061258a565b5060208310610133831016604e8410600b84101617156125605782820a90508381111561255b5761255a612369565b5b61258a565b61256d848484600161246b565b9250905081840481111561258457612583612369565b5b81810290505b9392505050565b600061259c82612004565b91506125a7836121a7565b92506125d47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846124be565b905092915050565b60006125e782612004565b91506125f283612004565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561262b5761262a612369565b5b828202905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612692602583611efa565b915061269d82612636565b604082019050919050565b600060208201905081810360008301526126c181612685565b9050919050565b7f496e73756666696369656e742042616c616e6365000000000000000000000000600082015250565b60006126fe601483611efa565b9150612709826126c8565b602082019050919050565b6000602082019050818103600083015261272d816126f1565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612790602683611efa565b915061279b82612734565b604082019050919050565b600060208201905081810360008301526127bf81612783565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612822602483611efa565b915061282d826127c6565b604082019050919050565b6000602082019050818103600083015261285181612815565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006128b4602283611efa565b91506128bf82612858565b604082019050919050565b600060208201905081810360008301526128e3816128a7565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612920601d83611efa565b915061292b826128ea565b602082019050919050565b6000602082019050818103600083015261294f81612913565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006129b2602583611efa565b91506129bd82612956565b604082019050919050565b600060208201905081810360008301526129e1816129a5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612a44602383611efa565b9150612a4f826129e8565b604082019050919050565b60006020820190508181036000830152612a7381612a37565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612ad6602683611efa565b9150612ae182612a7a565b604082019050919050565b60006020820190508181036000830152612b0581612ac9565b9050919050565b6000612b1782612004565b9150612b2283612004565b9250828203905081811115612b3a57612b39612369565b5b92915050565b7f4661696c656420746f2073656e64204554480000000000000000000000000000600082015250565b6000612b76601283611efa565b9150612b8182612b40565b602082019050919050565b60006020820190508181036000830152612ba581612b69565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b6000612c08603983611efa565b9150612c1382612bac565b604082019050919050565b60006020820190508181036000830152612c3781612bfb565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60008201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b6000612c9a603683611efa565b9150612ca582612c3e565b604082019050919050565b60006020820190508181036000830152612cc981612c8d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612d0a82612004565b9150612d1583612004565b925082612d2557612d24612cd0565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612d66602083611efa565b9150612d7182612d30565b602082019050919050565b60006020820190508181036000830152612d9581612d59565b9050919050565b6000606082019050612db1600083018661212a565b612dbe602083018561212a565b612dcb604083018461212a565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612e4081611fd8565b92915050565b600060208284031215612e5c57612e5b611fa1565b5b6000612e6a84828501612e31565b91505092915050565b6000819050919050565b6000612e98612e93612e8e84612e73565b6120b0565b612004565b9050919050565b612ea881612e7d565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612ee381611fc6565b82525050565b6000612ef58383612eda565b60208301905092915050565b6000602082019050919050565b6000612f1982612eae565b612f238185612eb9565b9350612f2e83612eca565b8060005b83811015612f5f578151612f468882612ee9565b9750612f5183612f01565b925050600181019050612f32565b5085935050505092915050565b600060a082019050612f81600083018861212a565b612f8e6020830187612e9f565b8181036040830152612fa08186612f0e565b9050612faf6060830185612245565b612fbc608083018461212a565b9695505050505050565b600060c082019050612fdb6000830189612245565b612fe8602083018861212a565b612ff56040830187612e9f565b6130026060830186612e9f565b61300f6080830185612245565b61301c60a083018461212a565b979650505050505050565b6000815190506130368161200e565b92915050565b60008060006060848603121561305557613054611fa1565b5b600061306386828701613027565b935050602061307486828701613027565b925050604061308586828701613027565b915050925092509256fea2646970667358221220047fe8ac5d73a16183f09beefd204ed6cbb2a25d830871260ee766d349c4b1c464736f6c63430008100033

Deployed Bytecode

0x6080604052600436106101c65760003560e01c80638c0b5e22116100f7578063bb85c6d111610095578063e5c83f2c11610064578063e5c83f2c146106a3578063e66c19c1146106ce578063f2fde38b146106f9578063f88de0c314610722576101cd565b8063bb85c6d1146105e7578063d0e1d26214610624578063d85a28281461064f578063dd62ed3e14610666576101cd565b8063a457c2d7116100d1578063a457c2d714610517578063a9059cbb14610554578063aa4bde2814610591578063b60c30f9146105bc576101cd565b80638c0b5e22146104965780638da5cb5b146104c157806395d89b41146104ec576101cd565b8063395093511161016457806370a082311161013e57806370a08231146103da578063715018a61461041757806375f0a8741461042e57806381bfdcca14610459576101cd565b8063395093511461033557806349bd5a5e14610372578063677daa571461039d576101cd565b806318160ddd116101a057806318160ddd1461026557806323b872dd14610290578063313ce567146102cd5780633902fa05146102f8576101cd565b806306fdde03146101d2578063095ea7b3146101fd5780631694505e1461023a576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101e7610739565b6040516101f49190611f7f565b60405180910390f35b34801561020957600080fd5b50610224600480360381019061021f919061203a565b6107cb565b6040516102319190612095565b60405180910390f35b34801561024657600080fd5b5061024f6107ee565b60405161025c919061210f565b60405180910390f35b34801561027157600080fd5b5061027a610812565b6040516102879190612139565b60405180910390f35b34801561029c57600080fd5b506102b760048036038101906102b29190612154565b61081c565b6040516102c49190612095565b60405180910390f35b3480156102d957600080fd5b506102e261084b565b6040516102ef91906121c3565b60405180910390f35b34801561030457600080fd5b5061031f600480360381019061031a91906121de565b610854565b60405161032c9190612095565b60405180910390f35b34801561034157600080fd5b5061035c6004803603810190610357919061203a565b610924565b6040516103699190612095565b60405180910390f35b34801561037e57600080fd5b5061038761095b565b6040516103949190612254565b60405180910390f35b3480156103a957600080fd5b506103c460048036038101906103bf919061226f565b61097f565b6040516103d19190612095565b60405180910390f35b3480156103e657600080fd5b5061040160048036038101906103fc919061229c565b6109bf565b60405161040e9190612139565b60405180910390f35b34801561042357600080fd5b5061042c610a07565b005b34801561043a57600080fd5b50610443610a1b565b6040516104509190612254565b60405180910390f35b34801561046557600080fd5b50610480600480360381019061047b919061226f565b610a41565b60405161048d9190612095565b60405180910390f35b3480156104a257600080fd5b506104ab610a81565b6040516104b89190612139565b60405180910390f35b3480156104cd57600080fd5b506104d6610a87565b6040516104e39190612254565b60405180910390f35b3480156104f857600080fd5b50610501610ab1565b60405161050e9190611f7f565b60405180910390f35b34801561052357600080fd5b5061053e6004803603810190610539919061203a565b610b43565b60405161054b9190612095565b60405180910390f35b34801561056057600080fd5b5061057b6004803603810190610576919061203a565b610bba565b6040516105889190612095565b60405180910390f35b34801561059d57600080fd5b506105a6610bdd565b6040516105b39190612139565b60405180910390f35b3480156105c857600080fd5b506105d1610be3565b6040516105de9190612139565b60405180910390f35b3480156105f357600080fd5b5061060e6004803603810190610609919061229c565b610be9565b60405161061b9190612095565b60405180910390f35b34801561063057600080fd5b50610639610c3d565b6040516106469190612139565b60405180910390f35b34801561065b57600080fd5b50610664610c43565b005b34801561067257600080fd5b5061068d600480360381019061068891906122c9565b610ccd565b60405161069a9190612139565b60405180910390f35b3480156106af57600080fd5b506106b8610d54565b6040516106c59190612139565b60405180910390f35b3480156106da57600080fd5b506106e3610d5a565b6040516106f09190612139565b60405180910390f35b34801561070557600080fd5b50610720600480360381019061071b919061229c565b610d60565b005b34801561072e57600080fd5b50610737610de3565b005b60606003805461074890612338565b80601f016020809104026020016040519081016040528092919081815260200182805461077490612338565b80156107c15780601f10610796576101008083540402835291602001916107c1565b820191906000526020600020905b8154815290600101906020018083116107a457829003601f168201915b5050505050905090565b6000806107d6610e4e565b90506107e3818585610e56565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b600080610827610e4e565b905061083485828561101f565b61083f8585856110ab565b60019150509392505050565b60006012905090565b600061085e6116d8565b601e848661086c9190612398565b11156108ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a49061243e565b60405180910390fd5b601e82846108bb9190612398565b11156108fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f39061243e565b60405180910390fd5b84600c8190555083600d8190555082600e8190555081600f8190555060019050949350505050565b60008061092f610e4e565b90506109508185856109418589610ccd565b61094b9190612398565b610e56565b600191505092915050565b7f0000000000000000000000005a86c5d5f62bc31c8c527f0f244aea3da990b3e981565b60006109896116d8565b600a60009054906101000a900460ff16600a6109a59190612591565b826109b091906125dc565b60108190555060019050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a0f6116d8565b610a196000611756565b565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610a4b6116d8565b600a60009054906101000a900460ff16600a610a679190612591565b82610a7291906125dc565b60118190555060019050919050565b60105481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610ac090612338565b80601f0160208091040260200160405190810160405280929190818152602001828054610aec90612338565b8015610b395780601f10610b0e57610100808354040283529160200191610b39565b820191906000526020600020905b815481529060010190602001808311610b1c57829003601f168201915b5050505050905090565b600080610b4e610e4e565b90506000610b5c8286610ccd565b905083811015610ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b98906126a8565b60405180910390fd5b610bae8286868403610e56565b60019250505092915050565b600080610bc5610e4e565b9050610bd28185856110ab565b600191505092915050565b60115481565b600d5481565b6000610bf36116d8565b81601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b600f5481565b6000610c4e306109bf565b11610c8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8590612714565b60405180910390fd5b610cc330601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610cbe306109bf565b61181c565b6000600681905550565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600e5481565b600c5481565b610d686116d8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dce906127a6565b60405180910390fd5b610de081611756565b50565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610e4b573d6000803e3d6000fd5b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ec5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebc90612838565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2b906128ca565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110129190612139565b60405180910390a3505050565b600061102b8484610ccd565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110a55781811015611097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108e90612936565b60405180910390fd5b6110a48484848403610e56565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361111a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611111906129c8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611189576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118090612a5a565b60405180910390fd5b80611193846109bf565b10156111d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cb90612aec565b60405180910390fd5b7f0000000000000000000000005a86c5d5f62bc31c8c527f0f244aea3da990b3e973ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061127957507f0000000000000000000000005a86c5d5f62bc31c8c527f0f244aea3da990b3e973ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80156112925750600560149054906101000a900460ff16155b156116c7577f0000000000000000000000005a86c5d5f62bc31c8c527f0f244aea3da990b3e973ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146113e95760006006546112f8306109bf565b6113029190612b0c565b9050601254811061131957611318601254611a7c565b5b601354600654106113e75761132f601354611b3d565b601354600660008282546113439190612b0c565b925050819055506000601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050509050806113e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dc90612b8c565b60405180910390fd5b505b505b6000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061148c5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611499578190506116b6565b6010548211156114de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d590612c1e565b60405180910390fd5b7f0000000000000000000000005a86c5d5f62bc31c8c527f0f244aea3da990b3e973ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361158a5760115461153d846109bf565b836115489190612398565b1115611589576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158090612cb0565b60405180910390fd5b5b6000807f0000000000000000000000005a86c5d5f62bc31c8c527f0f244aea3da990b3e973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361161d576064600f54856115f091906125dc565b6115fa9190612cff565b91506064600e548561160c91906125dc565b6116169190612cff565b9050611656565b6064600d548561162d91906125dc565b6116379190612cff565b91506064600c548561164991906125dc565b6116539190612cff565b90505b80826116629190612398565b8461166d9190612b0c565b925081600660008282546116819190612398565b92505081905550600081836116969190612398565b11156116b3576116b2863083856116ad9190612398565b61181c565b5b50505b6116c184848361181c565b506116d3565b6116d283838361181c565b5b505050565b6116e0610e4e565b73ffffffffffffffffffffffffffffffffffffffff166116fe610a87565b73ffffffffffffffffffffffffffffffffffffffff1614611754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174b90612d7c565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361188b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611882906129c8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f190612a5a565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611980576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197790612aec565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a6e9190612139565b60405180910390a350505050565b6001600560146101000a81548160ff0219169083151502179055506000600282611aa69190612cff565b905060008183611ab69190612b0c565b90506000479050611ac683611b3d565b60008147611ad49190612b0c565b9050611ae08382611dbd565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561848285604051611b1393929190612d9c565b60405180910390a1505050506000600560146101000a81548160ff02191690831515021790555050565b6001600560146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115611b7557611b74612dd3565b5b604051908082528060200260200182016040528015611ba35781602001602082028036833780820191505090505b5090503081600081518110611bbb57611bba612e02565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c60573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c849190612e46565b81600181518110611c9857611c97612e02565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611cfd307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610e56565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947836000843061012c42611d4c9190612398565b6040518663ffffffff1660e01b8152600401611d6c959493929190612f6c565b600060405180830381600087803b158015611d8657600080fd5b505af1158015611d9a573d6000803e3d6000fd5b50505050506000600560146101000a81548160ff02191690831515021790555050565b6001600560146101000a81548160ff021916908315150217905550611e03307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610e56565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401611e8a96959493929190612fc6565b60606040518083038185885af1158015611ea8573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611ecd919061303c565b5050506000600560146101000a81548160ff0219169083151502179055505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611f29578082015181840152602081019050611f0e565b60008484015250505050565b6000601f19601f8301169050919050565b6000611f5182611eef565b611f5b8185611efa565b9350611f6b818560208601611f0b565b611f7481611f35565b840191505092915050565b60006020820190508181036000830152611f998184611f46565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611fd182611fa6565b9050919050565b611fe181611fc6565b8114611fec57600080fd5b50565b600081359050611ffe81611fd8565b92915050565b6000819050919050565b61201781612004565b811461202257600080fd5b50565b6000813590506120348161200e565b92915050565b6000806040838503121561205157612050611fa1565b5b600061205f85828601611fef565b925050602061207085828601612025565b9150509250929050565b60008115159050919050565b61208f8161207a565b82525050565b60006020820190506120aa6000830184612086565b92915050565b6000819050919050565b60006120d56120d06120cb84611fa6565b6120b0565b611fa6565b9050919050565b60006120e7826120ba565b9050919050565b60006120f9826120dc565b9050919050565b612109816120ee565b82525050565b60006020820190506121246000830184612100565b92915050565b61213381612004565b82525050565b600060208201905061214e600083018461212a565b92915050565b60008060006060848603121561216d5761216c611fa1565b5b600061217b86828701611fef565b935050602061218c86828701611fef565b925050604061219d86828701612025565b9150509250925092565b600060ff82169050919050565b6121bd816121a7565b82525050565b60006020820190506121d860008301846121b4565b92915050565b600080600080608085870312156121f8576121f7611fa1565b5b600061220687828801612025565b945050602061221787828801612025565b935050604061222887828801612025565b925050606061223987828801612025565b91505092959194509250565b61224e81611fc6565b82525050565b60006020820190506122696000830184612245565b92915050565b60006020828403121561228557612284611fa1565b5b600061229384828501612025565b91505092915050565b6000602082840312156122b2576122b1611fa1565b5b60006122c084828501611fef565b91505092915050565b600080604083850312156122e0576122df611fa1565b5b60006122ee85828601611fef565b92505060206122ff85828601611fef565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061235057607f821691505b60208210810361236357612362612309565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006123a382612004565b91506123ae83612004565b92508282019050808211156123c6576123c5612369565b5b92915050565b7f45524332303a20746f74616c20746178206d757374206e6f742062652067726560008201527f61746572207468616e2033300000000000000000000000000000000000000000602082015250565b6000612428602c83611efa565b9150612433826123cc565b604082019050919050565b600060208201905081810360008301526124578161241b565b9050919050565b60008160011c9050919050565b6000808291508390505b60018511156124b55780860481111561249157612490612369565b5b60018516156124a05780820291505b80810290506124ae8561245e565b9450612475565b94509492505050565b6000826124ce576001905061258a565b816124dc576000905061258a565b81600181146124f257600281146124fc5761252b565b600191505061258a565b60ff84111561250e5761250d612369565b5b8360020a91508482111561252557612524612369565b5b5061258a565b5060208310610133831016604e8410600b84101617156125605782820a90508381111561255b5761255a612369565b5b61258a565b61256d848484600161246b565b9250905081840481111561258457612583612369565b5b81810290505b9392505050565b600061259c82612004565b91506125a7836121a7565b92506125d47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846124be565b905092915050565b60006125e782612004565b91506125f283612004565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561262b5761262a612369565b5b828202905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612692602583611efa565b915061269d82612636565b604082019050919050565b600060208201905081810360008301526126c181612685565b9050919050565b7f496e73756666696369656e742042616c616e6365000000000000000000000000600082015250565b60006126fe601483611efa565b9150612709826126c8565b602082019050919050565b6000602082019050818103600083015261272d816126f1565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612790602683611efa565b915061279b82612734565b604082019050919050565b600060208201905081810360008301526127bf81612783565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612822602483611efa565b915061282d826127c6565b604082019050919050565b6000602082019050818103600083015261285181612815565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006128b4602283611efa565b91506128bf82612858565b604082019050919050565b600060208201905081810360008301526128e3816128a7565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612920601d83611efa565b915061292b826128ea565b602082019050919050565b6000602082019050818103600083015261294f81612913565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006129b2602583611efa565b91506129bd82612956565b604082019050919050565b600060208201905081810360008301526129e1816129a5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612a44602383611efa565b9150612a4f826129e8565b604082019050919050565b60006020820190508181036000830152612a7381612a37565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612ad6602683611efa565b9150612ae182612a7a565b604082019050919050565b60006020820190508181036000830152612b0581612ac9565b9050919050565b6000612b1782612004565b9150612b2283612004565b9250828203905081811115612b3a57612b39612369565b5b92915050565b7f4661696c656420746f2073656e64204554480000000000000000000000000000600082015250565b6000612b76601283611efa565b9150612b8182612b40565b602082019050919050565b60006020820190508181036000830152612ba581612b69565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b6000612c08603983611efa565b9150612c1382612bac565b604082019050919050565b60006020820190508181036000830152612c3781612bfb565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60008201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b6000612c9a603683611efa565b9150612ca582612c3e565b604082019050919050565b60006020820190508181036000830152612cc981612c8d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612d0a82612004565b9150612d1583612004565b925082612d2557612d24612cd0565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612d66602083611efa565b9150612d7182612d30565b602082019050919050565b60006020820190508181036000830152612d9581612d59565b9050919050565b6000606082019050612db1600083018661212a565b612dbe602083018561212a565b612dcb604083018461212a565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612e4081611fd8565b92915050565b600060208284031215612e5c57612e5b611fa1565b5b6000612e6a84828501612e31565b91505092915050565b6000819050919050565b6000612e98612e93612e8e84612e73565b6120b0565b612004565b9050919050565b612ea881612e7d565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612ee381611fc6565b82525050565b6000612ef58383612eda565b60208301905092915050565b6000602082019050919050565b6000612f1982612eae565b612f238185612eb9565b9350612f2e83612eca565b8060005b83811015612f5f578151612f468882612ee9565b9750612f5183612f01565b925050600181019050612f32565b5085935050505092915050565b600060a082019050612f81600083018861212a565b612f8e6020830187612e9f565b8181036040830152612fa08186612f0e565b9050612faf6060830185612245565b612fbc608083018461212a565b9695505050505050565b600060c082019050612fdb6000830189612245565b612fe8602083018861212a565b612ff56040830187612e9f565b6130026060830186612e9f565b61300f6080830185612245565b61301c60a083018461212a565b979650505050505050565b6000815190506130368161200e565b92915050565b60008060006060848603121561305557613054611fa1565b5b600061306386828701613027565b935050602061307486828701613027565b925050604061308586828701613027565b915050925092509256fea2646970667358221220047fe8ac5d73a16183f09beefd204ed6cbb2a25d830871260ee766d349c4b1c464736f6c63430008100033

Deployed Bytecode Sourcemap

26949:8356:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17863:102;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20138:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27037:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19002:110;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20962:297;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18844:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34140:697;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22678:272;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26992:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34845:198;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18028:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15122:103;;;;;;;;;;;;;:::i;:::-;;27916:75;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35051:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27602:62;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14474:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17687:106;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21762:507;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19582:236;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27671:66;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27466:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33950:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27556:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32309:233;;;;;;;;;;;;;:::i;:::-;;19175:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27511:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27422:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15380:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32188:109;;;;;;;;;;;;;:::i;:::-;;17863:102;17919:13;17952:5;17945:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17863:102;:::o;20138:244::-;20259:4;20281:13;20297:12;:10;:12::i;:::-;20281:28;;20320:32;20329:5;20336:7;20345:6;20320:8;:32::i;:::-;20370:4;20363:11;;;20138:244;;;;:::o;27037:51::-;;;:::o;19002:110::-;19065:7;19092:12;;19085:19;;19002:110;:::o;20962:297::-;21095:4;21112:15;21130:12;:10;:12::i;:::-;21112:30;;21153:38;21169:4;21175:7;21184:6;21153:15;:38::i;:::-;21202:27;21212:4;21218:2;21222:6;21202:9;:27::i;:::-;21247:4;21240:11;;;20962:297;;;;;:::o;18844:93::-;18902:5;18927:2;18920:9;;18844:93;:::o;34140:697::-;34354:4;14360:13;:11;:13::i;:::-;34429:2:::1;34405:19;34385;:39;;;;:::i;:::-;34384:47;;34376:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;34546:2;34521:20;34500;:41;;;;:::i;:::-;34499:49;;34491:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;34629:19;34608:18;:40;;;;34680:19;34659:18;:40;;;;34732:20;34710:19;:42;;;;34785:20;34763:19;:42;;;;34825:4;34818:11;;34140:697:::0;;;;;;:::o;22678:272::-;22795:4;22817:13;22833:12;:10;:12::i;:::-;22817:28;;22856:64;22865:5;22872:7;22909:10;22881:25;22891:5;22898:7;22881:9;:25::i;:::-;:38;;;;:::i;:::-;22856:8;:64::i;:::-;22938:4;22931:11;;;22678:272;;;;:::o;26992:38::-;;;:::o;34845:198::-;34947:4;14360:13;:11;:13::i;:::-;35002:9:::1;;;;;;;;;;;34998:2;:13;;;;:::i;:::-;34983:12;:28;;;;:::i;:::-;34969:11;:42;;;;35031:4;35024:11;;34845:198:::0;;;:::o;18028:177::-;18147:7;18179:9;:18;18189:7;18179:18;;;;;;;;;;;;;;;;18172:25;;18028:177;;;:::o;15122:103::-;14360:13;:11;:13::i;:::-;15187:30:::1;15214:1;15187:18;:30::i;:::-;15122:103::o:0;27916:75::-;;;;;;;;;;;;;:::o;35051:214::-;35161:4;14360:13;:11;:13::i;:::-;35224:9:::1;;;;;;;;;;;35220:2;:13;;;;:::i;:::-;35201:16;:32;;;;:::i;:::-;35183:15;:50;;;;35253:4;35246:11;;35051:214:::0;;;:::o;27602:62::-;;;;:::o;14474:87::-;14520:7;14547:6;;;;;;;;;;;14540:13;;14474:87;:::o;17687:106::-;17745:13;17778:7;17771:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17687:106;:::o;21762:507::-;21884:4;21906:13;21922:12;:10;:12::i;:::-;21906:28;;21945:24;21972:25;21982:5;21989:7;21972:9;:25::i;:::-;21945:52;;22050:15;22030:16;:35;;22008:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;22166:60;22175:5;22182:7;22210:15;22191:16;:34;22166:8;:60::i;:::-;22257:4;22250:11;;;;21762:507;;;;:::o;19582:236::-;19699:4;19721:13;19737:12;:10;:12::i;:::-;19721:28;;19760;19770:5;19777:2;19781:6;19760:9;:28::i;:::-;19806:4;19799:11;;;19582:236;;;;:::o;27671:66::-;;;;:::o;27466:38::-;;;;:::o;33950:182::-;34053:4;14360:13;:11;:13::i;:::-;34093:9:::1;34075:15;;:27;;;;;;;;;;;;;;;;;;34120:4;34113:11;;33950:182:::0;;;:::o;27556:39::-;;;;:::o;32309:233::-;32391:1;32364:24;32382:4;32364:9;:24::i;:::-;:28;32356:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;32428:73;32452:4;32459:15;;;;;;;;;;;32476:24;32494:4;32476:9;:24::i;:::-;32428:15;:73::i;:::-;32533:1;32512:18;:22;;;;32309:233::o;19175:201::-;19309:7;19341:11;:18;19353:5;19341:18;;;;;;;;;;;;;;;:27;19360:7;19341:27;;;;;;;;;;;;;;;;19334:34;;19175:201;;;;:::o;27511:38::-;;;;:::o;27422:37::-;;;;:::o;15380:238::-;14360:13;:11;:13::i;:::-;15503:1:::1;15483:22;;:8;:22;;::::0;15461:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;15582:28;15601:8;15582:18;:28::i;:::-;15380:238:::0;:::o;32188:109::-;32241:15;;;;;;;;;;;32233:33;;:56;32267:21;32233:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32188:109::o;13267:98::-;13320:7;13347:10;13340:17;;13267:98;:::o;24985:380::-;25138:1;25121:19;;:5;:19;;;25113:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25219:1;25200:21;;:7;:21;;;25192:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25303:6;25273:11;:18;25285:5;25273:18;;;;;;;;;;;;;;;:27;25292:7;25273:27;;;;;;;;;;;;;;;:36;;;;25341:7;25325:32;;25334:5;25325:32;;;25350:6;25325:32;;;;;;:::i;:::-;;;;;;;;24985:380;;;:::o;25656:502::-;25791:24;25818:25;25828:5;25835:7;25818:9;:25::i;:::-;25791:52;;25878:17;25858:16;:37;25854:297;;25958:6;25938:16;:26;;25912:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;26073:51;26082:5;26089:7;26117:6;26098:16;:25;26073:8;:51::i;:::-;25854:297;25780:378;25656:502;;;:::o;29615:2565::-;29729:1;29713:18;;:4;:18;;;29705:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29806:1;29792:16;;:2;:16;;;29784:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;29888:6;29869:15;29879:4;29869:9;:15::i;:::-;:25;;29861:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;29963:13;29955:21;;:4;:21;;;:44;;;;29986:13;29980:19;;:2;:19;;;29955:44;29954:67;;;;;30005:16;;;;;;;;;;;30004:17;29954:67;29950:2223;;;30050:13;30042:21;;:4;:21;;;30038:686;;30084:32;30146:18;;30119:24;30137:4;30119:9;:24::i;:::-;:45;;;;:::i;:::-;30084:80;;30215:30;;30187:24;:58;30183:154;;30270:47;30286:30;;30270:15;:47::i;:::-;30183:154;30383:24;;30360:18;;30359:48;30355:354;;30432:43;30450:24;;30432:17;:43::i;:::-;30520:24;;30498:18;;:46;;;;;;;:::i;:::-;;;;;;;;30567:9;30587:15;;;;;;;;;;;30579:29;;:52;30609:21;30579:52;;;;;;;;;;;;;;;;;;;;;;;30567:64;;30662:4;30654:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;30409:300;30355:354;30065:659;30038:686;30740:22;30781:18;:24;30800:4;30781:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;30809:18;:22;30828:2;30809:22;;;;;;;;;;;;;;;;;;;;;;;;;30781:50;30777:1253;;;30869:6;30852:23;;30777:1253;;;30948:11;;30938:6;:21;;30930:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;31051:13;31043:21;;:4;:21;;;31040:178;;31124:15;;31106:13;31116:2;31106:9;:13::i;:::-;31097:6;:22;;;;:::i;:::-;31096:43;;31088:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;31040:178;31236:22;31277;31346:13;31340:19;;:2;:19;;;31336:373;;31434:3;31411:19;;31402:6;:28;;;;:::i;:::-;31401:36;;;;:::i;:::-;31384:53;;31510:3;31487:19;;31478:6;:28;;;;:::i;:::-;31477:36;;;;:::i;:::-;31460:53;;31336:373;;;31611:3;31589:18;;31580:6;:27;;;;:::i;:::-;31579:35;;;;:::i;:::-;31562:52;;31686:3;31664:18;;31655:6;:27;;;;:::i;:::-;31654:35;;;;:::i;:::-;31637:52;;31336:373;31771:14;31754;:31;;;;:::i;:::-;31744:6;:42;;;;:::i;:::-;31727:59;;31827:14;31805:18;;:36;;;;;;;:::i;:::-;;;;;;;;31898:1;31881:14;31864;:31;;;;:::i;:::-;:35;31860:155;;;31924:71;31940:4;31954;31979:14;31962;:31;;;;:::i;:::-;31924:15;:71::i;:::-;31860:155;30911:1119;;30777:1253;32044:41;32060:4;32066:2;32070:14;32044:15;:41::i;:::-;30023:2074;29950:2223;;;32128:33;32144:4;32150:2;32154:6;32128:15;:33::i;:::-;29950:2223;29615:2565;;;:::o;14639:132::-;14714:12;:10;:12::i;:::-;14703:23;;:7;:5;:7::i;:::-;:23;;;14695:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14639:132::o;15778:191::-;15852:16;15871:6;;;;;;;;;;;15852:25;;15897:8;15888:6;;:17;;;;;;;;;;;;;;;;;;15952:8;15921:40;;15942:8;15921:40;;;;;;;;;;;;15841:128;15778:191;:::o;26166:776::-;26313:1;26297:18;;:4;:18;;;26289:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26390:1;26376:16;;:2;:16;;;26368:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;26445:19;26467:9;:15;26477:4;26467:15;;;;;;;;;;;;;;;;26445:37;;26530:6;26515:11;:21;;26493:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;26670:6;26656:11;:20;26638:9;:15;26648:4;26638:15;;;;;;;;;;;;;;;:38;;;;26873:6;26856:9;:13;26866:2;26856:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;26923:2;26908:26;;26917:4;26908:26;;;26927:6;26908:26;;;;;;:::i;:::-;;;;;;;;26278:664;26166:776;;;:::o;32550:474::-;28211:4;28192:16;;:23;;;;;;;;;;;;;;;;;;32636:12:::1;32675:1;32652:20;:24;;;;:::i;:::-;32636:41;;32688:17;32732:4;32709:20;:27;;;;:::i;:::-;32688:49;;32750:22;32775:21;32750:46;;32809:23;32827:4;32809:17;:23::i;:::-;32845:18;32891:14;32867:21;:38;;;;:::i;:::-;32845:61;;32919:36;32933:9;32944:10;32919:13;:36::i;:::-;32973:43;32988:4;32994:10;33006:9;32973:43;;;;;;;;:::i;:::-;;;;;;;;32625:399;;;;28257:5:::0;28238:16;;:24;;;;;;;;;;;;;;;;;;32550:474;:::o;33032:496::-;28211:4;28192:16;;:23;;;;;;;;;;;;;;;;;;33111:21:::1;33149:1;33135:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33111:40;;33180:4;33162;33167:1;33162:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;33206:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33196:4;33201:1;33196:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;::::0;::::1;33241:62;33258:4;33273:15;33291:11;33241:8;:62::i;:::-;33316:15;:66;;;33397:11;33423:1;33439:4;33466;33505:3;33487:15;:21;;;;:::i;:::-;33316:204;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;33100:428;28257:5:::0;28238:16;;:24;;;;;;;;;;;;;;;;;;33032:496;:::o;33536:406::-;28211:4;28192:16;;:23;;;;;;;;;;;;;;;;;;33653:62:::1;33670:4;33685:15;33703:11;33653:8;:62::i;:::-;33728:15;:31;;;33767:9;33800:4;33820:11;33846:1;33862::::0;33878:15:::1;;;;;;;;;;;33908;33728:206;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;28257:5:::0;28238:16;;:24;;;;;;;;;;;;;;;;;;33536:406;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:60::-;3474:3;3495:5;3488:12;;3446:60;;;:::o;3512:142::-;3562:9;3595:53;3613:34;3622:24;3640:5;3622:24;:::i;:::-;3613:34;:::i;:::-;3595:53;:::i;:::-;3582:66;;3512:142;;;:::o;3660:126::-;3710:9;3743:37;3774:5;3743:37;:::i;:::-;3730:50;;3660:126;;;:::o;3792:152::-;3868:9;3901:37;3932:5;3901:37;:::i;:::-;3888:50;;3792:152;;;:::o;3950:183::-;4063:63;4120:5;4063:63;:::i;:::-;4058:3;4051:76;3950:183;;:::o;4139:274::-;4258:4;4296:2;4285:9;4281:18;4273:26;;4309:97;4403:1;4392:9;4388:17;4379:6;4309:97;:::i;:::-;4139:274;;;;:::o;4419:118::-;4506:24;4524:5;4506:24;:::i;:::-;4501:3;4494:37;4419:118;;:::o;4543:222::-;4636:4;4674:2;4663:9;4659:18;4651:26;;4687:71;4755:1;4744:9;4740:17;4731:6;4687:71;:::i;:::-;4543:222;;;;:::o;4771:619::-;4848:6;4856;4864;4913:2;4901:9;4892:7;4888:23;4884:32;4881:119;;;4919:79;;:::i;:::-;4881:119;5039:1;5064:53;5109:7;5100:6;5089:9;5085:22;5064:53;:::i;:::-;5054:63;;5010:117;5166:2;5192:53;5237:7;5228:6;5217:9;5213:22;5192:53;:::i;:::-;5182:63;;5137:118;5294:2;5320:53;5365:7;5356:6;5345:9;5341:22;5320:53;:::i;:::-;5310:63;;5265:118;4771:619;;;;;:::o;5396:86::-;5431:7;5471:4;5464:5;5460:16;5449:27;;5396:86;;;:::o;5488:112::-;5571:22;5587:5;5571:22;:::i;:::-;5566:3;5559:35;5488:112;;:::o;5606:214::-;5695:4;5733:2;5722:9;5718:18;5710:26;;5746:67;5810:1;5799:9;5795:17;5786:6;5746:67;:::i;:::-;5606:214;;;;:::o;5826:765::-;5912:6;5920;5928;5936;5985:3;5973:9;5964:7;5960:23;5956:33;5953:120;;;5992:79;;:::i;:::-;5953:120;6112:1;6137:53;6182:7;6173:6;6162:9;6158:22;6137:53;:::i;:::-;6127:63;;6083:117;6239:2;6265:53;6310:7;6301:6;6290:9;6286:22;6265:53;:::i;:::-;6255:63;;6210:118;6367:2;6393:53;6438:7;6429:6;6418:9;6414:22;6393:53;:::i;:::-;6383:63;;6338:118;6495:2;6521:53;6566:7;6557:6;6546:9;6542:22;6521:53;:::i;:::-;6511:63;;6466:118;5826:765;;;;;;;:::o;6597:118::-;6684:24;6702:5;6684:24;:::i;:::-;6679:3;6672:37;6597:118;;:::o;6721:222::-;6814:4;6852:2;6841:9;6837:18;6829:26;;6865:71;6933:1;6922:9;6918:17;6909:6;6865:71;:::i;:::-;6721:222;;;;:::o;6949:329::-;7008:6;7057:2;7045:9;7036:7;7032:23;7028:32;7025:119;;;7063:79;;:::i;:::-;7025:119;7183:1;7208:53;7253:7;7244:6;7233:9;7229:22;7208:53;:::i;:::-;7198:63;;7154:117;6949:329;;;;:::o;7284:::-;7343:6;7392:2;7380:9;7371:7;7367:23;7363:32;7360:119;;;7398:79;;:::i;:::-;7360:119;7518:1;7543:53;7588:7;7579:6;7568:9;7564:22;7543:53;:::i;:::-;7533:63;;7489:117;7284:329;;;;:::o;7619:474::-;7687:6;7695;7744:2;7732:9;7723:7;7719:23;7715:32;7712:119;;;7750:79;;:::i;:::-;7712:119;7870:1;7895:53;7940:7;7931:6;7920:9;7916:22;7895:53;:::i;:::-;7885:63;;7841:117;7997:2;8023:53;8068:7;8059:6;8048:9;8044:22;8023:53;:::i;:::-;8013:63;;7968:118;7619:474;;;;;:::o;8099:180::-;8147:77;8144:1;8137:88;8244:4;8241:1;8234:15;8268:4;8265:1;8258:15;8285:320;8329:6;8366:1;8360:4;8356:12;8346:22;;8413:1;8407:4;8403:12;8434:18;8424:81;;8490:4;8482:6;8478:17;8468:27;;8424:81;8552:2;8544:6;8541:14;8521:18;8518:38;8515:84;;8571:18;;:::i;:::-;8515:84;8336:269;8285:320;;;:::o;8611:180::-;8659:77;8656:1;8649:88;8756:4;8753:1;8746:15;8780:4;8777:1;8770:15;8797:191;8837:3;8856:20;8874:1;8856:20;:::i;:::-;8851:25;;8890:20;8908:1;8890:20;:::i;:::-;8885:25;;8933:1;8930;8926:9;8919:16;;8954:3;8951:1;8948:10;8945:36;;;8961:18;;:::i;:::-;8945:36;8797:191;;;;:::o;8994:231::-;9134:34;9130:1;9122:6;9118:14;9111:58;9203:14;9198:2;9190:6;9186:15;9179:39;8994:231;:::o;9231:366::-;9373:3;9394:67;9458:2;9453:3;9394:67;:::i;:::-;9387:74;;9470:93;9559:3;9470:93;:::i;:::-;9588:2;9583:3;9579:12;9572:19;;9231:366;;;:::o;9603:419::-;9769:4;9807:2;9796:9;9792:18;9784:26;;9856:9;9850:4;9846:20;9842:1;9831:9;9827:17;9820:47;9884:131;10010:4;9884:131;:::i;:::-;9876:139;;9603:419;;;:::o;10028:102::-;10070:8;10117:5;10114:1;10110:13;10089:34;;10028:102;;;:::o;10136:848::-;10197:5;10204:4;10228:6;10219:15;;10252:5;10243:14;;10266:712;10287:1;10277:8;10274:15;10266:712;;;10382:4;10377:3;10373:14;10367:4;10364:24;10361:50;;;10391:18;;:::i;:::-;10361:50;10441:1;10431:8;10427:16;10424:451;;;10856:4;10849:5;10845:16;10836:25;;10424:451;10906:4;10900;10896:15;10888:23;;10936:32;10959:8;10936:32;:::i;:::-;10924:44;;10266:712;;;10136:848;;;;;;;:::o;10990:1073::-;11044:5;11235:8;11225:40;;11256:1;11247:10;;11258:5;;11225:40;11284:4;11274:36;;11301:1;11292:10;;11303:5;;11274:36;11370:4;11418:1;11413:27;;;;11454:1;11449:191;;;;11363:277;;11413:27;11431:1;11422:10;;11433:5;;;11449:191;11494:3;11484:8;11481:17;11478:43;;;11501:18;;:::i;:::-;11478:43;11550:8;11547:1;11543:16;11534:25;;11585:3;11578:5;11575:14;11572:40;;;11592:18;;:::i;:::-;11572:40;11625:5;;;11363:277;;11749:2;11739:8;11736:16;11730:3;11724:4;11721:13;11717:36;11699:2;11689:8;11686:16;11681:2;11675:4;11672:12;11668:35;11652:111;11649:246;;;11805:8;11799:4;11795:19;11786:28;;11840:3;11833:5;11830:14;11827:40;;;11847:18;;:::i;:::-;11827:40;11880:5;;11649:246;11920:42;11958:3;11948:8;11942:4;11939:1;11920:42;:::i;:::-;11905:57;;;;11994:4;11989:3;11985:14;11978:5;11975:25;11972:51;;;12003:18;;:::i;:::-;11972:51;12052:4;12045:5;12041:16;12032:25;;10990:1073;;;;;;:::o;12069:281::-;12127:5;12151:23;12169:4;12151:23;:::i;:::-;12143:31;;12195:25;12211:8;12195:25;:::i;:::-;12183:37;;12239:104;12276:66;12266:8;12260:4;12239:104;:::i;:::-;12230:113;;12069:281;;;;:::o;12356:348::-;12396:7;12419:20;12437:1;12419:20;:::i;:::-;12414:25;;12453:20;12471:1;12453:20;:::i;:::-;12448:25;;12641:1;12573:66;12569:74;12566:1;12563:81;12558:1;12551:9;12544:17;12540:105;12537:131;;;12648:18;;:::i;:::-;12537:131;12696:1;12693;12689:9;12678:20;;12356:348;;;;:::o;12710:224::-;12850:34;12846:1;12838:6;12834:14;12827:58;12919:7;12914:2;12906:6;12902:15;12895:32;12710:224;:::o;12940:366::-;13082:3;13103:67;13167:2;13162:3;13103:67;:::i;:::-;13096:74;;13179:93;13268:3;13179:93;:::i;:::-;13297:2;13292:3;13288:12;13281:19;;12940:366;;;:::o;13312:419::-;13478:4;13516:2;13505:9;13501:18;13493:26;;13565:9;13559:4;13555:20;13551:1;13540:9;13536:17;13529:47;13593:131;13719:4;13593:131;:::i;:::-;13585:139;;13312:419;;;:::o;13737:170::-;13877:22;13873:1;13865:6;13861:14;13854:46;13737:170;:::o;13913:366::-;14055:3;14076:67;14140:2;14135:3;14076:67;:::i;:::-;14069:74;;14152:93;14241:3;14152:93;:::i;:::-;14270:2;14265:3;14261:12;14254:19;;13913:366;;;:::o;14285:419::-;14451:4;14489:2;14478:9;14474:18;14466:26;;14538:9;14532:4;14528:20;14524:1;14513:9;14509:17;14502:47;14566:131;14692:4;14566:131;:::i;:::-;14558:139;;14285:419;;;:::o;14710:225::-;14850:34;14846:1;14838:6;14834:14;14827:58;14919:8;14914:2;14906:6;14902:15;14895:33;14710:225;:::o;14941:366::-;15083:3;15104:67;15168:2;15163:3;15104:67;:::i;:::-;15097:74;;15180:93;15269:3;15180:93;:::i;:::-;15298:2;15293:3;15289:12;15282:19;;14941:366;;;:::o;15313:419::-;15479:4;15517:2;15506:9;15502:18;15494:26;;15566:9;15560:4;15556:20;15552:1;15541:9;15537:17;15530:47;15594:131;15720:4;15594:131;:::i;:::-;15586:139;;15313:419;;;:::o;15738:223::-;15878:34;15874:1;15866:6;15862:14;15855:58;15947:6;15942:2;15934:6;15930:15;15923:31;15738:223;:::o;15967:366::-;16109:3;16130:67;16194:2;16189:3;16130:67;:::i;:::-;16123:74;;16206:93;16295:3;16206:93;:::i;:::-;16324:2;16319:3;16315:12;16308:19;;15967:366;;;:::o;16339:419::-;16505:4;16543:2;16532:9;16528:18;16520:26;;16592:9;16586:4;16582:20;16578:1;16567:9;16563:17;16556:47;16620:131;16746:4;16620:131;:::i;:::-;16612:139;;16339:419;;;:::o;16764:221::-;16904:34;16900:1;16892:6;16888:14;16881:58;16973:4;16968:2;16960:6;16956:15;16949:29;16764:221;:::o;16991:366::-;17133:3;17154:67;17218:2;17213:3;17154:67;:::i;:::-;17147:74;;17230:93;17319:3;17230:93;:::i;:::-;17348:2;17343:3;17339:12;17332:19;;16991:366;;;:::o;17363:419::-;17529:4;17567:2;17556:9;17552:18;17544:26;;17616:9;17610:4;17606:20;17602:1;17591:9;17587:17;17580:47;17644:131;17770:4;17644:131;:::i;:::-;17636:139;;17363:419;;;:::o;17788:179::-;17928:31;17924:1;17916:6;17912:14;17905:55;17788:179;:::o;17973:366::-;18115:3;18136:67;18200:2;18195:3;18136:67;:::i;:::-;18129:74;;18212:93;18301:3;18212:93;:::i;:::-;18330:2;18325:3;18321:12;18314:19;;17973:366;;;:::o;18345:419::-;18511:4;18549:2;18538:9;18534:18;18526:26;;18598:9;18592:4;18588:20;18584:1;18573:9;18569:17;18562:47;18626:131;18752:4;18626:131;:::i;:::-;18618:139;;18345:419;;;:::o;18770:224::-;18910:34;18906:1;18898:6;18894:14;18887:58;18979:7;18974:2;18966:6;18962:15;18955:32;18770:224;:::o;19000:366::-;19142:3;19163:67;19227:2;19222:3;19163:67;:::i;:::-;19156:74;;19239:93;19328:3;19239:93;:::i;:::-;19357:2;19352:3;19348:12;19341:19;;19000:366;;;:::o;19372:419::-;19538:4;19576:2;19565:9;19561:18;19553:26;;19625:9;19619:4;19615:20;19611:1;19600:9;19596:17;19589:47;19653:131;19779:4;19653:131;:::i;:::-;19645:139;;19372:419;;;:::o;19797:222::-;19937:34;19933:1;19925:6;19921:14;19914:58;20006:5;20001:2;19993:6;19989:15;19982:30;19797:222;:::o;20025:366::-;20167:3;20188:67;20252:2;20247:3;20188:67;:::i;:::-;20181:74;;20264:93;20353:3;20264:93;:::i;:::-;20382:2;20377:3;20373:12;20366:19;;20025:366;;;:::o;20397:419::-;20563:4;20601:2;20590:9;20586:18;20578:26;;20650:9;20644:4;20640:20;20636:1;20625:9;20621:17;20614:47;20678:131;20804:4;20678:131;:::i;:::-;20670:139;;20397:419;;;:::o;20822:225::-;20962:34;20958:1;20950:6;20946:14;20939:58;21031:8;21026:2;21018:6;21014:15;21007:33;20822:225;:::o;21053:366::-;21195:3;21216:67;21280:2;21275:3;21216:67;:::i;:::-;21209:74;;21292:93;21381:3;21292:93;:::i;:::-;21410:2;21405:3;21401:12;21394:19;;21053:366;;;:::o;21425:419::-;21591:4;21629:2;21618:9;21614:18;21606:26;;21678:9;21672:4;21668:20;21664:1;21653:9;21649:17;21642:47;21706:131;21832:4;21706:131;:::i;:::-;21698:139;;21425:419;;;:::o;21850:194::-;21890:4;21910:20;21928:1;21910:20;:::i;:::-;21905:25;;21944:20;21962:1;21944:20;:::i;:::-;21939:25;;21988:1;21985;21981:9;21973:17;;22012:1;22006:4;22003:11;22000:37;;;22017:18;;:::i;:::-;22000:37;21850:194;;;;:::o;22050:168::-;22190:20;22186:1;22178:6;22174:14;22167:44;22050:168;:::o;22224:366::-;22366:3;22387:67;22451:2;22446:3;22387:67;:::i;:::-;22380:74;;22463:93;22552:3;22463:93;:::i;:::-;22581:2;22576:3;22572:12;22565:19;;22224:366;;;:::o;22596:419::-;22762:4;22800:2;22789:9;22785:18;22777:26;;22849:9;22843:4;22839:20;22835:1;22824:9;22820:17;22813:47;22877:131;23003:4;22877:131;:::i;:::-;22869:139;;22596:419;;;:::o;23021:244::-;23161:34;23157:1;23149:6;23145:14;23138:58;23230:27;23225:2;23217:6;23213:15;23206:52;23021:244;:::o;23271:366::-;23413:3;23434:67;23498:2;23493:3;23434:67;:::i;:::-;23427:74;;23510:93;23599:3;23510:93;:::i;:::-;23628:2;23623:3;23619:12;23612:19;;23271:366;;;:::o;23643:419::-;23809:4;23847:2;23836:9;23832:18;23824:26;;23896:9;23890:4;23886:20;23882:1;23871:9;23867:17;23860:47;23924:131;24050:4;23924:131;:::i;:::-;23916:139;;23643:419;;;:::o;24068:241::-;24208:34;24204:1;24196:6;24192:14;24185:58;24277:24;24272:2;24264:6;24260:15;24253:49;24068:241;:::o;24315:366::-;24457:3;24478:67;24542:2;24537:3;24478:67;:::i;:::-;24471:74;;24554:93;24643:3;24554:93;:::i;:::-;24672:2;24667:3;24663:12;24656:19;;24315:366;;;:::o;24687:419::-;24853:4;24891:2;24880:9;24876:18;24868:26;;24940:9;24934:4;24930:20;24926:1;24915:9;24911:17;24904:47;24968:131;25094:4;24968:131;:::i;:::-;24960:139;;24687:419;;;:::o;25112:180::-;25160:77;25157:1;25150:88;25257:4;25254:1;25247:15;25281:4;25278:1;25271:15;25298:185;25338:1;25355:20;25373:1;25355:20;:::i;:::-;25350:25;;25389:20;25407:1;25389:20;:::i;:::-;25384:25;;25428:1;25418:35;;25433:18;;:::i;:::-;25418:35;25475:1;25472;25468:9;25463:14;;25298:185;;;;:::o;25489:182::-;25629:34;25625:1;25617:6;25613:14;25606:58;25489:182;:::o;25677:366::-;25819:3;25840:67;25904:2;25899:3;25840:67;:::i;:::-;25833:74;;25916:93;26005:3;25916:93;:::i;:::-;26034:2;26029:3;26025:12;26018:19;;25677:366;;;:::o;26049:419::-;26215:4;26253:2;26242:9;26238:18;26230:26;;26302:9;26296:4;26292:20;26288:1;26277:9;26273:17;26266:47;26330:131;26456:4;26330:131;:::i;:::-;26322:139;;26049:419;;;:::o;26474:442::-;26623:4;26661:2;26650:9;26646:18;26638:26;;26674:71;26742:1;26731:9;26727:17;26718:6;26674:71;:::i;:::-;26755:72;26823:2;26812:9;26808:18;26799:6;26755:72;:::i;:::-;26837;26905:2;26894:9;26890:18;26881:6;26837:72;:::i;:::-;26474:442;;;;;;:::o;26922:180::-;26970:77;26967:1;26960:88;27067:4;27064:1;27057:15;27091:4;27088:1;27081:15;27108:180;27156:77;27153:1;27146:88;27253:4;27250:1;27243:15;27277:4;27274:1;27267:15;27294:143;27351:5;27382:6;27376:13;27367:22;;27398:33;27425:5;27398:33;:::i;:::-;27294:143;;;;:::o;27443:351::-;27513:6;27562:2;27550:9;27541:7;27537:23;27533:32;27530:119;;;27568:79;;:::i;:::-;27530:119;27688:1;27713:64;27769:7;27760:6;27749:9;27745:22;27713:64;:::i;:::-;27703:74;;27659:128;27443:351;;;;:::o;27800:85::-;27845:7;27874:5;27863:16;;27800:85;;;:::o;27891:158::-;27949:9;27982:61;28000:42;28009:32;28035:5;28009:32;:::i;:::-;28000:42;:::i;:::-;27982:61;:::i;:::-;27969:74;;27891:158;;;:::o;28055:147::-;28150:45;28189:5;28150:45;:::i;:::-;28145:3;28138:58;28055:147;;:::o;28208:114::-;28275:6;28309:5;28303:12;28293:22;;28208:114;;;:::o;28328:184::-;28427:11;28461:6;28456:3;28449:19;28501:4;28496:3;28492:14;28477:29;;28328:184;;;;:::o;28518:132::-;28585:4;28608:3;28600:11;;28638:4;28633:3;28629:14;28621:22;;28518:132;;;:::o;28656:108::-;28733:24;28751:5;28733:24;:::i;:::-;28728:3;28721:37;28656:108;;:::o;28770:179::-;28839:10;28860:46;28902:3;28894:6;28860:46;:::i;:::-;28938:4;28933:3;28929:14;28915:28;;28770:179;;;;:::o;28955:113::-;29025:4;29057;29052:3;29048:14;29040:22;;28955:113;;;:::o;29104:732::-;29223:3;29252:54;29300:5;29252:54;:::i;:::-;29322:86;29401:6;29396:3;29322:86;:::i;:::-;29315:93;;29432:56;29482:5;29432:56;:::i;:::-;29511:7;29542:1;29527:284;29552:6;29549:1;29546:13;29527:284;;;29628:6;29622:13;29655:63;29714:3;29699:13;29655:63;:::i;:::-;29648:70;;29741:60;29794:6;29741:60;:::i;:::-;29731:70;;29587:224;29574:1;29571;29567:9;29562:14;;29527:284;;;29531:14;29827:3;29820:10;;29228:608;;;29104:732;;;;:::o;29842:831::-;30105:4;30143:3;30132:9;30128:19;30120:27;;30157:71;30225:1;30214:9;30210:17;30201:6;30157:71;:::i;:::-;30238:80;30314:2;30303:9;30299:18;30290:6;30238:80;:::i;:::-;30365:9;30359:4;30355:20;30350:2;30339:9;30335:18;30328:48;30393:108;30496:4;30487:6;30393:108;:::i;:::-;30385:116;;30511:72;30579:2;30568:9;30564:18;30555:6;30511:72;:::i;:::-;30593:73;30661:3;30650:9;30646:19;30637:6;30593:73;:::i;:::-;29842:831;;;;;;;;:::o;30679:807::-;30928:4;30966:3;30955:9;30951:19;30943:27;;30980:71;31048:1;31037:9;31033:17;31024:6;30980:71;:::i;:::-;31061:72;31129:2;31118:9;31114:18;31105:6;31061:72;:::i;:::-;31143:80;31219:2;31208:9;31204:18;31195:6;31143:80;:::i;:::-;31233;31309:2;31298:9;31294:18;31285:6;31233:80;:::i;:::-;31323:73;31391:3;31380:9;31376:19;31367:6;31323:73;:::i;:::-;31406;31474:3;31463:9;31459:19;31450:6;31406:73;:::i;:::-;30679:807;;;;;;;;;:::o;31492:143::-;31549:5;31580:6;31574:13;31565:22;;31596:33;31623:5;31596:33;:::i;:::-;31492:143;;;;:::o;31641:663::-;31729:6;31737;31745;31794:2;31782:9;31773:7;31769:23;31765:32;31762:119;;;31800:79;;:::i;:::-;31762:119;31920:1;31945:64;32001:7;31992:6;31981:9;31977:22;31945:64;:::i;:::-;31935:74;;31891:128;32058:2;32084:64;32140:7;32131:6;32120:9;32116:22;32084:64;:::i;:::-;32074:74;;32029:129;32197:2;32223:64;32279:7;32270:6;32259:9;32255:22;32223:64;:::i;:::-;32213:74;;32168:129;31641:663;;;;;:::o

Swarm Source

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