ETH Price: $3,410.39 (-1.52%)
Gas: 6 Gwei

Token

Kerosene (KEROSENE)
 

Overview

Max Total Supply

1,000,000,000 KEROSENE

Holders

895

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Angle Protocol: Distributor
Balance
1,599,922.16336771 KEROSENE

Value
$0.00
0x3ef3d8ba38ebe18db133cec108f4d14ce00dd9ae
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:
Kerosine

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 1000000 runs

Other Settings:
london EvmVersion
File 1 of 2 : Kerosine.sol
// SPDX-License-Identifier: MIT
pragma solidity =0.8.17;

import {ERC20} from "@solmate/src/tokens/ERC20.sol";

contract Kerosine is ERC20("Kerosene", "KEROSENE", 18) {

  constructor() {
      _mint(msg.sender, 1_000_000_000 * 10**18); // 1 billion
  }

}

File 2 of 2 : ERC20.sol
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity >=0.8.0;

/// @notice Modern and gas efficient ERC20 + EIP-2612 implementation.
/// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/tokens/ERC20.sol)
/// @author Modified from Uniswap (https://github.com/Uniswap/uniswap-v2-core/blob/master/contracts/UniswapV2ERC20.sol)
/// @dev Do not manually set balances without updating totalSupply, as the sum of all user balances must not exceed it.
abstract contract ERC20 {
    /*//////////////////////////////////////////////////////////////
                                 EVENTS
    //////////////////////////////////////////////////////////////*/

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

    event Approval(address indexed owner, address indexed spender, uint256 amount);

    /*//////////////////////////////////////////////////////////////
                            METADATA STORAGE
    //////////////////////////////////////////////////////////////*/

    string public name;

    string public symbol;

    uint8 public immutable decimals;

    /*//////////////////////////////////////////////////////////////
                              ERC20 STORAGE
    //////////////////////////////////////////////////////////////*/

    uint256 public totalSupply;

    mapping(address => uint256) public balanceOf;

    mapping(address => mapping(address => uint256)) public allowance;

    /*//////////////////////////////////////////////////////////////
                            EIP-2612 STORAGE
    //////////////////////////////////////////////////////////////*/

    uint256 internal immutable INITIAL_CHAIN_ID;

    bytes32 internal immutable INITIAL_DOMAIN_SEPARATOR;

    mapping(address => uint256) public nonces;

    /*//////////////////////////////////////////////////////////////
                               CONSTRUCTOR
    //////////////////////////////////////////////////////////////*/

    constructor(
        string memory _name,
        string memory _symbol,
        uint8 _decimals
    ) {
        name = _name;
        symbol = _symbol;
        decimals = _decimals;

        INITIAL_CHAIN_ID = block.chainid;
        INITIAL_DOMAIN_SEPARATOR = computeDomainSeparator();
    }

    /*//////////////////////////////////////////////////////////////
                               ERC20 LOGIC
    //////////////////////////////////////////////////////////////*/

    function approve(address spender, uint256 amount) public virtual returns (bool) {
        allowance[msg.sender][spender] = amount;

        emit Approval(msg.sender, spender, amount);

        return true;
    }

    function transfer(address to, uint256 amount) public virtual returns (bool) {
        balanceOf[msg.sender] -= amount;

        // Cannot overflow because the sum of all user
        // balances can't exceed the max uint256 value.
        unchecked {
            balanceOf[to] += amount;
        }

        emit Transfer(msg.sender, to, amount);

        return true;
    }

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual returns (bool) {
        uint256 allowed = allowance[from][msg.sender]; // Saves gas for limited approvals.

        if (allowed != type(uint256).max) allowance[from][msg.sender] = allowed - amount;

        balanceOf[from] -= amount;

        // Cannot overflow because the sum of all user
        // balances can't exceed the max uint256 value.
        unchecked {
            balanceOf[to] += amount;
        }

        emit Transfer(from, to, amount);

        return true;
    }

    /*//////////////////////////////////////////////////////////////
                             EIP-2612 LOGIC
    //////////////////////////////////////////////////////////////*/

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) public virtual {
        require(deadline >= block.timestamp, "PERMIT_DEADLINE_EXPIRED");

        // Unchecked because the only math done is incrementing
        // the owner's nonce which cannot realistically overflow.
        unchecked {
            address recoveredAddress = ecrecover(
                keccak256(
                    abi.encodePacked(
                        "\x19\x01",
                        DOMAIN_SEPARATOR(),
                        keccak256(
                            abi.encode(
                                keccak256(
                                    "Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"
                                ),
                                owner,
                                spender,
                                value,
                                nonces[owner]++,
                                deadline
                            )
                        )
                    )
                ),
                v,
                r,
                s
            );

            require(recoveredAddress != address(0) && recoveredAddress == owner, "INVALID_SIGNER");

            allowance[recoveredAddress][spender] = value;
        }

        emit Approval(owner, spender, value);
    }

    function DOMAIN_SEPARATOR() public view virtual returns (bytes32) {
        return block.chainid == INITIAL_CHAIN_ID ? INITIAL_DOMAIN_SEPARATOR : computeDomainSeparator();
    }

    function computeDomainSeparator() internal view virtual returns (bytes32) {
        return
            keccak256(
                abi.encode(
                    keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"),
                    keccak256(bytes(name)),
                    keccak256("1"),
                    block.chainid,
                    address(this)
                )
            );
    }

    /*//////////////////////////////////////////////////////////////
                        INTERNAL MINT/BURN LOGIC
    //////////////////////////////////////////////////////////////*/

    function _mint(address to, uint256 amount) internal virtual {
        totalSupply += amount;

        // Cannot overflow because the sum of all user
        // balances can't exceed the max uint256 value.
        unchecked {
            balanceOf[to] += amount;
        }

        emit Transfer(address(0), to, amount);
    }

    function _burn(address from, uint256 amount) internal virtual {
        balanceOf[from] -= amount;

        // Cannot underflow because a user's balance
        // will never be larger than the total supply.
        unchecked {
            totalSupply -= amount;
        }

        emit Transfer(from, address(0), amount);
    }
}

Settings
{
  "remappings": [
    "@openzeppelin/=lib/openzeppelin-contracts/",
    "@solmate/=lib/solmate/",
    "aave-v3-core/=lib/aave-v3-core/",
    "ds-test/=lib/forge-std/lib/ds-test/src/",
    "forge-std/=lib/forge-std/src/",
    "openzeppelin-contracts/=lib/openzeppelin-contracts/",
    "solmate/=lib/solmate/src/",
    "v2-periphery/=lib/v2-periphery/contracts/"
  ],
  "optimizer": {
    "enabled": true,
    "runs": 1000000
  },
  "metadata": {
    "useLiteralContent": false,
    "bytecodeHash": "ipfs"
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "evmVersion": "london",
  "viaIR": true,
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","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":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"}]

60e060409080825234620004885762000018816200048d565b60088152602090674b65726f73656e6560c01b828201528251916200003d836200048d565b60088352674b45524f53454e4560c01b8184015281516001600160401b0393909290848411620004725760009380620000778654620004a9565b93601f9485811162000421575b508590858311600114620003b9578792620003ad575b50508160011b916000199060031b1c19161784555b80518581116200027d5780600192620000c98454620004a9565b8581116200035a575b508590858311600114620002f6578792620002ea575b5050600019600383901b1c191690821b1781555b60126080524660a05285519184908554926200011884620004a9565b9081865286860194878282169182600014620002cd57505060011462000291575b505083601f1992030116820191808310868411176200027d5782875251902090828101917f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f8352868201527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260a0815260c081019481861090861117620002695784865251902060c0526002546b033b2e3c9fd0803ce8000000908181018091116200025557907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92916002553384526003825285842081815401905584523393a351610dc29081620004e7823960805181610723015260a05181610bb4015260c05181610bdb0152f35b634e487b7160e01b84526011600452602484fd5b634e487b7160e01b84526041600452602484fd5b634e487b7160e01b85526041600452602485fd5b90869293508780528288209188925b828410620002b75750505084010190388062000139565b80548885018601528894909301928101620002a0565b92509394505060ff19168452151560051b84010190388062000139565b015190503880620000e8565b8488528688208594509190601f198416895b8982821062000343575050841162000329575b505050811b018155620000fc565b015160001960f88460031b161c191690553880806200031b565b838501518655889790950194938401930162000308565b9091508387528587208580850160051c820192888610620003a3575b918691869594930160051c01915b82811062000394575050620000d2565b89815585945086910162000384565b9250819262000376565b0151905038806200009a565b8780528688209250601f198416885b888282106200040a575050908460019594939210620003f0575b505050811b018455620000af565b015160001960f88460031b161c19169055388080620003e2565b6001859682939686015181550195019301620003c8565b9091508680528587208580850160051c82019288861062000468575b9085949392910160051c01905b81811062000459575062000084565b8881558493506001016200044a565b925081926200043d565b634e487b7160e01b600052604160045260246000fd5b600080fd5b604081019081106001600160401b038211176200047257604052565b90600182811c92168015620004db575b6020831014620004c557565b634e487b7160e01b600052602260045260246000fd5b91607f1691620004b956fe6080604081815260048036101561001557600080fd5b600092833560e01c90816306fdde031461093b57508063095ea7b3146108a157806318160ddd1461086457806323b872dd14610747578063313ce567146106eb5780633644e515146106a957806370a08231146106475780637ecebe00146105e557806395d89b41146104ca578063a9059cbb1461041d578063d505accf1461011d5763dd62ed3e146100a757600080fd5b3461011957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101195760209282916100e2610b28565b6100ea610b50565b9173ffffffffffffffffffffffffffffffffffffffff8092168452865283832091168252845220549051908152f35b8280fd5b509190346104195760e07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261041957610157610b28565b90610160610b50565b91604435606435926084359260ff8416809403610415574285106103b857610186610baf565b9573ffffffffffffffffffffffffffffffffffffffff8092169586895260209560058752848a209889549960018b01905585519285898501957f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c987528b89870152169a8b606086015288608086015260a085015260c084015260c0835260e0830167ffffffffffffffff948482108683111761038b57818852845190206101008501927f19010000000000000000000000000000000000000000000000000000000000008452610102860152610122850152604281526101608401948186109086111761035f57848752519020835261018082015260a4356101a082015260c4356101c0909101528780528490889060809060015afa1561035557865116968715158061034c575b156102f15786977f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259596975283528087208688528352818188205551908152a380f35b8360649251917f08c379a0000000000000000000000000000000000000000000000000000000008352820152600e60248201527f494e56414c49445f5349474e45520000000000000000000000000000000000006044820152fd5b508488146102ae565b81513d88823e3d90fd5b60248c60418f7f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b5060248c60418f7f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b60648860208451917f08c379a0000000000000000000000000000000000000000000000000000000008352820152601760248201527f5045524d49545f444541444c494e455f455850495245440000000000000000006044820152fd5b8680fd5b5080fd5b50503461041957807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261041957602091610458610b28565b8273ffffffffffffffffffffffffffffffffffffffff6024359233855260038752828520610487858254610b73565b90551692838152600386522081815401905582519081527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef843392a35160018152f35b50503461041957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104195780519082600180549161050c836109ff565b8086529282811690811561059f5750600114610543575b5050506105358261053f940383610a52565b5191829182610ac2565b0390f35b94508085527fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf65b8286106105875750505061053582602061053f9582010194610523565b8054602087870181019190915290950194810161056a565b61053f9750869350602092506105359491507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001682840152151560051b82010194610523565b5050346104195760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610419578060209273ffffffffffffffffffffffffffffffffffffffff610637610b28565b1681526005845220549051908152f35b5050346104195760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610419578060209273ffffffffffffffffffffffffffffffffffffffff610699610b28565b1681526003845220549051908152f35b50503461041957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610419576020906106e4610baf565b9051908152f35b50503461041957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610419576020905160ff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b5091346108615760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261086157610780610b28565b7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6107a9610b50565b946044358573ffffffffffffffffffffffffffffffffffffffff80951694858752602098848a958652838920338a52865283892054857fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361083e575b5050508688526003855282882061081f858254610b73565b9055169586815260038452208181540190558551908152a35160018152f35b61084791610b73565b90888a528652838920338a52865283892055388085610807565b80fd5b50503461041957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610419576020906002549051908152f35b503461011957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610119576020926108db610b28565b9183602435928392338252875273ffffffffffffffffffffffffffffffffffffffff8282209516948582528752205582519081527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925843392a35160018152f35b8490843461011957827ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261011957828054610978816109ff565b8085529160019180831690811561059f57506001146109a3575050506105358261053f940383610a52565b80809650527f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e5635b8286106109e75750505061053582602061053f9582010194610523565b805460208787018101919091529095019481016109ca565b90600182811c92168015610a48575b6020831014610a1957565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b91607f1691610a0e565b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff821117610a9357604052565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60208082528251818301819052939260005b858110610b14575050507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8460006040809697860101520116010190565b818101830151848201604001528201610ad4565b6004359073ffffffffffffffffffffffffffffffffffffffff82168203610b4b57565b600080fd5b6024359073ffffffffffffffffffffffffffffffffffffffff82168203610b4b57565b91908203918211610b8057565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000467f000000000000000000000000000000000000000000000000000000000000000003610bfd57507f000000000000000000000000000000000000000000000000000000000000000090565b60405181548291610c0d826109ff565b8082528160209485820194600190878282169182600014610d50575050600114610cf7575b50610c3f92500382610a52565b51902091604051918201927f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f845260408301527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608301524660808301523060a083015260a0825260c082019082821067ffffffffffffffff831117610cca575060405251902090565b807f4e487b7100000000000000000000000000000000000000000000000000000000602492526041600452fd5b87805286915087907f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e5635b858310610d38575050610c3f935082010138610c32565b80548388018501528694508893909201918101610d21565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168852610c3f95151560051b8501019250389150610c32905056fea2646970667358221220fc57864635849482bf91be6c9f6c76b185718fecca7139ff4a15f0b069ee9c4a64736f6c63430008110033

Deployed Bytecode

0x6080604081815260048036101561001557600080fd5b600092833560e01c90816306fdde031461093b57508063095ea7b3146108a157806318160ddd1461086457806323b872dd14610747578063313ce567146106eb5780633644e515146106a957806370a08231146106475780637ecebe00146105e557806395d89b41146104ca578063a9059cbb1461041d578063d505accf1461011d5763dd62ed3e146100a757600080fd5b3461011957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101195760209282916100e2610b28565b6100ea610b50565b9173ffffffffffffffffffffffffffffffffffffffff8092168452865283832091168252845220549051908152f35b8280fd5b509190346104195760e07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261041957610157610b28565b90610160610b50565b91604435606435926084359260ff8416809403610415574285106103b857610186610baf565b9573ffffffffffffffffffffffffffffffffffffffff8092169586895260209560058752848a209889549960018b01905585519285898501957f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c987528b89870152169a8b606086015288608086015260a085015260c084015260c0835260e0830167ffffffffffffffff948482108683111761038b57818852845190206101008501927f19010000000000000000000000000000000000000000000000000000000000008452610102860152610122850152604281526101608401948186109086111761035f57848752519020835261018082015260a4356101a082015260c4356101c0909101528780528490889060809060015afa1561035557865116968715158061034c575b156102f15786977f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259596975283528087208688528352818188205551908152a380f35b8360649251917f08c379a0000000000000000000000000000000000000000000000000000000008352820152600e60248201527f494e56414c49445f5349474e45520000000000000000000000000000000000006044820152fd5b508488146102ae565b81513d88823e3d90fd5b60248c60418f7f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b5060248c60418f7f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b60648860208451917f08c379a0000000000000000000000000000000000000000000000000000000008352820152601760248201527f5045524d49545f444541444c494e455f455850495245440000000000000000006044820152fd5b8680fd5b5080fd5b50503461041957807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261041957602091610458610b28565b8273ffffffffffffffffffffffffffffffffffffffff6024359233855260038752828520610487858254610b73565b90551692838152600386522081815401905582519081527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef843392a35160018152f35b50503461041957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104195780519082600180549161050c836109ff565b8086529282811690811561059f5750600114610543575b5050506105358261053f940383610a52565b5191829182610ac2565b0390f35b94508085527fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf65b8286106105875750505061053582602061053f9582010194610523565b8054602087870181019190915290950194810161056a565b61053f9750869350602092506105359491507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001682840152151560051b82010194610523565b5050346104195760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610419578060209273ffffffffffffffffffffffffffffffffffffffff610637610b28565b1681526005845220549051908152f35b5050346104195760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610419578060209273ffffffffffffffffffffffffffffffffffffffff610699610b28565b1681526003845220549051908152f35b50503461041957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610419576020906106e4610baf565b9051908152f35b50503461041957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610419576020905160ff7f0000000000000000000000000000000000000000000000000000000000000012168152f35b5091346108615760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261086157610780610b28565b7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6107a9610b50565b946044358573ffffffffffffffffffffffffffffffffffffffff80951694858752602098848a958652838920338a52865283892054857fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361083e575b5050508688526003855282882061081f858254610b73565b9055169586815260038452208181540190558551908152a35160018152f35b61084791610b73565b90888a528652838920338a52865283892055388085610807565b80fd5b50503461041957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610419576020906002549051908152f35b503461011957817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610119576020926108db610b28565b9183602435928392338252875273ffffffffffffffffffffffffffffffffffffffff8282209516948582528752205582519081527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925843392a35160018152f35b8490843461011957827ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261011957828054610978816109ff565b8085529160019180831690811561059f57506001146109a3575050506105358261053f940383610a52565b80809650527f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e5635b8286106109e75750505061053582602061053f9582010194610523565b805460208787018101919091529095019481016109ca565b90600182811c92168015610a48575b6020831014610a1957565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b91607f1691610a0e565b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff821117610a9357604052565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60208082528251818301819052939260005b858110610b14575050507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8460006040809697860101520116010190565b818101830151848201604001528201610ad4565b6004359073ffffffffffffffffffffffffffffffffffffffff82168203610b4b57565b600080fd5b6024359073ffffffffffffffffffffffffffffffffffffffff82168203610b4b57565b91908203918211610b8057565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000467f000000000000000000000000000000000000000000000000000000000000000103610bfd57507fb8bd5782c0d716ad259bafc5dcb6ec596235852db665a7c79024c46b481db09f90565b60405181548291610c0d826109ff565b8082528160209485820194600190878282169182600014610d50575050600114610cf7575b50610c3f92500382610a52565b51902091604051918201927f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f845260408301527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608301524660808301523060a083015260a0825260c082019082821067ffffffffffffffff831117610cca575060405251902090565b807f4e487b7100000000000000000000000000000000000000000000000000000000602492526041600452fd5b87805286915087907f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e5635b858310610d38575050610c3f935082010138610c32565b80548388018501528694508893909201918101610d21565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168852610c3f95151560051b8501019250389150610c32905056fea2646970667358221220fc57864635849482bf91be6c9f6c76b185718fecca7139ff4a15f0b069ee9c4a64736f6c63430008110033

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.