Overview
ETH Balance
0 ETH
ETH Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 7 from a total of 7 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Fee Collecto... | 3920873 | 11 days ago | IN | 0 ETH | 0.00000474 | ||||
Disable Tx Fee C... | 3912614 | 11 days ago | IN | 0 ETH | 0.00000522 | ||||
Enable Tx Fee Ch... | 3911887 | 11 days ago | IN | 0 ETH | 0.00000381 | ||||
Disable Tx Fee C... | 3911795 | 11 days ago | IN | 0 ETH | 0.00000412 | ||||
Enable Mint Burn | 3911590 | 11 days ago | IN | 0 ETH | 0.00000391 | ||||
Disable Mint Bur... | 3911576 | 11 days ago | IN | 0 ETH | 0.00000524 | ||||
Enable Mint Burn | 3911182 | 11 days ago | IN | 0 ETH | 0.00000504 |
Latest 1 internal transaction
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
551710 | 51 days ago | Contract Creation | 0 ETH |
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
Erc20TransferHandler
Compiler Version
v0.8.19+commit.7dd6d404
ZkSolc Version
v1.5.7
Contract Source Code (Solidity)
/** *Submitted for verification at abscan.org on 2025-02-01 */ // Sources flattened with hardhat v2.19.5 https://hardhat.org // SPDX-License-Identifier: BUSL-1.1 AND MIT // File @openzeppelin/contracts/utils/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/access/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable2Step.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership} and {acceptOwnership}. * * This module is used through inheritance. It will make available all functions * from parent (Ownable). */ abstract contract Ownable2Step is Ownable { address private _pendingOwner; event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner); /** * @dev Returns the address of the pending owner. */ function pendingOwner() public view virtual returns (address) { return _pendingOwner; } /** * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one. * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual override onlyOwner { _pendingOwner = newOwner; emit OwnershipTransferStarted(owner(), newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner. * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual override { delete _pendingOwner; super._transferOwnership(newOwner); } /** * @dev The new owner accepts the ownership transfer. */ function acceptOwnership() public virtual { address sender = _msgSender(); require(pendingOwner() == sender, "Ownable2Step: caller is not the new owner"); _transferOwnership(sender); } } // File @openzeppelin/contracts/security/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File @openzeppelin/contracts/token/ERC20/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); } // File @openzeppelin/contracts/utils/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } // File @openzeppelin/contracts/token/ERC20/utils/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; /** * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } /** * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful. */ function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } /** * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 oldAllowance = token.allowance(address(this), spender); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value)); } /** * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value)); } } /** * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval * to be set to zero before setting it to a non-zero value, such as USDT. */ function forceApprove(IERC20 token, address spender, uint256 value) internal { bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value); if (!_callOptionalReturnBool(token, approvalCall)) { _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0)); _callOptionalReturn(token, approvalCall); } } /** * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`. * Revert on invalid signature. */ function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). * * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead. */ function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false // and not revert is the subcall reverts. (bool success, bytes memory returndata) = address(token).call(data); return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token)); } } // File @openzeppelin/contracts/security/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { return _status == _ENTERED; } } // File contracts/bases/ArcBase.sol // Original license: SPDX_License_Identifier: BUSL-1.1 pragma solidity 0.8.19; /** * Provides set of properties, functions, and modifiers to help with * security and access control of extending contracts */ contract ArcBase is Ownable2Step, Pausable, ReentrancyGuard { function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } function withdrawNative(address beneficiary) public onlyOwner { uint256 amount = address(this).balance; (bool sent, ) = beneficiary.call{value: amount}(""); require(sent, 'Unable to withdraw'); } function withdrawToken(address beneficiary, address token) public onlyOwner { uint256 amount = IERC20(token).balanceOf(address(this)); IERC20(token).transfer(beneficiary, amount); } } // File contracts/interfaces/IArc.sol // Original license: SPDX_License_Identifier: BUSL-1.1 pragma solidity 0.8.19; interface IArc { function approve(address _spender, uint _value) external returns (bool); function burn(uint amount) external; function mint(address account, uint amount) external; function transfer(address, uint) external returns (bool); function transferFrom(address _from, address _to, uint _value) external; } // File contracts/interfaces/IRainbowRoad.sol // Original license: SPDX_License_Identifier: BUSL-1.1 pragma solidity 0.8.19; interface IRainbowRoad { function acceptTeam() external; function actionHandlers(string calldata action) external view returns (address); function arc() external view returns (IArc); function blockToken(address tokenAddress) external; function disableFeeManager(address feeManager) external; function disableOpenTokenWhitelisting() external; function disableReceiver(address receiver) external; function disableSender(address sender) external; function disableSendFeeBurn() external; function disableSendFeeCharge() external; function disableWhitelistingFeeBurn() external; function disableWhitelistingFeeCharge() external; function enableFeeManager(address feeManager) external; function enableOpenTokenWhitelisting() external; function enableReceiver(address receiver) external; function enableSendFeeBurn() external; function enableSender(address sender) external; function enableSendFeeCharge() external; function enableWhitelistingFeeBurn() external; function enableWhitelistingFeeCharge() external; function sendFee() external view returns (uint256); function whitelistingFee() external view returns (uint256); function chargeSendFee() external view returns (bool); function chargeWhitelistingFee() external view returns (bool); function burnSendFee() external view returns (bool); function burnWhitelistingFee() external view returns (bool); function openTokenWhitelisting() external view returns (bool); function config(string calldata configName) external view returns (bytes memory); function blockedTokens(address tokenAddress) external view returns (bool); function feeManagers(address feeManager) external view returns (bool); function receiveAction(string calldata action, address to, bytes calldata payload) external; function sendAction(string calldata action, address from, bytes calldata payload) external; function setActionHandler(string memory action, address handler) external; function setArc(address _arc) external; function setSendFee(uint256 _fee) external; function setTeam(address _team) external; function setTeamRate(uint256 _teamRate) external; function setToken(string calldata tokenSymbol, address tokenAddress) external; function setWhitelistingFee(uint256 _fee) external; function team() external view returns (address); function teamRate() external view returns (uint256); function tokens(string calldata tokenSymbol) external view returns (address); function MAX_TEAM_RATE() external view returns (uint256); function receivers(address receiver) external view returns (bool); function senders(address sender) external view returns (bool); function unblockToken(address tokenAddress) external; function whitelist(address tokenAddress) external; } // File contracts/bases/ArcBaseWithRainbowRoad.sol // Original license: SPDX_License_Identifier: BUSL-1.1 pragma solidity 0.8.19; /** * Extends the ArcBase contract to provide * for interactions with the Rainbow Road */ contract ArcBaseWithRainbowRoad is ArcBase { IRainbowRoad public rainbowRoad; constructor(address _rainbowRoad) { require(_rainbowRoad != address(0), 'Rainbow Road cannot be zero address'); rainbowRoad = IRainbowRoad(_rainbowRoad); } function setRainbowRoad(address _rainbowRoad) external onlyOwner { require(_rainbowRoad != address(0), 'Rainbow Road cannot be zero address'); rainbowRoad = IRainbowRoad(_rainbowRoad); } /// @dev Only calls from the Rainbow Road are accepted. modifier onlyRainbowRoad() { require(msg.sender == address(rainbowRoad), 'Must be called by Rainbow Road'); _; } } // File contracts/interfaces/IFeeCollector.sol // Original license: SPDX_License_Identifier: BUSL-1.1 pragma solidity 0.8.19; interface IFeeCollector { function balanceLockExpires(address account) external view returns (uint); function balanceOf(address account) external returns (uint); function deposit(address account, uint amount) external; function earned(address token, address account) external view returns (uint); function getEpochStart(uint timestamp) external pure returns (uint); function getReward(address[] memory tokens) external; function isBalanceLockExpired(address account) external view returns (bool); function left(address token) external view returns (uint); function notifyRewardAmount(address token, uint amount) external; function withdraw(address account, uint amount) external; } // File contracts/interfaces/IFeeCollectorFactory.sol // Original license: SPDX_License_Identifier: BUSL-1.1 pragma solidity 0.8.19; interface IFeeCollectorFactory { function createFeeCollector(address rainbowRoad, address authorizedAccount) external returns (address); } // File contracts/interfaces/IHandler.sol // Original license: SPDX_License_Identifier: BUSL-1.1 pragma solidity 0.8.19; interface IHandler { function handleReceive(address target, bytes calldata payload) external; function handleSend(address target, bytes calldata payload) external; } // File contracts/interfaces/IMintBurn.sol // Original license: SPDX_License_Identifier: BUSL-1.1 pragma solidity 0.8.19; interface IMintBurn { function burn(uint amount) external; function mint(address account, uint amount) external; } // File contracts/handlers/Erc20TransferHandler.sol // Original license: SPDX_License_Identifier: BUSL-1.1 pragma solidity 0.8.19; /** * ERC20 Transfer Handler */ contract Erc20TransferHandler is ArcBaseWithRainbowRoad, IHandler { using SafeERC20 for IERC20; bool public chargeTxFee; uint256 public txFeeRate; uint256 public bribeFeeRate; uint256 public constant MAX_TX_FEE_RATE = 200; // 20% uint256 public constant MAX_BRIBE_FEE_RATE = 1000; // 100% uint256 public constant MAX_FEE_ON_TRANSFER_PCT_RATE = 1000; // 100% address public bribeCollector; IFeeCollectorFactory public feeCollectorFactory; mapping(string => address) public feeCollectors; mapping(string => uint256) public feeOnTransferFlatRate; mapping(string => uint256) public feeOnTransferPercentageRate; mapping(string => bool) public isMintBurn; constructor(address _rainbowRoad, address _feeCollectorFactory) ArcBaseWithRainbowRoad(_rainbowRoad) { require(_feeCollectorFactory != address(0), 'Fee Collector Factory cannot be zero address'); chargeTxFee = true; txFeeRate = 2; // 25 bps = 0.2% bribeFeeRate = 300; // 300 bps = 30% bribeCollector = 0x1d9E69A851b2c439A964d8dc3d611781440fd658; feeCollectorFactory = IFeeCollectorFactory(_feeCollectorFactory); } function enableTxFeeCharge() external onlyOwner { require(!chargeTxFee, 'Charge tx fee is enabled'); chargeTxFee = true; } function disableTxFeeCharge() external onlyOwner { require(chargeTxFee, 'Charge tx fee is disabled'); chargeTxFee = false; } function enableMintBurn(string calldata tokenSymbol) external onlyOwner { require(!isMintBurn[tokenSymbol], 'Mint and burn is enabled'); isMintBurn[tokenSymbol] = true; } function disableMintBurn(string calldata tokenSymbol) external onlyOwner { require(isMintBurn[tokenSymbol], 'Mint and burn is disabled'); isMintBurn[tokenSymbol] = false; } function setTxFeeRate(uint256 _txFeeRate) external { require(rainbowRoad.feeManagers(msg.sender), 'Invalid fee manager'); require(_txFeeRate <= MAX_TX_FEE_RATE, 'Tx fee rate too high'); txFeeRate = _txFeeRate; } function setBribeFeeRate(uint256 _bribeFeeRate) external { require(rainbowRoad.feeManagers(msg.sender), 'Invalid fee manager'); require(_bribeFeeRate <= MAX_BRIBE_FEE_RATE, 'Bribe fee rate too high'); bribeFeeRate = _bribeFeeRate; } function setFeeOnTransferFlatRate(string calldata tokenSymbol, uint256 _feeOnTransferFlatRate) external { require(rainbowRoad.feeManagers(msg.sender), 'Invalid fee manager'); address tokenAddress = rainbowRoad.tokens(tokenSymbol); require(tokenAddress != address(0), 'Token must be whitelisted'); require(!rainbowRoad.blockedTokens(tokenAddress), 'Token is blocked'); feeOnTransferFlatRate[tokenSymbol] = _feeOnTransferFlatRate; } function setFeeOnTransferPercentageRate(string calldata tokenSymbol, uint256 _feeOnTransferPercentageRate) external { require(rainbowRoad.feeManagers(msg.sender), 'Invalid fee manager'); address tokenAddress = rainbowRoad.tokens(tokenSymbol); require(tokenAddress != address(0), 'Token must be whitelisted'); require(!rainbowRoad.blockedTokens(tokenAddress), 'Token is blocked'); require(_feeOnTransferPercentageRate <= MAX_FEE_ON_TRANSFER_PCT_RATE, 'Fee on transfer rate too high'); feeOnTransferPercentageRate[tokenSymbol] = _feeOnTransferPercentageRate; } function setBribeCollector(address _bribeCollector) external onlyOwner { bribeCollector = _bribeCollector; } function setFeeCollectorFactory(address _feeCollectorFactory) external onlyOwner { require(_feeCollectorFactory != address(0), 'Fee Collector Factory cannot be zero address'); feeCollectorFactory = IFeeCollectorFactory(_feeCollectorFactory); } function setFeeCollector(string calldata tokenSymbol, address feeCollectorAddress) external onlyOwner { address tokenAddress = rainbowRoad.tokens(tokenSymbol); require(tokenAddress != address(0), 'Token must be whitelisted'); require(!rainbowRoad.blockedTokens(tokenAddress), 'Token is blocked'); require(feeCollectorAddress != address(0), 'Fee collector cannot be zero address'); feeCollectors[tokenSymbol] = feeCollectorAddress; } function encodePayload(string calldata tokenSymbol, uint256 amount) view external returns (bytes memory payload) { address tokenAddress = rainbowRoad.tokens(tokenSymbol); require(tokenAddress != address(0), 'Token must be whitelisted'); require(!rainbowRoad.blockedTokens(tokenAddress), 'Token is blocked'); require(amount > 0, 'Invalid amount'); uint256 amountToSend = amount; if(feeOnTransferPercentageRate[tokenSymbol] > 0) { uint256 transferFee = (feeOnTransferPercentageRate[tokenSymbol] * amount) / 1000; require(amountToSend > transferFee, 'Insufficient amount to send : Percent Rate'); amountToSend = amountToSend - transferFee; } if(feeOnTransferFlatRate[tokenSymbol] > 0) { require(amountToSend > feeOnTransferFlatRate[tokenSymbol], 'Insufficient amount to send : Flat Rate'); amountToSend = amountToSend - feeOnTransferFlatRate[tokenSymbol]; } return abi.encode(tokenSymbol, amountToSend, amount - amountToSend); } function handleReceive(address target, bytes calldata payload) external onlyRainbowRoad whenNotPaused nonReentrant { (string memory tokenSymbol, uint256 amount) = abi.decode(payload, (string, uint256)); require(amount > 0, 'Invalid amount'); address tokenAddress = rainbowRoad.tokens(tokenSymbol); require(tokenAddress != address(0), 'Token must be whitelisted'); require(!rainbowRoad.blockedTokens(tokenAddress), 'Token is blocked'); if(isMintBurn[tokenSymbol]) { IMintBurn(tokenAddress).mint(address(this), amount); } IERC20 token = IERC20(tokenAddress); require(token.balanceOf(address(this)) >= amount, 'Insufficient funds for transfer'); uint256 txFee = 0; if(chargeTxFee) { txFee = (txFeeRate * amount) / 1000; uint256 bribeFee = (bribeFeeRate * txFee) / 1000; uint256 lpFee = txFee - bribeFee; if(bribeFee > 0) { token.safeTransfer(bribeCollector, bribeFee); } if(feeCollectors[tokenSymbol] == address(0)) { feeCollectors[tokenSymbol] = feeCollectorFactory.createFeeCollector(address(rainbowRoad), address(this)); } if(lpFee > 0) { token.approve(feeCollectors[tokenSymbol], lpFee); IFeeCollector(feeCollectors[tokenSymbol]).notifyRewardAmount(tokenAddress, lpFee); } } token.safeTransfer(target, amount - txFee); } function handleSend(address target, bytes calldata payload) external onlyRainbowRoad whenNotPaused nonReentrant { (string memory tokenSymbol, uint256 amount, uint256 feeOnTransferAmount) = abi.decode(payload, (string, uint256, uint256)); require(amount > 0, 'Invalid amount'); address tokenAddress = rainbowRoad.tokens(tokenSymbol); require(tokenAddress != address(0), 'Token must be whitelisted'); require(!rainbowRoad.blockedTokens(tokenAddress), 'Token is blocked'); uint256 feeOnTransfer = feeOnTransferAmount; if(feeOnTransferPercentageRate[tokenSymbol] > 0) { uint256 transferFee = (feeOnTransferPercentageRate[tokenSymbol] * (amount + feeOnTransferAmount)) / 1000; require(feeOnTransfer >= transferFee, 'Insufficient amount to send : Percent Rate'); feeOnTransfer = feeOnTransfer - transferFee; } if(feeOnTransferFlatRate[tokenSymbol] > 0) { require(feeOnTransfer >= feeOnTransferFlatRate[tokenSymbol], 'Insufficient amount to send : Flat Rate'); feeOnTransfer = feeOnTransfer - feeOnTransferFlatRate[tokenSymbol]; } require(feeOnTransfer == 0, 'Invalid fee on transfer amount'); uint256 amountToSend = amount + feeOnTransferAmount; IERC20 token = IERC20(tokenAddress); require(token.balanceOf(target) >= amountToSend, 'Target has insufficient balance for transfer'); uint256 preTransferBalance = token.balanceOf(address(this)); token.safeTransferFrom(target, address(this), amountToSend); uint256 postTransferBalance = token.balanceOf(address(this)); uint256 diffTransferBalance = postTransferBalance - preTransferBalance; require(diffTransferBalance >= amount, 'Invalid transfer amount'); if(isMintBurn[tokenSymbol]) { IMintBurn(tokenAddress).burn(amountToSend); } } function deposit(string calldata tokenSymbol, uint256 amount) external nonReentrant { require(rainbowRoad.tokens(tokenSymbol) != address(0), 'Token must be whitelisted'); require(amount > 0, 'Invalid amount'); address tokenAddress = rainbowRoad.tokens(tokenSymbol); require(tokenAddress != address(0), 'Token address cannot be zero address'); require(!rainbowRoad.blockedTokens(tokenAddress), 'Token is blocked'); if(feeCollectors[tokenSymbol] == address(0)) { feeCollectors[tokenSymbol] = feeCollectorFactory.createFeeCollector(address(rainbowRoad), address(this)); } IERC20 token = IERC20(tokenAddress); uint256 preDepositBalance = token.balanceOf(address(this)); token.safeTransferFrom(msg.sender, address(this), amount); uint256 postDepositBalance = token.balanceOf(address(this)); uint256 diffDepositBalance = postDepositBalance - preDepositBalance; IFeeCollector(feeCollectors[tokenSymbol]).deposit(msg.sender, diffDepositBalance); } function withdraw(string calldata tokenSymbol, uint256 amount) external nonReentrant { require(rainbowRoad.tokens(tokenSymbol) != address(0), 'Token must be whitelisted'); require(amount > 0, 'Invalid amount'); address tokenAddress = rainbowRoad.tokens(tokenSymbol); require(tokenAddress != address(0), 'Token address cannot be zero address'); require(!rainbowRoad.blockedTokens(tokenAddress), 'Token is blocked'); require(feeCollectors[tokenSymbol] != address(0), 'No fee collector found'); IERC20 token = IERC20(tokenAddress); require(token.balanceOf(address(this)) >= amount, 'Insufficient liquidity for withdrawal'); IFeeCollector feeCollector = IFeeCollector(feeCollectors[tokenSymbol]); require(feeCollector.balanceOf(msg.sender) >= amount, 'Insufficient account balance for withdrawal'); feeCollector.withdraw(msg.sender, amount); token.safeTransfer(msg.sender, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_rainbowRoad","type":"address"},{"internalType":"address","name":"_feeCollectorFactory","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_BRIBE_FEE_RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FEE_ON_TRANSFER_PCT_RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TX_FEE_RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"bribeCollector","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bribeFeeRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"chargeTxFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"tokenSymbol","type":"string"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"tokenSymbol","type":"string"}],"name":"disableMintBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableTxFeeCharge","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"tokenSymbol","type":"string"}],"name":"enableMintBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTxFeeCharge","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"tokenSymbol","type":"string"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"encodePayload","outputs":[{"internalType":"bytes","name":"payload","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeCollectorFactory","outputs":[{"internalType":"contract IFeeCollectorFactory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"feeCollectors","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"feeOnTransferFlatRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"feeOnTransferPercentageRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"payload","type":"bytes"}],"name":"handleReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"payload","type":"bytes"}],"name":"handleSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"isMintBurn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rainbowRoad","outputs":[{"internalType":"contract IRainbowRoad","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_bribeCollector","type":"address"}],"name":"setBribeCollector","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_bribeFeeRate","type":"uint256"}],"name":"setBribeFeeRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"tokenSymbol","type":"string"},{"internalType":"address","name":"feeCollectorAddress","type":"address"}],"name":"setFeeCollector","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_feeCollectorFactory","type":"address"}],"name":"setFeeCollectorFactory","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"tokenSymbol","type":"string"},{"internalType":"uint256","name":"_feeOnTransferFlatRate","type":"uint256"}],"name":"setFeeOnTransferFlatRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"tokenSymbol","type":"string"},{"internalType":"uint256","name":"_feeOnTransferPercentageRate","type":"uint256"}],"name":"setFeeOnTransferPercentageRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_rainbowRoad","type":"address"}],"name":"setRainbowRoad","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_txFeeRate","type":"uint256"}],"name":"setTxFeeRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"txFeeRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"tokenSymbol","type":"string"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"beneficiary","type":"address"}],"name":"withdrawNative","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"beneficiary","type":"address"},{"internalType":"address","name":"token","type":"address"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
9c4d535b0000000000000000000000000000000000000000000000000000000000000000010007c5a92ceef16e0064f2fd45a26aec5c3999791da84f0977714aadab09e500000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000040000000000000000000000000eb484dddfad4f89c0f72267c7d13752451831038000000000000000000000000bfddbd9f71d2fb88923e0a7fb06a5aa937d9f5ff
Deployed Bytecode
0x0003000000000002000a000000000002000000000302001900000060021002700000072402200197000200000021035500010000000103550000000100300190000000670000c13d0000008003000039000000400030043f000000040020008c000012810000413d000000000301043b000000e003300270000007350030009c000000c20000213d000007510030009c000000d30000213d0000075f0030009c000001020000213d000007660030009c000001e90000a13d000007670030009c000003490000613d000007680030009c000005080000613d000007690030009c000012810000c13d000000440020008c000012810000413d0000000003000416000000000003004b000012810000c13d0000000403100370000000000303043b0000076e0030009c000012810000213d0000002304300039000000000024004b000012810000813d0000000404300039000000000541034f000000000505043b000a00000005001d0000076e0050009c000012810000213d0000002405300039000900000005001d0000000a03500029000000000023004b000012810000213d0000002402100370000000000202043b000600000002001d0000000302000039000000000302041a0000077102000041000000800020043f0000002002000039000000840020043f000000200b00008a0000000a080000290000000009b80170000000a40080043f0000001f0a80018f000300200040003d0000000304100360000000c4019000390000004c0000613d000000c405000039000000000604034f000000006706043c0000000005750436000000000015004b000000480000c13d000007270230019700000000000a004b0000005a0000613d000000000394034f0000000304a00210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000000c40180003900000000000104350000000001000414000000040020008c000500000009001d00040000000a001d000700000002001d0000076f0000c13d0000000003000031000000200030008c000000200400003900000000040340190000079a0000013d0000000003000416000000000003004b000012810000c13d0000001f0320003900000725033001970000008003300039000000400030043f0000001f0420018f00000726052001980000008003500039000000780000613d0000008006000039000000000701034f000000007807043c0000000006860436000000000036004b000000740000c13d000000000004004b000000850000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000400020008c000012810000413d000000800400043d000007270040009c000012810000213d000000a00100043d000a00000001001d000007270010009c000012810000213d000000000100041a00000728021001970000000006000411000000000262019f0000000103000039000000000303041a000800000003001d000000000020041b000000400200043d000700000002001d00000000020004140000072705100197000007240020009c0000072402008041000000c00120021000000729011001c70000800d020000390000000303000039000900000004001d0000072a040000411c8a1c800000040f00000009040000290000000100200190000012810000613d00000008010000290000072b011001970000000102000039000000000012041b0000000201000039000000000021041b000000000004004b000003320000c13d000000070300002900000064013000390000073302000041000000000021043500000044013000390000073402000041000000000021043500000024013000390000002302000039000000000021043500000731010000410000000000130435000000040130003900000020020000390000000000210435000007240030009c0000072403008041000000400130021000000732011001c700001c8c00010430000007360030009c000000e20000213d000007440030009c0000015b0000213d0000074b0030009c000001f20000a13d0000074c0030009c0000032b0000613d0000074d0030009c000005310000613d0000074e0030009c000012810000c13d0000000001000416000000000001004b000012810000c13d00000006010000390000039c0000013d000007520030009c000001b90000213d000007590030009c000002120000a13d0000075a0030009c0000035e0000613d0000075b0030009c000005490000613d0000075c0030009c000012810000c13d0000000001000416000000000001004b000012810000c13d0000000101000039000002c70000013d000007370030009c000001da0000213d0000073e0030009c0000029f0000a13d0000073f0030009c0000036f0000613d000007400030009c0000055f0000613d000007410030009c000012810000c13d0000000001000416000000000001004b000012810000c13d000000000100041a00000727011001970000000002000411000000000021004b000006240000c13d0000000301000039000000000201041a0000077900200198000006e90000c13d0000073101000041000000800010043f0000002001000039000000840010043f0000001901000039000000a40010043f0000077b01000041000000c40010043f0000077c0100004100001c8c00010430000007600030009c000002bf0000a13d000007610030009c000003770000613d000007620030009c000005cc0000613d000007630030009c000012810000c13d000000440020008c000012810000413d0000000003000416000000000003004b000012810000c13d0000000403100370000000000403043b0000076e0040009c000012810000213d0000002303400039000000000023004b000012810000813d0000000403400039000000000531034f000000000505043b000a00000005001d0000076e0050009c000012810000213d0000000a044000290000002404400039000000000024004b000012810000213d0000002402100370000000000502043b0000000204000039000000000204041a000000020020008c000002ef0000613d000900000005001d000000000044041b0000000302000039000000000402041a0000077102000041000000800020043f0000002002000039000000840020043f0000000a05000029000000a40050043f000007b7085001980000001f0950018f000400200030003d0000000403100360000000c4018000390000013c0000613d000000c405000039000000000603034f000000006706043c0000000005750436000000000015004b000001380000c13d0000072702400197000000000009004b0000014a0000613d000000000383034f0000000304900210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000600000009001d000700000008001d0000000a03000029000000c40130003900000000000104350000001f01300039000007b7031001970000000001000414000000040020008c000800000002001d000300000003001d000008f10000c13d0000000003000031000000200030008c000000200400003900000000040340190000091a0000013d000007450030009c000002ce0000a13d000007460030009c0000038e0000613d000007470030009c0000032b0000613d000007480030009c000012810000c13d000000240020008c000012810000413d0000000003000416000000000003004b000012810000c13d0000000403100370000000000403043b0000076e0040009c000012810000213d0000002303400039000000000023004b000012810000813d0000000403400039000000000531034f000000000505043b000a00000005001d0000076e0050009c000012810000213d0000000a044000290000002404400039000000000024004b000012810000213d000000000200041a00000727022001970000000004000411000000000042004b000006240000c13d0000000a04000029000007b7064001980000001f0740018f000700200030003d000000070210036000000080016000390000018b0000613d0000008003000039000000000402034f000000004504043c0000000003530436000000000013004b000001870000c13d000000000007004b000001980000613d000000000262034f0000000303700210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f0000000000210435000800000007001d000900000006001d0000000a0200002900000080012000390000000b0300003900000000003104350000002001200039000007240010009c000600000001001d000007240100804100000060011002100000000002000414000007240020009c0000072402008041000000c002200210000000000121019f0000078a011001c700008010020000391c8a1c850000040f0000000100200190000012810000613d000000000301034f000000400100043d000000000203043b000000000202041a000000ff00200190000009e30000c13d00000044021000390000078b0300004100000000003204350000002402100039000000190300003900000a230000013d000007530030009c000002f90000a13d000007540030009c000003930000613d000007550030009c000005f00000613d000007560030009c000012810000c13d0000000001000416000000000001004b000012810000c13d0000000101000039000000000201041a00000727032001970000000006000411000000000063004b000006470000c13d0000072802200197000000000021041b000000000100041a0000072802100197000000000262019f000000000020041b00000000020004140000072705100197000007240020009c0000072402008041000000c00120021000000729011001c70000800d0200003900000003030000390000072a04000041000007210000013d000007380030009c000003140000a13d000007390030009c000003980000613d0000073a0030009c000006080000613d0000073b0030009c000012810000c13d0000000001000416000000000001004b000012810000c13d000000c801000039000000800010043f0000076c0100004100001c8b0001042e0000076a0030009c000003a10000613d0000076b0030009c000012810000c13d0000000001000416000000000001004b000012810000c13d0000000501000039000003730000013d0000074f0030009c000004150000613d000007500030009c000012810000c13d000000240020008c000012810000413d0000000002000416000000000002004b000012810000c13d0000000401100370000000000101043b000007270010009c000012810000213d000000000200041a00000727022001970000000003000411000000000032004b000006240000c13d000000000001004b000007260000c13d0000073101000041000000800010043f0000002001000039000000840010043f0000002c01000039000000a40010043f0000073001000041000000c40010043f0000072f01000041000000e40010043f000007880100004100001c8c000104300000075d0030009c000004310000613d0000075e0030009c000012810000c13d000000440020008c000012810000413d0000000003000416000000000003004b000012810000c13d0000000403100370000000000303043b000a00000003001d000007270030009c000012810000213d0000002403100370000000000403043b0000076e0040009c000012810000213d0000002303400039000000000023004b000012810000813d0000000403400039000000000531034f000000000605043b0000076e0060009c000012810000213d00000024054000390000000004560019000000000024004b000012810000213d0000000302000039000000000202041a00000727022001970000000007000411000000000027004b000008280000c13d0000000102000039000000000202041a0000077900200198000006d50000c13d0000000202000039000000000202041a000000020020008c000002ef0000613d0000000202000039000000000022041b000000600060008c000012810000413d0000002003300039000000000231034f000000000202043b0000076e0020009c000012810000213d00000000065200190000001f02600039000000000042004b000012810000813d000000000261034f000000000502043b0000076e0050009c0000099e0000213d0000001f07500039000007b7077001970000003f07700039000007b7077001970000077d0070009c0000099e0000213d0000008007700039000000400070043f000000800050043f00000020066000390000000007650019000000000047004b000012810000213d000000000661034f000007b7075001980000001f0850018f000000a004700039000002670000613d000000a009000039000000000a06034f00000000ab0a043c0000000009b90436000000000049004b000002630000c13d000000000008004b000002740000613d000000000676034f0000000307800210000000000804043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000640435000000a00450003900000000000404350000002004300039000000000441034f0000004003300039000000000131034f000000000101043b000800000001001d000000000104043b000700000001001d000000000001004b000005c50000613d000000400400043d000007710100004100000000001404350000000401400039000000200300003900000000003104350000002403400039000000800100043d0000000000130435000900000004001d0000004403400039000000000001004b000002950000613d00000000040000190000000005340019000000a006400039000000000606043300000000006504350000002004400039000000000014004b0000028e0000413d0000000003310019000000000003043500000000030004140000000004000411000000040040008c000010b60000c13d0000000004000031000000200040008c0000002004008039000010e70000013d000007420030009c000004520000613d000007430030009c000012810000c13d000000240020008c000012810000413d0000000002000416000000000002004b000012810000c13d0000000401100370000000000101043b000007270010009c000012810000213d000000000200041a00000727022001970000000003000411000000000032004b000006240000c13d000000000001004b000007280000c13d0000073101000041000000800010043f0000002001000039000000840010043f0000002301000039000000a40010043f0000073401000041000000c40010043f0000073301000041000000e40010043f000007880100004100001c8c00010430000007640030009c0000046b0000613d000007650030009c000012810000c13d0000000001000416000000000001004b000012810000c13d0000000301000039000000000101041a00000779001001980000000001000039000000010100c039000000800010043f0000076c0100004100001c8b0001042e000007490030009c0000048b0000613d0000074a0030009c000012810000c13d000000440020008c000012810000413d0000000003000416000000000003004b000012810000c13d0000000403100370000000000403043b0000076e0040009c000012810000213d0000002303400039000000000023004b000012810000813d0000000403400039000000000531034f000000000505043b000a00000005001d0000076e0050009c000012810000213d0000002405400039000900000005001d0000000a04500029000000000024004b000012810000213d0000002402100370000000000502043b0000000204000039000000000204041a000000020020008c0000073d0000c13d0000073101000041000000800010043f0000002001000039000000840010043f0000001f01000039000000a40010043f000007aa01000041000000c40010043f0000077c0100004100001c8c00010430000007570030009c000004900000613d000007580030009c000012810000c13d000000240020008c000012810000413d0000000002000416000000000002004b000012810000c13d0000000401100370000000000301043b0000000301000039000000000201041a0000076f01000041000000800010043f0000000001000411000000840010043f00000000010004140000072702200197000000040020008c000a00000003001d000006530000c13d0000000003000031000000200030008c00000020040000390000000004034019000006780000013d0000073c0030009c000004e00000613d0000073d0030009c000012810000c13d000000240020008c000012810000413d0000000002000416000000000002004b000012810000c13d0000000401100370000000000101043b000a00000001001d000007270010009c000012810000213d1c8a1a5c0000040f0000000601000039000000000201041a00000728022001970000000a03000029000000000232019f000000000021041b000000000100001900001c8b0001042e0000000001000416000000000001004b000012810000c13d000003e801000039000000800010043f0000076c0100004100001c8b0001042e0000000a03000029000000000003004b0000062d0000c13d000000400100043d00000064021000390000072f03000041000000000032043500000044021000390000073003000041000000000032043500000024021000390000002c03000039000000000032043500000731020000410000000000210435000000040210003900000020030000390000000000320435000007240010009c0000072401008041000000400110021000000732011001c700001c8c00010430000000240020008c000012810000413d0000000003000416000000000003004b000012810000c13d0000000401100370000000000101043b0000076e0010009c000012810000213d00000004011000391c8a19f30000040f0000000013010434000900000003001d000000400200043d000a00000002001d1c8a1a3d0000040f00000009030000290000000a0100002900000000041300190000000a02000039000004660000013d0000000001000416000000000001004b000012810000c13d000000000100041a00000727011001970000000002000411000000000021004b000006240000c13d0000000301000039000000000201041a0000077900200198000006df0000c13d0000077a022001970000072c022001c7000000000021041b000000000100001900001c8b0001042e0000000001000416000000000001004b000012810000c13d0000000401000039000000000101041a000000800010043f0000076c0100004100001c8b0001042e000000240020008c000012810000413d0000000002000416000000000002004b000012810000c13d0000000401100370000000000101043b000a00000001001d0000000301000039000000000201041a0000076f01000041000000800010043f0000000001000411000000840010043f00000000010004140000072702200197000000040020008c000006940000c13d0000000003000031000000200030008c00000020040000390000000004034019000006b90000013d0000000001000416000000000001004b000012810000c13d00000007010000390000039c0000013d0000000001000416000000000001004b000012810000c13d00000003010000390000039c0000013d0000000001000416000000000001004b000012810000c13d0000000101000039000000000101041a0000072701100197000000800010043f0000076c0100004100001c8b0001042e000000240020008c000012810000413d0000000003000416000000000003004b000012810000c13d0000000403100370000000000403043b0000076e0040009c000012810000213d0000002303400039000000000023004b000012810000813d0000000403400039000000000531034f000000000505043b000a00000005001d0000076e0050009c000012810000213d0000000a044000290000002404400039000000000024004b000012810000213d000000000200041a00000727022001970000000004000411000000000042004b000006240000c13d0000000a04000029000007b7064001980000001f0740018f000700200030003d00000007021003600000008001600039000003c90000613d0000008003000039000000000402034f000000004504043c0000000003530436000000000013004b000003c50000c13d000000000007004b000003d60000613d000000000262034f0000000303700210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f0000000000210435000800000007001d000900000006001d0000000a0200002900000080012000390000000b0300003900000000003104350000002001200039000007240010009c000600000001001d000007240100804100000060011002100000000002000414000007240020009c0000072402008041000000c002200210000000000121019f0000078a011001c700008010020000391c8a1c850000040f0000000100200190000012810000613d000000000301034f000000400100043d000000000203043b000000000202041a000000ff0020019000000a1e0000c13d000000090210002900000007030000290000000103300367000000090000006b000003fc0000613d000000000403034f0000000005010019000000004604043c0000000005650436000000000025004b000003f80000c13d000000080000006b0000040a0000613d000000090330036000000008040000290000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f00000000003204350000000a021000290000000b03000039000000000032043500000006020000291c8a1c6b0000040f000000000201041a000007b80220019700000001022001bf000000000021041b000000000100001900001c8b0001042e000000240020008c000012810000413d0000000003000416000000000003004b000012810000c13d0000000401100370000000000101043b0000076e0010009c000012810000213d00000004011000391c8a19f30000040f0000000013010434000900000003001d000000400200043d000a00000002001d1c8a1a3d0000040f00000009030000290000000a0100002900000000041300190000000b02000039000000000024043500000020023000391c8a1c6b0000040f000000000101041a000000ff001001900000000001000039000000010100c039000004840000013d000000440020008c000012810000413d0000000002000416000000000002004b000012810000c13d0000000402100370000000000202043b000a00000002001d000007270020009c000012810000213d0000002401100370000000000101043b000900000001001d000007270010009c000012810000213d000000000100041a00000727011001970000000002000411000000000021004b000006240000c13d0000078301000041000000800010043f0000000001000410000000840010043f00000000010004140000000902000029000000040020008c000007b50000c13d0000000003000031000000200030008c000000200b000039000000000b034019000007da0000013d000000240020008c000012810000413d0000000003000416000000000003004b000012810000c13d0000000401100370000000000101043b0000076e0010009c000012810000213d00000004011000391c8a19f30000040f0000000013010434000900000003001d000000400200043d000a00000002001d1c8a1a3d0000040f00000009030000290000000a0100002900000000041300190000000902000039000000000024043500000020023000391c8a1c6b0000040f000000000101041a000004840000013d000000240020008c000012810000413d0000000003000416000000000003004b000012810000c13d0000000401100370000000000101043b0000076e0010009c000012810000213d00000004011000391c8a19f30000040f0000000013010434000900000003001d000000400200043d000a00000002001d1c8a1a3d0000040f00000009030000290000000a0100002900000000041300190000000802000039000000000024043500000020023000391c8a1c6b0000040f000000000101041a0000072701100197000000400200043d0000000000120435000007240020009c0000072402008041000000400120021000000789011001c700001c8b0001042e0000000001000416000000000001004b000012810000c13d000000000100041a0000039d0000013d000000440020008c000012810000413d0000000003000416000000000003004b000012810000c13d0000000403100370000000000403043b0000076e0040009c000012810000213d0000002303400039000000000023004b000012810000813d0000000403400039000000000531034f000000000505043b000a00000005001d0000076e0050009c000012810000213d0000000a044000290000002404400039000000000024004b000012810000213d0000002402100370000000000202043b000900000002001d000007270020009c000012810000213d000000000200041a00000727022001970000000004000411000000000042004b000006240000c13d0000000302000039000000000402041a0000077102000041000000800020043f0000002002000039000000840020043f0000000a05000029000000a40050043f000000200900008a00000000069501700000001f0850018f000400200030003d0000000403100360000800000006001d000000c401600039000004c60000613d000000c405000039000000000603034f000000006706043c0000000005750436000000000015004b000004c20000c13d0000072702400197000000000008004b000004d40000613d00000008033003600000000304800210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000500000008001d0000000a01000029000000c40110003900000000000104350000000001000414000000040020008c000600000002001d00000a2e0000c13d0000000004000031000000200040008c000000200400803900000a5a0000013d000000440020008c000012810000413d0000000003000416000000000003004b000012810000c13d0000000403100370000000000303043b0000076e0030009c000012810000213d0000002304300039000000000024004b000012810000813d000900040030003d0000000904100360000000000404043b000a00000004001d0000076e0040009c000012810000213d0000000a033000290000002403300039000000000023004b000012810000213d0000002401100370000000000101043b000600000001001d0000000301000039000000000201041a0000076f01000041000000800010043f0000000001000411000000840010043f00000000010004140000072702200197000000040020008c000700000002001d000008320000c13d0000000004000031000000200040008c0000002004008039000008570000013d000000440020008c000012810000413d0000000003000416000000000003004b000012810000c13d0000000403100370000000000303043b0000076e0030009c000012810000213d0000002304300039000000000024004b000012810000813d000900040030003d0000000904100360000000000404043b000a00000004001d0000076e0040009c000012810000213d0000000a033000290000002403300039000000000023004b000012810000213d0000002401100370000000000101043b000600000001001d0000000301000039000000000201041a0000076f01000041000000800010043f0000000001000411000000840010043f00000000010004140000072702200197000000040020008c000700000002001d000008a90000c13d0000000003000031000000200030008c00000020040000390000000004034019000008ce0000013d0000000001000416000000000001004b000012810000c13d000000000100041a00000727021001970000000001000411000000000012004b000006240000c13d0000000103000039000000000203041a0000077900200198000006d50000c13d0000077a022001970000072c022001c7000000000023041b000000800010043f0000000001000414000007240010009c0000072401008041000000c00110021000000793011001c70000800d020000390000079404000041000007210000013d0000000001000416000000000001004b000012810000c13d000000000100041a00000727021001970000000001000411000000000012004b000006240000c13d0000000103000039000000000203041a0000077900200198000007170000c13d0000073101000041000000800010043f0000002001000039000000840010043f0000001401000039000000a40010043f0000079a01000041000000c40010043f0000077c0100004100001c8c00010430000000440020008c000012810000413d0000000003000416000000000003004b000012810000c13d0000000403100370000000000303043b000a00000003001d000007270030009c000012810000213d0000002403100370000000000403043b0000076e0040009c000012810000213d0000002303400039000000000023004b000012810000813d0000000403400039000000000531034f000000000605043b0000076e0060009c000012810000213d00000024054000390000000004560019000000000024004b000012810000213d0000000302000039000000000202041a00000727022001970000000007000411000000000027004b000008280000c13d0000000102000039000000000202041a0000077900200198000006d50000c13d0000000202000039000000000202041a000000020020008c000002ef0000613d0000000202000039000000000022041b000000400060008c000012810000413d0000002003300039000000000231034f000000000202043b0000076e0020009c000012810000213d00000000065200190000001f02600039000000000042004b000012810000813d000000000261034f000000000502043b0000076e0050009c0000099e0000213d0000001f07500039000007b7077001970000003f07700039000007b7077001970000077d0070009c0000099e0000213d0000008007700039000000400070043f000000800050043f00000020066000390000000007650019000000000047004b000012810000213d000000000661034f000007b7075001980000001f0850018f000000a004700039000005b00000613d000000a009000039000000000a06034f00000000ab0a043c0000000009b90436000000000049004b000005ac0000c13d000000000008004b000005bd0000613d000000000676034f0000000307800210000000000804043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000640435000000a00450003900000000000404350000002003300039000000000131034f000000000101043b000800000001001d000000000001004b000010970000c13d000000400100043d00000044021000390000079203000041000000000032043500000024021000390000000e0300003900000a230000013d000000240020008c000012810000413d0000000002000416000000000002004b000012810000c13d0000000401100370000000000101043b000a00000001001d000007270010009c000012810000213d000000000100041a00000727011001970000000002000411000000000021004b000006240000c13d000007ab010000410000000000100443000000000100041000000004001004430000000001000414000007240010009c0000072401008041000000c00110021000000780011001c70000800a020000391c8a1c850000040f0000000100200190000019c60000613d000000000301043b00000000010004140000000a04000029000000040040008c000008210000c13d00000001020000390000000001000031000009910000013d0000000001000416000000000001004b000012810000c13d000000000100041a00000727021001970000000005000411000000000052004b000006240000c13d0000000102000039000000000302041a0000072803300197000000000032041b0000072801100197000000000010041b0000000001000414000007240010009c0000072401008041000000c00110021000000729011001c70000800d0200003900000003030000390000072a040000410000000006000019000007210000013d000000240020008c000012810000413d0000000002000416000000000002004b000012810000c13d0000000401100370000000000601043b000007270060009c000012810000213d000000000100041a00000727011001970000000005000411000000000051004b000006240000c13d0000000101000039000000000201041a0000072802200197000000000262019f000000000021041b0000000001000414000007240010009c0000072401008041000000c00110021000000729011001c70000800d0200003900000003030000390000076d04000041000007210000013d0000073101000041000000800010043f0000002001000039000000840010043f000000a40010043f000007b501000041000000c40010043f0000077c0100004100001c8c000104300000000305000039000000000205041a0000072b02200197000000000224019f0000072c022001c7000000000025041b0000000402000039000000000012041b0000012c010000390000000502000039000000000012041b0000000601000039000000000201041a00000728022001970000072d022001c7000000000021041b0000000701000039000000000201041a0000072802200197000000000232019f000000000021041b0000002001000039000001000010044300000120000004430000072e0100004100001c8b0001042e0000073101000041000000800010043f0000002001000039000000840010043f0000002901000039000000a40010043f0000079501000041000000c40010043f0000079601000041000000e40010043f000007880100004100001c8c00010430000007240010009c0000072401008041000000c00110021000000770011001c71c8a1c850000040f00000060031002700000072403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000006670000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000006630000c13d000000000006004b000006740000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00020000000103550000000100200190000006ed0000613d0000001f01400039000000600210018f00000080012001bf000000400010043f000000200030008c000012810000413d000000800300043d000000000003004b0000000004000039000000010400c039000000000043004b000012810000c13d000000000003004b000006c70000613d0000000a03000029000000c90030008c000008e90000413d0000073103000041000000000031043500000084032001bf00000020040000390000000000430435000000c40320003900000797040000410000000000430435000000a4022000390000001403000039000006d10000013d000007240010009c0000072401008041000000c00110021000000770011001c71c8a1c850000040f00000060031002700000072403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000006a80000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000006a40000c13d000000000006004b000006b50000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00020000000103550000000100200190000006f90000613d0000001f01400039000000600210018f00000080012001bf000000400010043f000000200030008c000012810000413d000000800300043d000000000003004b0000000004000039000000010400c039000000000043004b000012810000c13d000000000003004b0000072f0000c13d0000073103000041000000000031043500000084032001bf00000020040000390000000000430435000000c40320003900000778040000410000000000430435000000a40220003900000013030000390000000000320435000000400110021000000777011001c700001c8c000104300000073101000041000000800010043f0000002001000039000000840010043f0000001001000039000000a40010043f0000079d01000041000000c40010043f0000077c0100004100001c8c000104300000073101000041000000800010043f0000002001000039000000840010043f0000001801000039000000a40010043f0000079b01000041000000c40010043f0000077c0100004100001c8c000104300000077a02200197000000000021041b000000000100001900001c8b0001042e0000001f0530018f0000072606300198000000400200043d0000000004620019000007040000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000006f40000c13d000007040000013d0000001f0530018f0000072606300198000000400200043d0000000004620019000007040000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000007000000c13d000000000005004b000007110000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000007240020009c00000724020080410000004002200210000000000112019f00001c8c000104300000077a02200197000000000023041b000000800010043f0000000001000414000007240010009c0000072401008041000000c00110021000000793011001c70000800d0200003900000799040000411c8a1c800000040f0000000100200190000012810000613d000000000100001900001c8b0001042e0000000702000039000007290000013d0000000302000039000000000302041a0000072803300197000000000113019f000000000012041b000000000100001900001c8b0001042e0000000a03000029000003e90030008c000008ed0000413d0000073103000041000000000031043500000084032001bf00000020040000390000000000430435000000c403200039000007af040000410000000000430435000000a4022000390000001703000039000006d10000013d000800000005001d000000000044041b0000000302000039000000000202041a0000077104000041000000800040043f0000002004000039000000840040043f0000000a04000029000000a40040043f000000200900008a00000000079401700000001f0840018f000300200030003d0000000303100360000000c401700039000007540000613d000000c404000039000000000503034f000000005605043c0000000004640436000000000014004b000007500000c13d0000072705200197000000000008004b000007620000613d000000000273034f0000000303800210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f0000000000210435000500000008001d000600000007001d0000000a01000029000000c40110003900000000000104350000000001000414000000040050008c000700000005001d0000092c0000c13d0000000004000031000000200040008c0000002004008039000009590000013d0000001f038000390000000003b3016f000007720030009c00000772030080410000006003300210000007240010009c0000072401008041000000c001100210000000000113019f0000078c0110009a1c8a1c850000040f00000060031002700000072403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000007890000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000007850000c13d000000000006004b000007960000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00020000000103550000000100200190000009710000613d0000001f01400039000000600110018f00000080021001bf000800000002001d000000400020043f000000200030008c000012810000413d000000800200043d000007270020009c000012810000213d00000084031001bf000000000002004b00000a6a0000c13d00000731020000410000000804000029000000000024043500000020020000390000000000230435000000c40210003900000776030000410000000000320435000000a40110003900000019020000390000000000210435000000400140021000000777011001c700001c8c00010430000007240010009c0000072401008041000000c00110021000000770011001c71c8a1c850000040f00000060031002700000072403300197000000200030008c000000200b000039000000000b0340190000001f05b0018f0000002006b0019000000080046001bf000007c90000613d0000008007000039000000000801034f000000008908043c0000000007970436000000000047004b000007c50000c13d000000000005004b000007d60000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000000000003001f000200000001035500000001002001900000097d0000613d0000001f01b00039000000600110018f00000080021001bf000800000002001d000000400020043f000000200030008c000012810000413d000000000a0b0019000000800200043d000007a303000041000000080b00002900000000003b043500000084031001bf0000000a040000290000000000430435000000a401100039000000000021043500000000010004140000000902000029000000040020008c000008180000613d000007240010009c0000072401008041000000c0011002100000004003b00210000000000131019f00000782011001c71c8a1c800000040f000000080b00002900000060031002700000072403300197000000200030008c000000200400003900000000040340190000001f0540018f000000000a040019000000200640019000000000046b0019000008070000613d000000000701034f00000000080b0019000000007907043c0000000008980436000000000048004b000008030000c13d000000000005004b000008140000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000000000003001f0002000000010355000000010020019000000a8a0000613d00000000010b001900000000020a0019000a0000000a001d1c8a19e10000040f00000008010000290000000a021000291c8a1a720000040f000000000100001900001c8b0001042e000007240010009c0000072401008041000000c001100210000000000003004b000009890000c13d00000000020400190000098c0000013d0000073101000041000000800010043f0000002001000039000000840010043f0000001e01000039000000a40010043f0000079c01000041000000c40010043f0000077c0100004100001c8c00010430000007240010009c0000072401008041000000c00110021000000770011001c71c8a1c850000040f000000800a00003900000060031002700000072403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000008460000613d000000000801034f000000008908043c000000000a9a043600000000005a004b000008420000c13d000000000006004b000008530000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00020000000103550000000100200190000009cb0000613d0000001f01400039000000600110018f00000080021001bf000800000002001d000000400020043f000000200040008c000012810000413d000000800500043d000000000005004b0000000002000039000000010200c039000000000025004b000012810000c13d000000c402100039000000a40310003900000084041001bf000000000005004b000008e00000613d000007710500004100000008060000290000000000560435000000200500003900000000005404350000000a040000290000000000430435000007b7054001980005001f00400193000400000005001d000000000452001900000009050000290000002005500039000300000005001d00000001055003670000087f0000613d000000000605034f0000000007020019000000006806043c0000000007870436000000000047004b0000087b0000c13d000000050000006b0000088d0000613d000000040550036000000005060000290000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005404350000000a02200029000000000002043500000000020004140000000704000029000000040040008c00000b240000c13d0000000802100029000900000002001d000000400020043f00000008020000290000000002020433000007270020009c000012810000213d000000090300002900000004033001bf000000000002004b00000acb0000613d000007740400004100000009050000290000000000450435000000000023043500000000020004140000000703000029000000040030008c00000d0a0000c13d0000000901100029000000400010043f00000d3a0000013d000007240010009c0000072401008041000000c00110021000000770011001c71c8a1c850000040f00000060031002700000072403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000008bd0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000008b90000c13d000000000006004b000008ca0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00020000000103550000000100200190000009d70000613d0000001f01400039000000600110018f00000080021001bf000800000002001d000000400020043f000000200030008c000012810000413d000000800500043d000000000005004b0000000002000039000000010200c039000000000025004b000012810000c13d000000c402100039000000a40310003900000084041001bf000000000005004b00000a960000c13d0000073101000041000000080500002900000000001504350000002001000039000000000014043500000013010000390000000000130435000007780100004100000af00000013d0000000401000039000000000031041b000000000100001900001c8b0001042e0000000501000039000000000031041b000000000100001900001c8b0001042e000007240010009c0000072401008041000000c001100210000007720030009c00000772030080410000006003300210000000000113019f0000078c0110009a1c8a1c850000040f00000060031002700000072403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000009090000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000009050000c13d000000000006004b000009160000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f0002000000010355000000010020019000000a060000613d0000001f01400039000000600110018f00000080021001bf000500000002001d000000400020043f000000200030008c000012810000413d000000800500043d000007270050009c000012810000213d000000c402100039000000a40310003900000084041001bf000000000005004b00000ae10000c13d000007310100004100000005050000290000096a0000013d0000000a020000290000001f02200039000000000292016f000007720020009c00000772020080410000006002200210000007240010009c0000072401008041000000c001100210000000000112019f0000078c0110009a00000000020500191c8a1c850000040f00000060031002700000072403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000009480000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000009440000c13d000000000006004b000009550000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f0002000000010355000000010020019000000a120000613d0000001f01400039000000600110018f00000080021001bf000400000002001d000000400020043f000000200040008c000012810000413d000000800500043d000007270050009c000012810000213d000000c402100039000000a40310003900000084041001bf000000000005004b00000ae60000c13d0000073101000041000000040500002900000000001504350000002001000039000000000014043500000019010000390000000000130435000007760100004100000af00000013d0000001f0530018f0000072606300198000000400200043d0000000004620019000007040000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000009780000c13d000007040000013d0000001f0530018f0000072606300198000000400200043d0000000004620019000007040000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000009840000c13d000007040000013d00000729011001c7000080090200003900000000050000191c8a1c800000040f00020000000103550000006001100270000007240010019d0000072401100197000000000001004b0000099c0000c13d0000000100200190000007240000c13d000000400100043d0000004402100039000007ae0300004100000000003204350000002402100039000000120300003900000a230000013d000007ac0010009c000009a40000413d000007ad01000041000000000010043f0000004101000039000000040010043f000007750100004100001c8c000104300000001f04100039000007b7044001970000003f04400039000007b705400197000000400400043d0000000005540019000000000045004b000000000600003900000001060040390000076e0050009c0000099e0000213d00000001006001900000099e0000c13d000000400050043f0000000006140436000007b7031001980000001f0410018f00000000013600190000000205000367000009bd0000613d000000000705034f000000007807043c0000000006860436000000000016004b000009b90000c13d000000000004004b000009930000613d000000000335034f0000000304400210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000009930000013d0000001f0530018f0000072606300198000000400200043d0000000004620019000007040000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000009d20000c13d000007040000013d0000001f0530018f0000072606300198000000400200043d0000000004620019000007040000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000009de0000c13d000007040000013d000000090210002900000007030000290000000103300367000000090000006b000009ee0000613d000000000403034f0000000005010019000000004604043c0000000005650436000000000025004b000009ea0000c13d000000080000006b000009fc0000613d000000090330036000000008040000290000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f00000000003204350000000a021000290000000b03000039000000000032043500000006020000291c8a1c6b0000040f000000000201041a000007b802200197000000000021041b000000000100001900001c8b0001042e0000001f0530018f0000072606300198000000400200043d0000000004620019000007040000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000a0d0000c13d000007040000013d0000001f0530018f0000072606300198000000400200043d0000000004620019000007040000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000a190000c13d000007040000013d0000004402100039000007b603000041000000000032043500000024021000390000001803000039000000000032043500000731020000410000000000210435000000040210003900000020030000390000000000320435000007240010009c0000072401008041000000400110021000000777011001c700001c8c000104300000000a030000290000001f03300039000000000393016f000007720030009c00000772030080410000006003300210000007240010009c0000072401008041000000c001100210000000000113019f0000078c0110009a1c8a1c850000040f00000060031002700000072403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000a490000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000a450000c13d000000000006004b00000a560000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f0002000000010355000000010020019000000ad50000613d0000001f01400039000000600110018f00000080021001bf000700000002001d000000400020043f000000200040008c000012810000413d000000800200043d000007270020009c000012810000213d00000084031001bf000000000002004b00000b940000c13d00000731020000410000000704000029000007a90000013d000007740400004100000008050000290000000000450435000000000023043500000000020004140000000703000029000000040030008c00000af40000c13d0000000801100029000000400010043f00000008020000290000000002020433000000000002004b0000000003000039000000010300c039000000000032004b000012810000c13d000000000002004b00000c6d0000c13d000000060000006b00000d630000c13d0000073102000041000000000021043500000004021001bf0000002003000039000000000032043500000044021000390000079203000041000000000032043500000024021000390000000e03000039000006d10000013d0000001f0530018f0000072606300198000000400200043d0000000004620019000007040000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000a910000c13d000007040000013d000007710500004100000008060000290000000000560435000000200500003900000000005404350000000a040000290000000000430435000007b7054001980005001f00400193000400000005001d000000000452001900000009050000290000002005500039000300000005001d000000010550036700000aac0000613d000000000605034f0000000007020019000000006806043c0000000007870436000000000047004b00000aa80000c13d000000050000006b00000aba0000613d000000040550036000000005060000290000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005404350000000a02200029000000000002043500000000020004140000000704000029000000040040008c00000b5c0000c13d0000000802100029000900000002001d000000400020043f00000008020000290000000002020433000007270020009c000012810000213d000000090300002900000004033001bf000000000002004b00000c170000c13d000007310100004100000009040000290000000000140435000000200100003900000000001304350000004401400039000007760200004100000000002104350000002401400039000007b00000013d0000001f0530018f0000072606300198000000400200043d0000000004620019000007040000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000adc0000c13d000007040000013d000000090000006b00000b9f0000c13d0000073101000041000000050500002900000aea0000013d000000080000006b00000bc90000c13d000007310100004100000004050000290000000000150435000000200100003900000000001404350000000e01000039000000000013043500000792010000410000000000120435000000400150021000000777011001c700001c8c00010430000007240020009c0000072402008041000000c00120021000000008020000290000004002200210000000000121019f00000775011001c700000007020000291c8a1c850000040f00000060031002700000072403300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000080570002900000b0c0000613d000000000801034f0000000809000029000000008a08043c0000000009a90436000000000059004b00000b080000c13d000000000006004b00000b190000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f0002000000010355000000010020019000000bf30000613d0000001f01400039000000600110018f0000000801100029000000400010043f000000200030008c00000a740000813d000012810000013d0000000a010000290000001f01100039000007b701100197000007720010009c0000077201008041000000600110021000000008030000290000004003300210000000000131019f000007240020009c0000072402008041000000c002200210000000000121019f000007730110009a00000007020000291c8a1c850000040f00000060031002700000072403300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000080570002900000b430000613d000000000801034f0000000809000029000000008a08043c0000000009a90436000000000059004b00000b3f0000c13d000000000006004b00000b500000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f0002000000010355000000010020019000000bff0000613d0000001f01400039000000600110018f0000000802100029000900000002001d000000400020043f000000200030008c000008960000813d000012810000013d0000000a010000290000001f01100039000007b701100197000007720010009c0000077201008041000000600110021000000008030000290000004003300210000000000131019f000007240020009c0000072402008041000000c002200210000000000121019f000007730110009a00000007020000291c8a1c850000040f00000060031002700000072403300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000080570002900000b7b0000613d000000000801034f0000000809000029000000008a08043c0000000009a90436000000000059004b00000b770000c13d000000000006004b00000b880000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f0002000000010355000000010020019000000c0b0000613d0000001f01400039000000600110018f0000000802100029000900000002001d000000400020043f000000200030008c00000ac30000813d000012810000013d000007740400004100000007050000290000000000450435000000000023043500000000020004140000000603000029000000040030008c00000c220000c13d0000000701100029000000400010043f00000c510000013d000007710500004100000005060000290000000000560435000000200500003900000000005404350000000a040000290000000000430435000000070320002900000004040000290000000104400367000000070000006b00000bb10000613d000000000504034f0000000006020019000000005705043c0000000006760436000000000036004b00000bad0000c13d000000060000006b00000bbf0000613d000000070440036000000006050000290000000305500210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f00000000004304350000000a02200029000000000002043500000000020004140000000803000029000000040030008c00000c780000c13d0000000502100029000300000002001d000000400020043f00000cad0000013d000007710500004100000004060000290000000000560435000000200500003900000000005404350000000a040000290000000000430435000000060320002900000003040000290000000104400367000000060000006b00000bdb0000613d000000000504034f0000000006020019000000005705043c0000000006760436000000000036004b00000bd70000c13d000000050000006b00000be90000613d000000060440036000000005050000290000000305500210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f00000000004304350000000a02200029000000000002043500000000020004140000000703000029000000040030008c00000cb90000c13d0000000402100029000200000002001d000000400020043f00000cf00000013d0000001f0530018f0000072606300198000000400200043d0000000004620019000007040000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000bfa0000c13d000007040000013d0000001f0530018f0000072606300198000000400200043d0000000004620019000007040000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000c060000c13d000007040000013d0000001f0530018f0000072606300198000000400200043d0000000004620019000007040000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000c120000c13d000007040000013d000007740400004100000009050000290000000000450435000000000023043500000000020004140000000703000029000000040030008c00000ded0000c13d0000000901100029000000400010043f00000e1d0000013d000007240020009c0000072402008041000000c00120021000000007020000290000004002200210000000000121019f00000775011001c700000006020000291c8a1c850000040f00000060031002700000072403300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000070570002900000c3a0000613d000000000801034f0000000709000029000000008a08043c0000000009a90436000000000059004b00000c360000c13d000000000006004b00000c470000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f0002000000010355000000010020019000000e2f0000613d0000001f01400039000000600110018f0000000701100029000000400010043f000000200030008c000012810000413d00000007020000290000000002020433000000000002004b0000000003000039000000010300c039000000000032004b000012810000c13d000000000002004b00000c6d0000c13d000000090000006b00000e8e0000c13d0000073102000041000000000021043500000004021001bf00000020030000390000000000320435000000640210003900000790030000410000000000320435000000440210003900000798030000410000000000320435000000240210003900000024030000390000000000320435000000400110021000000732011001c700001c8c000104300000073102000041000000000021043500000004021001bf0000002003000039000000000032043500000044021000390000077e03000041000000000032043500000024021000390000001003000039000006d10000013d0000000301000029000007720010009c0000077201008041000000600110021000000005030000290000004003300210000000000131019f000007240020009c0000072402008041000000c002200210000000000121019f000007730110009a00000008020000291c8a1c850000040f00000060031002700000072403300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000050570002900000c950000613d000000000801034f0000000509000029000000008a08043c0000000009a90436000000000059004b00000c910000c13d000000000006004b00000ca20000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f0002000000010355000000010020019000000e3b0000613d0000001f01400039000000600110018f0000000502100029000300000002001d000000400020043f000000200030008c000012810000413d00000005020000290000000002020433000500000002001d000007270020009c000012810000213d000000030200002900000004022001bf000000050000006b00000e530000c13d0000073101000041000000030300002900000cfb0000013d0000000a010000290000001f01100039000007b701100197000007720010009c0000077201008041000000600110021000000004030000290000004003300210000000000131019f000007240020009c0000072402008041000000c002200210000000000121019f000007730110009a00000007020000291c8a1c850000040f00000060031002700000072403300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000040570002900000cd80000613d000000000801034f0000000409000029000000008a08043c0000000009a90436000000000059004b00000cd40000c13d000000000006004b00000ce50000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f0002000000010355000000010020019000000e470000613d0000001f01400039000000600110018f0000000402100029000200000002001d000000400020043f000000200030008c000012810000413d00000004020000290000000002020433000400000002001d000007270020009c000012810000213d000000020200002900000004022001bf000000040000006b00000e5f0000c13d00000731010000410000000203000029000000000013043500000020010000390000000000120435000000640130003900000790020000410000000000210435000000440130003900000791020000410000000000210435000000240130003900000024020000390000000000210435000000400130021000000732011001c700001c8c00010430000007240020009c0000072402008041000000c0012002100000000902000029000900000002001d0000004002200210000000000112019f00000775011001c700000007020000291c8a1c850000040f00000060031002700000072403300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000090570002900000d230000613d000000000801034f0000000909000029000000008a08043c0000000009a90436000000000059004b00000d1f0000c13d000000000006004b00000d300000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f0002000000010355000000010020019000000e6b0000613d0000001f01400039000000600110018f0000000901100029000000400010043f000000200030008c000012810000413d00000009010000290000000001010433000000000001004b0000000002000039000000010200c039000000000021004b000012810000c13d000000000001004b000000000100003900000001010060391c8a1a9f0000040f00000003010000290000000103100367000000400100043d0000000402100029000000040000006b00000d510000613d000000000403034f0000000005010019000000004604043c0000000005650436000000000025004b00000d4d0000c13d000000050000006b00000d5f0000613d000000040330036000000005040000290000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f00000000003204350000000a0400002900000000024100190000000903000039000010070000013d000000050210002900000003030000290000000103300367000000050000006b00000d6e0000613d000000000403034f0000000005010019000000004604043c0000000005650436000000000025004b00000d6a0000c13d000000040000006b00000d7c0000613d000000050330036000000004040000290000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f00000000003204350000000a0300002900000000023100190000000a04000039000000000042043500000040011002100000000002000414000007240020009c0000072402008041000000c002200210000000000121019f0000078d0030009c0000078d02000041000000000203401900000060022002100008078e002000a200000008011001af00000729011001c700008010020000391c8a1c850000040f0000000100200190000012810000613d000000000101043b000000000101041a000000000001004b000700060000002d00000eb10000c13d000000400100043d000000050210002900000003030000290000000103300367000000050000006b00000da20000613d000000000403034f0000000005010019000000004604043c0000000005650436000000000025004b00000d9e0000c13d000000040000006b00000db00000613d000000050330036000000004040000290000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f00000000003204350000000a0210002900000009030000390000000000320435000007240010009c000007240100804100000040011002100000000002000414000007240020009c0000072402008041000000c002200210000000000112019f00000008011001af00000729011001c700008010020000391c8a1c850000040f0000000100200190000012810000613d000000000101043b000000000101041a000000000001004b000010330000c13d00000007020000290008000600200073000010910000413d000000400300043d000600000003001d000000200130003900000060020000390000000000210435000000800330003900000009010000290000000a020000291c8a1a800000040f00000006040000290000006002400039000000080300002900000000003204350000004002400039000000070300002900000000003204350000000002410049000000200120008a000000000014043500000000010400191c8a19e10000040f000000400200043d000a00000002001d0000002001000039000000000212043600000006010000291c8a1a4a0000040f0000000a020000290000000001210049000007240010009c00000724010080410000006001100210000007240020009c00000724020080410000004002200210000000000121019f00001c8b0001042e000007240020009c0000072402008041000000c0012002100000000902000029000900000002001d0000004002200210000000000112019f00000775011001c700000007020000291c8a1c850000040f00000060031002700000072403300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000090570002900000e060000613d000000000801034f0000000909000029000000008a08043c0000000009a90436000000000059004b00000e020000c13d000000000006004b00000e130000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f0002000000010355000000010020019000000e770000613d0000001f01400039000000600110018f0000000901100029000000400010043f000000200030008c000012810000413d00000009020000290000000002020433000000000002004b0000000003000039000000010300c039000000000032004b000012810000c13d000000000002004b00000e830000c13d0000000602000029000003e90020008c00000feb0000413d0000004402100039000007b403000041000000000032043500000024021000390000001d0300003900000e880000013d0000001f0530018f0000072606300198000000400200043d0000000004620019000007040000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000e360000c13d000007040000013d0000001f0530018f0000072606300198000000400200043d0000000004620019000007040000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000e420000c13d000007040000013d0000001f0530018f0000072606300198000000400200043d0000000004620019000007040000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000e4e0000c13d000007040000013d0000077403000041000000030400002900000000003404350000000503000029000000000032043500000000020004140000000803000029000000040030008c00000ef10000c13d0000000301100029000000400010043f00000f210000013d0000077403000041000000020400002900000000003404350000000403000029000000000032043500000000020004140000000703000029000000040030008c00000f6a0000c13d0000000201100029000000400010043f00000f9a0000013d0000001f0530018f0000072606300198000000400200043d0000000004620019000007040000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000e720000c13d000007040000013d0000001f0530018f0000072606300198000000400200043d0000000004620019000007040000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000e7e0000c13d000007040000013d00000044021000390000077e0300004100000000003204350000002402100039000000100300003900000000003204350000073102000041000000000021043500000004021000390000002003000039000006d10000013d000000080210002900000004030000290000000103300367000000080000006b00000e990000613d000000000403034f0000000005010019000000004604043c0000000005650436000000000025004b00000e950000c13d000000050000006b00000ea70000613d000000080330036000000005040000290000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f00000000003204350000000a0400002900000000024100190000000803000039000000000032043500000020024000391c8a1c6b0000040f000000000201041a00000728022001970000000903000029000003270000013d000000400100043d000000050210002900000009030000290000000103300367000000050000006b00000ebd0000613d000000000403034f0000000005010019000000004604043c0000000005650436000000000025004b00000eb90000c13d000000040000006b00000ecb0000613d000000050330036000000004040000290000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f00000000003204350000000a021000290000000a030000390000000000320435000007240010009c000007240100804100000040011002100000000002000414000007240020009c0000072402008041000000c002200210000000000112019f00000008011001af00000729011001c700008010020000391c8a1c850000040f0000000100200190000012810000613d000000000101043b000000000201041a00000006012000b9000000000002004b00000ee40000613d00000000022100d9000000060020006c000010910000c13d000003e80110011a000700060010007300000d960000213d000000400100043d0000006402100039000007b00300004100000000003204350000004402100039000007b103000041000000000032043500000024021000390000002a030000390000033e0000013d000007240020009c0000072402008041000000c0012002100000000302000029000300000002001d0000004002200210000000000112019f00000775011001c700000008020000291c8a1c850000040f00000060031002700000072403300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000030570002900000f0a0000613d000000000801034f0000000309000029000000008a08043c0000000009a90436000000000059004b00000f060000c13d000000000006004b00000f170000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f000200000001035500000001002001900000101b0000613d0000001f01400039000000600110018f0000000301100029000000400010043f000000200030008c000012810000413d00000003020000290000000002020433000000000002004b0000000003000039000000010300c039000000000032004b000012810000c13d000000000002004b00000040021002100000100e0000c13d000000070310002900000004040000290000000104400367000000070000006b00000f360000613d000000000504034f0000000006010019000000005705043c0000000006760436000000000036004b00000f320000c13d000000060000006b00000f440000613d000000070440036000000006050000290000000305500210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f00000000004304350000000a030000290000000001310019000000080400003900000000004104350000000001000414000007240010009c0000072401008041000000c001100210000000000112019f0000078d0030009c0000078d02000041000000000203401900000060022002100003078e002000a200000003011001af00000729011001c700008010020000391c8a1c850000040f0000000100200190000012810000613d000000400200043d000800000002001d0000000402200039000000000101043b000000000101041a00000727001001980000115b0000c13d000007310100004100000008030000290000000000130435000000200100003900000000001204350000004401300039000007a902000041000000000021043500000024013000390000001602000039000011550000013d000007240020009c0000072402008041000000c0012002100000000202000029000200000002001d0000004002200210000000000112019f00000775011001c700000007020000291c8a1c850000040f00000060031002700000072403300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000020570002900000f830000613d000000000801034f0000000209000029000000008a08043c0000000009a90436000000000059004b00000f7f0000c13d000000000006004b00000f900000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00020000000103550000000100200190000010270000613d0000001f01400039000000600110018f0000000201100029000000400010043f000000200030008c000012810000413d00000002020000290000000003020433000000000003004b0000000002000039000000010200c039000000000023004b000012810000c13d0000004002100210000000000003004b0000100e0000c13d000000060310002900000003040000290000000104400367000000060000006b00000faf0000613d000000000504034f0000000006010019000000005705043c0000000006760436000000000036004b00000fab0000c13d000000050000006b00000fbd0000613d000000060440036000000005050000290000000305500210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f00000000004304350000000a030000290000000001310019000000080400003900000000004104350000000001000414000007240010009c0000072401008041000000c001100210000000000112019f0000078d0030009c0000078d02000041000000000203401900000060022002100002078e002000a200000002011001af00000729011001c700008010020000391c8a1c850000040f0000000100200190000012810000613d000000000101043b000000000101041a0000072700100198000011eb0000c13d0000000701000039000000000201041a00000000010004100000072701100197000000400400043d0000002403400039000000000013043500000784010000410000000000140435000100000004001d00000004014000390000000703000029000000000031043500000000010004140000072702200197000000040020008c000011800000c13d0000000003000031000000200030008c00000020040000390000000004034019000011aa0000013d000000040210002900000003030000290000000103300367000000040000006b00000ff60000613d000000000403034f0000000005010019000000004604043c0000000005650436000000000025004b00000ff20000c13d000000050000006b000010040000613d000000040330036000000005040000290000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f00000000003204350000000a0400002900000000024100190000000a03000039000000000032043500000020024000391c8a1c6b0000040f0000000602000029000000000021041b000000000100001900001c8b0001042e00000044031000390000077e0400004100000000004304350000002403100039000000100400003900000000004304350000073103000041000000000031043500000004011000390000002003000039000000000031043500000777012001c700001c8c000104300000001f0530018f0000072606300198000000400200043d0000000004620019000007040000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000010220000c13d000007040000013d0000001f0530018f0000072606300198000000400200043d0000000004620019000007040000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000102e0000c13d000007040000013d000000400100043d000000050210002900000003030000290000000103300367000000050000006b0000103f0000613d000000000403034f0000000005010019000000004604043c0000000005650436000000000025004b0000103b0000c13d000000040000006b0000104d0000613d000000050330036000000004040000290000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f00000000003204350000000a0210002900000009030000390000000000320435000007240010009c000007240100804100000040011002100000000002000414000007240020009c0000072402008041000000c002200210000000000112019f00000008011001af00000729011001c700008010020000391c8a1c850000040f0000000100200190000012810000613d000000000101043b000000000101041a000000070010006b0000163d0000a13d000000400100043d000000050210002900000003030000290000000103300367000000050000006b0000106e0000613d000000000403034f0000000005010019000000004604043c0000000005650436000000000025004b0000106a0000c13d000000040000006b0000107c0000613d000000050330036000000004040000290000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f00000000003204350000000a0210002900000009030000390000000000320435000007240010009c000007240100804100000040011002100000000002000414000007240020009c0000072402008041000000c002200210000000000112019f00000008011001af00000729011001c700008010020000391c8a1c850000040f0000000100200190000012810000613d000000000101043b000000000101041a000700070010007300000dc50000813d000007ad01000041000000000010043f0000001101000039000000040010043f000007750100004100001c8c00010430000000400400043d000007710100004100000000001404350000000401400039000000200300003900000000003104350000002403400039000000800100043d0000000000130435000900000004001d0000004403400039000000000001004b000010ac0000613d00000000040000190000000005340019000000a006400039000000000606043300000000006504350000002004400039000000000014004b000010a50000413d0000000003310019000000000003043500000000030004140000000004000411000000040040008c000011020000c13d0000000004000031000000200040008c0000002004008039000011330000013d0000001f01100039000007b7011001970000004401100039000007240010009c000007240100804100000060011002100000000902000029000007240020009c00000724020080410000004002200210000000000121019f000007240030009c0000072403008041000000c002300210000000000112019f00000000020004111c8a1c850000040f00000060031002700000072403300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000905700029000010d60000613d000000000801034f0000000909000029000000008a08043c0000000009a90436000000000059004b000010d20000c13d000000000006004b000010e30000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00020000000103550000000100200190000011680000613d0000001f01400039000000600110018f0000000903100029000000000013004b00000000020000390000000102004039000600000003001d0000076e0030009c0000099e0000213d00000001002001900000099e0000c13d0000000602000029000000400020043f000000200040008c000012810000413d00000009020000290000000002020433000900000002001d000007270020009c000012810000213d00000006020000290000000402200039000000090000006b000012b40000c13d000007310100004100000006030000290000114d0000013d0000001f01100039000007b7011001970000004401100039000007240010009c000007240100804100000060011002100000000902000029000007240020009c00000724020080410000004002200210000000000121019f000007240030009c0000072403008041000000c002300210000000000112019f00000000020004111c8a1c850000040f00000060031002700000072403300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000905700029000011220000613d000000000801034f0000000909000029000000008a08043c0000000009a90436000000000059004b0000111e0000c13d000000000006004b0000112f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00020000000103550000000100200190000011740000613d0000001f01400039000000600110018f0000000903100029000000000013004b00000000020000390000000102004039000700000003001d0000076e0030009c0000099e0000213d00000001002001900000099e0000c13d0000000702000029000000400020043f000000200040008c000012810000413d00000009020000290000000002020433000900000002001d000007270020009c000012810000213d00000007020000290000000402200039000000090000006b000013290000c13d00000731010000410000000703000029000000000013043500000020010000390000000000120435000000440130003900000776020000410000000000210435000000240130003900000019020000390000000000210435000007240030009c0000072403008041000000400130021000000777011001c700001c8c000104300000078301000041000000080300002900000000001304350000000001000410000000000012043500000000010004140000000502000029000000040020008c000012490000c13d0000000004000031000000200040008c0000002004008039000012740000013d0000001f0530018f0000072606300198000000400200043d0000000004620019000007040000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000116f0000c13d000007040000013d0000001f0530018f0000072606300198000000400200043d0000000004620019000007040000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000117b0000c13d000007040000013d0000000103000029000007240030009c00000724030080410000004003300210000007240010009c0000072401008041000000c001100210000000000131019f00000782011001c71c8a1c800000040f00000060031002700000072403300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000105700029000011990000613d000000000801034f0000000109000029000000008a08043c0000000009a90436000000000059004b000011950000c13d000000000006004b000011a60000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f000200000001035500000001002001900000128f0000613d0000001f01400039000000600210018f0000000101200029000000000021004b000000000200003900000001020040390000076e0010009c0000099e0000213d00000001002001900000099e0000c13d000000400010043f000000200030008c000012810000413d00000001020000290000000002020433000700000002001d000007270020009c000012810000213d000000060210002900000003030000290000000103300367000000060000006b000011c70000613d000000000403034f0000000005010019000000004604043c0000000005650436000000000025004b000011c30000c13d000000050000006b000011d50000613d000000060330036000000005040000290000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f00000000003204350000000a0210002900000008030000390000000000320435000007240010009c000007240100804100000040011002100000000002000414000007240020009c0000072402008041000000c002200210000000000112019f00000002011001af00000729011001c700008010020000391c8a1c850000040f0000000100200190000012810000613d000000000101043b000000000201041a000007280220019700000007022001af000000000021041b000000400200043d00000783010000410000000000120435000700000002001d00000004012000390000000002000410000000000021043500000000010004140000000402000029000000040020008c000011fa0000c13d0000000004000031000000200040008c0000002004008039000012250000013d0000000702000029000007240020009c00000724020080410000004002200210000007240010009c0000072401008041000000c001100210000000000121019f00000775011001c700000004020000291c8a1c850000040f00000060031002700000072403300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000705700029000012140000613d000000000801034f0000000709000029000000008a08043c0000000009a90436000000000059004b000012100000c13d000000000006004b000012210000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00020000000103550000000100200190000012830000613d0000001f01400039000000600210018f0000000701200029000000000021004b000000000200003900000001020040390000076e0010009c0000099e0000213d00000001002001900000099e0000c13d000000400010043f000000200040008c000012810000413d00000007010000290000000001010433000700000001001d00000000020004110000000401000029000000000300041000000008040000291c8a1b8d0000040f0000078301000041000000400200043d0000000000120435000800000002001d00000004012000390000000002000410000000000021043500000000010004140000000402000029000000040020008c000013760000c13d0000000004000031000000200040008c0000002004008039000013a10000013d0000000802000029000007240020009c00000724020080410000004002200210000007240010009c0000072401008041000000c001100210000000000121019f00000775011001c700000005020000291c8a1c850000040f00000060031002700000072403300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000805700029000012630000613d000000000801034f0000000809000029000000008a08043c0000000009a90436000000000059004b0000125f0000c13d000000000006004b000012700000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f000200000001035500000001002001900000129b0000613d0000001f01400039000000600210018f0000000801200029000000000021004b000000000200003900000001020040390000076e0010009c0000099e0000213d00000001002001900000099e0000c13d000000400010043f000000200040008c000012a70000813d000000000100001900001c8c000104300000001f0530018f0000072606300198000000400200043d0000000004620019000007040000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000128a0000c13d000007040000013d0000001f0530018f0000072606300198000000400200043d0000000004620019000007040000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012960000c13d000007040000013d0000001f0530018f0000072606300198000000400200043d0000000004620019000007040000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012a20000c13d000007040000013d00000008020000290000000002020433000000090020006c000014140000813d0000006402100039000007a70300004100000000003204350000004402100039000007a8030000410000000000320435000000240210003900000025030000390000033e0000013d0000077403000041000000060400002900000000003404350000000903000029000000000032043500000000020004140000000003000411000000040030008c000014510000c13d00000006011000290000076e0010009c0000099e0000213d000000400010043f00000006020000290000000002020433000000000002004b0000000003000039000000010300c039000000000032004b000012810000c13d000000000002004b000014dd0000c13d000000800200043d000000000002004b000012d50000613d00000000030000190000000004130019000000a005300039000000000505043300000000005404350000002003300039000000000023004b000012ce0000413d00000000031200190000000a040000390000000000430435000007240010009c000007240100804100000040011002100000002002200039000007240020009c00000724020080410000006002200210000000000112019f0000000002000414000007240020009c0000072402008041000000c002200210000000000112019f00000729011001c700008010020000391c8a1c850000040f0000000100200190000012810000613d000000000101043b000000000101041a000000000001004b000600080000002d0000156c0000c13d000000400200043d000000800100043d000000000001004b000012fb0000613d00000000030000190000000004230019000000a005300039000000000505043300000000005404350000002003300039000000000013004b000012f40000413d000000000321001900000009040000390000000000430435000007240020009c000007240200804100000040022002100000002001100039000007240010009c00000724010080410000006001100210000000000121019f0000000002000414000007240020009c0000072402008041000000c002200210000000000112019f00000729011001c700008010020000391c8a1c850000040f0000000100200190000012810000613d000000000101043b000000000101041a000000000001004b000016180000c13d000000060000006b000016600000c13d0000000802000029000000070020002a000010910000413d000000400200043d000007830100004100000000001204350000000a010000290000072701100197000600000002001d0000000402200039000000000012043500000000010004140000000902000029000000040020008c000016830000c13d0000000004000031000000200040008c0000002004008039000016ae0000013d0000077403000041000000070400002900000000003404350000000903000029000000000032043500000000020004140000000003000411000000040030008c000014850000c13d00000007011000290000076e0010009c0000099e0000213d000000400010043f00000007020000290000000002020433000000000002004b0000000003000039000000010300c039000000000032004b000012810000c13d000000000002004b000014dd0000c13d000000800200043d000000000002004b0000134a0000613d00000000030000190000000004130019000000a005300039000000000505043300000000005404350000002003300039000000000023004b000013430000413d00000000031200190000000b040000390000000000430435000007240010009c000007240100804100000040011002100000002002200039000007240020009c00000724020080410000006002200210000000000112019f0000000002000414000007240020009c0000072402008041000000c002200210000000000112019f00000729011001c700008010020000391c8a1c850000040f0000000100200190000012810000613d000000000101043b000000000101041a000000ff001001900000159e0000c13d0000000001000410000600000001001d000000400100043d000700000001001d000500040010003d00000783010000410000000702000029000000000012043500000006010000290000000502000029000000000012043500000000010004140000000902000029000000040020008c000015d50000c13d0000000004000031000000200040008c0000002004008039000016010000013d0000000802000029000007240020009c00000724020080410000004002200210000007240010009c0000072401008041000000c001100210000000000121019f00000775011001c700000004020000291c8a1c850000040f00000060031002700000072403300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000805700029000013900000613d000000000801034f0000000809000029000000008a08043c0000000009a90436000000000059004b0000138c0000c13d000000000006004b0000139d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00020000000103550000000100200190000014b90000613d0000001f01400039000000600210018f0000000801200029000000000021004b000000000200003900000001020040390000076e0010009c0000099e0000213d00000001002001900000099e0000c13d000000400010043f000000200040008c000012810000413d000000080200002900000000020204330008000700200074000010910000413d000000060210002900000009030000290000000103300367000000060000006b000013bd0000613d000000000403034f0000000005010019000000004604043c0000000005650436000000000025004b000013b90000c13d000000050000006b000013cb0000613d000000060330036000000005040000290000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f00000000003204350000000a0210002900000008030000390000000000320435000007240010009c000007240100804100000040011002100000000002000414000007240020009c0000072402008041000000c002200210000000000112019f00000002011001af00000729011001c700008010020000391c8a1c850000040f0000000100200190000012810000613d000000000101043b000000000101041a0000077f0200004100000000002004430000072701100197000a00000001001d00000004001004430000000001000414000007240010009c0000072401008041000000c00110021000000780011001c700008002020000391c8a1c850000040f0000000100200190000019c60000613d000000000101043b000000000001004b000012810000613d000000400300043d0000002401300039000000080200002900000000002104350000078f01000041000000000013043500000000010004110000072701100197000900000003001d0000000402300039000000000012043500000000010004140000000a02000029000000040020008c0000140e0000613d0000000902000029000007240020009c00000724020080410000004002200210000007240010009c0000072401008041000000c001100210000000000121019f00000782011001c70000000a020000291c8a1c800000040f0000006003100270000007240030019d00020000000103550000000100200190000016530000613d00000009010000290000076e0010009c0000099e0000213d0000000901000029000000400010043f000016710000013d000000070210002900000004030000290000000103300367000000070000006b0000141f0000613d000000000403034f0000000005010019000000004604043c0000000005650436000000000025004b0000141b0000c13d000000060000006b0000142d0000613d000000070330036000000006040000290000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f00000000003204350000000a0210002900000008030000390000000000320435000007240010009c000007240100804100000040011002100000000002000414000007240020009c0000072402008041000000c002200210000000000112019f00000003011001af00000729011001c700008010020000391c8a1c850000040f0000000100200190000012810000613d000000000101043b000000000201041a000000400300043d00000783010000410000000000130435000a00000003001d00000004013000390000000003000411000000000031043500000000010004140000072702200197000800000002001d000000040020008c000014e30000c13d0000000003000031000000200030008c000000200400003900000000040340190000150e0000013d0000000601000029000007240010009c00000724010080410000004001100210000007240020009c0000072402008041000000c002200210000000000112019f00000775011001c700000000020004111c8a1c850000040f00000060031002700000072403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000006057000290000146b0000613d000000000801034f0000000609000029000000008a08043c0000000009a90436000000000059004b000014670000c13d000000000006004b000014780000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00020000000103550000000100200190000014c50000613d0000001f01400039000000600110018f00000006011000290000076e0010009c0000099e0000213d000000400010043f000000200030008c000012c10000813d000012810000013d0000000701000029000007240010009c00000724010080410000004001100210000007240020009c0000072402008041000000c002200210000000000112019f00000775011001c700000000020004111c8a1c850000040f00000060031002700000072403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000007057000290000149f0000613d000000000801034f0000000709000029000000008a08043c0000000009a90436000000000059004b0000149b0000c13d000000000006004b000014ac0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00020000000103550000000100200190000014d10000613d0000001f01400039000000600110018f00000007011000290000076e0010009c0000099e0000213d000000400010043f000000200030008c000013360000813d000012810000013d0000001f0530018f0000072606300198000000400200043d0000000004620019000007040000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000014c00000c13d000007040000013d0000001f0530018f0000072606300198000000400200043d0000000004620019000007040000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000014cc0000c13d000007040000013d0000001f0530018f0000072606300198000000400200043d0000000004620019000007040000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000014d80000c13d000007040000013d00000044021000390000077e0300004100000000003204350000002402100039000000100300003900000a230000013d000007240010009c0000072401008041000000c0011002100000000a02000029000007240020009c00000724020080410000004002200210000000000112019f00000775011001c700000008020000291c8a1c800000040f00000060031002700000072403300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000a05700029000014fd0000613d000000000801034f0000000a09000029000000008a08043c0000000009a90436000000000059004b000014f90000c13d000000000006004b0000150a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00020000000103550000000100200190000015280000613d0000001f01400039000000600210018f0000000a01200029000000000021004b000000000200003900000001020040390000076e0010009c0000099e0000213d00000001002001900000099e0000c13d000000400010043f000000200030008c000012810000413d0000000a020000290000000002020433000000090020006c000015340000813d0000006402100039000007a50300004100000000003204350000004402100039000007a603000041000000000032043500000024021000390000002b030000390000033e0000013d0000001f0530018f0000072606300198000000400200043d0000000004620019000007040000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000152f0000c13d000007040000013d0000077f010000410000000000100443000000080100002900000004001004430000000001000414000007240010009c0000072401008041000000c00110021000000780011001c700008002020000391c8a1c850000040f0000000100200190000019c60000613d000000000101043b000000000001004b000012810000613d000000400300043d000000240130003900000009020000290000000000210435000007a401000041000000000013043500000000010004110000072701100197000a00000003001d0000000402300039000000000012043500000000010004140000000802000029000000040020008c000015630000613d0000000a02000029000007240020009c00000724020080410000004002200210000007240010009c0000072401008041000000c001100210000000000121019f00000782011001c700000008020000291c8a1c800000040f0000006003100270000007240030019d00020000000103550000000100200190000016760000613d0000000a010000290000076e0010009c0000099e0000213d0000000a01000029000000400010043f000000050100002900000000020004110000000903000029000016700000013d000000400200043d000000800100043d000000000001004b000015780000613d00000000030000190000000004230019000000a005300039000000000505043300000000005404350000002003300039000000000013004b000015710000413d00000000032100190000000a040000390000000000430435000007240020009c000007240200804100000040022002100000002001100039000007240010009c00000724010080410000006001100210000000000121019f0000000002000414000007240020009c0000072402008041000000c002200210000000000112019f00000729011001c700008010020000391c8a1c850000040f0000000100200190000012810000613d000000000101043b0000000803000029000000070030002a000010910000413d00000008030000290000000702300029000000000301041a00000000012300a9000000000003004b0000159a0000613d00000000033100d9000000000023004b000010910000c13d000003e80110011a000600080010007300000ee70000413d000012ef0000013d0000077f010000410000000000100443000000090100002900000004001004430000000001000414000007240010009c0000072401008041000000c00110021000000780011001c700008002020000391c8a1c850000040f0000000100200190000019c60000613d000000000101043b000000000001004b000012810000613d000000400300043d000000240130003900000008020000290000000000210435000007810100004100000000001304350000000001000410000600000001001d0000072701100197000700000003001d0000000402300039000500000002001d000000000012043500000000010004140000000902000029000000040020008c000015cf0000613d0000000702000029000007240020009c00000724020080410000004002200210000007240010009c0000072401008041000000c001100210000000000121019f00000782011001c700000009020000291c8a1c800000040f0000006003100270000007240030019d00020000000103550000000100200190000016f90000613d00000007010000290000076e0010009c0000099e0000213d0000000701000029000000400010043f000013680000013d0000000702000029000700000002001d000007240020009c00000724020080410000004002200210000007240010009c0000072401008041000000c001100210000000000121019f00000775011001c700000009020000291c8a1c850000040f00000060031002700000072403300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000705700029000015f00000613d000000000801034f0000000709000029000000008a08043c0000000009a90436000000000059004b000015ec0000c13d000000000006004b000015fd0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00020000000103550000000100200190000016470000613d0000001f01400039000000600210018f0000000701200029000000000021004b000000000200003900000001020040390000076e0010009c0000099e0000213d00000001002001900000099e0000c13d000000400010043f000000200040008c000012810000413d00000007020000290000000002020433000000080020006c000016670000813d00000044021000390000078703000041000000000032043500000024021000390000001f0300003900000a230000013d000000400200043d000000800100043d000000000001004b000016240000613d00000000030000190000000004230019000000a005300039000000000505043300000000005404350000002003300039000000000013004b0000161d0000413d000000000321001900000009040000390000000000430435000007240020009c000007240200804100000040022002100000002001100039000007240010009c00000724010080410000006001100210000000000121019f0000000002000414000007240020009c0000072402008041000000c002200210000000000112019f00000729011001c700008010020000391c8a1c850000040f0000000100200190000012810000613d000000000101043b000000000101041a000000060010006b000016d30000813d000000400100043d0000006402100039000007b20300004100000000003204350000004402100039000007b3030000410000000000320435000000240210003900000027030000390000033e0000013d0000001f0530018f0000072606300198000000400200043d0000000004620019000007040000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000164e0000c13d000007040000013d00000724033001970000001f0530018f0000072606300198000000400200043d0000000004620019000007040000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000165b0000c13d000007040000013d000000400100043d00000044021000390000079e03000041000000000032043500000024021000390000001e0300003900000a230000013d0000000302000039000000000202041a0000077900200198000700000000001d000017060000c13d0000000702000029000000080320006900000009010000290000000a020000291c8a1ab30000040f00000001010000390000000202000039000000000012041b000000000100001900001c8b0001042e00000724033001970000001f0530018f0000072606300198000000400200043d0000000004620019000007040000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000167e0000c13d000007040000013d0000000602000029000007240020009c00000724020080410000004002200210000007240010009c0000072401008041000000c001100210000000000121019f00000775011001c700000009020000291c8a1c850000040f00000060031002700000072403300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000006057000290000169d0000613d000000000801034f0000000609000029000000008a08043c0000000009a90436000000000059004b000016990000c13d000000000006004b000016aa0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00020000000103550000000100200190000017510000613d0000001f01400039000000600110018f0000000603100029000000000013004b00000000020000390000000102004039000500000003001d0000076e0030009c0000099e0000213d00000001002001900000099e0000c13d0000000502000029000000400020043f000000200040008c000012810000413d0000000803000029000800070030002d0000000502000029000000040220003900000006030000290000000003030433000000080030006c0000176f0000813d000007310100004100000005030000290000000000130435000000200100003900000000001204350000006401300039000007a10200004100000000002104350000004401300039000007a202000041000000000021043500000024013000390000002c02000039000000bc0000013d000000400200043d000000800100043d000000000001004b000016df0000613d00000000030000190000000004230019000000a005300039000000000505043300000000005404350000002003300039000000000013004b000016d80000413d000000000321001900000009040000390000000000430435000007240020009c000007240200804100000040022002100000002001100039000007240010009c00000724010080410000006001100210000000000121019f0000000002000414000007240020009c0000072402008041000000c002200210000000000112019f00000729011001c700008010020000391c8a1c850000040f0000000100200190000012810000613d000000000101043b000000000101041a0006000600100073000010910000413d000013140000013d00000724033001970000001f0530018f0000072606300198000000400200043d0000000004620019000007040000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000017010000c13d000007040000013d0000000402000039000000000302041a00000008023000b9000000000003004b0000170e0000613d00000000033200d9000000080030006c000010910000c13d000703e8002001220000000502000039000000000302041a000000000003004b0000175d0000c13d000400070000002d000500000000001d000000800200043d000000000002004b000017200000613d00000000030000190000000004130019000000a005300039000000000505043300000000005404350000002003300039000000000023004b000017190000413d000000000312001900000008040000390000000000430435000007240010009c000007240100804100000040011002100000002002200039000007240020009c00000724020080410000006002200210000000000112019f0000000002000414000007240020009c0000072402008041000000c002200210000000000112019f00000729011001c700008010020000391c8a1c850000040f0000000100200190000012810000613d000000000101043b000000000101041a0000072700100198000018360000c13d0000000701000039000000000201041a0000000301000039000000000101041a00000006030000290000072703300197000000400500043d00000024045000390000000000340435000007840300004100000000003504350000072701100197000600000005001d0000000403500039000000000013043500000000010004140000072702200197000000040020008c000017d30000c13d0000000003000031000000200030008c00000020040000390000000004034019000017fd0000013d0000001f0530018f0000072606300198000000400200043d0000000004620019000007040000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000017580000c13d000007040000013d00000007023000b900000000033200d9000000070030006c000010910000c13d000003e80420011a000500000004001d0004000700400073000010910000413d000003e80020008c000017150000413d0000000601000039000000000101041a0000072702100197000000090100002900000005030000291c8a1ab30000040f000000400100043d000017150000013d0000078303000041000000050400002900000000003404350000000003000410000000000032043500000000020004140000000903000029000000040030008c0000177d0000c13d00000005011000290000076e0010009c0000099e0000213d000000400010043f000017b00000013d0000000501000029000007240010009c00000724010080410000004001100210000007240020009c0000072402008041000000c002200210000000000112019f00000775011001c700000009020000291c8a1c850000040f00000060031002700000072403300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000505700029000017970000613d000000000801034f0000000509000029000000008a08043c0000000009a90436000000000059004b000017930000c13d000000000006004b000017a40000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00020000000103550000000100200190000017c70000613d0000001f01400039000000600110018f00000005011000290000076e0010009c0000099e0000213d000000400010043f000000200030008c000012810000413d00000005010000290000000001010433000600000001001d00000009010000290000000a02000029000000000300041000000008040000291c8a1b8d0000040f0000078301000041000000400200043d0000000000120435000a00000002001d00000004012000390000000002000410000000000021043500000000010004140000000902000029000000040020008c000018730000c13d0000000004000031000000200040008c00000020040080390000189e0000013d0000001f0530018f0000072606300198000000400200043d0000000004620019000007040000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000017ce0000c13d000007040000013d0000000603000029000007240030009c00000724030080410000004003300210000007240010009c0000072401008041000000c001100210000000000131019f00000782011001c71c8a1c800000040f00000060031002700000072403300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000605700029000017ec0000613d000000000801034f0000000609000029000000008a08043c0000000009a90436000000000059004b000017e80000c13d000000000006004b000017f90000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00020000000103550000000100200190000018b70000613d0000001f01400039000000600210018f0000000601200029000000000021004b000000000200003900000001020040390000076e0010009c0000099e0000213d00000001002001900000099e0000c13d000000400010043f000000200030008c000012810000413d00000006020000290000000002020433000600000002001d000007270020009c000012810000213d000000800200043d000000000002004b0000181a0000613d00000000030000190000000004130019000000a005300039000000000505043300000000005404350000002003300039000000000023004b000018130000413d000000000312001900000008040000390000000000430435000007240010009c000007240100804100000040011002100000002002200039000007240020009c00000724020080410000006002200210000000000112019f0000000002000414000007240020009c0000072402008041000000c002200210000000000112019f00000729011001c700008010020000391c8a1c850000040f0000000100200190000012810000613d00000006020000290000072702200197000000000101043b000000000301041a0000072803300197000000000223019f000000000021041b0000000502000029000000070020006b0000183d0000c13d0000000702000029000000080020006c000010910000213d0000166c0000013d000000400200043d000000800100043d000000000001004b000018490000613d00000000030000190000000004230019000000a005300039000000000505043300000000005404350000002003300039000000000013004b000018420000413d000000000321001900000008040000390000000000430435000007240020009c000007240200804100000040022002100000002001100039000007240010009c00000724010080410000006001100210000000000121019f0000000002000414000007240020009c0000072402008041000000c002200210000000000112019f00000729011001c700008010020000391c8a1c850000040f0000000100200190000012810000613d000000000101043b000000000101041a000000400400043d000000240240003900000004030000290000000000320435000007850200004100000000002404350000072701100197000600000004001d0000000402400039000000000012043500000000010004140000000902000029000000040020008c000018cf0000c13d0000000003000031000000200030008c00000020040000390000000004034019000018fa0000013d000007240010009c0000072401008041000000c0011002100000000a02000029000007240020009c00000724020080410000004002200210000000000112019f00000775011001c700000009020000291c8a1c850000040f00000060031002700000072403300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000a057000290000188d0000613d000000000801034f0000000a09000029000000008a08043c0000000009a90436000000000059004b000018890000c13d000000000006004b0000189a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00020000000103550000000100200190000018c30000613d0000001f01400039000000600210018f0000000a01200029000000000021004b000000000200003900000001020040390000076e0010009c0000099e0000213d00000001002001900000099e0000c13d000000400010043f000000200040008c000012810000413d0000000a020000290000000002020433000000060220006c000010910000413d000000070020006c000019710000813d0000004402100039000007a00300004100000000003204350000002402100039000000170300003900000a230000013d0000001f0530018f0000072606300198000000400200043d0000000004620019000007040000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000018be0000c13d000007040000013d0000001f0530018f0000072606300198000000400200043d0000000004620019000007040000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000018ca0000c13d000007040000013d0000000602000029000007240020009c00000724020080410000004002200210000007240010009c0000072401008041000000c001100210000000000121019f00000782011001c700000009020000291c8a1c800000040f00000060031002700000072403300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000605700029000018e90000613d000000000801034f0000000609000029000000008a08043c0000000009a90436000000000059004b000018e50000c13d000000000006004b000018f60000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00020000000103550000000100200190000019650000613d0000001f01400039000000600210018f0000000601200029000000000021004b000000000200003900000001020040390000076e0010009c0000099e0000213d00000001002001900000099e0000c13d000000400010043f000000200030008c000012810000413d00000006020000290000000002020433000000000002004b0000000003000039000000010300c039000000000032004b000012810000c13d000000800200043d000000000002004b000019190000613d00000000030000190000000004130019000000a005300039000000000505043300000000005404350000002003300039000000000023004b000019120000413d000000000312001900000008040000390000000000430435000007240010009c000007240100804100000040011002100000002002200039000007240020009c00000724020080410000006002200210000000000112019f0000000002000414000007240020009c0000072402008041000000c002200210000000000112019f00000729011001c700008010020000391c8a1c850000040f0000000100200190000012810000613d000000000101043b000000000101041a0000077f0200004100000000002004430000072701100197000500000001001d00000004001004430000000001000414000007240010009c0000072401008041000000c00110021000000780011001c700008002020000391c8a1c850000040f0000000100200190000019c60000613d000000000101043b000000000001004b000012810000613d000000400300043d00000024013000390000000402000029000000000021043500000786010000410000000000130435000600000003001d00000004013000390000000902000029000000000021043500000000010004140000000502000029000000040020008c0000195f0000613d0000000602000029000007240020009c00000724020080410000004002200210000007240010009c0000072401008041000000c001100210000000000121019f00000782011001c700000005020000291c8a1c800000040f0000006003100270000007240030019d00020000000103550000000100200190000019c70000613d00000006010000290000076e0010009c0000099e0000213d0000000601000029000000400010043f000018390000013d0000001f0530018f0000072606300198000000400200043d0000000004620019000007040000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000196c0000c13d000007040000013d000000800200043d000000000002004b0000197c0000613d00000000030000190000000004130019000000a005300039000000000505043300000000005404350000002003300039000000000023004b000019750000413d00000000031200190000000b040000390000000000430435000007240010009c000007240100804100000040011002100000002002200039000007240020009c00000724020080410000006002200210000000000112019f0000000002000414000007240020009c0000072402008041000000c002200210000000000112019f00000729011001c700008010020000391c8a1c850000040f0000000100200190000012810000613d000000000101043b000000000101041a000000ff00100190000016710000613d0000077f010000410000000000100443000000090100002900000004001004430000000001000414000007240010009c0000072401008041000000c00110021000000780011001c700008002020000391c8a1c850000040f0000000100200190000019c60000613d000000000101043b000000000001004b000012810000613d000000400200043d0000079f010000410000000000120435000a00000002001d00000004012000390000000802000029000000000021043500000000010004140000000902000029000000040020008c000019c00000613d000007240010009c0000072401008041000000c0011002100000000a02000029000007240020009c00000724020080410000004002200210000000000112019f00000775011001c700000009020000291c8a1c800000040f0000006003100270000007240030019d00020000000103550000000100200190000019d40000613d0000000a010000290000076e0010009c0000099e0000213d0000000a01000029000000400010043f000016710000013d000000000001042f00000724033001970000001f0530018f0000072606300198000000400200043d0000000004620019000007040000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000019cf0000c13d000007040000013d00000724033001970000001f0530018f0000072606300198000000400200043d0000000004620019000007040000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000019dc0000c13d000007040000013d0000001f02200039000007b7022001970000000001120019000000000021004b000000000200003900000001020040390000076e0010009c000019ed0000213d0000000100200190000019ed0000c13d000000400010043f000000000001042d000007ad01000041000000000010043f0000004101000039000000040010043f000007750100004100001c8c0001043000000000030100190000001f01100039000000000021004b0000000004000019000007b904004041000007b905200197000007b901100197000000000651013f000000000051004b0000000001000019000007b901002041000007b90060009c000000000104c019000000000001004b00001a3b0000613d0000000106000367000000000136034f000000000401043b000007ac0040009c00001a350000813d0000001f01400039000007b7011001970000003f01100039000007b705100197000000400100043d0000000005510019000000000015004b000000000800003900000001080040390000076e0050009c00001a350000213d000000010080019000001a350000c13d000000400050043f000000000541043600000020033000390000000008430019000000000028004b00001a3b0000213d000000000336034f000007b7064001980000001f0740018f000000000265001900001a250000613d000000000803034f0000000009050019000000008a08043c0000000009a90436000000000029004b00001a210000c13d000000000007004b00001a320000613d000000000363034f0000000306700210000000000702043300000000076701cf000000000767022f000000000303043b0000010006600089000000000363022f00000000036301cf000000000373019f000000000032043500000000024500190000000000020435000000000001042d000007ad01000041000000000010043f0000004101000039000000040010043f000007750100004100001c8c00010430000000000100001900001c8c00010430000000000003004b00001a470000613d000000000400001900000000052400190000000006140019000000000606043300000000006504350000002004400039000000000034004b00001a400000413d00000000012300190000000000010435000000000001042d00000000430104340000000001320436000000000003004b00001a560000613d000000000200001900000000051200190000000006240019000000000606043300000000006504350000002002200039000000000032004b00001a4f0000413d000000000213001900000000000204350000001f02300039000007b7022001970000000001210019000000000001042d000000000100041a00000727011001970000000002000411000000000021004b00001a620000c13d000000000001042d000000400100043d0000004402100039000007b50300004100000000003204350000073102000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000000000320435000007240010009c0000072401008041000000400110021000000777011001c700001c8c000104300000000002120049000007ba0020009c00001a7e0000213d0000001f0020008c00001a7e0000a13d0000000001010433000000000001004b0000000002000039000000010200c039000000000021004b00001a7e0000c13d000000000001042d000000000100001900001c8c000104300000000003230436000007b7062001980000001f0720018f0000000005630019000000010110036700001a8c0000613d000000000801034f0000000009030019000000008a08043c0000000009a90436000000000059004b00001a880000c13d000000000007004b00001a990000613d000000000161034f0000000306700210000000000705043300000000076701cf000000000767022f000000000101043b0000010006600089000000000161022f00000000016101cf000000000171019f0000000000150435000000000123001900000000000104350000001f01200039000007b7011001970000000001130019000000000001042d000000000001004b00001aa20000613d000000000001042d000000400100043d00000044021000390000077e03000041000000000032043500000024021000390000001003000039000000000032043500000731020000410000000000210435000000040210003900000020030000390000000000320435000007240010009c0000072401008041000000400110021000000777011001c700001c8c000104300002000000000002000000400400043d000000440540003900000000003504350000002003400039000007a305000041000000000053043500000727022001970000002405400039000000000025043500000044020000390000000000240435000007bb0040009c00001b410000813d0000008009400039000000400090043f000007bc0090009c00001b410000213d000007270a100197000000c001400039000000400010043f00000020010000390000000000190435000000a001400039000007bd020000410000000000210435000000000204043300000000010004140000000400a0008c00001aff0000c13d00000001020000390000000001000031000000000001004b00001b170000613d0000076e0010009c00001b410000213d0000001f04100039000007b7044001970000003f04400039000007b704400197000000400c00043d00000000044c00190000000000c4004b000000000500003900000001050040390000076e0040009c00001b410000213d000000010050019000001b410000c13d000000400040043f000000000b1c0436000007b7031001980000001f0410018f00000000013b0019000000020500036700001af10000613d000000000605034f00000000070b0019000000006806043c0000000007870436000000000017004b00001aed0000c13d000000000004004b00001b190000613d000000000335034f0000000304400210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f000000000031043500001b190000013d000007240030009c00000724030080410000004003300210000007240020009c00000724020080410000006002200210000000000232019f000007240010009c0000072401008041000000c001100210000000000112019f00000000020a0019000200000009001d00010000000a001d1c8a1c800000040f000000010a0000290000000209000029000000010220018f00020000000103550000006001100270000007240010019d0000072401100197000000000001004b00001ad50000c13d000000600c000039000000800b00003900000000030c0433000000000002004b00001b490000613d000000000003004b00001b340000c13d00020000000c001d00010000000b001d0000077f0100004100000000001004430000000400a004430000000001000414000007240010009c0000072401008041000000c00110021000000780011001c700008002020000391c8a1c850000040f000000010020019000001b7b0000613d000000000101043b000000000001004b000000020100002900001b7c0000613d0000000003010433000000000003004b000000010b00002900001b400000613d000007ba0030009c00001b470000213d0000001f0030008c00001b470000a13d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b00001b470000c13d000000000001004b00001b5f0000613d000000000001042d000007ad01000041000000000010043f0000004101000039000000040010043f000007750100004100001c8c00010430000000000100001900001c8c00010430000000000003004b00001b730000c13d0000000001090019000000400400043d000200000004001d0000073102000041000000000024043500000004034000390000002002000039000000000023043500000024024000391c8a1a4a0000040f00000002020000290000000001210049000007240010009c0000072401008041000007240020009c000007240200804100000060011002100000004002200210000000000121019f00001c8c00010430000000400100043d0000006402100039000007be0300004100000000003204350000004402100039000007bf03000041000000000032043500000024021000390000002a03000039000000000032043500000731020000410000000000210435000000040210003900000020030000390000000000320435000007240010009c0000072401008041000000400110021000000732011001c700001c8c000104300000072400b0009c000007240b0080410000004002b00210000007240030009c00000724030080410000006001300210000000000121019f00001c8c00010430000000000001042f000000400100043d0000004402100039000007c003000041000000000032043500000024021000390000001d03000039000000000032043500000731020000410000000000210435000000040210003900000020030000390000000000320435000007240010009c0000072401008041000000400110021000000777011001c700001c8c000104300002000000000002000000400500043d000000640650003900000000004604350000072703300197000000440450003900000000003404350000002003500039000007c104000041000000000043043500000727022001970000002404500039000000000024043500000064020000390000000000250435000007c20050009c00001c1e0000813d000000a009500039000000400090043f000007c30050009c00001c1e0000213d000007270a100197000000e001500039000000400010043f00000020010000390000000000190435000000c001500039000007bd020000410000000000210435000000000205043300000000010004140000000400a0008c00001bdc0000c13d00000001020000390000000001000031000000000001004b00001bf40000613d0000076e0010009c00001c1e0000213d0000001f04100039000007b7044001970000003f04400039000007b704400197000000400c00043d00000000044c00190000000000c4004b000000000500003900000001050040390000076e0040009c00001c1e0000213d000000010050019000001c1e0000c13d000000400040043f000000000b1c0436000007b7031001980000001f0410018f00000000013b0019000000020500036700001bce0000613d000000000605034f00000000070b0019000000006806043c0000000007870436000000000017004b00001bca0000c13d000000000004004b00001bf60000613d000000000335034f0000000304400210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f000000000031043500001bf60000013d000007240030009c00000724030080410000004003300210000007240020009c00000724020080410000006002200210000000000232019f000007240010009c0000072401008041000000c001100210000000000112019f00000000020a0019000200000009001d00010000000a001d1c8a1c800000040f000000010a0000290000000209000029000000010220018f00020000000103550000006001100270000007240010019d0000072401100197000000000001004b00001bb20000c13d000000600c000039000000800b00003900000000030c0433000000000002004b00001c260000613d000000000003004b00001c110000c13d00020000000c001d00010000000b001d0000077f0100004100000000001004430000000400a004430000000001000414000007240010009c0000072401008041000000c00110021000000780011001c700008002020000391c8a1c850000040f000000010020019000001c580000613d000000000101043b000000000001004b000000020100002900001c590000613d0000000003010433000000000003004b000000010b00002900001c1d0000613d000007ba0030009c00001c240000213d0000001f0030008c00001c240000a13d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b00001c240000c13d000000000001004b00001c3c0000613d000000000001042d000007ad01000041000000000010043f0000004101000039000000040010043f000007750100004100001c8c00010430000000000100001900001c8c00010430000000000003004b00001c500000c13d0000000001090019000000400400043d000200000004001d0000073102000041000000000024043500000004034000390000002002000039000000000023043500000024024000391c8a1a4a0000040f00000002020000290000000001210049000007240010009c0000072401008041000007240020009c000007240200804100000060011002100000004002200210000000000121019f00001c8c00010430000000400100043d0000006402100039000007be0300004100000000003204350000004402100039000007bf03000041000000000032043500000024021000390000002a03000039000000000032043500000731020000410000000000210435000000040210003900000020030000390000000000320435000007240010009c0000072401008041000000400110021000000732011001c700001c8c000104300000072400b0009c000007240b0080410000004002b00210000007240030009c00000724030080410000006001300210000000000121019f00001c8c00010430000000000001042f000000400100043d0000004402100039000007c003000041000000000032043500000024021000390000001d03000039000000000032043500000731020000410000000000210435000000040210003900000020030000390000000000320435000007240010009c0000072401008041000000400110021000000777011001c700001c8c00010430000000000001042f000007240010009c00000724010080410000004001100210000007240020009c00000724020080410000006002200210000000000112019f0000000002000414000007240020009c0000072402008041000000c002200210000000000112019f00000729011001c700008010020000391c8a1c850000040f000000010020019000001c7e0000613d000000000101043b000000000001042d000000000100001900001c8c0001043000001c83002104210000000102000039000000000001042d0000000002000019000000000001042d00001c88002104230000000102000039000000000001042d0000000002000019000000000001042d00001c8a0000043200001c8b0001042e00001c8c0001043000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0ffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000001d9e69a851b2c439a964d8dc3d611781440fd65800000002000000000000000000000000000000400000010000000000000000007a65726f2061646472657373000000000000000000000000000000000000000046656520436f6c6c6563746f7220466163746f72792063616e6e6f742062652008c379a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008400000000000000000000000065737300000000000000000000000000000000000000000000000000000000005261696e626f7720526f61642063616e6e6f74206265207a65726f2061646472000000000000000000000000000000000000000000000000000000007bd6f3ff00000000000000000000000000000000000000000000000000000000bc2ae74900000000000000000000000000000000000000000000000000000000cd38b81600000000000000000000000000000000000000000000000000000000e30c397700000000000000000000000000000000000000000000000000000000e30c397800000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000f315731600000000000000000000000000000000000000000000000000000000cd38b81700000000000000000000000000000000000000000000000000000000df1c351b00000000000000000000000000000000000000000000000000000000c06eb8f700000000000000000000000000000000000000000000000000000000c06eb8f800000000000000000000000000000000000000000000000000000000c18272fc00000000000000000000000000000000000000000000000000000000cd10fce200000000000000000000000000000000000000000000000000000000bc2ae74a00000000000000000000000000000000000000000000000000000000bfb5944a000000000000000000000000000000000000000000000000000000008da5cb5a000000000000000000000000000000000000000000000000000000008f9419f2000000000000000000000000000000000000000000000000000000008f9419f3000000000000000000000000000000000000000000000000000000009ce5768b00000000000000000000000000000000000000000000000000000000ae6c076f000000000000000000000000000000000000000000000000000000008da5cb5b000000000000000000000000000000000000000000000000000000008e27d7190000000000000000000000000000000000000000000000000000000081bcc5af0000000000000000000000000000000000000000000000000000000081bcc5b0000000000000000000000000000000000000000000000000000000008456cb590000000000000000000000000000000000000000000000000000000087f11339000000000000000000000000000000000000000000000000000000007bd6f400000000000000000000000000000000000000000000000000000000008135f3bd000000000000000000000000000000000000000000000000000000003aeac4e000000000000000000000000000000000000000000000000000000000626fa41c000000000000000000000000000000000000000000000000000000006a936816000000000000000000000000000000000000000000000000000000006a93681700000000000000000000000000000000000000000000000000000000715018a60000000000000000000000000000000000000000000000000000000079ba509700000000000000000000000000000000000000000000000000000000626fa41d0000000000000000000000000000000000000000000000000000000067647e43000000000000000000000000000000000000000000000000000000003f3a424f000000000000000000000000000000000000000000000000000000003f3a4250000000000000000000000000000000000000000000000000000000003f4ba83a000000000000000000000000000000000000000000000000000000005c975abb000000000000000000000000000000000000000000000000000000003aeac4e1000000000000000000000000000000000000000000000000000000003ed0da7f000000000000000000000000000000000000000000000000000000001eb27018000000000000000000000000000000000000000000000000000000002d430311000000000000000000000000000000000000000000000000000000002d430312000000000000000000000000000000000000000000000000000000002f622e6b0000000000000000000000000000000000000000000000000000000030b39a62000000000000000000000000000000000000000000000000000000001eb27019000000000000000000000000000000000000000000000000000000001fc230820000000000000000000000000000000000000000000000000000000014d2769e0000000000000000000000000000000000000000000000000000000014d2769f000000000000000000000000000000000000000000000000000000001614f7e0000000000000000000000000000000000000000000000000000000001bd8ad990000000000000000000000000000000000000000000000000000000005a1d44d000000000000000000000000000000000000000000000000000000000973da3c000000000000000000000000000000000000002000000080000000000000000038d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e22700000000000000000000000000000000000000000000000000ffffffffffffffffef897f0700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002400000080000000000000000004c2320b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffbbffffffffffffffffffffffffffffffffffffffbc00000000000000000000000039b59958000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000546f6b656e206d7573742062652077686974656c6973746564000000000000000000000000000000000000000000000000000064000000000000000000000000496e76616c696420666565206d616e61676572000000000000000000000000000000000000000000000000ff0000000000000000000000000000000000000000ffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff436861726765207478206665652069732064697361626c6564000000000000000000000000000000000000000000000000000064000000800000000000000000000000000000000000000000000000000000000000000000ffffffffffffff7f546f6b656e20697320626c6f636b6564000000000000000000000000000000001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b83020000020000000000000000000000000000002400000000000000000000000040c10f1900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004400000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000beb905d700000000000000000000000000000000000000000000000000000000095ea7b300000000000000000000000000000000000000000000000000000000b66503cf00000000000000000000000000000000000000000000000000000000496e73756666696369656e742066756e647320666f72207472616e73666572000000000000000000000000000000000000000084000000800000000000000000000000000000000000000000000000000000002000000000000000000000000002000000000000000000000000000000000000000000008000000000000000004d696e7420616e64206275726e2069732064697361626c656400000000000000ffffffffffffffffffffffffffffffffffffffbbffffff80000000000000000000000000000000000000000000000000000000000000000000000000ffffffdfffffffffffffffffffffffffffffffffffffffe000000000000000000000000047e7ef24000000000000000000000000000000000000000000000000000000007265737300000000000000000000000000000000000000000000000000000000546f6b656e20616464726573732063616e6e6f74206265207a65726f20616464496e76616c696420616d6f756e74000000000000000000000000000000000000020000000000000000000000000000000000002000000080000000000000000062e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2584f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206e6577206f776e65720000000000000000000000000000000000000000000000547820666565207261746520746f6f206869676800000000000000000000000046656520636f6c6c6563746f722063616e6e6f74206265207a65726f206164645db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa5061757361626c653a206e6f74207061757365640000000000000000000000004368617267652074782066656520697320656e61626c656400000000000000004d7573742062652063616c6c6564206279205261696e626f7720526f616400005061757361626c653a2070617573656400000000000000000000000000000000496e76616c696420666565206f6e207472616e7366657220616d6f756e74000042966c6800000000000000000000000000000000000000000000000000000000496e76616c6964207472616e7366657220616d6f756e74000000000000000000666f72207472616e7366657200000000000000000000000000000000000000005461726765742068617320696e73756666696369656e742062616c616e636520a9059cbb00000000000000000000000000000000000000000000000000000000f3fef3a300000000000000000000000000000000000000000000000000000000207769746864726177616c000000000000000000000000000000000000000000496e73756666696369656e74206163636f756e742062616c616e636520666f72726177616c000000000000000000000000000000000000000000000000000000496e73756666696369656e74206c697175696469747920666f722077697468644e6f2066656520636f6c6c6563746f7220666f756e64000000000000000000005265656e7472616e637947756172643a207265656e7472616e742063616c6c009cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f3900000000000000000000000000000000000000000000000100000000000000004e487b7100000000000000000000000000000000000000000000000000000000556e61626c6520746f2077697468647261770000000000000000000000000000427269626520666565207261746520746f6f20686967680000000000000000007263656e74205261746500000000000000000000000000000000000000000000496e73756666696369656e7420616d6f756e7420746f2073656e64203a2050656174205261746500000000000000000000000000000000000000000000000000496e73756666696369656e7420616d6f756e7420746f2073656e64203a20466c466565206f6e207472616e73666572207261746520746f6f20686967680000004f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724d696e7420616e64206275726e20697320656e61626c65640000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0080000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffff80000000000000000000000000000000000000000000000000ffffffffffffffbf5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65646f742073756363656564000000000000000000000000000000000000000000005361666545524332303a204552433230206f7065726174696f6e20646964206e416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000023b872dd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff60000000000000000000000000000000000000000000000000ffffffffffffff1fc65663468a4a92a87b17f9a0ff4f8ba4868eeac4851095f8a68e5ac0961c4b96
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000eb484dddfad4f89c0f72267c7d13752451831038000000000000000000000000bfddbd9f71d2fb88923e0a7fb06a5aa937d9f5ff
-----Decoded View---------------
Arg [0] : _rainbowRoad (address): 0xEb484dddfAD4F89c0F72267c7d13752451831038
Arg [1] : _feeCollectorFactory (address): 0xBfDDBD9F71d2FB88923e0a7Fb06a5aa937D9F5fF
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000eb484dddfad4f89c0f72267c7d13752451831038
Arg [1] : 000000000000000000000000bfddbd9f71d2fb88923e0a7fb06a5aa937d9f5ff
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 35 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.