ETH Price: $2,455.17 (-4.50%)

Token

Synergy DAO (SYN)
 

Overview

Max Total Supply

100,000,000,000,000 SYN

Holders

297

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
Uniswap V2: SYN 16
Balance
0.000132024 SYN

Value
$0.00
0x01ffe7f88a14bf78e0eaa2a432c1c00de629b27a
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:
SynergyDAO

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity Multiple files format)

File 12 of 12: SYNERGY.sol
pragma solidity ^0.8.17;

// SPDX-License-Identifier: Apache-2.0

// MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
// MMMMMMMMMMMMMMMWN0kkOKNWMMMMMMMMMMMMMMMM
// MMMMMMMMMMMMWXOo;.  ..;oOXWMMMMMMMMMMMMM
// MMMMMMMMWNKxc'. .';;,.. .'cxKNWMMMMMMMMM
// Kk0NMWXOo;.  .;lkKWNXKkl,.  .;oOXWMMMMMM
// x..;cc'. ..:d0NWWNXXXNWWN0d:.. .,lkKNMMM
// d.    .,lkKNWWXOo;..,;oOXWWNKkl,. ..:xXM
// d.  ,d0XWWN0xc,.       .,lkKNWWXOo;...kW
// d. .dNWMMWKo'             ..:dKWMWNKxd0W
// d.  .cx0NWWN0d:..             cXMMMMMWMM
// x.     .;oOXWWNKkl,..         'kXWMMMMMM
// 0l'.      .,cxKNWWX0kd:.       .,lkKWWMM
// MWXko;.       .:oOXWMWNKxl,.      .'cxXM
// MMMMWX0o.        .,ldkKNWWXOd:.      'kW
// MMMMMMMK;            .':dOXWWN0xc'.  .xW
// KO0NWMMNk:'.             .;xXMMMWKl. .xW
// x..;oOXWWNKkl,.         .,lONWMWKk:. .xW
// 0c.. .,lxKNWWXOd:....':d0XWWN0xc'.   .xW
// WNKkc,....:dOXWWNKOOOKNWWXOo;....,lo:cOW
// MMMMWXOo:....,lkKNWWWNKxc,. ..:dOXWWNNWM
// MMMMMMMWNKxc,. .':ool:.. .,ckKNMMMMMMMMM
// MMMMMMMMMMMWXOo;..   ..:oOXWMMMMMMMMMMMM
// MMMMMMMMMMMMMMWN0xlloxKNWMMMMMMMMMMMMMMM
// MMMMMMMMMMMMMMMMMMWWWMMMMMMMMMMMMMMMMMMM
// MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
//
// This contract is property of Syntech
// All rights reserved - 2023

import "./SafeMath.sol";
import "./Address.sol";
import "./RewardsToken.sol";
import "./IUniswapV2Factory.sol";
import "./IUniswapV2Router.sol";
import "./IRewardsTracker.sol";

contract SynergyDAO is RewardsToken {
    using SafeMath for uint256;
    using Address for address;
    
    // Supply, limits and fees
    uint256 private constant REWARDS_TRACKER_IDENTIFIER = 2;
    uint256 private constant TOTAL_SUPPLY = 100000000000000 * (10**9);

    uint256 public maxTxAmount = TOTAL_SUPPLY.mul(20).div(1000); // 2%
    uint256 public maxWalletSize = TOTAL_SUPPLY.mul(20).div(1000); // 2%

    uint256 private platformFee = 100; //  1%
    uint256 private _previousPlatformFee = platformFee;

    uint256 public devFee = 300; // 3%
    uint256 public sellDevFee = 300; // 3%
    uint256 private _previousDevFee = devFee;
    
    uint256 public rewardsFee = 400; // 4%
    uint256 public sellRewardsFee = 400; // 4%
    uint256 private _previousRewardsFee = rewardsFee;

    uint256 public liquidityFee = 200; // 2%
    uint256 public sellLiquidityFee = 400; // 4%
    uint256 private _previousLiquidityFee = liquidityFee;

    uint256 public launchSellFee = 1500; // 15%
    uint256 private _previousLaunchSellFee = launchSellFee;

    address payable private _platformWalletAddress =
        payable(0x4b15a453B0a89Ef57eFfccbc1ff74e11DCFae7DF);
    address payable private _devWalletAddress =
        payable(0xE18CF66cb533E623BF7fb1Ea708e34021684E350);

    uint256 public launchSellFeeDeadline = 0;

    IRewardsTracker private _rewardsTracker;

    // Fallback to generic transfer. On by default
    bool public useGenericTransfer = true;

    // Prepared for launch
    bool private preparedForLaunch = false;
    
    // Exclusions
    mapping(address => bool) private _isExcludedFromFee;
    mapping(address => bool) private _isExcludedFromMaxTx;
    
    // Token -> ETH swap support
    IUniswapV2Router public uniswapV2Router;
    address public uniswapV2Pair;

    bool currentlySwapping;
    bool public swapAndRedirectEthFeesEnabled = true;

    uint256 private minTokensBeforeSwap = 1000000000 * 10**9;

    // Events and modifiers
    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndRedirectEthFeesUpdated(bool enabled);
    event OnSwapAndRedirectEthFees(
        uint256 tokensSwapped,
        uint256 ethToDevWallet
    );
    event MaxTxAmountUpdated(uint256 maxTxAmount);
    event MaxWalletSizeUpdated(uint256 maxWalletSize);
    event GenericTransferChanged(bool useGenericTransfer);
    event ExcludeFromFees(address wallet);
    event IncludeInFees(address wallet);
    event DevWalletUpdated(address newDevWallet);
    event RewardsTrackerUpdated(address newRewardsTracker);
    event RouterUpdated(address newRouterAddress);
    event FeesChanged(
        uint256 newDevFee,
        uint256 newSellDevFee,
        uint256 newRewardsFee,
        uint256 newSellRewardsFee,
        uint256 newLiquidtyFee,
        uint256 newSellLiquidityFee
    );
    event LaunchFeeUpdated(uint256 newLaunchSellFee);

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

    constructor() ERC20("Synergy DAO", "SYN") {
        IUniswapV2Router _uniswapV2Router = IUniswapV2Router(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        // Create a uniswap pair for this new token
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        // set the rest of the contract variables
        uniswapV2Router = _uniswapV2Router;
        
        // mint supply
        _mint(owner(), TOTAL_SUPPLY);

        // exclude owner and this contract from fee
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        
        // internal exclude from max tx
        _isExcludedFromMaxTx[owner()] = true;
        _isExcludedFromMaxTx[address(this)] = true;
        
        // exclude from rewards
        excludeFromRewards(address(this));
        excludeFromRewards(address(0xdead));
        excludeFromRewards(uniswapV2Pair);
    }
    
    function decimals() public view virtual override returns (uint8) {
        return 9;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        // launch preparation
        require(preparedForLaunch || _msgSender() == owner(), "Contract has not been prepared for launch and user is not owner");

        // fallback implementation
        if (useGenericTransfer) {
            super._transfer(from, to, amount);
            return;
        }

        if(to != uniswapV2Pair) {
            require(balanceOf(to) + amount < maxWalletSize, "Balance exceeds max wallet size");
        }

        if (
            !_isExcludedFromMaxTx[from] &&
            !_isExcludedFromMaxTx[to] // by default false
        ) {
            require(
                amount <= maxTxAmount,
                "Transfer amount exceeds the maxTxAmount"
            );
        }

        // sell fees
        uint256 baseRewardsFee = rewardsFee;
        uint256 baseDevFee = devFee;
        uint256 baseLiquidityFee = liquidityFee;
        if (to == uniswapV2Pair) {
            devFee = sellDevFee;
            rewardsFee = sellRewardsFee;
            liquidityFee = sellLiquidityFee;

            if (launchSellFeeDeadline >= block.timestamp) {
                devFee = devFee.add(launchSellFee);
            }
        }

        // start swap to ETH
        uint256 contractTokenBalance = balanceOf(address(this));
        bool overMinTokenBalance = contractTokenBalance >= minTokensBeforeSwap;
        if (
            overMinTokenBalance &&
            !currentlySwapping &&
            from != uniswapV2Pair &&
            swapAndRedirectEthFeesEnabled
        ) {
            // add dev fee
            swapAndRedirectEthFees(contractTokenBalance);
        }

        if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
            removeAllFee();
        }

        (uint256 tTransferAmount, uint256 tFee) = _getValues(amount);
        _balances[from] = _balances[from].sub(amount);
        _balances[to] = _balances[to].add(tTransferAmount);

        _takeFee(tFee);

        if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
            restoreAllFee();
        }

        // restore fees
        devFee = baseDevFee;
        rewardsFee = baseRewardsFee;
        liquidityFee = baseLiquidityFee;

        emit Transfer(from, to, tTransferAmount);
    }

    //to recieve ETH from uniswapV2Router when swaping
    receive() external payable {}

    function _getValues(uint256 tAmount)
        private
        view
        returns (uint256, uint256)
    {
        uint256 tFee = calculateFee(tAmount);
        uint256 tTransferAmount = tAmount.sub(tFee);
        return (tTransferAmount, tFee);
    }

    function _takeFee(uint256 fee) private {
        _balances[address(this)] = _balances[address(this)].add(fee);
    }

    function calculateFee(uint256 _amount)
        private
        view
        returns (uint256)
    {
        uint256 totalFee = devFee.add(rewardsFee).add(liquidityFee).add(platformFee);
        return _amount.mul(totalFee).div(10000);
    }

    function removeAllFee() private {
        if (devFee == 0 && rewardsFee == 0 && platformFee == 0 && liquidityFee == 0) return;

        _previousPlatformFee = platformFee;
        _previousDevFee = devFee;
        _previousRewardsFee = rewardsFee;
        _previousLiquidityFee = liquidityFee;

        platformFee = 0;
        devFee = 0;
        rewardsFee = 0;
        liquidityFee = 0;
    }

    function restoreAllFee() private {
        platformFee = _previousPlatformFee;
        devFee = _previousDevFee;
        rewardsFee = _previousRewardsFee;
        liquidityFee = _previousLiquidityFee;
    }

    function swapAndRedirectEthFees(uint256 contractTokenBalance)
        private
        lockTheSwap
    {
        uint256 totalRedirectFee = devFee.add(rewardsFee).add(liquidityFee).add(platformFee);
        if (totalRedirectFee == 0) return;
        
        // capture the contract's current ETH balance.
        // this is so that we can capture exactly the amount of ETH that the
        // swap creates, and not make the fee events include any ETH that
        // has been manually sent to the contract
        uint256 initialBalance = address(this).balance;

        // add liquidity
        uint256 liquidityTokenBalance = contractTokenBalance.mul(liquidityFee).div(totalRedirectFee);

        // split the liquidity balance into halves
        uint256 halfLiquidity = liquidityTokenBalance.div(2);

        // swap tokens for ETH
        uint256 adjustedTokenBalance = contractTokenBalance.sub(halfLiquidity);
        swapTokensForEth(adjustedTokenBalance);

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

        if (newBalance > 0) {
            // send to liquidity 
            uint256 liquidityEthBalance = newBalance.mul(liquidityFee.div(2)).div(totalRedirectFee);
            addLiquidity(halfLiquidity, liquidityEthBalance);

            // send to platform wallet
            uint256 platformBalance = newBalance.mul(platformFee).div(totalRedirectFee);
            sendEthToWallet(_platformWalletAddress, platformBalance);

            //
            // send to rewards wallet
            //
            uint256 rewardsBalance = newBalance.mul(rewardsFee).div(totalRedirectFee);
            if (rewardsBalance > 0 && address(_rewardsTracker) != address(0)) {
                try _rewardsTracker.addAllocation{value: rewardsBalance}(REWARDS_TRACKER_IDENTIFIER) {} catch {}
            }
            
            //
            // send to dev wallet
            //
            uint256 devBalance = newBalance.mul(devFee).div(totalRedirectFee);
            sendEthToWallet(_devWalletAddress, devBalance);

            emit OnSwapAndRedirectEthFees(contractTokenBalance, newBalance);
        }
    }

    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
            owner(),
            block.timestamp
        );
    }

    function sendEthToWallet(address wallet, uint256 amount) private {
        if (amount > 0) {
            payable(wallet).transfer(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 prepareForLaunch() external onlyOwner {
        require(!preparedForLaunch, "Already prepared for launch");

        // ready for launch
        preparedForLaunch = true;

        // sell penalty for the time specified below
        launchSellFeeDeadline = block.timestamp + 2 days;
    }

    function setUseGenericTransfer(bool genericTransfer) external onlyOwner {
        useGenericTransfer = genericTransfer;
        emit GenericTransferChanged(genericTransfer);
    }
    
    // for 0.5% input 5, for 1% input 10
    function setMaxTxPercent(uint256 newMaxTx) external onlyOwner {
        require(newMaxTx >= 5, "Max TX should be above 0.5%");
        maxTxAmount = TOTAL_SUPPLY.mul(newMaxTx).div(1000);
        emit MaxTxAmountUpdated(maxTxAmount);
    }

    // for 0.5% input 5, for 1% input 10
    function setMaxWalletSize(uint256 newMaxWallet) public onlyOwner {
        require(newMaxWallet >= 1, "Max wallet size should be above 0.1%");
        maxWalletSize = TOTAL_SUPPLY.mul(newMaxWallet).div(1000);
        emit MaxWalletSizeUpdated(maxWalletSize);
    }
    
    function isExcludedFromFee(address account) external view returns (bool) {
        return _isExcludedFromFee[account];
    }

    function excludeFromFee(address account) external onlyOwner {
        _isExcludedFromFee[account] = true;
        emit ExcludeFromFees(account);
    }

    function includeInFee(address account) external onlyOwner {
        _isExcludedFromFee[account] = false;
        emit IncludeInFees(account);
    }

    function setFees(
        uint256 newDevFee,
        uint256 newSellDevFee,
        uint256 newRewardsFee,
        uint256 newSellRewardsFee,
        uint256 newLiquidtyFee,
        uint256 newSellLiquidityFee
    ) external onlyOwner {
        require(
            newDevFee <= 1000 &&
            newSellDevFee <= 1000 &&
            newRewardsFee <= 1000 &&
            newSellRewardsFee <= 1000 &&
            newLiquidtyFee <= 1000 &&
            newSellLiquidityFee <= 1000,
            "Fees exceed maximum allowed value"
        );
        devFee = newDevFee;
        sellDevFee = newSellDevFee;
        rewardsFee = newRewardsFee;
        sellRewardsFee = newSellRewardsFee;
        liquidityFee = newLiquidtyFee;
        sellLiquidityFee = newSellLiquidityFee;
        emit FeesChanged(newDevFee, newSellDevFee, newRewardsFee, newSellRewardsFee, newLiquidtyFee, newSellLiquidityFee);
    }

    function setLaunchSellFee(uint256 newLaunchSellFee) external onlyOwner {
        require(newLaunchSellFee <= 2500, "Maximum launch sell fee is 25%");
        launchSellFee = newLaunchSellFee;
        emit LaunchFeeUpdated(newLaunchSellFee);
    }

    function setDevWallet(address payable newDevWallet)
        external
        onlyOwner
    {
        _devWalletAddress = newDevWallet;
        emit DevWalletUpdated(newDevWallet);
    }
    
    function setRewardsTracker(address payable newRewardsTracker)
        external
        onlyOwner
    {
        _rewardsTracker = IRewardsTracker(newRewardsTracker);
        emit RewardsTrackerUpdated(newRewardsTracker);
    }

    function setRouterAddress(address newRouter) external onlyOwner {
        IUniswapV2Router _newUniswapRouter = IUniswapV2Router(newRouter);
        uniswapV2Pair = IUniswapV2Factory(_newUniswapRouter.factory())
            .createPair(address(this), _newUniswapRouter.WETH());
        uniswapV2Router = _newUniswapRouter;
        emit RouterUpdated(newRouter);
    }

    function setSwapAndRedirectEthFeesEnabled(bool enabled) external onlyOwner {
        swapAndRedirectEthFeesEnabled = enabled;
        emit SwapAndRedirectEthFeesUpdated(enabled);
    }

    function setMinTokensBeforeSwap(uint256 minTokens) external onlyOwner {
        minTokensBeforeSwap = minTokens * 10**9;
        emit MinTokensBeforeSwapUpdated(minTokens);
    }
    
    // emergency claim functions
    function manualSwap() external onlyOwner {
        uint256 contractBalance = balanceOf(address(this));
        swapTokensForEth(contractBalance);
    }

    function manualSend() external onlyOwner {
        uint256 contractEthBalance = address(this).balance;
        sendEthToWallet(_devWalletAddress, contractEthBalance);
    }
}

File 1 of 12: Address.sol
pragma solidity ^0.8.17;

// SPDX-License-Identifier: MIT

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            codehash := extcodehash(account)
        }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(
            address(this).balance >= amount,
            "Address: insufficient balance"
        );

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{value: amount}("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return
            functionCallWithValue(
                target,
                data,
                value,
                "Address: low-level call with value failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(
            address(this).balance >= value,
            "Address: insufficient balance for call"
        );
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(
        address target,
        bytes memory data,
        uint256 weiValue,
        string memory errorMessage
    ) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{value: weiValue}(
            data
        );
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 2 of 12: Context.sol
pragma solidity ^0.8.17;

// SPDX-License-Identifier: MIT

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

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 3 of 12: ERC20.sol
pragma solidity ^0.8.17;

// SPDX-License-Identifier: MIT

import "./IERC20.sol";
import "./IERC20Metadata.sol";
import "./Context.sol";
import "./SafeMath.sol";
import "./Address.sol";

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

    mapping(address => uint256) internal _balances;

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

    uint256 internal _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the 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);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        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].add(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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(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 = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

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

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

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

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

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

    /**
     * @dev 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 to 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 {}
}

File 4 of 12: IERC20.sol
pragma solidity ^0.8.17;

// SPDX-License-Identifier: MIT

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

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

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

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

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

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

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

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

File 5 of 12: IERC20Metadata.sol
pragma solidity ^0.8.17;

// SPDX-License-Identifier: MIT

import "./IERC20.sol";

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

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

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

File 6 of 12: IRewardsTracker.sol
pragma solidity 0.8.17;

// SPDX-License-Identifier: Apache-2.0

interface IRewardsTracker {
    
    function addAllocation(uint identifier) external payable;
}

File 7 of 12: IUniswapV2Factory.sol
pragma solidity 0.8.17;

// SPDX-License-Identifier: MIT

interface IUniswapV2Factory {

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

File 8 of 12: IUniswapV2Router.sol
pragma solidity 0.8.17;

// SPDX-License-Identifier: MIT

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

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

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

File 9 of 12: Ownable.sol
pragma solidity 0.8.17;

// SPDX-License-Identifier: MIT

import "./Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
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() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view 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() external virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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) external virtual onlyOwner {
        require(
            newOwner != address(0),
            "Ownable: new owner is the zero address"
        );
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 10 of 12: RewardsToken.sol
pragma solidity ^0.8.17;

// SPDX-License-Identifier: Apache-2.0

import "./ERC20.sol";
import "./Ownable.sol";

abstract contract RewardsToken is ERC20, Ownable {

    address[] private excludedFromRewards;
    mapping(address => bool) private isAddressExcluded;
    
    event ExcludeFromRewards(address wallet);
    event IncludeInRewards(address wallet);
    
    function deleteExcluded(uint index) internal {
        require(index < excludedFromRewards.length, "Index is greater than array length");
        excludedFromRewards[index] = excludedFromRewards[excludedFromRewards.length - 1];
        excludedFromRewards.pop();
    }
    
    function getExcludedBalances() internal view returns (uint256) {
        uint256 totalExcludedHoldings = 0;
        for (uint i = 0; i < excludedFromRewards.length; i++) {
            totalExcludedHoldings += balanceOf(excludedFromRewards[i]);
        }
        return totalExcludedHoldings;
    }
    
    function excludeFromRewards(address wallet) public onlyOwner {
        require(!isAddressExcluded[wallet], "Address is already excluded from rewards");
        excludedFromRewards.push(wallet);
        isAddressExcluded[wallet] = true;
        emit ExcludeFromRewards(wallet);
    }
    
    function includeInRewards(address wallet) external onlyOwner {
        require(isAddressExcluded[wallet], "Address is not excluded from rewards");
        for (uint i = 0; i < excludedFromRewards.length; i++) {
            if (excludedFromRewards[i] == wallet) {
                isAddressExcluded[wallet] = false;
                deleteExcluded(i);
                break;
            }
        }
        emit IncludeInRewards(wallet);
    }
    
    function isExcludedFromRewards(address wallet) external view returns (bool) {
        return isAddressExcluded[wallet];
    }
    
    function getAllExcludedFromRewards() external view returns (address[] memory) {
        return excludedFromRewards;
    }
    
    function getRewardsSupply() public view returns (uint256) {
        return _totalSupply - getExcludedBalances();
    }
}

File 11 of 12: SafeMath.sol
pragma solidity ^0.8.17;

// SPDX-License-Identifier: MIT

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */

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

        return c;
    }

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

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

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

        return c;
    }

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newDevWallet","type":"address"}],"name":"DevWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"wallet","type":"address"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"wallet","type":"address"}],"name":"ExcludeFromRewards","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newDevFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newSellDevFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newRewardsFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newSellRewardsFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newLiquidtyFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newSellLiquidityFee","type":"uint256"}],"name":"FeesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"useGenericTransfer","type":"bool"}],"name":"GenericTransferChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"wallet","type":"address"}],"name":"IncludeInFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"wallet","type":"address"}],"name":"IncludeInRewards","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newLaunchSellFee","type":"uint256"}],"name":"LaunchFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"MaxTxAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxWalletSize","type":"uint256"}],"name":"MaxWalletSizeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethToDevWallet","type":"uint256"}],"name":"OnSwapAndRedirectEthFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newRewardsTracker","type":"address"}],"name":"RewardsTrackerUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newRouterAddress","type":"address"}],"name":"RouterUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndRedirectEthFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"devFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"excludeFromRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAllExcludedFromRewards","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRewardsSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"includeInRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"isExcludedFromRewards","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchSellFeeDeadline","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletSize","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":"prepareForLaunch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDevFee","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":"sellRewardsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"newDevWallet","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newDevFee","type":"uint256"},{"internalType":"uint256","name":"newSellDevFee","type":"uint256"},{"internalType":"uint256","name":"newRewardsFee","type":"uint256"},{"internalType":"uint256","name":"newSellRewardsFee","type":"uint256"},{"internalType":"uint256","name":"newLiquidtyFee","type":"uint256"},{"internalType":"uint256","name":"newSellLiquidityFee","type":"uint256"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLaunchSellFee","type":"uint256"}],"name":"setLaunchSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxTx","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxWallet","type":"uint256"}],"name":"setMaxWalletSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"minTokens","type":"uint256"}],"name":"setMinTokensBeforeSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newRewardsTracker","type":"address"}],"name":"setRewardsTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRouter","type":"address"}],"name":"setRouterAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setSwapAndRedirectEthFeesEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"genericTransfer","type":"bool"}],"name":"setUseGenericTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndRedirectEthFeesEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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 IUniswapV2Router","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"useGenericTransfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052620000446103e862000030601469152d02c7e14af6800000620004a360201b620018f51790919060201c565b6200053a60201b6200197e1790919060201c565b600855620000736103e862000030601469152d02c7e14af6800000620004a360201b620018f51790919060201c565b6009556064600a819055600b5561012c600c819055600d819055600e55610190600f8190556010819055601181905560c860128190556013919091556014556105dc6015819055601655601780546001600160a01b0319908116734b15a453b0a89ef57effccbc1ff74e11dcfae7df179091556018805490911673e18cf66cb533e623bf7fb1ea708e34021684e3501790556000601955601a805461ffff60a01b1916600160a01b179055601e805460ff60a81b1916600160a81b179055670de0b6b3a7640000601f553480156200014a57600080fd5b506040518060400160405280600b81526020016a53796e657267792044414f60a81b8152506040518060400160405280600381526020016229aca760e91b81525081600390816200019c91906200093e565b506004620001ab82826200093e565b5050506000620001c06200058460201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000266573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200028c919062000a0a565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002da573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000300919062000a0a565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200034e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000374919062000a0a565b601e80546001600160a01b03199081166001600160a01b0393841617909155601d8054909116838316179055600554620003ba911669152d02c7e14af680000062000588565b6001601b6000620003d36005546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff19958616179055308152601b909252812080549092166001908117909255601c906200042c6005546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff1995861617905530808252601c909352208054909216600117909155620004789062000684565b6200048561dead62000684565b601e546200049c906001600160a01b031662000684565b5062000aee565b600082600003620004b75750600062000534565b6000620004c5838562000a4b565b905082620004d4858362000a65565b14620005315760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084015b60405180910390fd5b90505b92915050565b60006200053183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250620007f660201b60201c565b3390565b6001600160a01b038216620005e05760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000528565b620005fc816002546200083760201b620019c01790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200062f918390620019c062000837821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620006e05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000528565b6001600160a01b03811660009081526007602052604090205460ff16156200075c5760405162461bcd60e51b815260206004820152602860248201527f4164647265737320697320616c7265616479206578636c756465642066726f6d604482015267207265776172647360c01b606482015260840162000528565b6006805460018082019092557ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b0319166001600160a01b038416908117909155600081815260076020908152604091829020805460ff1916909417909355519081527f9dc0c5d829ba95d4a3aa3e40791b3e0ff125f876788532b9f7f6eb543d8dfbd6910160405180910390a150565b600081836200081a5760405162461bcd60e51b815260040162000528919062000a88565b50600062000829848662000a65565b95945050505050565b505050565b60008062000846838562000ad8565b905083811015620005315760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640162000528565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620008c557607f821691505b602082108103620008e657634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200083257600081815260208120601f850160051c81016020861015620009155750805b601f850160051c820191505b81811015620009365782815560010162000921565b505050505050565b81516001600160401b038111156200095a576200095a6200089a565b62000972816200096b8454620008b0565b84620008ec565b602080601f831160018114620009aa5760008415620009915750858301515b600019600386901b1c1916600185901b17855562000936565b600085815260208120601f198616915b82811015620009db57888601518255948401946001909101908401620009ba565b5085821015620009fa5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121562000a1d57600080fd5b81516001600160a01b03811681146200053157600080fd5b634e487b7160e01b600052601160045260246000fd5b808202811582820484141762000534576200053462000a35565b60008262000a8357634e487b7160e01b600052601260045260246000fd5b500490565b600060208083528351808285015260005b8181101562000ab75785810183015185820160400152820162000a99565b506000604082860101526040601f19601f8301168501019250505092915050565b8082018082111562000534576200053462000a35565b612cef8062000afe6000396000f3fe6080604052600436106102b25760003560e01c806386f6c3c111610175578063af01f2b2116100dc578063e89bcca211610095578063f2fde38b1161006f578063f2fde38b14610878578063f429389014610898578063f6374342146108ad578063fffa1dd9146108c357600080fd5b8063e89bcca214610818578063ea1644d514610838578063ea2f0b371461085857600080fd5b8063af01f2b214610746578063b609995e1461075c578063ba385abb1461077c578063bb8d51311461079c578063d543dbeb146107b2578063dd62ed3e146107d257600080fd5b806398850b641161012e57806398850b6414610698578063a0d82dc5146106b9578063a1ab19a3146106cf578063a457c2d7146106e4578063a9059cbb14610704578063ada46d0a1461072457600080fd5b806386f6c3c1146106035780638c0b5e22146106235780638da5cb5b146106395780638f3fa8601461065757806395d89b411461066d57806398118cb41461068257600080fd5b806339509351116102195780635342acb4116101d25780635342acb414610533578063549593631461056c5780636827e7641461058257806370a0823114610598578063715018a6146105ce5780638421b507146105e357600080fd5b8063395093511461047e57806341cb87fc1461049e578063437823ec146104be57806348a46473146104de57806349bd5a5e146104fe57806351bc3c851461051e57600080fd5b806318160ddd1161026b57806318160ddd146103cd5780631f53ac02146103ec57806323b872dd1461040c57806326b6308d1461042c5780632bb14e1d1461044c578063313ce5671461046257600080fd5b806306fdde03146102be578063095ea7b3146102e95780630e83227314610319578063111e037614610352578063113201fa146103745780631694505e1461039557600080fd5b366102b957005b600080fd5b3480156102ca57600080fd5b506102d36108d8565b6040516102e091906128a1565b60405180910390f35b3480156102f557600080fd5b50610309610304366004612904565b61096a565b60405190151581526020016102e0565b34801561032557600080fd5b50610309610334366004612930565b6001600160a01b031660009081526007602052604090205460ff1690565b34801561035e57600080fd5b5061037261036d366004612930565b610981565b005b34801561038057600080fd5b50601e5461030990600160a81b900460ff1681565b3480156103a157600080fd5b50601d546103b5906001600160a01b031681565b6040516001600160a01b0390911681526020016102e0565b3480156103d957600080fd5b506002545b6040519081526020016102e0565b3480156103f857600080fd5b50610372610407366004612930565b610ac9565b34801561041857600080fd5b5061030961042736600461294d565b610b41565b34801561043857600080fd5b5061037261044736600461298e565b610baa565b34801561045857600080fd5b506103de600f5481565b34801561046e57600080fd5b50604051600981526020016102e0565b34801561048a57600080fd5b50610309610499366004612904565b610c21565b3480156104aa57600080fd5b506103726104b9366004612930565b610c57565b3480156104ca57600080fd5b506103726104d9366004612930565b610e2f565b3480156104ea57600080fd5b506103726104f93660046129b0565b610ead565b34801561050a57600080fd5b50601e546103b5906001600160a01b031681565b34801561052a57600080fd5b50610372610f18565b34801561053f57600080fd5b5061030961054e366004612930565b6001600160a01b03166000908152601b602052604090205460ff1690565b34801561057857600080fd5b506103de60155481565b34801561058e57600080fd5b506103de600c5481565b3480156105a457600080fd5b506103de6105b3366004612930565b6001600160a01b031660009081526020819052604090205490565b3480156105da57600080fd5b50610372610f5e565b3480156105ef57600080fd5b506103726105fe3660046129b0565b610fd2565b34801561060f57600080fd5b5061037261061e3660046129c9565b611083565b34801561062f57600080fd5b506103de60085481565b34801561064557600080fd5b506005546001600160a01b03166103b5565b34801561066357600080fd5b506103de60095481565b34801561067957600080fd5b506102d36111cb565b34801561068e57600080fd5b506103de60125481565b3480156106a457600080fd5b50601a5461030990600160a01b900460ff1681565b3480156106c557600080fd5b506103de600d5481565b3480156106db57600080fd5b506103726111da565b3480156106f057600080fd5b506103096106ff366004612904565b611283565b34801561071057600080fd5b5061030961071f366004612904565b6112d2565b34801561073057600080fd5b506107396112df565b6040516102e09190612a50565b34801561075257600080fd5b506103de60195481565b34801561076857600080fd5b50610372610777366004612930565b611340565b34801561078857600080fd5b50610372610797366004612930565b61149c565b3480156107a857600080fd5b506103de60105481565b3480156107be57600080fd5b506103726107cd3660046129b0565b611514565b3480156107de57600080fd5b506103de6107ed366004612a63565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561082457600080fd5b5061037261083336600461298e565b6115e4565b34801561084457600080fd5b506103726108533660046129b0565b61165b565b34801561086457600080fd5b50610372610873366004612930565b611731565b34801561088457600080fd5b50610372610893366004612930565b6117ac565b3480156108a457600080fd5b50610372611897565b3480156108b957600080fd5b506103de60135481565b3480156108cf57600080fd5b506103de6118d9565b6060600380546108e790612a9c565b80601f016020809104026020016040519081016040528092919081815260200182805461091390612a9c565b80156109605780601f1061093557610100808354040283529160200191610960565b820191906000526020600020905b81548152906001019060200180831161094357829003601f168201915b5050505050905090565b6000610977338484611a1f565b5060015b92915050565b6005546001600160a01b031633146109b45760405162461bcd60e51b81526004016109ab90612ad0565b60405180910390fd5b6001600160a01b03811660009081526007602052604090205460ff1615610a2e5760405162461bcd60e51b815260206004820152602860248201527f4164647265737320697320616c7265616479206578636c756465642066726f6d604482015267207265776172647360c01b60648201526084016109ab565b6006805460018082019092557ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b0319166001600160a01b038416908117909155600081815260076020908152604091829020805460ff1916909417909355519081527f9dc0c5d829ba95d4a3aa3e40791b3e0ff125f876788532b9f7f6eb543d8dfbd691015b60405180910390a150565b6005546001600160a01b03163314610af35760405162461bcd60e51b81526004016109ab90612ad0565b601880546001600160a01b0319166001600160a01b0383169081179091556040519081527f31bb1993faff4f8409d7baad771f861e093ef4ce2c92c6e0cb10b82d1c7324cb90602001610abe565b6000610b4e848484611b44565b610ba08433610b9b85604051806060016040528060288152602001612c6d602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611f7a565b611a1f565b5060019392505050565b6005546001600160a01b03163314610bd45760405162461bcd60e51b81526004016109ab90612ad0565b601e8054821515600160a81b0260ff60a81b199091161790556040517fd9fca2a469120637ae54e43ab68dfdcd9354db52d615dea3d3a66a085e6f41b990610abe90831515815260200190565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610977918590610b9b90866119c0565b6005546001600160a01b03163314610c815760405162461bcd60e51b81526004016109ab90612ad0565b6000819050806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610cc4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ce89190612b05565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d35573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d599190612b05565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610da6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dca9190612b05565b601e80546001600160a01b03199081166001600160a01b0393841617909155601d805490911683831617905560405190831681527f7aed1d3e8155a07ccf395e44ea3109a0e2d6c9b29bbbe9f142d9790596f4dc809060200160405180910390a15050565b6005546001600160a01b03163314610e595760405162461bcd60e51b81526004016109ab90612ad0565b6001600160a01b0381166000818152601b6020908152604091829020805460ff1916600117905590519182527f57a00f76b5f242fb1e04b0b514a6974665a5b07bce45e39f36dabff4a042d9369101610abe565b6005546001600160a01b03163314610ed75760405162461bcd60e51b81526004016109ab90612ad0565b610ee581633b9aca00612b38565b601f556040518181527f5948780118f41f7c4577ae4619d5cbd064057bd8562d9f7b7e60324053375c0090602001610abe565b6005546001600160a01b03163314610f425760405162461bcd60e51b81526004016109ab90612ad0565b30600090815260208190526040902054610f5b81611fb4565b50565b6005546001600160a01b03163314610f885760405162461bcd60e51b81526004016109ab90612ad0565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b03163314610ffc5760405162461bcd60e51b81526004016109ab90612ad0565b6109c481111561104e5760405162461bcd60e51b815260206004820152601e60248201527f4d6178696d756d206c61756e63682073656c6c2066656520697320323525000060448201526064016109ab565b60158190556040518181527fc799be5eb19a1a6d6ba7368d21e2bc367c8a335e4a07cd3d954482e6f714d3c590602001610abe565b6005546001600160a01b031633146110ad5760405162461bcd60e51b81526004016109ab90612ad0565b6103e886111580156110c157506103e88511155b80156110cf57506103e88411155b80156110dd57506103e88311155b80156110eb57506103e88211155b80156110f957506103e88111155b61114f5760405162461bcd60e51b815260206004820152602160248201527f4665657320657863656564206d6178696d756d20616c6c6f7765642076616c756044820152606560f81b60648201526084016109ab565b600c869055600d859055600f8490556010839055601282905560138190556040805187815260208101879052908101859052606081018490526080810183905260a081018290527f4f3b60f00ab30635825994816ab704331aa84771a97a768ba4ce3e7bfd888f429060c00160405180910390a1505050505050565b6060600480546108e790612a9c565b6005546001600160a01b031633146112045760405162461bcd60e51b81526004016109ab90612ad0565b601a54600160a81b900460ff161561125e5760405162461bcd60e51b815260206004820152601b60248201527f416c726561647920707265706172656420666f72206c61756e6368000000000060448201526064016109ab565b601a805460ff60a81b1916600160a81b17905561127e426202a300612b4f565b601955565b60006109773384610b9b85604051806060016040528060258152602001612c95602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611f7a565b6000610977338484611b44565b6060600680548060200260200160405190810160405280929190818152602001828054801561096057602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611319575050505050905090565b6005546001600160a01b0316331461136a5760405162461bcd60e51b81526004016109ab90612ad0565b6001600160a01b03811660009081526007602052604090205460ff166113de5760405162461bcd60e51b8152602060048201526024808201527f41646472657373206973206e6f74206578636c756465642066726f6d207265776044820152636172647360e01b60648201526084016109ab565b60005b60065481101561146257816001600160a01b03166006828154811061140857611408612b62565b6000918252602090912001546001600160a01b031603611450576001600160a01b0382166000908152600760205260409020805460ff1916905561144b8161210e565b611462565b8061145a81612b78565b9150506113e1565b506040516001600160a01b03821681527f87434094d24a90fbd9a8ffcf2be9818d237c06a12d126296bc1ea7d58959433490602001610abe565b6005546001600160a01b031633146114c65760405162461bcd60e51b81526004016109ab90612ad0565b601a80546001600160a01b0319166001600160a01b0383169081179091556040519081527f535be0bbc71c839ded01277ab57f29f2e810c1ff0255bb938d7cb8e96ac8ca1a90602001610abe565b6005546001600160a01b0316331461153e5760405162461bcd60e51b81526004016109ab90612ad0565b600581101561158f5760405162461bcd60e51b815260206004820152601b60248201527f4d61782054582073686f756c642062652061626f766520302e3525000000000060448201526064016109ab565b6115af6103e86115a969152d02c7e14af6800000846118f5565b9061197e565b60088190556040519081527f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf90602001610abe565b6005546001600160a01b0316331461160e5760405162461bcd60e51b81526004016109ab90612ad0565b601a8054821515600160a01b0260ff60a01b199091161790556040517f7d952115fd41bb443db2ae9cde6670e8dd72fefb507b7a4e0156c57e439afaf590610abe90831515815260200190565b6005546001600160a01b031633146116855760405162461bcd60e51b81526004016109ab90612ad0565b60018110156116e25760405162461bcd60e51b8152602060048201526024808201527f4d61782077616c6c65742073697a652073686f756c642062652061626f766520604482015263302e312560e01b60648201526084016109ab565b6116fc6103e86115a969152d02c7e14af6800000846118f5565b60098190556040519081527ffb1fe1002b7550e87616e67793dbb7d3f437a79c2688c372c66dc170dbcb0efd90602001610abe565b6005546001600160a01b0316331461175b5760405162461bcd60e51b81526004016109ab90612ad0565b6001600160a01b0381166000818152601b6020908152604091829020805460ff1916905590519182527f346f6c42af1ce4b7d7951f3fa40a2fb1e78c80ab0f3d76fb4f9fec269d568f0d9101610abe565b6005546001600160a01b031633146117d65760405162461bcd60e51b81526004016109ab90612ad0565b6001600160a01b03811661183b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109ab565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146118c15760405162461bcd60e51b81526004016109ab90612ad0565b6018544790610f5b906001600160a01b03168261221a565b60006118e361225a565b6002546118f09190612b91565b905090565b6000826000036119075750600061097b565b60006119138385612b38565b9050826119208583612ba4565b146119775760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016109ab565b9392505050565b600061197783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506122c7565b6000806119cd8385612b4f565b9050838110156119775760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016109ab565b6001600160a01b038316611a815760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016109ab565b6001600160a01b038216611ae25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016109ab565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b601a54600160a81b900460ff1680611b6657506005546001600160a01b031633145b611bd85760405162461bcd60e51b815260206004820152603f60248201527f436f6e747261637420686173206e6f74206265656e207072657061726564206660448201527f6f72206c61756e636820616e642075736572206973206e6f74206f776e65720060648201526084016109ab565b601a54600160a01b900460ff1615611bfa57611bf58383836122f5565b505050565b601e546001600160a01b03838116911614611c895760095481611c32846001600160a01b031660009081526020819052604090205490565b611c3c9190612b4f565b10611c895760405162461bcd60e51b815260206004820152601f60248201527f42616c616e63652065786365656473206d61782077616c6c65742073697a650060448201526064016109ab565b6001600160a01b0383166000908152601c602052604090205460ff16158015611ccb57506001600160a01b0382166000908152601c602052604090205460ff16155b15611d3257600854811115611d325760405162461bcd60e51b815260206004820152602760248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152661e105b5bdd5b9d60ca1b60648201526084016109ab565b600f54600c54601254601e546001600160a01b0390811690861603611d7f57600d54600c55601054600f556013546012556019544211611d7f57601554600c54611d7b916119c0565b600c555b30600090815260208190526040902054601f5481108015908190611dad5750601e54600160a01b900460ff16155b8015611dc75750601e546001600160a01b03898116911614155b8015611ddc5750601e54600160a81b900460ff165b15611dea57611dea82612478565b6001600160a01b0388166000908152601b602052604090205460ff1680611e2957506001600160a01b0387166000908152601b602052604090205460ff165b15611e3657611e366126a3565b600080611e42886126fe565b6001600160a01b038c166000908152602081905260409020549193509150611e6a9089612725565b6001600160a01b03808c1660009081526020819052604080822093909355908b1681522054611e9990836119c0565b6001600160a01b038a16600090815260208190526040902055611ebb81612767565b6001600160a01b038a166000908152601b602052604090205460ff1680611efa57506001600160a01b0389166000908152601b602052604090205460ff165b15611f1c57611f1c600b54600a55600e54600c55601154600f55601454601255565b600c869055600f87905560128590556040518281526001600160a01b038a811691908c16907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a350505050505050505050565b60008184841115611f9e5760405162461bcd60e51b81526004016109ab91906128a1565b506000611fab8486612b91565b95945050505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611fe957611fe9612b62565b6001600160a01b03928316602091820292909201810191909152601d54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015612042573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120669190612b05565b8160018151811061207957612079612b62565b6001600160a01b039283166020918202929092010152601d5461209f9130911684611a1f565b601d5460405163791ac94760e01b81526001600160a01b039091169063791ac947906120d8908590600090869030904290600401612bc6565b600060405180830381600087803b1580156120f257600080fd5b505af1158015612106573d6000803e3d6000fd5b505050505050565b600654811061216a5760405162461bcd60e51b815260206004820152602260248201527f496e6465782069732067726561746572207468616e206172726179206c656e676044820152610e8d60f31b60648201526084016109ab565b6006805461217a90600190612b91565b8154811061218a5761218a612b62565b600091825260209091200154600680546001600160a01b0390921691839081106121b6576121b6612b62565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060068054806121f5576121f5612c02565b600082815260209020810160001990810180546001600160a01b031916905501905550565b8015612256576040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015611bf5573d6000803e3d6000fd5b5050565b600080805b6006548110156122c1576122a36006828154811061227f5761227f612b62565b60009182526020808320909101546001600160a01b03168252819052604090205490565b6122ad9083612b4f565b9150806122b981612b78565b91505061225f565b50919050565b600081836122e85760405162461bcd60e51b81526004016109ab91906128a1565b506000611fab8486612ba4565b6001600160a01b0383166123595760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016109ab565b6001600160a01b0382166123bb5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016109ab565b6123f881604051806060016040528060268152602001612c47602691396001600160a01b0386166000908152602081905260409020549190611f7a565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461242790826119c0565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611b37565b601e805460ff60a01b1916600160a01b179055600a54601254600f54600c546000936124b19390926124ab9283916119c0565b906119c0565b9050806000036124c15750612693565b600047905060006124e1836115a9601254876118f590919063ffffffff16565b905060006124f082600261197e565b905060006124fe8683612725565b905061250981611fb4565b60006125154786612725565b9050801561268c576000612543876115a961253c600260125461197e90919063ffffffff16565b85906118f5565b905061254f8482612794565b600061256a886115a9600a54866118f590919063ffffffff16565b601754909150612583906001600160a01b03168261221a565b600061259e896115a9600f54876118f590919063ffffffff16565b90506000811180156125ba5750601a546001600160a01b031615155b1561261a57601a5460405163febd221b60e01b8152600260048201526001600160a01b039091169063febd221b9083906024016000604051808303818588803b15801561260657600080fd5b505af193505050508015612618575060015b505b60006126358a6115a9600c54886118f590919063ffffffff16565b60185490915061264e906001600160a01b03168261221a565b604080518c8152602081018790527f3736f4ec17d19b9b4f0fbeeb377db969da082d70e2e16221f77d5b321570e8c7910160405180910390a1505050505b5050505050505b50601e805460ff60a01b19169055565b600c541580156126b35750600f54155b80156126bf5750600a54155b80156126cb5750601254155b156126d257565b600a8054600b55600c8054600e55600f8054601155601280546014556000938490559183905582905555565b600080600061270c84612869565b9050600061271a8583612725565b959194509092505050565b600061197783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611f7a565b3060009081526020819052604090205461278190826119c0565b3060009081526020819052604090205550565b601d546127ac9030906001600160a01b031684611a1f565b601d546001600160a01b031663f305d7198230856000806127d56005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af115801561283d573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906128629190612c18565b5050505050565b60008061288f600a546124ab6012546124ab600f54600c546119c090919063ffffffff16565b90506119776127106115a985846118f5565b600060208083528351808285015260005b818110156128ce578581018301518582016040015282016128b2565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610f5b57600080fd5b6000806040838503121561291757600080fd5b8235612922816128ef565b946020939093013593505050565b60006020828403121561294257600080fd5b8135611977816128ef565b60008060006060848603121561296257600080fd5b833561296d816128ef565b9250602084013561297d816128ef565b929592945050506040919091013590565b6000602082840312156129a057600080fd5b8135801515811461197757600080fd5b6000602082840312156129c257600080fd5b5035919050565b60008060008060008060c087890312156129e257600080fd5b505084359660208601359650604086013595606081013595506080810135945060a0013592509050565b600081518084526020808501945080840160005b83811015612a455781516001600160a01b031687529582019590820190600101612a20565b509495945050505050565b6020815260006119776020830184612a0c565b60008060408385031215612a7657600080fd5b8235612a81816128ef565b91506020830135612a91816128ef565b809150509250929050565b600181811c90821680612ab057607f821691505b6020821081036122c157634e487b7160e01b600052602260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215612b1757600080fd5b8151611977816128ef565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761097b5761097b612b22565b8082018082111561097b5761097b612b22565b634e487b7160e01b600052603260045260246000fd5b600060018201612b8a57612b8a612b22565b5060010190565b8181038181111561097b5761097b612b22565b600082612bc157634e487b7160e01b600052601260045260246000fd5b500490565b85815284602082015260a060408201526000612be560a0830186612a0c565b6001600160a01b0394909416606083015250608001529392505050565b634e487b7160e01b600052603160045260246000fd5b600080600060608486031215612c2d57600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212204b415788724f0376bcbe8d0a31c4207791046ff48605eec8521e8238dc9b30bc64736f6c63430008110033

Deployed Bytecode

0x6080604052600436106102b25760003560e01c806386f6c3c111610175578063af01f2b2116100dc578063e89bcca211610095578063f2fde38b1161006f578063f2fde38b14610878578063f429389014610898578063f6374342146108ad578063fffa1dd9146108c357600080fd5b8063e89bcca214610818578063ea1644d514610838578063ea2f0b371461085857600080fd5b8063af01f2b214610746578063b609995e1461075c578063ba385abb1461077c578063bb8d51311461079c578063d543dbeb146107b2578063dd62ed3e146107d257600080fd5b806398850b641161012e57806398850b6414610698578063a0d82dc5146106b9578063a1ab19a3146106cf578063a457c2d7146106e4578063a9059cbb14610704578063ada46d0a1461072457600080fd5b806386f6c3c1146106035780638c0b5e22146106235780638da5cb5b146106395780638f3fa8601461065757806395d89b411461066d57806398118cb41461068257600080fd5b806339509351116102195780635342acb4116101d25780635342acb414610533578063549593631461056c5780636827e7641461058257806370a0823114610598578063715018a6146105ce5780638421b507146105e357600080fd5b8063395093511461047e57806341cb87fc1461049e578063437823ec146104be57806348a46473146104de57806349bd5a5e146104fe57806351bc3c851461051e57600080fd5b806318160ddd1161026b57806318160ddd146103cd5780631f53ac02146103ec57806323b872dd1461040c57806326b6308d1461042c5780632bb14e1d1461044c578063313ce5671461046257600080fd5b806306fdde03146102be578063095ea7b3146102e95780630e83227314610319578063111e037614610352578063113201fa146103745780631694505e1461039557600080fd5b366102b957005b600080fd5b3480156102ca57600080fd5b506102d36108d8565b6040516102e091906128a1565b60405180910390f35b3480156102f557600080fd5b50610309610304366004612904565b61096a565b60405190151581526020016102e0565b34801561032557600080fd5b50610309610334366004612930565b6001600160a01b031660009081526007602052604090205460ff1690565b34801561035e57600080fd5b5061037261036d366004612930565b610981565b005b34801561038057600080fd5b50601e5461030990600160a81b900460ff1681565b3480156103a157600080fd5b50601d546103b5906001600160a01b031681565b6040516001600160a01b0390911681526020016102e0565b3480156103d957600080fd5b506002545b6040519081526020016102e0565b3480156103f857600080fd5b50610372610407366004612930565b610ac9565b34801561041857600080fd5b5061030961042736600461294d565b610b41565b34801561043857600080fd5b5061037261044736600461298e565b610baa565b34801561045857600080fd5b506103de600f5481565b34801561046e57600080fd5b50604051600981526020016102e0565b34801561048a57600080fd5b50610309610499366004612904565b610c21565b3480156104aa57600080fd5b506103726104b9366004612930565b610c57565b3480156104ca57600080fd5b506103726104d9366004612930565b610e2f565b3480156104ea57600080fd5b506103726104f93660046129b0565b610ead565b34801561050a57600080fd5b50601e546103b5906001600160a01b031681565b34801561052a57600080fd5b50610372610f18565b34801561053f57600080fd5b5061030961054e366004612930565b6001600160a01b03166000908152601b602052604090205460ff1690565b34801561057857600080fd5b506103de60155481565b34801561058e57600080fd5b506103de600c5481565b3480156105a457600080fd5b506103de6105b3366004612930565b6001600160a01b031660009081526020819052604090205490565b3480156105da57600080fd5b50610372610f5e565b3480156105ef57600080fd5b506103726105fe3660046129b0565b610fd2565b34801561060f57600080fd5b5061037261061e3660046129c9565b611083565b34801561062f57600080fd5b506103de60085481565b34801561064557600080fd5b506005546001600160a01b03166103b5565b34801561066357600080fd5b506103de60095481565b34801561067957600080fd5b506102d36111cb565b34801561068e57600080fd5b506103de60125481565b3480156106a457600080fd5b50601a5461030990600160a01b900460ff1681565b3480156106c557600080fd5b506103de600d5481565b3480156106db57600080fd5b506103726111da565b3480156106f057600080fd5b506103096106ff366004612904565b611283565b34801561071057600080fd5b5061030961071f366004612904565b6112d2565b34801561073057600080fd5b506107396112df565b6040516102e09190612a50565b34801561075257600080fd5b506103de60195481565b34801561076857600080fd5b50610372610777366004612930565b611340565b34801561078857600080fd5b50610372610797366004612930565b61149c565b3480156107a857600080fd5b506103de60105481565b3480156107be57600080fd5b506103726107cd3660046129b0565b611514565b3480156107de57600080fd5b506103de6107ed366004612a63565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561082457600080fd5b5061037261083336600461298e565b6115e4565b34801561084457600080fd5b506103726108533660046129b0565b61165b565b34801561086457600080fd5b50610372610873366004612930565b611731565b34801561088457600080fd5b50610372610893366004612930565b6117ac565b3480156108a457600080fd5b50610372611897565b3480156108b957600080fd5b506103de60135481565b3480156108cf57600080fd5b506103de6118d9565b6060600380546108e790612a9c565b80601f016020809104026020016040519081016040528092919081815260200182805461091390612a9c565b80156109605780601f1061093557610100808354040283529160200191610960565b820191906000526020600020905b81548152906001019060200180831161094357829003601f168201915b5050505050905090565b6000610977338484611a1f565b5060015b92915050565b6005546001600160a01b031633146109b45760405162461bcd60e51b81526004016109ab90612ad0565b60405180910390fd5b6001600160a01b03811660009081526007602052604090205460ff1615610a2e5760405162461bcd60e51b815260206004820152602860248201527f4164647265737320697320616c7265616479206578636c756465642066726f6d604482015267207265776172647360c01b60648201526084016109ab565b6006805460018082019092557ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b0319166001600160a01b038416908117909155600081815260076020908152604091829020805460ff1916909417909355519081527f9dc0c5d829ba95d4a3aa3e40791b3e0ff125f876788532b9f7f6eb543d8dfbd691015b60405180910390a150565b6005546001600160a01b03163314610af35760405162461bcd60e51b81526004016109ab90612ad0565b601880546001600160a01b0319166001600160a01b0383169081179091556040519081527f31bb1993faff4f8409d7baad771f861e093ef4ce2c92c6e0cb10b82d1c7324cb90602001610abe565b6000610b4e848484611b44565b610ba08433610b9b85604051806060016040528060288152602001612c6d602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611f7a565b611a1f565b5060019392505050565b6005546001600160a01b03163314610bd45760405162461bcd60e51b81526004016109ab90612ad0565b601e8054821515600160a81b0260ff60a81b199091161790556040517fd9fca2a469120637ae54e43ab68dfdcd9354db52d615dea3d3a66a085e6f41b990610abe90831515815260200190565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610977918590610b9b90866119c0565b6005546001600160a01b03163314610c815760405162461bcd60e51b81526004016109ab90612ad0565b6000819050806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610cc4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ce89190612b05565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d35573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d599190612b05565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610da6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dca9190612b05565b601e80546001600160a01b03199081166001600160a01b0393841617909155601d805490911683831617905560405190831681527f7aed1d3e8155a07ccf395e44ea3109a0e2d6c9b29bbbe9f142d9790596f4dc809060200160405180910390a15050565b6005546001600160a01b03163314610e595760405162461bcd60e51b81526004016109ab90612ad0565b6001600160a01b0381166000818152601b6020908152604091829020805460ff1916600117905590519182527f57a00f76b5f242fb1e04b0b514a6974665a5b07bce45e39f36dabff4a042d9369101610abe565b6005546001600160a01b03163314610ed75760405162461bcd60e51b81526004016109ab90612ad0565b610ee581633b9aca00612b38565b601f556040518181527f5948780118f41f7c4577ae4619d5cbd064057bd8562d9f7b7e60324053375c0090602001610abe565b6005546001600160a01b03163314610f425760405162461bcd60e51b81526004016109ab90612ad0565b30600090815260208190526040902054610f5b81611fb4565b50565b6005546001600160a01b03163314610f885760405162461bcd60e51b81526004016109ab90612ad0565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b03163314610ffc5760405162461bcd60e51b81526004016109ab90612ad0565b6109c481111561104e5760405162461bcd60e51b815260206004820152601e60248201527f4d6178696d756d206c61756e63682073656c6c2066656520697320323525000060448201526064016109ab565b60158190556040518181527fc799be5eb19a1a6d6ba7368d21e2bc367c8a335e4a07cd3d954482e6f714d3c590602001610abe565b6005546001600160a01b031633146110ad5760405162461bcd60e51b81526004016109ab90612ad0565b6103e886111580156110c157506103e88511155b80156110cf57506103e88411155b80156110dd57506103e88311155b80156110eb57506103e88211155b80156110f957506103e88111155b61114f5760405162461bcd60e51b815260206004820152602160248201527f4665657320657863656564206d6178696d756d20616c6c6f7765642076616c756044820152606560f81b60648201526084016109ab565b600c869055600d859055600f8490556010839055601282905560138190556040805187815260208101879052908101859052606081018490526080810183905260a081018290527f4f3b60f00ab30635825994816ab704331aa84771a97a768ba4ce3e7bfd888f429060c00160405180910390a1505050505050565b6060600480546108e790612a9c565b6005546001600160a01b031633146112045760405162461bcd60e51b81526004016109ab90612ad0565b601a54600160a81b900460ff161561125e5760405162461bcd60e51b815260206004820152601b60248201527f416c726561647920707265706172656420666f72206c61756e6368000000000060448201526064016109ab565b601a805460ff60a81b1916600160a81b17905561127e426202a300612b4f565b601955565b60006109773384610b9b85604051806060016040528060258152602001612c95602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611f7a565b6000610977338484611b44565b6060600680548060200260200160405190810160405280929190818152602001828054801561096057602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611319575050505050905090565b6005546001600160a01b0316331461136a5760405162461bcd60e51b81526004016109ab90612ad0565b6001600160a01b03811660009081526007602052604090205460ff166113de5760405162461bcd60e51b8152602060048201526024808201527f41646472657373206973206e6f74206578636c756465642066726f6d207265776044820152636172647360e01b60648201526084016109ab565b60005b60065481101561146257816001600160a01b03166006828154811061140857611408612b62565b6000918252602090912001546001600160a01b031603611450576001600160a01b0382166000908152600760205260409020805460ff1916905561144b8161210e565b611462565b8061145a81612b78565b9150506113e1565b506040516001600160a01b03821681527f87434094d24a90fbd9a8ffcf2be9818d237c06a12d126296bc1ea7d58959433490602001610abe565b6005546001600160a01b031633146114c65760405162461bcd60e51b81526004016109ab90612ad0565b601a80546001600160a01b0319166001600160a01b0383169081179091556040519081527f535be0bbc71c839ded01277ab57f29f2e810c1ff0255bb938d7cb8e96ac8ca1a90602001610abe565b6005546001600160a01b0316331461153e5760405162461bcd60e51b81526004016109ab90612ad0565b600581101561158f5760405162461bcd60e51b815260206004820152601b60248201527f4d61782054582073686f756c642062652061626f766520302e3525000000000060448201526064016109ab565b6115af6103e86115a969152d02c7e14af6800000846118f5565b9061197e565b60088190556040519081527f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf90602001610abe565b6005546001600160a01b0316331461160e5760405162461bcd60e51b81526004016109ab90612ad0565b601a8054821515600160a01b0260ff60a01b199091161790556040517f7d952115fd41bb443db2ae9cde6670e8dd72fefb507b7a4e0156c57e439afaf590610abe90831515815260200190565b6005546001600160a01b031633146116855760405162461bcd60e51b81526004016109ab90612ad0565b60018110156116e25760405162461bcd60e51b8152602060048201526024808201527f4d61782077616c6c65742073697a652073686f756c642062652061626f766520604482015263302e312560e01b60648201526084016109ab565b6116fc6103e86115a969152d02c7e14af6800000846118f5565b60098190556040519081527ffb1fe1002b7550e87616e67793dbb7d3f437a79c2688c372c66dc170dbcb0efd90602001610abe565b6005546001600160a01b0316331461175b5760405162461bcd60e51b81526004016109ab90612ad0565b6001600160a01b0381166000818152601b6020908152604091829020805460ff1916905590519182527f346f6c42af1ce4b7d7951f3fa40a2fb1e78c80ab0f3d76fb4f9fec269d568f0d9101610abe565b6005546001600160a01b031633146117d65760405162461bcd60e51b81526004016109ab90612ad0565b6001600160a01b03811661183b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109ab565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146118c15760405162461bcd60e51b81526004016109ab90612ad0565b6018544790610f5b906001600160a01b03168261221a565b60006118e361225a565b6002546118f09190612b91565b905090565b6000826000036119075750600061097b565b60006119138385612b38565b9050826119208583612ba4565b146119775760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016109ab565b9392505050565b600061197783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506122c7565b6000806119cd8385612b4f565b9050838110156119775760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016109ab565b6001600160a01b038316611a815760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016109ab565b6001600160a01b038216611ae25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016109ab565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b601a54600160a81b900460ff1680611b6657506005546001600160a01b031633145b611bd85760405162461bcd60e51b815260206004820152603f60248201527f436f6e747261637420686173206e6f74206265656e207072657061726564206660448201527f6f72206c61756e636820616e642075736572206973206e6f74206f776e65720060648201526084016109ab565b601a54600160a01b900460ff1615611bfa57611bf58383836122f5565b505050565b601e546001600160a01b03838116911614611c895760095481611c32846001600160a01b031660009081526020819052604090205490565b611c3c9190612b4f565b10611c895760405162461bcd60e51b815260206004820152601f60248201527f42616c616e63652065786365656473206d61782077616c6c65742073697a650060448201526064016109ab565b6001600160a01b0383166000908152601c602052604090205460ff16158015611ccb57506001600160a01b0382166000908152601c602052604090205460ff16155b15611d3257600854811115611d325760405162461bcd60e51b815260206004820152602760248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152661e105b5bdd5b9d60ca1b60648201526084016109ab565b600f54600c54601254601e546001600160a01b0390811690861603611d7f57600d54600c55601054600f556013546012556019544211611d7f57601554600c54611d7b916119c0565b600c555b30600090815260208190526040902054601f5481108015908190611dad5750601e54600160a01b900460ff16155b8015611dc75750601e546001600160a01b03898116911614155b8015611ddc5750601e54600160a81b900460ff165b15611dea57611dea82612478565b6001600160a01b0388166000908152601b602052604090205460ff1680611e2957506001600160a01b0387166000908152601b602052604090205460ff165b15611e3657611e366126a3565b600080611e42886126fe565b6001600160a01b038c166000908152602081905260409020549193509150611e6a9089612725565b6001600160a01b03808c1660009081526020819052604080822093909355908b1681522054611e9990836119c0565b6001600160a01b038a16600090815260208190526040902055611ebb81612767565b6001600160a01b038a166000908152601b602052604090205460ff1680611efa57506001600160a01b0389166000908152601b602052604090205460ff165b15611f1c57611f1c600b54600a55600e54600c55601154600f55601454601255565b600c869055600f87905560128590556040518281526001600160a01b038a811691908c16907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a350505050505050505050565b60008184841115611f9e5760405162461bcd60e51b81526004016109ab91906128a1565b506000611fab8486612b91565b95945050505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611fe957611fe9612b62565b6001600160a01b03928316602091820292909201810191909152601d54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015612042573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120669190612b05565b8160018151811061207957612079612b62565b6001600160a01b039283166020918202929092010152601d5461209f9130911684611a1f565b601d5460405163791ac94760e01b81526001600160a01b039091169063791ac947906120d8908590600090869030904290600401612bc6565b600060405180830381600087803b1580156120f257600080fd5b505af1158015612106573d6000803e3d6000fd5b505050505050565b600654811061216a5760405162461bcd60e51b815260206004820152602260248201527f496e6465782069732067726561746572207468616e206172726179206c656e676044820152610e8d60f31b60648201526084016109ab565b6006805461217a90600190612b91565b8154811061218a5761218a612b62565b600091825260209091200154600680546001600160a01b0390921691839081106121b6576121b6612b62565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060068054806121f5576121f5612c02565b600082815260209020810160001990810180546001600160a01b031916905501905550565b8015612256576040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015611bf5573d6000803e3d6000fd5b5050565b600080805b6006548110156122c1576122a36006828154811061227f5761227f612b62565b60009182526020808320909101546001600160a01b03168252819052604090205490565b6122ad9083612b4f565b9150806122b981612b78565b91505061225f565b50919050565b600081836122e85760405162461bcd60e51b81526004016109ab91906128a1565b506000611fab8486612ba4565b6001600160a01b0383166123595760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016109ab565b6001600160a01b0382166123bb5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016109ab565b6123f881604051806060016040528060268152602001612c47602691396001600160a01b0386166000908152602081905260409020549190611f7a565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461242790826119c0565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611b37565b601e805460ff60a01b1916600160a01b179055600a54601254600f54600c546000936124b19390926124ab9283916119c0565b906119c0565b9050806000036124c15750612693565b600047905060006124e1836115a9601254876118f590919063ffffffff16565b905060006124f082600261197e565b905060006124fe8683612725565b905061250981611fb4565b60006125154786612725565b9050801561268c576000612543876115a961253c600260125461197e90919063ffffffff16565b85906118f5565b905061254f8482612794565b600061256a886115a9600a54866118f590919063ffffffff16565b601754909150612583906001600160a01b03168261221a565b600061259e896115a9600f54876118f590919063ffffffff16565b90506000811180156125ba5750601a546001600160a01b031615155b1561261a57601a5460405163febd221b60e01b8152600260048201526001600160a01b039091169063febd221b9083906024016000604051808303818588803b15801561260657600080fd5b505af193505050508015612618575060015b505b60006126358a6115a9600c54886118f590919063ffffffff16565b60185490915061264e906001600160a01b03168261221a565b604080518c8152602081018790527f3736f4ec17d19b9b4f0fbeeb377db969da082d70e2e16221f77d5b321570e8c7910160405180910390a1505050505b5050505050505b50601e805460ff60a01b19169055565b600c541580156126b35750600f54155b80156126bf5750600a54155b80156126cb5750601254155b156126d257565b600a8054600b55600c8054600e55600f8054601155601280546014556000938490559183905582905555565b600080600061270c84612869565b9050600061271a8583612725565b959194509092505050565b600061197783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611f7a565b3060009081526020819052604090205461278190826119c0565b3060009081526020819052604090205550565b601d546127ac9030906001600160a01b031684611a1f565b601d546001600160a01b031663f305d7198230856000806127d56005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af115801561283d573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906128629190612c18565b5050505050565b60008061288f600a546124ab6012546124ab600f54600c546119c090919063ffffffff16565b90506119776127106115a985846118f5565b600060208083528351808285015260005b818110156128ce578581018301518582016040015282016128b2565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610f5b57600080fd5b6000806040838503121561291757600080fd5b8235612922816128ef565b946020939093013593505050565b60006020828403121561294257600080fd5b8135611977816128ef565b60008060006060848603121561296257600080fd5b833561296d816128ef565b9250602084013561297d816128ef565b929592945050506040919091013590565b6000602082840312156129a057600080fd5b8135801515811461197757600080fd5b6000602082840312156129c257600080fd5b5035919050565b60008060008060008060c087890312156129e257600080fd5b505084359660208601359650604086013595606081013595506080810135945060a0013592509050565b600081518084526020808501945080840160005b83811015612a455781516001600160a01b031687529582019590820190600101612a20565b509495945050505050565b6020815260006119776020830184612a0c565b60008060408385031215612a7657600080fd5b8235612a81816128ef565b91506020830135612a91816128ef565b809150509250929050565b600181811c90821680612ab057607f821691505b6020821081036122c157634e487b7160e01b600052602260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215612b1757600080fd5b8151611977816128ef565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761097b5761097b612b22565b8082018082111561097b5761097b612b22565b634e487b7160e01b600052603260045260246000fd5b600060018201612b8a57612b8a612b22565b5060010190565b8181038181111561097b5761097b612b22565b600082612bc157634e487b7160e01b600052601260045260246000fd5b500490565b85815284602082015260a060408201526000612be560a0830186612a0c565b6001600160a01b0394909416606083015250608001529392505050565b634e487b7160e01b600052603160045260246000fd5b600080600060608486031215612c2d57600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212204b415788724f0376bcbe8d0a31c4207791046ff48605eec8521e8238dc9b30bc64736f6c63430008110033

Deployed Bytecode Sourcemap

1418:15391:10:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2169:98:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4266:166;;;;;;;;;;-1:-1:-1;4266:166:2;;;;;:::i;:::-;;:::i;:::-;;;1188:14:12;;1181:22;1163:41;;1151:2;1136:18;4266:166:2;1023:187:12;1695:125:9;;;;;;;;;;-1:-1:-1;1695:125:9;;;;;:::i;:::-;-1:-1:-1;;;;;1788:25:9;1765:4;1788:25;;;:17;:25;;;;;;;;;1695:125;953:282;;;;;;;;;;-1:-1:-1;953:282:9;;;;;:::i;:::-;;:::i;:::-;;3248:48:10;;;;;;;;;;-1:-1:-1;3248:48:10;;;;-1:-1:-1;;;3248:48:10;;;;;;3140:39;;;;;;;;;;-1:-1:-1;3140:39:10;;;;-1:-1:-1;;;;;3140:39:10;;;;;;-1:-1:-1;;;;;1655:32:12;;;1637:51;;1625:2;1610:18;3140:39:10;1467:227:12;3257:106:2;;;;;;;;;;-1:-1:-1;3344:12:2;;3257:106;;;1845:25:12;;;1833:2;1818:18;3257:106:2;1699:177:12;15269:185:10;;;;;;;;;;-1:-1:-1;15269:185:10;;;;;:::i;:::-;;:::i;4899:347:2:-;;;;;;;;;;-1:-1:-1;4899:347:2;;;;;:::i;:::-;;:::i;16067:184:10:-;;;;;;;;;;-1:-1:-1;16067:184:10;;;;;:::i;:::-;;:::i;2073:31::-;;;;;;;;;;;;;;;;5429:90;;;;;;;;;;-1:-1:-1;5429:90:10;;5511:1;3022:36:12;;3010:2;2995:18;5429:90:10;2880:184:12;5641:215:2;;;;;;;;;;-1:-1:-1;5641:215:2;;;;;:::i;:::-;;:::i;15695:366:10:-;;;;;;;;;;-1:-1:-1;15695:366:10;;;;;:::i;:::-;;:::i;13803:150::-;;;;;;;;;;-1:-1:-1;13803:150:10;;;;;:::i;:::-;;:::i;16257:178::-;;;;;;;;;;-1:-1:-1;16257:178:10;;;;;:::i;:::-;;:::i;3185:28::-;;;;;;;;;;-1:-1:-1;3185:28:10;;;;-1:-1:-1;;;;;3185:28:10;;;16478:151;;;;;;;;;;;;;:::i;13673:124::-;;;;;;;;;;-1:-1:-1;13673:124:10;;;;;:::i;:::-;-1:-1:-1;;;;;13763:27:10;13740:4;13763:27;;;:18;:27;;;;;;;;;13673:124;2371:35;;;;;;;;;;;;;;;;1940:27;;;;;;;;;;;;;;;;3421:125:2;;;;;;;;;;-1:-1:-1;3421:125:2;;;;;:::i;:::-;-1:-1:-1;;;;;3521:18:2;3495:7;3521:18;;;;;;;;;;;;3421:125;1697:147:8;;;;;;;;;;;;;:::i;15017:246:10:-;;;;;;;;;;-1:-1:-1;15017:246:10;;;;;:::i;:::-;;:::i;14112:899::-;;;;;;;;;;-1:-1:-1;14112:899:10;;;;;:::i;:::-;;:::i;1692:59::-;;;;;;;;;;;;;;;;1074:77:8;;;;;;;;;;-1:-1:-1;1138:6:8;;-1:-1:-1;;;;;1138:6:8;1074:77;;1763:61:10;;;;;;;;;;;;;;;;2380:102:2;;;;;;;;;;;;;:::i;2218:33:10:-;;;;;;;;;;;;;;;;2848:37;;;;;;;;;;-1:-1:-1;2848:37:10;;;;-1:-1:-1;;;2848:37:10;;;;;;1979:31;;;;;;;;;;;;;;;;12581:297;;;;;;;;;;;;;:::i;6343:266:2:-;;;;;;;;;;-1:-1:-1;6343:266:2;;;;;:::i;:::-;;:::i;3749:172::-;;;;;;;;;;-1:-1:-1;3749:172:2;;;;;:::i;:::-;;:::i;1830:121:9:-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;2704:40:10:-;;;;;;;;;;;;;;;;1245:440:9;;;;;;;;;;-1:-1:-1;1245:440:9;;;;;:::i;:::-;;:::i;15464:225:10:-;;;;;;;;;;-1:-1:-1;15464:225:10;;;;;:::i;:::-;;:::i;2116:35::-;;;;;;;;;;;;;;;;13114:238;;;;;;;;;;-1:-1:-1;13114:238:10;;;;;:::i;:::-;;:::i;3979:149:2:-;;;;;;;;;;-1:-1:-1;3979:149:2;;;;;:::i;:::-;-1:-1:-1;;;;;4094:18:2;;;4068:7;4094:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3979:149;12884:179:10;;;;;;;;;;-1:-1:-1;12884:179:10;;;;;:::i;:::-;;:::i;13399:264::-;;;;;;;;;;-1:-1:-1;13399:264:10;;;;;:::i;:::-;;:::i;13959:147::-;;;;;;;;;;-1:-1:-1;13959:147:10;;;;;:::i;:::-;;:::i;1993:276:8:-;;;;;;;;;;-1:-1:-1;1993:276:8;;;;;:::i;:::-;;:::i;16635:172:10:-;;;;;;;;;;;;;:::i;2263:37::-;;;;;;;;;;;;;;;;1961:118:9;;;;;;;;;;;;;:::i;2169:98:2:-;2223:13;2255:5;2248:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2169:98;:::o;4266:166::-;4349:4;4365:39;170:10:1;4388:7:2;4397:6;4365:8;:39::i;:::-;-1:-1:-1;4421:4:2;4266:166;;;;;:::o;953:282:9:-;1278:6:8;;-1:-1:-1;;;;;1278:6:8;170:10:1;1278:22:8;1270:67;;;;-1:-1:-1;;;1270:67:8;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;1033:25:9;::::1;;::::0;;;:17:::1;:25;::::0;;;;;::::1;;1032:26;1024:79;;;::::0;-1:-1:-1;;;1024:79:9;;6063:2:12;1024:79:9::1;::::0;::::1;6045:21:12::0;6102:2;6082:18;;;6075:30;6141:34;6121:18;;;6114:62;-1:-1:-1;;;6192:18:12;;;6185:38;6240:19;;1024:79:9::1;5861:404:12::0;1024:79:9::1;1113:19;:32:::0;;::::1;::::0;;::::1;::::0;;;;::::1;::::0;;-1:-1:-1;;;;;;1113:32:9::1;-1:-1:-1::0;;;;;1113:32:9;::::1;::::0;;::::1;::::0;;;-1:-1:-1;1155:25:9;;;:17:::1;1113:32;1155:25:::0;;;;;;;;:32;;-1:-1:-1;;1155:32:9::1;::::0;;::::1;::::0;;;1202:26;1637:51:12;;;1202:26:9::1;::::0;1610:18:12;1202:26:9::1;;;;;;;;953:282:::0;:::o;15269:185:10:-;1278:6:8;;-1:-1:-1;;;;;1278:6:8;170:10:1;1278:22:8;1270:67;;;;-1:-1:-1;;;1270:67:8;;;;;;;:::i;:::-;15370:17:10::1;:32:::0;;-1:-1:-1;;;;;;15370:32:10::1;-1:-1:-1::0;;;;;15370:32:10;::::1;::::0;;::::1;::::0;;;15417:30:::1;::::0;1637:51:12;;;15417:30:10::1;::::0;1625:2:12;1610:18;15417:30:10::1;1467:227:12::0;4899:347:2;5035:4;5051:36;5061:6;5069:9;5080:6;5051:9;:36::i;:::-;5097:121;5106:6;170:10:1;5128:89:2;5166:6;5128:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;5128:19:2;;;;;;:11;:19;;;;;;;;170:10:1;5128:33:2;;;;;;;;;;:37;:89::i;:::-;5097:8;:121::i;:::-;-1:-1:-1;5235:4:2;4899:347;;;;;:::o;16067:184:10:-;1278:6:8;;-1:-1:-1;;;;;1278:6:8;170:10:1;1278:22:8;1270:67;;;;-1:-1:-1;;;1270:67:8;;;;;;;:::i;:::-;16152:29:10::1;:39:::0;;;::::1;;-1:-1:-1::0;;;16152:39:10::1;-1:-1:-1::0;;;;16152:39:10;;::::1;;::::0;;16206:38:::1;::::0;::::1;::::0;::::1;::::0;16184:7;1188:14:12;1181:22;1163:41;;1151:2;1136:18;;1023:187;5641:215:2;170:10:1;5729:4:2;5777:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;5777:34:2;;;;;;;;;;5729:4;;5745:83;;5768:7;;5777:50;;5816:10;5777:38;:50::i;15695:366:10:-;1278:6:8;;-1:-1:-1;;;;;1278:6:8;170:10:1;1278:22:8;1270:67;;;;-1:-1:-1;;;1270:67:8;;;;;;;:::i;:::-;15769:34:10::1;15823:9;15769:64;;15877:17;-1:-1:-1::0;;;;;15877:25:10::1;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;15859:70:10::1;;15938:4;15945:17;-1:-1:-1::0;;;;;15945:22:10::1;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;15859:111;::::0;-1:-1:-1;;;;;;15859:111:10::1;::::0;;;;;;-1:-1:-1;;;;;6972:15:12;;;15859:111:10::1;::::0;::::1;6954:34:12::0;7024:15;;7004:18;;;6997:43;6889:18;;15859:111:10::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;15843:13;:127:::0;;-1:-1:-1;;;;;;15843:127:10;;::::1;-1:-1:-1::0;;;;;15843:127:10;;::::1;;::::0;;;15980:15:::1;:35:::0;;;;::::1;::::0;;::::1;;::::0;;16030:24:::1;::::0;1655:32:12;;;1637:51;;16030:24:10::1;::::0;1625:2:12;1610:18;16030:24:10::1;;;;;;;15759:302;15695:366:::0;:::o;13803:150::-;1278:6:8;;-1:-1:-1;;;;;1278:6:8;170:10:1;1278:22:8;1270:67;;;;-1:-1:-1;;;1270:67:8;;;;;;;:::i;:::-;-1:-1:-1;;;;;13873:27:10;::::1;;::::0;;;:18:::1;:27;::::0;;;;;;;;:34;;-1:-1:-1;;13873:34:10::1;13903:4;13873:34;::::0;;13922:24;;1637:51:12;;;13922:24:10::1;::::0;1610:18:12;13922:24:10::1;1467:227:12::0;16257:178:10;1278:6:8;;-1:-1:-1;;;;;1278:6:8;170:10:1;1278:22:8;1270:67;;;;-1:-1:-1;;;1270:67:8;;;;;;;:::i;:::-;16359:17:10::1;:9:::0;16371:5:::1;16359:17;:::i;:::-;16337:19;:39:::0;16391:37:::1;::::0;1845:25:12;;;16391:37:10::1;::::0;1833:2:12;1818:18;16391:37:10::1;1699:177:12::0;16478:151:10;1278:6:8;;-1:-1:-1;;;;;1278:6:8;170:10:1;1278:22:8;1270:67;;;;-1:-1:-1;;;1270:67:8;;;;;;;:::i;:::-;16573:4:10::1;16529:23;3521:18:2::0;;;;;;;;;;;16589:33:10::1;3521:18:2::0;16589:16:10::1;:33::i;:::-;16519:110;16478:151::o:0;1697:147:8:-;1278:6;;-1:-1:-1;;;;;1278:6:8;170:10:1;1278:22:8;1270:67;;;;-1:-1:-1;;;1270:67:8;;;;;;;:::i;:::-;1789:6:::1;::::0;1768:40:::1;::::0;1805:1:::1;::::0;-1:-1:-1;;;;;1789:6:8::1;::::0;1768:40:::1;::::0;1805:1;;1768:40:::1;1818:6;:19:::0;;-1:-1:-1;;;;;;1818:19:8::1;::::0;;1697:147::o;15017:246:10:-;1278:6:8;;-1:-1:-1;;;;;1278:6:8;170:10:1;1278:22:8;1270:67;;;;-1:-1:-1;;;1270:67:8;;;;;;;:::i;:::-;15126:4:10::1;15106:16;:24;;15098:67;;;::::0;-1:-1:-1;;;15098:67:10;;7558:2:12;15098:67:10::1;::::0;::::1;7540:21:12::0;7597:2;7577:18;;;7570:30;7636:32;7616:18;;;7609:60;7686:18;;15098:67:10::1;7356:354:12::0;15098:67:10::1;15175:13;:32:::0;;;15222:34:::1;::::0;1845:25:12;;;15222:34:10::1;::::0;1833:2:12;1818:18;15222:34:10::1;1699:177:12::0;14112:899:10;1278:6:8;;-1:-1:-1;;;;;1278:6:8;170:10:1;1278:22:8;1270:67;;;;-1:-1:-1;;;1270:67:8;;;;;;;:::i;:::-;14391:4:10::1;14378:9;:17;;:54;;;;;14428:4;14411:13;:21;;14378:54;:91;;;;;14465:4;14448:13;:21;;14378:91;:132;;;;;14506:4;14485:17;:25;;14378:132;:170;;;;;14544:4;14526:14;:22;;14378:170;:213;;;;;14587:4;14564:19;:27;;14378:213;14357:293;;;::::0;-1:-1:-1;;;14357:293:10;;7917:2:12;14357:293:10::1;::::0;::::1;7899:21:12::0;7956:2;7936:18;;;7929:30;7995:34;7975:18;;;7968:62;-1:-1:-1;;;8046:18:12;;;8039:31;8087:19;;14357:293:10::1;7715:397:12::0;14357:293:10::1;14660:6;:18:::0;;;14688:10:::1;:26:::0;;;14724:10:::1;:26:::0;;;14760:14:::1;:34:::0;;;14804:12:::1;:29:::0;;;14843:16:::1;:38:::0;;;14896:108:::1;::::0;;8404:25:12;;;8460:2;8445:18;;8438:34;;;8488:18;;;8481:34;;;8546:2;8531:18;;8524:34;;;8589:3;8574:19;;8567:35;;;8633:3;8618:19;;8611:35;;;14896:108:10::1;::::0;8391:3:12;8376:19;14896:108:10::1;;;;;;;14112:899:::0;;;;;;:::o;2380:102:2:-;2436:13;2468:7;2461:14;;;;;:::i;12581:297:10:-;1278:6:8;;-1:-1:-1;;;;;1278:6:8;170:10:1;1278:22:8;1270:67;;;;-1:-1:-1;;;1270:67:8;;;;;;;:::i;:::-;12647:17:10::1;::::0;-1:-1:-1;;;12647:17:10;::::1;;;12646:18;12638:58;;;::::0;-1:-1:-1;;;12638:58:10;;8859:2:12;12638:58:10::1;::::0;::::1;8841:21:12::0;8898:2;8878:18;;;8871:30;8937:29;8917:18;;;8910:57;8984:18;;12638:58:10::1;8657:351:12::0;12638:58:10::1;12735:17;:24:::0;;-1:-1:-1;;;;12735:24:10::1;-1:-1:-1::0;;;12735:24:10::1;::::0;;12847::::1;:15;12865:6;12847:24;:::i;:::-;12823:21;:48:::0;12581:297::o;6343:266:2:-;6436:4;6452:129;170:10:1;6475:7:2;6484:96;6523:15;6484:96;;;;;;;;;;;;;;;;;170:10:1;6484:25:2;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;6484:34:2;;;;;;;;;;;;:38;:96::i;3749:172::-;3835:4;3851:42;170:10:1;3875:9:2;3886:6;3851:9;:42::i;1830:121:9:-;1890:16;1925:19;1918:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1918:26:9;;;;;;;;;;;;;;;;;;;;;;1830:121;:::o;1245:440::-;1278:6:8;;-1:-1:-1;;;;;1278:6:8;170:10:1;1278:22:8;1270:67;;;;-1:-1:-1;;;1270:67:8;;;;;;;:::i;:::-;-1:-1:-1;;;;;1324:25:9;::::1;;::::0;;;:17:::1;:25;::::0;;;;;::::1;;1316:74;;;::::0;-1:-1:-1;;;1316:74:9;;9345:2:12;1316:74:9::1;::::0;::::1;9327:21:12::0;9384:2;9364:18;;;9357:30;9423:34;9403:18;;;9396:62;-1:-1:-1;;;9474:18:12;;;9467:34;9518:19;;1316:74:9::1;9143:400:12::0;1316:74:9::1;1405:6;1400:240;1421:19;:26:::0;1417:30;::::1;1400:240;;;1498:6;-1:-1:-1::0;;;;;1472:32:9::1;:19;1492:1;1472:22;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;1472:22:9::1;:32:::0;1468:162:::1;;-1:-1:-1::0;;;;;1524:25:9;::::1;1552:5;1524:25:::0;;;:17:::1;:25;::::0;;;;:33;;-1:-1:-1;;1524:33:9::1;::::0;;1575:17:::1;1590:1:::0;1575:14:::1;:17::i;:::-;1610:5;;1468:162;1449:3:::0;::::1;::::0;::::1;:::i;:::-;;;;1400:240;;;-1:-1:-1::0;1654:24:9::1;::::0;-1:-1:-1;;;;;1655:32:12;;1637:51;;1654:24:9::1;::::0;1625:2:12;1610:18;1654:24:9::1;1467:227:12::0;15464:225:10;1278:6:8;;-1:-1:-1;;;;;1278:6:8;170:10:1;1278:22:8;1270:67;;;;-1:-1:-1;;;1270:67:8;;;;;;;:::i;:::-;15575:15:10::1;:52:::0;;-1:-1:-1;;;;;;15575:52:10::1;-1:-1:-1::0;;;;;15575:52:10;::::1;::::0;;::::1;::::0;;;15642:40:::1;::::0;1637:51:12;;;15642:40:10::1;::::0;1625:2:12;1610:18;15642:40:10::1;1467:227:12::0;13114:238:10;1278:6:8;;-1:-1:-1;;;;;1278:6:8;170:10:1;1278:22:8;1270:67;;;;-1:-1:-1;;;1270:67:8;;;;;;;:::i;:::-;13206:1:10::1;13194:8;:13;;13186:53;;;::::0;-1:-1:-1;;;13186:53:10;;10022:2:12;13186:53:10::1;::::0;::::1;10004:21:12::0;10061:2;10041:18;;;10034:30;10100:29;10080:18;;;10073:57;10147:18;;13186:53:10::1;9820:351:12::0;13186:53:10::1;13263:36;13294:4;13263:26;1660:25;13280:8:::0;13263:16:::1;:26::i;:::-;:30:::0;::::1;:36::i;:::-;13249:11;:50:::0;;;13314:31:::1;::::0;1845:25:12;;;13314:31:10::1;::::0;1833:2:12;1818:18;13314:31:10::1;1699:177:12::0;12884:179:10;1278:6:8;;-1:-1:-1;;;;;1278:6:8;170:10:1;1278:22:8;1270:67;;;;-1:-1:-1;;;1270:67:8;;;;;;;:::i;:::-;12966:18:10::1;:36:::0;;;::::1;;-1:-1:-1::0;;;12966:36:10::1;-1:-1:-1::0;;;;12966:36:10;;::::1;;::::0;;13017:39:::1;::::0;::::1;::::0;::::1;::::0;12987:15;1188:14:12;1181:22;1163:41;;1151:2;1136:18;;1023:187;13399:264:10;1278:6:8;;-1:-1:-1;;;;;1278:6:8;170:10:1;1278:22:8;1270:67;;;;-1:-1:-1;;;1270:67:8;;;;;;;:::i;:::-;13498:1:10::1;13482:12;:17;;13474:66;;;::::0;-1:-1:-1;;;13474:66:10;;10378:2:12;13474:66:10::1;::::0;::::1;10360:21:12::0;10417:2;10397:18;;;10390:30;10456:34;10436:18;;;10429:62;-1:-1:-1;;;10507:18:12;;;10500:34;10551:19;;13474:66:10::1;10176:400:12::0;13474:66:10::1;13566:40;13601:4;13566:30;1660:25;13583:12:::0;13566:16:::1;:30::i;:40::-;13550:13;:56:::0;;;13621:35:::1;::::0;1845:25:12;;;13621:35:10::1;::::0;1833:2:12;1818:18;13621:35:10::1;1699:177:12::0;13959:147:10;1278:6:8;;-1:-1:-1;;;;;1278:6:8;170:10:1;1278:22:8;1270:67;;;;-1:-1:-1;;;1270:67:8;;;;;;;:::i;:::-;-1:-1:-1;;;;;14027:27:10;::::1;14057:5;14027:27:::0;;;:18:::1;:27;::::0;;;;;;;;:35;;-1:-1:-1;;14027:35:10::1;::::0;;14077:22;;1637:51:12;;;14077:22:10::1;::::0;1610:18:12;14077:22:10::1;1467:227:12::0;1993:276:8;1278:6;;-1:-1:-1;;;;;1278:6:8;170:10:1;1278:22:8;1270:67;;;;-1:-1:-1;;;1270:67:8;;;;;;;:::i;:::-;-1:-1:-1;;;;;2096:22:8;::::1;2075:107;;;::::0;-1:-1:-1;;;2075:107:8;;10783:2:12;2075:107:8::1;::::0;::::1;10765:21:12::0;10822:2;10802:18;;;10795:30;10861:34;10841:18;;;10834:62;-1:-1:-1;;;10912:18:12;;;10905:36;10958:19;;2075:107:8::1;10581:402:12::0;2075:107:8::1;2218:6;::::0;2197:38:::1;::::0;-1:-1:-1;;;;;2197:38:8;;::::1;::::0;2218:6:::1;::::0;2197:38:::1;::::0;2218:6:::1;::::0;2197:38:::1;2245:6;:17:::0;;-1:-1:-1;;;;;;2245:17:8::1;-1:-1:-1::0;;;;;2245:17:8;;;::::1;::::0;;;::::1;::::0;;1993:276::o;16635:172:10:-;1278:6:8;;-1:-1:-1;;;;;1278:6:8;170:10:1;1278:22:8;1270:67;;;;-1:-1:-1;;;1270:67:8;;;;;;;:::i;:::-;16762:17:10::1;::::0;16715:21:::1;::::0;16746:54:::1;::::0;-1:-1:-1;;;;;16762:17:10::1;16715:21:::0;16746:15:::1;:54::i;1961:118:9:-:0;2010:7;2051:21;:19;:21::i;:::-;2036:12;;:36;;;;:::i;:::-;2029:43;;1961:118;:::o;2212:459:11:-;2270:7;2511:1;2516;2511:6;2507:45;;-1:-1:-1;2540:1:11;2533:8;;2507:45;2562:9;2574:5;2578:1;2574;:5;:::i;:::-;2562:17;-1:-1:-1;2606:1:11;2597:5;2601:1;2562:17;2597:5;:::i;:::-;:10;2589:56;;;;-1:-1:-1;;;2589:56:11;;11545:2:12;2589:56:11;;;11527:21:12;11584:2;11564:18;;;11557:30;11623:34;11603:18;;;11596:62;-1:-1:-1;;;11674:18:12;;;11667:31;11715:19;;2589:56:11;11343:397:12;2589:56:11;2663:1;2212:459;-1:-1:-1;;;2212:459:11:o;3133:130::-;3191:7;3217:39;3221:1;3224;3217:39;;;;;;;;;;;;;;;;;:3;:39::i;876:176::-;934:7;;965:5;969:1;965;:5;:::i;:::-;953:17;;993:1;988;:6;;980:46;;;;-1:-1:-1;;;980:46:11;;11947:2:12;980:46:11;;;11929:21:12;11986:2;11966:18;;;11959:30;12025:29;12005:18;;;11998:57;12072:18;;980:46:11;11745:351:12;9442:370:2;-1:-1:-1;;;;;9573:19:2;;9565:68;;;;-1:-1:-1;;;9565:68:2;;12303:2:12;9565:68:2;;;12285:21:12;12342:2;12322:18;;;12315:30;12381:34;12361:18;;;12354:62;-1:-1:-1;;;12432:18:12;;;12425:34;12476:19;;9565:68:2;12101:400:12;9565:68:2;-1:-1:-1;;;;;9651:21:2;;9643:68;;;;-1:-1:-1;;;9643:68:2;;12708:2:12;9643:68:2;;;12690:21:12;12747:2;12727:18;;;12720:30;12786:34;12766:18;;;12759:62;-1:-1:-1;;;12837:18:12;;;12830:32;12879:19;;9643:68:2;12506:398:12;9643:68:2;-1:-1:-1;;;;;9722:18:2;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;9773:32;;1845:25:12;;;9773:32:2;;1818:18:12;9773:32:2;;;;;;;;9442:370;;;:::o;5525:2334:10:-;5690:17;;-1:-1:-1;;;5690:17:10;;;;;:44;;-1:-1:-1;1138:6:8;;-1:-1:-1;;;;;1138:6:8;170:10:1;5711:23:10;5690:44;5682:120;;;;-1:-1:-1;;;5682:120:10;;13111:2:12;5682:120:10;;;13093:21:12;13150:2;13130:18;;;13123:30;13189:34;13169:18;;;13162:62;13260:33;13240:18;;;13233:61;13311:19;;5682:120:10;12909:427:12;5682:120:10;5852:18;;-1:-1:-1;;;5852:18:10;;;;5848:102;;;5886:33;5902:4;5908:2;5912:6;5886:15;:33::i;:::-;5525:2334;;;:::o;5848:102::-;5969:13;;-1:-1:-1;;;;;5963:19:10;;;5969:13;;5963:19;5960:131;;6031:13;;6022:6;6006:13;6016:2;-1:-1:-1;;;;;3521:18:2;3495:7;3521:18;;;;;;;;;;;;3421:125;6006:13:10;:22;;;;:::i;:::-;:38;5998:82;;;;-1:-1:-1;;;5998:82:10;;13543:2:12;5998:82:10;;;13525:21:12;13582:2;13562:18;;;13555:30;13621:33;13601:18;;;13594:61;13672:18;;5998:82:10;13341:355:12;5998:82:10;-1:-1:-1;;;;;6119:26:10;;;;;;:20;:26;;;;;;;;6118:27;:68;;;;-1:-1:-1;;;;;;6162:24:10;;;;;;:20;:24;;;;;;;;6161:25;6118:68;6101:260;;;6266:11;;6256:6;:21;;6231:119;;;;-1:-1:-1;;;6231:119:10;;13903:2:12;6231:119:10;;;13885:21:12;13942:2;13922:18;;;13915:30;13981:34;13961:18;;;13954:62;-1:-1:-1;;;14032:18:12;;;14025:37;14079:19;;6231:119:10;13701:403:12;6231:119:10;6417:10;;6458:6;;6501:12;;6533:13;;-1:-1:-1;;;;;6533:13:10;;;6527:19;;;;6523:282;;6571:10;;6562:6;:19;6608:14;;6595:10;:27;6651:16;;6636:12;:31;6686:21;;6711:15;-1:-1:-1;6682:113:10;;6766:13;;6755:6;;:25;;:10;:25::i;:::-;6746:6;:34;6682:113;6893:4;6844:28;3521:18:2;;;;;;;;;;;6960:19:10;;6936:43;;;;;;;7006:53;;-1:-1:-1;7042:17:10;;-1:-1:-1;;;7042:17:10;;;;7041:18;7006:53;:90;;;;-1:-1:-1;7083:13:10;;-1:-1:-1;;;;;7075:21:10;;;7083:13;;7075:21;;7006:90;:135;;;;-1:-1:-1;7112:29:10;;-1:-1:-1;;;7112:29:10;;;;7006:135;6989:259;;;7193:44;7216:20;7193:22;:44::i;:::-;-1:-1:-1;;;;;7262:24:10;;;;;;:18;:24;;;;;;;;;:50;;-1:-1:-1;;;;;;7290:22:10;;;;;;:18;:22;;;;;;;;7262:50;7258:95;;;7328:14;:12;:14::i;:::-;7364:23;7389:12;7405:18;7416:6;7405:10;:18::i;:::-;-1:-1:-1;;;;;7451:15:10;;:9;:15;;;;;;;;;;;7363:60;;-1:-1:-1;7363:60:10;-1:-1:-1;7451:27:10;;7471:6;7451:19;:27::i;:::-;-1:-1:-1;;;;;7433:15:10;;;:9;:15;;;;;;;;;;;:45;;;;7504:13;;;;;;;:34;;7522:15;7504:17;:34::i;:::-;-1:-1:-1;;;;;7488:13:10;;:9;:13;;;;;;;;;;:50;7549:14;7558:4;7549:8;:14::i;:::-;-1:-1:-1;;;;;7578:24:10;;;;;;:18;:24;;;;;;;;;:50;;-1:-1:-1;;;;;;7606:22:10;;;;;;:18;:22;;;;;;;;7578:50;7574:96;;;7644:15;9038:20;;9024:11;:34;9077:15;;9068:6;:24;9115:19;;9102:10;:32;9159:21;;9144:12;:36;8981:206;7644:15;7704:6;:19;;;7733:10;:27;;;7770:12;:31;;;7817:35;;1845:25:12;;;-1:-1:-1;;;;;7817:35:10;;;;;;;;;;1833:2:12;1818:18;7817:35:10;;;;;;;5642:2217;;;;;;;5525:2334;;;:::o;1748:217:11:-;1864:7;1899:12;1891:6;;;;1883:29;;;;-1:-1:-1;;;1883:29:11;;;;;;;;:::i;:::-;-1:-1:-1;1922:9:11;1934:5;1938:1;1934;:5;:::i;:::-;1922:17;1748:217;-1:-1:-1;;;;;1748:217:11:o;12002:573:10:-;12150:16;;;12164:1;12150:16;;;;;;;;12126:21;;12150:16;;;;;;;;;;-1:-1:-1;12150:16:10;12126:40;;12194:4;12176;12181:1;12176:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;12176:23:10;;;:7;;;;;;;;;;:23;;;;12219:15;;:22;;;-1:-1:-1;;;12219:22:10;;;;:15;;;;;:20;;:22;;;;;12176:7;;12219:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;12209:4;12214:1;12209:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;12209:32:10;;;:7;;;;;;;;;:32;12284:15;;12252:62;;12269:4;;12284:15;12302:11;12252:8;:62::i;:::-;12350:15;;:218;;-1:-1:-1;;;12350:218:10;;-1:-1:-1;;;;;12350:15:10;;;;:66;;:218;;12430:11;;12350:15;;12498:4;;12524;;12543:15;;12350:218;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12057:518;12002:573;:::o;368:268:9:-;439:19;:26;431:34;;423:81;;;;-1:-1:-1;;;423:81:9;;15030:2:12;423:81:9;;;15012:21:12;15069:2;15049:18;;;15042:30;15108:34;15088:18;;;15081:62;-1:-1:-1;;;15159:18:12;;;15152:32;15201:19;;423:81:9;14828:398:12;423:81:9;543:19;563:26;;:30;;592:1;;563:30;:::i;:::-;543:51;;;;;;;;:::i;:::-;;;;;;;;;;;514:19;:26;;-1:-1:-1;;;;;543:51:9;;;;534:5;;514:26;;;;;;:::i;:::-;;;;;;;;;:80;;;;;-1:-1:-1;;;;;514:80:9;;;;;-1:-1:-1;;;;;514:80:9;;;;;;604:19;:25;;;;;;;:::i;:::-;;;;;;;;;;-1:-1:-1;;604:25:9;;;;;-1:-1:-1;;;;;;604:25:9;;;;;;-1:-1:-1;368:268:9:o;11842:154:10:-;11921:10;;11917:73;;11947:32;;-1:-1:-1;;;;;11947:24:10;;;:32;;;;;11972:6;;11947:32;;;;11972:6;11947:24;:32;;;;;;;;;;;;;;;;;;;11917:73;11842:154;;:::o;646:297:9:-;700:7;;;762:137;783:19;:26;779:30;;762:137;;;855:33;865:19;885:1;865:22;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;865:22:9;3521:18:2;;;;;;;;;;3421:125;855:33:9;830:58;;;;:::i;:::-;;-1:-1:-1;811:3:9;;;;:::i;:::-;;;;762:137;;;-1:-1:-1;915:21:9;646:297;-1:-1:-1;646:297:9:o;3745:302:11:-;3861:7;3895:12;3888:5;3880:28;;;;-1:-1:-1;;;3880:28:11;;;;;;;;:::i;:::-;-1:-1:-1;3918:9:11;3930:5;3934:1;3930;:5;:::i;7083:560:2:-;-1:-1:-1;;;;;7218:20:2;;7210:70;;;;-1:-1:-1;;;7210:70:2;;15565:2:12;7210:70:2;;;15547:21:12;15604:2;15584:18;;;15577:30;15643:34;15623:18;;;15616:62;-1:-1:-1;;;15694:18:12;;;15687:35;15739:19;;7210:70:2;15363:401:12;7210:70:2;-1:-1:-1;;;;;7298:23:2;;7290:71;;;;-1:-1:-1;;;7290:71:2;;15971:2:12;7290:71:2;;;15953:21:12;16010:2;15990:18;;;15983:30;16049:34;16029:18;;;16022:62;-1:-1:-1;;;16100:18:12;;;16093:33;16143:19;;7290:71:2;15769:399:12;7290:71:2;7450;7472:6;7450:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7450:17:2;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;7430:17:2;;;:9;:17;;;;;;;;;;;:91;;;;7554:20;;;;;;;:32;;7579:6;7554:24;:32::i;:::-;-1:-1:-1;;;;;7531:20:2;;;:9;:20;;;;;;;;;;;;:55;;;;7601:35;1845:25:12;;;7531:20:2;;7601:35;;;;;;1818:18:12;7601:35:2;1699:177:12;9193:2136:10;4341:17;:24;;-1:-1:-1;;;;4341:24:10;-1:-1:-1;;;4341:24:10;;;9377:11:::1;::::0;9359:12:::1;::::0;9343:10:::1;::::0;9332:6:::1;::::0;4341:24;;9332:57:::1;::::0;9377:11;;9332:40:::1;::::0;;;:10:::1;:22::i;:::-;:26:::0;::::1;:40::i;:57::-;9305:84;;9403:16;9423:1;9403:21:::0;9399:34:::1;;9426:7;;;9399:34;9707:22;9732:21;9707:46;;9789:29;9821:60;9864:16;9821:38;9846:12;;9821:20;:24;;:38;;;;:::i;:60::-;9789:92:::0;-1:-1:-1;9943:21:10::1;9967:28;9789:92:::0;9993:1:::1;9967:25;:28::i;:::-;9943:52:::0;-1:-1:-1;10037:28:10::1;10068:39;:20:::0;9943:52;10068:24:::1;:39::i;:::-;10037:70;;10117:38;10134:20;10117:16;:38::i;:::-;10166:18;10187:41;:21;10213:14:::0;10187:25:::1;:41::i;:::-;10166:62:::0;-1:-1:-1;10243:14:10;;10239:1084:::1;;10307:27;10337:57;10377:16;10337:35;10352:19;10369:1;10352:12;;:16;;:19;;;;:::i;:::-;10337:10:::0;;:14:::1;:35::i;:57::-;10307:87;;10408:48;10421:13;10436:19;10408:12;:48::i;:::-;10510:23;10536:49;10568:16;10536:27;10551:11;;10536:10;:14;;:27;;;;:::i;:49::-;10615:22;::::0;10510:75;;-1:-1:-1;10599:56:10::1;::::0;-1:-1:-1;;;;;10615:22:10::1;10510:75:::0;10599:15:::1;:56::i;:::-;10738:22;10763:48;10794:16;10763:26;10778:10;;10763;:14;;:26;;;;:::i;:48::-;10738:73;;10846:1;10829:14;:18;:60;;;;-1:-1:-1::0;10859:15:10::1;::::0;-1:-1:-1;;;;;10859:15:10::1;10851:38:::0;::::1;10829:60;10825:194;;;10913:15;::::0;:80:::1;::::0;-1:-1:-1;;;10913:80:10;;1613:1:::1;10913:80;::::0;::::1;1845:25:12::0;-1:-1:-1;;;;;10913:15:10;;::::1;::::0;:29:::1;::::0;10950:14;;1818:18:12;;10913:80:10::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;10909:96:::0;::::1;11109:18;11130:44;11157:16;11130:22;11145:6;;11130:10;:14;;:22;;;;:::i;:44::-;11204:17;::::0;11109:65;;-1:-1:-1;11188:46:10::1;::::0;-1:-1:-1;;;;;11204:17:10::1;11109:65:::0;11188:15:::1;:46::i;:::-;11254:58;::::0;;16347:25:12;;;16403:2;16388:18;;16381:34;;;11254:58:10::1;::::0;16320:18:12;11254:58:10::1;;;;;;;10259:1064;;;;10239:1084;9295:2034;;;;;;4375:1;-1:-1:-1::0;4386:17:10;:25;;-1:-1:-1;;;;4386:25:10;;;9193:2136::o;8580:395::-;8626:6;;:11;:30;;;;-1:-1:-1;8641:10:10;;:15;8626:30;:50;;;;-1:-1:-1;8660:11:10;;:16;8626:50;:71;;;;-1:-1:-1;8680:12:10;;:17;8626:71;8622:84;;;8580:395::o;8622:84::-;8739:11;;;8716:20;:34;8778:6;;;8760:15;:24;8816:10;;;8794:19;:32;8860:12;;;8836:21;:36;-1:-1:-1;8883:15:10;;;;8908:10;;;;8928:14;;;8952:16;8580:395::o;7955:251::-;8038:7;8047;8070:12;8085:21;8098:7;8085:12;:21::i;:::-;8070:36;-1:-1:-1;8116:23:10;8142:17;:7;8070:36;8142:11;:17::i;:::-;8116:43;8194:4;;-1:-1:-1;7955:251:10;;-1:-1:-1;;;7955:251:10:o;1323:134:11:-;1381:7;1407:43;1411:1;1414;1407:43;;;;;;;;;;;;;;;;;:3;:43::i;8212:116:10:-;8306:4;8288:9;:24;;;;;;;;;;;:33;;8317:3;8288:28;:33::i;:::-;8279:4;8261:9;:24;;;;;;;;;;:60;-1:-1:-1;8212:116:10:o;11335:501::-;11513:15;;11481:62;;11498:4;;-1:-1:-1;;;;;11513:15:10;11531:11;11481:8;:62::i;:::-;11583:15;;-1:-1:-1;;;;;11583:15:10;:31;11622:9;11655:4;11674:11;11583:15;;11783:7;1138:6:8;;-1:-1:-1;;;;;1138:6:8;;1074:77;11783:7:10;11583:246;;;;;;-1:-1:-1;;;;;;11583:246:10;;;-1:-1:-1;;;;;16785:15:12;;;11583:246:10;;;16767:34:12;16817:18;;;16810:34;;;;16860:18;;;16853:34;;;;16903:18;;;16896:34;16967:15;;;16946:19;;;16939:44;11804:15:10;16999:19:12;;;16992:35;16701:19;;11583:246:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;11335:501;;:::o;8334:240::-;8419:7;8442:16;8461:57;8506:11;;8461:40;8488:12;;8461:22;8472:10;;8461:6;;:10;;:22;;;;:::i;:57::-;8442:76;-1:-1:-1;8535:32:10;8561:5;8535:21;:7;8442:76;8535:11;:21::i;14:548:12:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:12;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:12:o;1215:247::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;1382:9;1369:23;1401:31;1426:5;1401:31;:::i;2141:456::-;2218:6;2226;2234;2287:2;2275:9;2266:7;2262:23;2258:32;2255:52;;;2303:1;2300;2293:12;2255:52;2342:9;2329:23;2361:31;2386:5;2361:31;:::i;:::-;2411:5;-1:-1:-1;2468:2:12;2453:18;;2440:32;2481:33;2440:32;2481:33;:::i;:::-;2141:456;;2533:7;;-1:-1:-1;;;2587:2:12;2572:18;;;;2559:32;;2141:456::o;2602:273::-;2658:6;2711:2;2699:9;2690:7;2686:23;2682:32;2679:52;;;2727:1;2724;2717:12;2679:52;2766:9;2753:23;2819:5;2812:13;2805:21;2798:5;2795:32;2785:60;;2841:1;2838;2831:12;3069:180;3128:6;3181:2;3169:9;3160:7;3156:23;3152:32;3149:52;;;3197:1;3194;3187:12;3149:52;-1:-1:-1;3220:23:12;;3069:180;-1:-1:-1;3069:180:12:o;3462:523::-;3566:6;3574;3582;3590;3598;3606;3659:3;3647:9;3638:7;3634:23;3630:33;3627:53;;;3676:1;3673;3666:12;3627:53;-1:-1:-1;;3699:23:12;;;3769:2;3754:18;;3741:32;;-1:-1:-1;3820:2:12;3805:18;;3792:32;;3871:2;3856:18;;3843:32;;-1:-1:-1;3922:3:12;3907:19;;3894:33;;-1:-1:-1;3974:3:12;3959:19;3946:33;;-1:-1:-1;3462:523:12;-1:-1:-1;3462:523:12:o;3990:461::-;4043:3;4081:5;4075:12;4108:6;4103:3;4096:19;4134:4;4163:2;4158:3;4154:12;4147:19;;4200:2;4193:5;4189:14;4221:1;4231:195;4245:6;4242:1;4239:13;4231:195;;;4310:13;;-1:-1:-1;;;;;4306:39:12;4294:52;;4366:12;;;;4401:15;;;;4342:1;4260:9;4231:195;;;-1:-1:-1;4442:3:12;;3990:461;-1:-1:-1;;;;;3990:461:12:o;4456:261::-;4635:2;4624:9;4617:21;4598:4;4655:56;4707:2;4696:9;4692:18;4684:6;4655:56;:::i;4722:388::-;4790:6;4798;4851:2;4839:9;4830:7;4826:23;4822:32;4819:52;;;4867:1;4864;4857:12;4819:52;4906:9;4893:23;4925:31;4950:5;4925:31;:::i;:::-;4975:5;-1:-1:-1;5032:2:12;5017:18;;5004:32;5045:33;5004:32;5045:33;:::i;:::-;5097:7;5087:17;;;4722:388;;;;;:::o;5115:380::-;5194:1;5190:12;;;;5237;;;5258:61;;5312:4;5304:6;5300:17;5290:27;;5258:61;5365:2;5357:6;5354:14;5334:18;5331:38;5328:161;;5411:10;5406:3;5402:20;5399:1;5392:31;5446:4;5443:1;5436:15;5474:4;5471:1;5464:15;5500:356;5702:2;5684:21;;;5721:18;;;5714:30;5780:34;5775:2;5760:18;;5753:62;5847:2;5832:18;;5500:356::o;6486:251::-;6556:6;6609:2;6597:9;6588:7;6584:23;6580:32;6577:52;;;6625:1;6622;6615:12;6577:52;6657:9;6651:16;6676:31;6701:5;6676:31;:::i;7051:127::-;7112:10;7107:3;7103:20;7100:1;7093:31;7143:4;7140:1;7133:15;7167:4;7164:1;7157:15;7183:168;7256:9;;;7287;;7304:15;;;7298:22;;7284:37;7274:71;;7325:18;;:::i;9013:125::-;9078:9;;;9099:10;;;9096:36;;;9112:18;;:::i;9548:127::-;9609:10;9604:3;9600:20;9597:1;9590:31;9640:4;9637:1;9630:15;9664:4;9661:1;9654:15;9680:135;9719:3;9740:17;;;9737:43;;9760:18;;:::i;:::-;-1:-1:-1;9807:1:12;9796:13;;9680:135::o;10988:128::-;11055:9;;;11076:11;;;11073:37;;;11090:18;;:::i;11121:217::-;11161:1;11187;11177:132;;11231:10;11226:3;11222:20;11219:1;11212:31;11266:4;11263:1;11256:15;11294:4;11291:1;11284:15;11177:132;-1:-1:-1;11323:9:12;;11121:217::o;14241:582::-;14540:6;14529:9;14522:25;14583:6;14578:2;14567:9;14563:18;14556:34;14626:3;14621:2;14610:9;14606:18;14599:31;14503:4;14647:57;14699:3;14688:9;14684:19;14676:6;14647:57;:::i;:::-;-1:-1:-1;;;;;14740:32:12;;;;14735:2;14720:18;;14713:60;-1:-1:-1;14804:3:12;14789:19;14782:35;14639:65;14241:582;-1:-1:-1;;;14241:582:12:o;15231:127::-;15292:10;15287:3;15283:20;15280:1;15273:31;15323:4;15320:1;15313:15;15347:4;15344:1;15337:15;17038:306;17126:6;17134;17142;17195:2;17183:9;17174:7;17170:23;17166:32;17163:52;;;17211:1;17208;17201:12;17163:52;17240:9;17234:16;17224:26;;17290:2;17279:9;17275:18;17269:25;17259:35;;17334:2;17323:9;17319:18;17313:25;17303:35;;17038:306;;;;;:::o

Swarm Source

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