ETH Price: $2,416.32 (-0.20%)

Token

Full Send Coin (END)
 

Overview

Max Total Supply

1,000,000,000 END

Holders

94

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.442438454745403547 END

Value
$0.00
0x0230038CFb4fC403601DEeCeF804bd56375448a9
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:
FullSendCoin

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 10 : FullSendCoin.sol
// SPDX-License-Identifier: UNLICENSED

/*

-------------------------------------
   _                     
 _| |_ _____ _____ ____  
|   __|   __|   | |    \ 
|__   |   __| | | |  |  |
|_   _|_____|_|___|____/ 
  |_|                    
-------------------------------------

Twitter  -  https://x.com/FullSendCoinEth
Telegram -  https://t.me/FullSendCoinETH
Website  -  https://fullsendcoin.xyz                                                    
                                                               
*/                  


pragma solidity 0.8.20;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";
import "./SafeMath.sol";



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

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    bool private swapping;

    address private marketingWallet;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;

    uint256 private launchedAt;
    uint256 private launchedTime;
    uint256 public deadBlocks;

    uint256 public buyTotalFees;
    uint256 private buyMarketingFee;

    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;

    mapping(address => bool) private _isExcludedFromFees;
    mapping(uint256 => uint256) private swapInBlock;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;

    mapping(address => bool) public automatedMarketMakerPairs;

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

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

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

    
    constructor() ERC20("Full Send Coin", "END") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 totalSupply = 1_000_000_000 * 1e18;


        maxTransactionAmount = 1_000_000_000 * 1e18;
        maxWallet = 1_000_000_000 * 1e18;
        swapTokensAtAmount = maxTransactionAmount / 2000;


        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    function enableTrading(uint256 _deadBlocks) external onlyOwner {
        deadBlocks = _deadBlocks;
        tradingActive = true;
        swapEnabled = true;
        launchedAt = block.number;
        launchedTime = block.timestamp;
    }

    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.1%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNum * (10**18);
    }

    function whitelistContract(address _whitelist,bool isWL)
    public
    onlyOwner
    {
      _isExcludedMaxTransactionAmount[_whitelist] = isWL;

      _isExcludedFromFees[_whitelist] = isWL;

    }

    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function manualswap(uint256 amount) external {
      require(_msgSender() == marketingWallet);
        require(amount <= balanceOf(address(this)) && amount > 0, "Wrong amount");
        swapTokensForEth(amount);
    }

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

        function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateBuyFees(
        uint256 _marketingFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyTotalFees = buyMarketingFee;
        require(buyTotalFees <= 10, "Must keep fees at 5% or less");
    }

    function updateSellFees(
        uint256 _marketingFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellTotalFees = sellMarketingFee;
        require(sellTotalFees <= 10, "Must keep fees at 5% or less");
    }

    function updateMarketingWallet(address newMarketingWallet)
        external
        onlyOwner
    {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }

    function airdrop(address[] calldata addresses, uint256[] calldata amounts) external {
          require(addresses.length > 0 && amounts.length == addresses.length);
          address from = msg.sender;

          for (uint i = 0; i < addresses.length; i++) {

            _transfer(from, addresses[i], amounts[i] * (10**18));

          }
    }

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

        uint256 blockNum = block.number;

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if ((launchedAt + deadBlocks) >= blockNum) {
                    buyMarketingFee = 99;
                    buyTotalFees = buyMarketingFee;

                    sellMarketingFee = 99;
                    sellTotalFees = sellMarketingFee;
                } 
                else if (blockNum > (launchedAt + deadBlocks) && blockNum <= (launchedAt + 20)) {
                    maxTransactionAmount = 20_000_000 * 1e18;
                    maxWallet = 20_000_000 * 1e18;

                    buyMarketingFee = 30;
                    buyTotalFees = buyMarketingFee;

                    sellMarketingFee = 30;
                    sellTotalFees = sellMarketingFee;
                }
                else {
                    maxTransactionAmount = 20_000_000 * 1e18;
                    maxWallet = 20_000_000 * 1e18;

                    buyMarketingFee = 0;
                    buyTotalFees = buyMarketingFee;

                    sellMarketingFee = 0;
                    sellTotalFees = sellMarketingFee;
                }
            }


            if (!tradingActive) {
                require(
                    _isExcludedFromFees[from] || _isExcludedFromFees[to],
                    "Trading is not active."
                );
            }

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if(
            canSwap &&
            swapEnabled &&
            !swapping &&
            (swapInBlock[blockNum] < 2) &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            ++swapInBlock[blockNum];

            swapping = false;
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[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] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
            }

            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] = uniswapV2Router.WETH();

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

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


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

        if (contractBalance == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }


        uint256 amountToSwapForETH = contractBalance;

        swapTokensForEth(amountToSwapForETH);

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

    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    modifier lockSwapping() {
        swapping = true;
        _;
        swapping = false;
    }

    function fixClog() public onlyOwner lockSwapping {
        swapTokensForEth(balanceOf(address(this)));
        bool success;
        (success, ) = address(marketingWallet).call{
            value: address(this).balance
        }("");
    }

}

File 2 of 10 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

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

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

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

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

File 3 of 10 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

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

File 4 of 10 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 5 of 10 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 6 of 10 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 7 of 10 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

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

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

File 8 of 10 : IUniswapV2Router01.sol
pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

File 9 of 10 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

File 10 of 10 : SafeMath.sol
library SafeMath {

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

    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

Settings
{
  "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":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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","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"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadBlocks","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":[{"internalType":"uint256","name":"_deadBlocks","type":"uint256"}],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fixClog","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualsend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"manualswap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_whitelist","type":"address"},{"internalType":"bool","name":"isWL","type":"bool"}],"name":"whitelistContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600a5f6101000a81548160ff0219169083151502179055505f600a60016101000a81548160ff0219169083151502179055505f600a60026101000a81548160ff0219169083151502179055503480156200005e575f80fd5b506040518060400160405280600e81526020017f46756c6c2053656e6420436f696e0000000000000000000000000000000000008152506040518060400160405280600381526020017f454e4400000000000000000000000000000000000000000000000000000000008152508160039081620000dc919062000b3b565b508060049081620000ee919062000b3b565b50505062000111620001056200042760201b60201c565b6200042e60201b60201c565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d90506200013c816001620004f160201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ba573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001e0919062000c84565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000246573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200026c919062000c84565b6040518363ffffffff1660e01b81526004016200028b92919062000cc5565b6020604051808303815f875af1158015620002a8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002ce919062000c84565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200031660a0516001620004f160201b60201c565b6200032b60a05160016200055960201b60201c565b5f6b033b2e3c9fd0803ce800000090506b033b2e3c9fd0803ce80000006007819055506b033b2e3c9fd0803ce80000006009819055506107d060075462000373919062000d4a565b6008819055506200039b6200038d620005f760201b60201c565b60016200061f60201b60201c565b620003ae3060016200061f60201b60201c565b620003c361dead60016200061f60201b60201c565b620003e5620003d7620005f760201b60201c565b6001620004f160201b60201c565b620003f8306001620004f160201b60201c565b6200040d61dead6001620004f160201b60201c565b6200041f3382620006d760201b60201c565b505062000f0a565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620005016200083c60201b60201c565b8060145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b8060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200062f6200083c60201b60201c565b8060125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620006cb919062000d9d565b60405180910390a25050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000748576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200073f9062000e16565b60405180910390fd5b6200075b5f8383620008cd60201b60201c565b8060025f8282546200076e919062000e36565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200081d919062000e81565b60405180910390a3620008385f8383620008d260201b60201c565b5050565b6200084c6200042760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000872620005f760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008cb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008c29062000eea565b60405180910390fd5b565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200095357607f821691505b6020821081036200096957620009686200090e565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620009cd7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000990565b620009d9868362000990565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000a2362000a1d62000a1784620009f1565b620009fa565b620009f1565b9050919050565b5f819050919050565b62000a3e8362000a03565b62000a5662000a4d8262000a2a565b8484546200099c565b825550505050565b5f90565b62000a6c62000a5e565b62000a7981848462000a33565b505050565b5b8181101562000aa05762000a945f8262000a62565b60018101905062000a7f565b5050565b601f82111562000aef5762000ab9816200096f565b62000ac48462000981565b8101602085101562000ad4578190505b62000aec62000ae38562000981565b83018262000a7e565b50505b505050565b5f82821c905092915050565b5f62000b115f198460080262000af4565b1980831691505092915050565b5f62000b2b838362000b00565b9150826002028217905092915050565b62000b4682620008d7565b67ffffffffffffffff81111562000b625762000b61620008e1565b5b62000b6e82546200093b565b62000b7b82828562000aa4565b5f60209050601f83116001811462000bb1575f841562000b9c578287015190505b62000ba8858262000b1e565b86555062000c17565b601f19841662000bc1866200096f565b5f5b8281101562000bea5784890151825560018201915060208501945060208101905062000bc3565b8683101562000c0a578489015162000c06601f89168262000b00565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000c4e8262000c23565b9050919050565b62000c608162000c42565b811462000c6b575f80fd5b50565b5f8151905062000c7e8162000c55565b92915050565b5f6020828403121562000c9c5762000c9b62000c1f565b5b5f62000cab8482850162000c6e565b91505092915050565b62000cbf8162000c42565b82525050565b5f60408201905062000cda5f83018562000cb4565b62000ce9602083018462000cb4565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000d5682620009f1565b915062000d6383620009f1565b92508262000d765762000d7562000cf0565b5b828204905092915050565b5f8115159050919050565b62000d978162000d81565b82525050565b5f60208201905062000db25f83018462000d8c565b92915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000dfe601f8362000db8565b915062000e0b8262000dc8565b602082019050919050565b5f6020820190508181035f83015262000e2f8162000df0565b9050919050565b5f62000e4282620009f1565b915062000e4f83620009f1565b925082820190508082111562000e6a5762000e6962000d1d565b5b92915050565b62000e7b81620009f1565b82525050565b5f60208201905062000e965f83018462000e70565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f62000ed260208362000db8565b915062000edf8262000e9c565b602082019050919050565b5f6020820190508181035f83015262000f038162000ec4565b9050919050565b60805160a0516140ef62000f485f395f8181610c7e015261122401525f8181610b440152818161278701528181612866015261288d01526140ef5ff3fe608060405260043610610280575f3560e01c8063881dce601161014e578063bbc0c742116100c0578063dd62ed3e11610079578063dd62ed3e14610969578063e2f45605146109a5578063eba4c333146109cf578063f2fde38b146109f7578063f8b45b0514610a1f578063fabb0b4f14610a4957610287565b8063bbc0c7421461085f578063c024666814610889578063c18bc195146108b1578063c8c8ebe4146108d9578063d257b34f14610903578063d85ba0631461093f57610287565b80639a7a23d6116101125780639a7a23d614610733578063a457c2d71461075b578063a672990c14610797578063a9059cbb146107bf578063aacebbe3146107fb578063b62496f51461082357610287565b8063881dce60146106655780638da5cb5b1461068d57806392136913146106b7578063924de9b7146106e157806395d89b411461070957610287565b80634a62bb65116101f2578063715018a6116101ab578063715018a61461059757806371fc4688146105ad578063751039fc146105d55780637571336a146105ff5780637f73f70b1461062757806382aa7c681461063d57610287565b80634a62bb651461049f57806367243482146104c95780636a486a8e146104f15780636ddd17131461051b5780636fc3eaec1461054557806370a082311461055b57610287565b8063203e727e11610244578063203e727e1461038157806323b872dd146103a957806327c8f835146103e5578063313ce5671461040f578063395093511461043957806349bd5a5e1461047557610287565b806306fdde031461028b578063095ea7b3146102b557806310d5de53146102f15780631694505e1461032d57806318160ddd1461035757610287565b3661028757005b5f80fd5b348015610296575f80fd5b5061029f610a73565b6040516102ac9190612dc5565b60405180910390f35b3480156102c0575f80fd5b506102db60048036038101906102d69190612e7a565b610b03565b6040516102e89190612ed2565b60405180910390f35b3480156102fc575f80fd5b5061031760048036038101906103129190612eeb565b610b25565b6040516103249190612ed2565b60405180910390f35b348015610338575f80fd5b50610341610b42565b60405161034e9190612f71565b60405180910390f35b348015610362575f80fd5b5061036b610b66565b6040516103789190612f99565b60405180910390f35b34801561038c575f80fd5b506103a760048036038101906103a29190612fb2565b610b6f565b005b3480156103b4575f80fd5b506103cf60048036038101906103ca9190612fdd565b610c0a565b6040516103dc9190612ed2565b60405180910390f35b3480156103f0575f80fd5b506103f9610c38565b604051610406919061303c565b60405180910390f35b34801561041a575f80fd5b50610423610c3e565b6040516104309190613070565b60405180910390f35b348015610444575f80fd5b5061045f600480360381019061045a9190612e7a565b610c46565b60405161046c9190612ed2565b60405180910390f35b348015610480575f80fd5b50610489610c7c565b604051610496919061303c565b60405180910390f35b3480156104aa575f80fd5b506104b3610ca0565b6040516104c09190612ed2565b60405180910390f35b3480156104d4575f80fd5b506104ef60048036038101906104ea919061313f565b610cb2565b005b3480156104fc575f80fd5b50610505610d5b565b6040516105129190612f99565b60405180910390f35b348015610526575f80fd5b5061052f610d61565b60405161053c9190612ed2565b60405180910390f35b348015610550575f80fd5b50610559610d74565b005b348015610566575f80fd5b50610581600480360381019061057c9190612eeb565b610e02565b60405161058e9190612f99565b60405180910390f35b3480156105a2575f80fd5b506105ab610e47565b005b3480156105b8575f80fd5b506105d360048036038101906105ce9190612fb2565b610e5a565b005b3480156105e0575f80fd5b506105e9610ebb565b6040516105f69190612ed2565b60405180910390f35b34801561060a575f80fd5b50610625600480360381019061062091906131e7565b610ee4565b005b348015610632575f80fd5b5061063b610f44565b005b348015610648575f80fd5b50610663600480360381019061065e9190612fb2565b611020565b005b348015610670575f80fd5b5061068b60048036038101906106869190612fb2565b611076565b005b348015610698575f80fd5b506106a1611137565b6040516106ae919061303c565b60405180910390f35b3480156106c2575f80fd5b506106cb61115f565b6040516106d89190612f99565b60405180910390f35b3480156106ec575f80fd5b5061070760048036038101906107029190613225565b611165565b005b348015610714575f80fd5b5061071d61118a565b60405161072a9190612dc5565b60405180910390f35b34801561073e575f80fd5b50610759600480360381019061075491906131e7565b61121a565b005b348015610766575f80fd5b50610781600480360381019061077c9190612e7a565b6112be565b60405161078e9190612ed2565b60405180910390f35b3480156107a2575f80fd5b506107bd60048036038101906107b891906131e7565b611333565b005b3480156107ca575f80fd5b506107e560048036038101906107e09190612e7a565b6113e7565b6040516107f29190612ed2565b60405180910390f35b348015610806575f80fd5b50610821600480360381019061081c9190612eeb565b611409565b005b34801561082e575f80fd5b5061084960048036038101906108449190612eeb565b6114cf565b6040516108569190612ed2565b60405180910390f35b34801561086a575f80fd5b506108736114ec565b6040516108809190612ed2565b60405180910390f35b348015610894575f80fd5b506108af60048036038101906108aa91906131e7565b6114ff565b005b3480156108bc575f80fd5b506108d760048036038101906108d29190612fb2565b6115ad565b005b3480156108e4575f80fd5b506108ed611648565b6040516108fa9190612f99565b60405180910390f35b34801561090e575f80fd5b5061092960048036038101906109249190612fb2565b61164e565b6040516109369190612ed2565b60405180910390f35b34801561094a575f80fd5b5061095361172e565b6040516109609190612f99565b60405180910390f35b348015610974575f80fd5b5061098f600480360381019061098a9190613250565b611734565b60405161099c9190612f99565b60405180910390f35b3480156109b0575f80fd5b506109b96117b6565b6040516109c69190612f99565b60405180910390f35b3480156109da575f80fd5b506109f560048036038101906109f09190612fb2565b6117bc565b005b348015610a02575f80fd5b50610a1d6004803603810190610a189190612eeb565b61181d565b005b348015610a2a575f80fd5b50610a3361189f565b604051610a409190612f99565b60405180910390f35b348015610a54575f80fd5b50610a5d6118a5565b604051610a6a9190612f99565b60405180910390f35b606060038054610a82906132bb565b80601f0160208091040260200160405190810160405280929190818152602001828054610aae906132bb565b8015610af95780601f10610ad057610100808354040283529160200191610af9565b820191905f5260205f20905b815481529060010190602001808311610adc57829003601f168201915b5050505050905090565b5f80610b0d6118ab565b9050610b1a8185856118b2565b600191505092915050565b6014602052805f5260405f205f915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f600254905090565b610b77611a75565b670de0b6b3a76400006103e86001610b8d610b66565b610b979190613318565b610ba19190613386565b610bab9190613386565b811015610bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be490613426565b60405180910390fd5b670de0b6b3a764000081610c019190613318565b60078190555050565b5f80610c146118ab565b9050610c21858285611af3565b610c2c858585611b7e565b60019150509392505050565b61dead81565b5f6012905090565b5f80610c506118ab565b9050610c71818585610c628589611734565b610c6c9190613444565b6118b2565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600a5f9054906101000a900460ff1681565b5f84849050118015610cc957508383905082829050145b610cd1575f80fd5b5f3390505f5b85859050811015610d5357610d4082878784818110610cf957610cf8613477565b5b9050602002016020810190610d0e9190612eeb565b670de0b6b3a7640000878786818110610d2a57610d29613477565b5b90506020020135610d3b9190613318565b611b7e565b8080610d4b906134a4565b915050610cd7565b505050505050565b60105481565b600a60029054906101000a900460ff1681565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610dba90613518565b5f6040518083038185875af1925050503d805f8114610df4576040519150601f19603f3d011682016040523d82523d5f602084013e610df9565b606091505b50508091505050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610e4f611a75565b610e585f612627565b565b610e62611a75565b80600f81905550600f54600e81905550600a600e541115610eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaf90613576565b60405180910390fd5b50565b5f610ec4611a75565b5f600a5f6101000a81548160ff0219169083151502179055506001905090565b610eec611a75565b8060145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b610f4c611a75565b6001600560146101000a81548160ff021916908315150217905550610f78610f7330610e02565b6126ea565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610fbe90613518565b5f6040518083038185875af1925050503d805f8114610ff8576040519150601f19603f3d011682016040523d82523d5f602084013e610ffd565b606091505b505080915050505f600560146101000a81548160ff021916908315150217905550565b611028611a75565b80600d819055506001600a60016101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff02191690831515021790555043600b8190555042600c8190555050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166110b66118ab565b73ffffffffffffffffffffffffffffffffffffffff16146110d5575f80fd5b6110de30610e02565b81111580156110ec57505f81115b61112b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611122906135de565b60405180910390fd5b611134816126ea565b50565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b61116d611a75565b80600a60026101000a81548160ff02191690831515021790555050565b606060048054611199906132bb565b80601f01602080910402602001604051908101604052809291908181526020018280546111c5906132bb565b80156112105780601f106111e757610100808354040283529160200191611210565b820191905f5260205f20905b8154815290600101906020018083116111f357829003601f168201915b5050505050905090565b611222611a75565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a79061366c565b60405180910390fd5b6112ba828261291d565b5050565b5f806112c86118ab565b90505f6112d58286611734565b90508381101561131a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611311906136fa565b60405180910390fd5b61132782868684036118b2565b60019250505092915050565b61133b611a75565b8060145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508060125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f806113f16118ab565b90506113fe818585611b7e565b600191505092915050565b611411611a75565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a38060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6015602052805f5260405f205f915054906101000a900460ff1681565b600a60019054906101000a900460ff1681565b611507611a75565b8060125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516115a19190612ed2565b60405180910390a25050565b6115b5611a75565b670de0b6b3a76400006103e860056115cb610b66565b6115d59190613318565b6115df9190613386565b6115e99190613386565b81101561162b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162290613788565b60405180910390fd5b670de0b6b3a76400008161163f9190613318565b60098190555050565b60075481565b5f611657611a75565b620186a06001611665610b66565b61166f9190613318565b6116799190613386565b8210156116bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b290613816565b60405180910390fd5b6103e860056116c8610b66565b6116d29190613318565b6116dc9190613386565b82111561171e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611715906138a4565b60405180910390fd5b8160088190555060019050919050565b600e5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60085481565b6117c4611a75565b80601181905550601154601081905550600a601054111561181a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181190613576565b60405180910390fd5b50565b611825611a75565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611893576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188a90613932565b60405180910390fd5b61189c81612627565b50565b60095481565b600d5481565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611920576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611917906139c0565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361198e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198590613a4e565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611a689190612f99565b60405180910390a3505050565b611a7d6118ab565b73ffffffffffffffffffffffffffffffffffffffff16611a9b611137565b73ffffffffffffffffffffffffffffffffffffffff1614611af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae890613ab6565b60405180910390fd5b565b5f611afe8484611734565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611b785781811015611b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6190613b1e565b60405180910390fd5b611b7784848484036118b2565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611bec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be390613bac565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5190613c3a565b60405180910390fd5b5f8103611c7157611c6c83835f6129bb565b612622565b5f439050600a5f9054906101000a900460ff161561225857611c91611137565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015611cff5750611ccf611137565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611d3757505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611d71575061dead73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611d8a5750600560149054906101000a900460ff16155b15611e8f5780600d54600b54611da09190613444565b10611dcc576063600f81905550600f54600e819055506063601181905550601154601081905550611e8e565b600d54600b54611ddc9190613444565b81118015611df857506014600b54611df49190613444565b8111155b15611e48576a108b2a2c280290940000006007819055506a108b2a2c28029094000000600981905550601e600f81905550600f54600e81905550601e601181905550601154601081905550611e8d565b6a108b2a2c280290940000006007819055506a108b2a2c280290940000006009819055505f600f81905550600f54600e819055505f6011819055506011546010819055505b5b5b600a60019054906101000a900460ff16611f7e5760125f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611f3e575060125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7490613ca2565b60405180910390fd5b5b60155f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561201b575060145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156120c257600754821115612065576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205c90613d30565b60405180910390fd5b60095461207184610e02565b8361207c9190613444565b11156120bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b490613d98565b60405180910390fd5b612257565b60155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561215f575060145f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156121ae576007548211156121a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a090613e26565b60405180910390fd5b612256565b60145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166122555760095461220884610e02565b836122139190613444565b1115612254576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224b90613d98565b60405180910390fd5b5b5b5b5b5f61226230610e02565b90505f60085482101590508080156122865750600a60029054906101000a900460ff165b801561229f5750600560149054906101000a900460ff16155b80156122bc5750600260135f8581526020019081526020015f2054105b801561230f575060155f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612362575060125f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156123b5575060125f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561241c576001600560146101000a81548160ff0219169083151502179055506123dd612c27565b60135f8481526020019081526020015f205f81546123fa906134a4565b919050819055505f600560146101000a81548160ff0219169083151502179055505b5f600560149054906101000a900460ff1615905060125f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806124cb575060125f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b156124d4575f90505b5f81156126115760155f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561253257505f601054115b156125665761255f606461255160105489612d0790919063ffffffff16565b612d1c90919063ffffffff16565b90506125ee565b60155f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156125bd57505f600e54115b156125ed576125ea60646125dc600e5489612d0790919063ffffffff16565b612d1c90919063ffffffff16565b90505b5b5f811115612602576126018830836129bb565b5b808661260e9190613e44565b95505b61261c8888886129bb565b50505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f600267ffffffffffffffff81111561270657612705613e77565b5b6040519080825280602002602001820160405280156127345781602001602082028036833780820191505090505b50905030815f8151811061274b5761274a613477565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156127ee573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128129190613eb8565b8160018151811061282657612825613477565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061288b307f0000000000000000000000000000000000000000000000000000000000000000846118b2565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b81526004016128ec959493929190613fd3565b5f604051808303815f87803b158015612903575f80fd5b505af1158015612915573d5f803e3d5ffd5b505050505050565b8060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612a29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2090613bac565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8e90613c3a565b60405180910390fd5b612aa2838383612d31565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1c9061409b565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612c0e9190612f99565b60405180910390a3612c21848484612d36565b50505050565b5f612c3130610e02565b90505f808203612c42575050612d05565b6014600854612c519190613318565b821115612c6a576014600854612c679190613318565b91505b5f829050612c77816126ea565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612cbc90613518565b5f6040518083038185875af1925050503d805f8114612cf6576040519150601f19603f3d011682016040523d82523d5f602084013e612cfb565b606091505b5050809250505050505b565b5f8183612d149190613318565b905092915050565b5f8183612d299190613386565b905092915050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612d72578082015181840152602081019050612d57565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612d9782612d3b565b612da18185612d45565b9350612db1818560208601612d55565b612dba81612d7d565b840191505092915050565b5f6020820190508181035f830152612ddd8184612d8d565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612e1682612ded565b9050919050565b612e2681612e0c565b8114612e30575f80fd5b50565b5f81359050612e4181612e1d565b92915050565b5f819050919050565b612e5981612e47565b8114612e63575f80fd5b50565b5f81359050612e7481612e50565b92915050565b5f8060408385031215612e9057612e8f612de5565b5b5f612e9d85828601612e33565b9250506020612eae85828601612e66565b9150509250929050565b5f8115159050919050565b612ecc81612eb8565b82525050565b5f602082019050612ee55f830184612ec3565b92915050565b5f60208284031215612f0057612eff612de5565b5b5f612f0d84828501612e33565b91505092915050565b5f819050919050565b5f612f39612f34612f2f84612ded565b612f16565b612ded565b9050919050565b5f612f4a82612f1f565b9050919050565b5f612f5b82612f40565b9050919050565b612f6b81612f51565b82525050565b5f602082019050612f845f830184612f62565b92915050565b612f9381612e47565b82525050565b5f602082019050612fac5f830184612f8a565b92915050565b5f60208284031215612fc757612fc6612de5565b5b5f612fd484828501612e66565b91505092915050565b5f805f60608486031215612ff457612ff3612de5565b5b5f61300186828701612e33565b935050602061301286828701612e33565b925050604061302386828701612e66565b9150509250925092565b61303681612e0c565b82525050565b5f60208201905061304f5f83018461302d565b92915050565b5f60ff82169050919050565b61306a81613055565b82525050565b5f6020820190506130835f830184613061565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126130aa576130a9613089565b5b8235905067ffffffffffffffff8111156130c7576130c661308d565b5b6020830191508360208202830111156130e3576130e2613091565b5b9250929050565b5f8083601f8401126130ff576130fe613089565b5b8235905067ffffffffffffffff81111561311c5761311b61308d565b5b60208301915083602082028301111561313857613137613091565b5b9250929050565b5f805f806040858703121561315757613156612de5565b5b5f85013567ffffffffffffffff81111561317457613173612de9565b5b61318087828801613095565b9450945050602085013567ffffffffffffffff8111156131a3576131a2612de9565b5b6131af878288016130ea565b925092505092959194509250565b6131c681612eb8565b81146131d0575f80fd5b50565b5f813590506131e1816131bd565b92915050565b5f80604083850312156131fd576131fc612de5565b5b5f61320a85828601612e33565b925050602061321b858286016131d3565b9150509250929050565b5f6020828403121561323a57613239612de5565b5b5f613247848285016131d3565b91505092915050565b5f806040838503121561326657613265612de5565b5b5f61327385828601612e33565b925050602061328485828601612e33565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806132d257607f821691505b6020821081036132e5576132e461328e565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61332282612e47565b915061332d83612e47565b925082820261333b81612e47565b91508282048414831517613352576133516132eb565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61339082612e47565b915061339b83612e47565b9250826133ab576133aa613359565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e74205f8201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b5f613410602f83612d45565b915061341b826133b6565b604082019050919050565b5f6020820190508181035f83015261343d81613404565b9050919050565b5f61344e82612e47565b915061345983612e47565b9250828201905080821115613471576134706132eb565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f6134ae82612e47565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036134e0576134df6132eb565b5b600182019050919050565b5f81905092915050565b50565b5f6135035f836134eb565b915061350e826134f5565b5f82019050919050565b5f613522826134f8565b9150819050919050565b7f4d757374206b6565702066656573206174203525206f72206c657373000000005f82015250565b5f613560601c83612d45565b915061356b8261352c565b602082019050919050565b5f6020820190508181035f83015261358d81613554565b9050919050565b7f57726f6e6720616d6f756e7400000000000000000000000000000000000000005f82015250565b5f6135c8600c83612d45565b91506135d382613594565b602082019050919050565b5f6020820190508181035f8301526135f5816135bc565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f613656603983612d45565b9150613661826135fc565b604082019050919050565b5f6020820190508181035f8301526136838161364a565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6136e4602583612d45565b91506136ef8261368a565b604082019050919050565b5f6020820190508181035f830152613711816136d8565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b5f613772602483612d45565b915061377d82613718565b604082019050919050565b5f6020820190508181035f83015261379f81613766565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b5f613800603583612d45565b915061380b826137a6565b604082019050919050565b5f6020820190508181035f83015261382d816137f4565b9050919050565b7f5377617020616d6f756e742063616e6e6f7420626520686967686572207468615f8201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b5f61388e603483612d45565b915061389982613834565b604082019050919050565b5f6020820190508181035f8301526138bb81613882565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61391c602683612d45565b9150613927826138c2565b604082019050919050565b5f6020820190508181035f83015261394981613910565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6139aa602483612d45565b91506139b582613950565b604082019050919050565b5f6020820190508181035f8301526139d78161399e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f613a38602283612d45565b9150613a43826139de565b604082019050919050565b5f6020820190508181035f830152613a6581613a2c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613aa0602083612d45565b9150613aab82613a6c565b602082019050919050565b5f6020820190508181035f830152613acd81613a94565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f613b08601d83612d45565b9150613b1382613ad4565b602082019050919050565b5f6020820190508181035f830152613b3581613afc565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f613b96602583612d45565b9150613ba182613b3c565b604082019050919050565b5f6020820190508181035f830152613bc381613b8a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f613c24602383612d45565b9150613c2f82613bca565b604082019050919050565b5f6020820190508181035f830152613c5181613c18565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f613c8c601683612d45565b9150613c9782613c58565b602082019050919050565b5f6020820190508181035f830152613cb981613c80565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f613d1a603583612d45565b9150613d2582613cc0565b604082019050919050565b5f6020820190508181035f830152613d4781613d0e565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f613d82601383612d45565b9150613d8d82613d4e565b602082019050919050565b5f6020820190508181035f830152613daf81613d76565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f613e10603683612d45565b9150613e1b82613db6565b604082019050919050565b5f6020820190508181035f830152613e3d81613e04565b9050919050565b5f613e4e82612e47565b9150613e5983612e47565b9250828203905081811115613e7157613e706132eb565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f81519050613eb281612e1d565b92915050565b5f60208284031215613ecd57613ecc612de5565b5b5f613eda84828501613ea4565b91505092915050565b5f819050919050565b5f613f06613f01613efc84613ee3565b612f16565b612e47565b9050919050565b613f1681613eec565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b613f4e81612e0c565b82525050565b5f613f5f8383613f45565b60208301905092915050565b5f602082019050919050565b5f613f8182613f1c565b613f8b8185613f26565b9350613f9683613f36565b805f5b83811015613fc6578151613fad8882613f54565b9750613fb883613f6b565b925050600181019050613f99565b5085935050505092915050565b5f60a082019050613fe65f830188612f8a565b613ff36020830187613f0d565b81810360408301526140058186613f77565b9050614014606083018561302d565b6140216080830184612f8a565b9695505050505050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f614085602683612d45565b91506140908261402b565b604082019050919050565b5f6020820190508181035f8301526140b281614079565b905091905056fea2646970667358221220cf5c0bb47a64eae80522075fca0f19070cab048c7d8251b3f02ce0ecc0bb960964736f6c63430008140033

Deployed Bytecode

0x608060405260043610610280575f3560e01c8063881dce601161014e578063bbc0c742116100c0578063dd62ed3e11610079578063dd62ed3e14610969578063e2f45605146109a5578063eba4c333146109cf578063f2fde38b146109f7578063f8b45b0514610a1f578063fabb0b4f14610a4957610287565b8063bbc0c7421461085f578063c024666814610889578063c18bc195146108b1578063c8c8ebe4146108d9578063d257b34f14610903578063d85ba0631461093f57610287565b80639a7a23d6116101125780639a7a23d614610733578063a457c2d71461075b578063a672990c14610797578063a9059cbb146107bf578063aacebbe3146107fb578063b62496f51461082357610287565b8063881dce60146106655780638da5cb5b1461068d57806392136913146106b7578063924de9b7146106e157806395d89b411461070957610287565b80634a62bb65116101f2578063715018a6116101ab578063715018a61461059757806371fc4688146105ad578063751039fc146105d55780637571336a146105ff5780637f73f70b1461062757806382aa7c681461063d57610287565b80634a62bb651461049f57806367243482146104c95780636a486a8e146104f15780636ddd17131461051b5780636fc3eaec1461054557806370a082311461055b57610287565b8063203e727e11610244578063203e727e1461038157806323b872dd146103a957806327c8f835146103e5578063313ce5671461040f578063395093511461043957806349bd5a5e1461047557610287565b806306fdde031461028b578063095ea7b3146102b557806310d5de53146102f15780631694505e1461032d57806318160ddd1461035757610287565b3661028757005b5f80fd5b348015610296575f80fd5b5061029f610a73565b6040516102ac9190612dc5565b60405180910390f35b3480156102c0575f80fd5b506102db60048036038101906102d69190612e7a565b610b03565b6040516102e89190612ed2565b60405180910390f35b3480156102fc575f80fd5b5061031760048036038101906103129190612eeb565b610b25565b6040516103249190612ed2565b60405180910390f35b348015610338575f80fd5b50610341610b42565b60405161034e9190612f71565b60405180910390f35b348015610362575f80fd5b5061036b610b66565b6040516103789190612f99565b60405180910390f35b34801561038c575f80fd5b506103a760048036038101906103a29190612fb2565b610b6f565b005b3480156103b4575f80fd5b506103cf60048036038101906103ca9190612fdd565b610c0a565b6040516103dc9190612ed2565b60405180910390f35b3480156103f0575f80fd5b506103f9610c38565b604051610406919061303c565b60405180910390f35b34801561041a575f80fd5b50610423610c3e565b6040516104309190613070565b60405180910390f35b348015610444575f80fd5b5061045f600480360381019061045a9190612e7a565b610c46565b60405161046c9190612ed2565b60405180910390f35b348015610480575f80fd5b50610489610c7c565b604051610496919061303c565b60405180910390f35b3480156104aa575f80fd5b506104b3610ca0565b6040516104c09190612ed2565b60405180910390f35b3480156104d4575f80fd5b506104ef60048036038101906104ea919061313f565b610cb2565b005b3480156104fc575f80fd5b50610505610d5b565b6040516105129190612f99565b60405180910390f35b348015610526575f80fd5b5061052f610d61565b60405161053c9190612ed2565b60405180910390f35b348015610550575f80fd5b50610559610d74565b005b348015610566575f80fd5b50610581600480360381019061057c9190612eeb565b610e02565b60405161058e9190612f99565b60405180910390f35b3480156105a2575f80fd5b506105ab610e47565b005b3480156105b8575f80fd5b506105d360048036038101906105ce9190612fb2565b610e5a565b005b3480156105e0575f80fd5b506105e9610ebb565b6040516105f69190612ed2565b60405180910390f35b34801561060a575f80fd5b50610625600480360381019061062091906131e7565b610ee4565b005b348015610632575f80fd5b5061063b610f44565b005b348015610648575f80fd5b50610663600480360381019061065e9190612fb2565b611020565b005b348015610670575f80fd5b5061068b60048036038101906106869190612fb2565b611076565b005b348015610698575f80fd5b506106a1611137565b6040516106ae919061303c565b60405180910390f35b3480156106c2575f80fd5b506106cb61115f565b6040516106d89190612f99565b60405180910390f35b3480156106ec575f80fd5b5061070760048036038101906107029190613225565b611165565b005b348015610714575f80fd5b5061071d61118a565b60405161072a9190612dc5565b60405180910390f35b34801561073e575f80fd5b50610759600480360381019061075491906131e7565b61121a565b005b348015610766575f80fd5b50610781600480360381019061077c9190612e7a565b6112be565b60405161078e9190612ed2565b60405180910390f35b3480156107a2575f80fd5b506107bd60048036038101906107b891906131e7565b611333565b005b3480156107ca575f80fd5b506107e560048036038101906107e09190612e7a565b6113e7565b6040516107f29190612ed2565b60405180910390f35b348015610806575f80fd5b50610821600480360381019061081c9190612eeb565b611409565b005b34801561082e575f80fd5b5061084960048036038101906108449190612eeb565b6114cf565b6040516108569190612ed2565b60405180910390f35b34801561086a575f80fd5b506108736114ec565b6040516108809190612ed2565b60405180910390f35b348015610894575f80fd5b506108af60048036038101906108aa91906131e7565b6114ff565b005b3480156108bc575f80fd5b506108d760048036038101906108d29190612fb2565b6115ad565b005b3480156108e4575f80fd5b506108ed611648565b6040516108fa9190612f99565b60405180910390f35b34801561090e575f80fd5b5061092960048036038101906109249190612fb2565b61164e565b6040516109369190612ed2565b60405180910390f35b34801561094a575f80fd5b5061095361172e565b6040516109609190612f99565b60405180910390f35b348015610974575f80fd5b5061098f600480360381019061098a9190613250565b611734565b60405161099c9190612f99565b60405180910390f35b3480156109b0575f80fd5b506109b96117b6565b6040516109c69190612f99565b60405180910390f35b3480156109da575f80fd5b506109f560048036038101906109f09190612fb2565b6117bc565b005b348015610a02575f80fd5b50610a1d6004803603810190610a189190612eeb565b61181d565b005b348015610a2a575f80fd5b50610a3361189f565b604051610a409190612f99565b60405180910390f35b348015610a54575f80fd5b50610a5d6118a5565b604051610a6a9190612f99565b60405180910390f35b606060038054610a82906132bb565b80601f0160208091040260200160405190810160405280929190818152602001828054610aae906132bb565b8015610af95780601f10610ad057610100808354040283529160200191610af9565b820191905f5260205f20905b815481529060010190602001808311610adc57829003601f168201915b5050505050905090565b5f80610b0d6118ab565b9050610b1a8185856118b2565b600191505092915050565b6014602052805f5260405f205f915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f600254905090565b610b77611a75565b670de0b6b3a76400006103e86001610b8d610b66565b610b979190613318565b610ba19190613386565b610bab9190613386565b811015610bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be490613426565b60405180910390fd5b670de0b6b3a764000081610c019190613318565b60078190555050565b5f80610c146118ab565b9050610c21858285611af3565b610c2c858585611b7e565b60019150509392505050565b61dead81565b5f6012905090565b5f80610c506118ab565b9050610c71818585610c628589611734565b610c6c9190613444565b6118b2565b600191505092915050565b7f0000000000000000000000000d32e6510ef1a488434e48e8e6f565b90b97519481565b600a5f9054906101000a900460ff1681565b5f84849050118015610cc957508383905082829050145b610cd1575f80fd5b5f3390505f5b85859050811015610d5357610d4082878784818110610cf957610cf8613477565b5b9050602002016020810190610d0e9190612eeb565b670de0b6b3a7640000878786818110610d2a57610d29613477565b5b90506020020135610d3b9190613318565b611b7e565b8080610d4b906134a4565b915050610cd7565b505050505050565b60105481565b600a60029054906101000a900460ff1681565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610dba90613518565b5f6040518083038185875af1925050503d805f8114610df4576040519150601f19603f3d011682016040523d82523d5f602084013e610df9565b606091505b50508091505050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610e4f611a75565b610e585f612627565b565b610e62611a75565b80600f81905550600f54600e81905550600a600e541115610eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaf90613576565b60405180910390fd5b50565b5f610ec4611a75565b5f600a5f6101000a81548160ff0219169083151502179055506001905090565b610eec611a75565b8060145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b610f4c611a75565b6001600560146101000a81548160ff021916908315150217905550610f78610f7330610e02565b6126ea565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610fbe90613518565b5f6040518083038185875af1925050503d805f8114610ff8576040519150601f19603f3d011682016040523d82523d5f602084013e610ffd565b606091505b505080915050505f600560146101000a81548160ff021916908315150217905550565b611028611a75565b80600d819055506001600a60016101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff02191690831515021790555043600b8190555042600c8190555050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166110b66118ab565b73ffffffffffffffffffffffffffffffffffffffff16146110d5575f80fd5b6110de30610e02565b81111580156110ec57505f81115b61112b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611122906135de565b60405180910390fd5b611134816126ea565b50565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b61116d611a75565b80600a60026101000a81548160ff02191690831515021790555050565b606060048054611199906132bb565b80601f01602080910402602001604051908101604052809291908181526020018280546111c5906132bb565b80156112105780601f106111e757610100808354040283529160200191611210565b820191905f5260205f20905b8154815290600101906020018083116111f357829003601f168201915b5050505050905090565b611222611a75565b7f0000000000000000000000000d32e6510ef1a488434e48e8e6f565b90b97519473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a79061366c565b60405180910390fd5b6112ba828261291d565b5050565b5f806112c86118ab565b90505f6112d58286611734565b90508381101561131a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611311906136fa565b60405180910390fd5b61132782868684036118b2565b60019250505092915050565b61133b611a75565b8060145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508060125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f806113f16118ab565b90506113fe818585611b7e565b600191505092915050565b611411611a75565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a38060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6015602052805f5260405f205f915054906101000a900460ff1681565b600a60019054906101000a900460ff1681565b611507611a75565b8060125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516115a19190612ed2565b60405180910390a25050565b6115b5611a75565b670de0b6b3a76400006103e860056115cb610b66565b6115d59190613318565b6115df9190613386565b6115e99190613386565b81101561162b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162290613788565b60405180910390fd5b670de0b6b3a76400008161163f9190613318565b60098190555050565b60075481565b5f611657611a75565b620186a06001611665610b66565b61166f9190613318565b6116799190613386565b8210156116bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b290613816565b60405180910390fd5b6103e860056116c8610b66565b6116d29190613318565b6116dc9190613386565b82111561171e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611715906138a4565b60405180910390fd5b8160088190555060019050919050565b600e5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60085481565b6117c4611a75565b80601181905550601154601081905550600a601054111561181a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181190613576565b60405180910390fd5b50565b611825611a75565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611893576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188a90613932565b60405180910390fd5b61189c81612627565b50565b60095481565b600d5481565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611920576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611917906139c0565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361198e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198590613a4e565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611a689190612f99565b60405180910390a3505050565b611a7d6118ab565b73ffffffffffffffffffffffffffffffffffffffff16611a9b611137565b73ffffffffffffffffffffffffffffffffffffffff1614611af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae890613ab6565b60405180910390fd5b565b5f611afe8484611734565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611b785781811015611b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6190613b1e565b60405180910390fd5b611b7784848484036118b2565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611bec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be390613bac565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5190613c3a565b60405180910390fd5b5f8103611c7157611c6c83835f6129bb565b612622565b5f439050600a5f9054906101000a900460ff161561225857611c91611137565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015611cff5750611ccf611137565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611d3757505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611d71575061dead73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611d8a5750600560149054906101000a900460ff16155b15611e8f5780600d54600b54611da09190613444565b10611dcc576063600f81905550600f54600e819055506063601181905550601154601081905550611e8e565b600d54600b54611ddc9190613444565b81118015611df857506014600b54611df49190613444565b8111155b15611e48576a108b2a2c280290940000006007819055506a108b2a2c28029094000000600981905550601e600f81905550600f54600e81905550601e601181905550601154601081905550611e8d565b6a108b2a2c280290940000006007819055506a108b2a2c280290940000006009819055505f600f81905550600f54600e819055505f6011819055506011546010819055505b5b5b600a60019054906101000a900460ff16611f7e5760125f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611f3e575060125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7490613ca2565b60405180910390fd5b5b60155f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561201b575060145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156120c257600754821115612065576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205c90613d30565b60405180910390fd5b60095461207184610e02565b8361207c9190613444565b11156120bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b490613d98565b60405180910390fd5b612257565b60155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561215f575060145f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156121ae576007548211156121a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a090613e26565b60405180910390fd5b612256565b60145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166122555760095461220884610e02565b836122139190613444565b1115612254576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224b90613d98565b60405180910390fd5b5b5b5b5b5f61226230610e02565b90505f60085482101590508080156122865750600a60029054906101000a900460ff165b801561229f5750600560149054906101000a900460ff16155b80156122bc5750600260135f8581526020019081526020015f2054105b801561230f575060155f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612362575060125f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156123b5575060125f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561241c576001600560146101000a81548160ff0219169083151502179055506123dd612c27565b60135f8481526020019081526020015f205f81546123fa906134a4565b919050819055505f600560146101000a81548160ff0219169083151502179055505b5f600560149054906101000a900460ff1615905060125f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806124cb575060125f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b156124d4575f90505b5f81156126115760155f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16801561253257505f601054115b156125665761255f606461255160105489612d0790919063ffffffff16565b612d1c90919063ffffffff16565b90506125ee565b60155f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156125bd57505f600e54115b156125ed576125ea60646125dc600e5489612d0790919063ffffffff16565b612d1c90919063ffffffff16565b90505b5b5f811115612602576126018830836129bb565b5b808661260e9190613e44565b95505b61261c8888886129bb565b50505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f600267ffffffffffffffff81111561270657612705613e77565b5b6040519080825280602002602001820160405280156127345781602001602082028036833780820191505090505b50905030815f8151811061274b5761274a613477565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156127ee573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128129190613eb8565b8160018151811061282657612825613477565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061288b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846118b2565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b81526004016128ec959493929190613fd3565b5f604051808303815f87803b158015612903575f80fd5b505af1158015612915573d5f803e3d5ffd5b505050505050565b8060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612a29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2090613bac565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8e90613c3a565b60405180910390fd5b612aa2838383612d31565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1c9061409b565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612c0e9190612f99565b60405180910390a3612c21848484612d36565b50505050565b5f612c3130610e02565b90505f808203612c42575050612d05565b6014600854612c519190613318565b821115612c6a576014600854612c679190613318565b91505b5f829050612c77816126ea565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612cbc90613518565b5f6040518083038185875af1925050503d805f8114612cf6576040519150601f19603f3d011682016040523d82523d5f602084013e612cfb565b606091505b5050809250505050505b565b5f8183612d149190613318565b905092915050565b5f8183612d299190613386565b905092915050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612d72578082015181840152602081019050612d57565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612d9782612d3b565b612da18185612d45565b9350612db1818560208601612d55565b612dba81612d7d565b840191505092915050565b5f6020820190508181035f830152612ddd8184612d8d565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612e1682612ded565b9050919050565b612e2681612e0c565b8114612e30575f80fd5b50565b5f81359050612e4181612e1d565b92915050565b5f819050919050565b612e5981612e47565b8114612e63575f80fd5b50565b5f81359050612e7481612e50565b92915050565b5f8060408385031215612e9057612e8f612de5565b5b5f612e9d85828601612e33565b9250506020612eae85828601612e66565b9150509250929050565b5f8115159050919050565b612ecc81612eb8565b82525050565b5f602082019050612ee55f830184612ec3565b92915050565b5f60208284031215612f0057612eff612de5565b5b5f612f0d84828501612e33565b91505092915050565b5f819050919050565b5f612f39612f34612f2f84612ded565b612f16565b612ded565b9050919050565b5f612f4a82612f1f565b9050919050565b5f612f5b82612f40565b9050919050565b612f6b81612f51565b82525050565b5f602082019050612f845f830184612f62565b92915050565b612f9381612e47565b82525050565b5f602082019050612fac5f830184612f8a565b92915050565b5f60208284031215612fc757612fc6612de5565b5b5f612fd484828501612e66565b91505092915050565b5f805f60608486031215612ff457612ff3612de5565b5b5f61300186828701612e33565b935050602061301286828701612e33565b925050604061302386828701612e66565b9150509250925092565b61303681612e0c565b82525050565b5f60208201905061304f5f83018461302d565b92915050565b5f60ff82169050919050565b61306a81613055565b82525050565b5f6020820190506130835f830184613061565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126130aa576130a9613089565b5b8235905067ffffffffffffffff8111156130c7576130c661308d565b5b6020830191508360208202830111156130e3576130e2613091565b5b9250929050565b5f8083601f8401126130ff576130fe613089565b5b8235905067ffffffffffffffff81111561311c5761311b61308d565b5b60208301915083602082028301111561313857613137613091565b5b9250929050565b5f805f806040858703121561315757613156612de5565b5b5f85013567ffffffffffffffff81111561317457613173612de9565b5b61318087828801613095565b9450945050602085013567ffffffffffffffff8111156131a3576131a2612de9565b5b6131af878288016130ea565b925092505092959194509250565b6131c681612eb8565b81146131d0575f80fd5b50565b5f813590506131e1816131bd565b92915050565b5f80604083850312156131fd576131fc612de5565b5b5f61320a85828601612e33565b925050602061321b858286016131d3565b9150509250929050565b5f6020828403121561323a57613239612de5565b5b5f613247848285016131d3565b91505092915050565b5f806040838503121561326657613265612de5565b5b5f61327385828601612e33565b925050602061328485828601612e33565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806132d257607f821691505b6020821081036132e5576132e461328e565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61332282612e47565b915061332d83612e47565b925082820261333b81612e47565b91508282048414831517613352576133516132eb565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61339082612e47565b915061339b83612e47565b9250826133ab576133aa613359565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e74205f8201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b5f613410602f83612d45565b915061341b826133b6565b604082019050919050565b5f6020820190508181035f83015261343d81613404565b9050919050565b5f61344e82612e47565b915061345983612e47565b9250828201905080821115613471576134706132eb565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f6134ae82612e47565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036134e0576134df6132eb565b5b600182019050919050565b5f81905092915050565b50565b5f6135035f836134eb565b915061350e826134f5565b5f82019050919050565b5f613522826134f8565b9150819050919050565b7f4d757374206b6565702066656573206174203525206f72206c657373000000005f82015250565b5f613560601c83612d45565b915061356b8261352c565b602082019050919050565b5f6020820190508181035f83015261358d81613554565b9050919050565b7f57726f6e6720616d6f756e7400000000000000000000000000000000000000005f82015250565b5f6135c8600c83612d45565b91506135d382613594565b602082019050919050565b5f6020820190508181035f8301526135f5816135bc565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d205f8201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b5f613656603983612d45565b9150613661826135fc565b604082019050919050565b5f6020820190508181035f8301526136838161364a565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6136e4602583612d45565b91506136ef8261368a565b604082019050919050565b5f6020820190508181035f830152613711816136d8565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b5f613772602483612d45565b915061377d82613718565b604082019050919050565b5f6020820190508181035f83015261379f81613766565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b5f613800603583612d45565b915061380b826137a6565b604082019050919050565b5f6020820190508181035f83015261382d816137f4565b9050919050565b7f5377617020616d6f756e742063616e6e6f7420626520686967686572207468615f8201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b5f61388e603483612d45565b915061389982613834565b604082019050919050565b5f6020820190508181035f8301526138bb81613882565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61391c602683612d45565b9150613927826138c2565b604082019050919050565b5f6020820190508181035f83015261394981613910565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6139aa602483612d45565b91506139b582613950565b604082019050919050565b5f6020820190508181035f8301526139d78161399e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f613a38602283612d45565b9150613a43826139de565b604082019050919050565b5f6020820190508181035f830152613a6581613a2c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613aa0602083612d45565b9150613aab82613a6c565b602082019050919050565b5f6020820190508181035f830152613acd81613a94565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f613b08601d83612d45565b9150613b1382613ad4565b602082019050919050565b5f6020820190508181035f830152613b3581613afc565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f613b96602583612d45565b9150613ba182613b3c565b604082019050919050565b5f6020820190508181035f830152613bc381613b8a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f613c24602383612d45565b9150613c2f82613bca565b604082019050919050565b5f6020820190508181035f830152613c5181613c18565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f613c8c601683612d45565b9150613c9782613c58565b602082019050919050565b5f6020820190508181035f830152613cb981613c80565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f613d1a603583612d45565b9150613d2582613cc0565b604082019050919050565b5f6020820190508181035f830152613d4781613d0e565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f613d82601383612d45565b9150613d8d82613d4e565b602082019050919050565b5f6020820190508181035f830152613daf81613d76565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f613e10603683612d45565b9150613e1b82613db6565b604082019050919050565b5f6020820190508181035f830152613e3d81613e04565b9050919050565b5f613e4e82612e47565b9150613e5983612e47565b9250828203905081811115613e7157613e706132eb565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f81519050613eb281612e1d565b92915050565b5f60208284031215613ecd57613ecc612de5565b5b5f613eda84828501613ea4565b91505092915050565b5f819050919050565b5f613f06613f01613efc84613ee3565b612f16565b612e47565b9050919050565b613f1681613eec565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b613f4e81612e0c565b82525050565b5f613f5f8383613f45565b60208301905092915050565b5f602082019050919050565b5f613f8182613f1c565b613f8b8185613f26565b9350613f9683613f36565b805f5b83811015613fc6578151613fad8882613f54565b9750613fb883613f6b565b925050600181019050613f99565b5085935050505092915050565b5f60a082019050613fe65f830188612f8a565b613ff36020830187613f0d565b81810360408301526140058186613f77565b9050614014606083018561302d565b6140216080830184612f8a565b9695505050505050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f614085602683612d45565b91506140908261402b565b604082019050919050565b5f6020820190508181035f8301526140b281614079565b905091905056fea2646970667358221220cf5c0bb47a64eae80522075fca0f19070cab048c7d8251b3f02ce0ecc0bb960964736f6c63430008140033

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.