ETH Price: $3,388.01 (+4.30%)
Gas: 2 Gwei

Token

RYderOSHI (RYOSHI)
 

Overview

Max Total Supply

810,720,000 RYOSHI

Holders

199

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
40,269,295.532819565242751601 RYOSHI

Value
$0.00
0xa5a725ce2ccdc776add4a3468e7d84ec0ddc98ba
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:
RYderOSHI

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 8 : RYderOSHI.sol
// SPDX-License-Identifier: MIT

/* 

        RYderOSHI Token

How many coincidences make a fact? One? Two? Three? RY-O-SHI?

RYderOSHI is an homage to the research done to try and uncover the mystery surrounding
the origins of Shib and Ryoshi: https://medium.com/@researchingryoshi/researching-ryoshi-b68fe3e39a1c


Website: https://www.ryderoshi.xyz/
Telegram: https://t.me/RYderOSHIToken
Twitter: https://twitter.com/RYderOSHI

*/
pragma solidity =0.8.11;

import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v4.5/contracts/token/ERC20/ERC20.sol";
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v4.5/contracts/access/Ownable.sol";
import "./library/Liquidity.sol";

contract RYderOSHI is ERC20, Ownable {
    address public marketing;
    address public cult;
    address public vemp;
    address public shib;
    address public cal;

    uint256 public marketingTax;
    uint256 public cultTax;
    uint256 public vempTax;
    uint256 public shibTax;
    uint256 public calTax;
    uint256 public maxWalletLimit;
    uint256 public slippage;
    uint256 public maxSwapLimit;

    mapping(address => bool) public isWhiteList;

    // Event to log changes in the marketing address
    event MarketingAddressUpdated(address newMarketingAddress);
    // Event to log changes in the Shib address
    event ShibAddressUpdated(address newShibAddress);
    // Event to log changes in the VEMP address
    event VEMPAddressUpdated(address newVEMPAddress);
    // Event to log changes in the CULT address
    event CULTAddressUpdated(address newCULTAddress);
    // Event to log changes in the CAL address
    event CALAddressUpdated(address newCALAddress);
    // Event to log changes in the maximum wallet limit
    event MaxWalletLimitUpdated(uint256 newMaxWalletLimit);
    // Event to log changes in the marketing tax
    event MarketingTaxUpdated(uint256 newMarketingTax);
    // Event to log changes in the VEMP tax
    event VEMPTaxUpdated(uint256 newVEMPTax);
    // Event to log changes in the SHIB tax
    event SHIBTaxUpdated(uint256 newSHIBTax);
    // Event to log changes in the CULT tax
    event CULTTaxUpdated(uint256 newCULTTax);
    // Event to log changes in the CAL tax
    event CALTaxUpdated(uint256 newCALTax);
    // Event to log changes in the slippage
    event SlippageUpdated(uint256 newSlippage);
    // Event to log whitelist address
    event WhiteListAddressEvent(address user, bool status);
    // Event to log Max Swap Limit
    event MaxSwapLimitUpdated(uint256 _swapLimit);

    constructor(
        address _marketingAddress,
        address _cult,
        address _vemp,
        address _shib,
        address _cal,
        uint256 _maxSwapLimit
    ) ERC20("RYderOSHI", "RYOSHI") {
        marketing = _marketingAddress;
        cult = _cult;
        vemp = _vemp;
        shib = _shib;
        cal = _cal;
        maxSwapLimit = _maxSwapLimit;

        marketingTax = 100;
        cultTax = 100;
        vempTax = 100;
        shibTax = 50;
        calTax = 50;

        maxWalletLimit = 2;
        slippage = 50;

        _mint(msg.sender, 810720000 ether);
    }

    // Comment explaining the purpose of _transfer method
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        address pair = Liquidity.getPair(address(this), Liquidity.WETH);

        if (
            to != pair &&
            to != owner() &&
            to != address(this) &&
            to != marketing &&
            !isWhiteList[to]
        ) {
            uint256 validTokenTransfer = ((totalSupply() * maxWalletLimit) /
                100) - balanceOf(to);
            require(amount <= validTokenTransfer, "Max Limit Reach");
        }

        if (
            from != address(this) &&
            from != owner() &&
            to != address(this) &&
            to != owner() &&
            to != marketing &&
            !isWhiteList[to] &&
            !isWhiteList[from]
        ) {
            uint256 totalTax = vempTax + cultTax + shibTax + marketingTax + calTax;
            uint256 feeAmount = (amount * totalTax) / 10000;
            super._transfer(from, address(this), feeAmount);
            uint _feesOnContract = balanceOf(address(this));

            if (from != pair && maxSwapLimit <= _feesOnContract) {
                _buyAndBurnToken(vemp, (_feesOnContract * vempTax) / totalTax);
                _buyAndBurnToken(cult, (_feesOnContract * cultTax) / totalTax);
                _buyAndBurnToken(shib, (_feesOnContract * shibTax) / totalTax);
                _buyAndBurnToken(cal, (_feesOnContract * calTax) / totalTax);

                super._transfer(
                    address(this),
                    marketing,
                    (_feesOnContract * marketingTax) / totalTax
                );
                _feesOnContract = 0;
            } else {
                uint256 validTokenTransfer = ((totalSupply() * maxWalletLimit) /
                    100) - balanceOf(to);
                require(amount <= validTokenTransfer, "Max Limit Reach");
            }
            return super._transfer(from, to, amount - feeAmount);
        } else return super._transfer(from, to, amount);
    }

    // Comment explaining the purpose of _buyAndBurnToken method
    function _buyAndBurnToken(address _tokenOut, uint256 _amountIn) private {
        if (_amountIn > 0) {
            Liquidity.swap(
                address(this),
                _tokenOut,
                _amountIn,
                slippage,
                Liquidity.DEAD_ADDRESS
            );
        }
    }

    // whitelist tokens
    function updateWhitelistAddress(
        address _user,
        bool _status
    ) public onlyOwner {
        require(isWhiteList[_user] != _status, "Already in same status");
        isWhiteList[_user] = _status;

        // Emit an event to log the marketing address change
        emit WhiteListAddressEvent(_user, _status);
    }

    // Comment explaining the purpose of setMarketingAddress method
    function setMarketingAddress(address _marketingAddress) public onlyOwner {
        marketing = _marketingAddress;

        // Emit an event to log the marketing address change
        emit MarketingAddressUpdated(_marketingAddress);
    }

    // Comment explaining the purpose of updateShibAddress method
    function updateShibAddress(address _shibAddress) external onlyOwner {
        shib = _shibAddress;

        // Emit an event to log the Shib address change
        emit ShibAddressUpdated(_shibAddress);
    }

    // Comment explaining the purpose of updateVEMPAddress method
    function updateVEMPAddress(address _vempAddress) external onlyOwner {
        vemp = _vempAddress;

        // Emit an event to log the VEMP address change
        emit VEMPAddressUpdated(_vempAddress);
    }

    // Comment explaining the purpose of updateCULTAddress method
    function updateCULTAddress(address _cultAddress) external onlyOwner {
        cult = _cultAddress;

        // Emit an event to log the CULT address change
        emit CULTAddressUpdated(_cultAddress);
    }

    // Comment explaining the purpose of updateCALAddress method
    function updateCALAddress(address _calAddress) external onlyOwner {
        cal = _calAddress;

        // Emit an event to log the CAL address change
        emit CALAddressUpdated(_calAddress);
    }

    // Comment explaining the purpose of updateMaxWalletLimit method
    function updateMaxWalletLimit(uint256 _walletLimit) external onlyOwner {
        maxWalletLimit = _walletLimit;

        // Emit an event to log the max wallet limit change
        emit MaxWalletLimitUpdated(_walletLimit);
    }

    // Comment explaining the purpose of updateMarketingTax method
    function updateMarketingTax(uint256 _marketTax) external onlyOwner {
        marketingTax = _marketTax;

        // Emit an event to log the marketing tax change
        emit MarketingTaxUpdated(_marketTax);
    }

    // Comment explaining the purpose of updateVEMPTax method
    function updateVEMPTax(uint256 _vempTax) external onlyOwner {
        vempTax = _vempTax;

        // Emit an event to log the VEMP tax change
        emit VEMPTaxUpdated(_vempTax);
    }

    // Comment explaining the purpose of updateSHIBTax method
    function updateSHIBTax(uint256 _shibTax) external onlyOwner {
        shibTax = _shibTax;

        // Emit an event to log the SHIB tax change
        emit SHIBTaxUpdated(_shibTax);
    }

    // Comment explaining the purpose of updateCULTTax method
    function updateCULTTax(uint256 _cultTax) external onlyOwner {
        cultTax = _cultTax;

        // Emit an event to log the CULT tax change
        emit CULTTaxUpdated(_cultTax);
    }

    // Comment explaining the purpose of updateCALTax method
    function updateCALTax(uint256 _calTax) external onlyOwner {
        calTax = _calTax;

        // Emit an event to log the CAL tax change
        emit CALTaxUpdated(_calTax);
    }

    // Comment explaining the purpose of maxSwapLimit method
    function updateMaxSwapLimit(uint256 _swapLimit) external onlyOwner {
        maxSwapLimit = _swapLimit;

        // Emit an event to log the maxSwapLimit tax change
        emit MaxSwapLimitUpdated(_swapLimit);
    }

    // Comment explaining the purpose of updateSlippage method
    function updateSlippage(uint256 _slippage) external onlyOwner {
        require(_slippage < 1000 && _slippage > 40, "Invalid Slippage");
        slippage = _slippage;

        // Emit an event to log the slippage change
        emit SlippageUpdated(_slippage);
    }
}

File 2 of 8 : Liquidity.sol
// SPDX-License-Identifier: MIT
pragma solidity =0.8.11;

import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v4.5/contracts/token/ERC20/IERC20.sol";
import "../interfaces/IUniswap.sol";

library Liquidity {
    address public constant FACTORY =
        0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f;
    address public constant ROUTER = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
    address public constant WETH = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2;
    address public constant DEAD_ADDRESS =
        0x000000000000000000000000000000000000dEaD;

    function swap(
        address _tokenIn,
        address _tokenOut,
        uint256 _amountIn,
        uint256 _slippage,
        address _to
    ) internal returns (uint256) {
        IERC20(_tokenIn).approve(ROUTER, _amountIn);

        address[] memory path;
        if (_tokenIn == WETH || _tokenOut == WETH) {
            path = new address[](2);
            path[0] = _tokenIn;
            path[1] = _tokenOut;
        } else {
            path = new address[](3);
            path[0] = _tokenIn;
            path[1] = WETH;
            path[2] = _tokenOut;
        }

        uint256 _amountOutMin = (IUniswapV2Router(ROUTER).getAmountsOut(
            _amountIn,
            path
        )[path.length - 1] * (1000 - _slippage)) / 1000;

        uint256 balanceBefore = IERC20(_tokenOut).balanceOf(_to);
        IUniswapV2Router(ROUTER)
            .swapExactTokensForTokensSupportingFeeOnTransferTokens(
                _amountIn,
                _amountOutMin,
                path,
                _to,
                block.timestamp
            );
        uint256 balanceAfter = IERC20(_tokenOut).balanceOf(_to);
        return balanceAfter - balanceBefore;
    }

    function getPair(
        address _tokenA,
        address _tokenB
    ) internal view returns (address) {
        return IUniswapV2Factory(FACTORY).getPair(_tokenA, _tokenB);
    }
}

File 3 of 8 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 4 of 8 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * 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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 7 of 8 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

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

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

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

    /**
     * @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 8 of 8 : IUniswap.sol
// SPDX-License-Identifier: MIT
pragma solidity =0.8.11;

interface IUniswapV2Router {
    function getAmountsOut(
        uint256 amountIn,
        address[] memory path
    ) external view returns (uint256[] memory amounts);

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

interface IUniswapV2Factory {
    function getPair(
        address tokenA,
        address tokenB
    ) external view returns (address pair);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_marketingAddress","type":"address"},{"internalType":"address","name":"_cult","type":"address"},{"internalType":"address","name":"_vemp","type":"address"},{"internalType":"address","name":"_shib","type":"address"},{"internalType":"address","name":"_cal","type":"address"},{"internalType":"uint256","name":"_maxSwapLimit","type":"uint256"}],"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":"newCALAddress","type":"address"}],"name":"CALAddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newCALTax","type":"uint256"}],"name":"CALTaxUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newCULTAddress","type":"address"}],"name":"CULTAddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newCULTTax","type":"uint256"}],"name":"CULTTaxUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newMarketingAddress","type":"address"}],"name":"MarketingAddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newMarketingTax","type":"uint256"}],"name":"MarketingTaxUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_swapLimit","type":"uint256"}],"name":"MaxSwapLimitUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newMaxWalletLimit","type":"uint256"}],"name":"MaxWalletLimitUpdated","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":"uint256","name":"newSHIBTax","type":"uint256"}],"name":"SHIBTaxUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newShibAddress","type":"address"}],"name":"ShibAddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newSlippage","type":"uint256"}],"name":"SlippageUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newVEMPAddress","type":"address"}],"name":"VEMPAddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newVEMPTax","type":"uint256"}],"name":"VEMPTaxUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"WhiteListAddressEvent","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cal","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"calTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cult","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cultTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"isWhiteList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketing","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSwapLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletLimit","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingAddress","type":"address"}],"name":"setMarketingAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"shib","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"shibTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"slippage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_calAddress","type":"address"}],"name":"updateCALAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_calTax","type":"uint256"}],"name":"updateCALTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_cultAddress","type":"address"}],"name":"updateCULTAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cultTax","type":"uint256"}],"name":"updateCULTTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketTax","type":"uint256"}],"name":"updateMarketingTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_swapLimit","type":"uint256"}],"name":"updateMaxSwapLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_walletLimit","type":"uint256"}],"name":"updateMaxWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_shibTax","type":"uint256"}],"name":"updateSHIBTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_shibAddress","type":"address"}],"name":"updateShibAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_slippage","type":"uint256"}],"name":"updateSlippage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_vempAddress","type":"address"}],"name":"updateVEMPAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_vempTax","type":"uint256"}],"name":"updateVEMPTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"updateWhitelistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vemp","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"vempTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b50604051620046e2380380620046e283398181016040528101906200003791906200064b565b6040518060400160405280600981526020017f52596465724f53484900000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f52594f53484900000000000000000000000000000000000000000000000000008152508160039080519060200190620000bb929190620004f6565b508060049080519060200190620000d4929190620004f6565b505050620000f7620000eb620002a560201b60201c565b620002ad60201b60201c565b85600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555083600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550806012819055506064600b819055506064600c819055506064600d819055506032600e819055506032600f819055506002601081905550603260118190555062000299336b029e9ca3438d24618c0000006200037360201b60201c565b50505050505062000889565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620003e6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003dd9062000748565b60405180910390fd5b620003fa60008383620004ec60201b60201c565b80600260008282546200040e919062000799565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000465919062000799565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620004cc919062000807565b60405180910390a3620004e860008383620004f160201b60201c565b5050565b505050565b505050565b828054620005049062000853565b90600052602060002090601f01602090048101928262000528576000855562000574565b82601f106200054357805160ff191683800117855562000574565b8280016001018555821562000574579182015b828111156200057357825182559160200191906001019062000556565b5b50905062000583919062000587565b5090565b5b80821115620005a257600081600090555060010162000588565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620005d882620005ab565b9050919050565b620005ea81620005cb565b8114620005f657600080fd5b50565b6000815190506200060a81620005df565b92915050565b6000819050919050565b620006258162000610565b81146200063157600080fd5b50565b60008151905062000645816200061a565b92915050565b60008060008060008060c087890312156200066b576200066a620005a6565b5b60006200067b89828a01620005f9565b96505060206200068e89828a01620005f9565b9550506040620006a189828a01620005f9565b9450506060620006b489828a01620005f9565b9350506080620006c789828a01620005f9565b92505060a0620006da89828a0162000634565b9150509295509295509295565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000730601f83620006e7565b91506200073d82620006f8565b602082019050919050565b60006020820190508181036000830152620007638162000721565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620007a68262000610565b9150620007b38362000610565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620007eb57620007ea6200076a565b5b828201905092915050565b620008018162000610565b82525050565b60006020820190506200081e6000830184620007f6565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200086c57607f821691505b6020821081141562000883576200088262000824565b5b50919050565b613e4980620008996000396000f3fe608060405234801561001057600080fd5b506004361061025d5760003560e01c80634f7760cf1161014657806395d89b41116100c3578063b7c738f411610087578063b7c738f4146106d8578063dd62ed3e146106f6578063e86f4ad414610726578063f2fde38b14610742578063f81d79201461075e578063f99031a71461077c5761025d565b806395d89b41146106205780639c60bda21461063e578063a1bd81051461065a578063a457c2d714610678578063a9059cbb146106a85761025d565b80636d04ba9d1161010a5780636d04ba9d1461059057806370a08231146105ac578063715018a6146105dc5780638da5cb5b146105e6578063906e9dd0146106045761025d565b80634f7760cf146104fe578063549604b31461051c57806354ff32a91461053a578063653cc0c51461055657806366a88d96146105725761025d565b8063299179f5116101df5780633726b0a2116101a35780633726b0a21461043c578063395093511461045a5780633e032a3b1461048a5780634324deae146104a8578063468dce5b146104c45780634811ee45146104e05761025d565b8063299179f5146103aa5780632d3e474a146103c65780632f2dae7f146103e457806330b328f414610402578063313ce5671461041e5761025d565b806315fd370a1161022657806315fd370a1461030657806318160ddd146103225780631d2cb02d14610340578063238580051461035e57806323b872dd1461037a5761025d565b806289716a1461026257806306fdde031461027e578063095ea7b31461029c5780630db9ef3c146102cc57806315b0d496146102ea575b600080fd5b61027c60048036038101906102779190612e69565b6107ac565b005b610286610869565b6040516102939190612f2f565b60405180910390f35b6102b660048036038101906102b19190612faf565b6108fb565b6040516102c3919061300a565b60405180910390f35b6102d461091e565b6040516102e19190613034565b60405180910390f35b61030460048036038101906102ff9190612e69565b610924565b005b610320600480360381019061031b9190612e69565b610a31565b005b61032a610aee565b6040516103379190613034565b60405180910390f35b610348610af8565b6040516103559190613034565b60405180910390f35b6103786004803603810190610373919061304f565b610afe565b005b610394600480360381019061038f919061307c565b610bf5565b6040516103a1919061300a565b60405180910390f35b6103c460048036038101906103bf919061304f565b610c24565b005b6103ce610d1b565b6040516103db91906130de565b60405180910390f35b6103ec610d41565b6040516103f99190613034565b60405180910390f35b61041c60048036038101906104179190612e69565b610d47565b005b610426610e04565b6040516104339190613115565b60405180910390f35b610444610e0d565b60405161045191906130de565b60405180910390f35b610474600480360381019061046f9190612faf565b610e33565b604051610481919061300a565b60405180910390f35b610492610edd565b60405161049f9190613034565b60405180910390f35b6104c260048036038101906104bd9190612e69565b610ee3565b005b6104de60048036038101906104d99190612e69565b610fa0565b005b6104e861105d565b6040516104f59190613034565b60405180910390f35b610506611063565b6040516105139190613034565b60405180910390f35b610524611069565b60405161053191906130de565b60405180910390f35b610554600480360381019061054f9190612e69565b61108f565b005b610570600480360381019061056b9190612e69565b61114c565b005b61057a611209565b6040516105879190613034565b60405180910390f35b6105aa60048036038101906105a5919061304f565b61120f565b005b6105c660048036038101906105c1919061304f565b611306565b6040516105d39190613034565b60405180910390f35b6105e461134e565b005b6105ee6113d6565b6040516105fb91906130de565b60405180910390f35b61061e6004803603810190610619919061304f565b611400565b005b6106286114f7565b6040516106359190612f2f565b60405180910390f35b6106586004803603810190610653919061304f565b611589565b005b610662611680565b60405161066f91906130de565b60405180910390f35b610692600480360381019061068d9190612faf565b6116a6565b60405161069f919061300a565b60405180910390f35b6106c260048036038101906106bd9190612faf565b611790565b6040516106cf919061300a565b60405180910390f35b6106e06117b3565b6040516106ed91906130de565b60405180910390f35b610710600480360381019061070b9190613130565b6117d9565b60405161071d9190613034565b60405180910390f35b610740600480360381019061073b919061319c565b611860565b005b61075c6004803603810190610757919061304f565b611a03565b005b610766611afb565b6040516107739190613034565b60405180910390f35b6107966004803603810190610791919061304f565b611b01565b6040516107a3919061300a565b60405180910390f35b6107b4611b21565b73ffffffffffffffffffffffffffffffffffffffff166107d26113d6565b73ffffffffffffffffffffffffffffffffffffffff1614610828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081f90613228565b60405180910390fd5b80600b819055507f3b6a2a9a67a861001b0953a7b76d474d96c9797917df5455044809392f5971708160405161085e9190613034565b60405180910390a150565b60606003805461087890613277565b80601f01602080910402602001604051908101604052809291908181526020018280546108a490613277565b80156108f15780601f106108c6576101008083540402835291602001916108f1565b820191906000526020600020905b8154815290600101906020018083116108d457829003601f168201915b5050505050905090565b600080610906611b21565b9050610913818585611b29565b600191505092915050565b600c5481565b61092c611b21565b73ffffffffffffffffffffffffffffffffffffffff1661094a6113d6565b73ffffffffffffffffffffffffffffffffffffffff16146109a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099790613228565b60405180910390fd5b6103e8811080156109b15750602881115b6109f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e7906132f5565b60405180910390fd5b806011819055507ff5a802650e0a86db227cc342f06327d2ca0ff5cf2b12e0084fc5d8a7db2c54fd81604051610a269190613034565b60405180910390a150565b610a39611b21565b73ffffffffffffffffffffffffffffffffffffffff16610a576113d6565b73ffffffffffffffffffffffffffffffffffffffff1614610aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa490613228565b60405180910390fd5b806012819055507fa31579f37c4dd09131fde944e4a46b23da5bb4f5d5427b981777994805b5fc8f81604051610ae39190613034565b60405180910390a150565b6000600254905090565b600b5481565b610b06611b21565b73ffffffffffffffffffffffffffffffffffffffff16610b246113d6565b73ffffffffffffffffffffffffffffffffffffffff1614610b7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7190613228565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f2dc7db959f35c4d4b9d50ca7bfa3696775fb262107ad37073fa3c7366f10a74a81604051610bea91906130de565b60405180910390a150565b600080610c00611b21565b9050610c0d858285611cf4565b610c18858585611d80565b60019150509392505050565b610c2c611b21565b73ffffffffffffffffffffffffffffffffffffffff16610c4a6113d6565b73ffffffffffffffffffffffffffffffffffffffff1614610ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9790613228565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f8c076f3bbb466102edfb828ef0d338ae1d31a019c530b18f4c70eb049140b5ea81604051610d1091906130de565b60405180910390a150565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60125481565b610d4f611b21565b73ffffffffffffffffffffffffffffffffffffffff16610d6d6113d6565b73ffffffffffffffffffffffffffffffffffffffff1614610dc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dba90613228565b60405180910390fd5b80600e819055507f92175bed47898415776beac8eeddc6a880fe5455796e6afa77d62838345eafed81604051610df99190613034565b60405180910390a150565b60006012905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610e3e611b21565b9050610ed2818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ecd9190613344565b611b29565b600191505092915050565b60115481565b610eeb611b21565b73ffffffffffffffffffffffffffffffffffffffff16610f096113d6565b73ffffffffffffffffffffffffffffffffffffffff1614610f5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5690613228565b60405180910390fd5b806010819055507fe2e6151ed0b472c61401059745339ca42474813911b22d24023385def6377e1c81604051610f959190613034565b60405180910390a150565b610fa8611b21565b73ffffffffffffffffffffffffffffffffffffffff16610fc66113d6565b73ffffffffffffffffffffffffffffffffffffffff161461101c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101390613228565b60405180910390fd5b80600c819055507faaaa4f39514b0c8566e6b0724362d09a821173124de865aa5c693b8242cca8be816040516110529190613034565b60405180910390a150565b600f5481565b600e5481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611097611b21565b73ffffffffffffffffffffffffffffffffffffffff166110b56113d6565b73ffffffffffffffffffffffffffffffffffffffff161461110b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110290613228565b60405180910390fd5b80600d819055507f87d3a9aa920c61935e16a84a405f79bcd3e4cb8f9e3e44503afa66b360e2539f816040516111419190613034565b60405180910390a150565b611154611b21565b73ffffffffffffffffffffffffffffffffffffffff166111726113d6565b73ffffffffffffffffffffffffffffffffffffffff16146111c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bf90613228565b60405180910390fd5b80600f819055507fc4950a720a93a37e59de1aaffcf331f0021a1480a1a92b15bcf265c8d26d1aef816040516111fe9190613034565b60405180910390a150565b60105481565b611217611b21565b73ffffffffffffffffffffffffffffffffffffffff166112356113d6565b73ffffffffffffffffffffffffffffffffffffffff161461128b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128290613228565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fb0a394b539f76b20ae47fad46f52703fbd67ed1d46e9ddcdec335e89ebfdf7f2816040516112fb91906130de565b60405180910390a150565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611356611b21565b73ffffffffffffffffffffffffffffffffffffffff166113746113d6565b73ffffffffffffffffffffffffffffffffffffffff16146113ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c190613228565b60405180910390fd5b6113d4600061242b565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611408611b21565b73ffffffffffffffffffffffffffffffffffffffff166114266113d6565b73ffffffffffffffffffffffffffffffffffffffff161461147c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147390613228565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f0c5dca4975009b82f989b2f70aef27e88d40a772c4661bf9c76767eebdd4ec75816040516114ec91906130de565b60405180910390a150565b60606004805461150690613277565b80601f016020809104026020016040519081016040528092919081815260200182805461153290613277565b801561157f5780601f106115545761010080835404028352916020019161157f565b820191906000526020600020905b81548152906001019060200180831161156257829003601f168201915b5050505050905090565b611591611b21565b73ffffffffffffffffffffffffffffffffffffffff166115af6113d6565b73ffffffffffffffffffffffffffffffffffffffff1614611605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fc90613228565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507ff044279b178a89f6e9bec4c26f38618fcb23e97fe20075dcd57b11771398fefa8160405161167591906130de565b60405180910390a150565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806116b1611b21565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176e9061340c565b60405180910390fd5b6117848286868403611b29565b60019250505092915050565b60008061179b611b21565b90506117a8818585611d80565b600191505092915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611868611b21565b73ffffffffffffffffffffffffffffffffffffffff166118866113d6565b73ffffffffffffffffffffffffffffffffffffffff16146118dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d390613228565b60405180910390fd5b801515601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515141561196f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196690613478565b60405180910390fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507fd5a54a13d8deacf8a6f700cf204a6d6c2ab86d74a187de3ea327919925af24b282826040516119f7929190613498565b60405180910390a15050565b611a0b611b21565b73ffffffffffffffffffffffffffffffffffffffff16611a296113d6565b73ffffffffffffffffffffffffffffffffffffffff1614611a7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7690613228565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae690613533565b60405180910390fd5b611af88161242b565b50565b600d5481565b60136020528060005260406000206000915054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b90906135c5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0090613657565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611ce79190613034565b60405180910390a3505050565b6000611d0084846117d9565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611d7a5781811015611d6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d63906136c3565b60405180910390fd5b611d798484848403611b29565b5b50505050565b6000611da03073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26124f1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611e115750611de16113d6565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611e4957503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611ea35750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611ef95750601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611f7b576000611f0984611306565b6064601054611f16610aee565b611f2091906136e3565b611f2a919061376c565b611f34919061379d565b905080831115611f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f709061381d565b60405180910390fd5b505b3073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015611fea5750611fba6113d6565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b801561202257503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801561206157506120316113d6565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156120bb5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156121115750601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156121675750601360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612419576000600f54600b54600e54600c54600d546121879190613344565b6121919190613344565b61219b9190613344565b6121a59190613344565b9050600061271082856121b891906136e3565b6121c2919061376c565b90506121cf86308361258b565b60006121da30611306565b90508373ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff161415801561221a57508060125411155b1561237d57612263600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684600d548461225491906136e3565b61225e919061376c565b61280c565b6122a7600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684600c548461229891906136e3565b6122a2919061376c565b61280c565b6122eb600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684600e54846122dc91906136e3565b6122e6919061376c565b61280c565b61232f600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684600f548461232091906136e3565b61232a919061376c565b61280c565b61237430600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685600b548561236591906136e3565b61236f919061376c565b61258b565b600090506123fa565b600061238887611306565b6064601054612395610aee565b61239f91906136e3565b6123a9919061376c565b6123b3919061379d565b9050808611156123f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ef9061381d565b60405180910390fd5b505b6124108787848861240b919061379d565b61258b565b50505050612426565b61242484848461258b565b505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f73ffffffffffffffffffffffffffffffffffffffff1663e6a4390584846040518363ffffffff1660e01b815260040161254292919061383d565b602060405180830381865afa15801561255f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612583919061387b565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156125fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f29061391a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561266b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612662906139ac565b60405180910390fd5b61267683838361282c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156126fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f390613a3e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461278f9190613344565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516127f39190613034565b60405180910390a3612806848484612831565b50505050565b60008111156128285761282630838360115461dead612836565b505b5050565b505050565b505050565b60008573ffffffffffffffffffffffffffffffffffffffff1663095ea7b3737a250d5630b4cf539739df2c5dacb4c659f2488d866040518363ffffffff1660e01b8152600401612887929190613a5e565b6020604051808303816000875af11580156128a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128ca9190613a9c565b50606073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff16148061295a575073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16145b15612a4e57600267ffffffffffffffff81111561297a57612979613ac9565b5b6040519080825280602002602001820160405280156129a85781602001602082028036833780820191505090505b50905086816000815181106129c0576129bf613af8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508581600181518110612a0f57612a0e613af8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612b9c565b600367ffffffffffffffff811115612a6957612a68613ac9565b5b604051908082528060200260200182016040528015612a975781602001602082028036833780820191505090505b5090508681600081518110612aaf57612aae613af8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281600181518110612b1257612b11613af8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508581600281518110612b6157612b60613af8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250505b60006103e8856103e8612baf919061379d565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663d06ca61f89866040518363ffffffff1660e01b8152600401612bfe929190613be5565b600060405180830381865afa158015612c1b573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190612c449190613d43565b60018551612c52919061379d565b81518110612c6357612c62613af8565b5b6020026020010151612c7591906136e3565b612c7f919061376c565b905060008773ffffffffffffffffffffffffffffffffffffffff166370a08231866040518263ffffffff1660e01b8152600401612cbc91906130de565b602060405180830381865afa158015612cd9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612cfd9190613d8c565b9050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff16635c11d79588848689426040518663ffffffff1660e01b8152600401612d54959493929190613db9565b600060405180830381600087803b158015612d6e57600080fd5b505af1158015612d82573d6000803e3d6000fd5b5050505060008873ffffffffffffffffffffffffffffffffffffffff166370a08231876040518263ffffffff1660e01b8152600401612dc191906130de565b602060405180830381865afa158015612dde573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e029190613d8c565b90508181612e10919061379d565b94505050505095945050505050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b612e4681612e33565b8114612e5157600080fd5b50565b600081359050612e6381612e3d565b92915050565b600060208284031215612e7f57612e7e612e29565b5b6000612e8d84828501612e54565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ed0578082015181840152602081019050612eb5565b83811115612edf576000848401525b50505050565b6000601f19601f8301169050919050565b6000612f0182612e96565b612f0b8185612ea1565b9350612f1b818560208601612eb2565b612f2481612ee5565b840191505092915050565b60006020820190508181036000830152612f498184612ef6565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f7c82612f51565b9050919050565b612f8c81612f71565b8114612f9757600080fd5b50565b600081359050612fa981612f83565b92915050565b60008060408385031215612fc657612fc5612e29565b5b6000612fd485828601612f9a565b9250506020612fe585828601612e54565b9150509250929050565b60008115159050919050565b61300481612fef565b82525050565b600060208201905061301f6000830184612ffb565b92915050565b61302e81612e33565b82525050565b60006020820190506130496000830184613025565b92915050565b60006020828403121561306557613064612e29565b5b600061307384828501612f9a565b91505092915050565b60008060006060848603121561309557613094612e29565b5b60006130a386828701612f9a565b93505060206130b486828701612f9a565b92505060406130c586828701612e54565b9150509250925092565b6130d881612f71565b82525050565b60006020820190506130f360008301846130cf565b92915050565b600060ff82169050919050565b61310f816130f9565b82525050565b600060208201905061312a6000830184613106565b92915050565b6000806040838503121561314757613146612e29565b5b600061315585828601612f9a565b925050602061316685828601612f9a565b9150509250929050565b61317981612fef565b811461318457600080fd5b50565b60008135905061319681613170565b92915050565b600080604083850312156131b3576131b2612e29565b5b60006131c185828601612f9a565b92505060206131d285828601613187565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613212602083612ea1565b915061321d826131dc565b602082019050919050565b6000602082019050818103600083015261324181613205565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061328f57607f821691505b602082108114156132a3576132a2613248565b5b50919050565b7f496e76616c696420536c69707061676500000000000000000000000000000000600082015250565b60006132df601083612ea1565b91506132ea826132a9565b602082019050919050565b6000602082019050818103600083015261330e816132d2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061334f82612e33565b915061335a83612e33565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561338f5761338e613315565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006133f6602583612ea1565b91506134018261339a565b604082019050919050565b60006020820190508181036000830152613425816133e9565b9050919050565b7f416c726561647920696e2073616d652073746174757300000000000000000000600082015250565b6000613462601683612ea1565b915061346d8261342c565b602082019050919050565b6000602082019050818103600083015261349181613455565b9050919050565b60006040820190506134ad60008301856130cf565b6134ba6020830184612ffb565b9392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061351d602683612ea1565b9150613528826134c1565b604082019050919050565b6000602082019050818103600083015261354c81613510565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006135af602483612ea1565b91506135ba82613553565b604082019050919050565b600060208201905081810360008301526135de816135a2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613641602283612ea1565b915061364c826135e5565b604082019050919050565b6000602082019050818103600083015261367081613634565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006136ad601d83612ea1565b91506136b882613677565b602082019050919050565b600060208201905081810360008301526136dc816136a0565b9050919050565b60006136ee82612e33565b91506136f983612e33565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561373257613731613315565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061377782612e33565b915061378283612e33565b9250826137925761379161373d565b5b828204905092915050565b60006137a882612e33565b91506137b383612e33565b9250828210156137c6576137c5613315565b5b828203905092915050565b7f4d6178204c696d69742052656163680000000000000000000000000000000000600082015250565b6000613807600f83612ea1565b9150613812826137d1565b602082019050919050565b60006020820190508181036000830152613836816137fa565b9050919050565b600060408201905061385260008301856130cf565b61385f60208301846130cf565b9392505050565b60008151905061387581612f83565b92915050565b60006020828403121561389157613890612e29565b5b600061389f84828501613866565b91505092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613904602583612ea1565b915061390f826138a8565b604082019050919050565b60006020820190508181036000830152613933816138f7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613996602383612ea1565b91506139a18261393a565b604082019050919050565b600060208201905081810360008301526139c581613989565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613a28602683612ea1565b9150613a33826139cc565b604082019050919050565b60006020820190508181036000830152613a5781613a1b565b9050919050565b6000604082019050613a7360008301856130cf565b613a806020830184613025565b9392505050565b600081519050613a9681613170565b92915050565b600060208284031215613ab257613ab1612e29565b5b6000613ac084828501613a87565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613b5c81612f71565b82525050565b6000613b6e8383613b53565b60208301905092915050565b6000602082019050919050565b6000613b9282613b27565b613b9c8185613b32565b9350613ba783613b43565b8060005b83811015613bd8578151613bbf8882613b62565b9750613bca83613b7a565b925050600181019050613bab565b5085935050505092915050565b6000604082019050613bfa6000830185613025565b8181036020830152613c0c8184613b87565b90509392505050565b600080fd5b613c2382612ee5565b810181811067ffffffffffffffff82111715613c4257613c41613ac9565b5b80604052505050565b6000613c55612e1f565b9050613c618282613c1a565b919050565b600067ffffffffffffffff821115613c8157613c80613ac9565b5b602082029050602081019050919050565b600080fd5b600081519050613ca681612e3d565b92915050565b6000613cbf613cba84613c66565b613c4b565b90508083825260208201905060208402830185811115613ce257613ce1613c92565b5b835b81811015613d0b5780613cf78882613c97565b845260208401935050602081019050613ce4565b5050509392505050565b600082601f830112613d2a57613d29613c15565b5b8151613d3a848260208601613cac565b91505092915050565b600060208284031215613d5957613d58612e29565b5b600082015167ffffffffffffffff811115613d7757613d76612e2e565b5b613d8384828501613d15565b91505092915050565b600060208284031215613da257613da1612e29565b5b6000613db084828501613c97565b91505092915050565b600060a082019050613dce6000830188613025565b613ddb6020830187613025565b8181036040830152613ded8186613b87565b9050613dfc60608301856130cf565b613e096080830184613025565b969550505050505056fea26469706673582212204084471693c691eaaaccad329dde16581beeeef7a063872db11f2483de5b2ba264736f6c634300080b003300000000000000000000000027e6a4920bde370eb7b7e3fe7ede04fe006fe926000000000000000000000000f0f9d895aca5c8678f706fb8216fa22957685a13000000000000000000000000cfeb09c3c5f0f78ad72166d55f9e6e9a60e96eec00000000000000000000000095ad61b0a150d79219dcf64e1e6cc01f0b64c4ce00000000000000000000000020561172f791f915323241e885b4f7d5187c36e10000000000000000000000000000000000000000000000000000000000000064

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061025d5760003560e01c80634f7760cf1161014657806395d89b41116100c3578063b7c738f411610087578063b7c738f4146106d8578063dd62ed3e146106f6578063e86f4ad414610726578063f2fde38b14610742578063f81d79201461075e578063f99031a71461077c5761025d565b806395d89b41146106205780639c60bda21461063e578063a1bd81051461065a578063a457c2d714610678578063a9059cbb146106a85761025d565b80636d04ba9d1161010a5780636d04ba9d1461059057806370a08231146105ac578063715018a6146105dc5780638da5cb5b146105e6578063906e9dd0146106045761025d565b80634f7760cf146104fe578063549604b31461051c57806354ff32a91461053a578063653cc0c51461055657806366a88d96146105725761025d565b8063299179f5116101df5780633726b0a2116101a35780633726b0a21461043c578063395093511461045a5780633e032a3b1461048a5780634324deae146104a8578063468dce5b146104c45780634811ee45146104e05761025d565b8063299179f5146103aa5780632d3e474a146103c65780632f2dae7f146103e457806330b328f414610402578063313ce5671461041e5761025d565b806315fd370a1161022657806315fd370a1461030657806318160ddd146103225780631d2cb02d14610340578063238580051461035e57806323b872dd1461037a5761025d565b806289716a1461026257806306fdde031461027e578063095ea7b31461029c5780630db9ef3c146102cc57806315b0d496146102ea575b600080fd5b61027c60048036038101906102779190612e69565b6107ac565b005b610286610869565b6040516102939190612f2f565b60405180910390f35b6102b660048036038101906102b19190612faf565b6108fb565b6040516102c3919061300a565b60405180910390f35b6102d461091e565b6040516102e19190613034565b60405180910390f35b61030460048036038101906102ff9190612e69565b610924565b005b610320600480360381019061031b9190612e69565b610a31565b005b61032a610aee565b6040516103379190613034565b60405180910390f35b610348610af8565b6040516103559190613034565b60405180910390f35b6103786004803603810190610373919061304f565b610afe565b005b610394600480360381019061038f919061307c565b610bf5565b6040516103a1919061300a565b60405180910390f35b6103c460048036038101906103bf919061304f565b610c24565b005b6103ce610d1b565b6040516103db91906130de565b60405180910390f35b6103ec610d41565b6040516103f99190613034565b60405180910390f35b61041c60048036038101906104179190612e69565b610d47565b005b610426610e04565b6040516104339190613115565b60405180910390f35b610444610e0d565b60405161045191906130de565b60405180910390f35b610474600480360381019061046f9190612faf565b610e33565b604051610481919061300a565b60405180910390f35b610492610edd565b60405161049f9190613034565b60405180910390f35b6104c260048036038101906104bd9190612e69565b610ee3565b005b6104de60048036038101906104d99190612e69565b610fa0565b005b6104e861105d565b6040516104f59190613034565b60405180910390f35b610506611063565b6040516105139190613034565b60405180910390f35b610524611069565b60405161053191906130de565b60405180910390f35b610554600480360381019061054f9190612e69565b61108f565b005b610570600480360381019061056b9190612e69565b61114c565b005b61057a611209565b6040516105879190613034565b60405180910390f35b6105aa60048036038101906105a5919061304f565b61120f565b005b6105c660048036038101906105c1919061304f565b611306565b6040516105d39190613034565b60405180910390f35b6105e461134e565b005b6105ee6113d6565b6040516105fb91906130de565b60405180910390f35b61061e6004803603810190610619919061304f565b611400565b005b6106286114f7565b6040516106359190612f2f565b60405180910390f35b6106586004803603810190610653919061304f565b611589565b005b610662611680565b60405161066f91906130de565b60405180910390f35b610692600480360381019061068d9190612faf565b6116a6565b60405161069f919061300a565b60405180910390f35b6106c260048036038101906106bd9190612faf565b611790565b6040516106cf919061300a565b60405180910390f35b6106e06117b3565b6040516106ed91906130de565b60405180910390f35b610710600480360381019061070b9190613130565b6117d9565b60405161071d9190613034565b60405180910390f35b610740600480360381019061073b919061319c565b611860565b005b61075c6004803603810190610757919061304f565b611a03565b005b610766611afb565b6040516107739190613034565b60405180910390f35b6107966004803603810190610791919061304f565b611b01565b6040516107a3919061300a565b60405180910390f35b6107b4611b21565b73ffffffffffffffffffffffffffffffffffffffff166107d26113d6565b73ffffffffffffffffffffffffffffffffffffffff1614610828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081f90613228565b60405180910390fd5b80600b819055507f3b6a2a9a67a861001b0953a7b76d474d96c9797917df5455044809392f5971708160405161085e9190613034565b60405180910390a150565b60606003805461087890613277565b80601f01602080910402602001604051908101604052809291908181526020018280546108a490613277565b80156108f15780601f106108c6576101008083540402835291602001916108f1565b820191906000526020600020905b8154815290600101906020018083116108d457829003601f168201915b5050505050905090565b600080610906611b21565b9050610913818585611b29565b600191505092915050565b600c5481565b61092c611b21565b73ffffffffffffffffffffffffffffffffffffffff1661094a6113d6565b73ffffffffffffffffffffffffffffffffffffffff16146109a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099790613228565b60405180910390fd5b6103e8811080156109b15750602881115b6109f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e7906132f5565b60405180910390fd5b806011819055507ff5a802650e0a86db227cc342f06327d2ca0ff5cf2b12e0084fc5d8a7db2c54fd81604051610a269190613034565b60405180910390a150565b610a39611b21565b73ffffffffffffffffffffffffffffffffffffffff16610a576113d6565b73ffffffffffffffffffffffffffffffffffffffff1614610aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa490613228565b60405180910390fd5b806012819055507fa31579f37c4dd09131fde944e4a46b23da5bb4f5d5427b981777994805b5fc8f81604051610ae39190613034565b60405180910390a150565b6000600254905090565b600b5481565b610b06611b21565b73ffffffffffffffffffffffffffffffffffffffff16610b246113d6565b73ffffffffffffffffffffffffffffffffffffffff1614610b7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7190613228565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f2dc7db959f35c4d4b9d50ca7bfa3696775fb262107ad37073fa3c7366f10a74a81604051610bea91906130de565b60405180910390a150565b600080610c00611b21565b9050610c0d858285611cf4565b610c18858585611d80565b60019150509392505050565b610c2c611b21565b73ffffffffffffffffffffffffffffffffffffffff16610c4a6113d6565b73ffffffffffffffffffffffffffffffffffffffff1614610ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9790613228565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f8c076f3bbb466102edfb828ef0d338ae1d31a019c530b18f4c70eb049140b5ea81604051610d1091906130de565b60405180910390a150565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60125481565b610d4f611b21565b73ffffffffffffffffffffffffffffffffffffffff16610d6d6113d6565b73ffffffffffffffffffffffffffffffffffffffff1614610dc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dba90613228565b60405180910390fd5b80600e819055507f92175bed47898415776beac8eeddc6a880fe5455796e6afa77d62838345eafed81604051610df99190613034565b60405180910390a150565b60006012905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610e3e611b21565b9050610ed2818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ecd9190613344565b611b29565b600191505092915050565b60115481565b610eeb611b21565b73ffffffffffffffffffffffffffffffffffffffff16610f096113d6565b73ffffffffffffffffffffffffffffffffffffffff1614610f5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5690613228565b60405180910390fd5b806010819055507fe2e6151ed0b472c61401059745339ca42474813911b22d24023385def6377e1c81604051610f959190613034565b60405180910390a150565b610fa8611b21565b73ffffffffffffffffffffffffffffffffffffffff16610fc66113d6565b73ffffffffffffffffffffffffffffffffffffffff161461101c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101390613228565b60405180910390fd5b80600c819055507faaaa4f39514b0c8566e6b0724362d09a821173124de865aa5c693b8242cca8be816040516110529190613034565b60405180910390a150565b600f5481565b600e5481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611097611b21565b73ffffffffffffffffffffffffffffffffffffffff166110b56113d6565b73ffffffffffffffffffffffffffffffffffffffff161461110b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110290613228565b60405180910390fd5b80600d819055507f87d3a9aa920c61935e16a84a405f79bcd3e4cb8f9e3e44503afa66b360e2539f816040516111419190613034565b60405180910390a150565b611154611b21565b73ffffffffffffffffffffffffffffffffffffffff166111726113d6565b73ffffffffffffffffffffffffffffffffffffffff16146111c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bf90613228565b60405180910390fd5b80600f819055507fc4950a720a93a37e59de1aaffcf331f0021a1480a1a92b15bcf265c8d26d1aef816040516111fe9190613034565b60405180910390a150565b60105481565b611217611b21565b73ffffffffffffffffffffffffffffffffffffffff166112356113d6565b73ffffffffffffffffffffffffffffffffffffffff161461128b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128290613228565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fb0a394b539f76b20ae47fad46f52703fbd67ed1d46e9ddcdec335e89ebfdf7f2816040516112fb91906130de565b60405180910390a150565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611356611b21565b73ffffffffffffffffffffffffffffffffffffffff166113746113d6565b73ffffffffffffffffffffffffffffffffffffffff16146113ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c190613228565b60405180910390fd5b6113d4600061242b565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611408611b21565b73ffffffffffffffffffffffffffffffffffffffff166114266113d6565b73ffffffffffffffffffffffffffffffffffffffff161461147c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147390613228565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f0c5dca4975009b82f989b2f70aef27e88d40a772c4661bf9c76767eebdd4ec75816040516114ec91906130de565b60405180910390a150565b60606004805461150690613277565b80601f016020809104026020016040519081016040528092919081815260200182805461153290613277565b801561157f5780601f106115545761010080835404028352916020019161157f565b820191906000526020600020905b81548152906001019060200180831161156257829003601f168201915b5050505050905090565b611591611b21565b73ffffffffffffffffffffffffffffffffffffffff166115af6113d6565b73ffffffffffffffffffffffffffffffffffffffff1614611605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fc90613228565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507ff044279b178a89f6e9bec4c26f38618fcb23e97fe20075dcd57b11771398fefa8160405161167591906130de565b60405180910390a150565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806116b1611b21565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176e9061340c565b60405180910390fd5b6117848286868403611b29565b60019250505092915050565b60008061179b611b21565b90506117a8818585611d80565b600191505092915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611868611b21565b73ffffffffffffffffffffffffffffffffffffffff166118866113d6565b73ffffffffffffffffffffffffffffffffffffffff16146118dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d390613228565b60405180910390fd5b801515601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515141561196f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196690613478565b60405180910390fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507fd5a54a13d8deacf8a6f700cf204a6d6c2ab86d74a187de3ea327919925af24b282826040516119f7929190613498565b60405180910390a15050565b611a0b611b21565b73ffffffffffffffffffffffffffffffffffffffff16611a296113d6565b73ffffffffffffffffffffffffffffffffffffffff1614611a7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7690613228565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae690613533565b60405180910390fd5b611af88161242b565b50565b600d5481565b60136020528060005260406000206000915054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b90906135c5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0090613657565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611ce79190613034565b60405180910390a3505050565b6000611d0084846117d9565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611d7a5781811015611d6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d63906136c3565b60405180910390fd5b611d798484848403611b29565b5b50505050565b6000611da03073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26124f1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611e115750611de16113d6565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611e4957503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611ea35750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611ef95750601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611f7b576000611f0984611306565b6064601054611f16610aee565b611f2091906136e3565b611f2a919061376c565b611f34919061379d565b905080831115611f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f709061381d565b60405180910390fd5b505b3073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015611fea5750611fba6113d6565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b801561202257503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801561206157506120316113d6565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156120bb5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156121115750601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156121675750601360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612419576000600f54600b54600e54600c54600d546121879190613344565b6121919190613344565b61219b9190613344565b6121a59190613344565b9050600061271082856121b891906136e3565b6121c2919061376c565b90506121cf86308361258b565b60006121da30611306565b90508373ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff161415801561221a57508060125411155b1561237d57612263600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684600d548461225491906136e3565b61225e919061376c565b61280c565b6122a7600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684600c548461229891906136e3565b6122a2919061376c565b61280c565b6122eb600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684600e54846122dc91906136e3565b6122e6919061376c565b61280c565b61232f600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684600f548461232091906136e3565b61232a919061376c565b61280c565b61237430600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685600b548561236591906136e3565b61236f919061376c565b61258b565b600090506123fa565b600061238887611306565b6064601054612395610aee565b61239f91906136e3565b6123a9919061376c565b6123b3919061379d565b9050808611156123f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ef9061381d565b60405180910390fd5b505b6124108787848861240b919061379d565b61258b565b50505050612426565b61242484848461258b565b505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f73ffffffffffffffffffffffffffffffffffffffff1663e6a4390584846040518363ffffffff1660e01b815260040161254292919061383d565b602060405180830381865afa15801561255f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612583919061387b565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156125fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f29061391a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561266b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612662906139ac565b60405180910390fd5b61267683838361282c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156126fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f390613a3e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461278f9190613344565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516127f39190613034565b60405180910390a3612806848484612831565b50505050565b60008111156128285761282630838360115461dead612836565b505b5050565b505050565b505050565b60008573ffffffffffffffffffffffffffffffffffffffff1663095ea7b3737a250d5630b4cf539739df2c5dacb4c659f2488d866040518363ffffffff1660e01b8152600401612887929190613a5e565b6020604051808303816000875af11580156128a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128ca9190613a9c565b50606073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff16148061295a575073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16145b15612a4e57600267ffffffffffffffff81111561297a57612979613ac9565b5b6040519080825280602002602001820160405280156129a85781602001602082028036833780820191505090505b50905086816000815181106129c0576129bf613af8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508581600181518110612a0f57612a0e613af8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612b9c565b600367ffffffffffffffff811115612a6957612a68613ac9565b5b604051908082528060200260200182016040528015612a975781602001602082028036833780820191505090505b5090508681600081518110612aaf57612aae613af8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281600181518110612b1257612b11613af8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508581600281518110612b6157612b60613af8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250505b60006103e8856103e8612baf919061379d565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663d06ca61f89866040518363ffffffff1660e01b8152600401612bfe929190613be5565b600060405180830381865afa158015612c1b573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190612c449190613d43565b60018551612c52919061379d565b81518110612c6357612c62613af8565b5b6020026020010151612c7591906136e3565b612c7f919061376c565b905060008773ffffffffffffffffffffffffffffffffffffffff166370a08231866040518263ffffffff1660e01b8152600401612cbc91906130de565b602060405180830381865afa158015612cd9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612cfd9190613d8c565b9050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff16635c11d79588848689426040518663ffffffff1660e01b8152600401612d54959493929190613db9565b600060405180830381600087803b158015612d6e57600080fd5b505af1158015612d82573d6000803e3d6000fd5b5050505060008873ffffffffffffffffffffffffffffffffffffffff166370a08231876040518263ffffffff1660e01b8152600401612dc191906130de565b602060405180830381865afa158015612dde573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e029190613d8c565b90508181612e10919061379d565b94505050505095945050505050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b612e4681612e33565b8114612e5157600080fd5b50565b600081359050612e6381612e3d565b92915050565b600060208284031215612e7f57612e7e612e29565b5b6000612e8d84828501612e54565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ed0578082015181840152602081019050612eb5565b83811115612edf576000848401525b50505050565b6000601f19601f8301169050919050565b6000612f0182612e96565b612f0b8185612ea1565b9350612f1b818560208601612eb2565b612f2481612ee5565b840191505092915050565b60006020820190508181036000830152612f498184612ef6565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f7c82612f51565b9050919050565b612f8c81612f71565b8114612f9757600080fd5b50565b600081359050612fa981612f83565b92915050565b60008060408385031215612fc657612fc5612e29565b5b6000612fd485828601612f9a565b9250506020612fe585828601612e54565b9150509250929050565b60008115159050919050565b61300481612fef565b82525050565b600060208201905061301f6000830184612ffb565b92915050565b61302e81612e33565b82525050565b60006020820190506130496000830184613025565b92915050565b60006020828403121561306557613064612e29565b5b600061307384828501612f9a565b91505092915050565b60008060006060848603121561309557613094612e29565b5b60006130a386828701612f9a565b93505060206130b486828701612f9a565b92505060406130c586828701612e54565b9150509250925092565b6130d881612f71565b82525050565b60006020820190506130f360008301846130cf565b92915050565b600060ff82169050919050565b61310f816130f9565b82525050565b600060208201905061312a6000830184613106565b92915050565b6000806040838503121561314757613146612e29565b5b600061315585828601612f9a565b925050602061316685828601612f9a565b9150509250929050565b61317981612fef565b811461318457600080fd5b50565b60008135905061319681613170565b92915050565b600080604083850312156131b3576131b2612e29565b5b60006131c185828601612f9a565b92505060206131d285828601613187565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613212602083612ea1565b915061321d826131dc565b602082019050919050565b6000602082019050818103600083015261324181613205565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061328f57607f821691505b602082108114156132a3576132a2613248565b5b50919050565b7f496e76616c696420536c69707061676500000000000000000000000000000000600082015250565b60006132df601083612ea1565b91506132ea826132a9565b602082019050919050565b6000602082019050818103600083015261330e816132d2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061334f82612e33565b915061335a83612e33565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561338f5761338e613315565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006133f6602583612ea1565b91506134018261339a565b604082019050919050565b60006020820190508181036000830152613425816133e9565b9050919050565b7f416c726561647920696e2073616d652073746174757300000000000000000000600082015250565b6000613462601683612ea1565b915061346d8261342c565b602082019050919050565b6000602082019050818103600083015261349181613455565b9050919050565b60006040820190506134ad60008301856130cf565b6134ba6020830184612ffb565b9392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061351d602683612ea1565b9150613528826134c1565b604082019050919050565b6000602082019050818103600083015261354c81613510565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006135af602483612ea1565b91506135ba82613553565b604082019050919050565b600060208201905081810360008301526135de816135a2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613641602283612ea1565b915061364c826135e5565b604082019050919050565b6000602082019050818103600083015261367081613634565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006136ad601d83612ea1565b91506136b882613677565b602082019050919050565b600060208201905081810360008301526136dc816136a0565b9050919050565b60006136ee82612e33565b91506136f983612e33565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561373257613731613315565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061377782612e33565b915061378283612e33565b9250826137925761379161373d565b5b828204905092915050565b60006137a882612e33565b91506137b383612e33565b9250828210156137c6576137c5613315565b5b828203905092915050565b7f4d6178204c696d69742052656163680000000000000000000000000000000000600082015250565b6000613807600f83612ea1565b9150613812826137d1565b602082019050919050565b60006020820190508181036000830152613836816137fa565b9050919050565b600060408201905061385260008301856130cf565b61385f60208301846130cf565b9392505050565b60008151905061387581612f83565b92915050565b60006020828403121561389157613890612e29565b5b600061389f84828501613866565b91505092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613904602583612ea1565b915061390f826138a8565b604082019050919050565b60006020820190508181036000830152613933816138f7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613996602383612ea1565b91506139a18261393a565b604082019050919050565b600060208201905081810360008301526139c581613989565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613a28602683612ea1565b9150613a33826139cc565b604082019050919050565b60006020820190508181036000830152613a5781613a1b565b9050919050565b6000604082019050613a7360008301856130cf565b613a806020830184613025565b9392505050565b600081519050613a9681613170565b92915050565b600060208284031215613ab257613ab1612e29565b5b6000613ac084828501613a87565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613b5c81612f71565b82525050565b6000613b6e8383613b53565b60208301905092915050565b6000602082019050919050565b6000613b9282613b27565b613b9c8185613b32565b9350613ba783613b43565b8060005b83811015613bd8578151613bbf8882613b62565b9750613bca83613b7a565b925050600181019050613bab565b5085935050505092915050565b6000604082019050613bfa6000830185613025565b8181036020830152613c0c8184613b87565b90509392505050565b600080fd5b613c2382612ee5565b810181811067ffffffffffffffff82111715613c4257613c41613ac9565b5b80604052505050565b6000613c55612e1f565b9050613c618282613c1a565b919050565b600067ffffffffffffffff821115613c8157613c80613ac9565b5b602082029050602081019050919050565b600080fd5b600081519050613ca681612e3d565b92915050565b6000613cbf613cba84613c66565b613c4b565b90508083825260208201905060208402830185811115613ce257613ce1613c92565b5b835b81811015613d0b5780613cf78882613c97565b845260208401935050602081019050613ce4565b5050509392505050565b600082601f830112613d2a57613d29613c15565b5b8151613d3a848260208601613cac565b91505092915050565b600060208284031215613d5957613d58612e29565b5b600082015167ffffffffffffffff811115613d7757613d76612e2e565b5b613d8384828501613d15565b91505092915050565b600060208284031215613da257613da1612e29565b5b6000613db084828501613c97565b91505092915050565b600060a082019050613dce6000830188613025565b613ddb6020830187613025565b8181036040830152613ded8186613b87565b9050613dfc60608301856130cf565b613e096080830184613025565b969550505050505056fea26469706673582212204084471693c691eaaaccad329dde16581beeeef7a063872db11f2483de5b2ba264736f6c634300080b0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000027e6a4920bde370eb7b7e3fe7ede04fe006fe926000000000000000000000000f0f9d895aca5c8678f706fb8216fa22957685a13000000000000000000000000cfeb09c3c5f0f78ad72166d55f9e6e9a60e96eec00000000000000000000000095ad61b0a150d79219dcf64e1e6cc01f0b64c4ce00000000000000000000000020561172f791f915323241e885b4f7d5187c36e10000000000000000000000000000000000000000000000000000000000000064

-----Decoded View---------------
Arg [0] : _marketingAddress (address): 0x27e6a4920bDE370EB7B7E3fE7ede04fE006fe926
Arg [1] : _cult (address): 0xf0f9D895aCa5c8678f706FB8216fa22957685A13
Arg [2] : _vemp (address): 0xcFEB09C3c5F0f78aD72166D55f9e6E9A60e96eEC
Arg [3] : _shib (address): 0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE
Arg [4] : _cal (address): 0x20561172f791f915323241E885b4f7D5187c36E1
Arg [5] : _maxSwapLimit (uint256): 100

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 00000000000000000000000027e6a4920bde370eb7b7e3fe7ede04fe006fe926
Arg [1] : 000000000000000000000000f0f9d895aca5c8678f706fb8216fa22957685a13
Arg [2] : 000000000000000000000000cfeb09c3c5f0f78ad72166d55f9e6e9a60e96eec
Arg [3] : 00000000000000000000000095ad61b0a150d79219dcf64e1e6cc01f0b64c4ce
Arg [4] : 00000000000000000000000020561172f791f915323241e885b4f7d5187c36e1
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000064


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.