S Price: $0.448004 (-0.68%)
    /

    Token

    Vicuna Sonic WS (vSonicWS)

    Overview

    Max Total Supply

    1,856,713.931345451893736336 vSonicWS

    Holders

    817

    Market

    Price

    $0.00 @ 0.000000 S

    Onchain Market Cap

    $0.00

    Circulating Supply Market Cap

    -

    Other Info

    Token Contract (WITH 18 Decimals)

    Balance
    0.000251692916217883 vSonicWS

    Value
    $0.00
    0x12258755D6Ed8B67e830e75B9729404431c35a7D
    Loading...
    Loading
    Loading...
    Loading
    Loading...
    Loading

    Click here to update the token information / general information

    Similar Match Source Code
    This contract matches the deployed Bytecode of the Source Code for Contract 0x58ccf479...A21C07d04
    The constructor portion of the code might be different and could alter the actual behaviour of the contract

    Contract Name:
    InitializableImmutableAdminUpgradeabilityProxy

    Compiler Version
    v0.8.10+commit.fc410830

    Optimization Enabled:
    Yes with 999 runs

    Other Settings:
    istanbul EvmVersion, MIT license
    File 1 of 6 : InitializableImmutableAdminUpgradeabilityProxy.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: AGPL-3.0
    pragma solidity ^0.8.0;
    import {InitializableUpgradeabilityProxy} from "InitializableUpgradeabilityProxy.sol";
    import {Proxy} from "Proxy.sol";
    import {BaseImmutableAdminUpgradeabilityProxy} from "BaseImmutableAdminUpgradeabilityProxy.sol";
    /**
    * @title InitializableAdminUpgradeabilityProxy
    * @author Aave
    * @dev Extends BaseAdminUpgradeabilityProxy with an initializer function
    */
    contract InitializableImmutableAdminUpgradeabilityProxy is
    BaseImmutableAdminUpgradeabilityProxy,
    InitializableUpgradeabilityProxy
    {
    /**
    * @dev Constructor.
    * @param admin The address of the admin
    */
    constructor(address admin) BaseImmutableAdminUpgradeabilityProxy(admin) {
    // Intentionally left blank
    }
    /// @inheritdoc BaseImmutableAdminUpgradeabilityProxy
    function _willFallback() internal override(BaseImmutableAdminUpgradeabilityProxy, Proxy) {
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 2 of 6 : InitializableUpgradeabilityProxy.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: AGPL-3.0
    pragma solidity ^0.8.0;
    import "BaseUpgradeabilityProxy.sol";
    /**
    * @title InitializableUpgradeabilityProxy
    * @dev Extends BaseUpgradeabilityProxy with an initializer for initializing
    * implementation and init data.
    */
    contract InitializableUpgradeabilityProxy is BaseUpgradeabilityProxy {
    /**
    * @dev Contract initializer.
    * @param _logic Address of the initial implementation.
    * @param _data Data to send as msg.data to the implementation to initialize the proxied contract.
    * It should include the signature and the parameters of the function to be called, as described in
    * https://solidity.readthedocs.io/en/v0.4.24/abi-spec.html#function-selector-and-argument-encoding.
    * This parameter is optional, if no data is given the initialization call to proxied contract will be skipped.
    */
    function initialize(address _logic, bytes memory _data) public payable {
    require(_implementation() == address(0));
    assert(IMPLEMENTATION_SLOT == bytes32(uint256(keccak256('eip1967.proxy.implementation')) - 1));
    _setImplementation(_logic);
    if (_data.length > 0) {
    (bool success, ) = _logic.delegatecall(_data);
    require(success);
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 3 of 6 : BaseUpgradeabilityProxy.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: AGPL-3.0
    pragma solidity ^0.8.0;
    import "Proxy.sol";
    import "Address.sol";
    /**
    * @title BaseUpgradeabilityProxy
    * @dev This contract implements a proxy that allows to change the
    * implementation address to which it will delegate.
    * Such a change is called an implementation upgrade.
    */
    contract BaseUpgradeabilityProxy is Proxy {
    /**
    * @dev Emitted when the implementation is upgraded.
    * @param implementation Address of the new implementation.
    */
    event Upgraded(address indexed implementation);
    /**
    * @dev Storage slot with the address of the current implementation.
    * This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1, and is
    * validated in the constructor.
    */
    bytes32 internal constant IMPLEMENTATION_SLOT =
    0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 4 of 6 : Proxy.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: AGPL-3.0
    pragma solidity ^0.8.0;
    /**
    * @title Proxy
    * @dev Implements delegation of calls to other contracts, with proper
    * forwarding of return values and bubbling of failures.
    * It defines a fallback function that delegates all calls to the address
    * returned by the abstract _implementation() internal function.
    */
    abstract contract Proxy {
    /**
    * @dev Fallback function.
    * Will run if no other function in the contract matches the call data.
    * Implemented entirely in `_fallback`.
    */
    fallback() external payable {
    _fallback();
    }
    /**
    * @return The Address of the implementation.
    */
    function _implementation() internal view virtual returns (address);
    /**
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 5 of 6 : Address.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts v4.4.1 (utils/Address.sol)
    pragma solidity ^0.8.0;
    /**
    * @dev Collection of functions related to the address type
    */
    library Address {
    /**
    * @dev Returns true if `account` is a contract.
    *
    * [IMPORTANT]
    * ====
    * It is unsafe to assume that an address for which this function returns
    * false is an externally-owned account (EOA) and not a contract.
    *
    * Among others, `isContract` will return false for the following
    * types of addresses:
    *
    * - an externally-owned account
    * - a contract in construction
    * - an address where a contract will be created
    * - an address where a contract lived, but was destroyed
    * ====
    */
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 6 of 6 : BaseImmutableAdminUpgradeabilityProxy.sol
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: AGPL-3.0
    pragma solidity ^0.8.0;
    import {BaseUpgradeabilityProxy} from "BaseUpgradeabilityProxy.sol";
    /**
    * @title BaseImmutableAdminUpgradeabilityProxy
    * @author Aave, inspired by the OpenZeppelin upgradeability proxy pattern
    * @notice This contract combines an upgradeability proxy with an authorization
    * mechanism for administrative tasks.
    * @dev The admin role is stored in an immutable, which helps saving transactions costs
    * All external functions in this contract must be guarded by the
    * `ifAdmin` modifier. See ethereum/solidity#3864 for a Solidity
    * feature proposal that would enable this to be done automatically.
    */
    contract BaseImmutableAdminUpgradeabilityProxy is BaseUpgradeabilityProxy {
    address internal immutable _admin;
    /**
    * @dev Constructor.
    * @param admin The address of the admin
    */
    constructor(address admin) {
    _admin = admin;
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    Settings
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    {
    "evmVersion": "istanbul",
    "optimizer": {
    "enabled": true,
    "runs": 999
    },
    "libraries": {
    "InitializableImmutableAdminUpgradeabilityProxy.sol": {}
    },
    "outputSelection": {
    "*": {
    "*": [
    "evm.bytecode",
    "evm.deployedBytecode",
    "abi"
    ]
    }
    }
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    Contract Security Audit

    Contract ABI

    API
    [{"inputs":[{"internalType":"address","name":"admin","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_logic","type":"address"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"initialize","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"}],"name":"upgradeTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"payable","type":"function"}]

    60a060405234801561001057600080fd5b5060405161089f38038061089f83398101604081905261002f91610040565b6001600160a01b0316608052610070565b60006020828403121561005257600080fd5b81516001600160a01b038116811461006957600080fd5b9392505050565b6080516107f16100ae600039600081816101350152818161017a01528181610233015281816103a9015281816103d2015261050801526107f16000f3fe60806040526004361061005a5760003560e01c80635c60da1b116100435780635c60da1b14610097578063d1f57894146100c8578063f851a440146100db5761005a565b80633659cfe6146100645780634f1ef28614610084575b6100626100f0565b005b34801561007057600080fd5b5061006261007f3660046105b8565b61012a565b6100626100923660046105da565b61016f565b3480156100a357600080fd5b506100ac610226565b6040516001600160a01b03909116815260200160405180910390f35b6100626100d6366004610673565b61028a565b3480156100e757600080fd5b506100ac61039c565b6100f86103f4565b6101286101237f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b6103fc565b565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614156101675761016481610420565b50565b6101646100f0565b336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161415610219576101a983610420565b6000836001600160a01b031683836040516101c5929190610735565b600060405180830381855af49150503d8060008114610200576040519150601f19603f3d011682016040523d82523d6000602084013e610205565b606091505b505090508061021357600080fd5b50505050565b6102216100f0565b505050565b6000336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016141561027f57507f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b6102876100f0565b90565b60006102b47f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b6001600160a01b0316146102c757600080fd5b6102f260017f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbd610745565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc146103205761032061076a565b61032982610460565b805115610398576000826001600160a01b03168260405161034a9190610780565b600060405180830381855af49150503d8060008114610385576040519150601f19603f3d011682016040523d82523d6000602084013e61038a565b606091505b505090508061022157600080fd5b5050565b6000336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016141561027f57507f000000000000000000000000000000000000000000000000000000000000000090565b6101286104fd565b3660008037600080366000845af43d6000803e80801561041b573d6000f35b3d6000fd5b61042981610460565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b803b6104d95760405162461bcd60e51b815260206004820152603b60248201527f43616e6e6f742073657420612070726f787920696d706c656d656e746174696f60448201527f6e20746f2061206e6f6e2d636f6e74726163742061646472657373000000000060648201526084015b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc55565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614156101285760405162461bcd60e51b815260206004820152603260248201527f43616e6e6f742063616c6c2066616c6c6261636b2066756e6374696f6e20667260448201527f6f6d207468652070726f78792061646d696e000000000000000000000000000060648201526084016104d0565b80356001600160a01b03811681146105b357600080fd5b919050565b6000602082840312156105ca57600080fd5b6105d38261059c565b9392505050565b6000806000604084860312156105ef57600080fd5b6105f88461059c565b9250602084013567ffffffffffffffff8082111561061557600080fd5b818601915086601f83011261062957600080fd5b81358181111561063857600080fd5b87602082850101111561064a57600080fd5b6020830194508093505050509250925092565b634e487b7160e01b600052604160045260246000fd5b6000806040838503121561068657600080fd5b61068f8361059c565b9150602083013567ffffffffffffffff808211156106ac57600080fd5b818501915085601f8301126106c057600080fd5b8135818111156106d2576106d261065d565b604051601f8201601f19908116603f011681019083821181831017156106fa576106fa61065d565b8160405282815288602084870101111561071357600080fd5b8260208601602083013760006020848301015280955050505050509250929050565b8183823760009101908152919050565b60008282101561076557634e487b7160e01b600052601160045260246000fd5b500390565b634e487b7160e01b600052600160045260246000fd5b6000825160005b818110156107a15760208186018101518583015201610787565b818111156107b0576000828501525b50919091019291505056fea264697066735822122061b4e265da271f7992f6f0a1a419700446369026f6dba11bca8125e55468b12b64736f6c634300080a003300000000000000000000000032f37e490dde5a989264477173af15e025443bdb

    Deployed Bytecode

    0x60806040526004361061005a5760003560e01c80635c60da1b116100435780635c60da1b14610097578063d1f57894146100c8578063f851a440146100db5761005a565b80633659cfe6146100645780634f1ef28614610084575b6100626100f0565b005b34801561007057600080fd5b5061006261007f3660046105b8565b61012a565b6100626100923660046105da565b61016f565b3480156100a357600080fd5b506100ac610226565b6040516001600160a01b03909116815260200160405180910390f35b6100626100d6366004610673565b61028a565b3480156100e757600080fd5b506100ac61039c565b6100f86103f4565b6101286101237f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b6103fc565b565b336001600160a01b037f00000000000000000000000032f37e490dde5a989264477173af15e025443bdb1614156101675761016481610420565b50565b6101646100f0565b336001600160a01b037f00000000000000000000000032f37e490dde5a989264477173af15e025443bdb161415610219576101a983610420565b6000836001600160a01b031683836040516101c5929190610735565b600060405180830381855af49150503d8060008114610200576040519150601f19603f3d011682016040523d82523d6000602084013e610205565b606091505b505090508061021357600080fd5b50505050565b6102216100f0565b505050565b6000336001600160a01b037f00000000000000000000000032f37e490dde5a989264477173af15e025443bdb16141561027f57507f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b6102876100f0565b90565b60006102b47f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b6001600160a01b0316146102c757600080fd5b6102f260017f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbd610745565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc146103205761032061076a565b61032982610460565b805115610398576000826001600160a01b03168260405161034a9190610780565b600060405180830381855af49150503d8060008114610385576040519150601f19603f3d011682016040523d82523d6000602084013e61038a565b606091505b505090508061022157600080fd5b5050565b6000336001600160a01b037f00000000000000000000000032f37e490dde5a989264477173af15e025443bdb16141561027f57507f00000000000000000000000032f37e490dde5a989264477173af15e025443bdb90565b6101286104fd565b3660008037600080366000845af43d6000803e80801561041b573d6000f35b3d6000fd5b61042981610460565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b803b6104d95760405162461bcd60e51b815260206004820152603b60248201527f43616e6e6f742073657420612070726f787920696d706c656d656e746174696f60448201527f6e20746f2061206e6f6e2d636f6e74726163742061646472657373000000000060648201526084015b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc55565b336001600160a01b037f00000000000000000000000032f37e490dde5a989264477173af15e025443bdb1614156101285760405162461bcd60e51b815260206004820152603260248201527f43616e6e6f742063616c6c2066616c6c6261636b2066756e6374696f6e20667260448201527f6f6d207468652070726f78792061646d696e000000000000000000000000000060648201526084016104d0565b80356001600160a01b03811681146105b357600080fd5b919050565b6000602082840312156105ca57600080fd5b6105d38261059c565b9392505050565b6000806000604084860312156105ef57600080fd5b6105f88461059c565b9250602084013567ffffffffffffffff8082111561061557600080fd5b818601915086601f83011261062957600080fd5b81358181111561063857600080fd5b87602082850101111561064a57600080fd5b6020830194508093505050509250925092565b634e487b7160e01b600052604160045260246000fd5b6000806040838503121561068657600080fd5b61068f8361059c565b9150602083013567ffffffffffffffff808211156106ac57600080fd5b818501915085601f8301126106c057600080fd5b8135818111156106d2576106d261065d565b604051601f8201601f19908116603f011681019083821181831017156106fa576106fa61065d565b8160405282815288602084870101111561071357600080fd5b8260208601602083013760006020848301015280955050505050509250929050565b8183823760009101908152919050565b60008282101561076557634e487b7160e01b600052601160045260246000fd5b500390565b634e487b7160e01b600052600160045260246000fd5b6000825160005b818110156107a15760208186018101518583015201610787565b818111156107b0576000828501525b50919091019291505056fea264697066735822122061b4e265da271f7992f6f0a1a419700446369026f6dba11bca8125e55468b12b64736f6c634300080a0033

    Deployed Bytecode Sourcemap

    426:541:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;572:11:5;:9;:11::i;:::-;426:541:3;1601:103:1;;;;;;;;;;-1:-1:-1;1601:103:1;;;;;:::i;:::-;;:::i;2233:234::-;;;;;;:::i;:::-;;:::i;1309:96::-;;;;;;;;;;;;;:::i;:::-;;;-1:-1:-1;;;;;1240:55:6;;;1222:74;;1210:2;1195:18;1309:96:1;;;;;;;857:365:4;;;;;;:::i;:::-;;:::i;1122:76:1:-;;;;;;;;;;;;;:::i;2155:90:5:-;2191:15;:13;:15::i;:::-;2212:28;2222:17;808:66:2;1168:11;;993:196;2222:17:5;2212:9;:28::i;:::-;2155:90::o;1601:103:1:-;949:10;-1:-1:-1;;;;;963:6:1;949:20;;945:74;;;1670:29:::1;1681:17;1670:10;:29::i;:::-;1601:103:::0;:::o;945:74::-;1001:11;:9;:11::i;2233:234::-;949:10;-1:-1:-1;;;;;963:6:1;949:20;;945:74;;;2350:29:::1;2361:17;2350:10;:29::i;:::-;2386:12;2404:17;-1:-1:-1::0;;;;;2404:30:1::1;2435:4;;2404:36;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2385:55;;;2454:7;2446:16;;;::::0;::::1;;2344:123;2233:234:::0;;;:::o;945:74::-;1001:11;:9;:11::i;:::-;2233:234;;;:::o;1309:96::-;1361:7;949:10;-1:-1:-1;;;;;963:6:1;949:20;;945:74;;;-1:-1:-1;808:66:2;1168:11;;1309:96:1:o;945:74::-;1001:11;:9;:11::i;:::-;1309:96;:::o;857:365:4:-;971:1;942:17;808:66:2;1168:11;;993:196;942:17:4;-1:-1:-1;;;;;942:31:4;;934:40;;;;;;1018:54;1071:1;1026:41;1018:54;:::i;:::-;808:66:2;987:86:4;980:94;;;;:::i;:::-;1080:26;1099:6;1080:18;:26::i;:::-;1116:12;;:16;1112:106;;1143:12;1161:6;-1:-1:-1;;;;;1161:19:4;1181:5;1161:26;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1142:45;;;1203:7;1195:16;;;;;1112:106;857:365;;:::o;1122:76:1:-;1165:7;949:10;-1:-1:-1;;;;;963:6:1;949:20;;945:74;;;-1:-1:-1;1187:6:1::1;1309:96:::0;:::o;812:153:3:-;907:53;:51;:53::i;1005:802:5:-;1338:14;1335:1;1332;1319:34;1534:1;1531;1515:14;1512:1;1496:14;1489:5;1476:60;1598:16;1595:1;1592;1577:38;1630:6;1685:52;;;;1772:16;1769:1;1762:27;1685:52;1712:16;1709:1;1702:27;1324:142:2;1386:37;1405:17;1386:18;:37::i;:::-;1434:27;;-1:-1:-1;;;;;1434:27:2;;;;;;;;1324:142;:::o;1603:334::-;1025:20:0;;1673:127:2;;;;-1:-1:-1;;;1673:127:2;;3878:2:6;1673:127:2;;;3860:21:6;3917:2;3897:18;;;3890:30;3956:34;3936:18;;;3929:62;4027:29;4007:18;;;4000:57;4074:19;;1673:127:2;;;;;;;;;808:66;1896:31;1603:334::o;2545:172:1:-;2610:10;-1:-1:-1;;;;;2624:6:1;2610:20;;;2602:83;;;;-1:-1:-1;;;2602:83:1;;4306:2:6;2602:83:1;;;4288:21:6;4345:2;4325:18;;;4318:30;4384:34;4364:18;;;4357:62;4455:20;4435:18;;;4428:48;4493:19;;2602:83:1;4104:414:6;14:196;82:20;;-1:-1:-1;;;;;131:54:6;;121:65;;111:93;;200:1;197;190:12;111:93;14:196;;;:::o;215:186::-;274:6;327:2;315:9;306:7;302:23;298:32;295:52;;;343:1;340;333:12;295:52;366:29;385:9;366:29;:::i;:::-;356:39;215:186;-1:-1:-1;;;215:186:6:o;406:665::-;485:6;493;501;554:2;542:9;533:7;529:23;525:32;522:52;;;570:1;567;560:12;522:52;593:29;612:9;593:29;:::i;:::-;583:39;;673:2;662:9;658:18;645:32;696:18;737:2;729:6;726:14;723:34;;;753:1;750;743:12;723:34;791:6;780:9;776:22;766:32;;836:7;829:4;825:2;821:13;817:27;807:55;;858:1;855;848:12;807:55;898:2;885:16;924:2;916:6;913:14;910:34;;;940:1;937;930:12;910:34;985:7;980:2;971:6;967:2;963:15;959:24;956:37;953:57;;;1006:1;1003;996:12;953:57;1037:2;1033;1029:11;1019:21;;1059:6;1049:16;;;;;406:665;;;;;:::o;1307:184::-;-1:-1:-1;;;1356:1:6;1349:88;1456:4;1453:1;1446:15;1480:4;1477:1;1470:15;1496:995;1573:6;1581;1634:2;1622:9;1613:7;1609:23;1605:32;1602:52;;;1650:1;1647;1640:12;1602:52;1673:29;1692:9;1673:29;:::i;:::-;1663:39;;1753:2;1742:9;1738:18;1725:32;1776:18;1817:2;1809:6;1806:14;1803:34;;;1833:1;1830;1823:12;1803:34;1871:6;1860:9;1856:22;1846:32;;1916:7;1909:4;1905:2;1901:13;1897:27;1887:55;;1938:1;1935;1928:12;1887:55;1974:2;1961:16;1996:2;1992;1989:10;1986:36;;;2002:18;;:::i;:::-;2077:2;2071:9;2045:2;2131:13;;-1:-1:-1;;2127:22:6;;;2151:2;2123:31;2119:40;2107:53;;;2175:18;;;2195:22;;;2172:46;2169:72;;;2221:18;;:::i;:::-;2261:10;2257:2;2250:22;2296:2;2288:6;2281:18;2336:7;2331:2;2326;2322;2318:11;2314:20;2311:33;2308:53;;;2357:1;2354;2347:12;2308:53;2413:2;2408;2404;2400:11;2395:2;2387:6;2383:15;2370:46;2458:1;2453:2;2448;2440:6;2436:15;2432:24;2425:35;2479:6;2469:16;;;;;;;1496:995;;;;;:::o;2496:271::-;2679:6;2671;2666:3;2653:33;2635:3;2705:16;;2730:13;;;2705:16;2496:271;-1:-1:-1;2496:271:6:o;2772:279::-;2812:4;2840:1;2837;2834:8;2831:188;;;-1:-1:-1;;;2872:1:6;2865:88;2976:4;2973:1;2966:15;3004:4;3001:1;2994:15;2831:188;-1:-1:-1;3036:9:6;;2772:279::o;3056:184::-;-1:-1:-1;;;3105:1:6;3098:88;3205:4;3202:1;3195:15;3229:4;3226:1;3219:15;3245:426;3374:3;3412:6;3406:13;3437:1;3447:129;3461:6;3458:1;3455:13;3447:129;;;3559:4;3543:14;;;3539:25;;3533:32;3520:11;;;3513:53;3476:12;3447:129;;;3594:6;3591:1;3588:13;3585:48;;;3629:1;3620:6;3615:3;3611:16;3604:27;3585:48;-1:-1:-1;3649:16:6;;;;;3245:426;-1:-1:-1;;3245:426:6:o

    Swarm Source

    ipfs://61b4e265da271f7992f6f0a1a419700446369026f6dba11bca8125e55468b12b
    [ 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.