ETH Price: $2,688.86 (-3.30%)

Token

Junior Pepe ($JRPE)
 

Overview

Max Total Supply

420,000,000,000 $JRPE

Holders

151

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 $JRPE

Value
$0.00
0x5db03d8f364b35e99fdb7298daae86c859eb9548
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:
JuniorPepe

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
No with 200 runs

Other Settings:
paris EvmVersion
File 1 of 1 : JuniorPepe.sol
/*
* SPDX-License-Identifier: MIT
*/
// Portal: https://t.me/JuniorPepePortal
//
//   $$$$$\ $$$$$$$\  $$$$$$$\  $$$$$$$$\ 
//   \__$$ |$$  __$$\ $$  __$$\ $$  _____|
//      $$ |$$ |  $$ |$$ |  $$ |$$ |      
//      $$ |$$$$$$$  |$$$$$$$  |$$$$$\    
// $$\   $$ |$$  __$$< $$  ____/ $$  __|   
// $$ |  $$ |$$ |  $$ |$$ |      $$ |      
// \$$$$$$  |$$ |  $$ |$$ |      $$$$$$$$\ 
//  \______/ \__|  \__|\__|      \________|

pragma solidity 0.8.21;

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

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

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

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

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

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

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

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

interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

interface IUniswapV2Router02 {
    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 swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

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 getPair(
        address tokenA,
        address tokenB
    ) external view returns (address pair);

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

    function allPairsLength() external view returns (uint256);

    function createPair(
        address tokenA,
        address tokenB
    ) external returns (address pair);

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

contract JuniorPepe is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 private immutable dexRouter;
    address public immutable dexPair;

    // Swapback
    bool private swapping;

    bool private swapbackEnabled = false;
    uint256 private swapBackValueMin;
    uint256 private swapBackValueMax;

    //Anti-whale
    bool private limitsEnabled = true;
    bool private transferDelayEnabled = false;
    uint256 private maxWallet;
    uint256 private maxTx;
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch

    bool public tradingEnabled = false;

    // Fee receivers
    address private marketingWallet;
    address private projectWallet;

    uint256 private buyTaxTotal;
    uint256 private buyMarketingTax;
    uint256 private buyProjectTax;

    uint256 private sellTaxTotal;
    uint256 private sellMarketingTax;
    uint256 private sellProjectTax;

    uint256 private transferTaxTotal;
    uint256 private transferMarketingTax;
    uint256 private transferProjectTax;

    uint256 private tokensForMarketing;
    uint256 private tokensForProject;

    /******************/

    // exclude from fees and max transaction amount
    mapping(address => bool) private transferTaxExempt;
    mapping(address => bool) private transferLimitExempt;
    mapping(address => bool) private automatedMarketMakerPairs;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount

    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event ExcludeFromLimits(address indexed account, bool isExcluded);
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
    event TradingEnabled(uint256 indexed timestamp);
    event LimitsRemoved(uint256 indexed timestamp);
    event DisabledTransferDelay(uint256 indexed timestamp);

    event SwapbackSettingsUpdated(
        bool enabled,
        uint256 swapBackValueMin,
        uint256 swapBackValueMax
    );
    event MaxTxUpdated(uint256 maxTx);
    event MaxWalletUpdated(uint256 maxWallet);

    event MarketingWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event ProjectWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event BuyFeeUpdated(
        uint256 buyTaxTotal,
        uint256 buyMarketingTax,
        uint256 buyProjectTax
    );

    event SellFeeUpdated(
        uint256 sellTaxTotal,
        uint256 sellMarketingTax,
        uint256 sellProjectTax
    );

    event TransferFeeUpdated(
        uint256 transferTaxTotal,
        uint256 transferMarketingTax,
        uint256 transferProjectTax
    );

    constructor() ERC20("Junior Pepe", "$JRPE") {
        IUniswapV2Router02 _dexRouter = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        whiteListFromLimits(address(_dexRouter), true);
        dexRouter = _dexRouter;

        dexPair = IUniswapV2Factory(_dexRouter.factory()).createPair(
            address(this),
            _dexRouter.WETH()
        );
        whiteListFromLimits(address(dexPair), true);
        _setAutomatedMarketMakerPair(address(dexPair), true);

        uint256 _buyMarketingTax = 40;
        uint256 _buyProjectTax = 0;

        uint256 _sellMarketingTax = 40;
        uint256 _sellProjectTax = 0;

        uint256 _transferMarketingTax = 2;
        uint256 _transferProjectTax = 0;

        uint256 _totalSupply = 4_20_000_000_000 * 10 ** decimals();

        maxTx = (_totalSupply * 10) / 1000;
        maxWallet = (_totalSupply * 10) / 1000;

        swapBackValueMin = 329478301000000000000000000;
        swapBackValueMax = 585345013000000000000000000;

        buyMarketingTax = _buyMarketingTax;
        buyProjectTax = _buyProjectTax;
        buyTaxTotal = buyMarketingTax + buyProjectTax;

        sellMarketingTax = _sellMarketingTax;
        sellProjectTax = _sellProjectTax;
        sellTaxTotal = sellMarketingTax + sellProjectTax;

        transferMarketingTax = _transferMarketingTax;
        transferProjectTax = _transferProjectTax;
        transferTaxTotal = transferMarketingTax + transferProjectTax;

        marketingWallet = address(0xeA3De8c80Ac74c37Ae2A9C16eB2D86f2D628FA38);
        projectWallet = address(msg.sender);

        // exclude from paying fees or having max transaction amount
        whiteListFromFees(msg.sender, true);
        whiteListFromFees(address(this), true);
        whiteListFromFees(address(0xdead), true);
        whiteListFromFees(marketingWallet, true);

        whiteListFromLimits(msg.sender, true);
        whiteListFromLimits(address(this), true);
        whiteListFromLimits(address(0xdead), true);
        whiteListFromLimits(marketingWallet, true);

        transferOwnership(msg.sender);

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, _totalSupply);
    }

    receive() external payable {}

    /**
     * @notice  Opens public trading for the token
     * @dev     onlyOwner.
     */
    function startTrading() external onlyOwner {
        tradingEnabled = true;
        swapbackEnabled = true;
        emit TradingEnabled(block.timestamp);
    }

    /**
     * @notice Removes the max wallet and max transaction limits
     * @dev onlyOwner.
     * Emits an {LimitsRemoved} event
     */
    function removeLimits() external onlyOwner {
        limitsEnabled = false;
        emit LimitsRemoved(block.timestamp);
    }

    /**
     * @notice Removes the transfer delay
     * @dev onlyOwner.
     * Emits an {DisabledTransferDelay} event
     */
    function disableTransferDelay() external onlyOwner {
        transferDelayEnabled = false;
        emit DisabledTransferDelay(block.timestamp);
    }

    /**
     * @notice sets if swapback is enabled and sets the minimum and maximum amounts
     * @dev onlyOwner.
     * Emits an {SwapbackSettingsUpdated} event
     * @param _enabled If swapback is enabled
     * @param _min The minimum amount of tokens the contract must have before swapping tokens for ETH. Base 10000, so 1% = 100.
     * @param _max The maximum amount of tokens the contract can swap for ETH. Base 10000, so 1% = 100.
     */
    function setSwapBackSettings(
        bool _enabled,
        uint256 _min,
        uint256 _max
    ) external onlyOwner {
        swapbackEnabled = _enabled;
        swapBackValueMin = _min * 1e18;
        swapBackValueMax = _max * 1e18;
        emit SwapbackSettingsUpdated(_enabled, _min, _max);
    }

    /**
     * @notice Changes the maximum amount of tokens that can be bought or sold in a single transaction
     * @dev onlyOwner.
     * Emits an {MaxTxUpdated} event
     * @param newNum Base 1000, so 1% = 10
     */
    function setMaxTx(uint256 newNum) external onlyOwner {
        require(newNum >= 2, "Cannot set maxTx lower than 0.2%");
        maxTx = (newNum * totalSupply()) / 1000;
        emit MaxTxUpdated(maxTx);
    }

    /**
     * @notice Changes the maximum amount of tokens a wallet can hold
     * @dev onlyOwner.
     * Emits an {MaxWalletUpdated} event
     * @param newNum Base 1000, so 1% = 10
     */
    function setMaxWallet(uint256 newNum) external onlyOwner {
        require(newNum >= 5, "Cannot set maxWallet lower than 0.5%");
        maxWallet = (newNum * totalSupply()) / 1000;
        emit MaxWalletUpdated(maxWallet);
    }

    /**
     * @notice Sets if a wallet is excluded from the max wallet and tx limits
     * @dev onlyOwner.
     * Emits an {ExcludeFromLimits} event
     * @param updAds The wallet to update
     * @param isEx If the wallet is excluded or not
     */
    function whiteListFromLimits(
        address updAds,
        bool isEx
    ) public onlyOwner {
        transferLimitExempt[updAds] = isEx;
        emit ExcludeFromLimits(updAds, isEx);
    }

    /**
     * @notice Sets the fees for buys
     * @dev onlyOwner.
     * Emits a {BuyFeeUpdated} event
     * All fees added up must be less than 100
     * @param _marketingFee The fee for the marketing wallet
     * @param _devFee The fee for the dev wallet
     */
    function setBuyFees(
        uint256 _marketingFee,
        uint256 _devFee
    ) external onlyOwner {
        buyMarketingTax = _marketingFee;
        buyProjectTax = _devFee;
        buyTaxTotal = buyMarketingTax + buyProjectTax;
        require(buyTaxTotal <= 25, "Total buy fee cannot be higher than 25%");
        emit BuyFeeUpdated(buyTaxTotal, buyMarketingTax, buyProjectTax);
    }

    /**
     * @notice Sets the fees for transfer
     * @dev onlyOwner.
     * Emits a {TransferFeeUpdated} event
     * All fees added up must be less than 100
     * @param _marketingFee The fee for the marketing wallet
     * @param _devFee The fee for the dev wallet
     */
    function setTransferFees(
        uint256 _marketingFee,
        uint256 _devFee
    ) external onlyOwner {
        transferMarketingTax = _marketingFee;
        transferProjectTax = _devFee;
        transferTaxTotal = transferMarketingTax + transferProjectTax;
        require(
            transferTaxTotal <= 5,
            "Total transfer fee cannot be higher than 5%"
        );
        emit TransferFeeUpdated(transferTaxTotal, transferMarketingTax, transferProjectTax);
    }

    /**
     * @notice Sets the fees for sells
     * @dev onlyOwner.
     * Emits a {SellFeeUpdated} event
     * All fees added up must be less than 100
     * @param _marketingFee The fee for the marketing wallet
     * @param _devFee The fee for the dev wallet
     */
    function setSellFees(
        uint256 _marketingFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMarketingTax = _marketingFee;
        sellProjectTax = _devFee;
        sellTaxTotal = sellMarketingTax + sellProjectTax;
        require(
            sellTaxTotal <= 25,
            "Total sell fee cannot be higher than 25%"
        );
        emit SellFeeUpdated(sellTaxTotal, sellMarketingTax, sellProjectTax);
    }

    /**
     * @notice Sets if an address is excluded from fees
     * @dev onlyOwner.
     * Emits an {ExcludeFromFees} event
     * @param account The wallet to update
     * @param excluded If the wallet is excluded or not
     */
    function whiteListFromFees(address account, bool excluded) public onlyOwner {
        transferTaxExempt[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    /**
     * @notice Sets an address as a new liquidity pair. You probably dont want to do this.
     * @dev onlyOwner.
     * Emits a {SetAutomatedMarketMakerPair} event
     * @param pair the address of the pair
     * @param value If the pair is a automated market maker pair or not
     */
    function setAMMPair(
        address pair,
        bool value
    ) public onlyOwner {
        require(
            pair != dexPair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    /**
     * @notice Sets the marketing wallet
     * @dev onlyOwner.
     * Emits an {MarketingWalletUpdated} event
     * @param newWallet The new marketing wallet
     */
    function updateMarketingWallet(address newWallet) external onlyOwner {
        emit MarketingWalletUpdated(newWallet, marketingWallet);
        marketingWallet = newWallet;
    }

    /**
     * @notice Sets the project wallet
     * @dev onlyOwner.
     * Emits an {ProjectWalletUpdated} event
     * @param newWallet The new dev wallet
     */
    function updateProjectWallet(address newWallet) external onlyOwner {
        emit ProjectWalletUpdated(newWallet, projectWallet);
        projectWallet = newWallet;
    }

    /**
     * @notice  Information about the swapback settings
     * @return  _swapbackEnabled  if swapback is enabled
     * @return  _swapBackValueMin  the minimum amount of tokens in the contract balance to trigger swapback
     * @return  _swapBackValueMax  the maximum amount of tokens in the contract balance to trigger swapback
     */
    function swapBackValues()
        external
        view
        returns (
            bool _swapbackEnabled,
            uint256 _swapBackValueMin,
            uint256 _swapBackValueMax
        )
    {
        _swapbackEnabled = swapbackEnabled;
        _swapBackValueMin = swapBackValueMin;
        _swapBackValueMax = swapBackValueMax;
    }

    /**
     * @notice  Information about the anti whale parameters
     * @return  _limitsEnabled  if the wallet limits are in effect
     * @return  _transferDelayEnabled  if the transfer delay is enabled
     * @return  _maxWallet  The maximum amount of tokens that can be held by a wallet
     * @return  _maxTx  The maximum amount of tokens that can be bought or sold in a single transaction
     */
    function maxTxValues()
        external
        view
        returns (
            bool _limitsEnabled,
            bool _transferDelayEnabled,
            uint256 _maxWallet,
            uint256 _maxTx
        )
    {
        _limitsEnabled = limitsEnabled;
        _transferDelayEnabled = transferDelayEnabled;
        _maxWallet = maxWallet;
        _maxTx = maxTx;
    }

    /**
     * @notice The wallets that receive the collected fees
     * @return _marketingWallet The wallet that receives the marketing fees
     * @return _projectWallet The wallet that receives the dev fees
     */
    function receiverwallets()
        external
        view
        returns (address _marketingWallet, address _projectWallet)
    {
        return (marketingWallet, projectWallet);
    }

    /**
     * @notice Fees for buys, sells, and transfers
     * @return _buyTaxTotal The total fee for buys
     * @return _buyMarketingTax The fee for buys that gets sent to marketing
     * @return _buyProjectTax The fee for buys that gets sent to dev
     * @return _sellTaxTotal The total fee for sells
     * @return _sellMarketingTax The fee for sells that gets sent to marketing
     * @return _sellProjectTax The fee for sells that gets sent to dev
     */
    function taxValues()
        external
        view
        returns (
            uint256 _buyTaxTotal,
            uint256 _buyMarketingTax,
            uint256 _buyProjectTax,
            uint256 _sellTaxTotal,
            uint256 _sellMarketingTax,
            uint256 _sellProjectTax,
            uint256 _transferTaxTotal,
            uint256 _transferMarketingTax,
            uint256 _transferProjectTax
        )
    {
        _buyTaxTotal = buyTaxTotal;
        _buyMarketingTax = buyMarketingTax;
        _buyProjectTax = buyProjectTax;
        _sellTaxTotal = sellTaxTotal;
        _sellMarketingTax = sellMarketingTax;
        _sellProjectTax = sellProjectTax;
        _transferTaxTotal = transferTaxTotal;
        _transferMarketingTax = transferMarketingTax;
        _transferProjectTax = transferProjectTax;
    }

    /**
     * @notice  If the wallet is excluded from fees and max transaction amount and if the wallet is a automated market maker pair
     * @param   _target  The wallet to check
     * @return  _transferTaxExempt  If the wallet is excluded from fees
     * @return  _transferLimitExempt  If the wallet is excluded from max transaction amount
     * @return  _automatedMarketMakerPairs If the wallet is a automated market maker pair
     */
    function getMappings(
        address _target
    )
        external
        view
        returns (
            bool _transferTaxExempt,
            bool _transferLimitExempt,
            bool _automatedMarketMakerPairs
        )
    {
        _transferTaxExempt = transferTaxExempt[_target];
        _transferLimitExempt = transferLimitExempt[_target];
        _automatedMarketMakerPairs = automatedMarketMakerPairs[_target];
    }

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

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (limitsEnabled) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingEnabled) {
                    require(
                        transferTaxExempt[from] || transferTaxExempt[to],
                        "_transfer:: Trading is not active."
                    );
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(dexRouter) &&
                        to != address(dexPair)
                    ) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed."
                        );
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }

                //when buy
                if (
                    automatedMarketMakerPairs[from] && !transferLimitExempt[to]
                ) {
                    require(
                        amount <= maxTx,
                        "Buy transfer amount exceeds the maxTx."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    automatedMarketMakerPairs[to] && !transferLimitExempt[from]
                ) {
                    require(
                        amount <= maxTx,
                        "Sell transfer amount exceeds the maxTx."
                    );
                } else if (!transferLimitExempt[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapBackValueMin;

        if (
            canSwap &&
            swapbackEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !transferTaxExempt[from] &&
            !transferTaxExempt[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (transferTaxExempt[from] || transferTaxExempt[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTaxTotal > 0) {
                fees = amount.mul(sellTaxTotal).div(100);
                tokensForProject += (fees * sellProjectTax) / sellTaxTotal;
                tokensForMarketing += (fees * sellMarketingTax) / sellTaxTotal;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTaxTotal > 0) {
                fees = amount.mul(buyTaxTotal).div(100);
                tokensForProject += (fees * buyProjectTax) / buyTaxTotal;
                tokensForMarketing += (fees * buyMarketingTax) / buyTaxTotal;
            }
            // on transfer
            else if(transferTaxTotal > 0){
                fees = amount.mul(transferTaxTotal).div(100);
                tokensForProject += (fees * transferProjectTax) / transferTaxTotal;
                tokensForMarketing += (fees * transferMarketingTax) / transferTaxTotal;
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }

            amount -= fees;
        }

        super._transfer(from, to, amount);
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = dexRouter.WETH();

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

        // make the swap
        dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = contractBalance;
        bool success;

        if (contractBalance == 0) {
            return;
        }

        if (contractBalance > swapBackValueMax) {
            contractBalance = swapBackValueMax;
        }

        uint256 amountToSwapForETH = contractBalance;

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        uint256 ethForDev = ethBalance.mul(tokensForProject).div(
            totalTokensToSwap
        );

        tokensForMarketing = 0;
        tokensForProject = 0;

        (success, ) = address(projectWallet).call{value: ethForDev}("");

        (success, ) = address(marketingWallet).call{
            value: address(this).balance
        }("");
    }


    function manualSwapTokensForEth(uint256 percent) external onlyOwner {
         uint256 contractBalance = balanceOf(address(this));
         uint256 tokensToSwap;

        if (percent == 100) {
            tokensToSwap = contractBalance;
        } else {
            tokensToSwap = contractBalance * percent / 100;
            if (tokensToSwap > contractBalance) {
                tokensToSwap = contractBalance;
            }
        }
        
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = dexRouter.WETH();

        _approve(address(this), address(dexRouter), tokensToSwap);
        // make the swap
        dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokensToSwap,
            0, // accept any amount of ETH
            path,
            marketingWallet,
            block.timestamp
        );
    }
}

Settings
{
  "evmVersion": "paris",
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"buyTaxTotal","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyMarketingTax","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyProjectTax","type":"uint256"}],"name":"BuyFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"DisabledTransferDelay","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"LimitsRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"MarketingWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxTx","type":"uint256"}],"name":"MaxTxUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxWallet","type":"uint256"}],"name":"MaxWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"ProjectWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"sellTaxTotal","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellMarketingTax","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellProjectTax","type":"uint256"}],"name":"SellFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"},{"indexed":false,"internalType":"uint256","name":"swapBackValueMin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"swapBackValueMax","type":"uint256"}],"name":"SwapbackSettingsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"TradingEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"transferTaxTotal","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"transferMarketingTax","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"transferProjectTax","type":"uint256"}],"name":"TransferFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dexPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_target","type":"address"}],"name":"getMappings","outputs":[{"internalType":"bool","name":"_transferTaxExempt","type":"bool"},{"internalType":"bool","name":"_transferLimitExempt","type":"bool"},{"internalType":"bool","name":"_automatedMarketMakerPairs","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualSwapTokensForEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTxValues","outputs":[{"internalType":"bool","name":"_limitsEnabled","type":"bool"},{"internalType":"bool","name":"_transferDelayEnabled","type":"bool"},{"internalType":"uint256","name":"_maxWallet","type":"uint256"},{"internalType":"uint256","name":"_maxTx","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":"receiverwallets","outputs":[{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"address","name":"_projectWallet","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAMMPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"setMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"},{"internalType":"uint256","name":"_min","type":"uint256"},{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setSwapBackSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"setTransferFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapBackValues","outputs":[{"internalType":"bool","name":"_swapbackEnabled","type":"bool"},{"internalType":"uint256","name":"_swapBackValueMin","type":"uint256"},{"internalType":"uint256","name":"_swapBackValueMax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxValues","outputs":[{"internalType":"uint256","name":"_buyTaxTotal","type":"uint256"},{"internalType":"uint256","name":"_buyMarketingTax","type":"uint256"},{"internalType":"uint256","name":"_buyProjectTax","type":"uint256"},{"internalType":"uint256","name":"_sellTaxTotal","type":"uint256"},{"internalType":"uint256","name":"_sellMarketingTax","type":"uint256"},{"internalType":"uint256","name":"_sellProjectTax","type":"uint256"},{"internalType":"uint256","name":"_transferTaxTotal","type":"uint256"},{"internalType":"uint256","name":"_transferMarketingTax","type":"uint256"},{"internalType":"uint256","name":"_transferProjectTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateProjectWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"whiteListFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"whiteListFromLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526000600560156101000a81548160ff0219169083151502179055506001600860006101000a81548160ff0219169083151502179055506000600860016101000a81548160ff0219169083151502179055506000600c60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600b81526020017f4a756e696f7220506570650000000000000000000000000000000000000000008152506040518060400160405280600581526020017f244a5250450000000000000000000000000000000000000000000000000000008152508160039081620000fb919062000f49565b5080600490816200010d919062000f49565b50505062000130620001246200062260201b60201c565b6200062a60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200015c816001620006f060201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001dc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200020291906200109a565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200026a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200029091906200109a565b6040518363ffffffff1660e01b8152600401620002af929190620010dd565b6020604051808303816000875af1158015620002cf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f591906200109a565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200033d60a0516001620006f060201b60201c565b6200035260a05160016200082a60201b60201c565b600060289050600080602890506000806002905060008062000379620008cb60201b60201c565b600a6200038791906200129a565b6461c9f36800620003999190620012eb565b90506103e8600a82620003ad9190620012eb565b620003b9919062001365565b600a819055506103e8600a82620003d19190620012eb565b620003dd919062001365565b6009819055506b011089be7c8ea615685400006006819055506b01e42fa0bcc6c1cd6eb4000060078190555086600f8190555085601081905550601054600f546200042991906200139d565b600e8190555084601281905550836013819055506013546012546200044f91906200139d565b60118190555082601581905550816016819055506016546015546200047591906200139d565b60148190555073ea3de8c80ac74c37ae2a9c16eb2d86f2d628fa38600c60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000524336001620008d460201b60201c565b62000537306001620008d460201b60201c565b6200054c61dead6001620008d460201b60201c565b62000581600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620008d460201b60201c565b62000594336001620006f060201b60201c565b620005a7306001620006f060201b60201c565b620005bc61dead6001620006f060201b60201c565b620005f1600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620006f060201b60201c565b620006023362000a0e60201b60201c565b62000614338262000b2360201b60201c565b5050505050505050620015cd565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620007006200062260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200072662000c9b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200077f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007769062001439565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc92826040516200081e919062001478565b60405180910390a25050565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b60006012905090565b620008e46200062260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200090a62000c9b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000963576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200095a9062001439565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000a02919062001478565b60405180910390a25050565b62000a1e6200062260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000a4462000c9b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000a9d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a949062001439565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000b0f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b06906200150b565b60405180910390fd5b62000b20816200062a60201b60201c565b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000b95576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b8c906200157d565b60405180910390fd5b62000ba96000838362000cc560201b60201c565b806002600082825462000bbd91906200139d565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000c1491906200139d565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000c7b9190620015b0565b60405180910390a362000c976000838362000cca60201b60201c565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000d5157607f821691505b60208210810362000d675762000d6662000d09565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000dd17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000d92565b62000ddd868362000d92565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000e2a62000e2462000e1e8462000df5565b62000dff565b62000df5565b9050919050565b6000819050919050565b62000e468362000e09565b62000e5e62000e558262000e31565b84845462000d9f565b825550505050565b600090565b62000e7562000e66565b62000e8281848462000e3b565b505050565b5b8181101562000eaa5762000e9e60008262000e6b565b60018101905062000e88565b5050565b601f82111562000ef95762000ec38162000d6d565b62000ece8462000d82565b8101602085101562000ede578190505b62000ef662000eed8562000d82565b83018262000e87565b50505b505050565b600082821c905092915050565b600062000f1e6000198460080262000efe565b1980831691505092915050565b600062000f39838362000f0b565b9150826002028217905092915050565b62000f548262000ccf565b67ffffffffffffffff81111562000f705762000f6f62000cda565b5b62000f7c825462000d38565b62000f8982828562000eae565b600060209050601f83116001811462000fc1576000841562000fac578287015190505b62000fb8858262000f2b565b86555062001028565b601f19841662000fd18662000d6d565b60005b8281101562000ffb5784890151825560018201915060208501945060208101905062000fd4565b868310156200101b578489015162001017601f89168262000f0b565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620010628262001035565b9050919050565b620010748162001055565b81146200108057600080fd5b50565b600081519050620010948162001069565b92915050565b600060208284031215620010b357620010b262001030565b5b6000620010c38482850162001083565b91505092915050565b620010d78162001055565b82525050565b6000604082019050620010f46000830185620010cc565b620011036020830184620010cc565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620011985780860481111562001170576200116f6200110a565b5b6001851615620011805780820291505b8081029050620011908562001139565b945062001150565b94509492505050565b600082620011b3576001905062001286565b81620011c3576000905062001286565b8160018114620011dc5760028114620011e7576200121d565b600191505062001286565b60ff841115620011fc57620011fb6200110a565b5b8360020a9150848211156200121657620012156200110a565b5b5062001286565b5060208310610133831016604e8410600b8410161715620012575782820a9050838111156200125157620012506200110a565b5b62001286565b62001266848484600162001146565b9250905081840481111562001280576200127f6200110a565b5b81810290505b9392505050565b600060ff82169050919050565b6000620012a78262000df5565b9150620012b4836200128d565b9250620012e37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620011a1565b905092915050565b6000620012f88262000df5565b9150620013058362000df5565b9250828202620013158162000df5565b915082820484148315176200132f576200132e6200110a565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620013728262000df5565b91506200137f8362000df5565b92508262001392576200139162001336565b5b828204905092915050565b6000620013aa8262000df5565b9150620013b78362000df5565b9250828201905080821115620013d257620013d16200110a565b5b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062001421602083620013d8565b91506200142e82620013e9565b602082019050919050565b60006020820190508181036000830152620014548162001412565b9050919050565b60008115159050919050565b62001472816200145b565b82525050565b60006020820190506200148f600083018462001467565b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000620014f3602683620013d8565b9150620015008262001495565b604082019050919050565b600060208201905081810360008301526200152681620014e4565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001565601f83620013d8565b915062001572826200152d565b602082019050919050565b60006020820190508181036000830152620015988162001556565b9050919050565b620015aa8162000df5565b82525050565b6000602082019050620015c760008301846200159f565b92915050565b60805160a051614f116200162b60003960008181610c970152818161206001526128c1015260008181611595015281816116760152818161169d015281816128690152818161385701528181613938015261395f0152614f116000f3fe6080604052600436106102135760003560e01c806395d89b4111610118578063c37dcd0f116100a0578063f242ab411161006f578063f242ab4114610785578063f2fde38b146107b0578063f3dc3902146107d9578063f639d5341461080c578063fab82a8e146108355761021a565b8063c37dcd0f146106df578063d088935814610708578063dd62ed3e14610731578063e884f2601461076e5761021a565b8063a9059cbb116100e7578063a9059cbb146105e8578063aacebbe314610625578063b2d8f2081461064e578063bc33718214610677578063c0b1a6a8146106a05761021a565b806395d89b411461052e5780639fd8234e14610559578063a10fd7be14610582578063a457c2d7146105ab5761021a565b8063395093511161019b57806370a082311161016a57806370a082311461046f578063715018a6146104ac57806371927628146104c3578063751039fc146104ec5780638da5cb5b146105035761021a565b806339509351146103b15780634ada218b146103ee5780635af0e68f146104195780635d0044ca146104465761021a565b806323b872dd116101e257806323b872dd146102db578063293230b8146103185780632d99d32e1461032f578063313ce5671461035857806331f81511146103835761021a565b806306fdde031461021f578063072066841461024a578063095ea7b31461027357806318160ddd146102b05761021a565b3661021a57005b600080fd5b34801561022b57600080fd5b50610234610861565b6040516102419190613a9b565b60405180910390f35b34801561025657600080fd5b50610271600480360381019061026c9190613b58565b6108f3565b005b34801561027f57600080fd5b5061029a60048036038101906102959190613bce565b610a18565b6040516102a79190613c1d565b60405180910390f35b3480156102bc57600080fd5b506102c5610a36565b6040516102d29190613c47565b60405180910390f35b3480156102e757600080fd5b5061030260048036038101906102fd9190613c62565b610a40565b60405161030f9190613c1d565b60405180910390f35b34801561032457600080fd5b5061032d610b38565b005b34801561033b57600080fd5b5061035660048036038101906103519190613b58565b610c19565b005b34801561036457600080fd5b5061036d610d31565b60405161037a9190613cd1565b60405180910390f35b34801561038f57600080fd5b50610398610d3a565b6040516103a89493929190613cec565b60405180910390f35b3480156103bd57600080fd5b506103d860048036038101906103d39190613bce565b610d74565b6040516103e59190613c1d565b60405180910390f35b3480156103fa57600080fd5b50610403610e20565b6040516104109190613c1d565b60405180910390f35b34801561042557600080fd5b5061042e610e33565b60405161043d93929190613d31565b60405180910390f35b34801561045257600080fd5b5061046d60048036038101906104689190613d68565b610e59565b005b34801561047b57600080fd5b5061049660048036038101906104919190613d95565b610f7b565b6040516104a39190613c47565b60405180910390f35b3480156104b857600080fd5b506104c1610fc3565b005b3480156104cf57600080fd5b506104ea60048036038101906104e59190613d95565b61104b565b005b3480156104f857600080fd5b50610501611187565b005b34801561050f57600080fd5b5061051861124d565b6040516105259190613dd1565b60405180910390f35b34801561053a57600080fd5b50610543611277565b6040516105509190613a9b565b60405180910390f35b34801561056557600080fd5b50610580600480360381019061057b9190613dec565b611309565b005b34801561058e57600080fd5b506105a960048036038101906105a49190613d68565b611434565b005b3480156105b757600080fd5b506105d260048036038101906105cd9190613bce565b611757565b6040516105df9190613c1d565b60405180910390f35b3480156105f457600080fd5b5061060f600480360381019061060a9190613bce565b611842565b60405161061c9190613c1d565b60405180910390f35b34801561063157600080fd5b5061064c60048036038101906106479190613d95565b611860565b005b34801561065a57600080fd5b5061067560048036038101906106709190613dec565b61199c565b005b34801561068357600080fd5b5061069e60048036038101906106999190613d68565b611ac7565b005b3480156106ac57600080fd5b506106c760048036038101906106c29190613d95565b611be9565b6040516106d693929190613e2c565b60405180910390f35b3480156106eb57600080fd5b5061070660048036038101906107019190613b58565b611ce2565b005b34801561071457600080fd5b5061072f600480360381019061072a9190613e63565b611e07565b005b34801561073d57600080fd5b5061075860048036038101906107539190613eb6565b611f11565b6040516107659190613c47565b60405180910390f35b34801561077a57600080fd5b50610783611f98565b005b34801561079157600080fd5b5061079a61205e565b6040516107a79190613dd1565b60405180910390f35b3480156107bc57600080fd5b506107d760048036038101906107d29190613d95565b612082565b005b3480156107e557600080fd5b506107ee612179565b60405161080399989796959493929190613ef6565b60405180910390f35b34801561081857600080fd5b50610833600480360381019061082e9190613dec565b6121bf565b005b34801561084157600080fd5b5061084a6122ea565b604051610858929190613f83565b60405180910390f35b60606003805461087090613fdb565b80601f016020809104026020016040519081016040528092919081815260200182805461089c90613fdb565b80156108e95780601f106108be576101008083540402835291602001916108e9565b820191906000526020600020905b8154815290600101906020018083116108cc57829003601f168201915b5050505050905090565b6108fb61233b565b73ffffffffffffffffffffffffffffffffffffffff1661091961124d565b73ffffffffffffffffffffffffffffffffffffffff161461096f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096690614058565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9282604051610a0c9190613c1d565b60405180910390a25050565b6000610a2c610a2561233b565b8484612343565b6001905092915050565b6000600254905090565b6000610a4d84848461250c565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610a9861233b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0f906140ea565b60405180910390fd5b610b2c85610b2461233b565b858403612343565b60019150509392505050565b610b4061233b565b73ffffffffffffffffffffffffffffffffffffffff16610b5e61124d565b73ffffffffffffffffffffffffffffffffffffffff1614610bb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bab90614058565b60405180910390fd5b6001600c60006101000a81548160ff0219169083151502179055506001600560156101000a81548160ff021916908315150217905550427fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92360405160405180910390a2565b610c2161233b565b73ffffffffffffffffffffffffffffffffffffffff16610c3f61124d565b73ffffffffffffffffffffffffffffffffffffffff1614610c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8c90614058565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1a9061417c565b60405180910390fd5b610d2d82826131de565b5050565b60006012905090565b600080600080600860009054906101000a900460ff169350600860019054906101000a900460ff1692506009549150600a54905090919293565b6000610e16610d8161233b565b848460016000610d8f61233b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e1191906141cb565b612343565b6001905092915050565b600c60009054906101000a900460ff1681565b6000806000600560159054906101000a900460ff16925060065491506007549050909192565b610e6161233b565b73ffffffffffffffffffffffffffffffffffffffff16610e7f61124d565b73ffffffffffffffffffffffffffffffffffffffff1614610ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecc90614058565b60405180910390fd5b6005811015610f19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1090614271565b60405180910390fd5b6103e8610f24610a36565b82610f2f9190614291565b610f399190614302565b6009819055507f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace600954604051610f709190613c47565b60405180910390a150565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fcb61233b565b73ffffffffffffffffffffffffffffffffffffffff16610fe961124d565b73ffffffffffffffffffffffffffffffffffffffff161461103f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103690614058565b60405180910390fd5b611049600061327f565b565b61105361233b565b73ffffffffffffffffffffffffffffffffffffffff1661107161124d565b73ffffffffffffffffffffffffffffffffffffffff16146110c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110be90614058565b60405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fb91dbdeaf34f885ccae2d8abc3967cb03c079b6af2c7944e3893fd29427d75e760405160405180910390a380600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61118f61233b565b73ffffffffffffffffffffffffffffffffffffffff166111ad61124d565b73ffffffffffffffffffffffffffffffffffffffff1614611203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fa90614058565b60405180910390fd5b6000600860006101000a81548160ff021916908315150217905550427ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261660405160405180910390a2565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461128690613fdb565b80601f01602080910402602001604051908101604052809291908181526020018280546112b290613fdb565b80156112ff5780601f106112d4576101008083540402835291602001916112ff565b820191906000526020600020905b8154815290600101906020018083116112e257829003601f168201915b5050505050905090565b61131161233b565b73ffffffffffffffffffffffffffffffffffffffff1661132f61124d565b73ffffffffffffffffffffffffffffffffffffffff1614611385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137c90614058565b60405180910390fd5b81601281905550806013819055506013546012546113a391906141cb565b601181905550601960115411156113ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e6906143a5565b60405180910390fd5b7fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f1601154601254601354604051611428939291906143c5565b60405180910390a15050565b61143c61233b565b73ffffffffffffffffffffffffffffffffffffffff1661145a61124d565b73ffffffffffffffffffffffffffffffffffffffff16146114b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a790614058565b60405180910390fd5b60006114bb30610f7b565b90506000606483036114cf578190506114f6565b606483836114dd9190614291565b6114e79190614302565b9050818111156114f5578190505b5b6000600267ffffffffffffffff811115611513576115126143fc565b5b6040519080825280602002602001820160405280156115415781602001602082028036833780820191505090505b50905030816000815181106115595761155861442b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115fe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611622919061446f565b816001815181106116365761163561442b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061169b307f000000000000000000000000000000000000000000000000000000000000000084612343565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac94783600084600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b815260040161171f95949392919061459f565b600060405180830381600087803b15801561173957600080fd5b505af115801561174d573d6000803e3d6000fd5b5050505050505050565b6000806001600061176661233b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611823576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181a9061466b565b60405180910390fd5b61183761182e61233b565b85858403612343565b600191505092915050565b600061185661184f61233b565b848461250c565b6001905092915050565b61186861233b565b73ffffffffffffffffffffffffffffffffffffffff1661188661124d565b73ffffffffffffffffffffffffffffffffffffffff16146118dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d390614058565b60405180910390fd5b600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6760405160405180910390a380600c60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6119a461233b565b73ffffffffffffffffffffffffffffffffffffffff166119c261124d565b73ffffffffffffffffffffffffffffffffffffffff1614611a18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0f90614058565b60405180910390fd5b81600f8190555080601081905550601054600f54611a3691906141cb565b600e819055506019600e541115611a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a79906146fd565b60405180910390fd5b7f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e600e54600f54601054604051611abb939291906143c5565b60405180910390a15050565b611acf61233b565b73ffffffffffffffffffffffffffffffffffffffff16611aed61124d565b73ffffffffffffffffffffffffffffffffffffffff1614611b43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3a90614058565b60405180910390fd5b6002811015611b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7e90614769565b60405180910390fd5b6103e8611b92610a36565b82611b9d9190614291565b611ba79190614302565b600a819055507fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a600a54604051611bde9190613c47565b60405180910390a150565b6000806000601960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169250601a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169150601b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690509193909250565b611cea61233b565b73ffffffffffffffffffffffffffffffffffffffff16611d0861124d565b73ffffffffffffffffffffffffffffffffffffffff1614611d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5590614058565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611dfb9190613c1d565b60405180910390a25050565b611e0f61233b565b73ffffffffffffffffffffffffffffffffffffffff16611e2d61124d565b73ffffffffffffffffffffffffffffffffffffffff1614611e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7a90614058565b60405180910390fd5b82600560156101000a81548160ff021916908315150217905550670de0b6b3a764000082611eb19190614291565b600681905550670de0b6b3a764000081611ecb9190614291565b6007819055507f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c779838383604051611f0493929190613d31565b60405180910390a1505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611fa061233b565b73ffffffffffffffffffffffffffffffffffffffff16611fbe61124d565b73ffffffffffffffffffffffffffffffffffffffff1614612014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200b90614058565b60405180910390fd5b6000600860016101000a81548160ff021916908315150217905550427f26e776fcf7ca20aa79b5b946e9b5111f47205539ece9d7a7995271dd6a8b5bad60405160405180910390a2565b7f000000000000000000000000000000000000000000000000000000000000000081565b61208a61233b565b73ffffffffffffffffffffffffffffffffffffffff166120a861124d565b73ffffffffffffffffffffffffffffffffffffffff16146120fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f590614058565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361216d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612164906147fb565b60405180910390fd5b6121768161327f565b50565b6000806000806000806000806000600e549850600f5497506010549650601154955060125494506013549350601454925060155491506016549050909192939495969798565b6121c761233b565b73ffffffffffffffffffffffffffffffffffffffff166121e561124d565b73ffffffffffffffffffffffffffffffffffffffff161461223b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223290614058565b60405180910390fd5b816015819055508060168190555060165460155461225991906141cb565b601481905550600560145411156122a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229c9061488d565b60405180910390fd5b7fca0d25e555e4d075eb2e507cf72ddfc215f6fb47b9d21a259dc9df5759c7e8576014546015546016546040516122de939291906143c5565b60405180910390a15050565b600080600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16915091509091565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036123b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a99061491f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612421576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612418906149b1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516124ff9190613c47565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361257b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257290614a43565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036125ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e190614ad5565b60405180910390fd5b60008103612603576125fe83836000613345565b6131d9565b600860009054906101000a900460ff1615612cc65761262061124d565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561268e575061265e61124d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126c75750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612701575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561271a5750600560149054906101000a900460ff16155b15612cc557600c60009054906101000a900460ff1661281457601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806127d45750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280a90614b67565b60405180910390fd5b5b600860019054906101000a900460ff16156129dc5761283161124d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156128b857507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561291057507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156129db5743600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612996576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298d90614c1f565b60405180910390fd5b43600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a7f5750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b2657600a54811115612ac9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac090614cb1565b60405180910390fd5b600954612ad583610f7b565b82612ae091906141cb565b1115612b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1890614d1d565b60405180910390fd5b612cc4565b601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612bc95750601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c1857600a54811115612c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0a90614daf565b60405180910390fd5b612cc3565b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612cc257600954612c7583610f7b565b82612c8091906141cb565b1115612cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb890614d1d565b60405180910390fd5b5b5b5b5b5b6000612cd130610f7b565b905060006006548210159050808015612cf65750600560159054906101000a900460ff165b8015612d0f5750600560149054906101000a900460ff16155b8015612d655750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612dbb5750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612e115750601960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612e55576001600560146101000a81548160ff021916908315150217905550612e396135c4565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612f0b5750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612f1557600090505b600081156131c957601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f7857506000601154115b1561301257612fa56064612f976011548861378290919063ffffffff16565b61379890919063ffffffff16565b905060115460135482612fb89190614291565b612fc29190614302565b60186000828254612fd391906141cb565b9250508190555060115460125482612feb9190614291565b612ff59190614302565b6017600082825461300691906141cb565b925050819055506131a5565b601b60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561306d57506000600e54115b156131075761309a606461308c600e548861378290919063ffffffff16565b61379890919063ffffffff16565b9050600e54601054826130ad9190614291565b6130b79190614302565b601860008282546130c891906141cb565b92505081905550600e54600f54826130e09190614291565b6130ea9190614302565b601760008282546130fb91906141cb565b925050819055506131a4565b600060145411156131a35761313a606461312c6014548861378290919063ffffffff16565b61379890919063ffffffff16565b90506014546016548261314d9190614291565b6131579190614302565b6018600082825461316891906141cb565b92505081905550601454601554826131809190614291565b61318a9190614302565b6017600082825461319b91906141cb565b925050819055505b5b5b60008111156131ba576131b9873083613345565b5b80856131c69190614dcf565b94505b6131d4878787613345565b505050505b505050565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036133b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133ab90614a43565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613423576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161341a90614ad5565b60405180910390fd5b61342e8383836137ae565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156134b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134ab90614e75565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461354791906141cb565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516135ab9190613c47565b60405180910390a36135be8484846137b3565b50505050565b60006135cf30610f7b565b9050600081905060008083036135e757505050613780565b6007548311156135f75760075492505b6000839050600047905061360a826137b8565b600061361f82476139f590919063ffffffff16565b9050600061364a8661363c6018548561378290919063ffffffff16565b61379890919063ffffffff16565b905060006017819055506000601881905550600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16816040516136a290614ec6565b60006040518083038185875af1925050503d80600081146136df576040519150601f19603f3d011682016040523d82523d6000602084013e6136e4565b606091505b505080955050600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161373090614ec6565b60006040518083038185875af1925050503d806000811461376d576040519150601f19603f3d011682016040523d82523d6000602084013e613772565b606091505b505080955050505050505050505b565b600081836137909190614291565b905092915050565b600081836137a69190614302565b905092915050565b505050565b505050565b6000600267ffffffffffffffff8111156137d5576137d46143fc565b5b6040519080825280602002602001820160405280156138035781602001602082028036833780820191505090505b509050308160008151811061381b5761381a61442b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156138c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138e4919061446f565b816001815181106138f8576138f761442b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061395d307f000000000000000000000000000000000000000000000000000000000000000084612343565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016139bf95949392919061459f565b600060405180830381600087803b1580156139d957600080fd5b505af11580156139ed573d6000803e3d6000fd5b505050505050565b60008183613a039190614dcf565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613a45578082015181840152602081019050613a2a565b60008484015250505050565b6000601f19601f8301169050919050565b6000613a6d82613a0b565b613a778185613a16565b9350613a87818560208601613a27565b613a9081613a51565b840191505092915050565b60006020820190508181036000830152613ab58184613a62565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613aed82613ac2565b9050919050565b613afd81613ae2565b8114613b0857600080fd5b50565b600081359050613b1a81613af4565b92915050565b60008115159050919050565b613b3581613b20565b8114613b4057600080fd5b50565b600081359050613b5281613b2c565b92915050565b60008060408385031215613b6f57613b6e613abd565b5b6000613b7d85828601613b0b565b9250506020613b8e85828601613b43565b9150509250929050565b6000819050919050565b613bab81613b98565b8114613bb657600080fd5b50565b600081359050613bc881613ba2565b92915050565b60008060408385031215613be557613be4613abd565b5b6000613bf385828601613b0b565b9250506020613c0485828601613bb9565b9150509250929050565b613c1781613b20565b82525050565b6000602082019050613c326000830184613c0e565b92915050565b613c4181613b98565b82525050565b6000602082019050613c5c6000830184613c38565b92915050565b600080600060608486031215613c7b57613c7a613abd565b5b6000613c8986828701613b0b565b9350506020613c9a86828701613b0b565b9250506040613cab86828701613bb9565b9150509250925092565b600060ff82169050919050565b613ccb81613cb5565b82525050565b6000602082019050613ce66000830184613cc2565b92915050565b6000608082019050613d016000830187613c0e565b613d0e6020830186613c0e565b613d1b6040830185613c38565b613d286060830184613c38565b95945050505050565b6000606082019050613d466000830186613c0e565b613d536020830185613c38565b613d606040830184613c38565b949350505050565b600060208284031215613d7e57613d7d613abd565b5b6000613d8c84828501613bb9565b91505092915050565b600060208284031215613dab57613daa613abd565b5b6000613db984828501613b0b565b91505092915050565b613dcb81613ae2565b82525050565b6000602082019050613de66000830184613dc2565b92915050565b60008060408385031215613e0357613e02613abd565b5b6000613e1185828601613bb9565b9250506020613e2285828601613bb9565b9150509250929050565b6000606082019050613e416000830186613c0e565b613e4e6020830185613c0e565b613e5b6040830184613c0e565b949350505050565b600080600060608486031215613e7c57613e7b613abd565b5b6000613e8a86828701613b43565b9350506020613e9b86828701613bb9565b9250506040613eac86828701613bb9565b9150509250925092565b60008060408385031215613ecd57613ecc613abd565b5b6000613edb85828601613b0b565b9250506020613eec85828601613b0b565b9150509250929050565b600061012082019050613f0c600083018c613c38565b613f19602083018b613c38565b613f26604083018a613c38565b613f336060830189613c38565b613f406080830188613c38565b613f4d60a0830187613c38565b613f5a60c0830186613c38565b613f6760e0830185613c38565b613f75610100830184613c38565b9a9950505050505050505050565b6000604082019050613f986000830185613dc2565b613fa56020830184613dc2565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613ff357607f821691505b60208210810361400657614005613fac565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614042602083613a16565b915061404d8261400c565b602082019050919050565b6000602082019050818103600083015261407181614035565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006140d4602883613a16565b91506140df82614078565b604082019050919050565b60006020820190508181036000830152614103816140c7565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614166603983613a16565b91506141718261410a565b604082019050919050565b6000602082019050818103600083015261419581614159565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006141d682613b98565b91506141e183613b98565b92508282019050808211156141f9576141f861419c565b5b92915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061425b602483613a16565b9150614266826141ff565b604082019050919050565b6000602082019050818103600083015261428a8161424e565b9050919050565b600061429c82613b98565b91506142a783613b98565b92508282026142b581613b98565b915082820484148315176142cc576142cb61419c565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061430d82613b98565b915061431883613b98565b925082614328576143276142d3565b5b828204905092915050565b7f546f74616c2073656c6c206665652063616e6e6f74206265206869676865722060008201527f7468616e20323525000000000000000000000000000000000000000000000000602082015250565b600061438f602883613a16565b915061439a82614333565b604082019050919050565b600060208201905081810360008301526143be81614382565b9050919050565b60006060820190506143da6000830186613c38565b6143e76020830185613c38565b6143f46040830184613c38565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061446981613af4565b92915050565b60006020828403121561448557614484613abd565b5b60006144938482850161445a565b91505092915050565b6000819050919050565b6000819050919050565b60006144cb6144c66144c18461449c565b6144a6565b613b98565b9050919050565b6144db816144b0565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61451681613ae2565b82525050565b6000614528838361450d565b60208301905092915050565b6000602082019050919050565b600061454c826144e1565b61455681856144ec565b9350614561836144fd565b8060005b83811015614592578151614579888261451c565b975061458483614534565b925050600181019050614565565b5085935050505092915050565b600060a0820190506145b46000830188613c38565b6145c160208301876144d2565b81810360408301526145d38186614541565b90506145e26060830185613dc2565b6145ef6080830184613c38565b9695505050505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614655602583613a16565b9150614660826145f9565b604082019050919050565b6000602082019050818103600083015261468481614648565b9050919050565b7f546f74616c20627579206665652063616e6e6f7420626520686967686572207460008201527f68616e2032352500000000000000000000000000000000000000000000000000602082015250565b60006146e7602783613a16565b91506146f28261468b565b604082019050919050565b60006020820190508181036000830152614716816146da565b9050919050565b7f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e3225600082015250565b6000614753602083613a16565b915061475e8261471d565b602082019050919050565b6000602082019050818103600083015261478281614746565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006147e5602683613a16565b91506147f082614789565b604082019050919050565b60006020820190508181036000830152614814816147d8565b9050919050565b7f546f74616c207472616e73666572206665652063616e6e6f742062652068696760008201527f686572207468616e203525000000000000000000000000000000000000000000602082015250565b6000614877602b83613a16565b91506148828261481b565b604082019050919050565b600060208201905081810360008301526148a68161486a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614909602483613a16565b9150614914826148ad565b604082019050919050565b60006020820190508181036000830152614938816148fc565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061499b602283613a16565b91506149a68261493f565b604082019050919050565b600060208201905081810360008301526149ca8161498e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614a2d602583613a16565b9150614a38826149d1565b604082019050919050565b60006020820190508181036000830152614a5c81614a20565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614abf602383613a16565b9150614aca82614a63565b604082019050919050565b60006020820190508181036000830152614aee81614ab2565b9050919050565b7f5f7472616e736665723a3a2054726164696e67206973206e6f7420616374697660008201527f652e000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b51602283613a16565b9150614b5c82614af5565b604082019050919050565b60006020820190508181036000830152614b8081614b44565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614c09604983613a16565b9150614c1482614b87565b606082019050919050565b60006020820190508181036000830152614c3881614bfc565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d617854782e0000000000000000000000000000000000000000000000000000602082015250565b6000614c9b602683613a16565b9150614ca682614c3f565b604082019050919050565b60006020820190508181036000830152614cca81614c8e565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614d07601383613a16565b9150614d1282614cd1565b602082019050919050565b60006020820190508181036000830152614d3681614cfa565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d617854782e00000000000000000000000000000000000000000000000000602082015250565b6000614d99602783613a16565b9150614da482614d3d565b604082019050919050565b60006020820190508181036000830152614dc881614d8c565b9050919050565b6000614dda82613b98565b9150614de583613b98565b9250828203905081811115614dfd57614dfc61419c565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614e5f602683613a16565b9150614e6a82614e03565b604082019050919050565b60006020820190508181036000830152614e8e81614e52565b9050919050565b600081905092915050565b50565b6000614eb0600083614e95565b9150614ebb82614ea0565b600082019050919050565b6000614ed182614ea3565b915081905091905056fea2646970667358221220ab23324d367e34e115cec1596953727c08ad090786e3da3901f4c4a66a24633764736f6c63430008150033

Deployed Bytecode

0x6080604052600436106102135760003560e01c806395d89b4111610118578063c37dcd0f116100a0578063f242ab411161006f578063f242ab4114610785578063f2fde38b146107b0578063f3dc3902146107d9578063f639d5341461080c578063fab82a8e146108355761021a565b8063c37dcd0f146106df578063d088935814610708578063dd62ed3e14610731578063e884f2601461076e5761021a565b8063a9059cbb116100e7578063a9059cbb146105e8578063aacebbe314610625578063b2d8f2081461064e578063bc33718214610677578063c0b1a6a8146106a05761021a565b806395d89b411461052e5780639fd8234e14610559578063a10fd7be14610582578063a457c2d7146105ab5761021a565b8063395093511161019b57806370a082311161016a57806370a082311461046f578063715018a6146104ac57806371927628146104c3578063751039fc146104ec5780638da5cb5b146105035761021a565b806339509351146103b15780634ada218b146103ee5780635af0e68f146104195780635d0044ca146104465761021a565b806323b872dd116101e257806323b872dd146102db578063293230b8146103185780632d99d32e1461032f578063313ce5671461035857806331f81511146103835761021a565b806306fdde031461021f578063072066841461024a578063095ea7b31461027357806318160ddd146102b05761021a565b3661021a57005b600080fd5b34801561022b57600080fd5b50610234610861565b6040516102419190613a9b565b60405180910390f35b34801561025657600080fd5b50610271600480360381019061026c9190613b58565b6108f3565b005b34801561027f57600080fd5b5061029a60048036038101906102959190613bce565b610a18565b6040516102a79190613c1d565b60405180910390f35b3480156102bc57600080fd5b506102c5610a36565b6040516102d29190613c47565b60405180910390f35b3480156102e757600080fd5b5061030260048036038101906102fd9190613c62565b610a40565b60405161030f9190613c1d565b60405180910390f35b34801561032457600080fd5b5061032d610b38565b005b34801561033b57600080fd5b5061035660048036038101906103519190613b58565b610c19565b005b34801561036457600080fd5b5061036d610d31565b60405161037a9190613cd1565b60405180910390f35b34801561038f57600080fd5b50610398610d3a565b6040516103a89493929190613cec565b60405180910390f35b3480156103bd57600080fd5b506103d860048036038101906103d39190613bce565b610d74565b6040516103e59190613c1d565b60405180910390f35b3480156103fa57600080fd5b50610403610e20565b6040516104109190613c1d565b60405180910390f35b34801561042557600080fd5b5061042e610e33565b60405161043d93929190613d31565b60405180910390f35b34801561045257600080fd5b5061046d60048036038101906104689190613d68565b610e59565b005b34801561047b57600080fd5b5061049660048036038101906104919190613d95565b610f7b565b6040516104a39190613c47565b60405180910390f35b3480156104b857600080fd5b506104c1610fc3565b005b3480156104cf57600080fd5b506104ea60048036038101906104e59190613d95565b61104b565b005b3480156104f857600080fd5b50610501611187565b005b34801561050f57600080fd5b5061051861124d565b6040516105259190613dd1565b60405180910390f35b34801561053a57600080fd5b50610543611277565b6040516105509190613a9b565b60405180910390f35b34801561056557600080fd5b50610580600480360381019061057b9190613dec565b611309565b005b34801561058e57600080fd5b506105a960048036038101906105a49190613d68565b611434565b005b3480156105b757600080fd5b506105d260048036038101906105cd9190613bce565b611757565b6040516105df9190613c1d565b60405180910390f35b3480156105f457600080fd5b5061060f600480360381019061060a9190613bce565b611842565b60405161061c9190613c1d565b60405180910390f35b34801561063157600080fd5b5061064c60048036038101906106479190613d95565b611860565b005b34801561065a57600080fd5b5061067560048036038101906106709190613dec565b61199c565b005b34801561068357600080fd5b5061069e60048036038101906106999190613d68565b611ac7565b005b3480156106ac57600080fd5b506106c760048036038101906106c29190613d95565b611be9565b6040516106d693929190613e2c565b60405180910390f35b3480156106eb57600080fd5b5061070660048036038101906107019190613b58565b611ce2565b005b34801561071457600080fd5b5061072f600480360381019061072a9190613e63565b611e07565b005b34801561073d57600080fd5b5061075860048036038101906107539190613eb6565b611f11565b6040516107659190613c47565b60405180910390f35b34801561077a57600080fd5b50610783611f98565b005b34801561079157600080fd5b5061079a61205e565b6040516107a79190613dd1565b60405180910390f35b3480156107bc57600080fd5b506107d760048036038101906107d29190613d95565b612082565b005b3480156107e557600080fd5b506107ee612179565b60405161080399989796959493929190613ef6565b60405180910390f35b34801561081857600080fd5b50610833600480360381019061082e9190613dec565b6121bf565b005b34801561084157600080fd5b5061084a6122ea565b604051610858929190613f83565b60405180910390f35b60606003805461087090613fdb565b80601f016020809104026020016040519081016040528092919081815260200182805461089c90613fdb565b80156108e95780601f106108be576101008083540402835291602001916108e9565b820191906000526020600020905b8154815290600101906020018083116108cc57829003601f168201915b5050505050905090565b6108fb61233b565b73ffffffffffffffffffffffffffffffffffffffff1661091961124d565b73ffffffffffffffffffffffffffffffffffffffff161461096f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096690614058565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9282604051610a0c9190613c1d565b60405180910390a25050565b6000610a2c610a2561233b565b8484612343565b6001905092915050565b6000600254905090565b6000610a4d84848461250c565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610a9861233b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0f906140ea565b60405180910390fd5b610b2c85610b2461233b565b858403612343565b60019150509392505050565b610b4061233b565b73ffffffffffffffffffffffffffffffffffffffff16610b5e61124d565b73ffffffffffffffffffffffffffffffffffffffff1614610bb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bab90614058565b60405180910390fd5b6001600c60006101000a81548160ff0219169083151502179055506001600560156101000a81548160ff021916908315150217905550427fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92360405160405180910390a2565b610c2161233b565b73ffffffffffffffffffffffffffffffffffffffff16610c3f61124d565b73ffffffffffffffffffffffffffffffffffffffff1614610c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8c90614058565b60405180910390fd5b7f000000000000000000000000755ea830d1d30f8e0bfc3dede3abae2c8f06394273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1a9061417c565b60405180910390fd5b610d2d82826131de565b5050565b60006012905090565b600080600080600860009054906101000a900460ff169350600860019054906101000a900460ff1692506009549150600a54905090919293565b6000610e16610d8161233b565b848460016000610d8f61233b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e1191906141cb565b612343565b6001905092915050565b600c60009054906101000a900460ff1681565b6000806000600560159054906101000a900460ff16925060065491506007549050909192565b610e6161233b565b73ffffffffffffffffffffffffffffffffffffffff16610e7f61124d565b73ffffffffffffffffffffffffffffffffffffffff1614610ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecc90614058565b60405180910390fd5b6005811015610f19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1090614271565b60405180910390fd5b6103e8610f24610a36565b82610f2f9190614291565b610f399190614302565b6009819055507f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace600954604051610f709190613c47565b60405180910390a150565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fcb61233b565b73ffffffffffffffffffffffffffffffffffffffff16610fe961124d565b73ffffffffffffffffffffffffffffffffffffffff161461103f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103690614058565b60405180910390fd5b611049600061327f565b565b61105361233b565b73ffffffffffffffffffffffffffffffffffffffff1661107161124d565b73ffffffffffffffffffffffffffffffffffffffff16146110c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110be90614058565b60405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fb91dbdeaf34f885ccae2d8abc3967cb03c079b6af2c7944e3893fd29427d75e760405160405180910390a380600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61118f61233b565b73ffffffffffffffffffffffffffffffffffffffff166111ad61124d565b73ffffffffffffffffffffffffffffffffffffffff1614611203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fa90614058565b60405180910390fd5b6000600860006101000a81548160ff021916908315150217905550427ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261660405160405180910390a2565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461128690613fdb565b80601f01602080910402602001604051908101604052809291908181526020018280546112b290613fdb565b80156112ff5780601f106112d4576101008083540402835291602001916112ff565b820191906000526020600020905b8154815290600101906020018083116112e257829003601f168201915b5050505050905090565b61131161233b565b73ffffffffffffffffffffffffffffffffffffffff1661132f61124d565b73ffffffffffffffffffffffffffffffffffffffff1614611385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137c90614058565b60405180910390fd5b81601281905550806013819055506013546012546113a391906141cb565b601181905550601960115411156113ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e6906143a5565b60405180910390fd5b7fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f1601154601254601354604051611428939291906143c5565b60405180910390a15050565b61143c61233b565b73ffffffffffffffffffffffffffffffffffffffff1661145a61124d565b73ffffffffffffffffffffffffffffffffffffffff16146114b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a790614058565b60405180910390fd5b60006114bb30610f7b565b90506000606483036114cf578190506114f6565b606483836114dd9190614291565b6114e79190614302565b9050818111156114f5578190505b5b6000600267ffffffffffffffff811115611513576115126143fc565b5b6040519080825280602002602001820160405280156115415781602001602082028036833780820191505090505b50905030816000815181106115595761155861442b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115fe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611622919061446f565b816001815181106116365761163561442b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061169b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612343565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac94783600084600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b815260040161171f95949392919061459f565b600060405180830381600087803b15801561173957600080fd5b505af115801561174d573d6000803e3d6000fd5b5050505050505050565b6000806001600061176661233b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611823576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181a9061466b565b60405180910390fd5b61183761182e61233b565b85858403612343565b600191505092915050565b600061185661184f61233b565b848461250c565b6001905092915050565b61186861233b565b73ffffffffffffffffffffffffffffffffffffffff1661188661124d565b73ffffffffffffffffffffffffffffffffffffffff16146118dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d390614058565b60405180910390fd5b600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6760405160405180910390a380600c60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6119a461233b565b73ffffffffffffffffffffffffffffffffffffffff166119c261124d565b73ffffffffffffffffffffffffffffffffffffffff1614611a18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0f90614058565b60405180910390fd5b81600f8190555080601081905550601054600f54611a3691906141cb565b600e819055506019600e541115611a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a79906146fd565b60405180910390fd5b7f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e600e54600f54601054604051611abb939291906143c5565b60405180910390a15050565b611acf61233b565b73ffffffffffffffffffffffffffffffffffffffff16611aed61124d565b73ffffffffffffffffffffffffffffffffffffffff1614611b43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3a90614058565b60405180910390fd5b6002811015611b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7e90614769565b60405180910390fd5b6103e8611b92610a36565b82611b9d9190614291565b611ba79190614302565b600a819055507fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a600a54604051611bde9190613c47565b60405180910390a150565b6000806000601960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169250601a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169150601b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690509193909250565b611cea61233b565b73ffffffffffffffffffffffffffffffffffffffff16611d0861124d565b73ffffffffffffffffffffffffffffffffffffffff1614611d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5590614058565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611dfb9190613c1d565b60405180910390a25050565b611e0f61233b565b73ffffffffffffffffffffffffffffffffffffffff16611e2d61124d565b73ffffffffffffffffffffffffffffffffffffffff1614611e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7a90614058565b60405180910390fd5b82600560156101000a81548160ff021916908315150217905550670de0b6b3a764000082611eb19190614291565b600681905550670de0b6b3a764000081611ecb9190614291565b6007819055507f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c779838383604051611f0493929190613d31565b60405180910390a1505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611fa061233b565b73ffffffffffffffffffffffffffffffffffffffff16611fbe61124d565b73ffffffffffffffffffffffffffffffffffffffff1614612014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200b90614058565b60405180910390fd5b6000600860016101000a81548160ff021916908315150217905550427f26e776fcf7ca20aa79b5b946e9b5111f47205539ece9d7a7995271dd6a8b5bad60405160405180910390a2565b7f000000000000000000000000755ea830d1d30f8e0bfc3dede3abae2c8f06394281565b61208a61233b565b73ffffffffffffffffffffffffffffffffffffffff166120a861124d565b73ffffffffffffffffffffffffffffffffffffffff16146120fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f590614058565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361216d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612164906147fb565b60405180910390fd5b6121768161327f565b50565b6000806000806000806000806000600e549850600f5497506010549650601154955060125494506013549350601454925060155491506016549050909192939495969798565b6121c761233b565b73ffffffffffffffffffffffffffffffffffffffff166121e561124d565b73ffffffffffffffffffffffffffffffffffffffff161461223b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223290614058565b60405180910390fd5b816015819055508060168190555060165460155461225991906141cb565b601481905550600560145411156122a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229c9061488d565b60405180910390fd5b7fca0d25e555e4d075eb2e507cf72ddfc215f6fb47b9d21a259dc9df5759c7e8576014546015546016546040516122de939291906143c5565b60405180910390a15050565b600080600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16915091509091565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036123b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a99061491f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612421576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612418906149b1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516124ff9190613c47565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361257b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257290614a43565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036125ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e190614ad5565b60405180910390fd5b60008103612603576125fe83836000613345565b6131d9565b600860009054906101000a900460ff1615612cc65761262061124d565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561268e575061265e61124d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126c75750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612701575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561271a5750600560149054906101000a900460ff16155b15612cc557600c60009054906101000a900460ff1661281457601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806127d45750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280a90614b67565b60405180910390fd5b5b600860019054906101000a900460ff16156129dc5761283161124d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156128b857507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561291057507f000000000000000000000000755ea830d1d30f8e0bfc3dede3abae2c8f06394273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156129db5743600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612996576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298d90614c1f565b60405180910390fd5b43600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a7f5750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b2657600a54811115612ac9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac090614cb1565b60405180910390fd5b600954612ad583610f7b565b82612ae091906141cb565b1115612b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1890614d1d565b60405180910390fd5b612cc4565b601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612bc95750601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c1857600a54811115612c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0a90614daf565b60405180910390fd5b612cc3565b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612cc257600954612c7583610f7b565b82612c8091906141cb565b1115612cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb890614d1d565b60405180910390fd5b5b5b5b5b5b6000612cd130610f7b565b905060006006548210159050808015612cf65750600560159054906101000a900460ff165b8015612d0f5750600560149054906101000a900460ff16155b8015612d655750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612dbb5750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612e115750601960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612e55576001600560146101000a81548160ff021916908315150217905550612e396135c4565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612f0b5750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612f1557600090505b600081156131c957601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f7857506000601154115b1561301257612fa56064612f976011548861378290919063ffffffff16565b61379890919063ffffffff16565b905060115460135482612fb89190614291565b612fc29190614302565b60186000828254612fd391906141cb565b9250508190555060115460125482612feb9190614291565b612ff59190614302565b6017600082825461300691906141cb565b925050819055506131a5565b601b60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561306d57506000600e54115b156131075761309a606461308c600e548861378290919063ffffffff16565b61379890919063ffffffff16565b9050600e54601054826130ad9190614291565b6130b79190614302565b601860008282546130c891906141cb565b92505081905550600e54600f54826130e09190614291565b6130ea9190614302565b601760008282546130fb91906141cb565b925050819055506131a4565b600060145411156131a35761313a606461312c6014548861378290919063ffffffff16565b61379890919063ffffffff16565b90506014546016548261314d9190614291565b6131579190614302565b6018600082825461316891906141cb565b92505081905550601454601554826131809190614291565b61318a9190614302565b6017600082825461319b91906141cb565b925050819055505b5b5b60008111156131ba576131b9873083613345565b5b80856131c69190614dcf565b94505b6131d4878787613345565b505050505b505050565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036133b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133ab90614a43565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613423576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161341a90614ad5565b60405180910390fd5b61342e8383836137ae565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156134b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134ab90614e75565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461354791906141cb565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516135ab9190613c47565b60405180910390a36135be8484846137b3565b50505050565b60006135cf30610f7b565b9050600081905060008083036135e757505050613780565b6007548311156135f75760075492505b6000839050600047905061360a826137b8565b600061361f82476139f590919063ffffffff16565b9050600061364a8661363c6018548561378290919063ffffffff16565b61379890919063ffffffff16565b905060006017819055506000601881905550600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16816040516136a290614ec6565b60006040518083038185875af1925050503d80600081146136df576040519150601f19603f3d011682016040523d82523d6000602084013e6136e4565b606091505b505080955050600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161373090614ec6565b60006040518083038185875af1925050503d806000811461376d576040519150601f19603f3d011682016040523d82523d6000602084013e613772565b606091505b505080955050505050505050505b565b600081836137909190614291565b905092915050565b600081836137a69190614302565b905092915050565b505050565b505050565b6000600267ffffffffffffffff8111156137d5576137d46143fc565b5b6040519080825280602002602001820160405280156138035781602001602082028036833780820191505090505b509050308160008151811061381b5761381a61442b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156138c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138e4919061446f565b816001815181106138f8576138f761442b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061395d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612343565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016139bf95949392919061459f565b600060405180830381600087803b1580156139d957600080fd5b505af11580156139ed573d6000803e3d6000fd5b505050505050565b60008183613a039190614dcf565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613a45578082015181840152602081019050613a2a565b60008484015250505050565b6000601f19601f8301169050919050565b6000613a6d82613a0b565b613a778185613a16565b9350613a87818560208601613a27565b613a9081613a51565b840191505092915050565b60006020820190508181036000830152613ab58184613a62565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613aed82613ac2565b9050919050565b613afd81613ae2565b8114613b0857600080fd5b50565b600081359050613b1a81613af4565b92915050565b60008115159050919050565b613b3581613b20565b8114613b4057600080fd5b50565b600081359050613b5281613b2c565b92915050565b60008060408385031215613b6f57613b6e613abd565b5b6000613b7d85828601613b0b565b9250506020613b8e85828601613b43565b9150509250929050565b6000819050919050565b613bab81613b98565b8114613bb657600080fd5b50565b600081359050613bc881613ba2565b92915050565b60008060408385031215613be557613be4613abd565b5b6000613bf385828601613b0b565b9250506020613c0485828601613bb9565b9150509250929050565b613c1781613b20565b82525050565b6000602082019050613c326000830184613c0e565b92915050565b613c4181613b98565b82525050565b6000602082019050613c5c6000830184613c38565b92915050565b600080600060608486031215613c7b57613c7a613abd565b5b6000613c8986828701613b0b565b9350506020613c9a86828701613b0b565b9250506040613cab86828701613bb9565b9150509250925092565b600060ff82169050919050565b613ccb81613cb5565b82525050565b6000602082019050613ce66000830184613cc2565b92915050565b6000608082019050613d016000830187613c0e565b613d0e6020830186613c0e565b613d1b6040830185613c38565b613d286060830184613c38565b95945050505050565b6000606082019050613d466000830186613c0e565b613d536020830185613c38565b613d606040830184613c38565b949350505050565b600060208284031215613d7e57613d7d613abd565b5b6000613d8c84828501613bb9565b91505092915050565b600060208284031215613dab57613daa613abd565b5b6000613db984828501613b0b565b91505092915050565b613dcb81613ae2565b82525050565b6000602082019050613de66000830184613dc2565b92915050565b60008060408385031215613e0357613e02613abd565b5b6000613e1185828601613bb9565b9250506020613e2285828601613bb9565b9150509250929050565b6000606082019050613e416000830186613c0e565b613e4e6020830185613c0e565b613e5b6040830184613c0e565b949350505050565b600080600060608486031215613e7c57613e7b613abd565b5b6000613e8a86828701613b43565b9350506020613e9b86828701613bb9565b9250506040613eac86828701613bb9565b9150509250925092565b60008060408385031215613ecd57613ecc613abd565b5b6000613edb85828601613b0b565b9250506020613eec85828601613b0b565b9150509250929050565b600061012082019050613f0c600083018c613c38565b613f19602083018b613c38565b613f26604083018a613c38565b613f336060830189613c38565b613f406080830188613c38565b613f4d60a0830187613c38565b613f5a60c0830186613c38565b613f6760e0830185613c38565b613f75610100830184613c38565b9a9950505050505050505050565b6000604082019050613f986000830185613dc2565b613fa56020830184613dc2565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613ff357607f821691505b60208210810361400657614005613fac565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614042602083613a16565b915061404d8261400c565b602082019050919050565b6000602082019050818103600083015261407181614035565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006140d4602883613a16565b91506140df82614078565b604082019050919050565b60006020820190508181036000830152614103816140c7565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614166603983613a16565b91506141718261410a565b604082019050919050565b6000602082019050818103600083015261419581614159565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006141d682613b98565b91506141e183613b98565b92508282019050808211156141f9576141f861419c565b5b92915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061425b602483613a16565b9150614266826141ff565b604082019050919050565b6000602082019050818103600083015261428a8161424e565b9050919050565b600061429c82613b98565b91506142a783613b98565b92508282026142b581613b98565b915082820484148315176142cc576142cb61419c565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061430d82613b98565b915061431883613b98565b925082614328576143276142d3565b5b828204905092915050565b7f546f74616c2073656c6c206665652063616e6e6f74206265206869676865722060008201527f7468616e20323525000000000000000000000000000000000000000000000000602082015250565b600061438f602883613a16565b915061439a82614333565b604082019050919050565b600060208201905081810360008301526143be81614382565b9050919050565b60006060820190506143da6000830186613c38565b6143e76020830185613c38565b6143f46040830184613c38565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061446981613af4565b92915050565b60006020828403121561448557614484613abd565b5b60006144938482850161445a565b91505092915050565b6000819050919050565b6000819050919050565b60006144cb6144c66144c18461449c565b6144a6565b613b98565b9050919050565b6144db816144b0565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61451681613ae2565b82525050565b6000614528838361450d565b60208301905092915050565b6000602082019050919050565b600061454c826144e1565b61455681856144ec565b9350614561836144fd565b8060005b83811015614592578151614579888261451c565b975061458483614534565b925050600181019050614565565b5085935050505092915050565b600060a0820190506145b46000830188613c38565b6145c160208301876144d2565b81810360408301526145d38186614541565b90506145e26060830185613dc2565b6145ef6080830184613c38565b9695505050505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614655602583613a16565b9150614660826145f9565b604082019050919050565b6000602082019050818103600083015261468481614648565b9050919050565b7f546f74616c20627579206665652063616e6e6f7420626520686967686572207460008201527f68616e2032352500000000000000000000000000000000000000000000000000602082015250565b60006146e7602783613a16565b91506146f28261468b565b604082019050919050565b60006020820190508181036000830152614716816146da565b9050919050565b7f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e3225600082015250565b6000614753602083613a16565b915061475e8261471d565b602082019050919050565b6000602082019050818103600083015261478281614746565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006147e5602683613a16565b91506147f082614789565b604082019050919050565b60006020820190508181036000830152614814816147d8565b9050919050565b7f546f74616c207472616e73666572206665652063616e6e6f742062652068696760008201527f686572207468616e203525000000000000000000000000000000000000000000602082015250565b6000614877602b83613a16565b91506148828261481b565b604082019050919050565b600060208201905081810360008301526148a68161486a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614909602483613a16565b9150614914826148ad565b604082019050919050565b60006020820190508181036000830152614938816148fc565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061499b602283613a16565b91506149a68261493f565b604082019050919050565b600060208201905081810360008301526149ca8161498e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614a2d602583613a16565b9150614a38826149d1565b604082019050919050565b60006020820190508181036000830152614a5c81614a20565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614abf602383613a16565b9150614aca82614a63565b604082019050919050565b60006020820190508181036000830152614aee81614ab2565b9050919050565b7f5f7472616e736665723a3a2054726164696e67206973206e6f7420616374697660008201527f652e000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b51602283613a16565b9150614b5c82614af5565b604082019050919050565b60006020820190508181036000830152614b8081614b44565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614c09604983613a16565b9150614c1482614b87565b606082019050919050565b60006020820190508181036000830152614c3881614bfc565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d617854782e0000000000000000000000000000000000000000000000000000602082015250565b6000614c9b602683613a16565b9150614ca682614c3f565b604082019050919050565b60006020820190508181036000830152614cca81614c8e565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614d07601383613a16565b9150614d1282614cd1565b602082019050919050565b60006020820190508181036000830152614d3681614cfa565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d617854782e00000000000000000000000000000000000000000000000000602082015250565b6000614d99602783613a16565b9150614da482614d3d565b604082019050919050565b60006020820190508181036000830152614dc881614d8c565b9050919050565b6000614dda82613b98565b9150614de583613b98565b9250828203905081811115614dfd57614dfc61419c565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614e5f602683613a16565b9150614e6a82614e03565b604082019050919050565b60006020820190508181036000830152614e8e81614e52565b9050919050565b600081905092915050565b50565b6000614eb0600083614e95565b9150614ebb82614ea0565b600082019050919050565b6000614ed182614ea3565b915081905091905056fea2646970667358221220ab23324d367e34e115cec1596953727c08ad090786e3da3901f4c4a66a24633764736f6c63430008150033

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.