Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Finance
Overview
Max Total Supply
8,154,445.473101623699 ASIC
Holders
4,613 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 12 Decimals)
Balance
196.280483221905 ASICValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
ASIC
Compiler Version
v0.8.16+commit.07a7930e
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
1234567891011121314151617181920212223242526/*/$$$$$$ /$$$$$$ /$$$$$$ /$$$$$$/$$__ $$ /$$__ $$|_ $$_/ /$$__ $$| $$ \ $$| $$ \__/ | $$ | $$ \__/| $$$$$$$$| $$$$$$ | $$ | $$| $$__ $$ \____ $$ | $$ | $$| $$ | $$ /$$ \ $$ | $$ | $$ $$| $$ | $$| $$$$$$/ /$$$$$$| $$$$$$/|__/ |__/ \______/ |______/ \______/*/// SPDX-License-Identifier: UNLICENSEDpragma solidity 0.8.16;import "@openzeppelin/contracts/token/ERC20/ERC20.sol";import "@openzeppelin/contracts/security/ReentrancyGuard.sol";import "../interfaces/PulseDogecoin.sol";/// @title ASIC (Application Specific Internet Currency) smart contract/// @author 01101000 01100101 01111000 01101001 01101110 01100110 01101111 00100000 00100110 00100000 01101011 01101111 01100100 01100101/// @dev ASIC is used to mine PulseBitcoin. ASIC can be created by transforming PulseDogecoin.contract ASIC is ERC20, ReentrancyGuard {IPulseDogecoin private _plsd;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)pragma solidity ^0.8.0;import "./IERC20.sol";import "./extensions/IERC20Metadata.sol";import "../../utils/Context.sol";/*** @dev Implementation of the {IERC20} interface.** This implementation is agnostic to the way tokens are created. This means* that a supply mechanism has to be added in a derived contract using {_mint}.* For a generic mechanism see {ERC20PresetMinterPauser}.** TIP: For a detailed writeup see our guide* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How* to implement supply mechanisms].** We have followed general OpenZeppelin Contracts guidelines: functions revert* instead returning `false` on failure. This behavior is nonetheless* conventional and does not conflict with the expectations of ERC20* applications.** Additionally, an {Approval} event is emitted on calls to {transferFrom}.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)pragma solidity ^0.8.0;/*** @dev Contract module that helps prevent reentrant calls to a function.** Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier* available, which can be applied to functions to make sure there are no nested* (reentrant) calls to them.** Note that because there is a single `nonReentrant` guard, functions marked as* `nonReentrant` may not call one another. This can be worked around by making* those functions `private`, and then adding `external` `nonReentrant` entry* points to them.** TIP: If you would like to learn more about reentrancy and alternative ways* to protect against it, check out our blog post* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].*/abstract contract ReentrancyGuard {// Booleans are more expensive than uint256 or any type that takes up a full// word because each write operation emits an extra SLOAD to first read the// slot's contents, replace the bits taken up by the boolean, and then write// back. This is the compiler's defense against contract upgrades and
1234567891011121314151617181920212223242526// SPDX-License-Identifier: UNLICENSED// !! THIS FILE WAS AUTOGENERATED BY abi-to-sol v0.6.6. SEE SOURCE BELOW. !!pragma solidity 0.8.16;interface IPulseDogecoin {event Approval(address indexed owner, address indexed spender, uint256 value);event Claim(address indexed to, uint256 amount);event Transfer(address indexed from, address indexed to, uint256 value);function allowance(address owner, address spender) external view returns (uint256);function approve(address spender, uint256 amount) external returns (bool);function balanceOf(address account) external view returns (uint256);function claim(address to,uint256 amount,bytes32[] memory proof) external;function currentDay() external view returns (uint256);function decimals() external view returns (uint8);function decreaseAllowance(address spender, uint256 subtractedValue) external returns (bool);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)pragma solidity ^0.8.0;/*** @dev Interface of the ERC20 standard as defined in the EIP.*/interface IERC20 {/*** @dev Emitted when `value` tokens are moved from one account (`from`) to* another (`to`).** Note that `value` may be zero.*/event Transfer(address indexed from, address indexed to, uint256 value);/*** @dev Emitted when the allowance of a `spender` for an `owner` is set by* a call to {approve}. `value` is the new allowance.*/event Approval(address indexed owner, address indexed spender, uint256 value);/*** @dev Returns the amount of tokens in existence.*/
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)pragma solidity ^0.8.0;import "../IERC20.sol";/*** @dev Interface for the optional metadata functions from the ERC20 standard.** _Available since v4.1._*/interface IERC20Metadata is IERC20 {/*** @dev Returns the name of the token.*/function name() external view returns (string memory);/*** @dev Returns the symbol of the token.*/function symbol() external view returns (string memory);/*** @dev Returns the decimals places of the token.*/
123456789101112131415161718192021222324// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)pragma solidity ^0.8.0;/*** @dev Provides information about the current execution context, including the* sender of the transaction and its data. While these are generally available* via msg.sender and msg.data, they should not be accessed in such a direct* manner, since when dealing with meta-transactions the account sending and* paying for execution may not be the actual sender (as far as an application* is concerned).** This contract is only required for intermediate, library-like contracts.*/abstract contract Context {function _msgSender() internal view virtual returns (address) {return msg.sender;}function _msgData() internal view virtual returns (bytes calldata) {return msg.data;}}
12345678910111213141516171819{"optimizer": {"enabled": true,"runs": 200},"outputSelection": {"*": {"*": ["evm.bytecode","evm.deployedBytecode","devdoc","userdoc","metadata","abi"]}},"libraries": {}}
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"uint256","name":"available","type":"uint256"},{"internalType":"uint256","name":"required","type":"uint256"}],"name":"InsufficientBalance","type":"error"},{"inputs":[{"internalType":"uint256","name":"sent","type":"uint256"},{"internalType":"uint256","name":"required","type":"uint256"}],"name":"InvalidAmount","type":"error"},{"inputs":[],"name":"NotOwner","type":"error"},{"inputs":[{"internalType":"uint256","name":"eventLength","type":"uint256"},{"internalType":"uint256","name":"currentDay","type":"uint256"}],"name":"TransformEventIsOver","type":"error"},{"inputs":[],"name":"TransformFailed","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"data0","type":"uint256"},{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"Transform","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","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":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalPlsdTransformed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transform","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040523480156200001157600080fd5b506040518060600160405280602281526020016200125e602291396040805180820190915260048152634153494360e01b6020820152600362000055838262000145565b50600462000064828262000145565b5050600160055550426080523360a052600680546001600160a01b0319167334f0915a5f15a66eba86f6a58be1a471fb7836a717905562000211565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620000cb57607f821691505b602082108103620000ec57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200014057600081815260208120601f850160051c810160208610156200011b5750805b601f850160051c820191505b818110156200013c5782815560010162000127565b5050505b505050565b81516001600160401b03811115620001615762000161620000a0565b6200017981620001728454620000b6565b84620000f2565b602080601f831160018114620001b15760008415620001985750858301515b600019600386901b1c1916600185901b1785556200013c565b600085815260208120601f198616915b82811015620001e257888601518255948401946001909101908401620001c1565b5085821015620002015787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60805160a05161101962000245600039600081816101d80152818161036f01526103d501526000610d7f01526110196000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c80638da5cb5b11610097578063a9059cbb11610066578063a9059cbb14610230578063d0e5c4ef14610243578063dd62ed3e1461024c578063eb9047bb1461025f57600080fd5b80638da5cb5b146101cb57806395d89b41146102025780639dc29fac1461020a578063a457c2d71461021d57600080fd5b8063313ce567116100d3578063313ce5671461016b578063395093511461017a57806340c10f191461018d57806370a08231146101a257600080fd5b806306fdde0314610105578063095ea7b31461012357806318160ddd1461014657806323b872dd14610158575b600080fd5b61010d610272565b60405161011a9190610db3565b60405180910390f35b610136610131366004610e1d565b610304565b604051901515815260200161011a565b6002545b60405190815260200161011a565b610136610166366004610e47565b61031e565b604051600c815260200161011a565b610136610188366004610e1d565b610342565b6101a061019b366004610e1d565b610364565b005b61014a6101b0366004610e83565b6001600160a01b031660009081526020819052604090205490565b6040516001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016815260200161011a565b61010d6103bb565b6101a0610218366004610e1d565b6103ca565b61013661022b366004610e1d565b61041d565b61013661023e366004610e1d565b61049d565b61014a60075481565b61014a61025a366004610ea5565b6104ab565b61014a61026d366004610ed8565b6104d6565b60606003805461028190610ef1565b80601f01602080910402602001604051908101604052809291908181526020018280546102ad90610ef1565b80156102fa5780601f106102cf576101008083540402835291602001916102fa565b820191906000526020600020905b8154815290600101906020018083116102dd57829003601f168201915b5050505050905090565b6000336103128185856107e2565b60019150505b92915050565b60003361032c858285610907565b610337858585610981565b506001949350505050565b60003361031281858561035583836104ab565b61035f9190610f41565b6107e2565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146103ad576040516330cd747160e01b815260040160405180910390fd5b6103b78282610b4f565b5050565b60606004805461028190610ef1565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610413576040516330cd747160e01b815260040160405180910390fd5b6103b78282610c2e565b6000338161042b82866104ab565b9050838110156104905760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61033782868684036107e2565b600033610312818585610981565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600060026005540361052a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610487565b6002600555603c610539610d74565b111561056b57603c610549610d74565b604051636472787160e01b815260048101929092526024820152604401610487565b81600003610596576040516307c83fcf60e41b81526004810183905260016024820152604401610487565b6006546040516370a0823160e01b81523360048201526001600160a01b03909116906370a0823190602401602060405180830381865afa1580156105de573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106029190610f54565b821115610699576006546040516370a0823160e01b81523360048201526001600160a01b03909116906370a0823190602401602060405180830381865afa158015610651573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106759190610f54565b60405163cf47918160e01b8152600481019190915260248101839052604401610487565b6006546040516323b872dd60e01b815233600482015261dead6024820152604481018490526000916001600160a01b0316906323b872dd906064016020604051808303816000875af11580156106f3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107179190610f6d565b156107be57826007600082825461072e9190610f41565b9091555061073f9050600584610f8f565b905061074b3382610b4f565b60405164ffffffffff421671ffffffffffffffffffffffffff0000000000602886901b16176cffffffffffffffffffffffffff60901b609084901b1617815233907f967b882e4e8219ffcb8bbde76da5df9eff97785aff7ad76a81964472ae9296d79060200160405180910390a26107d7565b6040516352e5bd8f60e01b815260040160405180910390fd5b600160055592915050565b6001600160a01b0383166108445760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610487565b6001600160a01b0382166108a55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610487565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b600061091384846104ab565b9050600019811461097b578181101561096e5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610487565b61097b84848484036107e2565b50505050565b6001600160a01b0383166109e55760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610487565b6001600160a01b038216610a475760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610487565b6001600160a01b03831660009081526020819052604090205481811015610abf5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610487565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610af6908490610f41565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b4291815260200190565b60405180910390a361097b565b6001600160a01b038216610ba55760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610487565b8060026000828254610bb79190610f41565b90915550506001600160a01b03821660009081526020819052604081208054839290610be4908490610f41565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216610c8e5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610487565b6001600160a01b03821660009081526020819052604090205481811015610d025760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610487565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610d31908490610fae565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016108fa565b600062015180610da47f000000000000000000000000000000000000000000000000000000000000000042610fae565b610dae9190610fc1565b905090565b600060208083528351808285015260005b81811015610de057858101830151858201604001528201610dc4565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610e1857600080fd5b919050565b60008060408385031215610e3057600080fd5b610e3983610e01565b946020939093013593505050565b600080600060608486031215610e5c57600080fd5b610e6584610e01565b9250610e7360208501610e01565b9150604084013590509250925092565b600060208284031215610e9557600080fd5b610e9e82610e01565b9392505050565b60008060408385031215610eb857600080fd5b610ec183610e01565b9150610ecf60208401610e01565b90509250929050565b600060208284031215610eea57600080fd5b5035919050565b600181811c90821680610f0557607f821691505b602082108103610f2557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561031857610318610f2b565b600060208284031215610f6657600080fd5b5051919050565b600060208284031215610f7f57600080fd5b81518015158114610e9e57600080fd5b6000816000190483118215151615610fa957610fa9610f2b565b500290565b8181038181111561031857610318610f2b565b600082610fde57634e487b7160e01b600052601260045260246000fd5b50049056fea264697066735822122059839d6e0c79d626eb5788ceffb94c439f5b8240027d97a479a8d760897e0c7e64736f6c634300081000334170706c69636174696f6e20537065636966696320496e7465726e657420436f696e
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101005760003560e01c80638da5cb5b11610097578063a9059cbb11610066578063a9059cbb14610230578063d0e5c4ef14610243578063dd62ed3e1461024c578063eb9047bb1461025f57600080fd5b80638da5cb5b146101cb57806395d89b41146102025780639dc29fac1461020a578063a457c2d71461021d57600080fd5b8063313ce567116100d3578063313ce5671461016b578063395093511461017a57806340c10f191461018d57806370a08231146101a257600080fd5b806306fdde0314610105578063095ea7b31461012357806318160ddd1461014657806323b872dd14610158575b600080fd5b61010d610272565b60405161011a9190610db3565b60405180910390f35b610136610131366004610e1d565b610304565b604051901515815260200161011a565b6002545b60405190815260200161011a565b610136610166366004610e47565b61031e565b604051600c815260200161011a565b610136610188366004610e1d565b610342565b6101a061019b366004610e1d565b610364565b005b61014a6101b0366004610e83565b6001600160a01b031660009081526020819052604090205490565b6040516001600160a01b037f0000000000000000000000005ee84583f67d5ecea5420dbb42b462896e7f8d0616815260200161011a565b61010d6103bb565b6101a0610218366004610e1d565b6103ca565b61013661022b366004610e1d565b61041d565b61013661023e366004610e1d565b61049d565b61014a60075481565b61014a61025a366004610ea5565b6104ab565b61014a61026d366004610ed8565b6104d6565b60606003805461028190610ef1565b80601f01602080910402602001604051908101604052809291908181526020018280546102ad90610ef1565b80156102fa5780601f106102cf576101008083540402835291602001916102fa565b820191906000526020600020905b8154815290600101906020018083116102dd57829003601f168201915b5050505050905090565b6000336103128185856107e2565b60019150505b92915050565b60003361032c858285610907565b610337858585610981565b506001949350505050565b60003361031281858561035583836104ab565b61035f9190610f41565b6107e2565b336001600160a01b037f0000000000000000000000005ee84583f67d5ecea5420dbb42b462896e7f8d0616146103ad576040516330cd747160e01b815260040160405180910390fd5b6103b78282610b4f565b5050565b60606004805461028190610ef1565b336001600160a01b037f0000000000000000000000005ee84583f67d5ecea5420dbb42b462896e7f8d061614610413576040516330cd747160e01b815260040160405180910390fd5b6103b78282610c2e565b6000338161042b82866104ab565b9050838110156104905760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61033782868684036107e2565b600033610312818585610981565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600060026005540361052a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610487565b6002600555603c610539610d74565b111561056b57603c610549610d74565b604051636472787160e01b815260048101929092526024820152604401610487565b81600003610596576040516307c83fcf60e41b81526004810183905260016024820152604401610487565b6006546040516370a0823160e01b81523360048201526001600160a01b03909116906370a0823190602401602060405180830381865afa1580156105de573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106029190610f54565b821115610699576006546040516370a0823160e01b81523360048201526001600160a01b03909116906370a0823190602401602060405180830381865afa158015610651573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106759190610f54565b60405163cf47918160e01b8152600481019190915260248101839052604401610487565b6006546040516323b872dd60e01b815233600482015261dead6024820152604481018490526000916001600160a01b0316906323b872dd906064016020604051808303816000875af11580156106f3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107179190610f6d565b156107be57826007600082825461072e9190610f41565b9091555061073f9050600584610f8f565b905061074b3382610b4f565b60405164ffffffffff421671ffffffffffffffffffffffffff0000000000602886901b16176cffffffffffffffffffffffffff60901b609084901b1617815233907f967b882e4e8219ffcb8bbde76da5df9eff97785aff7ad76a81964472ae9296d79060200160405180910390a26107d7565b6040516352e5bd8f60e01b815260040160405180910390fd5b600160055592915050565b6001600160a01b0383166108445760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610487565b6001600160a01b0382166108a55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610487565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b600061091384846104ab565b9050600019811461097b578181101561096e5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610487565b61097b84848484036107e2565b50505050565b6001600160a01b0383166109e55760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610487565b6001600160a01b038216610a475760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610487565b6001600160a01b03831660009081526020819052604090205481811015610abf5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610487565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610af6908490610f41565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b4291815260200190565b60405180910390a361097b565b6001600160a01b038216610ba55760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610487565b8060026000828254610bb79190610f41565b90915550506001600160a01b03821660009081526020819052604081208054839290610be4908490610f41565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216610c8e5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610487565b6001600160a01b03821660009081526020819052604090205481811015610d025760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610487565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610d31908490610fae565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016108fa565b600062015180610da47f000000000000000000000000000000000000000000000000000000006351849b42610fae565b610dae9190610fc1565b905090565b600060208083528351808285015260005b81811015610de057858101830151858201604001528201610dc4565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610e1857600080fd5b919050565b60008060408385031215610e3057600080fd5b610e3983610e01565b946020939093013593505050565b600080600060608486031215610e5c57600080fd5b610e6584610e01565b9250610e7360208501610e01565b9150604084013590509250925092565b600060208284031215610e9557600080fd5b610e9e82610e01565b9392505050565b60008060408385031215610eb857600080fd5b610ec183610e01565b9150610ecf60208401610e01565b90509250929050565b600060208284031215610eea57600080fd5b5035919050565b600181811c90821680610f0557607f821691505b602082108103610f2557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561031857610318610f2b565b600060208284031215610f6657600080fd5b5051919050565b600060208284031215610f7f57600080fd5b81518015158114610e9e57600080fd5b6000816000190483118215151615610fa957610fa9610f2b565b500290565b8181038181111561031857610318610f2b565b600082610fde57634e487b7160e01b600052601260045260246000fd5b50049056fea264697066735822122059839d6e0c79d626eb5788ceffb94c439f5b8240027d97a479a8d760897e0c7e64736f6c63430008100033
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.