ETH Price: $3,403.61 (+1.35%)
Gas: 7 Gwei

Token

CRYPTO IS DEAD (DEAD)
 

Overview

Max Total Supply

1,000,000,000 DEAD

Holders

83

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
ogearl.eth
Balance
196,416.335875724549189322 DEAD

Value
$0.00
0x8f56ef1eca605a37ccc7ec427febc0d5c567e9a2
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:
CryptoIsDead

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-11
*/

// SPDX-License-Identifier: MIT

pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0;
pragma experimental ABIEncoderV2;


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

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

abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {

    function totalSupply() external view returns (uint256);

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

    function transfer(address recipient, uint256 amount) external returns (bool);

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

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

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    event Transfer(address indexed from, address indexed to, uint256 value);

    event Approval(address indexed owner, address indexed spender, uint256 value);
}


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

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

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


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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

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

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

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

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

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

        return true;
    }

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

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the 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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 value);

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

interface IUniswapV2Router02 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

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

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

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

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

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

contract CryptoIsDead 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 public marketingWallet;
    address public graveyardWallet;

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

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

    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyRewardFee;
    uint256 public buyGraveyardFee;

    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellRewardFee;
    uint256 public sellGraveyardFee;

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForReward;
    uint256 public tokensForGraveyard;

    mapping(uint256 => address) public biggestBuyer;
    mapping(uint256 => uint256) public biggestBuyerAmount;
    mapping(uint256 => bool) public  biggestBuyerPaid;
    uint256 private constant ONE_HOUR = 60 * 60;
    uint256 private constant PERCENT_DENOMENATOR = 100;
    uint256 public launchTime;
    uint256 private _launchBlock;
    address private _lpReceiver;

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

    // exlcude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    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 graveyardWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

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

    constructor() ERC20("CRYPTO IS DEAD", "DEAD") {
        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 _buyMarketingFee = 3;
        uint256 _buyLiquidityFee = 1;
        uint256 _buyRewardFee = 2;
        uint256 _buyGraveyardFee = 2;

        uint256 _sellMarketingFee = 3;
        uint256 _sellLiquidityFee = 1;
        uint256 _sellRewardFee = 2;
        uint256 _sellGraveyardFee = 2;

        uint256 totalSupply = 1_000_000_000 * 1e18;

        maxTransactionAmount = 5_000_000 * 1e18; // 0.5% from total supply maxTransactionAmountTxn
        maxWallet = 20_000_000 * 1e18; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet

        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyRewardFee = _buyRewardFee;
        buyGraveyardFee = _buyGraveyardFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyRewardFee + buyGraveyardFee;

        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellRewardFee = _sellRewardFee;
        sellGraveyardFee = _sellGraveyardFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellRewardFee + sellGraveyardFee;

        marketingWallet = address(0x1FB1E46c954778CF285AB39ccd51Dd9C49c0Ee76); // set as marketing wallet
        graveyardWallet = address(0xDc7B1294041b9071aa783015E6f95833Fd0559Af); // set as graveyard wallet

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

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

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

    receive() external payable {}

    // _percent: 1 == 0.1%, 1000 = 100%
    function launch(uint16 _percent) external payable onlyOwner {
        require(_percent <= PERCENT_DENOMENATOR, 'must be between 0-100%');
        require(launchTime == 0, 'already launched');
        require(_percent == 0 || msg.value > 0, 'need ETH for initial LP');

        uint256 _lpSupply = (totalSupply() * _percent) / PERCENT_DENOMENATOR;
        uint256 _leftover = totalSupply() - _lpSupply;
        if (_lpSupply > 0) {
            addLiquidity(_lpSupply, msg.value);
        }
        if (_leftover > 0) {
            _transfer(address(this), owner(), _leftover);
        }
        launchTime = block.timestamp;
        _launchBlock = block.number;
    }

    // starts at 1 and increments forever every hour after launch
    function getHour() public view returns (uint256) {
        uint256 secondsSinceLaunch = block.timestamp - launchTime;
        return 1 + (secondsSinceLaunch / ONE_HOUR);
    }

    function setLpReceiver(address _wallet) external onlyOwner {
        _lpReceiver = _wallet;
    }

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= totalSupply() / 100000 / 1e18,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 20) / 1000 / 1e18,
            "Swap amount cannot be higher than 2% total supply."
        );
        swapTokensAtAmount = newAmount * (10**18);
        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 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 updateBuyFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _rewardFee,
        uint256 _graveyardFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyRewardFee = _rewardFee;
        buyGraveyardFee = _graveyardFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyRewardFee + buyGraveyardFee;
        require(buyTotalFees <= 25, "Must keep fees at 25% or less");
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _rewardFee,
        uint256 _graveyardFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellRewardFee = _rewardFee;
        sellGraveyardFee = _graveyardFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellRewardFee + sellGraveyardFee;
        require(sellTotalFees <= 25, "Must keep fees at 25% or less");
    }

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

    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 updateMarketingWallet(address newMarketingWallet) external onlyOwner {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }

    function updateGraveyardWallet(address newGraveyardWallet) external onlyOwner {
        emit graveyardWalletUpdated(newGraveyardWallet, graveyardWallet);
        graveyardWallet = newGraveyardWallet;
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "ERC20: transfer must be greater than zero");

        uint256 _hourAfterLaunch = getHour();

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                //when buy
                if (
                    automatedMarketMakerPairs[from]
                ) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                    if(amount > biggestBuyerAmount[_hourAfterLaunch]) {
                        biggestBuyer[_hourAfterLaunch] = to;
                        biggestBuyerAmount[_hourAfterLaunch] = amount;
                    }
                }
                //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 &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack(_hourAfterLaunch); 

            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);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForReward += (fees * sellRewardFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
                tokensForGraveyard += (fees * sellGraveyardFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForReward += (fees * buyRewardFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
                tokensForGraveyard += (fees * buyGraveyardFee) / buyTotalFees;
            }

            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 addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            _lpReceiver,
            block.timestamp
        );
    }

    function withdrawTokens(address _tokenAddy, uint256 _amount) external onlyOwner {
        IERC20 _token = IERC20(_tokenAddy);
        _amount = _amount > 0 ? _amount : _token.balanceOf(address(this));
        _token.transfer(owner(), _amount);
    }

    function withdrawETH(uint256 _amountWei) external onlyOwner {
        _amountWei = _amountWei == 0 ? address(this).balance : _amountWei;
       payable(owner()).transfer(_amountWei);
    }

    function swapBack(uint256 _currentHour) private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 _prevHour = _currentHour - 1; 
        if (_currentHour > 1 &&
            biggestBuyerAmount[_prevHour] > 0 &&
            !biggestBuyerPaid[_prevHour]
        ) {
            uint256 totalTokensToSwap = tokensForLiquidity +
                tokensForMarketing +
                tokensForReward +
                tokensForGraveyard;
            bool success;

            if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
            }

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

            // Halve the amount of liquidity tokens
            uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
                totalTokensToSwap /
                2;
            uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

            uint256 initialETHBalance = address(this).balance;

            swapTokensForEth(amountToSwapForETH);

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

            uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(
                totalTokensToSwap
            );

            uint256 ethForReward = ethBalance.mul(tokensForReward).div(totalTokensToSwap);

            uint256 ethForGraveyard = ethBalance.mul(tokensForGraveyard).div(totalTokensToSwap);

            uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForReward - ethForGraveyard;

            tokensForLiquidity = 0;
            tokensForMarketing = 0;
            tokensForReward = 0;
            tokensForGraveyard = 0;

            (success, ) = address(biggestBuyer[_prevHour]).call{value: ethForReward}("");

            biggestBuyerPaid[_prevHour] = success;

            (success, ) = address(graveyardWallet).call{value: ethForGraveyard}("");

            if (liquidityTokens > 0 && ethForLiquidity > 0) {
                addLiquidity(liquidityTokens, ethForLiquidity);
                emit SwapAndLiquify(
                    amountToSwapForETH,
                    ethForLiquidity,
                    tokensForLiquidity
                );
            }

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

        } else if ((contractBalance - tokensForReward) > swapTokensAtAmount) {
            uint256 totalTokensToSwap = tokensForLiquidity +
                tokensForMarketing + tokensForGraveyard;
            bool success;

            if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
            }

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

            // Halve the amount of liquidity tokens
            uint256 liquidityTokens = ((contractBalance - tokensForReward)  * tokensForLiquidity) /
                totalTokensToSwap /
                2;
            uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens).sub(tokensForReward);

            uint256 initialETHBalance = address(this).balance;

            swapTokensForEth(amountToSwapForETH);

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

            uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(
                totalTokensToSwap
            );

            uint256 ethForGraveyard = ethBalance.mul(tokensForGraveyard).div(totalTokensToSwap);

            uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForGraveyard;

            tokensForLiquidity = 0;
            tokensForMarketing = 0;
            tokensForGraveyard = 0;

            (success, ) = address(graveyardWallet).call{value: ethForGraveyard}("");

            if (liquidityTokens > 0 && ethForLiquidity > 0) {
                addLiquidity(liquidityTokens, ethForLiquidity);
                emit SwapAndLiquify(
                    amountToSwapForETH,
                    ethForLiquidity,
                    tokensForLiquidity
                );
            }

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

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":"graveyardWalletUpdated","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":"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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"biggestBuyer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"biggestBuyerAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"biggestBuyerPaid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyGraveyardFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyRewardFee","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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"getHour","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"graveyardWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_percent","type":"uint16"}],"name":"launch","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"launchTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"sellGraveyardFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellRewardFee","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":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"setLpReceiver","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":"tokensForGraveyard","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_rewardFee","type":"uint256"},{"internalType":"uint256","name":"_graveyardFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newGraveyardWallet","type":"address"}],"name":"updateGraveyardWallet","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"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_rewardFee","type":"uint256"},{"internalType":"uint256","name":"_graveyardFee","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":"uint256","name":"_amountWei","type":"uint256"}],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenAddy","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff0219169083151502179055503480156200006257600080fd5b506040518060400160405280600e81526020017f43525950544f20495320444541440000000000000000000000000000000000008152506040518060400160405280600481526020017f44454144000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000e792919062000b12565b5080600490805190602001906200010092919062000b12565b5050506200012362000117620005d260201b60201c565b620005da60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200014f816001620006a060201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001cf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001f5919062000c2c565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200025d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000283919062000c2c565b6040518363ffffffff1660e01b8152600401620002a292919062000c6f565b6020604051808303816000875af1158015620002c2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e8919062000c2c565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200033060a0516001620006a060201b60201c565b6200034560a05160016200078a60201b60201c565b60006003905060006001905060006002905060006002905060006003905060006001905060006002905060006002905060006b033b2e3c9fd0803ce800000090506a0422ca8b0a00a4250000006008819055506a108b2a2c28029094000000600a81905550612710600582620003bc919062000cd5565b620003c8919062000d65565b60098190555088600d8190555087600e8190555086600f8190555085601081905550601054600f54600e54600d5462000402919062000d9d565b6200040e919062000d9d565b6200041a919062000d9d565b600c819055508460128190555083601381905550826014819055508160158190555060155460145460135460125462000454919062000d9d565b62000460919062000d9d565b6200046c919062000d9d565b601181905550731fb1e46c954778cf285ab39ccd51dd9c49c0ee76600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073dc7b1294041b9071aa783015e6f95833fd0559af600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200053e620005306200082b60201b60201c565b60016200085560201b60201c565b620005513060016200085560201b60201c565b6200056661dead60016200085560201b60201c565b620005886200057a6200082b60201b60201c565b6001620006a060201b60201c565b6200059b306001620006a060201b60201c565b620005b061dead6001620006a060201b60201c565b620005c230826200098f60201b60201c565b5050505050505050505062000fbc565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006b0620005d260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006d66200082b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200072f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007269062000e5b565b60405180910390fd5b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000865620005d260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200088b6200082b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008e4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008db9062000e5b565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000983919062000e9a565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009f99062000f07565b60405180910390fd5b62000a166000838362000b0860201b60201c565b806002600082825462000a2a919062000d9d565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a81919062000d9d565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000ae8919062000f3a565b60405180910390a362000b046000838362000b0d60201b60201c565b5050565b505050565b505050565b82805462000b209062000f86565b90600052602060002090601f01602090048101928262000b44576000855562000b90565b82601f1062000b5f57805160ff191683800117855562000b90565b8280016001018555821562000b90579182015b8281111562000b8f57825182559160200191906001019062000b72565b5b50905062000b9f919062000ba3565b5090565b5b8082111562000bbe57600081600090555060010162000ba4565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000bf48262000bc7565b9050919050565b62000c068162000be7565b811462000c1257600080fd5b50565b60008151905062000c268162000bfb565b92915050565b60006020828403121562000c455762000c4462000bc2565b5b600062000c558482850162000c15565b91505092915050565b62000c698162000be7565b82525050565b600060408201905062000c86600083018562000c5e565b62000c95602083018462000c5e565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ce28262000c9c565b915062000cef8362000c9c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000d2b5762000d2a62000ca6565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000d728262000c9c565b915062000d7f8362000c9c565b92508262000d925762000d9162000d36565b5b828204905092915050565b600062000daa8262000c9c565b915062000db78362000c9c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000def5762000dee62000ca6565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000e4360208362000dfa565b915062000e508262000e0b565b602082019050919050565b6000602082019050818103600083015262000e768162000e34565b9050919050565b60008115159050919050565b62000e948162000e7d565b82525050565b600060208201905062000eb1600083018462000e89565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000eef601f8362000dfa565b915062000efc8262000eb7565b602082019050919050565b6000602082019050818103600083015262000f228162000ee0565b9050919050565b62000f348162000c9c565b82525050565b600060208201905062000f51600083018462000f29565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000f9f57607f821691505b6020821081141562000fb65762000fb562000f57565b5b50919050565b60805160a051615d106200100c6000396000818161161a0152611da60152600081816111ab015281816138760152818161389d015281816144e8015281816145c901526145f00152615d106000f3fe6080604052600436106103c75760003560e01c80638a8c523c116101f2578063d168d1461161010d578063e7ad9fcd116100a0578063f2fde38b1161006f578063f2fde38b14610e94578063f637434214610ebd578063f8b45b0514610ee8578063fb35c32514610f13576103ce565b8063e7ad9fcd14610dda578063e9187b7414610e03578063f11a24d314610e40578063f14210a614610e6b576103ce565b8063dd62ed3e116100dc578063dd62ed3e14610d0a578063de0aad5314610d47578063e16b486914610d72578063e2f4560514610daf576103ce565b8063d168d14614610c4c578063d257b34f14610c77578063d49703c614610cb4578063d85ba06314610cdf576103ce565b8063a9059cbb11610185578063bbc0c74211610154578063bbc0c74214610ba4578063c024666814610bcf578063c18bc19514610bf8578063c8c8ebe414610c21576103ce565b8063a9059cbb14610ad8578063aacebbe314610b15578063ad8f346714610b3e578063b62496f514610b67576103ce565b806395d89b41116101c157806395d89b4114610a1c5780639a7a23d614610a47578063a002959c14610a70578063a457c2d714610a9b576103ce565b80638a8c523c146109865780638da5cb5b1461099d57806392136913146109c8578063924de9b7146109f3576103ce565b8063313ce567116102e2578063715018a61161027557806375f0a8741161024457806375f0a874146108e9578063782a2e3414610914578063790ca413146109305780637bce5a041461095b576103ce565b8063715018a61461085357806371d55b861461086a578063751039fc146108955780637571336a146108c0576103ce565b80634fbee193116102b15780634fbee193146107835780636a486a8e146107c05780636ddd1713146107eb57806370a0823114610816576103ce565b8063313ce567146106c557806339509351146106f057806349bd5a5e1461072d5780634a62bb6514610758576103ce565b80631a36d9301161035a578063203e727e11610329578063203e727e1461060b57806323b872dd1461063457806327c8f835146106715780632e6ed7ef1461069c576103ce565b80631a36d9301461055f5780631a8145bb1461058a5780631f3fed8f146105b55780631f7d5316146105e0576103ce565b806310d5de531161039657806310d5de531461048f5780631694505e146104cc57806318160ddd146104f75780631a1e2f0714610522576103ce565b806306b091f9146103d357806306fdde03146103fc578063095ea7b3146104275780630cfe2f3f14610464576103ce565b366103ce57005b600080fd5b3480156103df57600080fd5b506103fa60048036038101906103f59190614729565b610f3c565b005b34801561040857600080fd5b506104116110d3565b60405161041e9190614802565b60405180910390f35b34801561043357600080fd5b5061044e60048036038101906104499190614729565b611165565b60405161045b919061483f565b60405180910390f35b34801561047057600080fd5b50610479611183565b6040516104869190614869565b60405180910390f35b34801561049b57600080fd5b506104b660048036038101906104b19190614884565b611189565b6040516104c3919061483f565b60405180910390f35b3480156104d857600080fd5b506104e16111a9565b6040516104ee9190614910565b60405180910390f35b34801561050357600080fd5b5061050c6111cd565b6040516105199190614869565b60405180910390f35b34801561052e57600080fd5b506105496004803603810190610544919061492b565b6111d7565b6040516105569190614967565b60405180910390f35b34801561056b57600080fd5b5061057461120a565b6040516105819190614967565b60405180910390f35b34801561059657600080fd5b5061059f611230565b6040516105ac9190614869565b60405180910390f35b3480156105c157600080fd5b506105ca611236565b6040516105d79190614869565b60405180910390f35b3480156105ec57600080fd5b506105f561123c565b6040516106029190614869565b60405180910390f35b34801561061757600080fd5b50610632600480360381019061062d919061492b565b611242565b005b34801561064057600080fd5b5061065b60048036038101906106569190614982565b611351565b604051610668919061483f565b60405180910390f35b34801561067d57600080fd5b50610686611449565b6040516106939190614967565b60405180910390f35b3480156106a857600080fd5b506106c360048036038101906106be91906149d5565b61144f565b005b3480156106d157600080fd5b506106da611563565b6040516106e79190614a58565b60405180910390f35b3480156106fc57600080fd5b5061071760048036038101906107129190614729565b61156c565b604051610724919061483f565b60405180910390f35b34801561073957600080fd5b50610742611618565b60405161074f9190614967565b60405180910390f35b34801561076457600080fd5b5061076d61163c565b60405161077a919061483f565b60405180910390f35b34801561078f57600080fd5b506107aa60048036038101906107a59190614884565b61164f565b6040516107b7919061483f565b60405180910390f35b3480156107cc57600080fd5b506107d56116a5565b6040516107e29190614869565b60405180910390f35b3480156107f757600080fd5b506108006116ab565b60405161080d919061483f565b60405180910390f35b34801561082257600080fd5b5061083d60048036038101906108389190614884565b6116be565b60405161084a9190614869565b60405180910390f35b34801561085f57600080fd5b50610868611706565b005b34801561087657600080fd5b5061087f61178e565b60405161088c9190614869565b60405180910390f35b3480156108a157600080fd5b506108aa611794565b6040516108b7919061483f565b60405180910390f35b3480156108cc57600080fd5b506108e760048036038101906108e29190614a9f565b611834565b005b3480156108f557600080fd5b506108fe61190b565b60405161090b9190614967565b60405180910390f35b61092e60048036038101906109299190614b19565b611931565b005b34801561093c57600080fd5b50610945611b0d565b6040516109529190614869565b60405180910390f35b34801561096757600080fd5b50610970611b13565b60405161097d9190614869565b60405180910390f35b34801561099257600080fd5b5061099b611b19565b005b3480156109a957600080fd5b506109b2611bcd565b6040516109bf9190614967565b60405180910390f35b3480156109d457600080fd5b506109dd611bf7565b6040516109ea9190614869565b60405180910390f35b3480156109ff57600080fd5b50610a1a6004803603810190610a159190614b46565b611bfd565b005b348015610a2857600080fd5b50610a31611c96565b604051610a3e9190614802565b60405180910390f35b348015610a5357600080fd5b50610a6e6004803603810190610a699190614a9f565b611d28565b005b348015610a7c57600080fd5b50610a85611e41565b604051610a929190614869565b60405180910390f35b348015610aa757600080fd5b50610ac26004803603810190610abd9190614729565b611e47565b604051610acf919061483f565b60405180910390f35b348015610ae457600080fd5b50610aff6004803603810190610afa9190614729565b611f32565b604051610b0c919061483f565b60405180910390f35b348015610b2157600080fd5b50610b3c6004803603810190610b379190614884565b611f50565b005b348015610b4a57600080fd5b50610b656004803603810190610b609190614884565b61208c565b005b348015610b7357600080fd5b50610b8e6004803603810190610b899190614884565b61214c565b604051610b9b919061483f565b60405180910390f35b348015610bb057600080fd5b50610bb961216c565b604051610bc6919061483f565b60405180910390f35b348015610bdb57600080fd5b50610bf66004803603810190610bf19190614a9f565b61217f565b005b348015610c0457600080fd5b50610c1f6004803603810190610c1a919061492b565b6122a4565b005b348015610c2d57600080fd5b50610c366123b3565b604051610c439190614869565b60405180910390f35b348015610c5857600080fd5b50610c616123b9565b604051610c6e9190614869565b60405180910390f35b348015610c8357600080fd5b50610c9e6004803603810190610c99919061492b565b6123ec565b604051610cab919061483f565b60405180910390f35b348015610cc057600080fd5b50610cc961256e565b604051610cd69190614869565b60405180910390f35b348015610ceb57600080fd5b50610cf4612574565b604051610d019190614869565b60405180910390f35b348015610d1657600080fd5b50610d316004803603810190610d2c9190614b73565b61257a565b604051610d3e9190614869565b60405180910390f35b348015610d5357600080fd5b50610d5c612601565b604051610d699190614869565b60405180910390f35b348015610d7e57600080fd5b50610d996004803603810190610d94919061492b565b612607565b604051610da6919061483f565b60405180910390f35b348015610dbb57600080fd5b50610dc4612627565b604051610dd19190614869565b60405180910390f35b348015610de657600080fd5b50610e016004803603810190610dfc91906149d5565b61262d565b005b348015610e0f57600080fd5b50610e2a6004803603810190610e25919061492b565b612741565b604051610e379190614869565b60405180910390f35b348015610e4c57600080fd5b50610e55612759565b604051610e629190614869565b60405180910390f35b348015610e7757600080fd5b50610e926004803603810190610e8d919061492b565b61275f565b005b348015610ea057600080fd5b50610ebb6004803603810190610eb69190614884565b61283e565b005b348015610ec957600080fd5b50610ed2612936565b604051610edf9190614869565b60405180910390f35b348015610ef457600080fd5b50610efd61293c565b604051610f0a9190614869565b60405180910390f35b348015610f1f57600080fd5b50610f3a6004803603810190610f359190614884565b612942565b005b610f44612a7e565b73ffffffffffffffffffffffffffffffffffffffff16610f62611bcd565b73ffffffffffffffffffffffffffffffffffffffff1614610fb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faf90614bff565b60405180910390fd5b600082905060008211611044578073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610ffe9190614967565b602060405180830381865afa15801561101b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061103f9190614c34565b611046565b815b91508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61106c611bcd565b846040518363ffffffff1660e01b815260040161108a929190614c61565b6020604051808303816000875af11580156110a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110cd9190614c9f565b50505050565b6060600380546110e290614cfb565b80601f016020809104026020016040519081016040528092919081815260200182805461110e90614cfb565b801561115b5780601f106111305761010080835404028352916020019161115b565b820191906000526020600020905b81548152906001019060200180831161113e57829003601f168201915b5050505050905090565b6000611179611172612a7e565b8484612a86565b6001905092915050565b600f5481565b60216020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b601a6020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60175481565b60165481565b60155481565b61124a612a7e565b73ffffffffffffffffffffffffffffffffffffffff16611268611bcd565b73ffffffffffffffffffffffffffffffffffffffff16146112be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b590614bff565b60405180910390fd5b670de0b6b3a76400006103e860016112d46111cd565b6112de9190614d5c565b6112e89190614de5565b6112f29190614de5565b811015611334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132b90614e88565b60405180910390fd5b670de0b6b3a7640000816113489190614d5c565b60088190555050565b600061135e848484612c51565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006113a9612a7e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611429576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142090614f1a565b60405180910390fd5b61143d85611435612a7e565b858403612a86565b60019150509392505050565b61dead81565b611457612a7e565b73ffffffffffffffffffffffffffffffffffffffff16611475611bcd565b73ffffffffffffffffffffffffffffffffffffffff16146114cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c290614bff565b60405180910390fd5b83600d8190555082600e8190555081600f8190555080601081905550601054600f54600e54600d546114fd9190614f3a565b6115079190614f3a565b6115119190614f3a565b600c819055506019600c54111561155d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155490614fdc565b60405180910390fd5b50505050565b60006012905090565b600061160e611579612a7e565b848460016000611587612a7e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116099190614f3a565b612a86565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b6000602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60115481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61170e612a7e565b73ffffffffffffffffffffffffffffffffffffffff1661172c611bcd565b73ffffffffffffffffffffffffffffffffffffffff1614611782576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177990614bff565b60405180910390fd5b61178c60006137aa565b565b60105481565b600061179e612a7e565b73ffffffffffffffffffffffffffffffffffffffff166117bc611bcd565b73ffffffffffffffffffffffffffffffffffffffff1614611812576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180990614bff565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b61183c612a7e565b73ffffffffffffffffffffffffffffffffffffffff1661185a611bcd565b73ffffffffffffffffffffffffffffffffffffffff16146118b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a790614bff565b60405180910390fd5b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611939612a7e565b73ffffffffffffffffffffffffffffffffffffffff16611957611bcd565b73ffffffffffffffffffffffffffffffffffffffff16146119ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a490614bff565b60405180910390fd5b60648161ffff1611156119f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ec90615048565b60405180910390fd5b6000601d5414611a3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a31906150b4565b60405180910390fd5b60008161ffff161480611a4d5750600034115b611a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8390615120565b60405180910390fd5b600060648261ffff16611a9d6111cd565b611aa79190614d5c565b611ab19190614de5565b9050600081611abe6111cd565b611ac89190615140565b90506000821115611ade57611add8234613870565b5b6000811115611afa57611af930611af3611bcd565b83612c51565b5b42601d8190555043601e81905550505050565b601d5481565b600d5481565b611b21612a7e565b73ffffffffffffffffffffffffffffffffffffffff16611b3f611bcd565b73ffffffffffffffffffffffffffffffffffffffff1614611b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8c90614bff565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60125481565b611c05612a7e565b73ffffffffffffffffffffffffffffffffffffffff16611c23611bcd565b73ffffffffffffffffffffffffffffffffffffffff1614611c79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7090614bff565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b606060048054611ca590614cfb565b80601f0160208091040260200160405190810160405280929190818152602001828054611cd190614cfb565b8015611d1e5780601f10611cf357610100808354040283529160200191611d1e565b820191906000526020600020905b815481529060010190602001808311611d0157829003601f168201915b5050505050905090565b611d30612a7e565b73ffffffffffffffffffffffffffffffffffffffff16611d4e611bcd565b73ffffffffffffffffffffffffffffffffffffffff1614611da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9b90614bff565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2a906151e6565b60405180910390fd5b611e3d828261396c565b5050565b60185481565b60008060016000611e56612a7e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611f13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0a90615278565b60405180910390fd5b611f27611f1e612a7e565b85858403612a86565b600191505092915050565b6000611f46611f3f612a7e565b8484612c51565b6001905092915050565b611f58612a7e565b73ffffffffffffffffffffffffffffffffffffffff16611f76611bcd565b73ffffffffffffffffffffffffffffffffffffffff1614611fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc390614bff565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612094612a7e565b73ffffffffffffffffffffffffffffffffffffffff166120b2611bcd565b73ffffffffffffffffffffffffffffffffffffffff1614612108576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ff90614bff565b60405180910390fd5b80601f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60226020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b612187612a7e565b73ffffffffffffffffffffffffffffffffffffffff166121a5611bcd565b73ffffffffffffffffffffffffffffffffffffffff16146121fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f290614bff565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051612298919061483f565b60405180910390a25050565b6122ac612a7e565b73ffffffffffffffffffffffffffffffffffffffff166122ca611bcd565b73ffffffffffffffffffffffffffffffffffffffff1614612320576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231790614bff565b60405180910390fd5b670de0b6b3a76400006103e860056123366111cd565b6123409190614d5c565b61234a9190614de5565b6123549190614de5565b811015612396576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238d9061530a565b60405180910390fd5b670de0b6b3a7640000816123aa9190614d5c565b600a8190555050565b60085481565b600080601d54426123ca9190615140565b9050610e10816123da9190614de5565b60016123e69190614f3a565b91505090565b60006123f6612a7e565b73ffffffffffffffffffffffffffffffffffffffff16612414611bcd565b73ffffffffffffffffffffffffffffffffffffffff161461246a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246190614bff565b60405180910390fd5b670de0b6b3a7640000620186a061247f6111cd565b6124899190614de5565b6124939190614de5565b8210156124d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124cc9061539c565b60405180910390fd5b670de0b6b3a76400006103e860146124eb6111cd565b6124f59190614d5c565b6124ff9190614de5565b6125099190614de5565b82111561254b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125429061542e565b60405180910390fd5b670de0b6b3a76400008261255f9190614d5c565b60098190555060019050919050565b60195481565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60145481565b601c6020528060005260406000206000915054906101000a900460ff1681565b60095481565b612635612a7e565b73ffffffffffffffffffffffffffffffffffffffff16612653611bcd565b73ffffffffffffffffffffffffffffffffffffffff16146126a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a090614bff565b60405180910390fd5b836012819055508260138190555081601481905550806015819055506015546014546013546012546126db9190614f3a565b6126e59190614f3a565b6126ef9190614f3a565b6011819055506019601154111561273b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273290614fdc565b60405180910390fd5b50505050565b601b6020528060005260406000206000915090505481565b600e5481565b612767612a7e565b73ffffffffffffffffffffffffffffffffffffffff16612785611bcd565b73ffffffffffffffffffffffffffffffffffffffff16146127db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d290614bff565b60405180910390fd5b600081146127e957806127eb565b475b90506127f5611bcd565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561283a573d6000803e3d6000fd5b5050565b612846612a7e565b73ffffffffffffffffffffffffffffffffffffffff16612864611bcd565b73ffffffffffffffffffffffffffffffffffffffff16146128ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b190614bff565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561292a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612921906154c0565b60405180910390fd5b612933816137aa565b50565b60135481565b600a5481565b61294a612a7e565b73ffffffffffffffffffffffffffffffffffffffff16612968611bcd565b73ffffffffffffffffffffffffffffffffffffffff16146129be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b590614bff565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167feb7490a2c1a7f0412cdcde74669f1352d9429069cc4c1f4823f8621f50e6e2e760405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aed90615552565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5d906155e4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612c449190614869565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb890615676565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2890615708565b60405180910390fd5b60008111612d74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6b9061579a565b60405180910390fd5b6000612d7e6123b9565b9050600b60009054906101000a900460ff161561326657612d9d611bcd565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015612e0b5750612ddb611bcd565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015612e445750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015612e7e575061dead73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015612e975750600560149054906101000a900460ff16155b1561326557600b60019054906101000a900460ff16612f9157602060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612f515750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612f90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f8790615806565b60405180910390fd5b5b602260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156130c657600a54612fef846116be565b83612ffa9190614f3a565b111561303b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303290615872565b60405180910390fd5b601b6000828152602001908152602001600020548211156130c15782601a600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081601b6000838152602001908152602001600020819055505b613264565b602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131695750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131b8576008548211156131b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131aa90615904565b60405180910390fd5b613263565b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661326257600a54613215846116be565b836132209190614f3a565b1115613261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325890615872565b60405180910390fd5b5b5b5b5b5b6000613271306116be565b9050600060095482101590508080156132965750600b60029054906101000a900460ff165b80156132af5750600560149054906101000a900460ff16155b80156133055750602260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561335b5750602060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133b15750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156133f6576001600560146101000a81548160ff0219169083151502179055506133da83613a0d565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050602060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806134ac5750602060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156134b657600090505b6000811561379557602260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561351957506000601154115b156136195761354660646135386011548961418690919063ffffffff16565b61419c90919063ffffffff16565b9050601154601354826135599190614d5c565b6135639190614de5565b601760008282546135749190614f3a565b925050819055506011546014548261358c9190614d5c565b6135969190614de5565b601860008282546135a79190614f3a565b92505081905550601154601254826135bf9190614d5c565b6135c99190614de5565b601660008282546135da9190614f3a565b92505081905550601154601554826135f29190614d5c565b6135fc9190614de5565b6019600082825461360d9190614f3a565b92505081905550613771565b602260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561367457506000600c54115b15613770576136a16064613693600c548961418690919063ffffffff16565b61419c90919063ffffffff16565b9050600c54600e54826136b49190614d5c565b6136be9190614de5565b601760008282546136cf9190614f3a565b92505081905550600c54600f54826136e79190614d5c565b6136f19190614de5565b601860008282546137029190614f3a565b92505081905550600c54600d548261371a9190614d5c565b6137249190614de5565b601660008282546137359190614f3a565b92505081905550600c546010548261374d9190614d5c565b6137579190614de5565b601960008282546137689190614f3a565b925050819055505b5b6000811115613786576137858830836141b2565b5b80866137929190615140565b95505b6137a08888886141b2565b5050505050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61389b307f000000000000000000000000000000000000000000000000000000000000000084612a86565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080601f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016139229695949392919061595f565b60606040518083038185885af1158015613940573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061396591906159c0565b5050505050565b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000613a18306116be565b90506000600183613a299190615140565b9050600183118015613a4e57506000601b600083815260200190815260200160002054115b8015613a785750601c600082815260200190815260200160002060009054906101000a900460ff16155b15613e6f576000601954601854601654601754613a959190614f3a565b613a9f9190614f3a565b613aa99190614f3a565b9050600080841480613abb5750600082145b15613ac95750505050614183565b6014600954613ad89190614d5c565b841115613af1576014600954613aee9190614d5c565b93505b600060028360175487613b049190614d5c565b613b0e9190614de5565b613b189190614de5565b90506000613b2f828761443390919063ffffffff16565b90506000479050613b3f82614449565b6000613b54824761443390919063ffffffff16565b90506000613b7f87613b716016548561418690919063ffffffff16565b61419c90919063ffffffff16565b90506000613baa88613b9c6018548661418690919063ffffffff16565b61419c90919063ffffffff16565b90506000613bd589613bc76019548761418690919063ffffffff16565b61419c90919063ffffffff16565b9050600081838587613be79190615140565b613bf19190615140565b613bfb9190615140565b90506000601781905550600060168190555060006018819055506000601981905550601a60008c815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683604051613c7490615a44565b60006040518083038185875af1925050503d8060008114613cb1576040519150601f19603f3d011682016040523d82523d6000602084013e613cb6565b606091505b50508099505088601c60008d815260200190815260200160002060006101000a81548160ff021916908315150217905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613d2d90615a44565b60006040518083038185875af1925050503d8060008114613d6a576040519150601f19603f3d011682016040523d82523d6000602084013e613d6f565b606091505b505080995050600088118015613d855750600081115b15613dd257613d948882613870565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618782601754604051613dc993929190615a59565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613e1890615a44565b60006040518083038185875af1925050503d8060008114613e55576040519150601f19603f3d011682016040523d82523d6000602084013e613e5a565b606091505b50508099505050505050505050505050614180565b60095460185483613e809190615140565b111561417f576000601954601654601754613e9b9190614f3a565b613ea59190614f3a565b9050600080841480613eb75750600082145b15613ec55750505050614183565b6014600954613ed49190614d5c565b841115613eed576014600954613eea9190614d5c565b93505b600060028360175460185488613f039190615140565b613f0d9190614d5c565b613f179190614de5565b613f219190614de5565b90506000613f4c601854613f3e848961443390919063ffffffff16565b61443390919063ffffffff16565b90506000479050613f5c82614449565b6000613f71824761443390919063ffffffff16565b90506000613f9c87613f8e6016548561418690919063ffffffff16565b61419c90919063ffffffff16565b90506000613fc788613fb96019548661418690919063ffffffff16565b61419c90919063ffffffff16565b90506000818385613fd89190615140565b613fe29190615140565b9050600060178190555060006016819055506000601981905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161404290615a44565b60006040518083038185875af1925050503d806000811461407f576040519150601f19603f3d011682016040523d82523d6000602084013e614084565b606091505b50508098505060008711801561409a5750600081115b156140e7576140a98782613870565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56186826017546040516140de93929190615a59565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161412d90615a44565b60006040518083038185875af1925050503d806000811461416a576040519150601f19603f3d011682016040523d82523d6000602084013e61416f565b606091505b5050809850505050505050505050505b5b50505b50565b600081836141949190614d5c565b905092915050565b600081836141aa9190614de5565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415614222576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161421990615676565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614292576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161428990615708565b60405180910390fd5b61429d838383614686565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015614323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161431a90615b02565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546143b69190614f3a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161441a9190614869565b60405180910390a361442d84848461468b565b50505050565b600081836144419190615140565b905092915050565b6000600267ffffffffffffffff81111561446657614465615b22565b5b6040519080825280602002602001820160405280156144945781602001602082028036833780820191505090505b50905030816000815181106144ac576144ab615b51565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015614551573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906145759190615b95565b8160018151811061458957614588615b51565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506145ee307f000000000000000000000000000000000000000000000000000000000000000084612a86565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401614650959493929190615c80565b600060405180830381600087803b15801561466a57600080fd5b505af115801561467e573d6000803e3d6000fd5b505050505050565b505050565b505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006146c082614695565b9050919050565b6146d0816146b5565b81146146db57600080fd5b50565b6000813590506146ed816146c7565b92915050565b6000819050919050565b614706816146f3565b811461471157600080fd5b50565b600081359050614723816146fd565b92915050565b600080604083850312156147405761473f614690565b5b600061474e858286016146de565b925050602061475f85828601614714565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156147a3578082015181840152602081019050614788565b838111156147b2576000848401525b50505050565b6000601f19601f8301169050919050565b60006147d482614769565b6147de8185614774565b93506147ee818560208601614785565b6147f7816147b8565b840191505092915050565b6000602082019050818103600083015261481c81846147c9565b905092915050565b60008115159050919050565b61483981614824565b82525050565b60006020820190506148546000830184614830565b92915050565b614863816146f3565b82525050565b600060208201905061487e600083018461485a565b92915050565b60006020828403121561489a57614899614690565b5b60006148a8848285016146de565b91505092915050565b6000819050919050565b60006148d66148d16148cc84614695565b6148b1565b614695565b9050919050565b60006148e8826148bb565b9050919050565b60006148fa826148dd565b9050919050565b61490a816148ef565b82525050565b60006020820190506149256000830184614901565b92915050565b60006020828403121561494157614940614690565b5b600061494f84828501614714565b91505092915050565b614961816146b5565b82525050565b600060208201905061497c6000830184614958565b92915050565b60008060006060848603121561499b5761499a614690565b5b60006149a9868287016146de565b93505060206149ba868287016146de565b92505060406149cb86828701614714565b9150509250925092565b600080600080608085870312156149ef576149ee614690565b5b60006149fd87828801614714565b9450506020614a0e87828801614714565b9350506040614a1f87828801614714565b9250506060614a3087828801614714565b91505092959194509250565b600060ff82169050919050565b614a5281614a3c565b82525050565b6000602082019050614a6d6000830184614a49565b92915050565b614a7c81614824565b8114614a8757600080fd5b50565b600081359050614a9981614a73565b92915050565b60008060408385031215614ab657614ab5614690565b5b6000614ac4858286016146de565b9250506020614ad585828601614a8a565b9150509250929050565b600061ffff82169050919050565b614af681614adf565b8114614b0157600080fd5b50565b600081359050614b1381614aed565b92915050565b600060208284031215614b2f57614b2e614690565b5b6000614b3d84828501614b04565b91505092915050565b600060208284031215614b5c57614b5b614690565b5b6000614b6a84828501614a8a565b91505092915050565b60008060408385031215614b8a57614b89614690565b5b6000614b98858286016146de565b9250506020614ba9858286016146de565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614be9602083614774565b9150614bf482614bb3565b602082019050919050565b60006020820190508181036000830152614c1881614bdc565b9050919050565b600081519050614c2e816146fd565b92915050565b600060208284031215614c4a57614c49614690565b5b6000614c5884828501614c1f565b91505092915050565b6000604082019050614c766000830185614958565b614c83602083018461485a565b9392505050565b600081519050614c9981614a73565b92915050565b600060208284031215614cb557614cb4614690565b5b6000614cc384828501614c8a565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614d1357607f821691505b60208210811415614d2757614d26614ccc565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614d67826146f3565b9150614d72836146f3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614dab57614daa614d2d565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614df0826146f3565b9150614dfb836146f3565b925082614e0b57614e0a614db6565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614e72602f83614774565b9150614e7d82614e16565b604082019050919050565b60006020820190508181036000830152614ea181614e65565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614f04602883614774565b9150614f0f82614ea8565b604082019050919050565b60006020820190508181036000830152614f3381614ef7565b9050919050565b6000614f45826146f3565b9150614f50836146f3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614f8557614f84614d2d565b5b828201905092915050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000614fc6601d83614774565b9150614fd182614f90565b602082019050919050565b60006020820190508181036000830152614ff581614fb9565b9050919050565b7f6d757374206265206265747765656e20302d3130302500000000000000000000600082015250565b6000615032601683614774565b915061503d82614ffc565b602082019050919050565b6000602082019050818103600083015261506181615025565b9050919050565b7f616c7265616479206c61756e6368656400000000000000000000000000000000600082015250565b600061509e601083614774565b91506150a982615068565b602082019050919050565b600060208201905081810360008301526150cd81615091565b9050919050565b7f6e6565642045544820666f7220696e697469616c204c50000000000000000000600082015250565b600061510a601783614774565b9150615115826150d4565b602082019050919050565b60006020820190508181036000830152615139816150fd565b9050919050565b600061514b826146f3565b9150615156836146f3565b92508282101561516957615168614d2d565b5b828203905092915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006151d0603983614774565b91506151db82615174565b604082019050919050565b600060208201905081810360008301526151ff816151c3565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000615262602583614774565b915061526d82615206565b604082019050919050565b6000602082019050818103600083015261529181615255565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006152f4602483614774565b91506152ff82615298565b604082019050919050565b60006020820190508181036000830152615323816152e7565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000615386603583614774565b91506153918261532a565b604082019050919050565b600060208201905081810360008301526153b581615379565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20322520746f74616c20737570706c792e0000000000000000000000000000602082015250565b6000615418603283614774565b9150615423826153bc565b604082019050919050565b600060208201905081810360008301526154478161540b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006154aa602683614774565b91506154b58261544e565b604082019050919050565b600060208201905081810360008301526154d98161549d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061553c602483614774565b9150615547826154e0565b604082019050919050565b6000602082019050818103600083015261556b8161552f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006155ce602283614774565b91506155d982615572565b604082019050919050565b600060208201905081810360008301526155fd816155c1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000615660602583614774565b915061566b82615604565b604082019050919050565b6000602082019050818103600083015261568f81615653565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006156f2602383614774565b91506156fd82615696565b604082019050919050565b60006020820190508181036000830152615721816156e5565b9050919050565b7f45524332303a207472616e73666572206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000615784602983614774565b915061578f82615728565b604082019050919050565b600060208201905081810360008301526157b381615777565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006157f0601683614774565b91506157fb826157ba565b602082019050919050565b6000602082019050818103600083015261581f816157e3565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061585c601383614774565b915061586782615826565b602082019050919050565b6000602082019050818103600083015261588b8161584f565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006158ee603683614774565b91506158f982615892565b604082019050919050565b6000602082019050818103600083015261591d816158e1565b9050919050565b6000819050919050565b600061594961594461593f84615924565b6148b1565b6146f3565b9050919050565b6159598161592e565b82525050565b600060c0820190506159746000830189614958565b615981602083018861485a565b61598e6040830187615950565b61599b6060830186615950565b6159a86080830185614958565b6159b560a083018461485a565b979650505050505050565b6000806000606084860312156159d9576159d8614690565b5b60006159e786828701614c1f565b93505060206159f886828701614c1f565b9250506040615a0986828701614c1f565b9150509250925092565b600081905092915050565b50565b6000615a2e600083615a13565b9150615a3982615a1e565b600082019050919050565b6000615a4f82615a21565b9150819050919050565b6000606082019050615a6e600083018661485a565b615a7b602083018561485a565b615a88604083018461485a565b949350505050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000615aec602683614774565b9150615af782615a90565b604082019050919050565b60006020820190508181036000830152615b1b81615adf565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050615b8f816146c7565b92915050565b600060208284031215615bab57615baa614690565b5b6000615bb984828501615b80565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615bf7816146b5565b82525050565b6000615c098383615bee565b60208301905092915050565b6000602082019050919050565b6000615c2d82615bc2565b615c378185615bcd565b9350615c4283615bde565b8060005b83811015615c73578151615c5a8882615bfd565b9750615c6583615c15565b925050600181019050615c46565b5085935050505092915050565b600060a082019050615c95600083018861485a565b615ca26020830187615950565b8181036040830152615cb48186615c22565b9050615cc36060830185614958565b615cd0608083018461485a565b969550505050505056fea2646970667358221220fa374b2c953560b83a2270dd1bab8471c5d531593e5e213a839cc64d9734c87d64736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106103c75760003560e01c80638a8c523c116101f2578063d168d1461161010d578063e7ad9fcd116100a0578063f2fde38b1161006f578063f2fde38b14610e94578063f637434214610ebd578063f8b45b0514610ee8578063fb35c32514610f13576103ce565b8063e7ad9fcd14610dda578063e9187b7414610e03578063f11a24d314610e40578063f14210a614610e6b576103ce565b8063dd62ed3e116100dc578063dd62ed3e14610d0a578063de0aad5314610d47578063e16b486914610d72578063e2f4560514610daf576103ce565b8063d168d14614610c4c578063d257b34f14610c77578063d49703c614610cb4578063d85ba06314610cdf576103ce565b8063a9059cbb11610185578063bbc0c74211610154578063bbc0c74214610ba4578063c024666814610bcf578063c18bc19514610bf8578063c8c8ebe414610c21576103ce565b8063a9059cbb14610ad8578063aacebbe314610b15578063ad8f346714610b3e578063b62496f514610b67576103ce565b806395d89b41116101c157806395d89b4114610a1c5780639a7a23d614610a47578063a002959c14610a70578063a457c2d714610a9b576103ce565b80638a8c523c146109865780638da5cb5b1461099d57806392136913146109c8578063924de9b7146109f3576103ce565b8063313ce567116102e2578063715018a61161027557806375f0a8741161024457806375f0a874146108e9578063782a2e3414610914578063790ca413146109305780637bce5a041461095b576103ce565b8063715018a61461085357806371d55b861461086a578063751039fc146108955780637571336a146108c0576103ce565b80634fbee193116102b15780634fbee193146107835780636a486a8e146107c05780636ddd1713146107eb57806370a0823114610816576103ce565b8063313ce567146106c557806339509351146106f057806349bd5a5e1461072d5780634a62bb6514610758576103ce565b80631a36d9301161035a578063203e727e11610329578063203e727e1461060b57806323b872dd1461063457806327c8f835146106715780632e6ed7ef1461069c576103ce565b80631a36d9301461055f5780631a8145bb1461058a5780631f3fed8f146105b55780631f7d5316146105e0576103ce565b806310d5de531161039657806310d5de531461048f5780631694505e146104cc57806318160ddd146104f75780631a1e2f0714610522576103ce565b806306b091f9146103d357806306fdde03146103fc578063095ea7b3146104275780630cfe2f3f14610464576103ce565b366103ce57005b600080fd5b3480156103df57600080fd5b506103fa60048036038101906103f59190614729565b610f3c565b005b34801561040857600080fd5b506104116110d3565b60405161041e9190614802565b60405180910390f35b34801561043357600080fd5b5061044e60048036038101906104499190614729565b611165565b60405161045b919061483f565b60405180910390f35b34801561047057600080fd5b50610479611183565b6040516104869190614869565b60405180910390f35b34801561049b57600080fd5b506104b660048036038101906104b19190614884565b611189565b6040516104c3919061483f565b60405180910390f35b3480156104d857600080fd5b506104e16111a9565b6040516104ee9190614910565b60405180910390f35b34801561050357600080fd5b5061050c6111cd565b6040516105199190614869565b60405180910390f35b34801561052e57600080fd5b506105496004803603810190610544919061492b565b6111d7565b6040516105569190614967565b60405180910390f35b34801561056b57600080fd5b5061057461120a565b6040516105819190614967565b60405180910390f35b34801561059657600080fd5b5061059f611230565b6040516105ac9190614869565b60405180910390f35b3480156105c157600080fd5b506105ca611236565b6040516105d79190614869565b60405180910390f35b3480156105ec57600080fd5b506105f561123c565b6040516106029190614869565b60405180910390f35b34801561061757600080fd5b50610632600480360381019061062d919061492b565b611242565b005b34801561064057600080fd5b5061065b60048036038101906106569190614982565b611351565b604051610668919061483f565b60405180910390f35b34801561067d57600080fd5b50610686611449565b6040516106939190614967565b60405180910390f35b3480156106a857600080fd5b506106c360048036038101906106be91906149d5565b61144f565b005b3480156106d157600080fd5b506106da611563565b6040516106e79190614a58565b60405180910390f35b3480156106fc57600080fd5b5061071760048036038101906107129190614729565b61156c565b604051610724919061483f565b60405180910390f35b34801561073957600080fd5b50610742611618565b60405161074f9190614967565b60405180910390f35b34801561076457600080fd5b5061076d61163c565b60405161077a919061483f565b60405180910390f35b34801561078f57600080fd5b506107aa60048036038101906107a59190614884565b61164f565b6040516107b7919061483f565b60405180910390f35b3480156107cc57600080fd5b506107d56116a5565b6040516107e29190614869565b60405180910390f35b3480156107f757600080fd5b506108006116ab565b60405161080d919061483f565b60405180910390f35b34801561082257600080fd5b5061083d60048036038101906108389190614884565b6116be565b60405161084a9190614869565b60405180910390f35b34801561085f57600080fd5b50610868611706565b005b34801561087657600080fd5b5061087f61178e565b60405161088c9190614869565b60405180910390f35b3480156108a157600080fd5b506108aa611794565b6040516108b7919061483f565b60405180910390f35b3480156108cc57600080fd5b506108e760048036038101906108e29190614a9f565b611834565b005b3480156108f557600080fd5b506108fe61190b565b60405161090b9190614967565b60405180910390f35b61092e60048036038101906109299190614b19565b611931565b005b34801561093c57600080fd5b50610945611b0d565b6040516109529190614869565b60405180910390f35b34801561096757600080fd5b50610970611b13565b60405161097d9190614869565b60405180910390f35b34801561099257600080fd5b5061099b611b19565b005b3480156109a957600080fd5b506109b2611bcd565b6040516109bf9190614967565b60405180910390f35b3480156109d457600080fd5b506109dd611bf7565b6040516109ea9190614869565b60405180910390f35b3480156109ff57600080fd5b50610a1a6004803603810190610a159190614b46565b611bfd565b005b348015610a2857600080fd5b50610a31611c96565b604051610a3e9190614802565b60405180910390f35b348015610a5357600080fd5b50610a6e6004803603810190610a699190614a9f565b611d28565b005b348015610a7c57600080fd5b50610a85611e41565b604051610a929190614869565b60405180910390f35b348015610aa757600080fd5b50610ac26004803603810190610abd9190614729565b611e47565b604051610acf919061483f565b60405180910390f35b348015610ae457600080fd5b50610aff6004803603810190610afa9190614729565b611f32565b604051610b0c919061483f565b60405180910390f35b348015610b2157600080fd5b50610b3c6004803603810190610b379190614884565b611f50565b005b348015610b4a57600080fd5b50610b656004803603810190610b609190614884565b61208c565b005b348015610b7357600080fd5b50610b8e6004803603810190610b899190614884565b61214c565b604051610b9b919061483f565b60405180910390f35b348015610bb057600080fd5b50610bb961216c565b604051610bc6919061483f565b60405180910390f35b348015610bdb57600080fd5b50610bf66004803603810190610bf19190614a9f565b61217f565b005b348015610c0457600080fd5b50610c1f6004803603810190610c1a919061492b565b6122a4565b005b348015610c2d57600080fd5b50610c366123b3565b604051610c439190614869565b60405180910390f35b348015610c5857600080fd5b50610c616123b9565b604051610c6e9190614869565b60405180910390f35b348015610c8357600080fd5b50610c9e6004803603810190610c99919061492b565b6123ec565b604051610cab919061483f565b60405180910390f35b348015610cc057600080fd5b50610cc961256e565b604051610cd69190614869565b60405180910390f35b348015610ceb57600080fd5b50610cf4612574565b604051610d019190614869565b60405180910390f35b348015610d1657600080fd5b50610d316004803603810190610d2c9190614b73565b61257a565b604051610d3e9190614869565b60405180910390f35b348015610d5357600080fd5b50610d5c612601565b604051610d699190614869565b60405180910390f35b348015610d7e57600080fd5b50610d996004803603810190610d94919061492b565b612607565b604051610da6919061483f565b60405180910390f35b348015610dbb57600080fd5b50610dc4612627565b604051610dd19190614869565b60405180910390f35b348015610de657600080fd5b50610e016004803603810190610dfc91906149d5565b61262d565b005b348015610e0f57600080fd5b50610e2a6004803603810190610e25919061492b565b612741565b604051610e379190614869565b60405180910390f35b348015610e4c57600080fd5b50610e55612759565b604051610e629190614869565b60405180910390f35b348015610e7757600080fd5b50610e926004803603810190610e8d919061492b565b61275f565b005b348015610ea057600080fd5b50610ebb6004803603810190610eb69190614884565b61283e565b005b348015610ec957600080fd5b50610ed2612936565b604051610edf9190614869565b60405180910390f35b348015610ef457600080fd5b50610efd61293c565b604051610f0a9190614869565b60405180910390f35b348015610f1f57600080fd5b50610f3a6004803603810190610f359190614884565b612942565b005b610f44612a7e565b73ffffffffffffffffffffffffffffffffffffffff16610f62611bcd565b73ffffffffffffffffffffffffffffffffffffffff1614610fb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faf90614bff565b60405180910390fd5b600082905060008211611044578073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610ffe9190614967565b602060405180830381865afa15801561101b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061103f9190614c34565b611046565b815b91508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61106c611bcd565b846040518363ffffffff1660e01b815260040161108a929190614c61565b6020604051808303816000875af11580156110a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110cd9190614c9f565b50505050565b6060600380546110e290614cfb565b80601f016020809104026020016040519081016040528092919081815260200182805461110e90614cfb565b801561115b5780601f106111305761010080835404028352916020019161115b565b820191906000526020600020905b81548152906001019060200180831161113e57829003601f168201915b5050505050905090565b6000611179611172612a7e565b8484612a86565b6001905092915050565b600f5481565b60216020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b601a6020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60175481565b60165481565b60155481565b61124a612a7e565b73ffffffffffffffffffffffffffffffffffffffff16611268611bcd565b73ffffffffffffffffffffffffffffffffffffffff16146112be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b590614bff565b60405180910390fd5b670de0b6b3a76400006103e860016112d46111cd565b6112de9190614d5c565b6112e89190614de5565b6112f29190614de5565b811015611334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132b90614e88565b60405180910390fd5b670de0b6b3a7640000816113489190614d5c565b60088190555050565b600061135e848484612c51565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006113a9612a7e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611429576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142090614f1a565b60405180910390fd5b61143d85611435612a7e565b858403612a86565b60019150509392505050565b61dead81565b611457612a7e565b73ffffffffffffffffffffffffffffffffffffffff16611475611bcd565b73ffffffffffffffffffffffffffffffffffffffff16146114cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c290614bff565b60405180910390fd5b83600d8190555082600e8190555081600f8190555080601081905550601054600f54600e54600d546114fd9190614f3a565b6115079190614f3a565b6115119190614f3a565b600c819055506019600c54111561155d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155490614fdc565b60405180910390fd5b50505050565b60006012905090565b600061160e611579612a7e565b848460016000611587612a7e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116099190614f3a565b612a86565b6001905092915050565b7f00000000000000000000000047f828dbcbc713668a06cd650293ca0259cc4f5181565b600b60009054906101000a900460ff1681565b6000602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60115481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61170e612a7e565b73ffffffffffffffffffffffffffffffffffffffff1661172c611bcd565b73ffffffffffffffffffffffffffffffffffffffff1614611782576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177990614bff565b60405180910390fd5b61178c60006137aa565b565b60105481565b600061179e612a7e565b73ffffffffffffffffffffffffffffffffffffffff166117bc611bcd565b73ffffffffffffffffffffffffffffffffffffffff1614611812576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180990614bff565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b61183c612a7e565b73ffffffffffffffffffffffffffffffffffffffff1661185a611bcd565b73ffffffffffffffffffffffffffffffffffffffff16146118b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a790614bff565b60405180910390fd5b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611939612a7e565b73ffffffffffffffffffffffffffffffffffffffff16611957611bcd565b73ffffffffffffffffffffffffffffffffffffffff16146119ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a490614bff565b60405180910390fd5b60648161ffff1611156119f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ec90615048565b60405180910390fd5b6000601d5414611a3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a31906150b4565b60405180910390fd5b60008161ffff161480611a4d5750600034115b611a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8390615120565b60405180910390fd5b600060648261ffff16611a9d6111cd565b611aa79190614d5c565b611ab19190614de5565b9050600081611abe6111cd565b611ac89190615140565b90506000821115611ade57611add8234613870565b5b6000811115611afa57611af930611af3611bcd565b83612c51565b5b42601d8190555043601e81905550505050565b601d5481565b600d5481565b611b21612a7e565b73ffffffffffffffffffffffffffffffffffffffff16611b3f611bcd565b73ffffffffffffffffffffffffffffffffffffffff1614611b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8c90614bff565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60125481565b611c05612a7e565b73ffffffffffffffffffffffffffffffffffffffff16611c23611bcd565b73ffffffffffffffffffffffffffffffffffffffff1614611c79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7090614bff565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b606060048054611ca590614cfb565b80601f0160208091040260200160405190810160405280929190818152602001828054611cd190614cfb565b8015611d1e5780601f10611cf357610100808354040283529160200191611d1e565b820191906000526020600020905b815481529060010190602001808311611d0157829003601f168201915b5050505050905090565b611d30612a7e565b73ffffffffffffffffffffffffffffffffffffffff16611d4e611bcd565b73ffffffffffffffffffffffffffffffffffffffff1614611da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9b90614bff565b60405180910390fd5b7f00000000000000000000000047f828dbcbc713668a06cd650293ca0259cc4f5173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2a906151e6565b60405180910390fd5b611e3d828261396c565b5050565b60185481565b60008060016000611e56612a7e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611f13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0a90615278565b60405180910390fd5b611f27611f1e612a7e565b85858403612a86565b600191505092915050565b6000611f46611f3f612a7e565b8484612c51565b6001905092915050565b611f58612a7e565b73ffffffffffffffffffffffffffffffffffffffff16611f76611bcd565b73ffffffffffffffffffffffffffffffffffffffff1614611fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc390614bff565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612094612a7e565b73ffffffffffffffffffffffffffffffffffffffff166120b2611bcd565b73ffffffffffffffffffffffffffffffffffffffff1614612108576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ff90614bff565b60405180910390fd5b80601f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60226020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b612187612a7e565b73ffffffffffffffffffffffffffffffffffffffff166121a5611bcd565b73ffffffffffffffffffffffffffffffffffffffff16146121fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f290614bff565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051612298919061483f565b60405180910390a25050565b6122ac612a7e565b73ffffffffffffffffffffffffffffffffffffffff166122ca611bcd565b73ffffffffffffffffffffffffffffffffffffffff1614612320576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231790614bff565b60405180910390fd5b670de0b6b3a76400006103e860056123366111cd565b6123409190614d5c565b61234a9190614de5565b6123549190614de5565b811015612396576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238d9061530a565b60405180910390fd5b670de0b6b3a7640000816123aa9190614d5c565b600a8190555050565b60085481565b600080601d54426123ca9190615140565b9050610e10816123da9190614de5565b60016123e69190614f3a565b91505090565b60006123f6612a7e565b73ffffffffffffffffffffffffffffffffffffffff16612414611bcd565b73ffffffffffffffffffffffffffffffffffffffff161461246a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246190614bff565b60405180910390fd5b670de0b6b3a7640000620186a061247f6111cd565b6124899190614de5565b6124939190614de5565b8210156124d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124cc9061539c565b60405180910390fd5b670de0b6b3a76400006103e860146124eb6111cd565b6124f59190614d5c565b6124ff9190614de5565b6125099190614de5565b82111561254b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125429061542e565b60405180910390fd5b670de0b6b3a76400008261255f9190614d5c565b60098190555060019050919050565b60195481565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60145481565b601c6020528060005260406000206000915054906101000a900460ff1681565b60095481565b612635612a7e565b73ffffffffffffffffffffffffffffffffffffffff16612653611bcd565b73ffffffffffffffffffffffffffffffffffffffff16146126a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a090614bff565b60405180910390fd5b836012819055508260138190555081601481905550806015819055506015546014546013546012546126db9190614f3a565b6126e59190614f3a565b6126ef9190614f3a565b6011819055506019601154111561273b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273290614fdc565b60405180910390fd5b50505050565b601b6020528060005260406000206000915090505481565b600e5481565b612767612a7e565b73ffffffffffffffffffffffffffffffffffffffff16612785611bcd565b73ffffffffffffffffffffffffffffffffffffffff16146127db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d290614bff565b60405180910390fd5b600081146127e957806127eb565b475b90506127f5611bcd565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561283a573d6000803e3d6000fd5b5050565b612846612a7e565b73ffffffffffffffffffffffffffffffffffffffff16612864611bcd565b73ffffffffffffffffffffffffffffffffffffffff16146128ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b190614bff565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561292a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612921906154c0565b60405180910390fd5b612933816137aa565b50565b60135481565b600a5481565b61294a612a7e565b73ffffffffffffffffffffffffffffffffffffffff16612968611bcd565b73ffffffffffffffffffffffffffffffffffffffff16146129be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b590614bff565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167feb7490a2c1a7f0412cdcde74669f1352d9429069cc4c1f4823f8621f50e6e2e760405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aed90615552565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5d906155e4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612c449190614869565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb890615676565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2890615708565b60405180910390fd5b60008111612d74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6b9061579a565b60405180910390fd5b6000612d7e6123b9565b9050600b60009054906101000a900460ff161561326657612d9d611bcd565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015612e0b5750612ddb611bcd565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015612e445750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015612e7e575061dead73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015612e975750600560149054906101000a900460ff16155b1561326557600b60019054906101000a900460ff16612f9157602060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612f515750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612f90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f8790615806565b60405180910390fd5b5b602260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156130c657600a54612fef846116be565b83612ffa9190614f3a565b111561303b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303290615872565b60405180910390fd5b601b6000828152602001908152602001600020548211156130c15782601a600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081601b6000838152602001908152602001600020819055505b613264565b602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131695750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131b8576008548211156131b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131aa90615904565b60405180910390fd5b613263565b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661326257600a54613215846116be565b836132209190614f3a565b1115613261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325890615872565b60405180910390fd5b5b5b5b5b5b6000613271306116be565b9050600060095482101590508080156132965750600b60029054906101000a900460ff165b80156132af5750600560149054906101000a900460ff16155b80156133055750602260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561335b5750602060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133b15750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156133f6576001600560146101000a81548160ff0219169083151502179055506133da83613a0d565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050602060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806134ac5750602060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156134b657600090505b6000811561379557602260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561351957506000601154115b156136195761354660646135386011548961418690919063ffffffff16565b61419c90919063ffffffff16565b9050601154601354826135599190614d5c565b6135639190614de5565b601760008282546135749190614f3a565b925050819055506011546014548261358c9190614d5c565b6135969190614de5565b601860008282546135a79190614f3a565b92505081905550601154601254826135bf9190614d5c565b6135c99190614de5565b601660008282546135da9190614f3a565b92505081905550601154601554826135f29190614d5c565b6135fc9190614de5565b6019600082825461360d9190614f3a565b92505081905550613771565b602260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561367457506000600c54115b15613770576136a16064613693600c548961418690919063ffffffff16565b61419c90919063ffffffff16565b9050600c54600e54826136b49190614d5c565b6136be9190614de5565b601760008282546136cf9190614f3a565b92505081905550600c54600f54826136e79190614d5c565b6136f19190614de5565b601860008282546137029190614f3a565b92505081905550600c54600d548261371a9190614d5c565b6137249190614de5565b601660008282546137359190614f3a565b92505081905550600c546010548261374d9190614d5c565b6137579190614de5565b601960008282546137689190614f3a565b925050819055505b5b6000811115613786576137858830836141b2565b5b80866137929190615140565b95505b6137a08888886141b2565b5050505050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61389b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612a86565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080601f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016139229695949392919061595f565b60606040518083038185885af1158015613940573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061396591906159c0565b5050505050565b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000613a18306116be565b90506000600183613a299190615140565b9050600183118015613a4e57506000601b600083815260200190815260200160002054115b8015613a785750601c600082815260200190815260200160002060009054906101000a900460ff16155b15613e6f576000601954601854601654601754613a959190614f3a565b613a9f9190614f3a565b613aa99190614f3a565b9050600080841480613abb5750600082145b15613ac95750505050614183565b6014600954613ad89190614d5c565b841115613af1576014600954613aee9190614d5c565b93505b600060028360175487613b049190614d5c565b613b0e9190614de5565b613b189190614de5565b90506000613b2f828761443390919063ffffffff16565b90506000479050613b3f82614449565b6000613b54824761443390919063ffffffff16565b90506000613b7f87613b716016548561418690919063ffffffff16565b61419c90919063ffffffff16565b90506000613baa88613b9c6018548661418690919063ffffffff16565b61419c90919063ffffffff16565b90506000613bd589613bc76019548761418690919063ffffffff16565b61419c90919063ffffffff16565b9050600081838587613be79190615140565b613bf19190615140565b613bfb9190615140565b90506000601781905550600060168190555060006018819055506000601981905550601a60008c815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683604051613c7490615a44565b60006040518083038185875af1925050503d8060008114613cb1576040519150601f19603f3d011682016040523d82523d6000602084013e613cb6565b606091505b50508099505088601c60008d815260200190815260200160002060006101000a81548160ff021916908315150217905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613d2d90615a44565b60006040518083038185875af1925050503d8060008114613d6a576040519150601f19603f3d011682016040523d82523d6000602084013e613d6f565b606091505b505080995050600088118015613d855750600081115b15613dd257613d948882613870565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618782601754604051613dc993929190615a59565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613e1890615a44565b60006040518083038185875af1925050503d8060008114613e55576040519150601f19603f3d011682016040523d82523d6000602084013e613e5a565b606091505b50508099505050505050505050505050614180565b60095460185483613e809190615140565b111561417f576000601954601654601754613e9b9190614f3a565b613ea59190614f3a565b9050600080841480613eb75750600082145b15613ec55750505050614183565b6014600954613ed49190614d5c565b841115613eed576014600954613eea9190614d5c565b93505b600060028360175460185488613f039190615140565b613f0d9190614d5c565b613f179190614de5565b613f219190614de5565b90506000613f4c601854613f3e848961443390919063ffffffff16565b61443390919063ffffffff16565b90506000479050613f5c82614449565b6000613f71824761443390919063ffffffff16565b90506000613f9c87613f8e6016548561418690919063ffffffff16565b61419c90919063ffffffff16565b90506000613fc788613fb96019548661418690919063ffffffff16565b61419c90919063ffffffff16565b90506000818385613fd89190615140565b613fe29190615140565b9050600060178190555060006016819055506000601981905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161404290615a44565b60006040518083038185875af1925050503d806000811461407f576040519150601f19603f3d011682016040523d82523d6000602084013e614084565b606091505b50508098505060008711801561409a5750600081115b156140e7576140a98782613870565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56186826017546040516140de93929190615a59565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161412d90615a44565b60006040518083038185875af1925050503d806000811461416a576040519150601f19603f3d011682016040523d82523d6000602084013e61416f565b606091505b5050809850505050505050505050505b5b50505b50565b600081836141949190614d5c565b905092915050565b600081836141aa9190614de5565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415614222576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161421990615676565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614292576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161428990615708565b60405180910390fd5b61429d838383614686565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015614323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161431a90615b02565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546143b69190614f3a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161441a9190614869565b60405180910390a361442d84848461468b565b50505050565b600081836144419190615140565b905092915050565b6000600267ffffffffffffffff81111561446657614465615b22565b5b6040519080825280602002602001820160405280156144945781602001602082028036833780820191505090505b50905030816000815181106144ac576144ab615b51565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015614551573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906145759190615b95565b8160018151811061458957614588615b51565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506145ee307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612a86565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401614650959493929190615c80565b600060405180830381600087803b15801561466a57600080fd5b505af115801561467e573d6000803e3d6000fd5b505050505050565b505050565b505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006146c082614695565b9050919050565b6146d0816146b5565b81146146db57600080fd5b50565b6000813590506146ed816146c7565b92915050565b6000819050919050565b614706816146f3565b811461471157600080fd5b50565b600081359050614723816146fd565b92915050565b600080604083850312156147405761473f614690565b5b600061474e858286016146de565b925050602061475f85828601614714565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156147a3578082015181840152602081019050614788565b838111156147b2576000848401525b50505050565b6000601f19601f8301169050919050565b60006147d482614769565b6147de8185614774565b93506147ee818560208601614785565b6147f7816147b8565b840191505092915050565b6000602082019050818103600083015261481c81846147c9565b905092915050565b60008115159050919050565b61483981614824565b82525050565b60006020820190506148546000830184614830565b92915050565b614863816146f3565b82525050565b600060208201905061487e600083018461485a565b92915050565b60006020828403121561489a57614899614690565b5b60006148a8848285016146de565b91505092915050565b6000819050919050565b60006148d66148d16148cc84614695565b6148b1565b614695565b9050919050565b60006148e8826148bb565b9050919050565b60006148fa826148dd565b9050919050565b61490a816148ef565b82525050565b60006020820190506149256000830184614901565b92915050565b60006020828403121561494157614940614690565b5b600061494f84828501614714565b91505092915050565b614961816146b5565b82525050565b600060208201905061497c6000830184614958565b92915050565b60008060006060848603121561499b5761499a614690565b5b60006149a9868287016146de565b93505060206149ba868287016146de565b92505060406149cb86828701614714565b9150509250925092565b600080600080608085870312156149ef576149ee614690565b5b60006149fd87828801614714565b9450506020614a0e87828801614714565b9350506040614a1f87828801614714565b9250506060614a3087828801614714565b91505092959194509250565b600060ff82169050919050565b614a5281614a3c565b82525050565b6000602082019050614a6d6000830184614a49565b92915050565b614a7c81614824565b8114614a8757600080fd5b50565b600081359050614a9981614a73565b92915050565b60008060408385031215614ab657614ab5614690565b5b6000614ac4858286016146de565b9250506020614ad585828601614a8a565b9150509250929050565b600061ffff82169050919050565b614af681614adf565b8114614b0157600080fd5b50565b600081359050614b1381614aed565b92915050565b600060208284031215614b2f57614b2e614690565b5b6000614b3d84828501614b04565b91505092915050565b600060208284031215614b5c57614b5b614690565b5b6000614b6a84828501614a8a565b91505092915050565b60008060408385031215614b8a57614b89614690565b5b6000614b98858286016146de565b9250506020614ba9858286016146de565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614be9602083614774565b9150614bf482614bb3565b602082019050919050565b60006020820190508181036000830152614c1881614bdc565b9050919050565b600081519050614c2e816146fd565b92915050565b600060208284031215614c4a57614c49614690565b5b6000614c5884828501614c1f565b91505092915050565b6000604082019050614c766000830185614958565b614c83602083018461485a565b9392505050565b600081519050614c9981614a73565b92915050565b600060208284031215614cb557614cb4614690565b5b6000614cc384828501614c8a565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614d1357607f821691505b60208210811415614d2757614d26614ccc565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614d67826146f3565b9150614d72836146f3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614dab57614daa614d2d565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614df0826146f3565b9150614dfb836146f3565b925082614e0b57614e0a614db6565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614e72602f83614774565b9150614e7d82614e16565b604082019050919050565b60006020820190508181036000830152614ea181614e65565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614f04602883614774565b9150614f0f82614ea8565b604082019050919050565b60006020820190508181036000830152614f3381614ef7565b9050919050565b6000614f45826146f3565b9150614f50836146f3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614f8557614f84614d2d565b5b828201905092915050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000614fc6601d83614774565b9150614fd182614f90565b602082019050919050565b60006020820190508181036000830152614ff581614fb9565b9050919050565b7f6d757374206265206265747765656e20302d3130302500000000000000000000600082015250565b6000615032601683614774565b915061503d82614ffc565b602082019050919050565b6000602082019050818103600083015261506181615025565b9050919050565b7f616c7265616479206c61756e6368656400000000000000000000000000000000600082015250565b600061509e601083614774565b91506150a982615068565b602082019050919050565b600060208201905081810360008301526150cd81615091565b9050919050565b7f6e6565642045544820666f7220696e697469616c204c50000000000000000000600082015250565b600061510a601783614774565b9150615115826150d4565b602082019050919050565b60006020820190508181036000830152615139816150fd565b9050919050565b600061514b826146f3565b9150615156836146f3565b92508282101561516957615168614d2d565b5b828203905092915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006151d0603983614774565b91506151db82615174565b604082019050919050565b600060208201905081810360008301526151ff816151c3565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000615262602583614774565b915061526d82615206565b604082019050919050565b6000602082019050818103600083015261529181615255565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006152f4602483614774565b91506152ff82615298565b604082019050919050565b60006020820190508181036000830152615323816152e7565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000615386603583614774565b91506153918261532a565b604082019050919050565b600060208201905081810360008301526153b581615379565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20322520746f74616c20737570706c792e0000000000000000000000000000602082015250565b6000615418603283614774565b9150615423826153bc565b604082019050919050565b600060208201905081810360008301526154478161540b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006154aa602683614774565b91506154b58261544e565b604082019050919050565b600060208201905081810360008301526154d98161549d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061553c602483614774565b9150615547826154e0565b604082019050919050565b6000602082019050818103600083015261556b8161552f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006155ce602283614774565b91506155d982615572565b604082019050919050565b600060208201905081810360008301526155fd816155c1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000615660602583614774565b915061566b82615604565b604082019050919050565b6000602082019050818103600083015261568f81615653565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006156f2602383614774565b91506156fd82615696565b604082019050919050565b60006020820190508181036000830152615721816156e5565b9050919050565b7f45524332303a207472616e73666572206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000615784602983614774565b915061578f82615728565b604082019050919050565b600060208201905081810360008301526157b381615777565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006157f0601683614774565b91506157fb826157ba565b602082019050919050565b6000602082019050818103600083015261581f816157e3565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061585c601383614774565b915061586782615826565b602082019050919050565b6000602082019050818103600083015261588b8161584f565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006158ee603683614774565b91506158f982615892565b604082019050919050565b6000602082019050818103600083015261591d816158e1565b9050919050565b6000819050919050565b600061594961594461593f84615924565b6148b1565b6146f3565b9050919050565b6159598161592e565b82525050565b600060c0820190506159746000830189614958565b615981602083018861485a565b61598e6040830187615950565b61599b6060830186615950565b6159a86080830185614958565b6159b560a083018461485a565b979650505050505050565b6000806000606084860312156159d9576159d8614690565b5b60006159e786828701614c1f565b93505060206159f886828701614c1f565b9250506040615a0986828701614c1f565b9150509250925092565b600081905092915050565b50565b6000615a2e600083615a13565b9150615a3982615a1e565b600082019050919050565b6000615a4f82615a21565b9150819050919050565b6000606082019050615a6e600083018661485a565b615a7b602083018561485a565b615a88604083018461485a565b949350505050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000615aec602683614774565b9150615af782615a90565b604082019050919050565b60006020820190508181036000830152615b1b81615adf565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050615b8f816146c7565b92915050565b600060208284031215615bab57615baa614690565b5b6000615bb984828501615b80565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615bf7816146b5565b82525050565b6000615c098383615bee565b60208301905092915050565b6000602082019050919050565b6000615c2d82615bc2565b615c378185615bcd565b9350615c4283615bde565b8060005b83811015615c73578151615c5a8882615bfd565b9750615c6583615c15565b925050600181019050615c46565b5085935050505092915050565b600060a082019050615c95600083018861485a565b615ca26020830187615950565b8181036040830152615cb48186615c22565b9050615cc36060830185614958565b615cd0608083018461485a565b969550505050505056fea2646970667358221220fa374b2c953560b83a2270dd1bab8471c5d531593e5e213a839cc64d9734c87d64736f6c634300080a0033

Deployed Bytecode Sourcemap

21688:20539:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37316:253;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4260:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6223:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22384:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23322:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21770:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5176:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22802:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22002:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22683:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22643;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22603:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28851:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6874:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21873:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29769:507;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5018:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7775:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21828:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22156:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31940:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22457:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22236:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5347:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1434:103;;;;;;;;;;;;;:::i;:::-;;22418:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28137:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29398:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21965:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26878:681;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23079:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22310:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27973:112;;;;;;;;;;;;;:::i;:::-;;783:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22492:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29661:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4479:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31000:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22723:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8493:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5687:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31508:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27820:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23543:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22196:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30810:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29134:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22041:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27634:178;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28328:515;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22760:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22276:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5925:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22568:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22916:49;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22083:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30284:518;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22856:53;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22347:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37577:191;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1692:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22530:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22123:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31724:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37316:253;1014:12;:10;:12::i;:::-;1003:23;;:7;:5;:7::i;:::-;:23;;;995:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37407:13:::1;37430:10;37407:34;;37472:1;37462:7;:11;:55;;37486:6;:16;;;37511:4;37486:31;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37462:55;;;37476:7;37462:55;37452:65;;37528:6;:15;;;37544:7;:5;:7::i;:::-;37553;37528:33;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;37396:173;37316:253:::0;;:::o;4260:100::-;4314:13;4347:5;4340:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4260:100;:::o;6223:169::-;6306:4;6323:39;6332:12;:10;:12::i;:::-;6346:7;6355:6;6323:8;:39::i;:::-;6380:4;6373:11;;6223:169;;;;:::o;22384:27::-;;;;:::o;23322:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;21770:51::-;;;:::o;5176:108::-;5237:7;5264:12;;5257:19;;5176:108;:::o;22802:47::-;;;;;;;;;;;;;;;;;;;;;;:::o;22002:30::-;;;;;;;;;;;;;:::o;22683:33::-;;;;:::o;22643:::-;;;;:::o;22603:31::-;;;;:::o;28851:275::-;1014:12;:10;:12::i;:::-;1003:23;;:7;:5;:7::i;:::-;:23;;;995:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28988:4:::1;28980;28975:1;28959:13;:11;:13::i;:::-;:17;;;;:::i;:::-;28958:26;;;;:::i;:::-;28957:35;;;;:::i;:::-;28947:6;:45;;28925:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;29111:6;29101;:17;;;;:::i;:::-;29078:20;:40;;;;28851:275:::0;:::o;6874:492::-;7014:4;7031:36;7041:6;7049:9;7060:6;7031:9;:36::i;:::-;7080:24;7107:11;:19;7119:6;7107:19;;;;;;;;;;;;;;;:33;7127:12;:10;:12::i;:::-;7107:33;;;;;;;;;;;;;;;;7080:60;;7179:6;7159:16;:26;;7151:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;7266:57;7275:6;7283:12;:10;:12::i;:::-;7316:6;7297:16;:25;7266:8;:57::i;:::-;7354:4;7347:11;;;6874:492;;;;;:::o;21873:53::-;21919:6;21873:53;:::o;29769:507::-;1014:12;:10;:12::i;:::-;1003:23;;:7;:5;:7::i;:::-;:23;;;995:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29972:13:::1;29954:15;:31;;;;30014:13;29996:15;:31;;;;30053:10;30038:12;:25;;;;30092:13;30074:15;:31;;;;30182:15;;30167:12;;30149:15;;30131;;:33;;;;:::i;:::-;:48;;;;:::i;:::-;:66;;;;:::i;:::-;30116:12;:81;;;;30232:2;30216:12;;:18;;30208:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;29769:507:::0;;;;:::o;5018:93::-;5076:5;5101:2;5094:9;;5018:93;:::o;7775:215::-;7863:4;7880:80;7889:12;:10;:12::i;:::-;7903:7;7949:10;7912:11;:25;7924:12;:10;:12::i;:::-;7912:25;;;;;;;;;;;;;;;:34;7938:7;7912:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;7880:8;:80::i;:::-;7978:4;7971:11;;7775:215;;;;:::o;21828:38::-;;;:::o;22156:33::-;;;;;;;;;;;;;:::o;31940:126::-;32006:4;32030:19;:28;32050:7;32030:28;;;;;;;;;;;;;;;;;;;;;;;;;32023:35;;31940:126;;;:::o;22457:28::-;;;;:::o;22236:31::-;;;;;;;;;;;;;:::o;5347:127::-;5421:7;5448:9;:18;5458:7;5448:18;;;;;;;;;;;;;;;;5441:25;;5347:127;;;:::o;1434:103::-;1014:12;:10;:12::i;:::-;1003:23;;:7;:5;:7::i;:::-;:23;;;995:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1499:30:::1;1526:1;1499:18;:30::i;:::-;1434:103::o:0;22418:30::-;;;;:::o;28137:121::-;28189:4;1014:12;:10;:12::i;:::-;1003:23;;:7;:5;:7::i;:::-;:23;;;995:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28223:5:::1;28206:14;;:22;;;;;;;;;;;;;;;;;;28246:4;28239:11;;28137:121:::0;:::o;29398:167::-;1014:12;:10;:12::i;:::-;1003:23;;:7;:5;:7::i;:::-;:23;;;995:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29553:4:::1;29511:31;:39;29543:6;29511:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;29398:167:::0;;:::o;21965:30::-;;;;;;;;;;;;;:::o;26878:681::-;1014:12;:10;:12::i;:::-;1003:23;;:7;:5;:7::i;:::-;:23;;;995:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23069:3:::1;26957:8;:31;;;;26949:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;27048:1;27034:10;;:15;27026:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;27101:1;27089:8;:13;;;:30;;;;27118:1;27106:9;:13;27089:30;27081:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;27160:17;23069:3;27197:8;27181:24;;:13;:11;:13::i;:::-;:24;;;;:::i;:::-;27180:48;;;;:::i;:::-;27160:68;;27239:17;27275:9;27259:13;:11;:13::i;:::-;:25;;;;:::i;:::-;27239:45;;27311:1;27299:9;:13;27295:80;;;27329:34;27342:9;27353;27329:12;:34::i;:::-;27295:80;27401:1;27389:9;:13;27385:90;;;27419:44;27437:4;27444:7;:5;:7::i;:::-;27453:9;27419;:44::i;:::-;27385:90;27498:15;27485:10;:28;;;;27539:12;27524;:27;;;;26938:621;;26878:681:::0;:::o;23079:25::-;;;;:::o;22310:30::-;;;;:::o;27973:112::-;1014:12;:10;:12::i;:::-;1003:23;;:7;:5;:7::i;:::-;:23;;;995:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28044:4:::1;28028:13;;:20;;;;;;;;;;;;;;;;;;28073:4;28059:11;;:18;;;;;;;;;;;;;;;;;;27973:112::o:0;783:87::-;829:7;856:6;;;;;;;;;;;849:13;;783:87;:::o;22492:31::-;;;;:::o;29661:100::-;1014:12;:10;:12::i;:::-;1003:23;;:7;:5;:7::i;:::-;:23;;;995:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29746:7:::1;29732:11;;:21;;;;;;;;;;;;;;;;;;29661:100:::0;:::o;4479:104::-;4535:13;4568:7;4561:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4479:104;:::o;31000:304::-;1014:12;:10;:12::i;:::-;1003:23;;:7;:5;:7::i;:::-;:23;;;995:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31144:13:::1;31136:21;;:4;:21;;;;31114:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;31255:41;31284:4;31290:5;31255:28;:41::i;:::-;31000:304:::0;;:::o;22723:30::-;;;;:::o;8493:413::-;8586:4;8603:24;8630:11;:25;8642:12;:10;:12::i;:::-;8630:25;;;;;;;;;;;;;;;:34;8656:7;8630:34;;;;;;;;;;;;;;;;8603:61;;8703:15;8683:16;:35;;8675:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;8796:67;8805:12;:10;:12::i;:::-;8819:7;8847:15;8828:16;:34;8796:8;:67::i;:::-;8894:4;8887:11;;;8493:413;;;;:::o;5687:175::-;5773:4;5790:42;5800:12;:10;:12::i;:::-;5814:9;5825:6;5790:9;:42::i;:::-;5850:4;5843:11;;5687:175;;;;:::o;31508:208::-;1014:12;:10;:12::i;:::-;1003:23;;:7;:5;:7::i;:::-;:23;;;995:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31645:15:::1;;;;;;;;;;;31602:59;;31625:18;31602:59;;;;;;;;;;;;31690:18;31672:15;;:36;;;;;;;;;;;;;;;;;;31508:208:::0;:::o;27820:99::-;1014:12;:10;:12::i;:::-;1003:23;;:7;:5;:7::i;:::-;:23;;;995:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27904:7:::1;27890:11;;:21;;;;;;;;;;;;;;;;;;27820:99:::0;:::o;23543:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;22196:33::-;;;;;;;;;;;;;:::o;30810:182::-;1014:12;:10;:12::i;:::-;1003:23;;:7;:5;:7::i;:::-;:23;;;995:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30926:8:::1;30895:19;:28;30915:7;30895:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;30966:7;30950:34;;;30975:8;30950:34;;;;;;:::i;:::-;;;;;;;;30810:182:::0;;:::o;29134:256::-;1014:12;:10;:12::i;:::-;1003:23;;:7;:5;:7::i;:::-;:23;;;995:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29274:4:::1;29266;29261:1;29245:13;:11;:13::i;:::-;:17;;;;:::i;:::-;29244:26;;;;:::i;:::-;29243:35;;;;:::i;:::-;29233:6;:45;;29211:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;29375:6;29365;:17;;;;:::i;:::-;29353:9;:29;;;;29134:256:::0;:::o;22041:35::-;;;;:::o;27634:178::-;27674:7;27694:26;27741:10;;27723:15;:28;;;;:::i;:::-;27694:57;;23008:7;27774:18;:29;;;;:::i;:::-;27769:1;:35;;;;:::i;:::-;27762:42;;;27634:178;:::o;28328:515::-;28436:4;1014:12;:10;:12::i;:::-;1003:23;;:7;:5;:7::i;:::-;:23;;;995:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28518:4:::1;28509:6;28493:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:29;;;;:::i;:::-;28480:9;:42;;28458:145;;;;;;;;;;;;:::i;:::-;;;;;;;;;28679:4;28672;28666:2;28650:13;:11;:13::i;:::-;:18;;;;:::i;:::-;28649:27;;;;:::i;:::-;:34;;;;:::i;:::-;28636:9;:47;;28614:147;;;;;;;;;;;;:::i;:::-;;;;;;;;;28806:6;28793:9;:20;;;;:::i;:::-;28772:18;:41;;;;28831:4;28824:11;;28328:515:::0;;;:::o;22760:33::-;;;;:::o;22276:27::-;;;;:::o;5925:151::-;6014:7;6041:11;:18;6053:5;6041:18;;;;;;;;;;;;;;;:27;6060:7;6041:27;;;;;;;;;;;;;;;;6034:34;;5925:151;;;;:::o;22568:28::-;;;;:::o;22916:49::-;;;;;;;;;;;;;;;;;;;;;;:::o;22083:33::-;;;;:::o;30284:518::-;1014:12;:10;:12::i;:::-;1003:23;;:7;:5;:7::i;:::-;:23;;;995:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30489:13:::1;30470:16;:32;;;;30532:13;30513:16;:32;;;;30572:10;30556:13;:26;;;;30612:13;30593:16;:32;;;;30706:16;;30690:13;;30671:16;;30652;;:35;;;;:::i;:::-;:51;;;;:::i;:::-;:70;;;;:::i;:::-;30636:13;:86;;;;30758:2;30741:13;;:19;;30733:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;30284:518:::0;;;;:::o;22856:53::-;;;;;;;;;;;;;;;;;:::o;22347:30::-;;;;:::o;37577:191::-;1014:12;:10;:12::i;:::-;1003:23;;:7;:5;:7::i;:::-;:23;;;995:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37675:1:::1;37661:10;:15;:52;;37703:10;37661:52;;;37679:21;37661:52;37648:65;;37731:7;:5;:7::i;:::-;37723:25;;:37;37749:10;37723:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;37577:191:::0;:::o;1692:201::-;1014:12;:10;:12::i;:::-;1003:23;;:7;:5;:7::i;:::-;:23;;;995:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1801:1:::1;1781:22;;:8;:22;;;;1773:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;1857:28;1876:8;1857:18;:28::i;:::-;1692:201:::0;:::o;22530:31::-;;;;:::o;22123:24::-;;;;:::o;31724:208::-;1014:12;:10;:12::i;:::-;1003:23;;:7;:5;:7::i;:::-;:23;;;995:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31861:15:::1;;;;;;;;;;;31818:59;;31841:18;31818:59;;;;;;;;;;;;31906:18;31888:15;;:36;;;;;;;;;;;;;;;;;;31724:208:::0;:::o;157:98::-;210:7;237:10;230:17;;157:98;:::o;12177:380::-;12330:1;12313:19;;:5;:19;;;;12305:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12411:1;12392:21;;:7;:21;;;;12384:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12495:6;12465:11;:18;12477:5;12465:18;;;;;;;;;;;;;;;:27;12484:7;12465:27;;;;;;;;;;;;;;;:36;;;;12533:7;12517:32;;12526:5;12517:32;;;12542:6;12517:32;;;;;;:::i;:::-;;;;;;;;12177:380;;;:::o;32074:4112::-;32222:1;32206:18;;:4;:18;;;;32198:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32299:1;32285:16;;:2;:16;;;;32277:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;32369:1;32360:6;:10;32352:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;32429:24;32456:9;:7;:9::i;:::-;32429:36;;32482:14;;;;;;;;;;;32478:1671;;;32543:7;:5;:7::i;:::-;32535:15;;:4;:15;;;;:49;;;;;32577:7;:5;:7::i;:::-;32571:13;;:2;:13;;;;32535:49;:86;;;;;32619:1;32605:16;;:2;:16;;;;32535:86;:128;;;;;32656:6;32642:21;;:2;:21;;;;32535:128;:158;;;;;32685:8;;;;;;;;;;;32684:9;32535:158;32513:1625;;;32733:13;;;;;;;;;;;32728:223;;32805:19;:25;32825:4;32805:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;32834:19;:23;32854:2;32834:23;;;;;;;;;;;;;;;;;;;;;;;;;32805:52;32771:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;32728:223;33025:25;:31;33051:4;33025:31;;;;;;;;;;;;;;;;;;;;;;;;;32999:1124;;;33159:9;;33142:13;33152:2;33142:9;:13::i;:::-;33133:6;:22;;;;:::i;:::-;:35;;33099:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;33274:18;:36;33293:16;33274:36;;;;;;;;;;;;33265:6;:45;33262:208;;;33372:2;33339:12;:30;33352:16;33339:30;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;33440:6;33401:18;:36;33420:16;33401:36;;;;;;;;;;;:45;;;;33262:208;32999:1124;;;33567:25;:29;33593:2;33567:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;33622:31;:37;33654:4;33622:37;;;;;;;;;;;;;;;;;;;;;;;;;33621:38;33567:92;33541:582;;;33746:20;;33736:6;:30;;33702:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;33541:582;;;33903:31;:35;33935:2;33903:35;;;;;;;;;;;;;;;;;;;;;;;;;33898:225;;34023:9;;34006:13;34016:2;34006:9;:13::i;:::-;33997:6;:22;;;;:::i;:::-;:35;;33963:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;33898:225;33541:582;32999:1124;32513:1625;32478:1671;34161:28;34192:24;34210:4;34192:9;:24::i;:::-;34161:55;;34229:12;34268:18;;34244:20;:42;;34229:57;;34317:7;:35;;;;;34341:11;;;;;;;;;;;34317:35;:61;;;;;34370:8;;;;;;;;;;;34369:9;34317:61;:110;;;;;34396:25;:31;34422:4;34396:31;;;;;;;;;;;;;;;;;;;;;;;;;34395:32;34317:110;:153;;;;;34445:19;:25;34465:4;34445:25;;;;;;;;;;;;;;;;;;;;;;;;;34444:26;34317:153;:194;;;;;34488:19;:23;34508:2;34488:23;;;;;;;;;;;;;;;;;;;;;;;;;34487:24;34317:194;34299:343;;;34549:4;34538:8;;:15;;;;;;;;;;;;;;;;;;34570:26;34579:16;34570:8;:26::i;:::-;34625:5;34614:8;;:16;;;;;;;;;;;;;;;;;;34299:343;34655:12;34671:8;;;;;;;;;;;34670:9;34655:24;;34781:19;:25;34801:4;34781:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;34810:19;:23;34830:2;34810:23;;;;;;;;;;;;;;;;;;;;;;;;;34781:52;34777:100;;;34860:5;34850:15;;34777:100;34889:12;34994:7;34990:1143;;;35046:25;:29;35072:2;35046:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;35095:1;35079:13;;:17;35046:50;35042:942;;;35124:34;35154:3;35124:25;35135:13;;35124:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;35117:41;;35227:13;;35207:16;;35200:4;:23;;;;:::i;:::-;35199:41;;;;:::i;:::-;35177:18;;:63;;;;;;;:::i;:::-;;;;;;;;35303:13;;35286;;35279:4;:20;;;;:::i;:::-;35278:38;;;;:::i;:::-;35259:15;;:57;;;;;;;:::i;:::-;;;;;;;;35385:13;;35365:16;;35358:4;:23;;;;:::i;:::-;35357:41;;;;:::i;:::-;35335:18;;:63;;;;;;;:::i;:::-;;;;;;;;35467:13;;35447:16;;35440:4;:23;;;;:::i;:::-;35439:41;;;;:::i;:::-;35417:18;;:63;;;;;;;:::i;:::-;;;;;;;;35042:942;;;35542:25;:31;35568:4;35542:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;35592:1;35577:12;;:16;35542:51;35538:446;;;35621:33;35650:3;35621:24;35632:12;;35621:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;35614:40;;35722:12;;35703:15;;35696:4;:22;;;;:::i;:::-;35695:39;;;;:::i;:::-;35673:18;;:61;;;;;;;:::i;:::-;;;;;;;;35796:12;;35780;;35773:4;:19;;;;:::i;:::-;35772:36;;;;:::i;:::-;35753:15;;:55;;;;;;;:::i;:::-;;;;;;;;35876:12;;35857:15;;35850:4;:22;;;;:::i;:::-;35849:39;;;;:::i;:::-;35827:18;;:61;;;;;;;:::i;:::-;;;;;;;;35956:12;;35937:15;;35930:4;:22;;;;:::i;:::-;35929:39;;;;:::i;:::-;35907:18;;:61;;;;;;;:::i;:::-;;;;;;;;35538:446;35042:942;36011:1;36004:4;:8;36000:91;;;36033:42;36049:4;36063;36070;36033:15;:42::i;:::-;36000:91;36117:4;36107:14;;;;;:::i;:::-;;;34990:1143;36145:33;36161:4;36167:2;36171:6;36145:15;:33::i;:::-;32187:3999;;;;;32074:4112;;;:::o;2053:191::-;2127:16;2146:6;;;;;;;;;;;2127:25;;2172:8;2163:6;;:17;;;;;;;;;;;;;;;;;;2227:8;2196:40;;2217:8;2196:40;;;;;;;;;;;;2116:128;2053:191;:::o;36791:517::-;36939:62;36956:4;36971:15;36989:11;36939:8;:62::i;:::-;37044:15;:31;;;37083:9;37116:4;37136:11;37162:1;37205;37248:11;;;;;;;;;;;37274:15;37044:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;36791:517;;:::o;31312:188::-;31429:5;31395:25;:31;31421:4;31395:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;31486:5;31452:40;;31480:4;31452:40;;;;;;;;;;;;31312:188;;:::o;37776:4448::-;37835:23;37861:24;37879:4;37861:9;:24::i;:::-;37835:50;;37896:17;37931:1;37916:12;:16;;;;:::i;:::-;37896:36;;37963:1;37948:12;:16;:66;;;;;38013:1;37981:18;:29;38000:9;37981:29;;;;;;;;;;;;:33;37948:66;:111;;;;;38032:16;:27;38049:9;38032:27;;;;;;;;;;;;;;;;;;;;;38031:28;37948:111;37944:4273;;;38086:25;38225:18;;38190:15;;38152:18;;38114;;:56;;;;:::i;:::-;:91;;;;:::i;:::-;:129;;;;:::i;:::-;38086:157;;38258:12;38310:1;38291:15;:20;:46;;;;38336:1;38315:17;:22;38291:46;38287:89;;;38354:7;;;;;;38287:89;38435:2;38414:18;;:23;;;;:::i;:::-;38396:15;:41;38392:123;;;38497:2;38476:18;;:23;;;;:::i;:::-;38458:41;;38392:123;38584:23;38705:1;38668:17;38629:18;;38611:15;:36;;;;:::i;:::-;38610:75;;;;:::i;:::-;:96;;;;:::i;:::-;38584:122;;38721:26;38750:36;38770:15;38750;:19;;:36;;;;:::i;:::-;38721:65;;38803:25;38831:21;38803:49;;38869:36;38886:18;38869:16;:36::i;:::-;38922:18;38943:44;38969:17;38943:21;:25;;:44;;;;:::i;:::-;38922:65;;39004:23;39030:89;39087:17;39030:34;39045:18;;39030:10;:14;;:34;;;;:::i;:::-;:38;;:89;;;;:::i;:::-;39004:115;;39136:20;39159:54;39195:17;39159:31;39174:15;;39159:10;:14;;:31;;;;:::i;:::-;:35;;:54;;;;:::i;:::-;39136:77;;39230:23;39256:57;39295:17;39256:34;39271:18;;39256:10;:14;;:34;;;;:::i;:::-;:38;;:57;;;;:::i;:::-;39230:83;;39330:23;39402:15;39387:12;39369:15;39356:10;:28;;;;:::i;:::-;:43;;;;:::i;:::-;:61;;;;:::i;:::-;39330:87;;39455:1;39434:18;:22;;;;39492:1;39471:18;:22;;;;39526:1;39508:15;:19;;;;39563:1;39542:18;:22;;;;39603:12;:23;39616:9;39603:23;;;;;;;;;;;;;;;;;;;;;39595:37;;39640:12;39595:62;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39581:76;;;;;39704:7;39674:16;:27;39691:9;39674:27;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;39750:15;;;;;;;;;;;39742:29;;39779:15;39742:57;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39728:71;;;;;39838:1;39820:15;:19;:42;;;;;39861:1;39843:15;:19;39820:42;39816:306;;;39883:46;39896:15;39913;39883:12;:46::i;:::-;39953:153;39990:18;40031:15;40069:18;;39953:153;;;;;;;;:::i;:::-;;;;;;;;39816:306;40160:15;;;;;;;;;;;40152:29;;40207:21;40152:95;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40138:109;;;;;38071:2190;;;;;;;;;;37944:4273;;;40309:18;;40290:15;;40272;:33;;;;:::i;:::-;40271:56;40267:1950;;;40344:25;40431:18;;40410;;40372;;:56;;;;:::i;:::-;:77;;;;:::i;:::-;40344:105;;40464:12;40516:1;40497:15;:20;:46;;;;40542:1;40521:17;:22;40497:46;40493:89;;;40560:7;;;;;;40493:89;40641:2;40620:18;;:23;;;;:::i;:::-;40602:15;:41;40598:123;;;40703:2;40682:18;;:23;;;;:::i;:::-;40664:41;;40598:123;40790:23;40932:1;40895:17;40856:18;;40836:15;;40818;:33;;;;:::i;:::-;40817:57;;;;:::i;:::-;40816:96;;;;:::i;:::-;:117;;;;:::i;:::-;40790:143;;40948:26;40977:57;41018:15;;40977:36;40997:15;40977;:19;;:36;;;;:::i;:::-;:40;;:57;;;;:::i;:::-;40948:86;;41051:25;41079:21;41051:49;;41117:36;41134:18;41117:16;:36::i;:::-;41170:18;41191:44;41217:17;41191:21;:25;;:44;;;;:::i;:::-;41170:65;;41252:23;41278:89;41335:17;41278:34;41293:18;;41278:10;:14;;:34;;;;:::i;:::-;:38;;:89;;;;:::i;:::-;41252:115;;41384:23;41410:57;41449:17;41410:34;41425:18;;41410:10;:14;;:34;;;;:::i;:::-;:38;;:57;;;;:::i;:::-;41384:83;;41484:23;41541:15;41523;41510:10;:28;;;;:::i;:::-;:46;;;;:::i;:::-;41484:72;;41594:1;41573:18;:22;;;;41631:1;41610:18;:22;;;;41668:1;41647:18;:22;;;;41708:15;;;;;;;;;;;41700:29;;41737:15;41700:57;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41686:71;;;;;41796:1;41778:15;:19;:42;;;;;41819:1;41801:15;:19;41778:42;41774:306;;;41841:46;41854:15;41871;41841:12;:46::i;:::-;41911:153;41948:18;41989:15;42027:18;;41911:153;;;;;;;;:::i;:::-;;;;;;;;41774:306;42118:15;;;;;;;;;;;42110:29;;42165:21;42110:95;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42096:109;;;;;40329:1888;;;;;;;;;40267:1950;37944:4273;37824:4400;;37776:4448;;:::o;15373:98::-;15431:7;15462:1;15458;:5;;;;:::i;:::-;15451:12;;15373:98;;;;:::o;15479:::-;15537:7;15568:1;15564;:5;;;;:::i;:::-;15557:12;;15479:98;;;;:::o;9396:733::-;9554:1;9536:20;;:6;:20;;;;9528:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;9638:1;9617:23;;:9;:23;;;;9609:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;9693:47;9714:6;9722:9;9733:6;9693:20;:47::i;:::-;9753:21;9777:9;:17;9787:6;9777:17;;;;;;;;;;;;;;;;9753:41;;9830:6;9813:13;:23;;9805:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;9951:6;9935:13;:22;9915:9;:17;9925:6;9915:17;;;;;;;;;;;;;;;:42;;;;10003:6;9979:9;:20;9989:9;9979:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;10044:9;10027:35;;10036:6;10027:35;;;10055:6;10027:35;;;;;;:::i;:::-;;;;;;;;10075:46;10095:6;10103:9;10114:6;10075:19;:46::i;:::-;9517:612;9396:733;;;:::o;15267:98::-;15325:7;15356:1;15352;:5;;;;:::i;:::-;15345:12;;15267:98;;;;:::o;36194:589::-;36320:21;36358:1;36344:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36320:40;;36389:4;36371;36376:1;36371:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;36415:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36405:4;36410:1;36405:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;36450:62;36467:4;36482:15;36500:11;36450:8;:62::i;:::-;36551:15;:66;;;36632:11;36658:1;36702:4;36729;36749:15;36551:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36249:534;36194:589;:::o;13157:125::-;;;;:::o;13886:124::-;;;;:::o;88:117:1:-;197:1;194;187:12;334:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:122::-;641:24;659:5;641:24;:::i;:::-;634:5;631:35;621:63;;680:1;677;670:12;621:63;568:122;:::o;696:139::-;742:5;780:6;767:20;758:29;;796:33;823:5;796:33;:::i;:::-;696:139;;;;:::o;841:77::-;878:7;907:5;896:16;;841:77;;;:::o;924:122::-;997:24;1015:5;997:24;:::i;:::-;990:5;987:35;977:63;;1036:1;1033;1026:12;977:63;924:122;:::o;1052:139::-;1098:5;1136:6;1123:20;1114:29;;1152:33;1179:5;1152:33;:::i;:::-;1052:139;;;;:::o;1197:474::-;1265:6;1273;1322:2;1310:9;1301:7;1297:23;1293:32;1290:119;;;1328:79;;:::i;:::-;1290:119;1448:1;1473:53;1518:7;1509:6;1498:9;1494:22;1473:53;:::i;:::-;1463:63;;1419:117;1575:2;1601:53;1646:7;1637:6;1626:9;1622:22;1601:53;:::i;:::-;1591:63;;1546:118;1197:474;;;;;:::o;1677:99::-;1729:6;1763:5;1757:12;1747:22;;1677:99;;;:::o;1782:169::-;1866:11;1900:6;1895:3;1888:19;1940:4;1935:3;1931:14;1916:29;;1782:169;;;;:::o;1957:307::-;2025:1;2035:113;2049:6;2046:1;2043:13;2035:113;;;2134:1;2129:3;2125:11;2119:18;2115:1;2110:3;2106:11;2099:39;2071:2;2068:1;2064:10;2059:15;;2035:113;;;2166:6;2163:1;2160:13;2157:101;;;2246:1;2237:6;2232:3;2228:16;2221:27;2157:101;2006:258;1957:307;;;:::o;2270:102::-;2311:6;2362:2;2358:7;2353:2;2346:5;2342:14;2338:28;2328:38;;2270:102;;;:::o;2378:364::-;2466:3;2494:39;2527:5;2494:39;:::i;:::-;2549:71;2613:6;2608:3;2549:71;:::i;:::-;2542:78;;2629:52;2674:6;2669:3;2662:4;2655:5;2651:16;2629:52;:::i;:::-;2706:29;2728:6;2706:29;:::i;:::-;2701:3;2697:39;2690:46;;2470:272;2378:364;;;;:::o;2748:313::-;2861:4;2899:2;2888:9;2884:18;2876:26;;2948:9;2942:4;2938:20;2934:1;2923:9;2919:17;2912:47;2976:78;3049:4;3040:6;2976:78;:::i;:::-;2968:86;;2748:313;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:329::-;3905:6;3954:2;3942:9;3933:7;3929:23;3925:32;3922:119;;;3960:79;;:::i;:::-;3922:119;4080:1;4105:53;4150:7;4141:6;4130:9;4126:22;4105:53;:::i;:::-;4095:63;;4051:117;3846:329;;;;:::o;4181:60::-;4209:3;4230:5;4223:12;;4181:60;;;:::o;4247:142::-;4297:9;4330:53;4348:34;4357:24;4375:5;4357:24;:::i;:::-;4348:34;:::i;:::-;4330:53;:::i;:::-;4317:66;;4247:142;;;:::o;4395:126::-;4445:9;4478:37;4509:5;4478:37;:::i;:::-;4465:50;;4395:126;;;:::o;4527:153::-;4604:9;4637:37;4668:5;4637:37;:::i;:::-;4624:50;;4527:153;;;:::o;4686:185::-;4800:64;4858:5;4800:64;:::i;:::-;4795:3;4788:77;4686:185;;:::o;4877:276::-;4997:4;5035:2;5024:9;5020:18;5012:26;;5048:98;5143:1;5132:9;5128:17;5119:6;5048:98;:::i;:::-;4877:276;;;;:::o;5159:329::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:119;;;5273:79;;:::i;:::-;5235:119;5393:1;5418:53;5463:7;5454:6;5443:9;5439:22;5418:53;:::i;:::-;5408:63;;5364:117;5159:329;;;;:::o;5494:118::-;5581:24;5599:5;5581:24;:::i;:::-;5576:3;5569:37;5494:118;;:::o;5618:222::-;5711:4;5749:2;5738:9;5734:18;5726:26;;5762:71;5830:1;5819:9;5815:17;5806:6;5762:71;:::i;:::-;5618:222;;;;:::o;5846:619::-;5923:6;5931;5939;5988:2;5976:9;5967:7;5963:23;5959:32;5956:119;;;5994:79;;:::i;:::-;5956:119;6114:1;6139:53;6184:7;6175:6;6164:9;6160:22;6139:53;:::i;:::-;6129:63;;6085:117;6241:2;6267:53;6312:7;6303:6;6292:9;6288:22;6267:53;:::i;:::-;6257:63;;6212:118;6369:2;6395:53;6440:7;6431:6;6420:9;6416:22;6395:53;:::i;:::-;6385:63;;6340:118;5846:619;;;;;:::o;6471:765::-;6557:6;6565;6573;6581;6630:3;6618:9;6609:7;6605:23;6601:33;6598:120;;;6637:79;;:::i;:::-;6598:120;6757:1;6782:53;6827:7;6818:6;6807:9;6803:22;6782:53;:::i;:::-;6772:63;;6728:117;6884:2;6910:53;6955:7;6946:6;6935:9;6931:22;6910:53;:::i;:::-;6900:63;;6855:118;7012:2;7038:53;7083:7;7074:6;7063:9;7059:22;7038:53;:::i;:::-;7028:63;;6983:118;7140:2;7166:53;7211:7;7202:6;7191:9;7187:22;7166:53;:::i;:::-;7156:63;;7111:118;6471:765;;;;;;;:::o;7242:86::-;7277:7;7317:4;7310:5;7306:16;7295:27;;7242:86;;;:::o;7334:112::-;7417:22;7433:5;7417:22;:::i;:::-;7412:3;7405:35;7334:112;;:::o;7452:214::-;7541:4;7579:2;7568:9;7564:18;7556:26;;7592:67;7656:1;7645:9;7641:17;7632:6;7592:67;:::i;:::-;7452:214;;;;:::o;7672:116::-;7742:21;7757:5;7742:21;:::i;:::-;7735:5;7732:32;7722:60;;7778:1;7775;7768:12;7722:60;7672:116;:::o;7794:133::-;7837:5;7875:6;7862:20;7853:29;;7891:30;7915:5;7891:30;:::i;:::-;7794:133;;;;:::o;7933:468::-;7998:6;8006;8055:2;8043:9;8034:7;8030:23;8026:32;8023:119;;;8061:79;;:::i;:::-;8023:119;8181:1;8206:53;8251:7;8242:6;8231:9;8227:22;8206:53;:::i;:::-;8196:63;;8152:117;8308:2;8334:50;8376:7;8367:6;8356:9;8352:22;8334:50;:::i;:::-;8324:60;;8279:115;7933:468;;;;;:::o;8407:89::-;8443:7;8483:6;8476:5;8472:18;8461:29;;8407:89;;;:::o;8502:120::-;8574:23;8591:5;8574:23;:::i;:::-;8567:5;8564:34;8554:62;;8612:1;8609;8602:12;8554:62;8502:120;:::o;8628:137::-;8673:5;8711:6;8698:20;8689:29;;8727:32;8753:5;8727:32;:::i;:::-;8628:137;;;;:::o;8771:327::-;8829:6;8878:2;8866:9;8857:7;8853:23;8849:32;8846:119;;;8884:79;;:::i;:::-;8846:119;9004:1;9029:52;9073:7;9064:6;9053:9;9049:22;9029:52;:::i;:::-;9019:62;;8975:116;8771:327;;;;:::o;9104:323::-;9160:6;9209:2;9197:9;9188:7;9184:23;9180:32;9177:119;;;9215:79;;:::i;:::-;9177:119;9335:1;9360:50;9402:7;9393:6;9382:9;9378:22;9360:50;:::i;:::-;9350:60;;9306:114;9104:323;;;;:::o;9433:474::-;9501:6;9509;9558:2;9546:9;9537:7;9533:23;9529:32;9526:119;;;9564:79;;:::i;:::-;9526:119;9684:1;9709:53;9754:7;9745:6;9734:9;9730:22;9709:53;:::i;:::-;9699:63;;9655:117;9811:2;9837:53;9882:7;9873:6;9862:9;9858:22;9837:53;:::i;:::-;9827:63;;9782:118;9433:474;;;;;:::o;9913:182::-;10053:34;10049:1;10041:6;10037:14;10030:58;9913:182;:::o;10101:366::-;10243:3;10264:67;10328:2;10323:3;10264:67;:::i;:::-;10257:74;;10340:93;10429:3;10340:93;:::i;:::-;10458:2;10453:3;10449:12;10442:19;;10101:366;;;:::o;10473:419::-;10639:4;10677:2;10666:9;10662:18;10654:26;;10726:9;10720:4;10716:20;10712:1;10701:9;10697:17;10690:47;10754:131;10880:4;10754:131;:::i;:::-;10746:139;;10473:419;;;:::o;10898:143::-;10955:5;10986:6;10980:13;10971:22;;11002:33;11029:5;11002:33;:::i;:::-;10898:143;;;;:::o;11047:351::-;11117:6;11166:2;11154:9;11145:7;11141:23;11137:32;11134:119;;;11172:79;;:::i;:::-;11134:119;11292:1;11317:64;11373:7;11364:6;11353:9;11349:22;11317:64;:::i;:::-;11307:74;;11263:128;11047:351;;;;:::o;11404:332::-;11525:4;11563:2;11552:9;11548:18;11540:26;;11576:71;11644:1;11633:9;11629:17;11620:6;11576:71;:::i;:::-;11657:72;11725:2;11714:9;11710:18;11701:6;11657:72;:::i;:::-;11404:332;;;;;:::o;11742:137::-;11796:5;11827:6;11821:13;11812:22;;11843:30;11867:5;11843:30;:::i;:::-;11742:137;;;;:::o;11885:345::-;11952:6;12001:2;11989:9;11980:7;11976:23;11972:32;11969:119;;;12007:79;;:::i;:::-;11969:119;12127:1;12152:61;12205:7;12196:6;12185:9;12181:22;12152:61;:::i;:::-;12142:71;;12098:125;11885:345;;;;:::o;12236:180::-;12284:77;12281:1;12274:88;12381:4;12378:1;12371:15;12405:4;12402:1;12395:15;12422:320;12466:6;12503:1;12497:4;12493:12;12483:22;;12550:1;12544:4;12540:12;12571:18;12561:81;;12627:4;12619:6;12615:17;12605:27;;12561:81;12689:2;12681:6;12678:14;12658:18;12655:38;12652:84;;;12708:18;;:::i;:::-;12652:84;12473:269;12422:320;;;:::o;12748:180::-;12796:77;12793:1;12786:88;12893:4;12890:1;12883:15;12917:4;12914:1;12907:15;12934:348;12974:7;12997:20;13015:1;12997:20;:::i;:::-;12992:25;;13031:20;13049:1;13031:20;:::i;:::-;13026:25;;13219:1;13151:66;13147:74;13144:1;13141:81;13136:1;13129:9;13122:17;13118:105;13115:131;;;13226:18;;:::i;:::-;13115:131;13274:1;13271;13267:9;13256:20;;12934:348;;;;:::o;13288:180::-;13336:77;13333:1;13326:88;13433:4;13430:1;13423:15;13457:4;13454:1;13447:15;13474:185;13514:1;13531:20;13549:1;13531:20;:::i;:::-;13526:25;;13565:20;13583:1;13565:20;:::i;:::-;13560:25;;13604:1;13594:35;;13609:18;;:::i;:::-;13594:35;13651:1;13648;13644:9;13639:14;;13474:185;;;;:::o;13665:234::-;13805:34;13801:1;13793:6;13789:14;13782:58;13874:17;13869:2;13861:6;13857:15;13850:42;13665:234;:::o;13905:366::-;14047:3;14068:67;14132:2;14127:3;14068:67;:::i;:::-;14061:74;;14144:93;14233:3;14144:93;:::i;:::-;14262:2;14257:3;14253:12;14246:19;;13905:366;;;:::o;14277:419::-;14443:4;14481:2;14470:9;14466:18;14458:26;;14530:9;14524:4;14520:20;14516:1;14505:9;14501:17;14494:47;14558:131;14684:4;14558:131;:::i;:::-;14550:139;;14277:419;;;:::o;14702:227::-;14842:34;14838:1;14830:6;14826:14;14819:58;14911:10;14906:2;14898:6;14894:15;14887:35;14702:227;:::o;14935:366::-;15077:3;15098:67;15162:2;15157:3;15098:67;:::i;:::-;15091:74;;15174:93;15263:3;15174:93;:::i;:::-;15292:2;15287:3;15283:12;15276:19;;14935:366;;;:::o;15307:419::-;15473:4;15511:2;15500:9;15496:18;15488:26;;15560:9;15554:4;15550:20;15546:1;15535:9;15531:17;15524:47;15588:131;15714:4;15588:131;:::i;:::-;15580:139;;15307:419;;;:::o;15732:305::-;15772:3;15791:20;15809:1;15791:20;:::i;:::-;15786:25;;15825:20;15843:1;15825:20;:::i;:::-;15820:25;;15979:1;15911:66;15907:74;15904:1;15901:81;15898:107;;;15985:18;;:::i;:::-;15898:107;16029:1;16026;16022:9;16015:16;;15732:305;;;;:::o;16043:179::-;16183:31;16179:1;16171:6;16167:14;16160:55;16043:179;:::o;16228:366::-;16370:3;16391:67;16455:2;16450:3;16391:67;:::i;:::-;16384:74;;16467:93;16556:3;16467:93;:::i;:::-;16585:2;16580:3;16576:12;16569:19;;16228:366;;;:::o;16600:419::-;16766:4;16804:2;16793:9;16789:18;16781:26;;16853:9;16847:4;16843:20;16839:1;16828:9;16824:17;16817:47;16881:131;17007:4;16881:131;:::i;:::-;16873:139;;16600:419;;;:::o;17025:172::-;17165:24;17161:1;17153:6;17149:14;17142:48;17025:172;:::o;17203:366::-;17345:3;17366:67;17430:2;17425:3;17366:67;:::i;:::-;17359:74;;17442:93;17531:3;17442:93;:::i;:::-;17560:2;17555:3;17551:12;17544:19;;17203:366;;;:::o;17575:419::-;17741:4;17779:2;17768:9;17764:18;17756:26;;17828:9;17822:4;17818:20;17814:1;17803:9;17799:17;17792:47;17856:131;17982:4;17856:131;:::i;:::-;17848:139;;17575:419;;;:::o;18000:166::-;18140:18;18136:1;18128:6;18124:14;18117:42;18000:166;:::o;18172:366::-;18314:3;18335:67;18399:2;18394:3;18335:67;:::i;:::-;18328:74;;18411:93;18500:3;18411:93;:::i;:::-;18529:2;18524:3;18520:12;18513:19;;18172:366;;;:::o;18544:419::-;18710:4;18748:2;18737:9;18733:18;18725:26;;18797:9;18791:4;18787:20;18783:1;18772:9;18768:17;18761:47;18825:131;18951:4;18825:131;:::i;:::-;18817:139;;18544:419;;;:::o;18969:173::-;19109:25;19105:1;19097:6;19093:14;19086:49;18969:173;:::o;19148:366::-;19290:3;19311:67;19375:2;19370:3;19311:67;:::i;:::-;19304:74;;19387:93;19476:3;19387:93;:::i;:::-;19505:2;19500:3;19496:12;19489:19;;19148:366;;;:::o;19520:419::-;19686:4;19724:2;19713:9;19709:18;19701:26;;19773:9;19767:4;19763:20;19759:1;19748:9;19744:17;19737:47;19801:131;19927:4;19801:131;:::i;:::-;19793:139;;19520:419;;;:::o;19945:191::-;19985:4;20005:20;20023:1;20005:20;:::i;:::-;20000:25;;20039:20;20057:1;20039:20;:::i;:::-;20034:25;;20078:1;20075;20072:8;20069:34;;;20083:18;;:::i;:::-;20069:34;20128:1;20125;20121:9;20113:17;;19945:191;;;;:::o;20142:244::-;20282:34;20278:1;20270:6;20266:14;20259:58;20351:27;20346:2;20338:6;20334:15;20327:52;20142:244;:::o;20392:366::-;20534:3;20555:67;20619:2;20614:3;20555:67;:::i;:::-;20548:74;;20631:93;20720:3;20631:93;:::i;:::-;20749:2;20744:3;20740:12;20733:19;;20392:366;;;:::o;20764:419::-;20930:4;20968:2;20957:9;20953:18;20945:26;;21017:9;21011:4;21007:20;21003:1;20992:9;20988:17;20981:47;21045:131;21171:4;21045:131;:::i;:::-;21037:139;;20764:419;;;:::o;21189:224::-;21329:34;21325:1;21317:6;21313:14;21306:58;21398:7;21393:2;21385:6;21381:15;21374:32;21189:224;:::o;21419:366::-;21561:3;21582:67;21646:2;21641:3;21582:67;:::i;:::-;21575:74;;21658:93;21747:3;21658:93;:::i;:::-;21776:2;21771:3;21767:12;21760:19;;21419:366;;;:::o;21791:419::-;21957:4;21995:2;21984:9;21980:18;21972:26;;22044:9;22038:4;22034:20;22030:1;22019:9;22015:17;22008:47;22072:131;22198:4;22072:131;:::i;:::-;22064:139;;21791:419;;;:::o;22216:223::-;22356:34;22352:1;22344:6;22340:14;22333:58;22425:6;22420:2;22412:6;22408:15;22401:31;22216:223;:::o;22445:366::-;22587:3;22608:67;22672:2;22667:3;22608:67;:::i;:::-;22601:74;;22684:93;22773:3;22684:93;:::i;:::-;22802:2;22797:3;22793:12;22786:19;;22445:366;;;:::o;22817:419::-;22983:4;23021:2;23010:9;23006:18;22998:26;;23070:9;23064:4;23060:20;23056:1;23045:9;23041:17;23034:47;23098:131;23224:4;23098:131;:::i;:::-;23090:139;;22817:419;;;:::o;23242:240::-;23382:34;23378:1;23370:6;23366:14;23359:58;23451:23;23446:2;23438:6;23434:15;23427:48;23242:240;:::o;23488:366::-;23630:3;23651:67;23715:2;23710:3;23651:67;:::i;:::-;23644:74;;23727:93;23816:3;23727:93;:::i;:::-;23845:2;23840:3;23836:12;23829:19;;23488:366;;;:::o;23860:419::-;24026:4;24064:2;24053:9;24049:18;24041:26;;24113:9;24107:4;24103:20;24099:1;24088:9;24084:17;24077:47;24141:131;24267:4;24141:131;:::i;:::-;24133:139;;23860:419;;;:::o;24285:237::-;24425:34;24421:1;24413:6;24409:14;24402:58;24494:20;24489:2;24481:6;24477:15;24470:45;24285:237;:::o;24528:366::-;24670:3;24691:67;24755:2;24750:3;24691:67;:::i;:::-;24684:74;;24767:93;24856:3;24767:93;:::i;:::-;24885:2;24880:3;24876:12;24869:19;;24528:366;;;:::o;24900:419::-;25066:4;25104:2;25093:9;25089:18;25081:26;;25153:9;25147:4;25143:20;25139:1;25128:9;25124:17;25117:47;25181:131;25307:4;25181:131;:::i;:::-;25173:139;;24900:419;;;:::o;25325:225::-;25465:34;25461:1;25453:6;25449:14;25442:58;25534:8;25529:2;25521:6;25517:15;25510:33;25325:225;:::o;25556:366::-;25698:3;25719:67;25783:2;25778:3;25719:67;:::i;:::-;25712:74;;25795:93;25884:3;25795:93;:::i;:::-;25913:2;25908:3;25904:12;25897:19;;25556:366;;;:::o;25928:419::-;26094:4;26132:2;26121:9;26117:18;26109:26;;26181:9;26175:4;26171:20;26167:1;26156:9;26152:17;26145:47;26209:131;26335:4;26209:131;:::i;:::-;26201:139;;25928:419;;;:::o;26353:223::-;26493:34;26489:1;26481:6;26477:14;26470:58;26562:6;26557:2;26549:6;26545:15;26538:31;26353:223;:::o;26582:366::-;26724:3;26745:67;26809:2;26804:3;26745:67;:::i;:::-;26738:74;;26821:93;26910:3;26821:93;:::i;:::-;26939:2;26934:3;26930:12;26923:19;;26582:366;;;:::o;26954:419::-;27120:4;27158:2;27147:9;27143:18;27135:26;;27207:9;27201:4;27197:20;27193:1;27182:9;27178:17;27171:47;27235:131;27361:4;27235:131;:::i;:::-;27227:139;;26954:419;;;:::o;27379:221::-;27519:34;27515:1;27507:6;27503:14;27496:58;27588:4;27583:2;27575:6;27571:15;27564:29;27379:221;:::o;27606:366::-;27748:3;27769:67;27833:2;27828:3;27769:67;:::i;:::-;27762:74;;27845:93;27934:3;27845:93;:::i;:::-;27963:2;27958:3;27954:12;27947:19;;27606:366;;;:::o;27978:419::-;28144:4;28182:2;28171:9;28167:18;28159:26;;28231:9;28225:4;28221:20;28217:1;28206:9;28202:17;28195:47;28259:131;28385:4;28259:131;:::i;:::-;28251:139;;27978:419;;;:::o;28403:224::-;28543:34;28539:1;28531:6;28527:14;28520:58;28612:7;28607:2;28599:6;28595:15;28588:32;28403:224;:::o;28633:366::-;28775:3;28796:67;28860:2;28855:3;28796:67;:::i;:::-;28789:74;;28872:93;28961:3;28872:93;:::i;:::-;28990:2;28985:3;28981:12;28974:19;;28633:366;;;:::o;29005:419::-;29171:4;29209:2;29198:9;29194:18;29186:26;;29258:9;29252:4;29248:20;29244:1;29233:9;29229:17;29222:47;29286:131;29412:4;29286:131;:::i;:::-;29278:139;;29005:419;;;:::o;29430:222::-;29570:34;29566:1;29558:6;29554:14;29547:58;29639:5;29634:2;29626:6;29622:15;29615:30;29430:222;:::o;29658:366::-;29800:3;29821:67;29885:2;29880:3;29821:67;:::i;:::-;29814:74;;29897:93;29986:3;29897:93;:::i;:::-;30015:2;30010:3;30006:12;29999:19;;29658:366;;;:::o;30030:419::-;30196:4;30234:2;30223:9;30219:18;30211:26;;30283:9;30277:4;30273:20;30269:1;30258:9;30254:17;30247:47;30311:131;30437:4;30311:131;:::i;:::-;30303:139;;30030:419;;;:::o;30455:228::-;30595:34;30591:1;30583:6;30579:14;30572:58;30664:11;30659:2;30651:6;30647:15;30640:36;30455:228;:::o;30689:366::-;30831:3;30852:67;30916:2;30911:3;30852:67;:::i;:::-;30845:74;;30928:93;31017:3;30928:93;:::i;:::-;31046:2;31041:3;31037:12;31030:19;;30689:366;;;:::o;31061:419::-;31227:4;31265:2;31254:9;31250:18;31242:26;;31314:9;31308:4;31304:20;31300:1;31289:9;31285:17;31278:47;31342:131;31468:4;31342:131;:::i;:::-;31334:139;;31061:419;;;:::o;31486:172::-;31626:24;31622:1;31614:6;31610:14;31603:48;31486:172;:::o;31664:366::-;31806:3;31827:67;31891:2;31886:3;31827:67;:::i;:::-;31820:74;;31903:93;31992:3;31903:93;:::i;:::-;32021:2;32016:3;32012:12;32005:19;;31664:366;;;:::o;32036:419::-;32202:4;32240:2;32229:9;32225:18;32217:26;;32289:9;32283:4;32279:20;32275:1;32264:9;32260:17;32253:47;32317:131;32443:4;32317:131;:::i;:::-;32309:139;;32036:419;;;:::o;32461:169::-;32601:21;32597:1;32589:6;32585:14;32578:45;32461:169;:::o;32636:366::-;32778:3;32799:67;32863:2;32858:3;32799:67;:::i;:::-;32792:74;;32875:93;32964:3;32875:93;:::i;:::-;32993:2;32988:3;32984:12;32977:19;;32636:366;;;:::o;33008:419::-;33174:4;33212:2;33201:9;33197:18;33189:26;;33261:9;33255:4;33251:20;33247:1;33236:9;33232:17;33225:47;33289:131;33415:4;33289:131;:::i;:::-;33281:139;;33008:419;;;:::o;33433:241::-;33573:34;33569:1;33561:6;33557:14;33550:58;33642:24;33637:2;33629:6;33625:15;33618:49;33433:241;:::o;33680:366::-;33822:3;33843:67;33907:2;33902:3;33843:67;:::i;:::-;33836:74;;33919:93;34008:3;33919:93;:::i;:::-;34037:2;34032:3;34028:12;34021:19;;33680:366;;;:::o;34052:419::-;34218:4;34256:2;34245:9;34241:18;34233:26;;34305:9;34299:4;34295:20;34291:1;34280:9;34276:17;34269:47;34333:131;34459:4;34333:131;:::i;:::-;34325:139;;34052:419;;;:::o;34477:85::-;34522:7;34551:5;34540:16;;34477:85;;;:::o;34568:158::-;34626:9;34659:61;34677:42;34686:32;34712:5;34686:32;:::i;:::-;34677:42;:::i;:::-;34659:61;:::i;:::-;34646:74;;34568:158;;;:::o;34732:147::-;34827:45;34866:5;34827:45;:::i;:::-;34822:3;34815:58;34732:147;;:::o;34885:807::-;35134:4;35172:3;35161:9;35157:19;35149:27;;35186:71;35254:1;35243:9;35239:17;35230:6;35186:71;:::i;:::-;35267:72;35335:2;35324:9;35320:18;35311:6;35267:72;:::i;:::-;35349:80;35425:2;35414:9;35410:18;35401:6;35349:80;:::i;:::-;35439;35515:2;35504:9;35500:18;35491:6;35439:80;:::i;:::-;35529:73;35597:3;35586:9;35582:19;35573:6;35529:73;:::i;:::-;35612;35680:3;35669:9;35665:19;35656:6;35612:73;:::i;:::-;34885:807;;;;;;;;;:::o;35698:663::-;35786:6;35794;35802;35851:2;35839:9;35830:7;35826:23;35822:32;35819:119;;;35857:79;;:::i;:::-;35819:119;35977:1;36002:64;36058:7;36049:6;36038:9;36034:22;36002:64;:::i;:::-;35992:74;;35948:128;36115:2;36141:64;36197:7;36188:6;36177:9;36173:22;36141:64;:::i;:::-;36131:74;;36086:129;36254:2;36280:64;36336:7;36327:6;36316:9;36312:22;36280:64;:::i;:::-;36270:74;;36225:129;35698:663;;;;;:::o;36367:147::-;36468:11;36505:3;36490:18;;36367:147;;;;:::o;36520:114::-;;:::o;36640:398::-;36799:3;36820:83;36901:1;36896:3;36820:83;:::i;:::-;36813:90;;36912:93;37001:3;36912:93;:::i;:::-;37030:1;37025:3;37021:11;37014:18;;36640:398;;;:::o;37044:379::-;37228:3;37250:147;37393:3;37250:147;:::i;:::-;37243:154;;37414:3;37407:10;;37044:379;;;:::o;37429:442::-;37578:4;37616:2;37605:9;37601:18;37593:26;;37629:71;37697:1;37686:9;37682:17;37673:6;37629:71;:::i;:::-;37710:72;37778:2;37767:9;37763:18;37754:6;37710:72;:::i;:::-;37792;37860:2;37849:9;37845:18;37836:6;37792:72;:::i;:::-;37429:442;;;;;;:::o;37877:225::-;38017:34;38013:1;38005:6;38001:14;37994:58;38086:8;38081:2;38073:6;38069:15;38062:33;37877:225;:::o;38108:366::-;38250:3;38271:67;38335:2;38330:3;38271:67;:::i;:::-;38264:74;;38347:93;38436:3;38347:93;:::i;:::-;38465:2;38460:3;38456:12;38449:19;;38108:366;;;:::o;38480:419::-;38646:4;38684:2;38673:9;38669:18;38661:26;;38733:9;38727:4;38723:20;38719:1;38708:9;38704:17;38697:47;38761:131;38887:4;38761:131;:::i;:::-;38753:139;;38480:419;;;:::o;38905:180::-;38953:77;38950:1;38943:88;39050:4;39047:1;39040:15;39074:4;39071:1;39064:15;39091:180;39139:77;39136:1;39129:88;39236:4;39233:1;39226:15;39260:4;39257:1;39250:15;39277:143;39334:5;39365:6;39359:13;39350:22;;39381:33;39408:5;39381:33;:::i;:::-;39277:143;;;;:::o;39426:351::-;39496:6;39545:2;39533:9;39524:7;39520:23;39516:32;39513:119;;;39551:79;;:::i;:::-;39513:119;39671:1;39696:64;39752:7;39743:6;39732:9;39728:22;39696:64;:::i;:::-;39686:74;;39642:128;39426:351;;;;:::o;39783:114::-;39850:6;39884:5;39878:12;39868:22;;39783:114;;;:::o;39903:184::-;40002:11;40036:6;40031:3;40024:19;40076:4;40071:3;40067:14;40052:29;;39903:184;;;;:::o;40093:132::-;40160:4;40183:3;40175:11;;40213:4;40208:3;40204:14;40196:22;;40093:132;;;:::o;40231:108::-;40308:24;40326:5;40308:24;:::i;:::-;40303:3;40296:37;40231:108;;:::o;40345:179::-;40414:10;40435:46;40477:3;40469:6;40435:46;:::i;:::-;40513:4;40508:3;40504:14;40490:28;;40345:179;;;;:::o;40530:113::-;40600:4;40632;40627:3;40623:14;40615:22;;40530:113;;;:::o;40679:732::-;40798:3;40827:54;40875:5;40827:54;:::i;:::-;40897:86;40976:6;40971:3;40897:86;:::i;:::-;40890:93;;41007:56;41057:5;41007:56;:::i;:::-;41086:7;41117:1;41102:284;41127:6;41124:1;41121:13;41102:284;;;41203:6;41197:13;41230:63;41289:3;41274:13;41230:63;:::i;:::-;41223:70;;41316:60;41369:6;41316:60;:::i;:::-;41306:70;;41162:224;41149:1;41146;41142:9;41137:14;;41102:284;;;41106:14;41402:3;41395:10;;40803:608;;;40679:732;;;;:::o;41417:831::-;41680:4;41718:3;41707:9;41703:19;41695:27;;41732:71;41800:1;41789:9;41785:17;41776:6;41732:71;:::i;:::-;41813:80;41889:2;41878:9;41874:18;41865:6;41813:80;:::i;:::-;41940:9;41934:4;41930:20;41925:2;41914:9;41910:18;41903:48;41968:108;42071:4;42062:6;41968:108;:::i;:::-;41960:116;;42086:72;42154:2;42143:9;42139:18;42130:6;42086:72;:::i;:::-;42168:73;42236:3;42225:9;42221:19;42212:6;42168:73;:::i;:::-;41417:831;;;;;;;;:::o

Swarm Source

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