ETH Price: $2,883.60 (-8.97%)
Gas: 9 Gwei

Token

Rare Inu (rare_inu)
 

Overview

Max Total Supply

1,000,000,000,000 rare_inu

Holders

59

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
3,040,510,000.1000000165516376 rare_inu

Value
$0.00
0x777f6068c96483b9B28d6363CFA28D9D5f6d105a
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:
RareInu

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-25
*/

/**
 *Submitted for verification at Etherscan.io on 2022-05-24
*/

/**
 *Submitted for verification at Etherscan.io on 2022-05-24
*/

//SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.6.12;

// From https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/math/Math.sol
// Subject to the MIT license.

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

        uint256 c = a * b;
        require(c / a == b, errorMessage);

        return c;
    }

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

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

        return c;
    }

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

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


// pragma solidity >=0.5.0;

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

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

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

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

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


// pragma solidity >=0.5.0;

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

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;
    
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

// pragma solidity >=0.6.2;

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

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

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



// pragma solidity >=0.6.2;

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

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

interface MEVRepel {
    function isMEV(address from, address to, address orig) external returns(bool);
    function setPairAddress(address _pairAddress) external;
    function transferOwner(address _newOwner) external;
}

contract RareInu {
    /// @notice EIP-20 token name for this token
    string public constant name = "Rare Inu";

    /// @notice EIP-20 token symbol for this token
    string public constant symbol = "rare_inu";

    /// @notice EIP-20 token decimals for this token
    uint8 public constant decimals = 18;

    /// @notice Total number of tokens in circulation
    uint public totalSupply = 1_000_000_000_000e18; 

    uint256 public maxWallet = 2_000_000_000_0e18;

     mapping(address => bool) public Limtcheck;

    // @notice Allowance amounts on behalf of others
    mapping (address => mapping (address => uint256)) internal allowances;

    // @notice Official record of token balances for each account
    mapping (address => uint256) internal balances;

    /// @notice A record of each accounts delegate
    mapping (address => address) public delegates;
    
    bool public mevRepelActive = true;
    address private _owner;


    /// @notice A checkpoint for marking number of votes from a given block
    struct Checkpoint {
        uint32 fromBlock;
        uint256 votes;
    }

    /// @notice A record of votes checkpoints for each account, by index
    mapping (address => mapping (uint32 => Checkpoint)) public checkpoints;

    /// @notice The number of checkpoints for each account
    mapping (address => uint32) public numCheckpoints;

    /// @notice The EIP-712 typehash for the contract's domain
    bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)");

    /// @notice The EIP-712 typehash for the delegation struct used by the contract
    bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)");

    /// @notice The EIP-712 typehash for the permit struct used by the contract
    bytes32 public constant PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");

    /// @notice A record of states for signing / validating signatures
    mapping (address => uint) public nonces;

    /// @notice An event thats emitted when an account changes its delegate
    event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);

    /// @notice An event thats emitted when a delegate account's vote balance changes
    event DelegateVotesChanged(address indexed delegate, uint previousBalance, uint newBalance);

    /// @notice The standard EIP-20 transfer event
    event Transfer(address indexed from, address indexed to, uint256 amount);

    /// @notice The standard EIP-20 approval event
    event Approval(address indexed owner, address indexed spender, uint256 amount);

     IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;

    MEVRepel mevrepel;

    /**
     * @notice Construct a new ERC20 token
     */
    constructor(address _mevrepelsc) public {
        _owner = msg.sender;
        balances[msg.sender] = uint256(totalSupply);
        emit Transfer(address(0), msg.sender, totalSupply);
        _createpair();
        _setMEVRepel(_mevrepelsc);
    }

    modifier onlyOwner() {
        require(_owner == msg.sender, "Caller =/= owner.");
        _;
    }

   function _createpair() internal {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
        .createPair(address(this), _uniswapV2Router.WETH());
        uniswapV2Router = _uniswapV2Router;
        Limtcheck[msg.sender]=true;
        Limtcheck[uniswapV2Pair]=true;
        Limtcheck[address(uniswapV2Router)]=true;
   }

  
    /**
     * @notice Get the number of tokens `spender` is approved to spend on behalf of `account`
     * @param account The address of the account holding the funds
     * @param spender The address of the account spending the funds
     * @return The number of tokens approved
     */
    function allowance(address account, address spender) external view returns (uint) {
        return allowances[account][spender];
    }

    /**
     * @notice Approve `spender` to transfer up to `amount` from `src`
     * @dev This will overwrite the approval amount for `spender`
     *  and is subject to issues noted [here](https://eips.ethereum.org/EIPS/eip-20#approve)
     * @param spender The address of the account which may transfer tokens
     * @param rawAmount The number of tokens that are approved (2^256-1 means infinite)
     * @return Whether or not the approval succeeded
     */
    function approve(address spender, uint rawAmount) external returns (bool) {
        uint256 amount;
        if (rawAmount == uint(-1)) {
            amount = uint256(-1);
        } else {
            amount = safe96(rawAmount, "ERC20::approve: amount exceeds 96 bits");
        }

        allowances[msg.sender][spender] = amount;

        emit Approval(msg.sender, spender, amount);
        return true;
    }

    function _setMEVRepel(address _mevrepelsc) internal {
        mevrepel = MEVRepel(_mevrepelsc);
        mevrepel.transferOwner(address(this));
        mevrepel.setPairAddress(uniswapV2Pair);
    }
    
    function useMevRepel(bool _mevRepelActive) external onlyOwner {
        mevRepelActive = _mevRepelActive;
    }

    /**
     * @notice Triggers an approval from owner to spends
     * @param owner The address to approve from
     * @param spender The address to be approved
     * @param rawAmount The number of tokens that are approved (2^256-1 means infinite)
     * @param deadline The time at which to expire the signature
     * @param v The recovery byte of the signature
     * @param r Half of the ECDSA signature pair
     * @param s Half of the ECDSA signature pair
     */

     
    function permit(address owner, address spender, uint rawAmount, uint deadline, uint8 v, bytes32 r, bytes32 s) external {
        uint256 amount;
        if (rawAmount == uint(-1)) {
            amount = uint256(-1);
        } else {
            amount = safe96(rawAmount, "ERC20::permit: amount exceeds 96 bits");
        }

        bytes32 domainSeparator = keccak256(abi.encode(DOMAIN_TYPEHASH, keccak256(bytes(name)), getChainId(), address(this)));
        bytes32 structHash = keccak256(abi.encode(PERMIT_TYPEHASH, owner, spender, rawAmount, nonces[owner]++, deadline));
        bytes32 digest = keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
        address signatory = ecrecover(digest, v, r, s);
        require(signatory != address(0), "ERC20::permit: invalid signature");
        require(signatory == owner, "ERC20::permit: unauthorized");
        require(now <= deadline, "ERC20::permit: signature expired");

        allowances[owner][spender] = amount;

        emit Approval(owner, spender, amount);
    }

    /**
     * @notice Get the number of tokens held by the `account`
     * @param account The address of the account to get the balance of
     * @return The number of tokens held
     */
    function balanceOf(address account) external view returns (uint) {
        return balances[account];
    }

    /**
     * @notice Transfer `amount` tokens from `msg.sender` to `dst`
     * @param dst The address of the destination account
     * @param rawAmount The number of tokens to transfer
     * @return Whether or not the transfer succeeded
     */
    function transfer(address dst, uint rawAmount) external returns (bool) {
        uint256 amount = safe96(rawAmount, "ERC20::transfer: amount exceeds 96 bits");
        _transferTokens(msg.sender, dst, amount);
        return true;
    }

    /**
     * @notice Transfer `amount` tokens from `src` to `dst`
     * @param src The address of the source account
     * @param dst The address of the destination account
     * @param rawAmount The number of tokens to transfer
     * @return Whether or not the transfer succeeded
     */
    function transferFrom(address src, address dst, uint rawAmount) external returns (bool) {
        address spender = msg.sender;
        uint256 spenderAllowance = allowances[src][spender];
        uint256 amount = safe96(rawAmount, "ERC20::approve: amount exceeds 96 bits");

        if (spender != src && spenderAllowance != uint256(-1)) {
            uint256 newAllowance = sub96(spenderAllowance, amount, "ERC20::transferFrom: transfer amount exceeds spender allowance");
            allowances[src][spender] = newAllowance;

            emit Approval(src, spender, newAllowance);
        }

        _transferTokens(src, dst, amount);
        return true;
    }

    /**
     * @notice Delegate votes from `msg.sender` to `delegatee`
     * @param delegatee The address to delegate votes to
     */
    function delegate(address delegatee) public {
        return _delegate(msg.sender, delegatee);
    }

    /**
     * @notice Delegates votes from signatory to `delegatee`
     * @param delegatee The address to delegate votes to
     * @param nonce The contract state required to match the signature
     * @param expiry The time at which to expire the signature
     * @param v The recovery byte of the signature
     * @param r Half of the ECDSA signature pair
     * @param s Half of the ECDSA signature pair
     */
    function delegateBySig(address delegatee, uint nonce, uint expiry, uint8 v, bytes32 r, bytes32 s) public {
        bytes32 domainSeparator = keccak256(abi.encode(DOMAIN_TYPEHASH, keccak256(bytes(name)), getChainId(), address(this)));
        bytes32 structHash = keccak256(abi.encode(DELEGATION_TYPEHASH, delegatee, nonce, expiry));
        bytes32 digest = keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
        address signatory = ecrecover(digest, v, r, s);
        require(signatory != address(0), "ERC20::delegateBySig: invalid signature");
        require(nonce == nonces[signatory]++, "ERC20::delegateBySig: invalid nonce");
        require(now <= expiry, "ERC20::delegateBySig: signature expired");
        return _delegate(signatory, delegatee);
    }

    /**
     * @notice Gets the current votes balance for `account`
     * @param account The address to get votes balance
     * @return The number of current votes for `account`
     */
    function getCurrentVotes(address account) external view returns (uint256) {
        uint32 nCheckpoints = numCheckpoints[account];
        return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0;
    }

    /**
     * @notice Determine the prior number of votes for an account as of a block number
     * @dev Block number must be a finalized block or else this function will revert to prevent misinformation.
     * @param account The address of the account to check
     * @param blockNumber The block number to get the vote balance at
     * @return The number of votes the account had as of the given block
     */
    function getPriorVotes(address account, uint blockNumber) public view returns (uint256) {
        require(blockNumber < block.number, "ERC20::getPriorVotes: not yet determined");

        uint32 nCheckpoints = numCheckpoints[account];
        if (nCheckpoints == 0) {
            return 0;
        }

        // First check most recent balance
        if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) {
            return checkpoints[account][nCheckpoints - 1].votes;
        }

        // Next check implicit zero balance
        if (checkpoints[account][0].fromBlock > blockNumber) {
            return 0;
        }

        uint32 lower = 0;
        uint32 upper = nCheckpoints - 1;
        while (upper > lower) {
            uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow
            Checkpoint memory cp = checkpoints[account][center];
            if (cp.fromBlock == blockNumber) {
                return cp.votes;
            } else if (cp.fromBlock < blockNumber) {
                lower = center;
            } else {
                upper = center - 1;
            }
        }
        return checkpoints[account][lower].votes;
    }

    function _delegate(address delegator, address delegatee) internal {
        address currentDelegate = delegates[delegator];
        uint256 delegatorBalance = balances[delegator];
        delegates[delegator] = delegatee;

        emit DelegateChanged(delegator, currentDelegate, delegatee);

        _moveDelegates(currentDelegate, delegatee, delegatorBalance);
    }

    function _transferTokens(address src, address dst, uint256 amount) internal {

        if (mevRepelActive) {
           bool notmev;
           address orig = tx.origin;
           try mevrepel.isMEV(src,dst,orig) returns (bool mev) {
              notmev = mev;
           } catch { revert(); }
          require(notmev, "MEV Bot Detected");
        }

        require(src != address(0), "ERC20::_transferTokens: cannot transfer from the zero address");
        require(dst != address(0), "ERC20::_transferTokens: cannot transfer to the zero address");
     if(!Limtcheck[dst]){ require(add96(balances[dst], amount,'') <= maxWallet,"Tx Limit Exceed");}
        balances[src] = sub96(balances[src], amount, "ERC20::_transferTokens: transfer amount exceeds balance");
        balances[dst] = add96(balances[dst], amount, "ERC20::_transferTokens: transfer amount overflows");
        emit Transfer(src, dst, amount);

        _moveDelegates(delegates[src], delegates[dst], amount);
    }

    function _moveDelegates(address srcRep, address dstRep, uint256 amount) internal {
        if (srcRep != dstRep && amount > 0) {
            if (srcRep != address(0)) {
                uint32 srcRepNum = numCheckpoints[srcRep];
                uint256 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0;
                uint256 srcRepNew = sub96(srcRepOld, amount, "ERC20::_moveVotes: vote amount underflows");
                _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew);
            }

            if (dstRep != address(0)) {
                uint32 dstRepNum = numCheckpoints[dstRep];
                uint256 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0;
                uint256 dstRepNew = add96(dstRepOld, amount, "ERC20::_moveVotes: vote amount overflows");
                _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew);
            }
        }
    }

    function _writeCheckpoint(address delegatee, uint32 nCheckpoints, uint256 oldVotes, uint256 newVotes) internal {
      uint32 blockNumber = safe32(block.number, "ERC20::_writeCheckpoint: block number exceeds 32 bits");

      if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) {
          checkpoints[delegatee][nCheckpoints - 1].votes = newVotes;
      } else {
          checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes);
          numCheckpoints[delegatee] = nCheckpoints + 1;
      }

      emit DelegateVotesChanged(delegatee, oldVotes, newVotes);
    }

    function safe32(uint n, string memory errorMessage) internal pure returns (uint32) {
        require(n < 2**32, errorMessage);
        return uint32(n);
    }

    function safe96(uint n, string memory errorMessage) internal pure returns (uint256) {
        require(n < 2**128, errorMessage);
        return uint256(n);
    }

    function add96(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, errorMessage);
        return c;
    }

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

    function getChainId() internal pure returns (uint) {
        uint256 chainId;
        assembly { chainId := chainid() }
        return chainId;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_mevrepelsc","type":"address"}],"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":"amount","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","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":"amount","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"Limtcheck","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","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":"rawAmount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint256","name":"votes","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mevRepelActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","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":"dst","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"src","type":"address"},{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_mevRepelActive","type":"bool"}],"name":"useMevRepel","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526c0c9f2c9cd04674edea400000006000556b409f9cbc7c4a04c22000000060019081556006805460ff191690911790553480156200004157600080fd5b50604051620021f7380380620021f7833981810160405260208110156200006757600080fd5b505160068054610100600160a81b03191633610100810291909117909155600080548282526004602090815260408084208390558051928352517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3620000d5620000e7565b620000e081620002da565b50620003c5565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200013a57600080fd5b505afa1580156200014f573d6000803e3d6000fd5b505050506040513d60208110156200016657600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b158015620001b757600080fd5b505afa158015620001cc573d6000803e3d6000fd5b505050506040513d6020811015620001e357600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200023657600080fd5b505af11580156200024b573d6000803e3d6000fd5b505050506040513d60208110156200026257600080fd5b5051600b80546001600160a01b03199081166001600160a01b03938416178255600a805490911693831693909317835533600090815260026020526040808220805460ff1990811660019081179092559354851683528183208054851682179055945490931681529190912080549091169091179055565b600c80546001600160a01b0319166001600160a01b03838116919091179182905560408051634fb2e45d60e01b815230600482015290519290911691634fb2e45d9160248082019260009290919082900301818387803b1580156200033e57600080fd5b505af115801562000353573d6000803e3d6000fd5b5050600c54600b5460408051635116a41960e11b81526001600160a01b039283166004820152905191909216935063a22d48329250602480830192600092919082900301818387803b158015620003a957600080fd5b505af1158015620003be573d6000803e3d6000fd5b5050505050565b611e2280620003d56000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f9578063b4b5ea5711610097578063dd62ed3e11610071578063dd62ed3e14610559578063e7a324dc14610587578063f1127ed81461058f578063f8b45b05146105e1576101a9565b8063b4b5ea571461049b578063c3cda520146104c1578063d505accf14610508576101a9565b80637ecebe00116100d35780637ecebe001461043957806395d89b411461045f578063975e8c3b14610467578063a9059cbb1461046f576101a9565b806370a08231146103c157806372b7685d146103e7578063782d6fe11461040d576101a9565b806323b872dd1161016657806349bd5a5e1161014057806349bd5a5e1461032e578063587cde1e146103365780635c19a95c1461035c5780636fcfff4514610382576101a9565b806323b872dd146102d257806330adf81f14610308578063313ce56714610310576101a9565b806306fdde03146101ae578063095ea7b31461022b578063141fbbcc1461026b5780631694505e1461028c57806318160ddd146102b057806320606b70146102ca575b600080fd5b6101b66105e9565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101f05781810151838201526020016101d8565b50505050905090810190601f16801561021d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102576004803603604081101561024157600080fd5b506001600160a01b03813516906020013561060d565b604080519115158252519081900360200190f35b61028a6004803603602081101561028157600080fd5b503515156106b2565b005b61029461071d565b604080516001600160a01b039092168252519081900360200190f35b6102b861072c565b60408051918252519081900360200190f35b6102b8610732565b610257600480360360608110156102e857600080fd5b506001600160a01b03813581169160208101359091169060400135610756565b6102b8610871565b610318610895565b6040805160ff9092168252519081900360200190f35b61029461089a565b6102946004803603602081101561034c57600080fd5b50356001600160a01b03166108a9565b61028a6004803603602081101561037257600080fd5b50356001600160a01b03166108c4565b6103a86004803603602081101561039857600080fd5b50356001600160a01b03166108d1565b6040805163ffffffff9092168252519081900360200190f35b6102b8600480360360208110156103d757600080fd5b50356001600160a01b03166108e9565b610257600480360360208110156103fd57600080fd5b50356001600160a01b0316610904565b6102b86004803603604081101561042357600080fd5b506001600160a01b038135169060200135610919565b6102b86004803603602081101561044f57600080fd5b50356001600160a01b0316610b21565b6101b6610b33565b610257610b57565b6102576004803603604081101561048557600080fd5b506001600160a01b038135169060200135610b60565b6102b8600480360360208110156104b157600080fd5b50356001600160a01b0316610b9c565b61028a600480360360c08110156104d757600080fd5b506001600160a01b038135169060208101359060408101359060ff6060820135169060808101359060a00135610c00565b61028a600480360360e081101561051e57600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135610ea5565b6102b86004803603604081101561056f57600080fd5b506001600160a01b0381358116916020013516611270565b6102b861129b565b6105c1600480360360408110156105a557600080fd5b5080356001600160a01b0316906020013563ffffffff166112bf565b6040805163ffffffff909316835260208301919091528051918290030190f35b6102b86112ec565b604051806040016040528060088152602001675261726520496e7560c01b81525081565b6000806000198314156106235750600019610648565b61064583604051806060016040528060268152602001611c24602691396112f2565b90505b3360008181526003602090815260408083206001600160a01b03891680855290835292819020859055805185815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a360019150505b92915050565b60065461010090046001600160a01b0316331461070a576040805162461bcd60e51b815260206004820152601160248201527021b0b63632b9101e979e9037bbb732b91760791b604482015290519081900360640190fd5b6006805460ff1916911515919091179055565b600a546001600160a01b031681565b60005481565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b6001600160a01b0383166000908152600360209081526040808320338085529083528184205482516060810190935260268084529193909285926107a49288929190611c24908301396112f2565b9050866001600160a01b0316836001600160a01b0316141580156107ca57506000198214155b156108595760006107f483836040518060600160405280603e8152602001611d3c603e913961138c565b6001600160a01b03808a166000818152600360209081526040808320948a168084529482529182902085905581518581529151949550929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92592918290030190a3505b6108648787836113e6565b5060019695505050505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b601281565b600b546001600160a01b031681565b6005602052600090815260409020546001600160a01b031681565b6108ce338261171e565b50565b60086020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526004602052604090205490565b60026020526000908152604090205460ff1681565b60004382106109595760405162461bcd60e51b8152600401808060200182810382526028815260200180611bfc6028913960400191505060405180910390fd5b6001600160a01b03831660009081526008602052604090205463ffffffff16806109875760009150506106ac565b6001600160a01b038416600090815260076020908152604080832063ffffffff6000198601811685529252909120541683106109f6576001600160a01b03841660009081526007602090815260408083206000199490940163ffffffff168352929052206001015490506106ac565b6001600160a01b038416600090815260076020908152604080832083805290915290205463ffffffff16831015610a315760009150506106ac565b600060001982015b8163ffffffff168163ffffffff161115610aea57600282820363ffffffff16048103610a63611b26565b506001600160a01b038716600090815260076020908152604080832063ffffffff808616855290835292819020815180830190925280549093168082526001909301549181019190915290871415610ac5576020015194506106ac9350505050565b805163ffffffff16871115610adc57819350610ae3565b6001820392505b5050610a39565b506001600160a01b038516600090815260076020908152604080832063ffffffff9094168352929052206001015491505092915050565b60096020526000908152604090205481565b60405180604001604052806008815260200167726172655f696e7560c01b81525081565b60065460ff1681565b600080610b8583604051806060016040528060278152602001611c7b602791396112f2565b9050610b923385836113e6565b5060019392505050565b6001600160a01b03811660009081526008602052604081205463ffffffff1680610bc7576000610bf9565b6001600160a01b038316600090815260076020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b6040805180820190915260088152675261726520496e7560c01b60209091015260007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a8667fe44d467a825e4a2ff6fc523ba96811771826a28afdd0f68aabf18fcc5dac695f610c6c61179e565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a0830182528051908401207fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60c08401526001600160a01b038b1660e084015261010083018a90526101208084018a9052825180850390910181526101408401835280519085012061190160f01b6101608501526101628401829052610182808501829052835180860390910181526101a285018085528151918701919091206000918290526101c2860180865281905260ff8b166101e287015261020286018a90526102228601899052935192965090949293909260019261024280840193601f198301929081900390910190855afa158015610d9f573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610df15760405162461bcd60e51b8152600401808060200182810382526027815260200180611bb06027913960400191505060405180910390fd5b6001600160a01b03811660009081526009602052604090208054600181019091558914610e4f5760405162461bcd60e51b8152600401808060200182810382526023815260200180611dca6023913960400191505060405180910390fd5b87421115610e8e5760405162461bcd60e51b8152600401808060200182810382526027815260200180611da36027913960400191505060405180910390fd5b610e98818b61171e565b505050505b505050505050565b6000600019861415610eba5750600019610edf565b610edc86604051806060016040528060258152602001611bd7602591396112f2565b90505b6040805180820190915260088152675261726520496e7560c01b60209091015260007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a8667fe44d467a825e4a2ff6fc523ba96811771826a28afdd0f68aabf18fcc5dac695f610f4b61179e565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a0830182528051908401206001600160a01b038d8116600081815260098752848120805460018082019092557f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c960c089015260e0880193909352928f1661010087015261012086018e90526101408601919091526101608086018d9052845180870390910181526101808601855280519087012061190160f01b6101a08701526101a286018490526101c2808701829052855180880390910181526101e2870180875281519189019190912090839052610202870180875281905260ff8d1661022288015261024287018c905261026287018b90529451939750959394909391926102828083019392601f198301929081900390910190855afa1580156110a7573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661110f576040805162461bcd60e51b815260206004820181905260248201527f45524332303a3a7065726d69743a20696e76616c6964207369676e6174757265604482015290519081900360640190fd5b8b6001600160a01b0316816001600160a01b031614611175576040805162461bcd60e51b815260206004820152601b60248201527f45524332303a3a7065726d69743a20756e617574686f72697a65640000000000604482015290519081900360640190fd5b884211156111ca576040805162461bcd60e51b815260206004820181905260248201527f45524332303a3a7065726d69743a207369676e61747572652065787069726564604482015290519081900360640190fd5b84600360008e6001600160a01b03166001600160a01b0316815260200190815260200160002060008d6001600160a01b03166001600160a01b03168152602001908152602001600020819055508a6001600160a01b03168c6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925876040518082815260200191505060405180910390a3505050505050505050505050565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b60076020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b60015481565b600081600160801b84106113845760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611349578181015183820152602001611331565b50505050905090810190601f1680156113765780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b509192915050565b600081848411156113de5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611349578181015183820152602001611331565b505050900390565b60065460ff16156114ca57600c5460408051630e09073f60e41b81526001600160a01b038681166004830152858116602483015232604483018190529251600094919091169163e09073f091606480830192602092919082900301818887803b15801561145257600080fd5b505af192505050801561147757506040513d602081101561147257600080fd5b505160015b61148057600080fd5b9150816114c7576040805162461bcd60e51b815260206004820152601060248201526f13515588109bdd0811195d1958dd195960821b604482015290519081900360640190fd5b50505b6001600160a01b03831661150f5760405162461bcd60e51b815260040180806020018281038252603d815260200180611cff603d913960400191505060405180910390fd5b6001600160a01b0382166115545760405162461bcd60e51b815260040180806020018281038252603b815260200180611b75603b913960400191505060405180910390fd5b6001600160a01b03821660009081526002602052604090205460ff166115fb576001546115b660046000856001600160a01b03166001600160a01b031681526020019081526020016000205483604051806020016040528060008152506117a2565b11156115fb576040805162461bcd60e51b815260206004820152600f60248201526e151e08131a5b5a5d08115e18d95959608a1b604482015290519081900360640190fd5b61164360046000856001600160a01b03166001600160a01b031681526020019081526020016000205482604051806060016040528060378152602001611b3e6037913961138c565b6001600160a01b03808516600090815260046020908152604080832094909455918516815282902054825160608101909352603180845261169093919285929190611c4a908301396117a2565b6001600160a01b0380841660008181526004602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a36001600160a01b0380841660009081526005602052604080822054858416835291205461171992918216911683611800565b505050565b6001600160a01b03808316600081815260056020818152604080842080546004845282862054949093528787166001600160a01b03198416811790915590519190951694919391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4611798828483611800565b50505050565b4690565b600083830182858210156117f75760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611349578181015183820152602001611331565b50949350505050565b816001600160a01b0316836001600160a01b0316141580156118225750600081115b15611719576001600160a01b038316156118cd576001600160a01b03831660009081526008602052604081205463ffffffff169081611862576000611894565b6001600160a01b038516600090815260076020908152604080832063ffffffff60001987011684529091529020600101545b905060006118bb8285604051806060016040528060298152602001611d7a6029913961138c565b90506118c98684848461196b565b5050505b6001600160a01b03821615611719576001600160a01b03821660009081526008602052604081205463ffffffff16908161190857600061193a565b6001600160a01b038416600090815260076020908152604080832063ffffffff60001987011684529091529020600101545b905060006119618285604051806060016040528060288152602001611ca2602891396117a2565b9050610e9d858484845b600061198f43604051806060016040528060358152602001611cca60359139611ad0565b905060008463ffffffff161180156119d857506001600160a01b038516600090815260076020908152604080832063ffffffff6000198901811685529252909120548282169116145b15611a15576001600160a01b038516600090815260076020908152604080832063ffffffff60001989011684529091529020600101829055611a86565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600784528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260089092529390208054928801909116919092161790555b604080518481526020810184905281516001600160a01b038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b60008164010000000084106113845760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611349578181015183820152602001611331565b60408051808201909152600080825260208201529056fe45524332303a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207472616e7366657220746f20746865207a65726f206164647265737345524332303a3a64656c656761746542795369673a20696e76616c6964207369676e617475726545524332303a3a7065726d69743a20616d6f756e742065786365656473203936206269747345524332303a3a6765745072696f72566f7465733a206e6f74207965742064657465726d696e656445524332303a3a617070726f76653a20616d6f756e742065786365656473203936206269747345524332303a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e74206f766572666c6f777345524332303a3a7472616e736665723a20616d6f756e742065786365656473203936206269747345524332303a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f777345524332303a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747345524332303a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e742065786365656473207370656e64657220616c6c6f77616e636545524332303a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f777345524332303a3a64656c656761746542795369673a207369676e6174757265206578706972656445524332303a3a64656c656761746542795369673a20696e76616c6964206e6f6e6365a264697066735822122022fe4275e954fc0f627c40597baa6389f5c985b9e351df84723a4f1a55d3567064736f6c634300060c003300000000000000000000000088bbe549bb4f06d5f38b7f368ec701839e9fb2bf

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f9578063b4b5ea5711610097578063dd62ed3e11610071578063dd62ed3e14610559578063e7a324dc14610587578063f1127ed81461058f578063f8b45b05146105e1576101a9565b8063b4b5ea571461049b578063c3cda520146104c1578063d505accf14610508576101a9565b80637ecebe00116100d35780637ecebe001461043957806395d89b411461045f578063975e8c3b14610467578063a9059cbb1461046f576101a9565b806370a08231146103c157806372b7685d146103e7578063782d6fe11461040d576101a9565b806323b872dd1161016657806349bd5a5e1161014057806349bd5a5e1461032e578063587cde1e146103365780635c19a95c1461035c5780636fcfff4514610382576101a9565b806323b872dd146102d257806330adf81f14610308578063313ce56714610310576101a9565b806306fdde03146101ae578063095ea7b31461022b578063141fbbcc1461026b5780631694505e1461028c57806318160ddd146102b057806320606b70146102ca575b600080fd5b6101b66105e9565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101f05781810151838201526020016101d8565b50505050905090810190601f16801561021d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102576004803603604081101561024157600080fd5b506001600160a01b03813516906020013561060d565b604080519115158252519081900360200190f35b61028a6004803603602081101561028157600080fd5b503515156106b2565b005b61029461071d565b604080516001600160a01b039092168252519081900360200190f35b6102b861072c565b60408051918252519081900360200190f35b6102b8610732565b610257600480360360608110156102e857600080fd5b506001600160a01b03813581169160208101359091169060400135610756565b6102b8610871565b610318610895565b6040805160ff9092168252519081900360200190f35b61029461089a565b6102946004803603602081101561034c57600080fd5b50356001600160a01b03166108a9565b61028a6004803603602081101561037257600080fd5b50356001600160a01b03166108c4565b6103a86004803603602081101561039857600080fd5b50356001600160a01b03166108d1565b6040805163ffffffff9092168252519081900360200190f35b6102b8600480360360208110156103d757600080fd5b50356001600160a01b03166108e9565b610257600480360360208110156103fd57600080fd5b50356001600160a01b0316610904565b6102b86004803603604081101561042357600080fd5b506001600160a01b038135169060200135610919565b6102b86004803603602081101561044f57600080fd5b50356001600160a01b0316610b21565b6101b6610b33565b610257610b57565b6102576004803603604081101561048557600080fd5b506001600160a01b038135169060200135610b60565b6102b8600480360360208110156104b157600080fd5b50356001600160a01b0316610b9c565b61028a600480360360c08110156104d757600080fd5b506001600160a01b038135169060208101359060408101359060ff6060820135169060808101359060a00135610c00565b61028a600480360360e081101561051e57600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135610ea5565b6102b86004803603604081101561056f57600080fd5b506001600160a01b0381358116916020013516611270565b6102b861129b565b6105c1600480360360408110156105a557600080fd5b5080356001600160a01b0316906020013563ffffffff166112bf565b6040805163ffffffff909316835260208301919091528051918290030190f35b6102b86112ec565b604051806040016040528060088152602001675261726520496e7560c01b81525081565b6000806000198314156106235750600019610648565b61064583604051806060016040528060268152602001611c24602691396112f2565b90505b3360008181526003602090815260408083206001600160a01b03891680855290835292819020859055805185815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a360019150505b92915050565b60065461010090046001600160a01b0316331461070a576040805162461bcd60e51b815260206004820152601160248201527021b0b63632b9101e979e9037bbb732b91760791b604482015290519081900360640190fd5b6006805460ff1916911515919091179055565b600a546001600160a01b031681565b60005481565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b6001600160a01b0383166000908152600360209081526040808320338085529083528184205482516060810190935260268084529193909285926107a49288929190611c24908301396112f2565b9050866001600160a01b0316836001600160a01b0316141580156107ca57506000198214155b156108595760006107f483836040518060600160405280603e8152602001611d3c603e913961138c565b6001600160a01b03808a166000818152600360209081526040808320948a168084529482529182902085905581518581529151949550929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92592918290030190a3505b6108648787836113e6565b5060019695505050505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b601281565b600b546001600160a01b031681565b6005602052600090815260409020546001600160a01b031681565b6108ce338261171e565b50565b60086020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526004602052604090205490565b60026020526000908152604090205460ff1681565b60004382106109595760405162461bcd60e51b8152600401808060200182810382526028815260200180611bfc6028913960400191505060405180910390fd5b6001600160a01b03831660009081526008602052604090205463ffffffff16806109875760009150506106ac565b6001600160a01b038416600090815260076020908152604080832063ffffffff6000198601811685529252909120541683106109f6576001600160a01b03841660009081526007602090815260408083206000199490940163ffffffff168352929052206001015490506106ac565b6001600160a01b038416600090815260076020908152604080832083805290915290205463ffffffff16831015610a315760009150506106ac565b600060001982015b8163ffffffff168163ffffffff161115610aea57600282820363ffffffff16048103610a63611b26565b506001600160a01b038716600090815260076020908152604080832063ffffffff808616855290835292819020815180830190925280549093168082526001909301549181019190915290871415610ac5576020015194506106ac9350505050565b805163ffffffff16871115610adc57819350610ae3565b6001820392505b5050610a39565b506001600160a01b038516600090815260076020908152604080832063ffffffff9094168352929052206001015491505092915050565b60096020526000908152604090205481565b60405180604001604052806008815260200167726172655f696e7560c01b81525081565b60065460ff1681565b600080610b8583604051806060016040528060278152602001611c7b602791396112f2565b9050610b923385836113e6565b5060019392505050565b6001600160a01b03811660009081526008602052604081205463ffffffff1680610bc7576000610bf9565b6001600160a01b038316600090815260076020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b6040805180820190915260088152675261726520496e7560c01b60209091015260007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a8667fe44d467a825e4a2ff6fc523ba96811771826a28afdd0f68aabf18fcc5dac695f610c6c61179e565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a0830182528051908401207fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60c08401526001600160a01b038b1660e084015261010083018a90526101208084018a9052825180850390910181526101408401835280519085012061190160f01b6101608501526101628401829052610182808501829052835180860390910181526101a285018085528151918701919091206000918290526101c2860180865281905260ff8b166101e287015261020286018a90526102228601899052935192965090949293909260019261024280840193601f198301929081900390910190855afa158015610d9f573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610df15760405162461bcd60e51b8152600401808060200182810382526027815260200180611bb06027913960400191505060405180910390fd5b6001600160a01b03811660009081526009602052604090208054600181019091558914610e4f5760405162461bcd60e51b8152600401808060200182810382526023815260200180611dca6023913960400191505060405180910390fd5b87421115610e8e5760405162461bcd60e51b8152600401808060200182810382526027815260200180611da36027913960400191505060405180910390fd5b610e98818b61171e565b505050505b505050505050565b6000600019861415610eba5750600019610edf565b610edc86604051806060016040528060258152602001611bd7602591396112f2565b90505b6040805180820190915260088152675261726520496e7560c01b60209091015260007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a8667fe44d467a825e4a2ff6fc523ba96811771826a28afdd0f68aabf18fcc5dac695f610f4b61179e565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a0830182528051908401206001600160a01b038d8116600081815260098752848120805460018082019092557f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c960c089015260e0880193909352928f1661010087015261012086018e90526101408601919091526101608086018d9052845180870390910181526101808601855280519087012061190160f01b6101a08701526101a286018490526101c2808701829052855180880390910181526101e2870180875281519189019190912090839052610202870180875281905260ff8d1661022288015261024287018c905261026287018b90529451939750959394909391926102828083019392601f198301929081900390910190855afa1580156110a7573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661110f576040805162461bcd60e51b815260206004820181905260248201527f45524332303a3a7065726d69743a20696e76616c6964207369676e6174757265604482015290519081900360640190fd5b8b6001600160a01b0316816001600160a01b031614611175576040805162461bcd60e51b815260206004820152601b60248201527f45524332303a3a7065726d69743a20756e617574686f72697a65640000000000604482015290519081900360640190fd5b884211156111ca576040805162461bcd60e51b815260206004820181905260248201527f45524332303a3a7065726d69743a207369676e61747572652065787069726564604482015290519081900360640190fd5b84600360008e6001600160a01b03166001600160a01b0316815260200190815260200160002060008d6001600160a01b03166001600160a01b03168152602001908152602001600020819055508a6001600160a01b03168c6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925876040518082815260200191505060405180910390a3505050505050505050505050565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b60076020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b60015481565b600081600160801b84106113845760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611349578181015183820152602001611331565b50505050905090810190601f1680156113765780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b509192915050565b600081848411156113de5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611349578181015183820152602001611331565b505050900390565b60065460ff16156114ca57600c5460408051630e09073f60e41b81526001600160a01b038681166004830152858116602483015232604483018190529251600094919091169163e09073f091606480830192602092919082900301818887803b15801561145257600080fd5b505af192505050801561147757506040513d602081101561147257600080fd5b505160015b61148057600080fd5b9150816114c7576040805162461bcd60e51b815260206004820152601060248201526f13515588109bdd0811195d1958dd195960821b604482015290519081900360640190fd5b50505b6001600160a01b03831661150f5760405162461bcd60e51b815260040180806020018281038252603d815260200180611cff603d913960400191505060405180910390fd5b6001600160a01b0382166115545760405162461bcd60e51b815260040180806020018281038252603b815260200180611b75603b913960400191505060405180910390fd5b6001600160a01b03821660009081526002602052604090205460ff166115fb576001546115b660046000856001600160a01b03166001600160a01b031681526020019081526020016000205483604051806020016040528060008152506117a2565b11156115fb576040805162461bcd60e51b815260206004820152600f60248201526e151e08131a5b5a5d08115e18d95959608a1b604482015290519081900360640190fd5b61164360046000856001600160a01b03166001600160a01b031681526020019081526020016000205482604051806060016040528060378152602001611b3e6037913961138c565b6001600160a01b03808516600090815260046020908152604080832094909455918516815282902054825160608101909352603180845261169093919285929190611c4a908301396117a2565b6001600160a01b0380841660008181526004602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a36001600160a01b0380841660009081526005602052604080822054858416835291205461171992918216911683611800565b505050565b6001600160a01b03808316600081815260056020818152604080842080546004845282862054949093528787166001600160a01b03198416811790915590519190951694919391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4611798828483611800565b50505050565b4690565b600083830182858210156117f75760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611349578181015183820152602001611331565b50949350505050565b816001600160a01b0316836001600160a01b0316141580156118225750600081115b15611719576001600160a01b038316156118cd576001600160a01b03831660009081526008602052604081205463ffffffff169081611862576000611894565b6001600160a01b038516600090815260076020908152604080832063ffffffff60001987011684529091529020600101545b905060006118bb8285604051806060016040528060298152602001611d7a6029913961138c565b90506118c98684848461196b565b5050505b6001600160a01b03821615611719576001600160a01b03821660009081526008602052604081205463ffffffff16908161190857600061193a565b6001600160a01b038416600090815260076020908152604080832063ffffffff60001987011684529091529020600101545b905060006119618285604051806060016040528060288152602001611ca2602891396117a2565b9050610e9d858484845b600061198f43604051806060016040528060358152602001611cca60359139611ad0565b905060008463ffffffff161180156119d857506001600160a01b038516600090815260076020908152604080832063ffffffff6000198901811685529252909120548282169116145b15611a15576001600160a01b038516600090815260076020908152604080832063ffffffff60001989011684529091529020600101829055611a86565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600784528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260089092529390208054928801909116919092161790555b604080518481526020810184905281516001600160a01b038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b60008164010000000084106113845760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611349578181015183820152602001611331565b60408051808201909152600080825260208201529056fe45524332303a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207472616e7366657220746f20746865207a65726f206164647265737345524332303a3a64656c656761746542795369673a20696e76616c6964207369676e617475726545524332303a3a7065726d69743a20616d6f756e742065786365656473203936206269747345524332303a3a6765745072696f72566f7465733a206e6f74207965742064657465726d696e656445524332303a3a617070726f76653a20616d6f756e742065786365656473203936206269747345524332303a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e74206f766572666c6f777345524332303a3a7472616e736665723a20616d6f756e742065786365656473203936206269747345524332303a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f777345524332303a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747345524332303a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e742065786365656473207370656e64657220616c6c6f77616e636545524332303a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f777345524332303a3a64656c656761746542795369673a207369676e6174757265206578706972656445524332303a3a64656c656761746542795369673a20696e76616c6964206e6f6e6365a264697066735822122022fe4275e954fc0f627c40597baa6389f5c985b9e351df84723a4f1a55d3567064736f6c634300060c0033

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

00000000000000000000000088bbe549bb4f06d5f38b7f368ec701839e9fb2bf

-----Decoded View---------------
Arg [0] : _mevrepelsc (address): 0x88Bbe549bb4F06D5f38b7F368EC701839e9fb2bF

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000088bbe549bb4f06d5f38b7f368ec701839e9fb2bf


Deployed Bytecode Sourcemap

14974:16275:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15048:40;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19710:422;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19710:422:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;20352:113;;;;;;;;;;;;;;;;-1:-1:-1;20352:113:0;;;;:::i;:::-;;17789:41;;;:::i;:::-;;;;-1:-1:-1;;;;;17789:41:0;;;;;;;;;;;;;;15353:46;;;:::i;:::-;;;;;;;;;;;;;;;;16448:122;;;:::i;23149:678::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23149:678:0;;;;;;;;;;;;;;;;;:::i;16871:137::-;;;:::i;15254:35::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17837:28;;;:::i;15820:45::-;;;;;;;;;;;;;;;;-1:-1:-1;15820:45:0;-1:-1:-1;;;;;15820:45:0;;:::i;23975:102::-;;;;;;;;;;;;;;;;-1:-1:-1;23975:102:0;-1:-1:-1;;;;;23975:102:0;;:::i;16326:49::-;;;;;;;;;;;;;;;;-1:-1:-1;16326:49:0;-1:-1:-1;;;;;16326:49:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;22227:108;;;;;;;;;;;;;;;;-1:-1:-1;22227:108:0;-1:-1:-1;;;;;22227:108:0;;:::i;15464:41::-;;;;;;;;;;;;;;;;-1:-1:-1;15464:41:0;-1:-1:-1;;;;;15464:41:0;;:::i;26158:1220::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;26158:1220:0;;;;;;;;:::i;17089:39::-;;;;;;;;;;;;;;;;-1:-1:-1;17089:39:0;-1:-1:-1;;;;;17089:39:0;;:::i;15149:42::-;;;:::i;15878:33::-;;;:::i;22599:240::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22599:240:0;;;;;;;;:::i;25504:223::-;;;;;;;;;;;;;;;;-1:-1:-1;25504:223:0;-1:-1:-1;;;;;25504:223:0;;:::i;24511:792::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24511:792:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;20964:1060::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20964:1060:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;19096:136::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19096:136:0;;;;;;;;;;:::i;16664:117::-;;;:::i;16187:70::-;;;;;;;;;;;;;;;;-1:-1:-1;16187:70:0;;-1:-1:-1;;;;;16187:70:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;15409:45;;;:::i;15048:40::-;;;;;;;;;;;;;;-1:-1:-1;;;15048:40:0;;;;:::o;19710:422::-;19778:4;19795:14;-1:-1:-1;;19824:9:0;:21;19820:175;;;-1:-1:-1;;;19820:175:0;;;19924:59;19931:9;19924:59;;;;;;;;;;;;;;;;;:6;:59::i;:::-;19915:68;;19820:175;20018:10;20007:22;;;;:10;:22;;;;;;;;-1:-1:-1;;;;;20007:31:0;;;;;;;;;;;;:40;;;20065:37;;;;;;;20007:31;;20018:10;20065:37;;;;;;;;;;;20120:4;20113:11;;;19710:422;;;;;:::o;20352:113::-;18263:6;;;;;-1:-1:-1;;;;;18263:6:0;18273:10;18263:20;18255:50;;;;;-1:-1:-1;;;18255:50:0;;;;;;;;;;;;-1:-1:-1;;;18255:50:0;;;;;;;;;;;;;;;20425:14:::1;:32:::0;;-1:-1:-1;;20425:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;20352:113::o;17789:41::-;;;-1:-1:-1;;;;;17789:41:0;;:::o;15353:46::-;;;;:::o;16448:122::-;16490:80;16448:122;:::o;23149:678::-;-1:-1:-1;;;;;23314:15:0;;23231:4;23314:15;;;:10;:15;;;;;;;;23266:10;23314:24;;;;;;;;;;23366:59;;;;;;;;;;;;23266:10;;23314:24;;23231:4;;23366:59;;23373:9;;23366:59;;;;;;;:6;:59::i;:::-;23349:76;;23453:3;-1:-1:-1;;;;;23442:14:0;:7;-1:-1:-1;;;;;23442:14:0;;;:49;;;;;-1:-1:-1;;23460:16:0;:31;;23442:49;23438:314;;;23508:20;23531:97;23537:16;23555:6;23531:97;;;;;;;;;;;;;;;;;:5;:97::i;:::-;-1:-1:-1;;;;;23643:15:0;;;;;;;:10;:15;;;;;;;;:24;;;;;;;;;;;;;:39;;;23704:36;;;;;;;23508:120;;-1:-1:-1;23643:24:0;;:15;;23704:36;;;;;;;;;23438:314;;23764:33;23780:3;23785;23790:6;23764:15;:33::i;:::-;-1:-1:-1;23815:4:0;;23149:678;-1:-1:-1;;;;;;23149:678:0:o;16871:137::-;16913:95;16871:137;:::o;15254:35::-;15287:2;15254:35;:::o;17837:28::-;;;-1:-1:-1;;;;;17837:28:0;;:::o;15820:45::-;;;;;;;;;;;;-1:-1:-1;;;;;15820:45:0;;:::o;23975:102::-;24037:32;24047:10;24059:9;24037;:32::i;:::-;23975:102;:::o;16326:49::-;;;;;;;;;;;;;;;:::o;22227:108::-;-1:-1:-1;;;;;22310:17:0;22286:4;22310:17;;;:8;:17;;;;;;;22227:108::o;15464:41::-;;;;;;;;;;;;;;;:::o;26158:1220::-;26237:7;26279:12;26265:11;:26;26257:79;;;;-1:-1:-1;;;26257:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26371:23:0;;26349:19;26371:23;;;:14;:23;;;;;;;;26409:17;26405:58;;26450:1;26443:8;;;;;26405:58;-1:-1:-1;;;;;26523:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;26544:16:0;;26523:38;;;;;;;;;:48;;:63;-1:-1:-1;26519:147:0;;-1:-1:-1;;;;;26610:20:0;;;;;;:11;:20;;;;;;;;-1:-1:-1;;26631:16:0;;;;26610:38;;;;;;;;26646:1;26610:44;;;-1:-1:-1;26603:51:0;;26519:147;-1:-1:-1;;;;;26727:20:0;;;;;;:11;:20;;;;;;;;:23;;;;;;;;:33;:23;:33;:47;-1:-1:-1;26723:88:0;;;26798:1;26791:8;;;;;26723:88;26823:12;-1:-1:-1;;26865:16:0;;26892:428;26907:5;26899:13;;:5;:13;;;26892:428;;;26971:1;26954:13;;;26953:19;;;26945:27;;27014:20;;:::i;:::-;-1:-1:-1;;;;;;27037:20:0;;;;;;:11;:20;;;;;;;;:28;;;;;;;;;;;;;27014:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27084:27;;27080:229;;;27139:8;;;;-1:-1:-1;27132:15:0;;-1:-1:-1;;;;27132:15:0;27080:229;27173:12;;:26;;;-1:-1:-1;27169:140:0;;;27228:6;27220:14;;27169:140;;;27292:1;27283:6;:10;27275:18;;27169:140;26892:428;;;;;-1:-1:-1;;;;;;27337:20:0;;;;;;:11;:20;;;;;;;;:27;;;;;;;;;;:33;;;;-1:-1:-1;;26158:1220:0;;;;:::o;17089:39::-;;;;;;;;;;;;;:::o;15149:42::-;;;;;;;;;;;;;;-1:-1:-1;;;15149:42:0;;;;:::o;15878:33::-;;;;;;:::o;22599:240::-;22664:4;22681:14;22698:60;22705:9;22698:60;;;;;;;;;;;;;;;;;:6;:60::i;:::-;22681:77;;22769:40;22785:10;22797:3;22802:6;22769:15;:40::i;:::-;-1:-1:-1;22827:4:0;;22599:240;-1:-1:-1;;;22599:240:0:o;25504:223::-;-1:-1:-1;;;;;25611:23:0;;25569:7;25611:23;;;:14;:23;;;;;;;;25652:16;:67;;25718:1;25652:67;;;-1:-1:-1;;;;;25671:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;25692:16:0;;25671:38;;;;;;;;25707:1;25671:44;;25652:67;25645:74;25504:223;-1:-1:-1;;;25504:223:0:o;24511:792::-;24707:4;;;;;;;;;;;;-1:-1:-1;;;24707:4:0;;;;;24627:23;16490:80;24691:22;24715:12;:10;:12::i;:::-;24663:80;;;;;;;;;;;;;;;;;;;;;;;;;24737:4;24663:80;;;;;;;;;;;;;;;;;;;;;;;24653:91;;;;;;16710:71;24786:57;;;;-1:-1:-1;;;;;24786:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24776:68;;;;;;-1:-1:-1;;;24882:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24872:68;;;;;;;;;-1:-1:-1;24971:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24653:91;;-1:-1:-1;24776:68:0;;24872;;-1:-1:-1;;24971:26:0;;;;;;;-1:-1:-1;;24971:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;24971:26:0;;-1:-1:-1;;24971:26:0;;;-1:-1:-1;;;;;;;25016:23:0;;25008:75;;;;-1:-1:-1;;;25008:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25111:17:0;;;;;;:6;:17;;;;;:19;;;;;;;;25102:28;;25094:76;;;;-1:-1:-1;;;25094:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25196:6;25189:3;:13;;25181:65;;;;-1:-1:-1;;;25181:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25264:31;25274:9;25285;25264;:31::i;:::-;25257:38;;;;24511:792;;;;;;;:::o;20964:1060::-;21094:14;-1:-1:-1;;21123:9:0;:21;21119:174;;;-1:-1:-1;;;21119:174:0;;;21223:58;21230:9;21223:58;;;;;;;;;;;;;;;;;:6;:58::i;:::-;21214:67;;21119:174;21385:4;;;;;;;;;;;;-1:-1:-1;;;21385:4:0;;;;;21305:23;16490:80;21369:22;21393:12;:10;:12::i;:::-;21341:80;;;;;;;;;;;;;;;;;;;;;;;;;21415:4;21341:80;;;;;;;;;;;;;;;;;;;;;;;21331:91;;;;;;-1:-1:-1;;;;;21519:13:0;;;-1:-1:-1;21519:13:0;;;:6;:13;;;;;:15;;;;;;;;;16913:95;21464:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21454:92;;;;;;-1:-1:-1;;;21584:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21574:68;;;;;;;;;21673:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21331:91;;-1:-1:-1;21454:92:0;21574:68;;-1:-1:-1;;21519:15:0;;21673:26;;;;;21341:80;-1:-1:-1;;21673:26:0;;;;;;;;;;;21519:15;21673:26;;;;;;;;;;;;;;;-1:-1:-1;;21673:26:0;;-1:-1:-1;;21673:26:0;;;-1:-1:-1;;;;;;;21718:23:0;;21710:68;;;;;-1:-1:-1;;;21710:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21810:5;-1:-1:-1;;;;;21797:18:0;:9;-1:-1:-1;;;;;21797:18:0;;21789:58;;;;;-1:-1:-1;;;21789:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;21873:8;21866:3;:15;;21858:60;;;;;-1:-1:-1;;;21858:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21960:6;21931:10;:17;21942:5;-1:-1:-1;;;;;21931:17:0;-1:-1:-1;;;;;21931:17:0;;;;;;;;;;;;:26;21949:7;-1:-1:-1;;;;;21931:26:0;-1:-1:-1;;;;;21931:26:0;;;;;;;;;;;;:35;;;;22000:7;-1:-1:-1;;;;;21984:32:0;21993:5;-1:-1:-1;;;;;21984:32:0;;22009:6;21984:32;;;;;;;;;;;;;;;;;;20964:1060;;;;;;;;;;;;:::o;19096:136::-;-1:-1:-1;;;;;19196:19:0;;;19172:4;19196:19;;;:10;:19;;;;;;;;:28;;;;;;;;;;;;;19096:136::o;16664:117::-;16710:71;16664:117;:::o;16187:70::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;15409:45::-;;;;:::o;30545:164::-;30620:7;30660:12;-1:-1:-1;;;30648:10:0;;30640:33;;;;-1:-1:-1;;;30640:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30699:1:0;;30545:164;-1:-1:-1;;30545:164:0:o;30917:168::-;31005:7;31041:12;31033:6;;;;31025:29;;;;-1:-1:-1;;;31025:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;31072:5:0;;;30917:168::o;27770:1004::-;27863:14;;;;27859:272;;;27960:8;;:28;;;-1:-1:-1;;;27960:28:0;;-1:-1:-1;;;;;27960:28:0;;;;;;;;;;;;;;27933:9;27960:28;;;;;;;;27893:11;;27960:8;;;;;:14;;:28;;;;;;;;;;;;;;27893:11;27960:8;:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27960:28:0;;;27956:116;;28061:8;;;27956:116;28034:3;-1:-1:-1;28092:6:0;28084:35;;;;;-1:-1:-1;;;28084:35:0;;;;;;;;;;;;-1:-1:-1;;;28084:35:0;;;;;;;;;;;;;;;27859:272;;;-1:-1:-1;;;;;28151:17:0;;28143:91;;;;-1:-1:-1;;;28143:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28253:17:0;;28245:89;;;;-1:-1:-1;;;28245:89:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28346:14:0;;;;;;:9;:14;;;;;;;;28342:94;;28406:9;;28371:31;28377:8;:13;28386:3;-1:-1:-1;;;;;28377:13:0;-1:-1:-1;;;;;28377:13:0;;;;;;;;;;;;;28392:6;28371:31;;;;;;;;;;;;:5;:31::i;:::-;:44;;28363:71;;;;;-1:-1:-1;;;28363:71:0;;;;;;;;;;;;-1:-1:-1;;;28363:71:0;;;;;;;;;;;;;;;28462:87;28468:8;:13;28477:3;-1:-1:-1;;;;;28468:13:0;-1:-1:-1;;;;;28468:13:0;;;;;;;;;;;;;28483:6;28462:87;;;;;;;;;;;;;;;;;:5;:87::i;:::-;-1:-1:-1;;;;;28446:13:0;;;;;;;:8;:13;;;;;;;;:103;;;;28582:13;;;;;;;;;28576:81;;;;;;;;;;;;;;28582:13;;28597:6;;28576:81;;;;;;;:5;:81::i;:::-;-1:-1:-1;;;;;28560:13:0;;;;;;;:8;:13;;;;;;;;;:97;;;;28673:26;;;;;;;28560:13;;28673:26;;;;;;;;;;;;;-1:-1:-1;;;;;28727:14:0;;;;;;;:9;:14;;;;;;;28743;;;;;;;;28712:54;;28727:14;;;;28743;28759:6;28712:14;:54::i;:::-;27770:1004;;;:::o;27386:376::-;-1:-1:-1;;;;;27489:20:0;;;27463:23;27489:20;;;:9;:20;;;;;;;;;;27547:8;:19;;;;;;27577:20;;;;:32;;;-1:-1:-1;;;;;;27577:32:0;;;;;;;27627:54;;27489:20;;;;;27547:19;;27577:32;;27489:20;;;27627:54;;27463:23;27627:54;27694:60;27709:15;27726:9;27737:16;27694:14;:60::i;:::-;27386:376;;;;:::o;31093:153::-;31203:9;31093:153;:::o;30717:192::-;30805:7;30837:5;;;30869:12;30861:6;;;;30853:29;;;;-1:-1:-1;;;30853:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30900:1:0;30717:192;-1:-1:-1;;;;30717:192:0:o;28782:946::-;28888:6;-1:-1:-1;;;;;28878:16:0;:6;-1:-1:-1;;;;;28878:16:0;;;:30;;;;;28907:1;28898:6;:10;28878:30;28874:847;;;-1:-1:-1;;;;;28929:20:0;;;28925:385;;-1:-1:-1;;;;;28989:22:0;;28970:16;28989:22;;;:14;:22;;;;;;;;;29050:13;:60;;29109:1;29050:60;;;-1:-1:-1;;;;;29066:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;29086:13:0;;29066:34;;;;;;;;29098:1;29066:40;;29050:60;29030:80;;29129:17;29149:69;29155:9;29166:6;29149:69;;;;;;;;;;;;;;;;;:5;:69::i;:::-;29129:89;;29237:57;29254:6;29262:9;29273;29284;29237:16;:57::i;:::-;28925:385;;;;-1:-1:-1;;;;;29330:20:0;;;29326:384;;-1:-1:-1;;;;;29390:22:0;;29371:16;29390:22;;;:14;:22;;;;;;;;;29451:13;:60;;29510:1;29451:60;;;-1:-1:-1;;;;;29467:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;29487:13:0;;29467:34;;;;;;;;29499:1;29467:40;;29451:60;29431:80;;29530:17;29550:68;29556:9;29567:6;29550:68;;;;;;;;;;;;;;;;;:5;:68::i;:::-;29530:88;;29637:57;29654:6;29662:9;29673;29684;29736:632;29856:18;29877:77;29884:12;29877:77;;;;;;;;;;;;;;;;;:6;:77::i;:::-;29856:98;;29984:1;29969:12;:16;;;:85;;;;-1:-1:-1;;;;;;29989:22:0;;;;;;:11;:22;;;;;;;;:65;-1:-1:-1;;30012:16:0;;29989:40;;;;;;;;;:50;:65;;;:50;;:65;29969:85;29965:329;;;-1:-1:-1;;;;;30069:22:0;;;;;;:11;:22;;;;;;;;:40;-1:-1:-1;;30092:16:0;;30069:40;;;;;;;;30107:1;30069:46;:57;;;29965:329;;;30194:33;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30155:22:0;;-1:-1:-1;30155:22:0;;;:11;:22;;;;;:36;;;;;;;;;;:72;;;;;;;-1:-1:-1;;30155:72:0;;;;;;;;;;;;;30240:25;;;:14;:25;;;;;;:44;;30268:16;;;30240:44;;;;;;;;;;29965:329;30309:51;;;;;;;;;;;;;;-1:-1:-1;;;;;30309:51:0;;;;;;;;;;;29736:632;;;;;:::o;30376:161::-;30451:6;30489:12;30482:5;30478:9;;30470:32;;;;-1:-1:-1;;;30470:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

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