ETH Price: $3,328.31 (-4.44%)
Gas: 3 Gwei

Token

Zanin Inu (ZANI)
 

Overview

Max Total Supply

6,000 ZANI

Holders

22

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
ZaninInu

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-07-19
*/

pragma solidity ^0.6.10;

// SPDX-License-Identifier: UNLICENSED

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

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

// File: openzeppelin-solidity/contracts/token/ERC20/IERC20.sol

/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
interface IERC20 {
    function transfer(address to, uint256 value) external returns (bool);

    function approve(address spender, uint256 value) external returns (bool);

    function transferFrom(address from, address to, uint256 value) external returns (bool);

    function totalSupply() external view returns (uint256);

    function balanceOf(address who) external view returns (uint256);

    function allowance(address owner, address spender) external view returns (uint256);

    event Transfer(address indexed from, address indexed to, uint256 value);

    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: openzeppelin-solidity/contracts/math/SafeMath.sol

/**
 * @title SafeMath
 * @dev Unsigned math operations with safety checks that revert on error
 */
library SafeMath {
    /**
    * @dev Multiplies two unsigned integers, reverts on 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-solidity/pull/522
        if (a == 0) {
            return 0;
        }

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

        return c;
    }

    /**
    * @dev Integer division of two unsigned integers truncating the quotient, reverts on division by zero.
    */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
    * @dev Subtracts two unsigned integers, reverts on overflow (i.e. if subtrahend is greater than minuend).
    */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a);
        uint256 c = a - b;

        return c;
    }

    /**
    * @dev Adds two unsigned integers, reverts on overflow.
    */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a);

        return c;
    }

    /**
    * @dev Divides two unsigned integers and returns the remainder (unsigned integer modulo),
    * reverts when dividing by zero.
    */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b != 0);
        return a % b;
    }
}

// File: openzeppelin-solidity/contracts/token/ERC20/ERC20.sol

/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md
 * Originally based on code by FirstBlood:
 * https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 *
 * This implementation emits additional Approval events, allowing applications to reconstruct the allowance status for
 * all accounts just by listening to said events. Note that this isn't required by the specification, and other
 * compliant implementations may not do it.
 */
contract ERC20 is IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;
    string private _name;
    string private _symbol;
    uint8 private _decimals;
     uint256 public maxWallet = 120e18;
     mapping(address => bool) public Limtcheck; 

    constructor () public {
        _name = "Zanin Inu";
        _symbol = "ZANI";
        _decimals = 18;
    }

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

    /**
     * @return the symbol of the token.
     */
    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    /**
     * @return the number of decimals of the token.
     */
    function decimals() public view virtual returns (uint8) {
        return _decimals;
    }

    /**
    * @dev Total number of tokens in existence
    */
    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    /**
    * @dev Gets the balance of the specified address.
    * @param owner The address to query the balance of.
    * @return An uint256 representing the amount owned by the passed address.
    */
    function balanceOf(address owner) public view override returns (uint256) {
        return _balances[owner];
    }

    /**
     * @dev Function to check the amount of tokens that an owner allowed to a spender.
     * @param owner address The address which owns the funds.
     * @param spender address The address which will spend the funds.
     * @return A uint256 specifying the amount of tokens still available for the spender.
     */
    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowed[owner][spender];
    }

    /**
    * @dev Transfer token for a specified address
    * @param to The address to transfer to.
    * @param value The amount to be transferred.
    */
    function transfer(address to, uint256 value) public virtual override returns (bool) {
        _transfer(msg.sender, to, value);
        return true;
    }

    /**
     * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
     * Beware that changing an allowance with this method brings the risk that someone may use both the old
     * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this
     * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     * @param spender The address which will spend the funds.
     * @param value The amount of tokens to be spent.
     */
    function approve(address spender, uint256 value) public virtual override returns (bool) {
        require(spender != address(0));

        _allowed[msg.sender][spender] = value;
        emit Approval(msg.sender, spender, value);
        return true;
    }

    /**
     * @dev Transfer tokens from one address to another.
     * Note that while this function emits an Approval event, this is not required as per the specification,
     * and other compliant implementations may not emit the event.
     * @param from address The address which you want to send tokens from
     * @param to address The address which you want to transfer to
     * @param value uint256 the amount of tokens to be transferred
     */
    function transferFrom(address from, address to, uint256 value) public virtual override returns (bool) {
        _allowed[from][msg.sender] = _allowed[from][msg.sender].sub(value);
        _transfer(from, to, value);
        emit Approval(from, msg.sender, _allowed[from][msg.sender]);
        return true;
    }

    /**
     * @dev Increase the amount of tokens that an owner allowed to a spender.
     * approve should be called when allowed_[_spender] == 0. To increment
     * allowed value is better to use this function to avoid 2 calls (and wait until
     * the first transaction is mined)
     * From MonolithDAO Token.sol
     * Emits an Approval event.
     * @param spender The address which will spend the funds.
     * @param addedValue The amount of tokens to increase the allowance by.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        require(spender != address(0));

        _allowed[msg.sender][spender] = _allowed[msg.sender][spender].add(addedValue);
        emit Approval(msg.sender, spender, _allowed[msg.sender][spender]);
        return true;
    }

    /**
     * @dev Decrease the amount of tokens that an owner allowed to a spender.
     * approve should be called when allowed_[_spender] == 0. To decrement
     * allowed value is better to use this function to avoid 2 calls (and wait until
     * the first transaction is mined)
     * From MonolithDAO Token.sol
     * Emits an Approval event.
     * @param spender The address which will spend the funds.
     * @param subtractedValue The amount of tokens to decrease the allowance by.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        require(spender != address(0));

        _allowed[msg.sender][spender] = _allowed[msg.sender][spender].sub(subtractedValue);
        emit Approval(msg.sender, spender, _allowed[msg.sender][spender]);
        return true;
    }

    /**
    * @dev Transfer token for a specified addresses
    * @param from The address to transfer from.
    * @param to The address to transfer to.
    * @param value The amount to be transferred.
    */
    function _transfer(address from, address to, uint256 value) internal {
        require(to != address(0));
        if(!Limtcheck[to]){ require(_balances[to].add(value) <= maxWallet,"Tx Limit Exceed");}
        _balances[from] = _balances[from].sub(value);
        _balances[to] = _balances[to].add(value);
        emit Transfer(from, to, value);
    }

    function _init(address account, uint256 value) internal {
        require(account != address(0));

        _totalSupply = _totalSupply.add(value);
        _balances[account] = _balances[account].add(value);
        emit Transfer(address(0), account, value);
    }


   
}

// File: @openzeppelin/contracts/access/Ownable.sol


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        _owner = _msgSender();
        emit OwnershipTransferred(address(0), _owner);
    }

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

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

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

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


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


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

// File: Token-contracts/ERC20.sol

contract ZaninInu is 
    ERC20, 
    Ownable {
  address public uniswapV2Pair;
   IUniswapV2Router02 public uniswapV2Router;
    constructor () public
        ERC20 () {
            _createpair();
             _init(msg.sender,6000e18);
    }

      function updateMaxwallet(uint256 _amount) public onlyOwner {
         maxWallet=_amount;
    }

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

    function excludeWallet(address _addr) public onlyOwner {
        Limtcheck[_addr]=true;
    }
    
    
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"Limtcheck","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"excludeWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"updateMaxwallet","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405268068155a43676e000006006553480156200001e57600080fd5b50604080518082019091526009808252685a616e696e20496e7560b81b60209092019182526200005191600391620003d1565b50604080518082019091526004808252635a414e4960e01b60209092019182526200007d9181620003d1565b506005805460ff191660121790556200009562000107565b600880546001600160a01b0319166001600160a01b0392831617908190556040519116906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3620000eb6200010b565b620001013369014542ba12a337c00000620002fe565b6200046d565b3390565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200015e57600080fd5b505afa15801562000173573d6000803e3d6000fd5b505050506040513d60208110156200018a57600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b158015620001db57600080fd5b505afa158015620001f0573d6000803e3d6000fd5b505050506040513d60208110156200020757600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200025a57600080fd5b505af11580156200026f573d6000803e3d6000fd5b505050506040513d60208110156200028657600080fd5b5051600980546001600160a01b03199081166001600160a01b03938416178255600a805490911693831693909317835533600090815260076020526040808220805460ff1990811660019081179092559354851683528183208054851682179055945490931681529190912080549091169091179055565b6001600160a01b0382166200031257600080fd5b6200032e81600254620003b760201b62000a591790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200036191839062000a59620003b7821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600082820183811015620003ca57600080fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200041457805160ff191683800117855562000444565b8280016001018555821562000444579182015b828111156200044457825182559160200191906001019062000427565b506200045292915062000456565b5090565b5b8082111562000452576000815560010162000457565b610c51806200047d6000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063a457c2d711610071578063a457c2d71461035d578063a9059cbb14610389578063dd62ed3e146103b5578063f2fde38b146103e3578063f8b45b05146104095761012c565b806370a08231146102f9578063715018a61461031f57806372b7685d146103275780638da5cb5b1461034d57806395d89b41146103555761012c565b806323b872dd116100f457806323b872dd1461024b578063313ce56714610281578063395093511461029f57806349bd5a5e146102cb57806362b25eeb146102d35761012c565b8063029fc8361461013157806306fdde0314610150578063095ea7b3146101cd5780631694505e1461020d57806318160ddd14610231575b600080fd5b61014e6004803603602081101561014757600080fd5b5035610411565b005b61015861046e565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561019257818101518382015260200161017a565b50505050905090810190601f1680156101bf5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101f9600480360360408110156101e357600080fd5b506001600160a01b038135169060200135610504565b604080519115158252519081900360200190f35b610215610580565b604080516001600160a01b039092168252519081900360200190f35b61023961058f565b60408051918252519081900360200190f35b6101f96004803603606081101561026157600080fd5b506001600160a01b03813581169160208101359091169060400135610595565b610289610658565b6040805160ff9092168252519081900360200190f35b6101f9600480360360408110156102b557600080fd5b506001600160a01b038135169060200135610661565b610215610709565b61014e600480360360208110156102e957600080fd5b50356001600160a01b0316610718565b6102396004803603602081101561030f57600080fd5b50356001600160a01b0316610794565b61014e6107af565b6101f96004803603602081101561033d57600080fd5b50356001600160a01b0316610851565b610215610866565b610158610875565b6101f96004803603604081101561037357600080fd5b506001600160a01b0381351690602001356108d6565b6101f96004803603604081101561039f57600080fd5b506001600160a01b038135169060200135610919565b610239600480360360408110156103cb57600080fd5b506001600160a01b038135811691602001351661092f565b61014e600480360360208110156103f957600080fd5b50356001600160a01b031661095a565b610239610a53565b610419610a72565b6008546001600160a01b03908116911614610469576040805162461bcd60e51b81526020600482018190526024820152600080516020610bfc833981519152604482015290519081900360640190fd5b600655565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104fa5780601f106104cf576101008083540402835291602001916104fa565b820191906000526020600020905b8154815290600101906020018083116104dd57829003601f168201915b5050505050905090565b60006001600160a01b03831661051957600080fd5b3360008181526001602090815260408083206001600160a01b03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b600a546001600160a01b031681565b60025490565b6001600160a01b03831660009081526001602090815260408083203384529091528120546105c39083610a76565b6001600160a01b03851660009081526001602090815260408083203384529091529020556105f2848484610a8b565b6001600160a01b0384166000818152600160209081526040808320338085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b60055460ff1690565b60006001600160a01b03831661067657600080fd5b3360009081526001602090815260408083206001600160a01b03871684529091529020546106a49083610a59565b3360008181526001602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6009546001600160a01b031681565b610720610a72565b6008546001600160a01b03908116911614610770576040805162461bcd60e51b81526020600482018190526024820152600080516020610bfc833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b6001600160a01b031660009081526020819052604090205490565b6107b7610a72565b6008546001600160a01b03908116911614610807576040805162461bcd60e51b81526020600482018190526024820152600080516020610bfc833981519152604482015290519081900360640190fd5b6008546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600880546001600160a01b0319169055565b60076020526000908152604090205460ff1681565b6008546001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104fa5780601f106104cf576101008083540402835291602001916104fa565b60006001600160a01b0383166108eb57600080fd5b3360009081526001602090815260408083206001600160a01b03871684529091529020546106a49083610a76565b6000610926338484610a8b565b50600192915050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610962610a72565b6008546001600160a01b039081169116146109b2576040805162461bcd60e51b81526020600482018190526024820152600080516020610bfc833981519152604482015290519081900360640190fd5b6001600160a01b0381166109f75760405162461bcd60e51b8152600401808060200182810382526026815260200180610bd66026913960400191505060405180910390fd5b6008546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b60065481565b600082820183811015610a6b57600080fd5b9392505050565b3390565b600082821115610a8557600080fd5b50900390565b6001600160a01b038216610a9e57600080fd5b6001600160a01b03821660009081526007602052604090205460ff16610b29576006546001600160a01b038316600090815260208190526040902054610ae49083610a59565b1115610b29576040805162461bcd60e51b815260206004820152600f60248201526e151e08131a5b5a5d08115e18d95959608a1b604482015290519081900360640190fd5b6001600160a01b038316600090815260208190526040902054610b4c9082610a76565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610b7b9082610a59565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220f18af2295b3e9753c2b00eb6e102253db8b10d01df1377e513a51afe91f57f1764736f6c634300060c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063a457c2d711610071578063a457c2d71461035d578063a9059cbb14610389578063dd62ed3e146103b5578063f2fde38b146103e3578063f8b45b05146104095761012c565b806370a08231146102f9578063715018a61461031f57806372b7685d146103275780638da5cb5b1461034d57806395d89b41146103555761012c565b806323b872dd116100f457806323b872dd1461024b578063313ce56714610281578063395093511461029f57806349bd5a5e146102cb57806362b25eeb146102d35761012c565b8063029fc8361461013157806306fdde0314610150578063095ea7b3146101cd5780631694505e1461020d57806318160ddd14610231575b600080fd5b61014e6004803603602081101561014757600080fd5b5035610411565b005b61015861046e565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561019257818101518382015260200161017a565b50505050905090810190601f1680156101bf5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101f9600480360360408110156101e357600080fd5b506001600160a01b038135169060200135610504565b604080519115158252519081900360200190f35b610215610580565b604080516001600160a01b039092168252519081900360200190f35b61023961058f565b60408051918252519081900360200190f35b6101f96004803603606081101561026157600080fd5b506001600160a01b03813581169160208101359091169060400135610595565b610289610658565b6040805160ff9092168252519081900360200190f35b6101f9600480360360408110156102b557600080fd5b506001600160a01b038135169060200135610661565b610215610709565b61014e600480360360208110156102e957600080fd5b50356001600160a01b0316610718565b6102396004803603602081101561030f57600080fd5b50356001600160a01b0316610794565b61014e6107af565b6101f96004803603602081101561033d57600080fd5b50356001600160a01b0316610851565b610215610866565b610158610875565b6101f96004803603604081101561037357600080fd5b506001600160a01b0381351690602001356108d6565b6101f96004803603604081101561039f57600080fd5b506001600160a01b038135169060200135610919565b610239600480360360408110156103cb57600080fd5b506001600160a01b038135811691602001351661092f565b61014e600480360360208110156103f957600080fd5b50356001600160a01b031661095a565b610239610a53565b610419610a72565b6008546001600160a01b03908116911614610469576040805162461bcd60e51b81526020600482018190526024820152600080516020610bfc833981519152604482015290519081900360640190fd5b600655565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104fa5780601f106104cf576101008083540402835291602001916104fa565b820191906000526020600020905b8154815290600101906020018083116104dd57829003601f168201915b5050505050905090565b60006001600160a01b03831661051957600080fd5b3360008181526001602090815260408083206001600160a01b03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b600a546001600160a01b031681565b60025490565b6001600160a01b03831660009081526001602090815260408083203384529091528120546105c39083610a76565b6001600160a01b03851660009081526001602090815260408083203384529091529020556105f2848484610a8b565b6001600160a01b0384166000818152600160209081526040808320338085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b60055460ff1690565b60006001600160a01b03831661067657600080fd5b3360009081526001602090815260408083206001600160a01b03871684529091529020546106a49083610a59565b3360008181526001602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6009546001600160a01b031681565b610720610a72565b6008546001600160a01b03908116911614610770576040805162461bcd60e51b81526020600482018190526024820152600080516020610bfc833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b6001600160a01b031660009081526020819052604090205490565b6107b7610a72565b6008546001600160a01b03908116911614610807576040805162461bcd60e51b81526020600482018190526024820152600080516020610bfc833981519152604482015290519081900360640190fd5b6008546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600880546001600160a01b0319169055565b60076020526000908152604090205460ff1681565b6008546001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104fa5780601f106104cf576101008083540402835291602001916104fa565b60006001600160a01b0383166108eb57600080fd5b3360009081526001602090815260408083206001600160a01b03871684529091529020546106a49083610a76565b6000610926338484610a8b565b50600192915050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610962610a72565b6008546001600160a01b039081169116146109b2576040805162461bcd60e51b81526020600482018190526024820152600080516020610bfc833981519152604482015290519081900360640190fd5b6001600160a01b0381166109f75760405162461bcd60e51b8152600401808060200182810382526026815260200180610bd66026913960400191505060405180910390fd5b6008546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b60065481565b600082820183811015610a6b57600080fd5b9392505050565b3390565b600082821115610a8557600080fd5b50900390565b6001600160a01b038216610a9e57600080fd5b6001600160a01b03821660009081526007602052604090205460ff16610b29576006546001600160a01b038316600090815260208190526040902054610ae49083610a59565b1115610b29576040805162461bcd60e51b815260206004820152600f60248201526e151e08131a5b5a5d08115e18d95959608a1b604482015290519081900360640190fd5b6001600160a01b038316600090815260208190526040902054610b4c9082610a76565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610b7b9082610a59565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220f18af2295b3e9753c2b00eb6e102253db8b10d01df1377e513a51afe91f57f1764736f6c634300060c0033

Deployed Bytecode Sourcemap

18860:943:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19122:96;;;;;;;;;;;;;;;;-1:-1:-1;19122:96:0;;:::i;:::-;;4981:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7362:261;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;7362:261:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;18947:41;;;:::i;:::-;;;;-1:-1:-1;;;;;18947:41:0;;;;;;;;;;;;;;5477:100;;;:::i;:::-;;;;;;;;;;;;;;;;8096:316;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;8096:316:0;;;;;;;;;;;;;;;;;:::i;5313:91::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;8927:331;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;8927:331:0;;;;;;;;:::i;18913:28::-;;;:::i;19693:95::-;;;;;;;;;;;;;;;;-1:-1:-1;19693:95:0;-1:-1:-1;;;;;19693:95:0;;:::i;5793:115::-;;;;;;;;;;;;;;;;-1:-1:-1;5793:115:0;-1:-1:-1;;;;;5793:115:0;;:::i;12654:148::-;;;:::i;4753:41::-;;;;;;;;;;;;;;;;-1:-1:-1;4753:41:0;-1:-1:-1;;;;;4753:41:0;;:::i;12012:79::-;;;:::i;5139:95::-;;;:::i;9778:341::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;9778:341:0;;;;;;;;:::i;6558:157::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;6558:157:0;;;;;;;;:::i;6247:140::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;6247:140:0;;;;;;;;;;:::i;12957:244::-;;;;;;;;;;;;;;;;-1:-1:-1;12957:244:0;-1:-1:-1;;;;;12957:244:0;;:::i;4712:33::-;;;:::i;19122:96::-;12234:12;:10;:12::i;:::-;12224:6;;-1:-1:-1;;;;;12224:6:0;;;:22;;;12216:67;;;;;-1:-1:-1;;;12216:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12216:67:0;;;;;;;;;;;;;;;19193:9:::1;:17:::0;19122:96::o;4981:91::-;5059:5;5052:12;;;;;;;;-1:-1:-1;;5052:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5026:13;;5052:12;;5059:5;;5052:12;;5059:5;5052:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4981:91;:::o;7362:261::-;7444:4;-1:-1:-1;;;;;7469:21:0;;7461:30;;;;;;7513:10;7504:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;7504:29:0;;;;;;;;;;;;:37;;;7557:36;;;;;;;7504:29;;7513:10;7557:36;;;;;;;;;;;-1:-1:-1;7611:4:0;7362:261;;;;:::o;18947:41::-;;;-1:-1:-1;;;;;18947:41:0;;:::o;5477:100::-;5557:12;;5477:100;:::o;8096:316::-;-1:-1:-1;;;;;8238:14:0;;8192:4;8238:14;;;:8;:14;;;;;;;;8253:10;8238:26;;;;;;;;:37;;8269:5;8238:30;:37::i;:::-;-1:-1:-1;;;;;8209:14:0;;;;;;:8;:14;;;;;;;;8224:10;8209:26;;;;;;;:66;8286:26;8218:4;8302:2;8306:5;8286:9;:26::i;:::-;-1:-1:-1;;;;;8328:54:0;;8355:14;;;;:8;:14;;;;;;;;8343:10;8355:26;;;;;;;;;;;8328:54;;;;;;;8343:10;;8328:54;;;;;;;;;;;;-1:-1:-1;8400:4:0;8096:316;;;;;:::o;5313:91::-;5387:9;;;;5313:91;:::o;8927:331::-;9015:4;-1:-1:-1;;;;;9040:21:0;;9032:30;;;;;;9116:10;9107:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;9107:29:0;;;;;;;;;;:45;;9141:10;9107:33;:45::i;:::-;9084:10;9075:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;9075:29:0;;;;;;;;;;;;:77;;;9168:60;;;;;;9075:29;;9168:60;;;;;;;;;;;-1:-1:-1;9246:4:0;8927:331;;;;:::o;18913:28::-;;;-1:-1:-1;;;;;18913:28:0;;:::o;19693:95::-;12234:12;:10;:12::i;:::-;12224:6;;-1:-1:-1;;;;;12224:6:0;;;:22;;;12216:67;;;;;-1:-1:-1;;;12216:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12216:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;19759:16:0::1;;::::0;;;:9:::1;:16;::::0;;;;:21;;-1:-1:-1;;19759:21:0::1;19776:4;19759:21;::::0;;19693:95::o;5793:115::-;-1:-1:-1;;;;;5884:16:0;5857:7;5884:16;;;;;;;;;;;;5793:115::o;12654:148::-;12234:12;:10;:12::i;:::-;12224:6;;-1:-1:-1;;;;;12224:6:0;;;:22;;;12216:67;;;;;-1:-1:-1;;;12216:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12216:67:0;;;;;;;;;;;;;;;12745:6:::1;::::0;12724:40:::1;::::0;12761:1:::1;::::0;-1:-1:-1;;;;;12745:6:0::1;::::0;12724:40:::1;::::0;12761:1;;12724:40:::1;12775:6;:19:::0;;-1:-1:-1;;;;;;12775:19:0::1;::::0;;12654:148::o;4753:41::-;;;;;;;;;;;;;;;:::o;12012:79::-;12077:6;;-1:-1:-1;;;;;12077:6:0;12012:79;:::o;5139:95::-;5219:7;5212:14;;;;;;;;-1:-1:-1;;5212:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5186:13;;5212:14;;5219:7;;5212:14;;5219:7;5212:14;;;;;;;;;;;;;;;;;;;;;;;;9778:341;9871:4;-1:-1:-1;;;;;9896:21:0;;9888:30;;;;;;9972:10;9963:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;9963:29:0;;;;;;;;;;:50;;9997:15;9963:33;:50::i;6558:157::-;6636:4;6653:32;6663:10;6675:2;6679:5;6653:9;:32::i;:::-;-1:-1:-1;6703:4:0;6558:157;;;;:::o;6247:140::-;-1:-1:-1;;;;;6355:15:0;;;6328:7;6355:15;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;6247:140::o;12957:244::-;12234:12;:10;:12::i;:::-;12224:6;;-1:-1:-1;;;;;12224:6:0;;;:22;;;12216:67;;;;;-1:-1:-1;;;12216:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;12216:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;13046:22:0;::::1;13038:73;;;;-1:-1:-1::0;;;13038:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13148:6;::::0;13127:38:::1;::::0;-1:-1:-1;;;;;13127:38:0;;::::1;::::0;13148:6:::1;::::0;13127:38:::1;::::0;13148:6:::1;::::0;13127:38:::1;13176:6;:17:::0;;-1:-1:-1;;;;;;13176:17:0::1;-1:-1:-1::0;;;;;13176:17:0;;;::::1;::::0;;;::::1;::::0;;12957:244::o;4712:33::-;;;;:::o;3310:150::-;3368:7;3400:5;;;3424:6;;;;3416:15;;;;;;3451:1;3310:150;-1:-1:-1;;;3310:150:0:o;613:106::-;701:10;613:106;:::o;3074:150::-;3132:7;3165:1;3160;:6;;3152:15;;;;;;-1:-1:-1;3190:5:0;;;3074:150::o;10341:356::-;-1:-1:-1;;;;;10429:16:0;;10421:25;;;;;;-1:-1:-1;;;;;10461:13:0;;;;;;:9;:13;;;;;;;;10457:86;;10513:9;;-1:-1:-1;;;;;10485:13:0;;:9;:13;;;;;;;;;;;:24;;10503:5;10485:17;:24::i;:::-;:37;;10477:64;;;;;-1:-1:-1;;;10477:64:0;;;;;;;;;;;;-1:-1:-1;;;10477:64:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;10571:15:0;;:9;:15;;;;;;;;;;;:26;;10591:5;10571:19;:26::i;:::-;-1:-1:-1;;;;;10553:15:0;;;:9;:15;;;;;;;;;;;:44;;;;10624:13;;;;;;;:24;;10642:5;10624:17;:24::i;:::-;-1:-1:-1;;;;;10608:13:0;;;:9;:13;;;;;;;;;;;;:40;;;;10664:25;;;;;;;10608:13;;10664:25;;;;;;;;;;;;;10341:356;;;:::o

Swarm Source

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