Token
Vesting Sophon (vSOPH)
ERC20
Overview
Max Total Supply
3.568935956790123457 vSOPH
Holders
4
Market
Price
$0.00 @ 0.000000 SOPH
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
1.5 vSOPHLoading...
Loading
Loading...
Loading
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0xb126d3CB...dCB3413Bc The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
DynamicRewardsProxy
Compiler Version
v0.8.28+commit.7893614a
ZkSolc Version
v1.5.6
Contract Source Code (Solidity Standard Json-Input format)
12345678910111213141516// SPDX-License-Identifier: GPL-3.0-onlypragma solidity 0.8.28;import "contracts/proxies/ProxyAccessControl.sol";contract DynamicRewardsProxy is ProxyAccessControl {/*** @notice Constructor to initialize the proxy with an implementation and optional initialization data* @param initialOwner_ The address of the initial owner.* @param impl_ The address of the initial implementation contract* @param initData_ Optional data for initializing the contract's state via a delegatecall to the implementation*/constructor(address initialOwner_, address impl_, bytes memory initData_)ProxyAccessControl(initialOwner_, impl_, initData_){}}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-3.0-onlypragma solidity 0.8.28;import "contracts/proxies/UpgradeableAccessControl.sol";/*** @title ProxyAccessControl* @notice This contract is a proxy with role-based access control, allowing an admin to upgrade the implementation contract.* @dev Inherits from `UpgradeableAccessControl` for role-based permissions and supports upgradeability through `replaceImplementation`.*/contract ProxyAccessControl is UpgradeableAccessControl {/*** @notice Initializes the ProxyAccessControl contract with the initial owner, initial implementation and optional initialization data.* @dev Calls `replaceImplementation` to set up the implementation and execute any provided initialization logic.* @param initialOwner_ The address of the initial owner.* @param impl_ The address of the initial implementation contract.* @param initData_ Optional initialization data to be passed to the new implementation using delegatecall.*/constructor(address initialOwner_, address impl_, bytes memory initData_) UpgradeableAccessControl(initialOwner_) {_replaceImplementation(impl_, initData_);}/*** @notice Fallback function that delegates all calls to the current implementation.* @dev Uses `delegatecall` to execute functions in the context of the implementation.*/
123456789101112131415161718192021222324// SPDX-License-Identifier: GPL-3.0-onlypragma solidity 0.8.28;import "contracts/access/extensions/AccessControlDefaultAdminRules.sol";import "contracts/common/Initializable.sol";/*** @title UpgradeableAccessControl* @notice This contract extends AccessControlDefaultAdminRules to provide role-based access control with an upgradeable implementation.* @dev Allows the default admin to replace the implementation address with a new one and optionally initialize it. The admin role changes are subjectto a delay defined in the constructor.*/contract UpgradeableAccessControl is AccessControlDefaultAdminRules, Initializable {/// @notice The slot containing the address of the current implementation contract.bytes32 public constant IMPLEMENTATION_SLOT = keccak256("IMPLEMENTATION_SLOT");/*** @notice Constructs the UpgradeableAccessControl contract.* @dev Initializes the AccessControlDefaultAdminRules with a delay of 3 days and sets the initial default admin.*/constructor(address initialOwner) AccessControlDefaultAdminRules(3 days, initialOwner) {}/*** @notice Replaces the current implementation with a new one and optionally initializes it.* @dev Can only be called by an account with the DEFAULT_ADMIN_ROLE. If `initData_` is provided, a delegatecall is made to the new implementationwith that data.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (access/extensions/AccessControlDefaultAdminRules.sol)pragma solidity ^0.8.20;import {IAccessControlDefaultAdminRules} from "contracts/access/extensions/IAccessControlDefaultAdminRules.sol";import {AccessControl, IAccessControl} from "contracts/access/AccessControl.sol";import {SafeCast} from "contracts/utils/math/SafeCast.sol";import {Math} from "contracts/utils/math/Math.sol";import {IERC5313} from "contracts/interfaces/IERC5313.sol";/*** @dev Extension of {AccessControl} that allows specifying special rules to manage* the `DEFAULT_ADMIN_ROLE` holder, which is a sensitive role with special permissions* over other roles that may potentially have privileged rights in the system.** If a specific role doesn't have an admin role assigned, the holder of the* `DEFAULT_ADMIN_ROLE` will have the ability to grant it and revoke it.** This contract implements the following risk mitigations on top of {AccessControl}:** * Only one account holds the `DEFAULT_ADMIN_ROLE` since deployment until it's potentially renounced.* * Enforces a 2-step process to transfer the `DEFAULT_ADMIN_ROLE` to another account.* * Enforces a configurable delay between the two steps, with the ability to cancel before the transfer is accepted.* * The delay can be changed by scheduling, see {changeDefaultAdminDelay}.* * It is not possible to use another role to manage the `DEFAULT_ADMIN_ROLE`.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (access/extensions/IAccessControlDefaultAdminRules.sol)pragma solidity ^0.8.20;import {IAccessControl} from "contracts/access/IAccessControl.sol";/*** @dev External interface of AccessControlDefaultAdminRules declared to support ERC165 detection.*/interface IAccessControlDefaultAdminRules is IAccessControl {/*** @dev The new default admin is not a valid default admin.*/error AccessControlInvalidDefaultAdmin(address defaultAdmin);/*** @dev At least one of the following rules was violated:** - The `DEFAULT_ADMIN_ROLE` must only be managed by itself.* - The `DEFAULT_ADMIN_ROLE` must only be held by one account at the time.* - Any `DEFAULT_ADMIN_ROLE` transfer must be in two delayed steps.*/error AccessControlEnforcedDefaultAdminRules();/**
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (access/IAccessControl.sol)pragma solidity ^0.8.20;/*** @dev External interface of AccessControl declared to support ERC165 detection.*/interface IAccessControl {/*** @dev The `account` is missing a role.*/error AccessControlUnauthorizedAccount(address account, bytes32 neededRole);/*** @dev The caller of a function is not the expected one.** NOTE: Don't confuse with {AccessControlUnauthorizedAccount}.*/error AccessControlBadConfirmation();/*** @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`** `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite* {RoleAdminChanged} not being emitted signaling this.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (access/AccessControl.sol)pragma solidity ^0.8.20;import {IAccessControl} from "contracts/access/IAccessControl.sol";import {Context} from "contracts/utils/Context.sol";import {ERC165} from "contracts/utils/introspection/ERC165.sol";/*** @dev Contract module that allows children to implement role-based access* control mechanisms. This is a lightweight version that doesn't allow enumerating role* members except through off-chain means by accessing the contract event logs. Some* applications may benefit from on-chain enumerability, for those cases see* {AccessControlEnumerable}.** Roles are referred to by their `bytes32` identifier. These should be exposed* in the external API and be unique. The best way to achieve this is by* using `public constant` hash digests:** ```solidity* bytes32 public constant MY_ROLE = keccak256("MY_ROLE");* ```** Roles can be used to represent a set of permissions. To restrict access to a* function call, use {hasRole}:
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)pragma solidity ^0.8.20;/*** @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;}function _contextSuffixLength() internal view virtual returns (uint256) {return 0;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/ERC165.sol)pragma solidity ^0.8.20;import {IERC165} from "contracts/utils/introspection/IERC165.sol";/*** @dev Implementation of the {IERC165} interface.** Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check* for the additional interface id that will be supported. For example:** ```solidity* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);* }* ```*/abstract contract ERC165 is IERC165 {/*** @dev See {IERC165-supportsInterface}.*/function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {return interfaceId == type(IERC165).interfaceId;}
12345678910111213141516171819202122232425// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol)pragma solidity ^0.8.20;/*** @dev Interface of the ERC165 standard, as defined in the* https://eips.ethereum.org/EIPS/eip-165[EIP].** Implementers can declare support of contract interfaces, which can then be* queried by others ({ERC165Checker}).** For an implementation, see {ERC165}.*/interface IERC165 {/*** @dev Returns true if this contract implements the interface defined by* `interfaceId`. See the corresponding* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]* to learn more about how these ids are created.** This function call must use less than 30 000 gas.*/function supportsInterface(bytes4 interfaceId) external view returns (bool);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SafeCast.sol)// This file was procedurally generated from scripts/generate/templates/SafeCast.js.pragma solidity ^0.8.20;/*** @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow* checks.** Downcasting from uint256/int256 in Solidity does not revert on overflow. This can* easily result in undesired exploitation or bugs, since developers usually* assume that overflows raise errors. `SafeCast` restores this intuition by* reverting the transaction when such 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 SafeCast {/*** @dev Value doesn't fit in an uint of `bits` size.*/error SafeCastOverflowedUintDowncast(uint8 bits, uint256 value);/*** @dev An int value doesn't fit in an uint of `bits` size.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol)pragma solidity ^0.8.20;/*** @dev Standard math utilities missing in the Solidity language.*/library Math {/*** @dev Muldiv operation overflow.*/error MathOverflowedMulDiv();enum Rounding {Floor, // Toward negative infinityCeil, // Toward positive infinityTrunc, // Toward zeroExpand // Away from zero}/*** @dev Returns the addition of two unsigned integers, with an overflow flag.*/function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {unchecked {
12345678910111213141516// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC5313.sol)pragma solidity ^0.8.20;/*** @dev Interface for the Light Contract Ownership Standard.** A standardized minimal interface required to identify an account that controls a contract*/interface IERC5313 {/*** @dev Gets the address of the owner.*/function owner() external view returns (address);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity 0.8.28;contract Initializable {error AlreadyInitialized();uint256 private constant NOT_INITIALIZED = 1;uint256 private constant INITIALIZED = 2;uint256 private _status;modifier notInitialized() {if (_status == INITIALIZED) {revert AlreadyInitialized();}_status = INITIALIZED;_;}constructor() {_status = NOT_INITIALIZED;}function _setInitialized() internal notInitialized {}
1234567891011121314151617181920212223242526{"evmVersion": "shanghai","optimizer": {"enabled": true,"runs": 200},"libraries": {"DynamicRewardsProxy.sol": {}},"remappings": ["@openzeppelin=./node_modules/@openzeppelin","OpenZeppelin=C:/Users/tomcb/.brownie/packages/OpenZeppelin","paulrberg=C:/Users/tomcb/.brownie/packages/paulrberg"],"metadata": {"appendCBOR": false,"bytecodeHash": "none"},"outputSelection": {"*": {"*": ["abi"]}}}
Contract ABI
API[{"inputs":[{"internalType":"address","name":"initialOwner_","type":"address"},{"internalType":"address","name":"impl_","type":"address"},{"internalType":"bytes","name":"initData_","type":"bytes"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AccessControlBadConfirmation","type":"error"},{"inputs":[{"internalType":"uint48","name":"schedule","type":"uint48"}],"name":"AccessControlEnforcedDefaultAdminDelay","type":"error"},{"inputs":[],"name":"AccessControlEnforcedDefaultAdminRules","type":"error"},{"inputs":[{"internalType":"address","name":"defaultAdmin","type":"address"}],"name":"AccessControlInvalidDefaultAdmin","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"neededRole","type":"bytes32"}],"name":"AccessControlUnauthorizedAccount","type":"error"},{"inputs":[],"name":"AlreadyInitialized","type":"error"},{"inputs":[{"internalType":"uint8","name":"bits","type":"uint8"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"SafeCastOverflowedUintDowncast","type":"error"},{"anonymous":false,"inputs":[],"name":"DefaultAdminDelayChangeCanceled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint48","name":"newDelay","type":"uint48"},{"indexed":false,"internalType":"uint48","name":"effectSchedule","type":"uint48"}],"name":"DefaultAdminDelayChangeScheduled","type":"event"},{"anonymous":false,"inputs":[],"name":"DefaultAdminTransferCanceled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAdmin","type":"address"},{"indexed":false,"internalType":"uint48","name":"acceptSchedule","type":"uint48"}],"name":"DefaultAdminTransferScheduled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"IMPLEMENTATION_SLOT","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptDefaultAdminTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAdmin","type":"address"}],"name":"beginDefaultAdminTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cancelDefaultAdminTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint48","name":"newDelay","type":"uint48"}],"name":"changeDefaultAdminDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"defaultAdmin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"defaultAdminDelay","outputs":[{"internalType":"uint48","name":"","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"defaultAdminDelayIncreaseWait","outputs":[{"internalType":"uint48","name":"","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingDefaultAdmin","outputs":[{"internalType":"address","name":"newAdmin","type":"address"},{"internalType":"uint48","name":"schedule","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingDefaultAdminDelay","outputs":[{"internalType":"uint48","name":"newDelay","type":"uint48"},{"internalType":"uint48","name":"schedule","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"impl_","type":"address"},{"internalType":"bytes","name":"initData_","type":"bytes"}],"name":"replaceImplementation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rollbackDefaultAdminDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
9c4d535b0000000000000000000000000000000000000000000000000000000000000000010002512dd76471835a230b13b81d4fdea9687d6ed12e19f6cbe97f9f2dd1770000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000016000000000000000000000000078ae12562527b865dd1a06784a2b06dbe1a3c7af000000000000000000000000d6ea6de9e896a593937265ffab7db9e0030acb80000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c486489ba900000000000000000000000078ae12562527b865dd1a06784a2b06dbe1a3c7af000000000000000000000000760de1fed5889052a2c01ea7823d930060d4af4d0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000007800000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000093a8000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x000200000000000200070000000000020000006003100270000001fc0430019700010000004103550000008003000039000000400030043f0000000100200190000000af0000c13d000000000341034f000000040040008c000001120000413d000000000201043b000000e0022002700000020d0020009c0000011e0000a13d0000020e0020009c000001610000a13d0000020f0020009c000001cf0000213d000002130020009c000002d20000613d000002140020009c000002d80000613d000002150020009c000002770000c13d0000000001000416000000000001004b000004210000c13d0000000101000039000000000101041a000001ff021001970000000003000411000000000023004b000004230000c13d000000a0011002700000022e021001980000045f0000613d000500000002001d000002300100004100000000001004430000000001000414000001fc0010009c000001fc01008041000000c00110021000000231011001c70000800b0200003907eb07e10000040f00000001002001900000062f0000613d000000000101043b0000000502000029000000000012004b0000045f0000813d0000000202000039000000000102041a000500000001001d0000020401100197000000000012041b000000000000043f000000200000043f0000000001000414000001fc0010009c000001fc01008041000000c00110021000000206011001c7000080100200003907eb07e10000040f0000000100200190000004210000613d0000000502000029000001ff02200197000000000101043b000500000002001d000000000020043f000000200010043f0000000001000414000001fc0010009c000001fc01008041000000c00110021000000206011001c7000080100200003907eb07e10000040f0000000100200190000004210000613d000000000101043b000000000101041a000000ff00100190000006300000c13d0000000201000039000000000101041a000001ff00100198000004ea0000c13d00000204011001970000000002000411000000000121019f0000000202000039000000000012041b000000000000043f000000200000043f0000000001000414000001fc0010009c000001fc01008041000000c00110021000000206011001c7000080100200003907eb07e10000040f0000000100200190000004210000613d000000000101043b0000000002000411000000000020043f000000200010043f0000000001000414000001fc0010009c000001fc01008041000000c00110021000000206011001c7000080100200003907eb07e10000040f0000000100200190000004210000613d000000000101043b000000000101041a000000ff00100190000000a90000c13d000000000000043f000000200000043f0000000001000414000001fc0010009c000001fc01008041000000c00110021000000206011001c7000080100200003907eb07e10000040f0000000100200190000004210000613d000000000101043b0000000002000411000000000020043f000000200010043f0000000001000414000001fc0010009c000001fc01008041000000c00110021000000206011001c7000080100200003907eb07e10000040f0000000100200190000004210000613d000000000101043b000000000201041a0000024e0220019700000001022001bf000000000021041b0000000001000414000001fc0010009c000001fc01008041000000c00110021000000207011001c70000800d020000390000000403000039000002080400004100000000050000190000000006000411000000000706001907eb07dc0000040f0000000100200190000004210000613d0000000102000039000000000102041a0000022901100197000000000012041b0000000001000019000007ec0001042e0000000002000416000000000002004b000004210000c13d0000001f02400039000001fd022001970000008002200039000000400020043f0000001f0540018f000001fe064001980000008002600039000000bf0000613d000000000701034f000000007807043c0000000003830436000000000023004b000000bb0000c13d000000000005004b000000cc0000613d000000000161034f0000000303500210000000000502043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f0000000000120435000000600040008c000004210000413d000000800100043d000001ff0010009c000004210000213d000000a00700043d000001ff0070009c000004210000213d000000c00300043d000002000030009c000004210000213d0000001f02300039000000000042004b000000000500001900000201050080410000020102200197000000000002004b00000000060000190000020106004041000002010020009c000000000605c019000000000006004b000004210000c13d00000080023000390000000002020433000002000020009c0000015b0000213d0000001f052000390000024f055001970000003f055000390000024f05500197000000400800043d0000000005580019000000000085004b00000000060000390000000106004039000002000050009c0000015b0000213d00000001006001900000015b0000c13d0000008004400039000000400050043f000500000008001d0000000005280436000400000005001d000000a0033000390000000005320019000000000045004b000004210000213d000000000002004b0000000408000029000001080000613d000000000400001900000000054800190000000006340019000000000606043300000000006504350000002004400039000000000024004b000001010000413d000000050220002900000020022000390000000000020435000001ff04100198000004930000c13d0000020b01000041000000000010043f000000040000043f0000020c01000041000007ed00010430000000000004004b000002770000c13d0000020901000041000000000201041a0000000001000414000000040020008c000001310000c13d00000001020000390000000001000031000000000001004b0000013d0000613d000001590000013d0000021c0020009c000001950000213d000002230020009c000002220000a13d000002240020009c000002de0000613d000002250020009c000002e50000613d000002260020009c000002770000c13d000000240040008c000004210000413d0000000002000416000000000002004b000004210000c13d0000000401100370000000000101043b07eb07070000040f0000032b0000013d000001fc0010009c000001fc01008041000000c00110021007eb07e60000040f000000000301034f000000010220018f00010000000103550000006001100270000001fc0010019d000001fc01100197000000000001004b000001590000c13d0000024f041001980000001f0510018f000001460000613d000000000603034f0000000007000019000000006806043c0000000007870436000000000047004b000001420000c13d000000000005004b000001530000613d000000000343034f0000000305500210000000000604043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f0000000000340435000001fc0010009c000001fc010080410000006001100210000000000002004b000001ce0000c13d000007ed00010430000002000010009c000001fc0000a13d0000023e01000041000000000010043f0000004101000039000000040010043f0000020c01000041000007ed00010430000002160020009c0000022d0000a13d000002170020009c000002310000613d000002180020009c000003160000613d000002190020009c000002770000c13d0000000001000416000000000001004b000004210000c13d0000000002000415000000070220008a00000005022002100000000201000039000000000301041a000000d001300272000001880000613d000400000003001d000500000001001d000002300100004100000000001004430000000001000414000001fc0010009c000001fc01008041000000c00110021000000231011001c70000800b0200003907eb07e10000040f00000001002001900000062f0000613d0000000002000415000000060220008a0000000502200210000000000101043b0000000504000029000000000014004b0000000401000029000004ee0000813d0000000501200270000000000100003f00000000010000190000000004000019000000400200043d000000200320003900000000004304350000000000120435000001fc0020009c000001fc02008041000000400120021000000236011001c7000007ec0001042e0000021d0020009c000002360000a13d0000021e0020009c000003320000613d0000021f0020009c0000033b0000613d000002200020009c000002770000c13d000000240040008c000004210000413d0000000002000416000000000002004b000004210000c13d0000000401100370000000000101043b000500000001001d0000022e0010009c000004210000213d0000000001000411000001ff01100197000000000010043f0000020501000041000000200010043f0000000001000414000001fc0010009c000001fc01008041000000c00110021000000206011001c7000080100200003907eb07e10000040f0000000100200190000004210000613d000000000101043b000000000101041a000000ff00100190000003570000613d000002300100004100000000001004430000000001000414000001fc0010009c000001fc01008041000000c00110021000000231011001c70000800b0200003907eb07e10000040f00000001002001900000062f0000613d000000000401043b0000023f0040009c0000050b0000413d0000024301000041000000000010043f0000003001000039000000040010043f000000240040043f0000022d01000041000007ed00010430000007ec0001042e000002100020009c0000035e0000613d000002110020009c000003680000613d000002120020009c000002770000c13d0000000001000416000000000001004b000004210000c13d0000000001000411000001ff01100197000000000010043f0000020501000041000000200010043f0000000001000414000001fc0010009c000001fc01008041000000c00110021000000206011001c7000080100200003907eb07e10000040f0000000100200190000004210000613d000000000101043b000000000101041a000000ff00100190000003570000613d0000000101000039000000000201041a0000022903200197000000000031041b0000022a00200198000004840000613d0000000001000414000001fc0010009c000001fc01008041000000c00110021000000207011001c70000800d0200003900000001030000390000022b0400004107eb07dc0000040f0000000100200190000004210000613d000004840000013d0000001f051000390000024f055001970000003f055000390000024f06500197000000400500043d0000000006650019000000000056004b00000000070000390000000107004039000002000060009c0000015b0000213d00000001007001900000015b0000c13d000000400060043f00000000071504360000024f051001980000001f0610018f0000000004570019000002140000613d000000000803034f000000008908043c0000000007970436000000000047004b000002100000c13d000000000006004b0000013d0000613d000000000553034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005404350000013d0000013d000002270020009c000004070000613d000002280020009c000002770000c13d0000000001000416000000000001004b000004210000c13d0000024001000041000000800010043f0000023501000041000007ec0001042e0000021a0020009c0000037f0000613d0000021b0020009c000002770000c13d0000000001000416000000000001004b000004210000c13d0000000201000039000003360000013d000002210020009c000004140000613d000002220020009c000002770000c13d000000440040008c000004210000413d0000000002000416000000000002004b000004210000c13d0000000402100370000000000202043b000500000002001d0000002401100370000000000101043b000400000001001d000001ff0010009c000004210000213d000000050000006b000004640000c13d0000000203000039000000000103041a000001ff011001970000000402000029000000000012004b0000026d0000c13d0000000101000039000000000101041a000000a0021002700000022e05200197000001ff00100198000005060000c13d000000000005004b000005060000613d000300000005001d000002300100004100000000001004430000000001000414000001fc0010009c000001fc01008041000000c00110021000000231011001c70000800b0200003907eb07e10000040f00000001002001900000062f0000613d000000000101043b0000000305000029000000000015004b000000040200002900000002030000390000000104000039000005060000813d000000000104041a0000024401100197000000000014041b0000000001000411000000000012004b0000048f0000c13d000000000203041a000000000112013f000001ff00100198000004670000c13d0000020401200197000000000013041b000004670000013d0000001f0540018f000001fe02400198000002800000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000027004b0000027c0000c13d000000000005004b0000028d0000613d000000000121034f0000000305500210000000000602043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001204350000020901000041000000000201041a0000000001000414000000040020008c000002aa0000c13d00000000010000310000024f021001980000001f0410018f0000029c0000613d000000000503034f0000000006000019000000005705043c0000000006760436000000000026004b000002980000c13d000000000004004b000002cc0000613d000000000323034f0000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000002cc0000013d0000006003400210000001fc0010009c000001fc01008041000000c001100210000000000131019f07eb07e60000040f000100000001035500000060031002700000001f0530018f000001fc0030019d000001fe04300198000002bc0000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000002b80000c13d000000000005004b000002c90000613d000000000141034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000001fc013001970000000100200190000002d00000613d000001fc0010009c000001fc010080410000006001100210000007ec0001042e0000006001100210000007ed000104300000000001000416000000000001004b000004210000c13d000000800000043f0000023501000041000007ec0001042e0000000001000416000000000001004b000004210000c13d07eb07280000040f0000022e011001970000032b0000013d0000000001000416000000000001004b000004210000c13d0000020901000041000000800010043f0000023501000041000007ec0001042e0000000001000416000000000001004b000004210000c13d0000000001000411000001ff01100197000000000010043f0000020501000041000000200010043f0000000001000414000001fc0010009c000001fc01008041000000c00110021000000206011001c7000080100200003907eb07e10000040f0000000100200190000004210000613d000000000101043b000000000101041a000000ff00100190000003570000613d0000000201000039000000000101041a000400000001001d000500d00010027a000005300000613d000002300100004100000000001004430000000001000414000001fc0010009c000001fc01008041000000c00110021000000231011001c70000800b0200003907eb07e10000040f00000001002001900000062f0000613d000000000101043b000000050010006b000005250000813d0000000401000029000000300110021000000229011001970000000102000039000000000302041a0000020203300197000000000113019f000000000012041b000005300000013d000000440040008c000004210000413d0000000002000416000000000002004b000004210000c13d0000002402100370000000000202043b000500000002001d000001ff0020009c000004210000213d0000000401100370000000000101043b000000000010043f000000200000043f07eb07cf0000040f000000050200002907eb07180000040f000000000101041a000000ff001001900000000001000039000000010100c039000000400200043d0000000000120435000001fc0020009c000001fc02008041000000400120021000000234011001c7000007ec0001042e0000000001000416000000000001004b000004210000c13d0000020901000041000000000101041a000001ff01100197000000800010043f0000023501000041000007ec0001042e000000240040008c000004210000413d0000000002000416000000000002004b000004210000c13d0000000401100370000000000101043b000500000001001d000001ff0010009c000004210000213d0000000001000411000001ff01100197000000000010043f0000020501000041000000200010043f0000000001000414000001fc0010009c000001fc01008041000000c00110021000000206011001c7000080100200003907eb07e10000040f0000000100200190000004210000613d000000000101043b000000000101041a000000ff00100190000004f10000c13d0000022c01000041000000000010043f0000000001000411000000040010043f000000240000043f0000022d01000041000007ed000104300000000001000416000000000001004b000004210000c13d07eb07460000040f000001ff01100197000000800010043f0000022e01200197000000a00010043f0000022f01000041000007ec0001042e000000440040008c000004210000413d0000000002000416000000000002004b000004210000c13d0000000402100370000000000202043b0000002401100370000000000101043b000500000001001d000001ff0010009c000004210000213d000000000002004b000004ea0000613d0000000001020019000400000002001d07eb07070000040f07eb074c0000040f0000000401000029000000050200002907eb07760000040f0000000001000019000007ec0001042e000000440040008c000004210000413d0000000002000416000000000002004b000004210000c13d0000000402100370000000000202043b000500000002001d000001ff0020009c000004210000213d0000002402100370000000000302043b000002000030009c000004210000213d0000002302300039000000000042004b000004210000813d0000000405300039000000000251034f000000000202043b000002000020009c0000015b0000213d0000001f062000390000024f066001970000003f066000390000024f06600197000002370060009c0000015b0000213d0000008006600039000000400060043f000000800020043f00000000032300190000002403300039000000000043004b000004210000213d0000002003500039000000000331034f0000024f042001980000001f0520018f000000a001400039000003ae0000613d000000a006000039000000000703034f000000007807043c0000000006860436000000000016004b000003aa0000c13d000000000005004b000003bb0000613d000000000343034f0000000304500210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000000a00120003900000000000104350000000001000411000001ff01100197000000000010043f0000020501000041000000200010043f0000000001000414000001fc0010009c000001fc01008041000000c00110021000000206011001c7000080100200003907eb07e10000040f0000000100200190000004210000613d000000000101043b000000000101041a000000ff00100190000003570000613d000000050000006b000004d90000613d00000209010000410000000502000029000000000021041b000000800100043d000000000001004b000004840000613d00000000020004140000000503000029000000040030008c000006cf0000c13d0000000001000032000004840000613d000002000010009c0000015b0000213d0000001f021000390000024f022001970000003f022000390000024f03200197000000400200043d0000000003320019000000000023004b00000000040000390000000104004039000002000030009c0000015b0000213d00000001004001900000015b0000c13d000000400030043f00000000051204360000024f021001980000001f0310018f00000000012500190000000104000367000003f80000613d000000000604034f000000006706043c0000000005750436000000000015004b000003f40000c13d000000000003004b000004840000613d000000000224034f0000000303300210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f00000000002104350000000001000019000007ec0001042e000000240040008c000004210000413d0000000002000416000000000002004b000004210000c13d0000000401100370000000000101043b0000024a00100198000004210000c13d0000024b0010009c000004860000c13d00000001020000390000048b0000013d000000440040008c000004210000413d0000000002000416000000000002004b000004210000c13d0000000402100370000000000202043b000500000002001d0000002401100370000000000101043b000400000001001d000001ff0010009c000004280000a13d0000000001000019000007ed000104300000020b01000041000000000010043f000000040030043f0000020c01000041000007ed000104300000000501000029000000000001004b000004ea0000613d000000000010043f000000200000043f0000000001000414000001fc0010009c000001fc01008041000000c00110021000000206011001c7000080100200003907eb07e10000040f0000000100200190000004210000613d000000000101043b0000000101100039000000000101041a000300000001001d000000000010043f000000200000043f0000000001000414000001fc0010009c000001fc01008041000000c00110021000000206011001c7000080100200003907eb07e10000040f0000000100200190000004210000613d0000000002000411000000000101043b000001ff02200197000000000020043f000000200010043f0000000001000414000001fc0010009c000001fc01008041000000c00110021000000206011001c7000080100200003907eb07e10000040f0000000100200190000004210000613d000000000101043b000000000101041a000000ff001001900000059f0000c13d0000022c01000041000000000010043f0000000001000411000000040010043f0000000301000029000000240010043f0000022d01000041000007ed000104300000023301000041000000000010043f000000040020043f0000020c01000041000007ed000104300000000001000411000000040010006b0000048f0000c13d0000000501000029000000000010043f000000200000043f0000000001000414000001fc0010009c000001fc01008041000000c00110021000000206011001c7000080100200003907eb07e10000040f0000000100200190000004210000613d000000000101043b0000000402000029000000000020043f000000200010043f0000000001000414000001fc0010009c000001fc01008041000000c00110021000000206011001c7000080100200003907eb07e10000040f0000000100200190000004210000613d000000000101043b000000000101041a000000ff001001900000056a0000c13d0000000001000019000007ec0001042e0000024c0010009c000000000200003900000001020060390000024d0010009c00000001022061bf000000010120018f000000800010043f0000023501000041000007ec0001042e0000024701000041000000000010043f0000024801000041000007ed000104300000000103000039000000000103041a000002020110019700000203011001c7000000000013041b0000000201000039000000000201041a000001ff00200198000004ea0000c13d000100000003001d0000020402200197000000000242019f000000000021041b000200000004001d000000000040043f0000020501000041000000200010043f0000000001000414000001fc0010009c000001fc01008041000000c00110021000000206011001c70000801002000039000300000007001d07eb07e10000040f00000003030000290000000100200190000004210000613d000000000101043b000000000101041a000000ff00100190000004d40000c13d0000000201000029000000000010043f0000020501000041000000200010043f0000000001000414000001fc0010009c000001fc01008041000000c00110021000000206011001c7000080100200003907eb07e10000040f0000000100200190000004210000613d000000000101043b000000000201041a0000024e0220019700000001022001bf000000000021041b0000000001000414000001fc0010009c000001fc01008041000000c00110021000000207011001c70000800d020000390000000403000039000000000700041100000208040000410000000005000019000000020600002907eb07dc0000040f00000003030000290000000100200190000004210000613d00000003010000390000000102000039000000000021041b000001ff00300198000005fd0000c13d000000400100043d00000044021000390000023d0300004100000000003204350000002402100039000000150300003900000000003204350000023b020000410000000000210435000000040210003900000020030000390000000000320435000001fc0010009c000001fc0100804100000040011002100000023c011001c7000007ed000104300000024901000041000000000010043f0000024801000041000007ed00010430000000a0011002700000022e011001970000018c0000013d000002300100004100000000001004430000000001000414000001fc0010009c000001fc01008041000000c00110021000000231011001c70000800b0200003907eb07e10000040f00000001002001900000062f0000613d000000000201043b0000023f0020009c000005360000413d0000024301000041000000000010043f0000003001000039000000040010043f000000240020043f0000022d01000041000007ed000104300000023301000041000000000010043f000000040050043f0000020c01000041000007ed000104300000000203000039000000000103041a000300000001001d000400d00010027a000005930000613d000200000004001d000002300100004100000000001004430000000001000414000001fc0010009c000001fc01008041000000c00110021000000231011001c70000800b0200003907eb07e10000040f00000001002001900000062f0000613d000000000101043b000000040010006b00000002030000390000000204000029000005930000813d0000000301000029000000a0011002700000022e01100197000005960000013d0000000001000414000001fc0010009c000001fc01008041000000c00110021000000207011001c70000800d020000390000000103000039000002410400004107eb07dc0000040f0000000100200190000004210000613d0000000202000039000000000102041a000001ff01100197000000000012041b0000000001000019000007ec0001042e0000000201000039000000000101041a000300000001001d000400d00010027a000005e60000c13d0000000101000039000000000101041a000000d00110027000000000022100190000023f0020009c0000060e0000813d00000005010000290000024401100197000400000002001d000000a0022002100000022a02200197000000000112019f0000000102000039000000000302041a0000022904300197000000000141019f000000000012041b0000022a00300198000005590000613d0000000001000414000001fc0010009c000001fc01008041000000c00110021000000207011001c70000800d0200003900000001030000390000022b0400004107eb07dc0000040f0000000100200190000004210000613d000000400100043d00000004020000290000000000210435000001fc0010009c000001fc0100804100000040011002100000000002000414000001fc0020009c000001fc02008041000000c002200210000000000112019f00000245011001c70000800d02000039000000020300003900000246040000410000000505000029000001f80000013d0000000501000029000000000010043f000000200000043f0000000001000414000001fc0010009c000001fc01008041000000c00110021000000206011001c7000080100200003907eb07e10000040f0000000100200190000004210000613d000000000101043b0000000402000029000000000020043f000000200010043f0000000001000414000001fc0010009c000001fc01008041000000c00110021000000206011001c7000080100200003907eb07e10000040f0000000100200190000004210000613d000000000101043b000000000201041a0000024e02200197000000000021041b0000000001000414000001fc0010009c000001fc01008041000000c00110021000000207011001c70000800d0200003900000004030000390000023204000041000000050500002900000004060000290000000007060019000001f80000013d0000000101000039000000000101041a000000d00110027000000005020000290000022e02200197000000000121004b000400000002001d000006080000813d000002400020009c000002400100004100000000010240190000060a0000013d0000000501000029000000000010043f000000200000043f0000000001000414000001fc0010009c000001fc01008041000000c00110021000000206011001c7000080100200003907eb07e10000040f0000000100200190000004210000613d000000000101043b0000000402000029000000000020043f000000200010043f0000000001000414000001fc0010009c000001fc01008041000000c00110021000000206011001c7000080100200003907eb07e10000040f0000000100200190000004210000613d000000000101043b000000000101041a000000ff00100190000004840000c13d0000000501000029000000000010043f000000200000043f0000000001000414000001fc0010009c000001fc01008041000000c00110021000000206011001c7000080100200003907eb07e10000040f0000000100200190000004210000613d000000000101043b0000000402000029000000000020043f000000200010043f0000000001000414000001fc0010009c000001fc01008041000000c00110021000000206011001c7000080100200003907eb07e10000040f0000000100200190000004210000613d000000000101043b000000000201041a0000024e0220019700000001022001bf000000000021041b0000000001000414000001fc0010009c000001fc01008041000000c00110021000000207011001c70000800d0200003900000004030000390000020804000041000000050500002900000004060000290000000007000411000001f80000013d000200000002001d000002300100004100000000001004430000000001000414000001fc0010009c000001fc01008041000000c00110021000000231011001c70000800b0200003907eb07e10000040f00000001002001900000062f0000613d000000000101043b000000040010006b00000002020000290000053b0000813d0000000301000029000000a0011002700000022e0110019700000000022100190000023f0020009c000005410000413d0000060e0000013d0000020901000041000000000031041b00000005010000290000000002010433000000000002004b000006790000613d0000000001000414000000040030008c0000065b0000c13d00000000010000310000066e0000013d0000022e0010009c0000060e0000213d0000000001410019000300000001001d0000022e0010009c000006140000a13d0000023e01000041000000000010043f0000001101000039000000040010043f0000020c01000041000007ed00010430000000000103041a000100000001001d000200d00010027a000006b20000613d000002300100004100000000001004430000000001000414000001fc0010009c000001fc01008041000000c00110021000000231011001c70000800b0200003907eb07e10000040f00000001002001900000062f0000613d000000000101043b000000020010006b000006a70000813d0000000101000029000000300110021000000229011001970000000102000039000000000302041a0000020203300197000000000113019f000000000012041b000006b20000013d000000000001042f000000000000043f000000200000043f0000000001000414000001fc0010009c000001fc01008041000000c00110021000000206011001c7000080100200003907eb07e10000040f0000000100200190000004210000613d000000000101043b0000000502000029000000000020043f000000200010043f0000000001000414000001fc0010009c000001fc01008041000000c00110021000000206011001c7000080100200003907eb07e10000040f0000000100200190000004210000613d000000000101043b000000000201041a0000024e02200197000000000021041b0000000001000414000001fc0010009c000001fc01008041000000c00110021000000207011001c70000800d020000390000000403000039000002320400004100000000050000190000000506000029000000000700041107eb07dc0000040f0000000100200190000000590000c13d000004210000013d000001fc0020009c000001fc0200804100000060022002100000000403000029000001fc0030009c000001fc030080410000004003300210000000000232019f000001fc0010009c000001fc01008041000000c001100210000000000121019f000000030200002907eb07e60000040f000100010020019300010000000103550000006001100270000001fc0010019d000001fc01100197000000000001004b0000067e0000c13d000000010000006b000006790000c13d000000400100043d00000044021000390000023a03000041000000000032043500000024021000390000000b03000039000004df0000013d0000002001000039000001000010044300000120000004430000020a01000041000007ec0001042e000002000010009c0000015b0000213d0000001f021000390000024f022001970000003f022000390000024f03200197000000400200043d0000000003320019000000000023004b00000000040000390000000104004039000002000030009c0000015b0000213d00000001004001900000015b0000c13d000000400030043f00000000051204360000024f021001980000001f0310018f00000000012500190000000104000367000006990000613d000000000604034f000000006706043c0000000005750436000000000015004b000006950000c13d000000000003004b000006700000613d000000000224034f0000000303300210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f0000000000210435000006700000013d0000000001000414000001fc0010009c000001fc01008041000000c00110021000000207011001c70000800d020000390000000103000039000002410400004107eb07dc0000040f0000000100200190000004210000613d0000000203000039000000000103041a000001ff011001970000000502000029000000a0022002100000022a02200197000000000112019f0000000304000029000000d002400210000000000121019f000000000013041b000000400100043d0000002002100039000000000042043500000004020000290000000000210435000001fc0010009c000001fc0100804100000040011002100000000002000414000001fc0020009c000001fc02008041000000c002200210000000000112019f00000206011001c70000800d0200003900000001030000390000024204000041000001f80000013d000001fc0020009c000001fc02008041000000c002200210000001fc0010009c000001fc010080410000006001100210000000000121019f00000238011001c7000000050200002907eb07e60000040f00010000000103550000006003100270000001fc0030019d000001fc03300198000006e10000c13d0000000100200190000004840000c13d000006720000013d0000001f04300039000001fd044001970000003f044000390000023904400197000000400500043d0000000004450019000000000054004b00000000060000390000000106004039000002000040009c0000015b0000213d00000001006001900000015b0000c13d000000400040043f0000001f0430018f0000000006350436000001fe053001980000000003560019000006f90000613d000000000701034f000000007807043c0000000006860436000000000036004b000006f50000c13d000000000004004b000006de0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000006de0000013d000000000010043f000000200000043f0000000001000414000001fc0010009c000001fc01008041000000c00110021000000206011001c7000080100200003907eb07e10000040f0000000100200190000007160000613d000000000101043b0000000101100039000000000101041a000000000001042d0000000001000019000007ed00010430000001ff02200197000000000020043f000000200010043f0000000001000414000001fc0010009c000001fc01008041000000c00110021000000206011001c7000080100200003907eb07e10000040f0000000100200190000007260000613d000000000101043b000000000001042d0000000001000019000007ed0001043000020000000000020000000201000039000000000101041a000000d002100272000007410000613d000100000002001d000200000001001d000002300100004100000000001004430000000001000414000001fc0010009c000001fc01008041000000c00110021000000231011001c70000800b0200003907eb07e10000040f0000000100200190000007450000613d000000000101043b000000010010006b0000000201000029000007410000813d000000a0011002700000022e01100197000000000001042d0000000101000039000000000101041a000000d001100270000000000001042d000000000001042f0000000101000039000000000201041a000001ff01200197000000a0022002700000022e02200197000000000001042d0001000000000002000100000001001d000000000010043f000000200000043f0000000001000414000001fc0010009c000001fc01008041000000c00110021000000206011001c7000080100200003907eb07e10000040f00000001002001900000076c0000613d0000000002000411000000000101043b000001ff02200197000000000020043f000000200010043f0000000001000414000001fc0010009c000001fc01008041000000c00110021000000206011001c7000080100200003907eb07e10000040f00000001002001900000076c0000613d000000000101043b000000000101041a000000ff001001900000076e0000613d000000000001042d0000000001000019000007ed000104300000022c01000041000000000010043f0000000001000411000000040010043f0000000101000029000000240010043f0000022d01000041000007ed000104300002000000000002000000000001004b000007800000c13d0000000204000039000000000504041a000000000325013f000001ff00300198000007800000c13d0000020403500197000000000034041b000100000002001d000200000001001d000000000010043f000000200000043f0000000001000414000001fc0010009c000001fc01008041000000c00110021000000206011001c7000080100200003907eb07e10000040f0000000100200190000007cc0000613d000000000101043b0000000102000029000001ff02200197000100000002001d000000000020043f000000200010043f0000000001000414000001fc0010009c000001fc01008041000000c00110021000000206011001c7000080100200003907eb07e10000040f0000000100200190000007cc0000613d000000000101043b000000000101041a000000ff00100190000007cb0000613d0000000201000029000000000010043f000000200000043f0000000001000414000001fc0010009c000001fc01008041000000c00110021000000206011001c7000080100200003907eb07e10000040f0000000100200190000007cc0000613d000000000101043b0000000102000029000000000020043f000000200010043f0000000001000414000001fc0010009c000001fc01008041000000c00110021000000206011001c7000080100200003907eb07e10000040f0000000100200190000007cc0000613d000000000101043b000000000201041a0000024e02200197000000000021041b0000000001000414000001fc0010009c000001fc01008041000000c00110021000000207011001c70000800d020000390000000403000039000000000700041100000232040000410000000205000029000000010600002907eb07dc0000040f0000000100200190000007cc0000613d000000000001042d0000000001000019000007ed00010430000000000001042f0000000001000414000001fc0010009c000001fc01008041000000c00110021000000206011001c7000080100200003907eb07e10000040f0000000100200190000007da0000613d000000000101043b000000000001042d0000000001000019000007ed00010430000007df002104210000000102000039000000000001042d0000000002000019000000000001042d000007e4002104230000000102000039000000000001042d0000000002000019000000000001042d000007e9002104250000000102000039000000000001042d0000000002000019000000000001042d000007eb00000432000007ec0001042e000007ed000104300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffff8000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffff00000003f4800000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000ad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5020000000000000000000000000000000000004000000000000000000000000002000000000000000000000000000000000000000000000000000000000000002f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0df603533e14e17222e047634a2b3457fe346d27e294cedf9d21d74e5feea4a0460000000200000000000000000000000000000040000001000000000000000000c22c8022000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000000000000000000000007b743e6a00000000000000000000000000000000000000000000000000000000a217fdde00000000000000000000000000000000000000000000000000000000cf6eefb600000000000000000000000000000000000000000000000000000000cf6eefb700000000000000000000000000000000000000000000000000000000d547741f00000000000000000000000000000000000000000000000000000000d602b9fd00000000000000000000000000000000000000000000000000000000a217fddf00000000000000000000000000000000000000000000000000000000cc8463c800000000000000000000000000000000000000000000000000000000cefc1429000000000000000000000000000000000000000000000000000000008da5cb5a000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000091d1485400000000000000000000000000000000000000000000000000000000a1eda53c000000000000000000000000000000000000000000000000000000007b743e6b0000000000000000000000000000000000000000000000000000000084ef8ffc000000000000000000000000000000000000000000000000000000002f2ff15c000000000000000000000000000000000000000000000000000000005c60da1a000000000000000000000000000000000000000000000000000000005c60da1b00000000000000000000000000000000000000000000000000000000634e93da00000000000000000000000000000000000000000000000000000000649a5ec7000000000000000000000000000000000000000000000000000000002f2ff15d0000000000000000000000000000000000000000000000000000000036568abe00000000000000000000000000000000000000000000000000000000086fc0c600000000000000000000000000000000000000000000000000000000086fc0c7000000000000000000000000000000000000000000000000000000000aa6220b00000000000000000000000000000000000000000000000000000000248a9ca30000000000000000000000000000000000000000000000000000000001ffc9a700000000000000000000000000000000000000000000000000000000022d63fbffffffffffff0000000000000000000000000000000000000000000000000000000000000000ffffffffffff00000000000000000000000000000000000000008886ebfc4259abdbc16601dd8fb5678e54878f47b3c34836cfc51154a9605109e2517d3f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000440000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffff0000000000000000000000000000000000000040000000800000000000000000796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d955391320200000200000000000000000000000000000004000000000000000000000000f6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b19ca5ebb00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000008000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff7f0000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000003ffffffe0696e6974206661696c656400000000000000000000000000000000000000000008c379a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000696d706c5f206973207a65726f206164647265737300000000000000000000004e487b7100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000697802b1fa2edafe6f7b9e97c1a9e0c3660e645beb2dcaa2d45bdbf9beaf5472e1ec5f1038c18cf84a56e432fdbfaf746924b7ea511dfe03a6506a0ceba4888788d9b6dfcc65000000000000000000000000000000000000000000000000000000000ffffffffffff000000000000ffffffffffffffffffffffffffffffffffffffff02000000000000000000000000000000000000200000000000000000000000003377dc44241e779dd06afab5b788a35ca5f3b778836e2990bdb26a2a4b2e5ed66697b2320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000003fc3c27a0000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff314987860000000000000000000000000000000000000000000000000000000001ffc9a7000000000000000000000000000000000000000000000000000000007965db0b00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe00000000000000000000000000000000000000000000000000000000000000000
[ 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.