ETH Price: $2,604.06 (+0.45%)

Token

MemeCoin Universe (MCU)
 

Overview

Max Total Supply

100,000,000,000,000 MCU

Holders

487

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
19,938,748,435 MCU

Value
$0.00
0xabafcdc98cfdb2feaf75b166879510c7c40e4b05
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:
MemeCoinUniverse

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity Multiple files format)

File 9 of 12: MCU.sol
pragma solidity ^0.8.4;

// SPDX-License-Identifier: Apache-2.0

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

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

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

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

    uint256 public devFee = 500; // 5%
    uint256 public sellDevFee = 500; // 5%
    uint256 private _previousDevFee = devFee;
    
    uint256 public rewardsFee = 600; // 6%
    uint256 public sellRewardsFee = 600; // 6%
    uint256 private _previousRewardsFee = rewardsFee;

    uint256 public launchSellFee = 2500; // 25%
    uint256 private _previousLaunchSellFee = launchSellFee;

    address payable private _platformWalletAddress =
        payable(0x5060Ad260816505F8A0304691c230AD521944399);
    address payable private _devWalletAddress =
        payable(0xE959d4628Bf54bF8f0F98D042ff1f11Be84bac9d);

    uint256 public blacklistDeadline = 0;
    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;

    // Blacklist
    mapping(address => bool) public isBlacklisted;
    
    // 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 = 200000000000 * 10**9;

    // Events and modifiers
    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndRedirectEthFeesUpdated(bool enabled);
    event OnSwapAndRedirectEthFees(
        uint256 tokensSwapped,
        uint256 ethToDevWallet
    );
    event MaxTxAmountUpdated(uint256 maxTxAmount);
    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
    );
    event LaunchFeeUpdated(uint256 newLaunchSellFee);

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

    constructor() ERC20("MemeCoin Universe", "MCU") {
        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");

        // blacklist
        require(
            !isBlacklisted[from] && !isBlacklisted[to],
            "Blacklisted address"
        );

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

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

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

            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;

        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(platformFee);
        return _amount.mul(totalFee).div(10000);
    }

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

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

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

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

    function swapAndRedirectEthFees(uint256 contractTokenBalance)
        private
        lockTheSwap
    {
        uint256 totalRedirectFee = devFee.add(rewardsFee).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;

        // swap tokens for ETH
        swapTokensForEth(contractTokenBalance);

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

        if (newBalance > 0) {
            // 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 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;

        // a maximum of 1 hour is given to blacklist snipers/flashbots
        blacklistDeadline = block.timestamp + 1 hours;

        // sell penalty for the first 24 hours
        launchSellFeeDeadline = block.timestamp + 7 days;
    }

    function setUseGenericTransfer(bool genericTransfer) external onlyOwner {
        useGenericTransfer = genericTransfer;
        emit GenericTransferChanged(genericTransfer);
    }

    function blacklistAddress(address account, bool value) public onlyOwner {
        if (value) {
            require(block.timestamp < blacklistDeadline, "The ability to blacklist accounts has been disabled.");
        }
        isBlacklisted[account] = value;
    }

    
    // 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);
    }
    
    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
    ) external onlyOwner {
        require(
            newDevFee <= 1000 &&
            newSellDevFee <= 1000 &&
            newRewardsFee <= 1000 &&
            newSellRewardsFee <= 1000,
            "Fees exceed maximum allowed value"
        );
        devFee = newDevFee;
        sellDevFee = newSellDevFee;
        rewardsFee = newRewardsFee;
        sellRewardsFee = newSellRewardsFee;
        emit FeesChanged(newDevFee, newSellDevFee, newRewardsFee, newSellRewardsFee);
    }

    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.4;

// 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.4;

// 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.4;

// 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.4;

// 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.4;

// 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.4;

// SPDX-License-Identifier: Apache-2.0

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

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

// 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.4;

// SPDX-License-Identifier: MIT

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

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

File 10 of 12: Ownable.sol
pragma solidity 0.8.4;

// 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 11 of 12: RewardsToken.sol
pragma solidity ^0.8.4;

// 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 12 of 12: SafeMath.sol
pragma solidity ^0.8.4;

// 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"}],"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":"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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"blacklistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blacklistDeadline","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":"","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"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":"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":"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"}],"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":"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"}]

6080604052620000446103e862000030600269152d02c7e14af6800000620004ac60201b620018e61790919060201c565b6200054060201b6200196c1790919060201c565b60085560646009819055600a556101f4600b819055600c819055600d55610258600e819055600f8190556010556109c46011819055601255601380546001600160a01b0319908116735060ad260816505f8a0304691c230ad521944399179091556014805490911673e959d4628bf54bf8f0f98d042ff1f11be84bac9d179055600060158190556016556017805461ffff60a01b1916600160a01b179055601c805460ff60a81b1916600160a81b179055680ad78ebc5ac6200000601d553480156200010f57600080fd5b50604051806040016040528060118152602001704d656d65436f696e20556e69766572736560781b815250604051806040016040528060038152602001624d435560e81b81525081600390805190602001906200016e9291906200089b565b508051620001849060049060208401906200089b565b5050506000620001996200058a60201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200023a57600080fd5b505afa1580156200024f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000275919062000941565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620002be57600080fd5b505afa158015620002d3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f9919062000941565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200034257600080fd5b505af115801562000357573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200037d919062000941565b601c80546001600160a01b03199081166001600160a01b0393841617909155601b8054909116838316179055600554620003c3911669152d02c7e14af68000006200058e565b600160196000620003dc6005546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526019909252812080549092166001908117909255601a90620004356005546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff1995861617905530808252601a90935220805490921660011790915562000481906200068a565b6200048e61dead6200068a565b601c54620004a5906001600160a01b03166200068a565b5062000a71565b600082620004bd575060006200053a565b6000620004cb8385620009fc565b905082620004da8583620009db565b14620005375760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084015b60405180910390fd5b90505b92915050565b60006200053783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250620007fc60201b60201c565b3390565b6001600160a01b038216620005e65760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200052e565b62000602816002546200083860201b620019ae1790919060201c565b6002556001600160a01b0382166000908152602081815260409091205462000635918390620019ae62000838821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620006e65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016200052e565b6001600160a01b03811660009081526007602052604090205460ff1615620007625760405162461bcd60e51b815260206004820152602860248201527f4164647265737320697320616c7265616479206578636c756465642066726f6d604482015267207265776172647360c01b60648201526084016200052e565b6006805460018082019092557ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b0319166001600160a01b038416908117909155600081815260076020908152604091829020805460ff1916909417909355519081527f9dc0c5d829ba95d4a3aa3e40791b3e0ff125f876788532b9f7f6eb543d8dfbd6910160405180910390a150565b60008183620008205760405162461bcd60e51b81526004016200052e91906200096a565b5060006200082f8486620009db565b95945050505050565b600080620008478385620009c0565b905083811015620005375760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016200052e565b828054620008a99062000a1e565b90600052602060002090601f016020900481019282620008cd576000855562000918565b82601f10620008e857805160ff191683800117855562000918565b8280016001018555821562000918579182015b8281111562000918578251825591602001919060010190620008fb565b50620009269291506200092a565b5090565b5b808211156200092657600081556001016200092b565b60006020828403121562000953578081fd5b81516001600160a01b038116811462000537578182fd5b6000602080835283518082850152825b8181101562000998578581018301518582016040015282016200097a565b81811115620009aa5783604083870101525b50601f01601f1916929092016040019392505050565b60008219821115620009d657620009d662000a5b565b500190565b600082620009f757634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161562000a195762000a1962000a5b565b500290565b600181811c9082168062000a3357607f821691505b6020821081141562000a5557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b612b988062000a816000396000f3fe6080604052600436106102975760003560e01c8063715018a61161015a578063b609995e116100c1578063e89bcca21161007a578063e89bcca214610807578063ea2f0b3714610827578063f2fde38b14610847578063f429389014610867578063fe575a871461087c578063fffa1dd9146108ac57600080fd5b8063b609995e14610735578063ba385abb14610755578063bb8d513114610775578063cf0c018b1461078b578063d543dbeb146107a1578063dd62ed3e146107c157600080fd5b8063a0d82dc511610113578063a0d82dc514610692578063a1ab19a3146106a8578063a457c2d7146106bd578063a9059cbb146106dd578063ada46d0a146106fd578063af01f2b21461071f57600080fd5b8063715018a6146105f35780638421b507146106085780638c0b5e22146106285780638da5cb5b1461063e57806395d89b411461065c57806398850b641461067157600080fd5b806339509351116101fe57806351bc3c85116101b757806351bc3c85146105235780635342acb41461053857806354959363146105715780636827e764146105875780636fcba3771461059d57806370a08231146105bd57600080fd5b8063395093511461046357806341cb87fc14610483578063437823ec146104a3578063455a4396146104c357806348a46473146104e357806349bd5a5e1461050357600080fd5b806318160ddd1161025057806318160ddd146103b25780631f53ac02146103d157806323b872dd146103f157806326b6308d146104115780632bb14e1d14610431578063313ce5671461044757600080fd5b806306fdde03146102a3578063095ea7b3146102ce5780630e832273146102fe578063111e037614610337578063113201fa146103595780631694505e1461037a57600080fd5b3661029e57005b600080fd5b3480156102af57600080fd5b506102b86108c1565b6040516102c59190612942565b60405180910390f35b3480156102da57600080fd5b506102ee6102e936600461285e565b610953565b60405190151581526020016102c5565b34801561030a57600080fd5b506102ee61031936600461277a565b6001600160a01b031660009081526007602052604090205460ff1690565b34801561034357600080fd5b5061035761035236600461277a565b61096a565b005b34801561036557600080fd5b50601c546102ee90600160a81b900460ff1681565b34801561038657600080fd5b50601b5461039a906001600160a01b031681565b6040516001600160a01b0390911681526020016102c5565b3480156103be57600080fd5b506002545b6040519081526020016102c5565b3480156103dd57600080fd5b506103576103ec36600461277a565b610ab2565b3480156103fd57600080fd5b506102ee61040c3660046127ea565b610b2a565b34801561041d57600080fd5b5061035761042c366004612889565b610b93565b34801561043d57600080fd5b506103c3600e5481565b34801561045357600080fd5b50604051600981526020016102c5565b34801561046f57600080fd5b506102ee61047e36600461285e565b610c0a565b34801561048f57600080fd5b5061035761049e36600461277a565b610c40565b3480156104af57600080fd5b506103576104be36600461277a565b610e45565b3480156104cf57600080fd5b506103576104de36600461282a565b610ec3565b3480156104ef57600080fd5b506103576104fe3660046128a3565b610f8c565b34801561050f57600080fd5b50601c5461039a906001600160a01b031681565b34801561052f57600080fd5b50610357610ff7565b34801561054457600080fd5b506102ee61055336600461277a565b6001600160a01b031660009081526019602052604090205460ff1690565b34801561057d57600080fd5b506103c360115481565b34801561059357600080fd5b506103c3600b5481565b3480156105a957600080fd5b506103576105b83660046128bb565b61103d565b3480156105c957600080fd5b506103c36105d836600461277a565b6001600160a01b031660009081526020819052604090205490565b3480156105ff57600080fd5b5061035761114f565b34801561061457600080fd5b506103576106233660046128a3565b6111c3565b34801561063457600080fd5b506103c360085481565b34801561064a57600080fd5b506005546001600160a01b031661039a565b34801561066857600080fd5b506102b8611274565b34801561067d57600080fd5b506017546102ee90600160a01b900460ff1681565b34801561069e57600080fd5b506103c3600c5481565b3480156106b457600080fd5b50610357611283565b3480156106c957600080fd5b506102ee6106d836600461285e565b61133b565b3480156106e957600080fd5b506102ee6106f836600461285e565b61138a565b34801561070957600080fd5b50610712611397565b6040516102c5919061292f565b34801561072b57600080fd5b506103c360165481565b34801561074157600080fd5b5061035761075036600461277a565b6113f8565b34801561076157600080fd5b5061035761077036600461277a565b611563565b34801561078157600080fd5b506103c3600f5481565b34801561079757600080fd5b506103c360155481565b3480156107ad57600080fd5b506103576107bc3660046128a3565b6115db565b3480156107cd57600080fd5b506103c36107dc3660046127b2565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561081357600080fd5b50610357610822366004612889565b6116ab565b34801561083357600080fd5b5061035761084236600461277a565b611722565b34801561085357600080fd5b5061035761086236600461277a565b61179d565b34801561087357600080fd5b50610357611888565b34801561088857600080fd5b506102ee61089736600461277a565b60186020526000908152604090205460ff1681565b3480156108b857600080fd5b506103c36118ca565b6060600380546108d090612a74565b80601f01602080910402602001604051908101604052809291908181526020018280546108fc90612a74565b80156109495780601f1061091e57610100808354040283529160200191610949565b820191906000526020600020905b81548152906001019060200180831161092c57829003601f168201915b5050505050905090565b6000610960338484611a0d565b5060015b92915050565b6005546001600160a01b0316331461099d5760405162461bcd60e51b815260040161099490612995565b60405180910390fd5b6001600160a01b03811660009081526007602052604090205460ff1615610a175760405162461bcd60e51b815260206004820152602860248201527f4164647265737320697320616c7265616479206578636c756465642066726f6d604482015267207265776172647360c01b6064820152608401610994565b6006805460018082019092557ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b0319166001600160a01b038416908117909155600081815260076020908152604091829020805460ff1916909417909355519081527f9dc0c5d829ba95d4a3aa3e40791b3e0ff125f876788532b9f7f6eb543d8dfbd691015b60405180910390a150565b6005546001600160a01b03163314610adc5760405162461bcd60e51b815260040161099490612995565b601480546001600160a01b0319166001600160a01b0383169081179091556040519081527f31bb1993faff4f8409d7baad771f861e093ef4ce2c92c6e0cb10b82d1c7324cb90602001610aa7565b6000610b37848484611b32565b610b898433610b8485604051806060016040528060288152602001612b16602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611f48565b611a0d565b5060019392505050565b6005546001600160a01b03163314610bbd5760405162461bcd60e51b815260040161099490612995565b601c8054821515600160a81b0260ff60a81b199091161790556040517fd9fca2a469120637ae54e43ab68dfdcd9354db52d615dea3d3a66a085e6f41b990610aa790831515815260200190565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610960918590610b8490866119ae565b6005546001600160a01b03163314610c6a5760405162461bcd60e51b815260040161099490612995565b6000819050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610ca857600080fd5b505afa158015610cbc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ce09190612796565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610d2857600080fd5b505afa158015610d3c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d609190612796565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015610da857600080fd5b505af1158015610dbc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610de09190612796565b601c80546001600160a01b03199081166001600160a01b0393841617909155601b805490911683831617905560405190831681527f7aed1d3e8155a07ccf395e44ea3109a0e2d6c9b29bbbe9f142d9790596f4dc809060200160405180910390a15050565b6005546001600160a01b03163314610e6f5760405162461bcd60e51b815260040161099490612995565b6001600160a01b038116600081815260196020908152604091829020805460ff1916600117905590519182527f57a00f76b5f242fb1e04b0b514a6974665a5b07bce45e39f36dabff4a042d9369101610aa7565b6005546001600160a01b03163314610eed5760405162461bcd60e51b815260040161099490612995565b8015610f61576015544210610f615760405162461bcd60e51b815260206004820152603460248201527f546865206162696c69747920746f20626c61636b6c697374206163636f756e7460448201527339903430b9903132b2b7103234b9b0b13632b21760611b6064820152608401610994565b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610fb65760405162461bcd60e51b815260040161099490612995565b610fc481633b9aca00612a3e565b601d556040518181527f5948780118f41f7c4577ae4619d5cbd064057bd8562d9f7b7e60324053375c0090602001610aa7565b6005546001600160a01b031633146110215760405162461bcd60e51b815260040161099490612995565b3060009081526020819052604090205461103a81611f82565b50565b6005546001600160a01b031633146110675760405162461bcd60e51b815260040161099490612995565b6103e8841115801561107b57506103e88311155b801561108957506103e88211155b801561109757506103e88111155b6110ed5760405162461bcd60e51b815260206004820152602160248201527f4665657320657863656564206d6178696d756d20616c6c6f7765642076616c756044820152606560f81b6064820152608401610994565b600b849055600c839055600e829055600f8190556040805185815260208101859052908101839052606081018290527f7027e29faa2460f22e800d92db38d4795b668c7104da6b87afaeaf502a269ca59060800160405180910390a150505050565b6005546001600160a01b031633146111795760405162461bcd60e51b815260040161099490612995565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b031633146111ed5760405162461bcd60e51b815260040161099490612995565b6109c481111561123f5760405162461bcd60e51b815260206004820152601e60248201527f4d6178696d756d206c61756e63682073656c6c206665652069732032352500006044820152606401610994565b60118190556040518181527fc799be5eb19a1a6d6ba7368d21e2bc367c8a335e4a07cd3d954482e6f714d3c590602001610aa7565b6060600480546108d090612a74565b6005546001600160a01b031633146112ad5760405162461bcd60e51b815260040161099490612995565b601754600160a81b900460ff16156113075760405162461bcd60e51b815260206004820152601b60248201527f416c726561647920707265706172656420666f72206c61756e636800000000006044820152606401610994565b6017805460ff60a81b1916600160a81b17905561132642610e10612a06565b6015556113364262093a80612a06565b601655565b60006109603384610b8485604051806060016040528060258152602001612b3e602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611f48565b6000610960338484611b32565b6060600680548060200260200160405190810160405280929190818152602001828054801561094957602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116113d1575050505050905090565b6005546001600160a01b031633146114225760405162461bcd60e51b815260040161099490612995565b6001600160a01b03811660009081526007602052604090205460ff166114965760405162461bcd60e51b8152602060048201526024808201527f41646472657373206973206e6f74206578636c756465642066726f6d207265776044820152636172647360e01b6064820152608401610994565b60005b60065481101561152957816001600160a01b0316600682815481106114ce57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415611517576001600160a01b0382166000908152600760205260409020805460ff1916905561151281612107565b611529565b8061152181612aa9565b915050611499565b506040516001600160a01b03821681527f87434094d24a90fbd9a8ffcf2be9818d237c06a12d126296bc1ea7d58959433490602001610aa7565b6005546001600160a01b0316331461158d5760405162461bcd60e51b815260040161099490612995565b601780546001600160a01b0319166001600160a01b0383169081179091556040519081527f535be0bbc71c839ded01277ab57f29f2e810c1ff0255bb938d7cb8e96ac8ca1a90602001610aa7565b6005546001600160a01b031633146116055760405162461bcd60e51b815260040161099490612995565b60058110156116565760405162461bcd60e51b815260206004820152601b60248201527f4d61782054582073686f756c642062652061626f766520302e352500000000006044820152606401610994565b6116766103e861167069152d02c7e14af6800000846118e6565b9061196c565b60088190556040519081527f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf90602001610aa7565b6005546001600160a01b031633146116d55760405162461bcd60e51b815260040161099490612995565b60178054821515600160a01b0260ff60a01b199091161790556040517f7d952115fd41bb443db2ae9cde6670e8dd72fefb507b7a4e0156c57e439afaf590610aa790831515815260200190565b6005546001600160a01b0316331461174c5760405162461bcd60e51b815260040161099490612995565b6001600160a01b038116600081815260196020908152604091829020805460ff1916905590519182527f346f6c42af1ce4b7d7951f3fa40a2fb1e78c80ab0f3d76fb4f9fec269d568f0d9101610aa7565b6005546001600160a01b031633146117c75760405162461bcd60e51b815260040161099490612995565b6001600160a01b03811661182c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610994565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146118b25760405162461bcd60e51b815260040161099490612995565b601454479061103a906001600160a01b03168261223d565b60006118d461227d565b6002546118e19190612a5d565b905090565b6000826118f557506000610964565b60006119018385612a3e565b90508261190e8583612a1e565b146119655760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610994565b9392505050565b600061196583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506122f8565b6000806119bb8385612a06565b9050838110156119655760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610994565b6001600160a01b038316611a6f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610994565b6001600160a01b038216611ad05760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610994565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b601754600160a81b900460ff1680611b5457506005546001600160a01b031633145b611bc65760405162461bcd60e51b815260206004820152603f60248201527f436f6e747261637420686173206e6f74206265656e207072657061726564206660448201527f6f72206c61756e636820616e642075736572206973206e6f74206f776e6572006064820152608401610994565b6001600160a01b03831660009081526018602052604090205460ff16158015611c0857506001600160a01b03821660009081526018602052604090205460ff16155b611c4a5760405162461bcd60e51b8152602060048201526013602482015272426c61636b6c6973746564206164647265737360681b6044820152606401610994565b601754600160a01b900460ff1615611c6c57611c67838383612326565b505050565b6001600160a01b0383166000908152601a602052604090205460ff16158015611cae57506001600160a01b0382166000908152601a602052604090205460ff16155b15611d1557600854811115611d155760405162461bcd60e51b815260206004820152602760248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152661e105b5bdd5b9d60ca1b6064820152608401610994565b600e54600b54601c546001600160a01b0385811691161415611d5957600c54600b55600f54600e556016544211611d5957601154600b54611d55916119ae565b600b555b30600090815260208190526040902054601d5481108015908190611d875750601c54600160a01b900460ff16155b8015611da15750601c546001600160a01b03888116911614155b8015611db65750601c54600160a81b900460ff165b15611dc457611dc4826124a9565b6001600160a01b03871660009081526019602052604090205460ff1680611e0357506001600160a01b03861660009081526019602052604090205460ff165b15611e1057611e10612658565b600080611e1c8761269d565b6001600160a01b038b166000908152602081905260409020549193509150611e4490886126c4565b6001600160a01b03808b1660009081526020819052604080822093909355908a1681522054611e7390836119ae565b6001600160a01b038916600090815260208190526040902055611e9581612706565b6001600160a01b03891660009081526019602052604090205460ff1680611ed457506001600160a01b03881660009081526019602052604090205460ff165b15611ef057611ef0600a54600955600d54600b55601054600e55565b600b859055600e8690556040518281526001600160a01b03808a1691908b16907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050505050505050565b60008184841115611f6c5760405162461bcd60e51b81526004016109949190612942565b506000611f798486612a5d565b95945050505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611fc557634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152601b54604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561201957600080fd5b505afa15801561202d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120519190612796565b8160018151811061207257634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152601b546120989130911684611a0d565b601b5460405163791ac94760e01b81526001600160a01b039091169063791ac947906120d19085906000908690309042906004016129ca565b600060405180830381600087803b1580156120eb57600080fd5b505af11580156120ff573d6000803e3d6000fd5b505050505050565b60065481106121635760405162461bcd60e51b815260206004820152602260248201527f496e6465782069732067726561746572207468616e206172726179206c656e676044820152610e8d60f31b6064820152608401610994565b6006805461217390600190612a5d565b8154811061219157634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600680546001600160a01b0390921691839081106121cb57634e487b7160e01b600052603260045260246000fd5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600680548061221857634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b031916905501905550565b8015612279576040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015611c67573d6000803e3d6000fd5b5050565b600080805b6006548110156122f2576122d4600682815481106122b057634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168252819052604090205490565b6122de9083612a06565b9150806122ea81612aa9565b915050612282565b50919050565b600081836123195760405162461bcd60e51b81526004016109949190612942565b506000611f798486612a1e565b6001600160a01b03831661238a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610994565b6001600160a01b0382166123ec5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610994565b61242981604051806060016040528060268152602001612af0602691396001600160a01b0386166000908152602081905260409020549190611f48565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461245890826119ae565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611b25565b601c805460ff60a01b1916600160a01b179055600954600e54600b546000926124dd9290916124d7916119ae565b906119ae565b9050806124ea5750612648565b476124f483611f82565b600061250047836126c4565b9050801561264457600061252384611670600954856118e690919063ffffffff16565b60135490915061253c906001600160a01b03168261223d565b600061255785611670600e54866118e690919063ffffffff16565b905060008111801561257357506017546001600160a01b031615155b156125d35760175460405163febd221b60e01b8152600760048201526001600160a01b039091169063febd221b9083906024016000604051808303818588803b1580156125bf57600080fd5b505af1935050505080156125d1575060015b505b60006125ee86611670600b54876118e690919063ffffffff16565b601454909150612607906001600160a01b03168261223d565b60408051888152602081018690527f3736f4ec17d19b9b4f0fbeeb377db969da082d70e2e16221f77d5b321570e8c7910160405180910390a15050505b5050505b50601c805460ff60a01b19169055565b600b541580156126685750600e54155b80156126745750600954155b1561267b57565b60098054600a55600b8054600d55600e80546010556000928390559082905555565b60008060006126ab84612733565b905060006126b985836126c4565b959194509092505050565b600061196583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611f48565b3060009081526020819052604090205461272090826119ae565b3060009081526020819052604090205550565b6000806127536009546124d7600e54600b546119ae90919063ffffffff16565b905061196561271061167085846118e6565b8035801515811461277557600080fd5b919050565b60006020828403121561278b578081fd5b813561196581612ada565b6000602082840312156127a7578081fd5b815161196581612ada565b600080604083850312156127c4578081fd5b82356127cf81612ada565b915060208301356127df81612ada565b809150509250929050565b6000806000606084860312156127fe578081fd5b833561280981612ada565b9250602084013561281981612ada565b929592945050506040919091013590565b6000806040838503121561283c578182fd5b823561284781612ada565b915061285560208401612765565b90509250929050565b60008060408385031215612870578182fd5b823561287b81612ada565b946020939093013593505050565b60006020828403121561289a578081fd5b61196582612765565b6000602082840312156128b4578081fd5b5035919050565b600080600080608085870312156128d0578081fd5b5050823594602084013594506040840135936060013592509050565b6000815180845260208085019450808401835b838110156129245781516001600160a01b0316875295820195908201906001016128ff565b509495945050505050565b60208152600061196560208301846128ec565b6000602080835283518082850152825b8181101561296e57858101830151858201604001528201612952565b8181111561297f5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b85815284602082015260a0604082015260006129e960a08301866128ec565b6001600160a01b0394909416606083015250608001529392505050565b60008219821115612a1957612a19612ac4565b500190565b600082612a3957634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615612a5857612a58612ac4565b500290565b600082821015612a6f57612a6f612ac4565b500390565b600181811c90821680612a8857607f821691505b602082108114156122f257634e487b7160e01b600052602260045260246000fd5b6000600019821415612abd57612abd612ac4565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b038116811461103a57600080fdfe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220338baf0316f5a06158bd554a3c96e6a9a2dbdd33d1b0eca5e4dfa8ac4bf3c37864736f6c63430008040033

Deployed Bytecode

0x6080604052600436106102975760003560e01c8063715018a61161015a578063b609995e116100c1578063e89bcca21161007a578063e89bcca214610807578063ea2f0b3714610827578063f2fde38b14610847578063f429389014610867578063fe575a871461087c578063fffa1dd9146108ac57600080fd5b8063b609995e14610735578063ba385abb14610755578063bb8d513114610775578063cf0c018b1461078b578063d543dbeb146107a1578063dd62ed3e146107c157600080fd5b8063a0d82dc511610113578063a0d82dc514610692578063a1ab19a3146106a8578063a457c2d7146106bd578063a9059cbb146106dd578063ada46d0a146106fd578063af01f2b21461071f57600080fd5b8063715018a6146105f35780638421b507146106085780638c0b5e22146106285780638da5cb5b1461063e57806395d89b411461065c57806398850b641461067157600080fd5b806339509351116101fe57806351bc3c85116101b757806351bc3c85146105235780635342acb41461053857806354959363146105715780636827e764146105875780636fcba3771461059d57806370a08231146105bd57600080fd5b8063395093511461046357806341cb87fc14610483578063437823ec146104a3578063455a4396146104c357806348a46473146104e357806349bd5a5e1461050357600080fd5b806318160ddd1161025057806318160ddd146103b25780631f53ac02146103d157806323b872dd146103f157806326b6308d146104115780632bb14e1d14610431578063313ce5671461044757600080fd5b806306fdde03146102a3578063095ea7b3146102ce5780630e832273146102fe578063111e037614610337578063113201fa146103595780631694505e1461037a57600080fd5b3661029e57005b600080fd5b3480156102af57600080fd5b506102b86108c1565b6040516102c59190612942565b60405180910390f35b3480156102da57600080fd5b506102ee6102e936600461285e565b610953565b60405190151581526020016102c5565b34801561030a57600080fd5b506102ee61031936600461277a565b6001600160a01b031660009081526007602052604090205460ff1690565b34801561034357600080fd5b5061035761035236600461277a565b61096a565b005b34801561036557600080fd5b50601c546102ee90600160a81b900460ff1681565b34801561038657600080fd5b50601b5461039a906001600160a01b031681565b6040516001600160a01b0390911681526020016102c5565b3480156103be57600080fd5b506002545b6040519081526020016102c5565b3480156103dd57600080fd5b506103576103ec36600461277a565b610ab2565b3480156103fd57600080fd5b506102ee61040c3660046127ea565b610b2a565b34801561041d57600080fd5b5061035761042c366004612889565b610b93565b34801561043d57600080fd5b506103c3600e5481565b34801561045357600080fd5b50604051600981526020016102c5565b34801561046f57600080fd5b506102ee61047e36600461285e565b610c0a565b34801561048f57600080fd5b5061035761049e36600461277a565b610c40565b3480156104af57600080fd5b506103576104be36600461277a565b610e45565b3480156104cf57600080fd5b506103576104de36600461282a565b610ec3565b3480156104ef57600080fd5b506103576104fe3660046128a3565b610f8c565b34801561050f57600080fd5b50601c5461039a906001600160a01b031681565b34801561052f57600080fd5b50610357610ff7565b34801561054457600080fd5b506102ee61055336600461277a565b6001600160a01b031660009081526019602052604090205460ff1690565b34801561057d57600080fd5b506103c360115481565b34801561059357600080fd5b506103c3600b5481565b3480156105a957600080fd5b506103576105b83660046128bb565b61103d565b3480156105c957600080fd5b506103c36105d836600461277a565b6001600160a01b031660009081526020819052604090205490565b3480156105ff57600080fd5b5061035761114f565b34801561061457600080fd5b506103576106233660046128a3565b6111c3565b34801561063457600080fd5b506103c360085481565b34801561064a57600080fd5b506005546001600160a01b031661039a565b34801561066857600080fd5b506102b8611274565b34801561067d57600080fd5b506017546102ee90600160a01b900460ff1681565b34801561069e57600080fd5b506103c3600c5481565b3480156106b457600080fd5b50610357611283565b3480156106c957600080fd5b506102ee6106d836600461285e565b61133b565b3480156106e957600080fd5b506102ee6106f836600461285e565b61138a565b34801561070957600080fd5b50610712611397565b6040516102c5919061292f565b34801561072b57600080fd5b506103c360165481565b34801561074157600080fd5b5061035761075036600461277a565b6113f8565b34801561076157600080fd5b5061035761077036600461277a565b611563565b34801561078157600080fd5b506103c3600f5481565b34801561079757600080fd5b506103c360155481565b3480156107ad57600080fd5b506103576107bc3660046128a3565b6115db565b3480156107cd57600080fd5b506103c36107dc3660046127b2565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561081357600080fd5b50610357610822366004612889565b6116ab565b34801561083357600080fd5b5061035761084236600461277a565b611722565b34801561085357600080fd5b5061035761086236600461277a565b61179d565b34801561087357600080fd5b50610357611888565b34801561088857600080fd5b506102ee61089736600461277a565b60186020526000908152604090205460ff1681565b3480156108b857600080fd5b506103c36118ca565b6060600380546108d090612a74565b80601f01602080910402602001604051908101604052809291908181526020018280546108fc90612a74565b80156109495780601f1061091e57610100808354040283529160200191610949565b820191906000526020600020905b81548152906001019060200180831161092c57829003601f168201915b5050505050905090565b6000610960338484611a0d565b5060015b92915050565b6005546001600160a01b0316331461099d5760405162461bcd60e51b815260040161099490612995565b60405180910390fd5b6001600160a01b03811660009081526007602052604090205460ff1615610a175760405162461bcd60e51b815260206004820152602860248201527f4164647265737320697320616c7265616479206578636c756465642066726f6d604482015267207265776172647360c01b6064820152608401610994565b6006805460018082019092557ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b0319166001600160a01b038416908117909155600081815260076020908152604091829020805460ff1916909417909355519081527f9dc0c5d829ba95d4a3aa3e40791b3e0ff125f876788532b9f7f6eb543d8dfbd691015b60405180910390a150565b6005546001600160a01b03163314610adc5760405162461bcd60e51b815260040161099490612995565b601480546001600160a01b0319166001600160a01b0383169081179091556040519081527f31bb1993faff4f8409d7baad771f861e093ef4ce2c92c6e0cb10b82d1c7324cb90602001610aa7565b6000610b37848484611b32565b610b898433610b8485604051806060016040528060288152602001612b16602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611f48565b611a0d565b5060019392505050565b6005546001600160a01b03163314610bbd5760405162461bcd60e51b815260040161099490612995565b601c8054821515600160a81b0260ff60a81b199091161790556040517fd9fca2a469120637ae54e43ab68dfdcd9354db52d615dea3d3a66a085e6f41b990610aa790831515815260200190565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610960918590610b8490866119ae565b6005546001600160a01b03163314610c6a5760405162461bcd60e51b815260040161099490612995565b6000819050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610ca857600080fd5b505afa158015610cbc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ce09190612796565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610d2857600080fd5b505afa158015610d3c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d609190612796565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015610da857600080fd5b505af1158015610dbc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610de09190612796565b601c80546001600160a01b03199081166001600160a01b0393841617909155601b805490911683831617905560405190831681527f7aed1d3e8155a07ccf395e44ea3109a0e2d6c9b29bbbe9f142d9790596f4dc809060200160405180910390a15050565b6005546001600160a01b03163314610e6f5760405162461bcd60e51b815260040161099490612995565b6001600160a01b038116600081815260196020908152604091829020805460ff1916600117905590519182527f57a00f76b5f242fb1e04b0b514a6974665a5b07bce45e39f36dabff4a042d9369101610aa7565b6005546001600160a01b03163314610eed5760405162461bcd60e51b815260040161099490612995565b8015610f61576015544210610f615760405162461bcd60e51b815260206004820152603460248201527f546865206162696c69747920746f20626c61636b6c697374206163636f756e7460448201527339903430b9903132b2b7103234b9b0b13632b21760611b6064820152608401610994565b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610fb65760405162461bcd60e51b815260040161099490612995565b610fc481633b9aca00612a3e565b601d556040518181527f5948780118f41f7c4577ae4619d5cbd064057bd8562d9f7b7e60324053375c0090602001610aa7565b6005546001600160a01b031633146110215760405162461bcd60e51b815260040161099490612995565b3060009081526020819052604090205461103a81611f82565b50565b6005546001600160a01b031633146110675760405162461bcd60e51b815260040161099490612995565b6103e8841115801561107b57506103e88311155b801561108957506103e88211155b801561109757506103e88111155b6110ed5760405162461bcd60e51b815260206004820152602160248201527f4665657320657863656564206d6178696d756d20616c6c6f7765642076616c756044820152606560f81b6064820152608401610994565b600b849055600c839055600e829055600f8190556040805185815260208101859052908101839052606081018290527f7027e29faa2460f22e800d92db38d4795b668c7104da6b87afaeaf502a269ca59060800160405180910390a150505050565b6005546001600160a01b031633146111795760405162461bcd60e51b815260040161099490612995565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b031633146111ed5760405162461bcd60e51b815260040161099490612995565b6109c481111561123f5760405162461bcd60e51b815260206004820152601e60248201527f4d6178696d756d206c61756e63682073656c6c206665652069732032352500006044820152606401610994565b60118190556040518181527fc799be5eb19a1a6d6ba7368d21e2bc367c8a335e4a07cd3d954482e6f714d3c590602001610aa7565b6060600480546108d090612a74565b6005546001600160a01b031633146112ad5760405162461bcd60e51b815260040161099490612995565b601754600160a81b900460ff16156113075760405162461bcd60e51b815260206004820152601b60248201527f416c726561647920707265706172656420666f72206c61756e636800000000006044820152606401610994565b6017805460ff60a81b1916600160a81b17905561132642610e10612a06565b6015556113364262093a80612a06565b601655565b60006109603384610b8485604051806060016040528060258152602001612b3e602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611f48565b6000610960338484611b32565b6060600680548060200260200160405190810160405280929190818152602001828054801561094957602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116113d1575050505050905090565b6005546001600160a01b031633146114225760405162461bcd60e51b815260040161099490612995565b6001600160a01b03811660009081526007602052604090205460ff166114965760405162461bcd60e51b8152602060048201526024808201527f41646472657373206973206e6f74206578636c756465642066726f6d207265776044820152636172647360e01b6064820152608401610994565b60005b60065481101561152957816001600160a01b0316600682815481106114ce57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415611517576001600160a01b0382166000908152600760205260409020805460ff1916905561151281612107565b611529565b8061152181612aa9565b915050611499565b506040516001600160a01b03821681527f87434094d24a90fbd9a8ffcf2be9818d237c06a12d126296bc1ea7d58959433490602001610aa7565b6005546001600160a01b0316331461158d5760405162461bcd60e51b815260040161099490612995565b601780546001600160a01b0319166001600160a01b0383169081179091556040519081527f535be0bbc71c839ded01277ab57f29f2e810c1ff0255bb938d7cb8e96ac8ca1a90602001610aa7565b6005546001600160a01b031633146116055760405162461bcd60e51b815260040161099490612995565b60058110156116565760405162461bcd60e51b815260206004820152601b60248201527f4d61782054582073686f756c642062652061626f766520302e352500000000006044820152606401610994565b6116766103e861167069152d02c7e14af6800000846118e6565b9061196c565b60088190556040519081527f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf90602001610aa7565b6005546001600160a01b031633146116d55760405162461bcd60e51b815260040161099490612995565b60178054821515600160a01b0260ff60a01b199091161790556040517f7d952115fd41bb443db2ae9cde6670e8dd72fefb507b7a4e0156c57e439afaf590610aa790831515815260200190565b6005546001600160a01b0316331461174c5760405162461bcd60e51b815260040161099490612995565b6001600160a01b038116600081815260196020908152604091829020805460ff1916905590519182527f346f6c42af1ce4b7d7951f3fa40a2fb1e78c80ab0f3d76fb4f9fec269d568f0d9101610aa7565b6005546001600160a01b031633146117c75760405162461bcd60e51b815260040161099490612995565b6001600160a01b03811661182c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610994565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146118b25760405162461bcd60e51b815260040161099490612995565b601454479061103a906001600160a01b03168261223d565b60006118d461227d565b6002546118e19190612a5d565b905090565b6000826118f557506000610964565b60006119018385612a3e565b90508261190e8583612a1e565b146119655760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610994565b9392505050565b600061196583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506122f8565b6000806119bb8385612a06565b9050838110156119655760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610994565b6001600160a01b038316611a6f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610994565b6001600160a01b038216611ad05760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610994565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b601754600160a81b900460ff1680611b5457506005546001600160a01b031633145b611bc65760405162461bcd60e51b815260206004820152603f60248201527f436f6e747261637420686173206e6f74206265656e207072657061726564206660448201527f6f72206c61756e636820616e642075736572206973206e6f74206f776e6572006064820152608401610994565b6001600160a01b03831660009081526018602052604090205460ff16158015611c0857506001600160a01b03821660009081526018602052604090205460ff16155b611c4a5760405162461bcd60e51b8152602060048201526013602482015272426c61636b6c6973746564206164647265737360681b6044820152606401610994565b601754600160a01b900460ff1615611c6c57611c67838383612326565b505050565b6001600160a01b0383166000908152601a602052604090205460ff16158015611cae57506001600160a01b0382166000908152601a602052604090205460ff16155b15611d1557600854811115611d155760405162461bcd60e51b815260206004820152602760248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152661e105b5bdd5b9d60ca1b6064820152608401610994565b600e54600b54601c546001600160a01b0385811691161415611d5957600c54600b55600f54600e556016544211611d5957601154600b54611d55916119ae565b600b555b30600090815260208190526040902054601d5481108015908190611d875750601c54600160a01b900460ff16155b8015611da15750601c546001600160a01b03888116911614155b8015611db65750601c54600160a81b900460ff165b15611dc457611dc4826124a9565b6001600160a01b03871660009081526019602052604090205460ff1680611e0357506001600160a01b03861660009081526019602052604090205460ff165b15611e1057611e10612658565b600080611e1c8761269d565b6001600160a01b038b166000908152602081905260409020549193509150611e4490886126c4565b6001600160a01b03808b1660009081526020819052604080822093909355908a1681522054611e7390836119ae565b6001600160a01b038916600090815260208190526040902055611e9581612706565b6001600160a01b03891660009081526019602052604090205460ff1680611ed457506001600160a01b03881660009081526019602052604090205460ff165b15611ef057611ef0600a54600955600d54600b55601054600e55565b600b859055600e8690556040518281526001600160a01b03808a1691908b16907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050505050505050565b60008184841115611f6c5760405162461bcd60e51b81526004016109949190612942565b506000611f798486612a5d565b95945050505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611fc557634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152601b54604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561201957600080fd5b505afa15801561202d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120519190612796565b8160018151811061207257634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152601b546120989130911684611a0d565b601b5460405163791ac94760e01b81526001600160a01b039091169063791ac947906120d19085906000908690309042906004016129ca565b600060405180830381600087803b1580156120eb57600080fd5b505af11580156120ff573d6000803e3d6000fd5b505050505050565b60065481106121635760405162461bcd60e51b815260206004820152602260248201527f496e6465782069732067726561746572207468616e206172726179206c656e676044820152610e8d60f31b6064820152608401610994565b6006805461217390600190612a5d565b8154811061219157634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600680546001600160a01b0390921691839081106121cb57634e487b7160e01b600052603260045260246000fd5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600680548061221857634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b031916905501905550565b8015612279576040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015611c67573d6000803e3d6000fd5b5050565b600080805b6006548110156122f2576122d4600682815481106122b057634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168252819052604090205490565b6122de9083612a06565b9150806122ea81612aa9565b915050612282565b50919050565b600081836123195760405162461bcd60e51b81526004016109949190612942565b506000611f798486612a1e565b6001600160a01b03831661238a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610994565b6001600160a01b0382166123ec5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610994565b61242981604051806060016040528060268152602001612af0602691396001600160a01b0386166000908152602081905260409020549190611f48565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461245890826119ae565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611b25565b601c805460ff60a01b1916600160a01b179055600954600e54600b546000926124dd9290916124d7916119ae565b906119ae565b9050806124ea5750612648565b476124f483611f82565b600061250047836126c4565b9050801561264457600061252384611670600954856118e690919063ffffffff16565b60135490915061253c906001600160a01b03168261223d565b600061255785611670600e54866118e690919063ffffffff16565b905060008111801561257357506017546001600160a01b031615155b156125d35760175460405163febd221b60e01b8152600760048201526001600160a01b039091169063febd221b9083906024016000604051808303818588803b1580156125bf57600080fd5b505af1935050505080156125d1575060015b505b60006125ee86611670600b54876118e690919063ffffffff16565b601454909150612607906001600160a01b03168261223d565b60408051888152602081018690527f3736f4ec17d19b9b4f0fbeeb377db969da082d70e2e16221f77d5b321570e8c7910160405180910390a15050505b5050505b50601c805460ff60a01b19169055565b600b541580156126685750600e54155b80156126745750600954155b1561267b57565b60098054600a55600b8054600d55600e80546010556000928390559082905555565b60008060006126ab84612733565b905060006126b985836126c4565b959194509092505050565b600061196583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611f48565b3060009081526020819052604090205461272090826119ae565b3060009081526020819052604090205550565b6000806127536009546124d7600e54600b546119ae90919063ffffffff16565b905061196561271061167085846118e6565b8035801515811461277557600080fd5b919050565b60006020828403121561278b578081fd5b813561196581612ada565b6000602082840312156127a7578081fd5b815161196581612ada565b600080604083850312156127c4578081fd5b82356127cf81612ada565b915060208301356127df81612ada565b809150509250929050565b6000806000606084860312156127fe578081fd5b833561280981612ada565b9250602084013561281981612ada565b929592945050506040919091013590565b6000806040838503121561283c578182fd5b823561284781612ada565b915061285560208401612765565b90509250929050565b60008060408385031215612870578182fd5b823561287b81612ada565b946020939093013593505050565b60006020828403121561289a578081fd5b61196582612765565b6000602082840312156128b4578081fd5b5035919050565b600080600080608085870312156128d0578081fd5b5050823594602084013594506040840135936060013592509050565b6000815180845260208085019450808401835b838110156129245781516001600160a01b0316875295820195908201906001016128ff565b509495945050505050565b60208152600061196560208301846128ec565b6000602080835283518082850152825b8181101561296e57858101830151858201604001528201612952565b8181111561297f5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b85815284602082015260a0604082015260006129e960a08301866128ec565b6001600160a01b0394909416606083015250608001529392505050565b60008219821115612a1957612a19612ac4565b500190565b600082612a3957634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615612a5857612a58612ac4565b500290565b600082821015612a6f57612a6f612ac4565b500390565b600181811c90821680612a8857607f821691505b602082108114156122f257634e487b7160e01b600052602260045260246000fd5b6000600019821415612abd57612abd612ac4565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b038116811461103a57600080fdfe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220338baf0316f5a06158bd554a3c96e6a9a2dbdd33d1b0eca5e4dfa8ac4bf3c37864736f6c63430008040033

Deployed Bytecode Sourcemap

243:13634:8:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2168:98:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4265:166;;;;;;;;;;-1:-1:-1;4265:166:2;;;;;:::i;:::-;;:::i;:::-;;;4933:14:12;;4926:22;4908:41;;4896:2;4881:18;4265:166:2;4863:92:12;1694:125:10;;;;;;;;;;-1:-1:-1;1694:125:10;;;;;:::i;:::-;-1:-1:-1;;;;;1787:25:10;1764:4;1787:25;;;:17;:25;;;;;;;;;1694:125;952:282;;;;;;;;;;-1:-1:-1;952:282:10;;;;;:::i;:::-;;:::i;:::-;;1963:48:8;;;;;;;;;;-1:-1:-1;1963:48:8;;;;-1:-1:-1;;;1963:48:8;;;;;;1855:39;;;;;;;;;;-1:-1:-1;1855:39:8;;;;-1:-1:-1;;;;;1855:39:8;;;;;;-1:-1:-1;;;;;3933:32:12;;;3915:51;;3903:2;3888:18;1855:39:8;3870:102:12;3256:106:2;;;;;;;;;;-1:-1:-1;3343:12:2;;3256:106;;;13389:25:12;;;13377:2;13362:18;3256:106:2;13344:76:12;12337:185:8;;;;;;;;;;-1:-1:-1;12337:185:8;;;;;:::i;:::-;;:::i;4898:347:2:-;;;;;;;;;;-1:-1:-1;4898:347:2;;;;;:::i;:::-;;:::i;13135:184:8:-;;;;;;;;;;-1:-1:-1;13135:184:8;;;;;:::i;:::-;;:::i;830:31::-;;;;;;;;;;;;;;;;4028:90;;;;;;;;;;-1:-1:-1;4028:90:8;;4110:1;14803:36:12;;14791:2;14776:18;4028:90:8;14758:87:12;5640:215:2;;;;;;;;;;-1:-1:-1;5640:215:2;;;;;:::i;:::-;;:::i;12763:366:8:-;;;;;;;;;;-1:-1:-1;12763:366:8;;;;;:::i;:::-;;:::i;11145:150::-;;;;;;;;;;-1:-1:-1;11145:150:8;;;;;:::i;:::-;;:::i;10451:264::-;;;;;;;;;;-1:-1:-1;10451:264:8;;;;;:::i;:::-;;:::i;13325:178::-;;;;;;;;;;-1:-1:-1;13325:178:8;;;;;:::i;:::-;;:::i;1900:28::-;;;;;;;;;;-1:-1:-1;1900:28:8;;;;-1:-1:-1;;;;;1900:28:8;;;13546:151;;;;;;;;;;;;;:::i;11015:124::-;;;;;;;;;;-1:-1:-1;11015:124:8;;;;;:::i;:::-;-1:-1:-1;;;;;11105:27:8;11082:4;11105:27;;;:18;:27;;;;;;;;;11015:124;975:35;;;;;;;;;;;;;;;;697:27;;;;;;;;;;;;;;;;11454:625;;;;;;;;;;-1:-1:-1;11454:625:8;;;;;:::i;:::-;;:::i;3420:125:2:-;;;;;;;;;;-1:-1:-1;3420:125:2;;;;;:::i;:::-;-1:-1:-1;;;;;3520:18:2;3494:7;3520:18;;;;;;;;;;;;3420:125;1696:147:9;;;;;;;;;;;;;:::i;12085:246:8:-;;;;;;;;;;-1:-1:-1;12085:246:8;;;;;:::i;:::-;;:::i;523:58::-;;;;;;;;;;;;;;;;1073:77:9;;;;;;;;;;-1:-1:-1;1137:6:9;;-1:-1:-1;;;;;1137:6:9;1073:77;;2379:102:2;;;;;;;;;;;;;:::i;1494:37:8:-;;;;;;;;;;-1:-1:-1;1494:37:8;;;;-1:-1:-1;;;1494:37:8;;;;;;736:31;;;;;;;;;;;;;;;;9842:418;;;;;;;;;;;;;:::i;6342:266:2:-;;;;;;;;;;-1:-1:-1;6342:266:2;;;;;:::i;:::-;;:::i;3748:172::-;;;;;;;;;;-1:-1:-1;3748:172:2;;;;;:::i;:::-;;:::i;1829:121:10:-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;1350:40:8:-;;;;;;;;;;;;;;;;1244:440:10;;;;;;;;;;-1:-1:-1;1244:440:10;;;;;:::i;:::-;;:::i;12532:225:8:-;;;;;;;;;;-1:-1:-1;12532:225:8;;;;;:::i;:::-;;:::i;873:35::-;;;;;;;;;;;;;;;;1308:36;;;;;;;;;;;;;;;;10767:238;;;;;;;;;;-1:-1:-1;10767:238:8;;;;;:::i;:::-;;:::i;3978:149:2:-;;;;;;;;;;-1:-1:-1;3978:149:2;;;;;:::i;:::-;-1:-1:-1;;;;;4093:18:2;;;4067:7;4093:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3978:149;10266:179:8;;;;;;;;;;-1:-1:-1;10266:179:8;;;;;:::i;:::-;;:::i;11301:147::-;;;;;;;;;;-1:-1:-1;11301:147:8;;;;;:::i;:::-;;:::i;1992:276:9:-;;;;;;;;;;-1:-1:-1;1992:276:9;;;;;:::i;:::-;;:::i;13703:172:8:-;;;;;;;;;;;;;:::i;1627:45::-;;;;;;;;;;-1:-1:-1;1627:45:8;;;;;:::i;:::-;;;;;;;;;;;;;;;;1960:118:10;;;;;;;;;;;;;:::i;2168:98:2:-;2222:13;2254:5;2247:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2168:98;:::o;4265:166::-;4348:4;4364:39;169:10:1;4387:7:2;4396:6;4364:8;:39::i;:::-;-1:-1:-1;4420:4:2;4265:166;;;;;:::o;952:282:10:-;1277:6:9;;-1:-1:-1;;;;;1277:6:9;169:10:1;1277:22:9;1269:67;;;;-1:-1:-1;;;1269:67:9;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;1032:25:10;::::1;;::::0;;;:17:::1;:25;::::0;;;;;::::1;;1031:26;1023:79;;;::::0;-1:-1:-1;;;1023:79:10;;10668:2:12;1023:79:10::1;::::0;::::1;10650:21:12::0;10707:2;10687:18;;;10680:30;10746:34;10726:18;;;10719:62;-1:-1:-1;;;10797:18:12;;;10790:38;10845:19;;1023:79:10::1;10640:230:12::0;1023:79:10::1;1112:19;:32:::0;;::::1;::::0;;::::1;::::0;;;;::::1;::::0;;-1:-1:-1;;;;;;1112:32:10::1;-1:-1:-1::0;;;;;1112:32:10;::::1;::::0;;::::1;::::0;;;-1:-1:-1;1154:25:10;;;:17:::1;1112:32;1154:25:::0;;;;;;;;:32;;-1:-1:-1;;1154:32:10::1;::::0;;::::1;::::0;;;1201:26;3915:51:12;;;1201:26:10::1;::::0;3888:18:12;1201:26:10::1;;;;;;;;952:282:::0;:::o;12337:185:8:-;1277:6:9;;-1:-1:-1;;;;;1277:6:9;169:10:1;1277:22:9;1269:67;;;;-1:-1:-1;;;1269:67:9;;;;;;;:::i;:::-;12438:17:8::1;:32:::0;;-1:-1:-1;;;;;;12438:32:8::1;-1:-1:-1::0;;;;;12438:32:8;::::1;::::0;;::::1;::::0;;;12485:30:::1;::::0;3915:51:12;;;12485:30:8::1;::::0;3903:2:12;3888:18;12485:30:8::1;3870:102:12::0;4898:347:2;5034:4;5050:36;5060:6;5068:9;5079:6;5050:9;:36::i;:::-;5096:121;5105:6;169:10:1;5127:89:2;5165:6;5127:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;5127:19:2;;;;;;:11;:19;;;;;;;;169:10:1;5127:33:2;;;;;;;;;;:37;:89::i;:::-;5096:8;:121::i;:::-;-1:-1:-1;5234:4:2;4898:347;;;;;:::o;13135:184:8:-;1277:6:9;;-1:-1:-1;;;;;1277:6:9;169:10:1;1277:22:9;1269:67;;;;-1:-1:-1;;;1269:67:9;;;;;;;:::i;:::-;13220:29:8::1;:39:::0;;;::::1;;-1:-1:-1::0;;;13220:39:8::1;-1:-1:-1::0;;;;13220:39:8;;::::1;;::::0;;13274:38:::1;::::0;::::1;::::0;::::1;::::0;13252:7;4933:14:12;4926:22;4908:41;;4896:2;4881:18;;4863:92;5640:215:2;169:10:1;5728:4:2;5776:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;5776:34:2;;;;;;;;;;5728:4;;5744:83;;5767:7;;5776:50;;5815:10;5776:38;:50::i;12763:366:8:-;1277:6:9;;-1:-1:-1;;;;;1277:6:9;169:10:1;1277:22:9;1269:67;;;;-1:-1:-1;;;1269:67:9;;;;;;;:::i;:::-;12837:34:8::1;12891:9;12837:64;;12945:17;-1:-1:-1::0;;;;;12945:25:8::1;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;12927:70:8::1;;13006:4;13013:17;-1:-1:-1::0;;;;;13013:22:8::1;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;12927:111;::::0;-1:-1:-1;;;;;;12927:111:8::1;::::0;;;;;;-1:-1:-1;;;;;4423:15:12;;;12927:111:8::1;::::0;::::1;4405:34:12::0;4475:15;;4455:18;;;4448:43;4340:18;;12927:111:8::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;12911:13;:127:::0;;-1:-1:-1;;;;;;12911:127:8;;::::1;-1:-1:-1::0;;;;;12911:127:8;;::::1;;::::0;;;13048:15:::1;:35:::0;;;;::::1;::::0;;::::1;;::::0;;13098:24:::1;::::0;3933:32:12;;;3915:51;;13098:24:8::1;::::0;3903:2:12;3888:18;13098:24:8::1;;;;;;;1346:1:9;12763:366:8::0;:::o;11145:150::-;1277:6:9;;-1:-1:-1;;;;;1277:6:9;169:10:1;1277:22:9;1269:67;;;;-1:-1:-1;;;1269:67:9;;;;;;;:::i;:::-;-1:-1:-1;;;;;11215:27:8;::::1;;::::0;;;:18:::1;:27;::::0;;;;;;;;:34;;-1:-1:-1;;11215:34:8::1;11245:4;11215:34;::::0;;11264:24;;3915:51:12;;;11264:24:8::1;::::0;3888:18:12;11264:24:8::1;3870:102:12::0;10451:264:8;1277:6:9;;-1:-1:-1;;;;;1277:6:9;169:10:1;1277:22:9;1269:67;;;;-1:-1:-1;;;1269:67:9;;;;;;;:::i;:::-;10537:5:8::1;10533:136;;;10584:17;;10566:15;:35;10558:100;;;::::0;-1:-1:-1;;;10558:100:8;;9141:2:12;10558:100:8::1;::::0;::::1;9123:21:12::0;9180:2;9160:18;;;9153:30;9219:34;9199:18;;;9192:62;-1:-1:-1;;;9270:18:12;;;9263:50;9330:19;;10558:100:8::1;9113:242:12::0;10558:100:8::1;-1:-1:-1::0;;;;;10678:22:8;;;::::1;;::::0;;;:13:::1;:22;::::0;;;;:30;;-1:-1:-1;;10678:30:8::1;::::0;::::1;;::::0;;;::::1;::::0;;10451:264::o;13325:178::-;1277:6:9;;-1:-1:-1;;;;;1277:6:9;169:10:1;1277:22:9;1269:67;;;;-1:-1:-1;;;1269:67:9;;;;;;;:::i;:::-;13427:17:8::1;:9:::0;13439:5:::1;13427:17;:::i;:::-;13405:19;:39:::0;13459:37:::1;::::0;13389:25:12;;;13459:37:8::1;::::0;13377:2:12;13362:18;13459:37:8::1;13344:76:12::0;13546:151:8;1277:6:9;;-1:-1:-1;;;;;1277:6:9;169:10:1;1277:22:9;1269:67;;;;-1:-1:-1;;;1269:67:9;;;;;;;:::i;:::-;13641:4:8::1;13597:23;3520:18:2::0;;;;;;;;;;;13657:33:8::1;3520:18:2::0;13657:16:8::1;:33::i;:::-;1346:1:9;13546:151:8:o:0;11454:625::-;1277:6:9;;-1:-1:-1;;;;;1277:6:9;169:10:1;1277:22:9;1269:67;;;;-1:-1:-1;;;1269:67:9;;;;;;;:::i;:::-;11664:4:8::1;11651:9;:17;;:54;;;;;11701:4;11684:13;:21;;11651:54;:91;;;;;11738:4;11721:13;:21;;11651:91;:132;;;;;11779:4;11758:17;:25;;11651:132;11630:212;;;::::0;-1:-1:-1;;;11630:212:8;;8739:2:12;11630:212:8::1;::::0;::::1;8721:21:12::0;8778:2;8758:18;;;8751:30;8817:34;8797:18;;;8790:62;-1:-1:-1;;;8868:18:12;;;8861:31;8909:19;;11630:212:8::1;8711:223:12::0;11630:212:8::1;11852:6;:18:::0;;;11880:10:::1;:26:::0;;;11916:10:::1;:26:::0;;;11952:14:::1;:34:::0;;;12001:71:::1;::::0;;14496:25:12;;;14552:2;14537:18;;14530:34;;;14580:18;;;14573:34;;;14638:2;14623:18;;14616:34;;;12001:71:8::1;::::0;14483:3:12;14468:19;12001:71:8::1;;;;;;;11454:625:::0;;;;:::o;1696:147:9:-;1277:6;;-1:-1:-1;;;;;1277:6:9;169:10:1;1277:22:9;1269:67;;;;-1:-1:-1;;;1269:67:9;;;;;;;:::i;:::-;1788:6:::1;::::0;1767:40:::1;::::0;1804:1:::1;::::0;-1:-1:-1;;;;;1788:6:9::1;::::0;1767:40:::1;::::0;1804:1;;1767:40:::1;1817:6;:19:::0;;-1:-1:-1;;;;;;1817:19:9::1;::::0;;1696:147::o;12085:246:8:-;1277:6:9;;-1:-1:-1;;;;;1277:6:9;169:10:1;1277:22:9;1269:67;;;;-1:-1:-1;;;1269:67:9;;;;;;;:::i;:::-;12194:4:8::1;12174:16;:24;;12166:67;;;::::0;-1:-1:-1;;;12166:67:8;;7216:2:12;12166:67:8::1;::::0;::::1;7198:21:12::0;7255:2;7235:18;;;7228:30;7294:32;7274:18;;;7267:60;7344:18;;12166:67:8::1;7188:180:12::0;12166:67:8::1;12243:13;:32:::0;;;12290:34:::1;::::0;13389:25:12;;;12290:34:8::1;::::0;13377:2:12;13362:18;12290:34:8::1;13344:76:12::0;2379:102:2;2435:13;2467:7;2460:14;;;;;:::i;9842:418:8:-;1277:6:9;;-1:-1:-1;;;;;1277:6:9;169:10:1;1277:22:9;1269:67;;;;-1:-1:-1;;;1269:67:9;;;;;;;:::i;:::-;9908:17:8::1;::::0;-1:-1:-1;;;9908:17:8;::::1;;;9907:18;9899:58;;;::::0;-1:-1:-1;;;9899:58:8;;11438:2:12;9899:58:8::1;::::0;::::1;11420:21:12::0;11477:2;11457:18;;;11450:30;11516:29;11496:18;;;11489:57;11563:18;;9899:58:8::1;11410:177:12::0;9899:58:8::1;9996:17;:24:::0;;-1:-1:-1;;;;9996:24:8::1;-1:-1:-1::0;;;9996:24:8::1;::::0;;10122:25:::1;:15;10140:7;10122:25;:::i;:::-;10102:17;:45:::0;10229:24:::1;:15;10247:6;10229:24;:::i;:::-;10205:21;:48:::0;9842:418::o;6342:266:2:-;6435:4;6451:129;169:10:1;6474:7:2;6483:96;6522:15;6483:96;;;;;;;;;;;;;;;;;169:10:1;6483:25:2;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;6483:34:2;;;;;;;;;;;;:38;:96::i;3748:172::-;3834:4;3850:42;169:10:1;3874:9:2;3885:6;3850:9;:42::i;1829:121:10:-;1889:16;1924:19;1917:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1917:26:10;;;;;;;;;;;;;;;;;;;;;;1829:121;:::o;1244:440::-;1277:6:9;;-1:-1:-1;;;;;1277:6:9;169:10:1;1277:22:9;1269:67;;;;-1:-1:-1;;;1269:67:9;;;;;;;:::i;:::-;-1:-1:-1;;;;;1323:25:10;::::1;;::::0;;;:17:::1;:25;::::0;;;;;::::1;;1315:74;;;::::0;-1:-1:-1;;;1315:74:10;;8334:2:12;1315:74:10::1;::::0;::::1;8316:21:12::0;8373:2;8353:18;;;8346:30;8412:34;8392:18;;;8385:62;-1:-1:-1;;;8463:18:12;;;8456:34;8507:19;;1315:74:10::1;8306:226:12::0;1315:74:10::1;1404:6;1399:240;1420:19;:26:::0;1416:30;::::1;1399:240;;;1497:6;-1:-1:-1::0;;;;;1471:32:10::1;:19;1491:1;1471:22;;;;;;-1:-1:-1::0;;;1471:22:10::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;1471:22:10::1;:32;1467:162;;;-1:-1:-1::0;;;;;1523:25:10;::::1;1551:5;1523:25:::0;;;:17:::1;:25;::::0;;;;:33;;-1:-1:-1;;1523:33:10::1;::::0;;1574:17:::1;1589:1:::0;1574:14:::1;:17::i;:::-;1609:5;;1467:162;1448:3:::0;::::1;::::0;::::1;:::i;:::-;;;;1399:240;;;-1:-1:-1::0;1653:24:10::1;::::0;-1:-1:-1;;;;;3933:32:12;;3915:51;;1653:24:10::1;::::0;3903:2:12;3888:18;1653:24:10::1;3870:102:12::0;12532:225:8;1277:6:9;;-1:-1:-1;;;;;1277:6:9;169:10:1;1277:22:9;1269:67;;;;-1:-1:-1;;;1269:67:9;;;;;;;:::i;:::-;12643:15:8::1;:52:::0;;-1:-1:-1;;;;;;12643:52:8::1;-1:-1:-1::0;;;;;12643:52:8;::::1;::::0;;::::1;::::0;;;12710:40:::1;::::0;3915:51:12;;;12710:40:8::1;::::0;3903:2:12;3888:18;12710:40:8::1;3870:102:12::0;10767:238:8;1277:6:9;;-1:-1:-1;;;;;1277:6:9;169:10:1;1277:22:9;1269:67;;;;-1:-1:-1;;;1269:67:9;;;;;;;:::i;:::-;10859:1:8::1;10847:8;:13;;10839:53;;;::::0;-1:-1:-1;;;10839:53:8;;9910:2:12;10839:53:8::1;::::0;::::1;9892:21:12::0;9949:2;9929:18;;;9922:30;9988:29;9968:18;;;9961:57;10035:18;;10839:53:8::1;9882:177:12::0;10839:53:8::1;10916:36;10947:4;10916:26;491:25;10933:8:::0;10916:16:::1;:26::i;:::-;:30:::0;::::1;:36::i;:::-;10902:11;:50:::0;;;10967:31:::1;::::0;13389:25:12;;;10967:31:8::1;::::0;13377:2:12;13362:18;10967:31:8::1;13344:76:12::0;10266:179:8;1277:6:9;;-1:-1:-1;;;;;1277:6:9;169:10:1;1277:22:9;1269:67;;;;-1:-1:-1;;;1269:67:9;;;;;;;:::i;:::-;10348:18:8::1;:36:::0;;;::::1;;-1:-1:-1::0;;;10348:36:8::1;-1:-1:-1::0;;;;10348:36:8;;::::1;;::::0;;10399:39:::1;::::0;::::1;::::0;::::1;::::0;10369:15;4933:14:12;4926:22;4908:41;;4896:2;4881:18;;4863:92;11301:147:8;1277:6:9;;-1:-1:-1;;;;;1277:6:9;169:10:1;1277:22:9;1269:67;;;;-1:-1:-1;;;1269:67:9;;;;;;;:::i;:::-;-1:-1:-1;;;;;11369:27:8;::::1;11399:5;11369:27:::0;;;:18:::1;:27;::::0;;;;;;;;:35;;-1:-1:-1;;11369:35:8::1;::::0;;11419:22;;3915:51:12;;;11419:22:8::1;::::0;3888:18:12;11419:22:8::1;3870:102:12::0;1992:276:9;1277:6;;-1:-1:-1;;;;;1277:6:9;169:10:1;1277:22:9;1269:67;;;;-1:-1:-1;;;1269:67:9;;;;;;;:::i;:::-;-1:-1:-1;;;;;2095:22:9;::::1;2074:107;;;::::0;-1:-1:-1;;;2074:107:9;;6406:2:12;2074:107:9::1;::::0;::::1;6388:21:12::0;6445:2;6425:18;;;6418:30;6484:34;6464:18;;;6457:62;-1:-1:-1;;;6535:18:12;;;6528:36;6581:19;;2074:107:9::1;6378:228:12::0;2074:107:9::1;2217:6;::::0;2196:38:::1;::::0;-1:-1:-1;;;;;2196:38:9;;::::1;::::0;2217:6:::1;::::0;2196:38:::1;::::0;2217:6:::1;::::0;2196:38:::1;2244:6;:17:::0;;-1:-1:-1;;;;;;2244:17:9::1;-1:-1:-1::0;;;;;2244:17:9;;;::::1;::::0;;;::::1;::::0;;1992:276::o;13703:172:8:-;1277:6:9;;-1:-1:-1;;;;;1277:6:9;169:10:1;1277:22:9;1269:67;;;;-1:-1:-1;;;1269:67:9;;;;;;;:::i;:::-;13830:17:8::1;::::0;13783:21:::1;::::0;13814:54:::1;::::0;-1:-1:-1;;;;;13830:17:8::1;13783:21:::0;13814:15:::1;:54::i;1960:118:10:-:0;2009:7;2050:21;:19;:21::i;:::-;2035:12;;:36;;;;:::i;:::-;2028:43;;1960:118;:::o;2211:459:11:-;2269:7;2510:6;2506:45;;-1:-1:-1;2539:1:11;2532:8;;2506:45;2561:9;2573:5;2577:1;2573;:5;:::i;:::-;2561:17;-1:-1:-1;2605:1:11;2596:5;2600:1;2561:17;2596:5;:::i;:::-;:10;2588:56;;;;-1:-1:-1;;;2588:56:11;;10266:2:12;2588:56:11;;;10248:21:12;10305:2;10285:18;;;10278:30;10344:34;10324:18;;;10317:62;-1:-1:-1;;;10395:18:12;;;10388:31;10436:19;;2588:56:11;10238:223:12;2588:56:11;2662:1;2211:459;-1:-1:-1;;;2211:459:11:o;3132:130::-;3190:7;3216:39;3220:1;3223;3216:39;;;;;;;;;;;;;;;;;:3;:39::i;875:176::-;933:7;;964:5;968:1;964;:5;:::i;:::-;952:17;;992:1;987;:6;;979:46;;;;-1:-1:-1;;;979:46:11;;7575:2:12;979:46:11;;;7557:21:12;7614:2;7594:18;;;7587:30;7653:29;7633:18;;;7626:57;7700:18;;979:46:11;7547:177:12;9441:370:2;-1:-1:-1;;;;;9572:19:2;;9564:68;;;;-1:-1:-1;;;9564:68:2;;12200:2:12;9564:68:2;;;12182:21:12;12239:2;12219:18;;;12212:30;12278:34;12258:18;;;12251:62;-1:-1:-1;;;12329:18:12;;;12322:34;12373:19;;9564:68:2;12172:226:12;9564:68:2;-1:-1:-1;;;;;9650:21:2;;9642:68;;;;-1:-1:-1;;;9642:68:2;;6813:2:12;9642:68:2;;;6795:21:12;6852:2;6832:18;;;6825:30;6891:34;6871:18;;;6864:62;-1:-1:-1;;;6942:18:12;;;6935:32;6984:19;;9642:68:2;6785:224:12;9642:68:2;-1:-1:-1;;;;;9721:18:2;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;9772:32;;13389:25:12;;;9772:32:2;;13362:18:12;9772:32:2;;;;;;;;9441:370;;;:::o;4124:2198:8:-;4289:17;;-1:-1:-1;;;4289:17:8;;;;;:44;;-1:-1:-1;1137:6:9;;-1:-1:-1;;;;;1137:6:9;169:10:1;4310:23:8;4289:44;4281:120;;;;-1:-1:-1;;;4281:120:8;;12605:2:12;4281:120:8;;;12587:21:12;12644:2;12624:18;;;12617:30;12683:34;12663:18;;;12656:62;12754:33;12734:18;;;12727:61;12805:19;;4281:120:8;12577:253:12;4281:120:8;-1:-1:-1;;;;;4455:19:8;;;;;;:13;:19;;;;;;;;4454:20;:42;;;;-1:-1:-1;;;;;;4479:17:8;;;;;;:13;:17;;;;;;;;4478:18;4454:42;4433:108;;;;-1:-1:-1;;;4433:108:8;;9562:2:12;4433:108:8;;;9544:21:12;9601:2;9581:18;;;9574:30;-1:-1:-1;;;9620:18:12;;;9613:49;9679:18;;4433:108:8;9534:169:12;4433:108:8;4591:18;;-1:-1:-1;;;4591:18:8;;;;4587:102;;;4625:33;4641:4;4647:2;4651:6;4625:15;:33::i;:::-;4124:2198;;;:::o;4587:102::-;-1:-1:-1;;;;;4717:26:8;;;;;;:20;:26;;;;;;;;4716:27;:68;;;;-1:-1:-1;;;;;;4760:24:8;;;;;;:20;:24;;;;;;;;4759:25;4716:68;4699:260;;;4864:11;;4854:6;:21;;4829:119;;;;-1:-1:-1;;;4829:119:8;;13037:2:12;4829:119:8;;;13019:21:12;13076:2;13056:18;;;13049:30;13115:34;13095:18;;;13088:62;-1:-1:-1;;;13166:18:12;;;13159:37;13213:19;;4829:119:8;13009:229:12;4829:119:8;5015:10;;5056:6;;5082:13;;-1:-1:-1;;;;;5076:19:8;;;5082:13;;5076:19;5072:237;;;5120:10;;5111:6;:19;5157:14;;5144:10;:27;5190:21;;5215:15;-1:-1:-1;5186:113:8;;5270:13;;5259:6;;:25;;:10;:25::i;:::-;5250:6;:34;5186:113;5397:4;5348:28;3520:18:2;;;;;;;;;;;5464:19:8;;5440:43;;;;;;;5510:53;;-1:-1:-1;5546:17:8;;-1:-1:-1;;;5546:17:8;;;;5545:18;5510:53;:90;;;;-1:-1:-1;5587:13:8;;-1:-1:-1;;;;;5579:21:8;;;5587:13;;5579:21;;5510:90;:135;;;;-1:-1:-1;5616:29:8;;-1:-1:-1;;;5616:29:8;;;;5510:135;5493:259;;;5697:44;5720:20;5697:22;:44::i;:::-;-1:-1:-1;;;;;5766:24:8;;;;;;:18;:24;;;;;;;;;:50;;-1:-1:-1;;;;;;5794:22:8;;;;;;:18;:22;;;;;;;;5766:50;5762:95;;;5832:14;:12;:14::i;:::-;5868:23;5893:12;5909:18;5920:6;5909:10;:18::i;:::-;-1:-1:-1;;;;;5955:15:8;;:9;:15;;;;;;;;;;;5867:60;;-1:-1:-1;5867:60:8;-1:-1:-1;5955:27:8;;5975:6;5955:19;:27::i;:::-;-1:-1:-1;;;;;5937:15:8;;;:9;:15;;;;;;;;;;;:45;;;;6008:13;;;;;;;:34;;6026:15;6008:17;:34::i;:::-;-1:-1:-1;;;;;5992:13:8;;:9;:13;;;;;;;;;;:50;6053:14;6062:4;6053:8;:14::i;:::-;-1:-1:-1;;;;;6082:24:8;;;;;;:18;:24;;;;;;;;;:50;;-1:-1:-1;;;;;;6110:22:8;;;;;;:18;:22;;;;;;;;6082:50;6078:96;;;6148:15;7390:20;;7376:11;:34;7429:15;;7420:6;:24;7467:19;;7454:10;:32;7333:160;6148:15;6208:6;:19;;;6237:10;:27;;;6280:35;;13389:25:12;;;-1:-1:-1;;;;;6280:35:8;;;;;;;;;;13377:2:12;13362:18;6280:35:8;;;;;;;4124:2198;;;;;;;;;:::o;1747:217:11:-;1863:7;1898:12;1890:6;;;;1882:29;;;;-1:-1:-1;;;1882:29:11;;;;;;;;:::i;:::-;-1:-1:-1;1921:9:11;1933:5;1937:1;1933;:5;:::i;:::-;1921:17;1747:217;-1:-1:-1;;;;;1747:217:11:o;9263:573:8:-;9411:16;;;9425:1;9411:16;;;;;;;;9387:21;;9411:16;;;;;;;;;;-1:-1:-1;9411:16:8;9387:40;;9455:4;9437;9442:1;9437:7;;;;;;-1:-1:-1;;;9437:7:8;;;;;;;;;-1:-1:-1;;;;;9437:23:8;;;:7;;;;;;;;;;:23;;;;9480:15;;:22;;;-1:-1:-1;;;9480:22:8;;;;:15;;;;;:20;;:22;;;;;9437:7;;9480:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;9470:4;9475:1;9470:7;;;;;;-1:-1:-1;;;9470:7:8;;;;;;;;;-1:-1:-1;;;;;9470:32:8;;;:7;;;;;;;;;:32;9545:15;;9513:62;;9530:4;;9545:15;9563:11;9513:8;:62::i;:::-;9611:15;;:218;;-1:-1:-1;;;9611:218:8;;-1:-1:-1;;;;;9611:15:8;;;;:66;;:218;;9691:11;;9611:15;;9759:4;;9785;;9804:15;;9611:218;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9263:573;;:::o;367:268:10:-;438:19;:26;430:34;;422:81;;;;-1:-1:-1;;;422:81:10;;7931:2:12;422:81:10;;;7913:21:12;7970:2;7950:18;;;7943:30;8009:34;7989:18;;;7982:62;-1:-1:-1;;;8060:18:12;;;8053:32;8102:19;;422:81:10;7903:224:12;422:81:10;542:19;562:26;;:30;;591:1;;562:30;:::i;:::-;542:51;;;;;;-1:-1:-1;;;542:51:10;;;;;;;;;;;;;;;;;;;513:19;:26;;-1:-1:-1;;;;;542:51:10;;;;533:5;;513:26;;;;-1:-1:-1;;;513:26:10;;;;;;;;;;;;;;;;;:80;;;;;-1:-1:-1;;;;;513:80:10;;;;;-1:-1:-1;;;;;513:80:10;;;;;;603:19;:25;;;;;-1:-1:-1;;;603:25:10;;;;;;;;;;;;;;;;;;-1:-1:-1;;603:25:10;;;;;-1:-1:-1;;;;;;603:25:10;;;;;;-1:-1:-1;367:268:10:o;9103:154:8:-;9182:10;;9178:73;;9208:32;;-1:-1:-1;;;;;9208:24:8;;;:32;;;;;9233:6;;9208:32;;;;9233:6;9208:24;:32;;;;;;;;;;;;;;;;;;;9178:73;9103:154;;:::o;645:297:10:-;699:7;;;761:137;782:19;:26;778:30;;761:137;;;854:33;864:19;884:1;864:22;;;;;;-1:-1:-1;;;864:22:10;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;864:22:10;3520:18:2;;;;;;;;;;3420:125;854:33:10;829:58;;;;:::i;:::-;;-1:-1:-1;810:3:10;;;;:::i;:::-;;;;761:137;;;-1:-1:-1;914:21:10;645:297;-1:-1:-1;645:297:10:o;3744:302:11:-;3860:7;3894:12;3887:5;3879:28;;;;-1:-1:-1;;;3879:28:11;;;;;;;;:::i;:::-;-1:-1:-1;3917:9:11;3929:5;3933:1;3929;:5;:::i;7082:560:2:-;-1:-1:-1;;;;;7217:20:2;;7209:70;;;;-1:-1:-1;;;7209:70:2;;11794:2:12;7209:70:2;;;11776:21:12;11833:2;11813:18;;;11806:30;11872:34;11852:18;;;11845:62;-1:-1:-1;;;11923:18:12;;;11916:35;11968:19;;7209:70:2;11766:227:12;7209:70:2;-1:-1:-1;;;;;7297:23:2;;7289:71;;;;-1:-1:-1;;;7289:71:2;;6002:2:12;7289:71:2;;;5984:21:12;6041:2;6021:18;;;6014:30;6080:34;6060:18;;;6053:62;-1:-1:-1;;;6131:18:12;;;6124:33;6174:19;;7289:71:2;5974:225:12;7289:71:2;7449;7471:6;7449:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7449:17:2;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;7429:17:2;;;:9;:17;;;;;;;;;;;:91;;;;7553:20;;;;;;;:32;;7578:6;7553:24;:32::i;:::-;-1:-1:-1;;;;;7530:20:2;;;:9;:20;;;;;;;;;;;;:55;;;;7600:35;13389:25:12;;;7530:20:2;;7600:35;;;;;;13362:18:12;7600:35:2;13344:76:12;7499:1598:8;2934:17;:24;;-1:-1:-1;;;;2934:24:8;-1:-1:-1;;;2934:24:8;;;7665:11:::1;::::0;7649:10:::1;::::0;7638:6:::1;::::0;2934:24;;7638:39:::1;::::0;7665:11;;7638:22:::1;::::0;:10:::1;:22::i;:::-;:26:::0;::::1;:39::i;:::-;7611:66:::0;-1:-1:-1;7691:21:8;7687:34:::1;;7714:7;;;7687:34;8020:21;8083:38;8100:20:::0;8083:16:::1;:38::i;:::-;8132:18;8153:41;:21;8179:14:::0;8153:25:::1;:41::i;:::-;8132:62:::0;-1:-1:-1;8209:14:8;;8205:886:::1;;8278:23;8304:49;8336:16;8304:27;8319:11;;8304:10;:14;;:27;;;;:::i;:49::-;8383:22;::::0;8278:75;;-1:-1:-1;8367:56:8::1;::::0;-1:-1:-1;;;;;8383:22:8::1;8278:75:::0;8367:15:::1;:56::i;:::-;8506:22;8531:48;8562:16;8531:26;8546:10;;8531;:14;;:26;;;;:::i;:48::-;8506:73;;8614:1;8597:14;:18;:60;;;;-1:-1:-1::0;8627:15:8::1;::::0;-1:-1:-1;;;;;8627:15:8::1;8619:38:::0;::::1;8597:60;8593:194;;;8681:15;::::0;:80:::1;::::0;-1:-1:-1;;;8681:80:8;;444:1:::1;8681:80;::::0;::::1;13389:25:12::0;-1:-1:-1;;;;;8681:15:8;;::::1;::::0;:29:::1;::::0;8718:14;;13362:18:12;;8681:80:8::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;8677:96:::0;::::1;8877:18;8898:44;8925:16;8898:22;8913:6;;8898:10;:14;;:22;;;;:::i;:44::-;8972:17;::::0;8877:65;;-1:-1:-1;8956:46:8::1;::::0;-1:-1:-1;;;;;8972:17:8::1;8877:65:::0;8956:15:::1;:46::i;:::-;9022:58;::::0;;14186:25:12;;;14242:2;14227:18;;14220:34;;;9022:58:8::1;::::0;14159:18:12;9022:58:8::1;;;;;;;8205:886;;;;2968:1;;;;-1:-1:-1::0;2979:17:8;:25;;-1:-1:-1;;;;2979:25:8;;;7499:1598::o;7025:302::-;7071:6;;:11;:30;;;;-1:-1:-1;7086:10:8;;:15;7071:30;:50;;;;-1:-1:-1;7105:11:8;;:16;7071:50;7067:63;;;7025:302::o;7067:63::-;7163:11;;;7140:20;:34;7202:6;;;7184:15;:24;7240:10;;;7218:19;:32;-1:-1:-1;7261:15:8;;;;7286:10;;;;7306:14;7025:302::o;6418:251::-;6501:7;6510;6533:12;6548:21;6561:7;6548:12;:21::i;:::-;6533:36;-1:-1:-1;6579:23:8;6605:17;:7;6533:36;6605:11;:17::i;:::-;6579:43;6657:4;;-1:-1:-1;6418:251:8;;-1:-1:-1;;;6418:251:8:o;1322:134:11:-;1380:7;1406:43;1410:1;1413;1406:43;;;;;;;;;;;;;;;;;:3;:43::i;6675:116:8:-;6769:4;6751:9;:24;;;;;;;;;;;:33;;6780:3;6751:28;:33::i;:::-;6742:4;6724:9;:24;;;;;;;;;;:60;-1:-1:-1;6675:116:8:o;6797:222::-;6882:7;6905:16;6924:39;6951:11;;6924:22;6935:10;;6924:6;;:10;;:22;;;;:::i;:39::-;6905:58;-1:-1:-1;6980:32:8;7006:5;6980:21;:7;6905:58;6980:11;:21::i;14:160:12:-;79:20;;135:13;;128:21;118:32;;108:2;;164:1;161;154:12;108:2;60:114;;;:::o;179:257::-;238:6;291:2;279:9;270:7;266:23;262:32;259:2;;;312:6;304;297:22;259:2;356:9;343:23;375:31;400:5;375:31;:::i;441:261::-;511:6;564:2;552:9;543:7;539:23;535:32;532:2;;;585:6;577;570:22;532:2;622:9;616:16;641:31;666:5;641:31;:::i;977:398::-;1045:6;1053;1106:2;1094:9;1085:7;1081:23;1077:32;1074:2;;;1127:6;1119;1112:22;1074:2;1171:9;1158:23;1190:31;1215:5;1190:31;:::i;:::-;1240:5;-1:-1:-1;1297:2:12;1282:18;;1269:32;1310:33;1269:32;1310:33;:::i;:::-;1362:7;1352:17;;;1064:311;;;;;:::o;1380:466::-;1457:6;1465;1473;1526:2;1514:9;1505:7;1501:23;1497:32;1494:2;;;1547:6;1539;1532:22;1494:2;1591:9;1578:23;1610:31;1635:5;1610:31;:::i;:::-;1660:5;-1:-1:-1;1717:2:12;1702:18;;1689:32;1730:33;1689:32;1730:33;:::i;:::-;1484:362;;1782:7;;-1:-1:-1;;;1836:2:12;1821:18;;;;1808:32;;1484:362::o;1851:325::-;1916:6;1924;1977:2;1965:9;1956:7;1952:23;1948:32;1945:2;;;1998:6;1990;1983:22;1945:2;2042:9;2029:23;2061:31;2086:5;2061:31;:::i;:::-;2111:5;-1:-1:-1;2135:35:12;2166:2;2151:18;;2135:35;:::i;:::-;2125:45;;1935:241;;;;;:::o;2181:325::-;2249:6;2257;2310:2;2298:9;2289:7;2285:23;2281:32;2278:2;;;2331:6;2323;2316:22;2278:2;2375:9;2362:23;2394:31;2419:5;2394:31;:::i;:::-;2444:5;2496:2;2481:18;;;;2468:32;;-1:-1:-1;;;2268:238:12:o;2511:190::-;2567:6;2620:2;2608:9;2599:7;2595:23;2591:32;2588:2;;;2641:6;2633;2626:22;2588:2;2669:26;2685:9;2669:26;:::i;2706:190::-;2765:6;2818:2;2806:9;2797:7;2793:23;2789:32;2786:2;;;2839:6;2831;2824:22;2786:2;-1:-1:-1;2867:23:12;;2776:120;-1:-1:-1;2776:120:12:o;2901:395::-;2987:6;2995;3003;3011;3064:3;3052:9;3043:7;3039:23;3035:33;3032:2;;;3086:6;3078;3071:22;3032:2;-1:-1:-1;;3114:23:12;;;3184:2;3169:18;;3156:32;;-1:-1:-1;3235:2:12;3220:18;;3207:32;;3286:2;3271:18;3258:32;;-1:-1:-1;3022:274:12;-1:-1:-1;3022:274:12:o;3301:463::-;3354:3;3392:5;3386:12;3419:6;3414:3;3407:19;3445:4;3474:2;3469:3;3465:12;3458:19;;3511:2;3504:5;3500:14;3532:3;3544:195;3558:6;3555:1;3552:13;3544:195;;;3623:13;;-1:-1:-1;;;;;3619:39:12;3607:52;;3679:12;;;;3714:15;;;;3655:1;3573:9;3544:195;;;-1:-1:-1;3755:3:12;;3362:402;-1:-1:-1;;;;;3362:402:12:o;4502:261::-;4681:2;4670:9;4663:21;4644:4;4701:56;4753:2;4742:9;4738:18;4730:6;4701:56;:::i;5192:603::-;5304:4;5333:2;5362;5351:9;5344:21;5394:6;5388:13;5437:6;5432:2;5421:9;5417:18;5410:34;5462:4;5475:140;5489:6;5486:1;5483:13;5475:140;;;5584:14;;;5580:23;;5574:30;5550:17;;;5569:2;5546:26;5539:66;5504:10;;5475:140;;;5633:6;5630:1;5627:13;5624:2;;;5703:4;5698:2;5689:6;5678:9;5674:22;5670:31;5663:45;5624:2;-1:-1:-1;5779:2:12;5758:15;-1:-1:-1;;5754:29:12;5739:45;;;;5786:2;5735:54;;5313:482;-1:-1:-1;;;5313:482:12:o;10875:356::-;11077:2;11059:21;;;11096:18;;;11089:30;11155:34;11150:2;11135:18;;11128:62;11222:2;11207:18;;11049:182::o;13425:582::-;13724:6;13713:9;13706:25;13767:6;13762:2;13751:9;13747:18;13740:34;13810:3;13805:2;13794:9;13790:18;13783:31;13687:4;13831:57;13883:3;13872:9;13868:19;13860:6;13831:57;:::i;:::-;-1:-1:-1;;;;;13924:32:12;;;;13919:2;13904:18;;13897:60;-1:-1:-1;13988:3:12;13973:19;13966:35;13823:65;13696:311;-1:-1:-1;;;13696:311:12:o;14850:128::-;14890:3;14921:1;14917:6;14914:1;14911:13;14908:2;;;14927:18;;:::i;:::-;-1:-1:-1;14963:9:12;;14898:80::o;14983:217::-;15023:1;15049;15039:2;;-1:-1:-1;;;15074:31:12;;15128:4;15125:1;15118:15;15156:4;15081:1;15146:15;15039:2;-1:-1:-1;15185:9:12;;15029:171::o;15205:168::-;15245:7;15311:1;15307;15303:6;15299:14;15296:1;15293:21;15288:1;15281:9;15274:17;15270:45;15267:2;;;15318:18;;:::i;:::-;-1:-1:-1;15358:9:12;;15257:116::o;15378:125::-;15418:4;15446:1;15443;15440:8;15437:2;;;15451:18;;:::i;:::-;-1:-1:-1;15488:9:12;;15427:76::o;15508:380::-;15587:1;15583:12;;;;15630;;;15651:2;;15705:4;15697:6;15693:17;15683:27;;15651:2;15758;15750:6;15747:14;15727:18;15724:38;15721:2;;;15804:10;15799:3;15795:20;15792:1;15785:31;15839:4;15836:1;15829:15;15867:4;15864:1;15857:15;15893:135;15932:3;-1:-1:-1;;15953:17:12;;15950:2;;;15973:18;;:::i;:::-;-1:-1:-1;16020:1:12;16009:13;;15940:88::o;16033:127::-;16094:10;16089:3;16085:20;16082:1;16075:31;16125:4;16122:1;16115:15;16149:4;16146:1;16139:15;16165:131;-1:-1:-1;;;;;16240:31:12;;16230:42;;16220:2;;16286:1;16283;16276:12

Swarm Source

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