ETH Price: $2,800.87 (-0.22%)
 

Overview

Max Total Supply

20,000,000,000 T7s

Holders

7

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
100,000,000 T7s

Value
$0.00
0x016606acc6b0cfe537acc221e3bf1bb44b4049ee
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:
The7s

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-10-20
*/

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

contract The7s {
    /// @notice EIP-20 token name for this token
    string public constant name = "The 7s";

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

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

    /// @notice Total number of tokens in circulation
    uint public totalSupply = 20000000000e18; 

    uint256 public maxWallet = 600000000e18;

     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;


    /// @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;

    address public Owner;

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

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

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

     function renounceOwnership() external  {
         require(Owner==msg.sender,"Owner only access");
         Owner=address(0);
     }

    function updateMaxwallet(uint256 _amount) external {
         require(Owner==msg.sender,"Owner only access");
         maxWallet=_amount;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"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":"Owner","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"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":"renounceOwnership","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":"uint256","name":"_amount","type":"uint256"}],"name":"updateMaxwallet","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526b409f9cbc7c4a04c2200000006000556b01f04ef12cb04cf1580000006001553480156200003157600080fd5b5060008054338083526004602090815260408085208490558051938452519193927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a3620000876200009f565b600b80546001600160a01b0319163317905562000292565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620000f257600080fd5b505afa15801562000107573d6000803e3d6000fd5b505050506040513d60208110156200011e57600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156200016f57600080fd5b505afa15801562000184573d6000803e3d6000fd5b505050506040513d60208110156200019b57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b158015620001ee57600080fd5b505af115801562000203573d6000803e3d6000fd5b505050506040513d60208110156200021a57600080fd5b5051600a80546001600160a01b03199081166001600160a01b039384161782556009805490911693831693909317835533600090815260026020526040808220805460ff1990811660019081179092559354851683528183208054851682179055945490931681529190912080549091169091179055565b611dac80620002a26000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c8063715018a6116100f9578063b4b5ea5711610097578063dd62ed3e11610071578063dd62ed3e1461057a578063e7a324dc146105a8578063f1127ed8146105b0578063f8b45b0514610602576101c4565b8063b4b5ea57146104bc578063c3cda520146104e2578063d505accf14610529576101c4565b80637ecebe00116100d35780637ecebe001461045a57806395d89b4114610480578063a9059cbb14610488578063b4a99a4e146104b4576101c4565b8063715018a61461040057806372b7685d14610408578063782d6fe11461042e576101c4565b806330adf81f11610166578063587cde1e11610140578063587cde1e1461034f5780635c19a95c146103755780636fcfff451461039b57806370a08231146103da576101c4565b806330adf81f14610321578063313ce5671461032957806349bd5a5e14610347576101c4565b80631694505e116101a25780631694505e146102a557806318160ddd146102c957806320606b70146102e357806323b872dd146102eb576101c4565b8063029fc836146101c957806306fdde03146101e8578063095ea7b314610265575b600080fd5b6101e6600480360360208110156101df57600080fd5b503561060a565b005b6101f0610662565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561022a578181015183820152602001610212565b50505050905090810190601f1680156102575780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102916004803603604081101561027b57600080fd5b506001600160a01b038135169060200135610684565b604080519115158252519081900360200190f35b6102ad610729565b604080516001600160a01b039092168252519081900360200190f35b6102d1610738565b60408051918252519081900360200190f35b6102d161073e565b6102916004803603606081101561030157600080fd5b506001600160a01b03813581169160208101359091169060400135610762565b6102d161087d565b6103316108a1565b6040805160ff9092168252519081900360200190f35b6102ad6108a6565b6102ad6004803603602081101561036557600080fd5b50356001600160a01b03166108b5565b6101e66004803603602081101561038b57600080fd5b50356001600160a01b03166108d0565b6103c1600480360360208110156103b157600080fd5b50356001600160a01b03166108dd565b6040805163ffffffff9092168252519081900360200190f35b6102d1600480360360208110156103f057600080fd5b50356001600160a01b03166108f5565b6101e6610910565b6102916004803603602081101561041e57600080fd5b50356001600160a01b0316610975565b6102d16004803603604081101561044457600080fd5b506001600160a01b03813516906020013561098a565b6102d16004803603602081101561047057600080fd5b50356001600160a01b0316610b92565b6101f0610ba4565b6102916004803603604081101561049e57600080fd5b506001600160a01b038135169060200135610bc3565b6102ad610bff565b6102d1600480360360208110156104d257600080fd5b50356001600160a01b0316610c0e565b6101e6600480360360c08110156104f857600080fd5b506001600160a01b038135169060208101359060408101359060ff6060820135169060808101359060a00135610c72565b6101e6600480360360e081101561053f57600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135610f15565b6102d16004803603604081101561059057600080fd5b506001600160a01b03813581169160200135166112de565b6102d1611309565b6105e2600480360360408110156105c657600080fd5b5080356001600160a01b0316906020013563ffffffff1661132d565b6040805163ffffffff909316835260208301919091528051918290030190f35b6102d161135a565b600b546001600160a01b0316331461065d576040805162461bcd60e51b81526020600482015260116024820152704f776e6572206f6e6c792061636365737360781b604482015290519081900360640190fd5b600155565b6040518060400160405280600681526020016554686520377360d01b81525081565b60008060001983141561069a57506000196106bf565b6106bc83604051806060016040528060268152602001611bae60269139611360565b90505b3360008181526003602090815260408083206001600160a01b03891680855290835292819020859055805185815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a360019150505b92915050565b6009546001600160a01b031681565b60005481565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b6001600160a01b0383166000908152600360209081526040808320338085529083528184205482516060810190935260268084529193909285926107b09288929190611bae90830139611360565b9050866001600160a01b0316836001600160a01b0316141580156107d657506000198214155b1561086557600061080083836040518060600160405280603e8152602001611cc6603e91396113fa565b6001600160a01b03808a166000818152600360209081526040808320948a168084529482529182902085905581518581529151949550929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92592918290030190a3505b610870878783611454565b5060019695505050505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b601281565b600a546001600160a01b031681565b6005602052600090815260409020546001600160a01b031681565b6108da33826116a8565b50565b60076020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526004602052604090205490565b600b546001600160a01b03163314610963576040805162461bcd60e51b81526020600482015260116024820152704f776e6572206f6e6c792061636365737360781b604482015290519081900360640190fd5b600b80546001600160a01b0319169055565b60026020526000908152604090205460ff1681565b60004382106109ca5760405162461bcd60e51b8152600401808060200182810382526028815260200180611b866028913960400191505060405180910390fd5b6001600160a01b03831660009081526007602052604090205463ffffffff16806109f8576000915050610723565b6001600160a01b038416600090815260066020908152604080832063ffffffff600019860181168552925290912054168310610a67576001600160a01b03841660009081526006602090815260408083206000199490940163ffffffff16835292905220600101549050610723565b6001600160a01b038416600090815260066020908152604080832083805290915290205463ffffffff16831015610aa2576000915050610723565b600060001982015b8163ffffffff168163ffffffff161115610b5b57600282820363ffffffff16048103610ad4611ab0565b506001600160a01b038716600090815260066020908152604080832063ffffffff808616855290835292819020815180830190925280549093168082526001909301549181019190915290871415610b36576020015194506107239350505050565b805163ffffffff16871115610b4d57819350610b54565b6001820392505b5050610aaa565b506001600160a01b038516600090815260066020908152604080832063ffffffff9094168352929052206001015491505092915050565b60086020526000908152604090205481565b6040518060400160405280600381526020016254377360e81b81525081565b600080610be883604051806060016040528060278152602001611c0560279139611360565b9050610bf5338583611454565b5060019392505050565b600b546001600160a01b031681565b6001600160a01b03811660009081526007602052604081205463ffffffff1680610c39576000610c6b565b6001600160a01b038316600090815260066020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b60408051808201909152600681526554686520377360d01b60209091015260007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a8667fb4355ec557214485769fa73a92b8444bf62a3ea0dcfe35cc22a95f1b9acb9fee610cdc611728565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a0830182528051908401207fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60c08401526001600160a01b038b1660e084015261010083018a90526101208084018a9052825180850390910181526101408401835280519085012061190160f01b6101608501526101628401829052610182808501829052835180860390910181526101a285018085528151918701919091206000918290526101c2860180865281905260ff8b166101e287015261020286018a90526102228601899052935192965090949293909260019261024280840193601f198301929081900390910190855afa158015610e0f573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610e615760405162461bcd60e51b8152600401808060200182810382526027815260200180611b3a6027913960400191505060405180910390fd5b6001600160a01b03811660009081526008602052604090208054600181019091558914610ebf5760405162461bcd60e51b8152600401808060200182810382526023815260200180611d546023913960400191505060405180910390fd5b87421115610efe5760405162461bcd60e51b8152600401808060200182810382526027815260200180611d2d6027913960400191505060405180910390fd5b610f08818b6116a8565b505050505b505050505050565b6000600019861415610f2a5750600019610f4f565b610f4c86604051806060016040528060258152602001611b6160259139611360565b90505b60408051808201909152600681526554686520377360d01b60209091015260007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a8667fb4355ec557214485769fa73a92b8444bf62a3ea0dcfe35cc22a95f1b9acb9fee610fb9611728565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a0830182528051908401206001600160a01b038d8116600081815260088752848120805460018082019092557f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c960c089015260e0880193909352928f1661010087015261012086018e90526101408601919091526101608086018d9052845180870390910181526101808601855280519087012061190160f01b6101a08701526101a286018490526101c2808701829052855180880390910181526101e2870180875281519189019190912090839052610202870180875281905260ff8d1661022288015261024287018c905261026287018b90529451939750959394909391926102828083019392601f198301929081900390910190855afa158015611115573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661117d576040805162461bcd60e51b815260206004820181905260248201527f45524332303a3a7065726d69743a20696e76616c6964207369676e6174757265604482015290519081900360640190fd5b8b6001600160a01b0316816001600160a01b0316146111e3576040805162461bcd60e51b815260206004820152601b60248201527f45524332303a3a7065726d69743a20756e617574686f72697a65640000000000604482015290519081900360640190fd5b88421115611238576040805162461bcd60e51b815260206004820181905260248201527f45524332303a3a7065726d69743a207369676e61747572652065787069726564604482015290519081900360640190fd5b84600360008e6001600160a01b03166001600160a01b0316815260200190815260200160002060008d6001600160a01b03166001600160a01b03168152602001908152602001600020819055508a6001600160a01b03168c6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925876040518082815260200191505060405180910390a3505050505050505050505050565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b60066020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b60015481565b600081600160801b84106113f25760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156113b757818101518382015260200161139f565b50505050905090810190601f1680156113e45780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b509192915050565b6000818484111561144c5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156113b757818101518382015260200161139f565b505050900390565b6001600160a01b0383166114995760405162461bcd60e51b815260040180806020018281038252603d815260200180611c89603d913960400191505060405180910390fd5b6001600160a01b0382166114de5760405162461bcd60e51b815260040180806020018281038252603b815260200180611aff603b913960400191505060405180910390fd5b6001600160a01b03821660009081526002602052604090205460ff166115855760015461154060046000856001600160a01b03166001600160a01b0316815260200190815260200160002054836040518060200160405280600081525061172c565b1115611585576040805162461bcd60e51b815260206004820152600f60248201526e151e08131a5b5a5d08115e18d95959608a1b604482015290519081900360640190fd5b6115cd60046000856001600160a01b03166001600160a01b031681526020019081526020016000205482604051806060016040528060378152602001611ac8603791396113fa565b6001600160a01b03808516600090815260046020908152604080832094909455918516815282902054825160608101909352603180845261161a93919285929190611bd49083013961172c565b6001600160a01b0380841660008181526004602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a36001600160a01b038084166000908152600560205260408082205485841683529120546116a39291821691168361178a565b505050565b6001600160a01b03808316600081815260056020818152604080842080546004845282862054949093528787166001600160a01b03198416811790915590519190951694919391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a461172282848361178a565b50505050565b4690565b600083830182858210156117815760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156113b757818101518382015260200161139f565b50949350505050565b816001600160a01b0316836001600160a01b0316141580156117ac5750600081115b156116a3576001600160a01b03831615611857576001600160a01b03831660009081526007602052604081205463ffffffff1690816117ec57600061181e565b6001600160a01b038516600090815260066020908152604080832063ffffffff60001987011684529091529020600101545b905060006118458285604051806060016040528060298152602001611d04602991396113fa565b9050611853868484846118f5565b5050505b6001600160a01b038216156116a3576001600160a01b03821660009081526007602052604081205463ffffffff1690816118925760006118c4565b6001600160a01b038416600090815260066020908152604080832063ffffffff60001987011684529091529020600101545b905060006118eb8285604051806060016040528060288152602001611c2c6028913961172c565b9050610f0d858484845b600061191943604051806060016040528060358152602001611c5460359139611a5a565b905060008463ffffffff1611801561196257506001600160a01b038516600090815260066020908152604080832063ffffffff6000198901811685529252909120548282169116145b1561199f576001600160a01b038516600090815260066020908152604080832063ffffffff60001989011684529091529020600101829055611a10565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600684528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260079092529390208054928801909116919092161790555b604080518481526020810184905281516001600160a01b038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b60008164010000000084106113f25760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156113b757818101518382015260200161139f565b60408051808201909152600080825260208201529056fe45524332303a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207472616e7366657220746f20746865207a65726f206164647265737345524332303a3a64656c656761746542795369673a20696e76616c6964207369676e617475726545524332303a3a7065726d69743a20616d6f756e742065786365656473203936206269747345524332303a3a6765745072696f72566f7465733a206e6f74207965742064657465726d696e656445524332303a3a617070726f76653a20616d6f756e742065786365656473203936206269747345524332303a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e74206f766572666c6f777345524332303a3a7472616e736665723a20616d6f756e742065786365656473203936206269747345524332303a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f777345524332303a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747345524332303a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e742065786365656473207370656e64657220616c6c6f77616e636545524332303a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f777345524332303a3a64656c656761746542795369673a207369676e6174757265206578706972656445524332303a3a64656c656761746542795369673a20696e76616c6964206e6f6e6365a264697066735822122005e54344dde4ffda6bcd92f37ec24ab8c63bb06c1817915bf977d6fc117ef5e464736f6c634300060c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c45760003560e01c8063715018a6116100f9578063b4b5ea5711610097578063dd62ed3e11610071578063dd62ed3e1461057a578063e7a324dc146105a8578063f1127ed8146105b0578063f8b45b0514610602576101c4565b8063b4b5ea57146104bc578063c3cda520146104e2578063d505accf14610529576101c4565b80637ecebe00116100d35780637ecebe001461045a57806395d89b4114610480578063a9059cbb14610488578063b4a99a4e146104b4576101c4565b8063715018a61461040057806372b7685d14610408578063782d6fe11461042e576101c4565b806330adf81f11610166578063587cde1e11610140578063587cde1e1461034f5780635c19a95c146103755780636fcfff451461039b57806370a08231146103da576101c4565b806330adf81f14610321578063313ce5671461032957806349bd5a5e14610347576101c4565b80631694505e116101a25780631694505e146102a557806318160ddd146102c957806320606b70146102e357806323b872dd146102eb576101c4565b8063029fc836146101c957806306fdde03146101e8578063095ea7b314610265575b600080fd5b6101e6600480360360208110156101df57600080fd5b503561060a565b005b6101f0610662565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561022a578181015183820152602001610212565b50505050905090810190601f1680156102575780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102916004803603604081101561027b57600080fd5b506001600160a01b038135169060200135610684565b604080519115158252519081900360200190f35b6102ad610729565b604080516001600160a01b039092168252519081900360200190f35b6102d1610738565b60408051918252519081900360200190f35b6102d161073e565b6102916004803603606081101561030157600080fd5b506001600160a01b03813581169160208101359091169060400135610762565b6102d161087d565b6103316108a1565b6040805160ff9092168252519081900360200190f35b6102ad6108a6565b6102ad6004803603602081101561036557600080fd5b50356001600160a01b03166108b5565b6101e66004803603602081101561038b57600080fd5b50356001600160a01b03166108d0565b6103c1600480360360208110156103b157600080fd5b50356001600160a01b03166108dd565b6040805163ffffffff9092168252519081900360200190f35b6102d1600480360360208110156103f057600080fd5b50356001600160a01b03166108f5565b6101e6610910565b6102916004803603602081101561041e57600080fd5b50356001600160a01b0316610975565b6102d16004803603604081101561044457600080fd5b506001600160a01b03813516906020013561098a565b6102d16004803603602081101561047057600080fd5b50356001600160a01b0316610b92565b6101f0610ba4565b6102916004803603604081101561049e57600080fd5b506001600160a01b038135169060200135610bc3565b6102ad610bff565b6102d1600480360360208110156104d257600080fd5b50356001600160a01b0316610c0e565b6101e6600480360360c08110156104f857600080fd5b506001600160a01b038135169060208101359060408101359060ff6060820135169060808101359060a00135610c72565b6101e6600480360360e081101561053f57600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135610f15565b6102d16004803603604081101561059057600080fd5b506001600160a01b03813581169160200135166112de565b6102d1611309565b6105e2600480360360408110156105c657600080fd5b5080356001600160a01b0316906020013563ffffffff1661132d565b6040805163ffffffff909316835260208301919091528051918290030190f35b6102d161135a565b600b546001600160a01b0316331461065d576040805162461bcd60e51b81526020600482015260116024820152704f776e6572206f6e6c792061636365737360781b604482015290519081900360640190fd5b600155565b6040518060400160405280600681526020016554686520377360d01b81525081565b60008060001983141561069a57506000196106bf565b6106bc83604051806060016040528060268152602001611bae60269139611360565b90505b3360008181526003602090815260408083206001600160a01b03891680855290835292819020859055805185815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a360019150505b92915050565b6009546001600160a01b031681565b60005481565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b6001600160a01b0383166000908152600360209081526040808320338085529083528184205482516060810190935260268084529193909285926107b09288929190611bae90830139611360565b9050866001600160a01b0316836001600160a01b0316141580156107d657506000198214155b1561086557600061080083836040518060600160405280603e8152602001611cc6603e91396113fa565b6001600160a01b03808a166000818152600360209081526040808320948a168084529482529182902085905581518581529151949550929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92592918290030190a3505b610870878783611454565b5060019695505050505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b601281565b600a546001600160a01b031681565b6005602052600090815260409020546001600160a01b031681565b6108da33826116a8565b50565b60076020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526004602052604090205490565b600b546001600160a01b03163314610963576040805162461bcd60e51b81526020600482015260116024820152704f776e6572206f6e6c792061636365737360781b604482015290519081900360640190fd5b600b80546001600160a01b0319169055565b60026020526000908152604090205460ff1681565b60004382106109ca5760405162461bcd60e51b8152600401808060200182810382526028815260200180611b866028913960400191505060405180910390fd5b6001600160a01b03831660009081526007602052604090205463ffffffff16806109f8576000915050610723565b6001600160a01b038416600090815260066020908152604080832063ffffffff600019860181168552925290912054168310610a67576001600160a01b03841660009081526006602090815260408083206000199490940163ffffffff16835292905220600101549050610723565b6001600160a01b038416600090815260066020908152604080832083805290915290205463ffffffff16831015610aa2576000915050610723565b600060001982015b8163ffffffff168163ffffffff161115610b5b57600282820363ffffffff16048103610ad4611ab0565b506001600160a01b038716600090815260066020908152604080832063ffffffff808616855290835292819020815180830190925280549093168082526001909301549181019190915290871415610b36576020015194506107239350505050565b805163ffffffff16871115610b4d57819350610b54565b6001820392505b5050610aaa565b506001600160a01b038516600090815260066020908152604080832063ffffffff9094168352929052206001015491505092915050565b60086020526000908152604090205481565b6040518060400160405280600381526020016254377360e81b81525081565b600080610be883604051806060016040528060278152602001611c0560279139611360565b9050610bf5338583611454565b5060019392505050565b600b546001600160a01b031681565b6001600160a01b03811660009081526007602052604081205463ffffffff1680610c39576000610c6b565b6001600160a01b038316600090815260066020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b60408051808201909152600681526554686520377360d01b60209091015260007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a8667fb4355ec557214485769fa73a92b8444bf62a3ea0dcfe35cc22a95f1b9acb9fee610cdc611728565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a0830182528051908401207fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60c08401526001600160a01b038b1660e084015261010083018a90526101208084018a9052825180850390910181526101408401835280519085012061190160f01b6101608501526101628401829052610182808501829052835180860390910181526101a285018085528151918701919091206000918290526101c2860180865281905260ff8b166101e287015261020286018a90526102228601899052935192965090949293909260019261024280840193601f198301929081900390910190855afa158015610e0f573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610e615760405162461bcd60e51b8152600401808060200182810382526027815260200180611b3a6027913960400191505060405180910390fd5b6001600160a01b03811660009081526008602052604090208054600181019091558914610ebf5760405162461bcd60e51b8152600401808060200182810382526023815260200180611d546023913960400191505060405180910390fd5b87421115610efe5760405162461bcd60e51b8152600401808060200182810382526027815260200180611d2d6027913960400191505060405180910390fd5b610f08818b6116a8565b505050505b505050505050565b6000600019861415610f2a5750600019610f4f565b610f4c86604051806060016040528060258152602001611b6160259139611360565b90505b60408051808201909152600681526554686520377360d01b60209091015260007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a8667fb4355ec557214485769fa73a92b8444bf62a3ea0dcfe35cc22a95f1b9acb9fee610fb9611728565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a0830182528051908401206001600160a01b038d8116600081815260088752848120805460018082019092557f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c960c089015260e0880193909352928f1661010087015261012086018e90526101408601919091526101608086018d9052845180870390910181526101808601855280519087012061190160f01b6101a08701526101a286018490526101c2808701829052855180880390910181526101e2870180875281519189019190912090839052610202870180875281905260ff8d1661022288015261024287018c905261026287018b90529451939750959394909391926102828083019392601f198301929081900390910190855afa158015611115573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661117d576040805162461bcd60e51b815260206004820181905260248201527f45524332303a3a7065726d69743a20696e76616c6964207369676e6174757265604482015290519081900360640190fd5b8b6001600160a01b0316816001600160a01b0316146111e3576040805162461bcd60e51b815260206004820152601b60248201527f45524332303a3a7065726d69743a20756e617574686f72697a65640000000000604482015290519081900360640190fd5b88421115611238576040805162461bcd60e51b815260206004820181905260248201527f45524332303a3a7065726d69743a207369676e61747572652065787069726564604482015290519081900360640190fd5b84600360008e6001600160a01b03166001600160a01b0316815260200190815260200160002060008d6001600160a01b03166001600160a01b03168152602001908152602001600020819055508a6001600160a01b03168c6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925876040518082815260200191505060405180910390a3505050505050505050505050565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b60066020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b60015481565b600081600160801b84106113f25760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156113b757818101518382015260200161139f565b50505050905090810190601f1680156113e45780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b509192915050565b6000818484111561144c5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156113b757818101518382015260200161139f565b505050900390565b6001600160a01b0383166114995760405162461bcd60e51b815260040180806020018281038252603d815260200180611c89603d913960400191505060405180910390fd5b6001600160a01b0382166114de5760405162461bcd60e51b815260040180806020018281038252603b815260200180611aff603b913960400191505060405180910390fd5b6001600160a01b03821660009081526002602052604090205460ff166115855760015461154060046000856001600160a01b03166001600160a01b0316815260200190815260200160002054836040518060200160405280600081525061172c565b1115611585576040805162461bcd60e51b815260206004820152600f60248201526e151e08131a5b5a5d08115e18d95959608a1b604482015290519081900360640190fd5b6115cd60046000856001600160a01b03166001600160a01b031681526020019081526020016000205482604051806060016040528060378152602001611ac8603791396113fa565b6001600160a01b03808516600090815260046020908152604080832094909455918516815282902054825160608101909352603180845261161a93919285929190611bd49083013961172c565b6001600160a01b0380841660008181526004602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a36001600160a01b038084166000908152600560205260408082205485841683529120546116a39291821691168361178a565b505050565b6001600160a01b03808316600081815260056020818152604080842080546004845282862054949093528787166001600160a01b03198416811790915590519190951694919391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a461172282848361178a565b50505050565b4690565b600083830182858210156117815760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156113b757818101518382015260200161139f565b50949350505050565b816001600160a01b0316836001600160a01b0316141580156117ac5750600081115b156116a3576001600160a01b03831615611857576001600160a01b03831660009081526007602052604081205463ffffffff1690816117ec57600061181e565b6001600160a01b038516600090815260066020908152604080832063ffffffff60001987011684529091529020600101545b905060006118458285604051806060016040528060298152602001611d04602991396113fa565b9050611853868484846118f5565b5050505b6001600160a01b038216156116a3576001600160a01b03821660009081526007602052604081205463ffffffff1690816118925760006118c4565b6001600160a01b038416600090815260066020908152604080832063ffffffff60001987011684529091529020600101545b905060006118eb8285604051806060016040528060288152602001611c2c6028913961172c565b9050610f0d858484845b600061191943604051806060016040528060358152602001611c5460359139611a5a565b905060008463ffffffff1611801561196257506001600160a01b038516600090815260066020908152604080832063ffffffff6000198901811685529252909120548282169116145b1561199f576001600160a01b038516600090815260066020908152604080832063ffffffff60001989011684529091529020600101829055611a10565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600684528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260079092529390208054928801909116919092161790555b604080518481526020810184905281516001600160a01b038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b60008164010000000084106113f25760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156113b757818101518382015260200161139f565b60408051808201909152600080825260208201529056fe45524332303a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207472616e7366657220746f20746865207a65726f206164647265737345524332303a3a64656c656761746542795369673a20696e76616c6964207369676e617475726545524332303a3a7065726d69743a20616d6f756e742065786365656473203936206269747345524332303a3a6765745072696f72566f7465733a206e6f74207965742064657465726d696e656445524332303a3a617070726f76653a20616d6f756e742065786365656473203936206269747345524332303a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e74206f766572666c6f777345524332303a3a7472616e736665723a20616d6f756e742065786365656473203936206269747345524332303a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f777345524332303a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747345524332303a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e742065786365656473207370656e64657220616c6c6f77616e636545524332303a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f777345524332303a3a64656c656761746542795369673a207369676e6174757265206578706972656445524332303a3a64656c656761746542795369673a20696e76616c6964206e6f6e6365a264697066735822122005e54344dde4ffda6bcd92f37ec24ab8c63bb06c1817915bf977d6fc117ef5e464736f6c634300060c0033

Deployed Bytecode Sourcemap

14603:15691:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30143:146;;;;;;;;;;;;;;;;-1:-1:-1;30143:146:0;;:::i;:::-;;14675:38;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19084:422;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19084:422:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;17322:41;;;:::i;:::-;;;;-1:-1:-1;;;;;17322:41:0;;;;;;;;;;;;;;14973:40;;;:::i;:::-;;;;;;;;;;;;;;;;15981:122;;;:::i;22181:678::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22181:678:0;;;;;;;;;;;;;;;;;:::i;16404:137::-;;;:::i;14874:35::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17370:28;;;:::i;15428:45::-;;;;;;;;;;;;;;;;-1:-1:-1;15428:45:0;-1:-1:-1;;;;;15428:45:0;;:::i;23007:102::-;;;;;;;;;;;;;;;;-1:-1:-1;23007:102:0;-1:-1:-1;;;;;23007:102:0;;:::i;15859:49::-;;;;;;;;;;;;;;;;-1:-1:-1;15859:49:0;-1:-1:-1;;;;;15859:49:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;21259:108;;;;;;;;;;;;;;;;-1:-1:-1;21259:108:0;-1:-1:-1;;;;;21259:108:0;;:::i;30001:134::-;;;:::i;15072:41::-;;;;;;;;;;;;;;;;-1:-1:-1;15072:41:0;-1:-1:-1;;;;;15072:41:0;;:::i;25190:1220::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25190:1220:0;;;;;;;;:::i;16622:39::-;;;;;;;;;;;;;;;;-1:-1:-1;16622:39:0;-1:-1:-1;;;;;16622:39:0;;:::i;14774:37::-;;;:::i;21631:240::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;21631:240:0;;;;;;;;:::i;17407:20::-;;;:::i;24536:223::-;;;;;;;;;;;;;;;;-1:-1:-1;24536:223:0;-1:-1:-1;;;;;24536:223:0;;:::i;23543:792::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23543:792:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;19996:1060::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19996:1060:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;18470:136::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18470:136:0;;;;;;;;;;:::i;16197:117::-;;;:::i;15720:70::-;;;;;;;;;;;;;;;;-1:-1:-1;15720:70:0;;-1:-1:-1;;;;;15720:70:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;15023:39;;;:::i;30143:146::-;30214:5;;-1:-1:-1;;;;;30214:5:0;30221:10;30214:17;30206:46;;;;;-1:-1:-1;;;30206:46:0;;;;;;;;;;;;-1:-1:-1;;;30206:46:0;;;;;;;;;;;;;;;30264:9;:17;30143:146::o;14675:38::-;;;;;;;;;;;;;;-1:-1:-1;;;14675:38:0;;;;:::o;19084:422::-;19152:4;19169:14;-1:-1:-1;;19198:9:0;:21;19194:175;;;-1:-1:-1;;;19194:175:0;;;19298:59;19305:9;19298:59;;;;;;;;;;;;;;;;;:6;:59::i;:::-;19289:68;;19194:175;19392:10;19381:22;;;;:10;:22;;;;;;;;-1:-1:-1;;;;;19381:31:0;;;;;;;;;;;;:40;;;19439:37;;;;;;;19381:31;;19392:10;19439:37;;;;;;;;;;;19494:4;19487:11;;;19084:422;;;;;:::o;17322:41::-;;;-1:-1:-1;;;;;17322:41:0;;:::o;14973:40::-;;;;:::o;15981:122::-;16023:80;15981:122;:::o;22181:678::-;-1:-1:-1;;;;;22346:15:0;;22263:4;22346:15;;;:10;:15;;;;;;;;22298:10;22346:24;;;;;;;;;;22398:59;;;;;;;;;;;;22298:10;;22346:24;;22263:4;;22398:59;;22405:9;;22398:59;;;;;;;:6;:59::i;:::-;22381:76;;22485:3;-1:-1:-1;;;;;22474:14:0;:7;-1:-1:-1;;;;;22474:14:0;;;:49;;;;;-1:-1:-1;;22492:16:0;:31;;22474:49;22470:314;;;22540:20;22563:97;22569:16;22587:6;22563:97;;;;;;;;;;;;;;;;;:5;:97::i;:::-;-1:-1:-1;;;;;22675:15:0;;;;;;;:10;:15;;;;;;;;:24;;;;;;;;;;;;;:39;;;22736:36;;;;;;;22540:120;;-1:-1:-1;22675:24:0;;:15;;22736:36;;;;;;;;;22470:314;;22796:33;22812:3;22817;22822:6;22796:15;:33::i;:::-;-1:-1:-1;22847:4:0;;22181:678;-1:-1:-1;;;;;;22181:678:0:o;16404:137::-;16446:95;16404:137;:::o;14874:35::-;14907:2;14874:35;:::o;17370:28::-;;;-1:-1:-1;;;;;17370:28:0;;:::o;15428:45::-;;;;;;;;;;;;-1:-1:-1;;;;;15428:45:0;;:::o;23007:102::-;23069:32;23079:10;23091:9;23069;:32::i;:::-;23007:102;:::o;15859:49::-;;;;;;;;;;;;;;;:::o;21259:108::-;-1:-1:-1;;;;;21342:17:0;21318:4;21342:17;;;:8;:17;;;;;;;21259:108::o;30001:134::-;30060:5;;-1:-1:-1;;;;;30060:5:0;30067:10;30060:17;30052:46;;;;;-1:-1:-1;;;30052:46:0;;;;;;;;;;;;-1:-1:-1;;;30052:46:0;;;;;;;;;;;;;;;30110:5;:16;;-1:-1:-1;;;;;;30110:16:0;;;30001:134::o;15072:41::-;;;;;;;;;;;;;;;:::o;25190:1220::-;25269:7;25311:12;25297:11;:26;25289:79;;;;-1:-1:-1;;;25289:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25403:23:0;;25381:19;25403:23;;;:14;:23;;;;;;;;25441:17;25437:58;;25482:1;25475:8;;;;;25437:58;-1:-1:-1;;;;;25555:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;25576:16:0;;25555:38;;;;;;;;;:48;;:63;-1:-1:-1;25551:147:0;;-1:-1:-1;;;;;25642:20:0;;;;;;:11;:20;;;;;;;;-1:-1:-1;;25663:16:0;;;;25642:38;;;;;;;;25678:1;25642:44;;;-1:-1:-1;25635:51:0;;25551:147;-1:-1:-1;;;;;25759:20:0;;;;;;:11;:20;;;;;;;;:23;;;;;;;;:33;:23;:33;:47;-1:-1:-1;25755:88:0;;;25830:1;25823:8;;;;;25755:88;25855:12;-1:-1:-1;;25897:16:0;;25924:428;25939:5;25931:13;;:5;:13;;;25924:428;;;26003:1;25986:13;;;25985:19;;;25977:27;;26046:20;;:::i;:::-;-1:-1:-1;;;;;;26069:20:0;;;;;;:11;:20;;;;;;;;:28;;;;;;;;;;;;;26046:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26116:27;;26112:229;;;26171:8;;;;-1:-1:-1;26164:15:0;;-1:-1:-1;;;;26164:15:0;26112:229;26205:12;;:26;;;-1:-1:-1;26201:140:0;;;26260:6;26252:14;;26201:140;;;26324:1;26315:6;:10;26307:18;;26201:140;25924:428;;;;;-1:-1:-1;;;;;;26369:20:0;;;;;;:11;:20;;;;;;;;:27;;;;;;;;;;:33;;;;-1:-1:-1;;25190:1220:0;;;;:::o;16622:39::-;;;;;;;;;;;;;:::o;14774:37::-;;;;;;;;;;;;;;-1:-1:-1;;;14774:37:0;;;;:::o;21631:240::-;21696:4;21713:14;21730:60;21737:9;21730:60;;;;;;;;;;;;;;;;;:6;:60::i;:::-;21713:77;;21801:40;21817:10;21829:3;21834:6;21801:15;:40::i;:::-;-1:-1:-1;21859:4:0;;21631:240;-1:-1:-1;;;21631:240:0:o;17407:20::-;;;-1:-1:-1;;;;;17407:20:0;;:::o;24536:223::-;-1:-1:-1;;;;;24643:23:0;;24601:7;24643:23;;;:14;:23;;;;;;;;24684:16;:67;;24750:1;24684:67;;;-1:-1:-1;;;;;24703:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;24724:16:0;;24703:38;;;;;;;;24739:1;24703:44;;24684:67;24677:74;24536:223;-1:-1:-1;;;24536:223:0:o;23543:792::-;23739:4;;;;;;;;;;;;-1:-1:-1;;;23739:4:0;;;;;23659:23;16023:80;23723:22;23747:12;:10;:12::i;:::-;23695:80;;;;;;;;;;;;;;;;;;;;;;;;;23769:4;23695:80;;;;;;;;;;;;;;;;;;;;;;;23685:91;;;;;;16243:71;23818:57;;;;-1:-1:-1;;;;;23818:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23808:68;;;;;;-1:-1:-1;;;23914:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23904:68;;;;;;;;;-1:-1:-1;24003:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23685:91;;-1:-1:-1;23808:68:0;;23904;;-1:-1:-1;;24003:26:0;;;;;;;-1:-1:-1;;24003:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;24003:26:0;;-1:-1:-1;;24003:26:0;;;-1:-1:-1;;;;;;;24048:23:0;;24040:75;;;;-1:-1:-1;;;24040:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24143:17:0;;;;;;:6;:17;;;;;:19;;;;;;;;24134:28;;24126:76;;;;-1:-1:-1;;;24126:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24228:6;24221:3;:13;;24213:65;;;;-1:-1:-1;;;24213:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24296:31;24306:9;24317;24296;:31::i;:::-;24289:38;;;;23543:792;;;;;;;:::o;19996:1060::-;20126:14;-1:-1:-1;;20155:9:0;:21;20151:174;;;-1:-1:-1;;;20151:174:0;;;20255:58;20262:9;20255:58;;;;;;;;;;;;;;;;;:6;:58::i;:::-;20246:67;;20151:174;20417:4;;;;;;;;;;;;-1:-1:-1;;;20417:4:0;;;;;20337:23;16023:80;20401:22;20425:12;:10;:12::i;:::-;20373:80;;;;;;;;;;;;;;;;;;;;;;;;;20447:4;20373:80;;;;;;;;;;;;;;;;;;;;;;;20363:91;;;;;;-1:-1:-1;;;;;20551:13:0;;;-1:-1:-1;20551:13:0;;;:6;:13;;;;;:15;;;;;;;;;16446:95;20496:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20486:92;;;;;;-1:-1:-1;;;20616:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20606:68;;;;;;;;;20705:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20363:91;;-1:-1:-1;20486:92:0;20606:68;;-1:-1:-1;;20551:15:0;;20705:26;;;;;20373:80;-1:-1:-1;;20705:26:0;;;;;;;;;;;20551:15;20705:26;;;;;;;;;;;;;;;-1:-1:-1;;20705:26:0;;-1:-1:-1;;20705:26:0;;;-1:-1:-1;;;;;;;20750:23:0;;20742:68;;;;;-1:-1:-1;;;20742:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20842:5;-1:-1:-1;;;;;20829:18:0;:9;-1:-1:-1;;;;;20829:18:0;;20821:58;;;;;-1:-1:-1;;;20821:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;20905:8;20898:3;:15;;20890:60;;;;;-1:-1:-1;;;20890:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20992:6;20963:10;:17;20974:5;-1:-1:-1;;;;;20963:17:0;-1:-1:-1;;;;;20963:17:0;;;;;;;;;;;;:26;20981:7;-1:-1:-1;;;;;20963:26:0;-1:-1:-1;;;;;20963:26:0;;;;;;;;;;;;:35;;;;21032:7;-1:-1:-1;;;;;21016:32:0;21025:5;-1:-1:-1;;;;;21016:32:0;;21041:6;21016:32;;;;;;;;;;;;;;;;;;19996:1060;;;;;;;;;;;;:::o;18470:136::-;-1:-1:-1;;;;;18570:19:0;;;18546:4;18570:19;;;:10;:19;;;;;;;;:28;;;;;;;;;;;;;18470:136::o;16197:117::-;16243:71;16197:117;:::o;15720:70::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;15023:39::-;;;;:::o;29291:164::-;29366:7;29406:12;-1:-1:-1;;;29394:10:0;;29386:33;;;;-1:-1:-1;;;29386:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29445:1:0;;29291:164;-1:-1:-1;;29291:164:0:o;29663:168::-;29751:7;29787:12;29779:6;;;;29771:29;;;;-1:-1:-1;;;29771:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;29818:5:0;;;29663:168::o;26802:718::-;-1:-1:-1;;;;;26897:17:0;;26889:91;;;;-1:-1:-1;;;26889:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26999:17:0;;26991:89;;;;-1:-1:-1;;;26991:89:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27092:14:0;;;;;;:9;:14;;;;;;;;27088:94;;27152:9;;27117:31;27123:8;:13;27132:3;-1:-1:-1;;;;;27123:13:0;-1:-1:-1;;;;;27123:13:0;;;;;;;;;;;;;27138:6;27117:31;;;;;;;;;;;;:5;:31::i;:::-;:44;;27109:71;;;;;-1:-1:-1;;;27109:71:0;;;;;;;;;;;;-1:-1:-1;;;27109:71:0;;;;;;;;;;;;;;;27208:87;27214:8;:13;27223:3;-1:-1:-1;;;;;27214:13:0;-1:-1:-1;;;;;27214:13:0;;;;;;;;;;;;;27229:6;27208:87;;;;;;;;;;;;;;;;;:5;:87::i;:::-;-1:-1:-1;;;;;27192:13:0;;;;;;;:8;:13;;;;;;;;:103;;;;27328:13;;;;;;;;;27322:81;;;;;;;;;;;;;;27328:13;;27343:6;;27322:81;;;;;;;:5;:81::i;:::-;-1:-1:-1;;;;;27306:13:0;;;;;;;:8;:13;;;;;;;;;:97;;;;27419:26;;;;;;;27306:13;;27419:26;;;;;;;;;;;;;-1:-1:-1;;;;;27473:14:0;;;;;;;:9;:14;;;;;;;27489;;;;;;;;27458:54;;27473:14;;;;27489;27505:6;27458:14;:54::i;:::-;26802:718;;;:::o;26418:376::-;-1:-1:-1;;;;;26521:20:0;;;26495:23;26521:20;;;:9;:20;;;;;;;;;;26579:8;:19;;;;;;26609:20;;;;:32;;;-1:-1:-1;;;;;;26609:32:0;;;;;;;26659:54;;26521:20;;;;;26579:19;;26609:32;;26521:20;;;26659:54;;26495:23;26659:54;26726:60;26741:15;26758:9;26769:16;26726:14;:60::i;:::-;26418:376;;;;:::o;29839:153::-;29949:9;29839:153;:::o;29463:192::-;29551:7;29583:5;;;29615:12;29607:6;;;;29599:29;;;;-1:-1:-1;;;29599:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29646:1:0;29463:192;-1:-1:-1;;;;29463:192:0:o;27528:946::-;27634:6;-1:-1:-1;;;;;27624:16:0;:6;-1:-1:-1;;;;;27624:16:0;;;:30;;;;;27653:1;27644:6;:10;27624:30;27620:847;;;-1:-1:-1;;;;;27675:20:0;;;27671:385;;-1:-1:-1;;;;;27735:22:0;;27716:16;27735:22;;;:14;:22;;;;;;;;;27796:13;:60;;27855:1;27796:60;;;-1:-1:-1;;;;;27812:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;27832:13:0;;27812:34;;;;;;;;27844:1;27812:40;;27796:60;27776:80;;27875:17;27895:69;27901:9;27912:6;27895:69;;;;;;;;;;;;;;;;;:5;:69::i;:::-;27875:89;;27983:57;28000:6;28008:9;28019;28030;27983:16;:57::i;:::-;27671:385;;;;-1:-1:-1;;;;;28076:20:0;;;28072:384;;-1:-1:-1;;;;;28136:22:0;;28117:16;28136:22;;;:14;:22;;;;;;;;;28197:13;:60;;28256:1;28197:60;;;-1:-1:-1;;;;;28213:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;28233:13:0;;28213:34;;;;;;;;28245:1;28213:40;;28197:60;28177:80;;28276:17;28296:68;28302:9;28313:6;28296:68;;;;;;;;;;;;;;;;;:5;:68::i;:::-;28276:88;;28383:57;28400:6;28408:9;28419;28430;28482:632;28602:18;28623:77;28630:12;28623:77;;;;;;;;;;;;;;;;;:6;:77::i;:::-;28602:98;;28730:1;28715:12;:16;;;:85;;;;-1:-1:-1;;;;;;28735:22:0;;;;;;:11;:22;;;;;;;;:65;-1:-1:-1;;28758:16:0;;28735:40;;;;;;;;;:50;:65;;;:50;;:65;28715:85;28711:329;;;-1:-1:-1;;;;;28815:22:0;;;;;;:11;:22;;;;;;;;:40;-1:-1:-1;;28838:16:0;;28815:40;;;;;;;;28853:1;28815:46;:57;;;28711:329;;;28940:33;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28901:22:0;;-1:-1:-1;28901:22:0;;;:11;:22;;;;;:36;;;;;;;;;;:72;;;;;;;-1:-1:-1;;28901:72:0;;;;;;;;;;;;;28986:25;;;:14;:25;;;;;;:44;;29014:16;;;28986:44;;;;;;;;;;28711:329;29055:51;;;;;;;;;;;;;;-1:-1:-1;;;;;29055:51:0;;;;;;;;;;;28482:632;;;;;:::o;29122:161::-;29197:6;29235:12;29228:5;29224:9;;29216:32;;;;-1:-1:-1;;;29216:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

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