Latest 25 from a total of 18,484 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 50655361 | 36 mins ago | IN | 0 ETH | 0.0000084 | ||||
Approve | 50646682 | 3 hrs ago | IN | 0 ETH | 0.00000818 | ||||
Transfer | 50643621 | 3 hrs ago | IN | 0 ETH | 0.00000802 | ||||
Approve | 50643615 | 3 hrs ago | IN | 0 ETH | 0.0000088 | ||||
Approve | 50643356 | 4 hrs ago | IN | 0 ETH | 0.00000767 | ||||
Approve | 50642689 | 4 hrs ago | IN | 0 ETH | 0.00000847 | ||||
Transfer | 50642109 | 4 hrs ago | IN | 0 ETH | 0.00001028 | ||||
Approve | 50642009 | 4 hrs ago | IN | 0 ETH | 0.00000743 | ||||
Approve | 50639328 | 5 hrs ago | IN | 0 ETH | 0.00000653 | ||||
Approve | 50629756 | 7 hrs ago | IN | 0 ETH | 0.00000678 | ||||
Transfer | 50629542 | 7 hrs ago | IN | 0 ETH | 0.00001084 | ||||
Approve | 50626742 | 8 hrs ago | IN | 0 ETH | 0.00000618 | ||||
Approve | 50620125 | 10 hrs ago | IN | 0 ETH | 0.00000567 | ||||
Approve | 50617702 | 11 hrs ago | IN | 0 ETH | 0.00000818 | ||||
Approve | 50607527 | 14 hrs ago | IN | 0 ETH | 0.00000385 | ||||
Approve | 50607498 | 14 hrs ago | IN | 0 ETH | 0.00000765 | ||||
Approve | 50603613 | 15 hrs ago | IN | 0 ETH | 0.00000489 | ||||
Approve | 50594810 | 18 hrs ago | IN | 0 ETH | 0.0000065 | ||||
Transfer | 50593991 | 18 hrs ago | IN | 0 ETH | 0.00000792 | ||||
Approve | 50587840 | 20 hrs ago | IN | 0 ETH | 0.00000786 | ||||
Approve | 50583015 | 21 hrs ago | IN | 0 ETH | 0.00000449 | ||||
Approve | 50580377 | 22 hrs ago | IN | 0 ETH | 0.00000792 | ||||
Approve | 50565422 | 26 hrs ago | IN | 0 ETH | 0.00000796 | ||||
Approve | 50565011 | 26 hrs ago | IN | 0 ETH | 0.0000063 | ||||
Approve | 50563043 | 27 hrs ago | IN | 0 ETH | 0.00000447 |
Latest 1 internal transaction
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
29666914 | 258 days ago | Contract Creation | 0 ETH |
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Source Code Verified (Exact Match)
Contract Name:
Long
Compiler Version
v0.8.23+commit.f704f362
ZkSolc Version
v1.3.22
Contract Source Code (Solidity)
/** *Submitted for verification at era.zksync.network on 2024-03-23 */ // Sources flattened with hardhat v2.22.1 https://hardhat.org // SPDX-License-Identifier: MIT // File @openzeppelin/contracts/token/ERC20/[email protected] // Original license: 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. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @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. */ function decimals() external view returns (uint8); } // File @openzeppelin/contracts/utils/[email protected] // Original license: 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; } } // File @openzeppelin/contracts/token/ERC20/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @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}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File contracts/Long.sol // Original license: SPDX_License_Identifier: MIT pragma solidity 0.8.23; contract Long is ERC20("Long", "LONG") { //Website: https://long.fun uint256 maxSupply = 1_000_000_000_000 ether; //Donation to $LONG can be sent to fundMultisigWallet address fundMultisigWallet = 0x87432579C3aC0fBC65cb7Dd0AA023Dca5E783810; constructor() { _mint(fundMultisigWallet, maxSupply); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":[],"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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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"}]
Contract Creation Code
9c4d535b00000000000000000000000000000000000000000000000000000000000000000100012d68bfba90936d5ae3ca1b1bfdce72d20022b30a3b69c6cb4145e8064600000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x0005000000000002000000000401034f0000008001000039000000400010043f00000000010400190000006001100270000000f5011001970000000102200190000000300000c13d000000040210008c000002690000413d000000000204043b000000e002200270000001030320009c000000760000a13d000001040320009c000000830000213d000001080320009c000001750000613d000001090320009c000001ab0000613d0000010a0120009c000002690000c13d0000000001000416000000000101004b000002690000c13d0000000403000039000000000203041a000000010420019000000001052002700000007f0650018f000000000605c0190000001f0560008c00000000050000190000000105002039000000000552013f0000000105500190000000480000c13d000000800060043f000000000404004b000002810000c13d000001000300008a000000000232016f000000a00020043f000000000106004b000000c001000039000000a001006039000002900000013d0000000001000416000000000101004b000002690000c13d0000000404000039000000800040043f000000f601000041000000a00010043f0000010001000039000000400010043f000000c00040043f000000f701000041000000e00010043f0000000305000039000000000105041a000000010210019000000001011002700000007f0310018f000000000301c0190000001f0130008c00000000010000190000000101002039000000010110018f000000000112004b0000004c0000613d0000011b0100004100000000001004350000002201000039000000730000013d000000200130008c000000690000413d000300000003001d000500000004001d000400000005001d0000000000500435000000f5010000410000000002000414000000f50320009c0000000002018019000000c001200210000000f8011001c7000080100200003903ce03c90000040f0000000102200190000002690000613d000000000101043b00000003020000290000001f0220003900000005022002700000000002210019000000000321004b00000005040000290000000405000029000000690000813d000000000001041b0000000101100039000000000321004b000000650000413d000000a00100043d000000f90110019700000008011001bf000000000015041b000000c00500043d000000fa0150009c000000a30000413d0000011b0100004100000000001004350000004101000039000000040010043f0000011c01000041000003d0000104300000010b0320009c000000ff0000a13d0000010c0320009c000001ba0000613d0000010d0320009c000001120000613d0000010e0120009c000002690000c13d0000000001000416000000000101004b000002690000c13d0000001201000039000001bf0000013d000001050320009c000001c20000613d000001060320009c000002070000613d000001070220009c000002690000c13d0000000002000416000000000202004b000002690000c13d000000040110008a000000400110008c000002690000413d0000000401400370000000000101043b000001110210009c000002690000213d0000002402400370000000000302043b000001110230009c000002690000213d00000000001004350000000101000039000000200010043f0000004001000039000500000001001d000400000003001d03ce03b20000040f00000004020000290000000000200435000000200010043f0000000501000029000001b80000013d000000000104041a000000010210019000000001021002700000007f0320018f000000000302c0190000001f0230008c00000000020000190000000102002039000000000121013f0000000101100190000000480000c13d000000200130008c000000d00000413d000300000003001d000400000005001d000500000004001d0000000000400435000000f5010000410000000002000414000000f50320009c0000000002018019000000c001200210000000f8011001c7000080100200003903ce03c90000040f0000000102200190000002690000613d00000004050000290000001f025000390000000502200270000000200350008c0000000002004019000000000301043b00000003010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b0000000504000029000000d00000813d000000000002041b0000000102200039000000000312004b000000cc0000413d0000001f0150008c0000021e0000a13d000400000005001d000500000004001d0000000000400435000000f5010000410000000002000414000000f50320009c0000000002018019000000c001200210000000f8011001c7000080100200003903ce03c90000040f0000000102200190000002690000613d000000200200008a00000004070000290000000002270170000000e003000039000000000101043b000000f10000613d000000200400003900000000030000190000000005040019000000c0045000390000000004040433000000000041041b000000200450003900000001011000390000002003300039000000000623004b000000e70000413d000000e003500039000000000272004b000000fb0000813d0000000302700210000000f80220018f000000010400008a000000000224022f000000000242013f0000000003030433000000000223016f000000000021041b000000010170021000000001011001bf0000000504000029000002290000013d0000010f0320009c0000015c0000613d000001100220009c000002690000c13d0000000002000416000000000202004b000002690000c13d000000040110008a000000400110008c000002690000413d0000000401400370000000000201043b000001110120009c000002690000213d0000002401400370000000000301043b000000000100041103ce02d40000040f000002150000013d0000000002000416000000000202004b000002690000c13d000000040110008a000000600110008c000002690000413d0000000401400370000000000301043b000001110130009c000002690000213d0000002401400370000000000101043b000500000001001d000001110110009c000002690000213d0000004401400370000000000101043b000300000001001d00000000003004350000000101000039000200000001001d000000200010043f000000f5040000410000000001000414000000f50210009c0000000001048019000000c001100210000000ff011001c70000801002000039000400000003001d03ce03c90000040f0000000102200190000002690000613d000000000101043b0000000002000411000100000002001d0000000000200435000000200010043f0000000001000414000000f50210009c000000f501008041000000c001100210000000ff011001c7000080100200003903ce03c90000040f00000004040000290000000102200190000002690000613d000000000101043b000000000101041a000000010200008a000000000221004b000002b10000613d0000000303000029000000000231004b000002ac0000813d000000400100043d00000044021000390000011d03000041000000000032043500000024021000390000001d03000039000000000032043500000116020000410000000000210435000000040210003900000020030000390000000000320435000000f502000041000000f50310009c000000000102801900000040011002100000011e011001c7000003d0000104300000000001000416000000000101004b000002690000c13d0000000303000039000000000203041a000000010420019000000001052002700000007f0650018f000000000605c0190000001f0560008c00000000050000190000000105002039000000000552013f0000000105500190000000480000c13d000000800060043f000000000404004b0000026b0000c13d000001000300008a000000000232016f000000a00020043f000000000106004b000000c001000039000000a0010060390000027a0000013d0000000002000416000000000202004b000002690000c13d000000040110008a000000400110008c000002690000413d0000000401400370000000000101043b000500000001001d000001110110009c000002690000213d0000000001000411000200000001001d00000000001004350000000101000039000300000001001d000000200010043f000000f5030000410000000001000414000000f50210009c0000000001038019000000c001100210000000ff011001c70000801002000039000400000004035303ce03c90000040f000000040300035f0000000102200190000002690000613d000000000101043b00000005020000290000000000200435000000200010043f0000002401300370000000000101043b000400000001001d0000000001000414000000f50210009c000000f501008041000000c001100210000000ff011001c7000080100200003903ce03c90000040f0000000102200190000002690000613d000000000101043b000000000101041a0000000403100029000000000113004b000000000100001900000001010040390000000101100190000002360000c13d000002a60000013d0000000002000416000000000202004b000002690000c13d000000040110008a000000200110008c000002690000413d0000000401400370000000000101043b000001110210009c000002690000213d0000000000100435000000200000043f000000400100003903ce03b20000040f000001be0000013d0000000001000416000000000101004b000002690000c13d0000000201000039000000000101041a000000800010043f0000011201000041000003cf0001042e0000000002000416000000000202004b000002690000c13d000000040110008a000000400110008c000002690000413d0000000401400370000000000101043b000500000001001d000001110110009c000002690000213d0000002401400370000000000101043b000400000001001d0000000001000411000200000001001d00000000001004350000000101000039000300000001001d000000200010043f000000f5030000410000000001000414000000f50210009c0000000001038019000000c001100210000000ff011001c7000080100200003903ce03c90000040f0000000102200190000002690000613d000000000101043b00000005020000290000000000200435000000200010043f0000000001000414000000f50210009c000000f501008041000000c001100210000000ff011001c7000080100200003903ce03c90000040f0000000102200190000002690000613d000000000101043b000000000101041a0000000403000029000000000231004b000002a50000813d000000400100043d00000064021000390000011403000041000000000032043500000044021000390000011503000041000000000032043500000024021000390000002503000039000000000032043500000116020000410000000000210435000000040210003900000020030000390000000000320435000000f502000041000000f50310009c0000000001028019000000400110021000000117011001c7000003d0000104300000000002000416000000000202004b000002690000c13d000000040110008a000000400110008c000002690000413d0000000401400370000000000201043b000001110120009c000002690000213d0000002401400370000000000301043b000000000100041103ce032e0000040f0000000101000039000000400200043d0000000000120435000000f501000041000000f50320009c0000000002018019000000400120021000000113011001c7000003cf0001042e000000000105004b0000000001000019000002220000613d000000e00100043d0000000302500210000000010300008a000000000223022f000000000232013f000000000121016f0000000102500210000000000121019f000000000014041b000000fb010000410000000502000039000000000012041b0000000601000039000000000201041a000000fc02200197000000fd022001c7000000000021041b0000000201000039000000000201041a000000fe0320009c0000023a0000413d0000011b0100004100000000001004350000001101000039000000730000013d000000fb02200041000000000021041b000000fd010000410000000000100435000000200000043f000000f5010000410000000002000414000000f50320009c0000000002018019000000c001200210000000ff011001c7000080100200003903ce03c90000040f0000000102200190000002690000613d000000000101043b000000000201041a000001000320009c000002360000213d000000fb02200041000000000021041b000000fb01000041000000400200043d0000000000120435000000f5010000410000000003000414000000f50430009c0000000003018019000000f50420009c00000000020180190000004001200210000000c002300210000000000121019f000000f8011001c70000800d02000039000000030300003900000101040000410000000005000019000000fd0600004103ce03c40000040f0000000101200190000002690000613d0000002001000039000001000010044300000120000004430000010201000041000003cf0001042e0000000001000019000003d0000104300000000000300435000000a001000039000000000206004b000002960000613d0000011f0200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000564004b000002710000413d000000c0013000390000001f01100039000000200200008a000000000121016f00000119021000410000011a0220009c000000700000413d000002960000013d0000000000300435000000a001000039000000000206004b000002960000613d000001180200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000564004b000002870000413d000000c0013000390000001f01100039000000200200008a000000000121016f00000119021000410000011a0220009c000000700000413d000500000001001d000000400010043f000000800200003903ce02be0000040f00000005040000290000000001410049000000f502000041000000f50310009c0000000001028019000000f50340009c000000000402801900000040024002100000006001100210000000000121019f000003cf0001042e00000000033100490000000201000029000000050200002903ce02d40000040f000000400100043d0000000302000029000002b70000013d00000000033100490000000001040019000000010200002903ce02d40000040f000000040400002900000000010400190000000502000029000000030300002903ce032e0000040f000000400100043d00000002020000290000000000210435000000f502000041000000f50310009c0000000001028019000000400110021000000113011001c7000003cf0001042e00000020030000390000000004310436000000000302043300000000003404350000004001100039000000000403004b000002cd0000613d000000000400001900000000054100190000002004400039000000000624001900000000060604330000000000650435000000000534004b000002c60000413d000000000231001900000000000204350000001f02300039000000200300008a000000000232016f0000000001210019000000000001042d000300000000000200000111011001980000030f0000613d000200000003001d000301110020019c000003190000613d000100000001001d00000000001004350000000101000039000000200010043f000000f5030000410000000001000414000000f50210009c0000000001038019000000c001100210000000ff011001c7000080100200003903ce03c90000040f000000010220019000000003030000290000030d0000613d000000000101043b0000000000300435000000200010043f0000000001000414000000f50210009c000000f501008041000000c001100210000000ff011001c7000080100200003903ce03c90000040f000000030600002900000001022001900000030d0000613d000000000101043b0000000202000029000000000021041b000000400100043d0000000000210435000000f5020000410000000003000414000000f50430009c0000000003028019000000f50410009c00000000010280190000004001100210000000c002300210000000000112019f000000f8011001c70000800d0200003900000003030000390000012004000041000000010500002903ce03c40000040f00000001012001900000030d0000613d000000000001042d0000000001000019000003d000010430000000400100043d00000064021000390000012303000041000000000032043500000044021000390000012403000041000000000032043500000024021000390000002403000039000003220000013d000000400100043d00000064021000390000012103000041000000000032043500000044021000390000012203000041000000000032043500000024021000390000002203000039000000000032043500000116020000410000000000210435000000040210003900000020030000390000000000320435000000f502000041000000f50310009c0000000001028019000000400110021000000117011001c7000003d00001043000040000000000020000011101100198000003830000613d000400000003001d000201110020019c0000038d0000613d000300000001001d0000000000100435000000200000043f000000f5010000410000000002000414000000f50320009c0000000002018019000000c001200210000000ff011001c7000080100200003903ce03c90000040f0000000102200190000003810000613d000000000101043b000000000201041a000100000002001d000000040120006c000003970000413d00000003010000290000000000100435000000200000043f000000f5030000410000000001000414000000f50210009c0000000001038019000000c001100210000000ff011001c7000080100200003903ce03c90000040f0000000102200190000003810000613d0000000103000029000000040230006a000000000101043b000000000021041b000000020100002900000000001004350000000001000414000000f50210009c000000f501008041000000c001100210000000ff011001c7000080100200003903ce03c90000040f0000000102200190000003810000613d000000000101043b000000000301041a00000004040000290000000002430019000000000332004b000000000300001900000001030040390000000103300190000003ac0000c13d000000000021041b000000400100043d0000000000410435000000f5020000410000000003000414000000f50430009c0000000003028019000000f50410009c00000000010280190000004001100210000000c002300210000000000112019f000000f8011001c70000800d02000039000000030300003900000101040000410000000305000029000000020600002903ce03c40000040f0000000101200190000003810000613d000000000001042d0000000001000019000003d000010430000000400100043d00000064021000390000012903000041000000000032043500000044021000390000012a03000041000000000032043500000024021000390000002503000039000003a00000013d000000400100043d00000064021000390000012703000041000000000032043500000044021000390000012803000041000000000032043500000024021000390000002303000039000003a00000013d000000400100043d00000064021000390000012503000041000000000032043500000044021000390000012603000041000000000032043500000024021000390000002603000039000000000032043500000116020000410000000000210435000000040210003900000020030000390000000000320435000000f502000041000000f50310009c0000000001028019000000400110021000000117011001c7000003d0000104300000011b0100004100000000001004350000001101000039000000040010043f0000011c01000041000003d000010430000000f5020000410000000003000414000000f50430009c0000000003028019000000f50410009c00000000010280190000006001100210000000c002300210000000000112019f0000012b011001c7000080100200003903ce03c90000040f0000000102200190000003c20000613d000000000101043b000000000001042d0000000001000019000003d000010430000003c7002104210000000102000039000000000001042d0000000002000019000000000001042d000003cc002104230000000102000039000000000001042d0000000002000019000000000001042d000003ce00000432000003cf0001042e000003d00001043000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff4c6f6e67000000000000000000000000000000000000000000000000000000004c4f4e47000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000020000000000000000000000000ffffffff000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000c9f2c9cd04674edea40000000ffffffffffffffffffffffff000000000000000000000000000000000000000000000000000000000000000087432579c3ac0fbc65cb7dd0aa023dca5e783810fffffffffffffffffffffffffffffffffffffff360d3632fb98b1215c00000000200000000000000000000000000000000000040000000000000000000000000fffffffffffffffffffffffffffffffffffffff360d3632fb98b1215bfffffffddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef0000000200000000000000000000000000000040000001000000000000000000000000000000000000000000000000000000000000000000000000003950935000000000000000000000000000000000000000000000000000000000a457c2d600000000000000000000000000000000000000000000000000000000a457c2d700000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000395093510000000000000000000000000000000000000000000000000000000070a082310000000000000000000000000000000000000000000000000000000095d89b410000000000000000000000000000000000000000000000000000000018160ddc0000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000313ce5670000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000095ea7b3000000000000000000000000ffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000200000008000000000000000000000000000000000000000000000000000000020000000000000000000000000207a65726f00000000000000000000000000000000000000000000000000000045524332303a2064656372656173656420616c6c6f77616e63652062656c6f7708c379a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000840000000000000000000000008a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19bffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffffffffffff00000000000000804e487b7100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002400000000000000000000000045524332303a20696e73756666696369656e7420616c6c6f77616e63650000000000000000000000000000000000000000000064000000000000000000000000c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f206164647265726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f20616464616c616e6365000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732062657373000000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220746f20746865207a65726f2061646472647265737300000000000000000000000000000000000000000000000000000045524332303a207472616e736665722066726f6d20746865207a65726f20616402000000000000000000000000000000000000000000000000000000000000003925e78173436eba78191eebd050a35a1e7b2af5a7e85fa3dea9cf9a0ae0e790
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.