More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 382,330 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Relay | 57834438 | 28 mins ago | IN | 0 ETH | 0.00001022 | ||||
Relay | 57834088 | 39 mins ago | IN | 0 ETH | 0.00001093 | ||||
Relay | 57824305 | 5 hrs ago | IN | 0 ETH | 0.00001057 | ||||
Relay | 57823775 | 5 hrs ago | IN | 0 ETH | 0.00001214 | ||||
Withdraw | 57823517 | 5 hrs ago | IN | 0 ETH | 0.000012 | ||||
Relay | 57822002 | 6 hrs ago | IN | 0 ETH | 0.00001223 | ||||
Send | 57821980 | 6 hrs ago | IN | 0 ETH | 0.00000459 | ||||
Relay | 57817650 | 8 hrs ago | IN | 0 ETH | 0.00001299 | ||||
Send Native | 57815393 | 9 hrs ago | IN | 0.03601 ETH | 0.00000637 | ||||
Relay | 57803589 | 14 hrs ago | IN | 0 ETH | 0.0000126 | ||||
Relay | 57803329 | 14 hrs ago | IN | 0 ETH | 0.00001092 | ||||
Relay | 57798815 | 15 hrs ago | IN | 0 ETH | 0.00001074 | ||||
Relay | 57794329 | 17 hrs ago | IN | 0 ETH | 0.00001057 | ||||
Withdraw | 57793369 | 18 hrs ago | IN | 0 ETH | 0.00000808 | ||||
Withdraw | 57793327 | 18 hrs ago | IN | 0 ETH | 0.00001216 | ||||
Add Native Liqui... | 57790195 | 19 hrs ago | IN | 0.36271532 ETH | 0.00000474 | ||||
Withdraw | 57790149 | 19 hrs ago | IN | 0 ETH | 0.00001069 | ||||
Relay | 57787723 | 20 hrs ago | IN | 0 ETH | 0.00001107 | ||||
Relay | 57781128 | 24 hrs ago | IN | 0 ETH | 0.00001174 | ||||
Relay | 57773995 | 27 hrs ago | IN | 0 ETH | 0.00001103 | ||||
Withdraw | 57770597 | 29 hrs ago | IN | 0 ETH | 0.00000783 | ||||
Withdraw | 57770594 | 29 hrs ago | IN | 0 ETH | 0.0000114 | ||||
Relay | 57769701 | 30 hrs ago | IN | 0 ETH | 0.00001104 | ||||
Relay | 57769664 | 30 hrs ago | IN | 0 ETH | 0.00001074 | ||||
Relay | 57762492 | 33 hrs ago | IN | 0 ETH | 0.00001174 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
57834438 | 28 mins ago | 12.99867287 ETH | ||||
57834438 | 28 mins ago | 12.99867287 ETH | ||||
57834088 | 39 mins ago | 0.05487592 ETH | ||||
57834088 | 39 mins ago | 0.05487592 ETH | ||||
57833574 | 53 mins ago | 2.482 ETH | ||||
57833574 | 53 mins ago | 2.482 ETH | ||||
57833574 | 53 mins ago | 2.482 ETH | ||||
57830272 | 2 hrs ago | 0.01079145 ETH | ||||
57830272 | 2 hrs ago | 0.01079145 ETH | ||||
57830272 | 2 hrs ago | 0.01079145 ETH | ||||
57825315 | 5 hrs ago | 2.64898991 ETH | ||||
57825315 | 5 hrs ago | 2.64898991 ETH | ||||
57825315 | 5 hrs ago | 2.64898991 ETH | ||||
57824305 | 5 hrs ago | 1.02261685 ETH | ||||
57824305 | 5 hrs ago | 1.02261685 ETH | ||||
57823775 | 5 hrs ago | 3.99957317 ETH | ||||
57823775 | 5 hrs ago | 3.99957317 ETH | ||||
57820273 | 7 hrs ago | 0.02476432 ETH | ||||
57820273 | 7 hrs ago | 0.02476432 ETH | ||||
57820273 | 7 hrs ago | 0.02476432 ETH | ||||
57820265 | 7 hrs ago | 0.02208196 ETH | ||||
57820265 | 7 hrs ago | 0.02208196 ETH | ||||
57820265 | 7 hrs ago | 0.02208196 ETH | ||||
57820261 | 7 hrs ago | 0.02502726 ETH | ||||
57820261 | 7 hrs ago | 0.02502726 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:
Bridge
Compiler Version
v0.8.17+commit.8df45f5f
ZkSolc Version
v1.3.1
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0-only pragma solidity 0.8.17; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "../libraries/PbBridge.sol"; import "./Pool.sol"; /** * @title The liquidity-pool based bridge. */ contract Bridge is Pool { using SafeERC20 for IERC20; // liquidity events event Send( bytes32 transferId, address sender, address receiver, address token, uint256 amount, uint64 dstChainId, uint64 nonce, uint32 maxSlippage ); event Relay( bytes32 transferId, address sender, address receiver, address token, uint256 amount, uint64 srcChainId, bytes32 srcTransferId ); // gov events event MinSendUpdated(address token, uint256 amount); event MaxSendUpdated(address token, uint256 amount); mapping(bytes32 => bool) public transfers; mapping(address => uint256) public minSend; // send _amount must > minSend mapping(address => uint256) public maxSend; // min allowed max slippage uint32 value is slippage * 1M, eg. 0.5% -> 5000 uint32 public minimalMaxSlippage; /** * @notice Send a cross-chain transfer via the liquidity pool-based bridge. * NOTE: This function DOES NOT SUPPORT fee-on-transfer / rebasing tokens. * @param _receiver The address of the receiver. * @param _token The address of the token. * @param _amount The amount of the transfer. * @param _dstChainId The destination chain ID. * @param _nonce A number input to guarantee uniqueness of transferId. Can be timestamp in practice. * @param _maxSlippage The max slippage accepted, given as percentage in point (pip). Eg. 5000 means 0.5%. * Must be greater than minimalMaxSlippage. Receiver is guaranteed to receive at least (100% - max slippage percentage) * amount or the * transfer can be refunded. */ function send( address _receiver, address _token, uint256 _amount, uint64 _dstChainId, uint64 _nonce, uint32 _maxSlippage // slippage * 1M, eg. 0.5% -> 5000 ) external nonReentrant whenNotPaused { bytes32 transferId = _send(_receiver, _token, _amount, _dstChainId, _nonce, _maxSlippage); IERC20(_token).safeTransferFrom(msg.sender, address(this), _amount); emit Send(transferId, msg.sender, _receiver, _token, _amount, _dstChainId, _nonce, _maxSlippage); } /** * @notice Send a cross-chain transfer via the liquidity pool-based bridge using the native token. * @param _receiver The address of the receiver. * @param _amount The amount of the transfer. * @param _dstChainId The destination chain ID. * @param _nonce A unique number. Can be timestamp in practice. * @param _maxSlippage The max slippage accepted, given as percentage in point (pip). Eg. 5000 means 0.5%. * Must be greater than minimalMaxSlippage. Receiver is guaranteed to receive at least (100% - max slippage percentage) * amount or the * transfer can be refunded. */ function sendNative( address _receiver, uint256 _amount, uint64 _dstChainId, uint64 _nonce, uint32 _maxSlippage ) external payable nonReentrant whenNotPaused { require(msg.value == _amount, "Amount mismatch"); require(nativeWrap != address(0), "Native wrap not set"); bytes32 transferId = _send(_receiver, nativeWrap, _amount, _dstChainId, _nonce, _maxSlippage); IWETH(nativeWrap).deposit{value: _amount}(); emit Send(transferId, msg.sender, _receiver, nativeWrap, _amount, _dstChainId, _nonce, _maxSlippage); } function _send( address _receiver, address _token, uint256 _amount, uint64 _dstChainId, uint64 _nonce, uint32 _maxSlippage ) private returns (bytes32) { require(_amount > minSend[_token], "amount too small"); require(maxSend[_token] == 0 || _amount <= maxSend[_token], "amount too large"); require(_maxSlippage > minimalMaxSlippage, "max slippage too small"); bytes32 transferId = keccak256( // uint64(block.chainid) for consistency as entire system uses uint64 for chain id // len = 20 + 20 + 20 + 32 + 8 + 8 + 8 = 116 abi.encodePacked(msg.sender, _receiver, _token, _amount, _dstChainId, _nonce, uint64(block.chainid)) ); require(transfers[transferId] == false, "transfer exists"); transfers[transferId] = true; return transferId; } /** * @notice Relay a cross-chain transfer sent from a liquidity pool-based bridge on another chain. * @param _relayRequest The serialized Relay protobuf. * @param _sigs The list of signatures sorted by signing addresses in ascending order. A relay must be signed-off by * +2/3 of the bridge's current signing power to be delivered. * @param _signers The sorted list of signers. * @param _powers The signing powers of the signers. */ function relay( bytes calldata _relayRequest, bytes[] calldata _sigs, address[] calldata _signers, uint256[] calldata _powers ) external whenNotPaused { bytes32 domain = keccak256(abi.encodePacked(block.chainid, address(this), "Relay")); verifySigs(abi.encodePacked(domain, _relayRequest), _sigs, _signers, _powers); PbBridge.Relay memory request = PbBridge.decRelay(_relayRequest); // len = 20 + 20 + 20 + 32 + 8 + 8 + 32 = 140 bytes32 transferId = keccak256( abi.encodePacked( request.sender, request.receiver, request.token, request.amount, request.srcChainId, request.dstChainId, request.srcTransferId ) ); require(transfers[transferId] == false, "transfer exists"); transfers[transferId] = true; _updateVolume(request.token, request.amount); uint256 delayThreshold = delayThresholds[request.token]; if (delayThreshold > 0 && request.amount > delayThreshold) { _addDelayedTransfer(transferId, request.receiver, request.token, request.amount); } else { _sendToken(request.receiver, request.token, request.amount); } emit Relay( transferId, request.sender, request.receiver, request.token, request.amount, request.srcChainId, request.srcTransferId ); } function setMinSend(address[] calldata _tokens, uint256[] calldata _amounts) external onlyGovernor { require(_tokens.length == _amounts.length, "length mismatch"); for (uint256 i = 0; i < _tokens.length; i++) { minSend[_tokens[i]] = _amounts[i]; emit MinSendUpdated(_tokens[i], _amounts[i]); } } function setMaxSend(address[] calldata _tokens, uint256[] calldata _amounts) external onlyGovernor { require(_tokens.length == _amounts.length, "length mismatch"); for (uint256 i = 0; i < _tokens.length; i++) { maxSend[_tokens[i]] = _amounts[i]; emit MaxSendUpdated(_tokens[i], _amounts[i]); } } function setMinimalMaxSlippage(uint32 _minimalMaxSlippage) external onlyGovernor { minimalMaxSlippage = _minimalMaxSlippage; } // This is needed to receive ETH when calling `IWETH.withdraw` receive() external payable {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @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 Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { 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()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // 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() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `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); /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../../../utils/Address.sol"; /** * @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; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } 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)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } 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"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @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"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.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 * ==== * * [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://diligence.consensys.net/posts/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.5.11/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 functionCall(target, data, "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"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(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) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(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) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason 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 { // 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 assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// 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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "../Strings.sol"; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
// SPDX-License-Identifier: GPL-3.0-only pragma solidity >=0.8.0; interface ISigsVerifier { /** * @notice Verifies that a message is signed by a quorum among the signers. * @param _msg signed message * @param _sigs list of signatures sorted by signer addresses in ascending order * @param _signers sorted list of current signers * @param _powers powers of current signers */ function verifySigs( bytes memory _msg, bytes[] calldata _sigs, address[] calldata _signers, uint256[] calldata _powers ) external view; }
// SPDX-License-Identifier: GPL-3.0-only pragma solidity >=0.8.0; interface IWETH { function deposit() external payable; function withdraw(uint256) external; }
// SPDX-License-Identifier: GPL-3.0-only pragma solidity 0.8.17; // runtime proto sol library library Pb { enum WireType { Varint, Fixed64, LengthDelim, StartGroup, EndGroup, Fixed32 } struct Buffer { uint256 idx; // the start index of next read. when idx=b.length, we're done bytes b; // hold serialized proto msg, readonly } // create a new in-memory Buffer object from raw msg bytes function fromBytes(bytes memory raw) internal pure returns (Buffer memory buf) { buf.b = raw; buf.idx = 0; } // whether there are unread bytes function hasMore(Buffer memory buf) internal pure returns (bool) { return buf.idx < buf.b.length; } // decode current field number and wiretype function decKey(Buffer memory buf) internal pure returns (uint256 tag, WireType wiretype) { uint256 v = decVarint(buf); tag = v / 8; wiretype = WireType(v & 7); } // count tag occurrences, return an array due to no memory map support // have to create array for (maxtag+1) size. cnts[tag] = occurrences // should keep buf.idx unchanged because this is only a count function function cntTags(Buffer memory buf, uint256 maxtag) internal pure returns (uint256[] memory cnts) { uint256 originalIdx = buf.idx; cnts = new uint256[](maxtag + 1); // protobuf's tags are from 1 rather than 0 uint256 tag; WireType wire; while (hasMore(buf)) { (tag, wire) = decKey(buf); cnts[tag] += 1; skipValue(buf, wire); } buf.idx = originalIdx; } // read varint from current buf idx, move buf.idx to next read, return the int value function decVarint(Buffer memory buf) internal pure returns (uint256 v) { bytes10 tmp; // proto int is at most 10 bytes (7 bits can be used per byte) bytes memory bb = buf.b; // get buf.b mem addr to use in assembly v = buf.idx; // use v to save one additional uint variable assembly { tmp := mload(add(add(bb, 32), v)) // load 10 bytes from buf.b[buf.idx] to tmp } uint256 b; // store current byte content v = 0; // reset to 0 for return value for (uint256 i = 0; i < 10; i++) { assembly { b := byte(i, tmp) // don't use tmp[i] because it does bound check and costs extra } v |= (b & 0x7F) << (i * 7); if (b & 0x80 == 0) { buf.idx += i + 1; return v; } } revert(); // i=10, invalid varint stream } // read length delimited field and return bytes function decBytes(Buffer memory buf) internal pure returns (bytes memory b) { uint256 len = decVarint(buf); uint256 end = buf.idx + len; require(end <= buf.b.length); // avoid overflow b = new bytes(len); bytes memory bufB = buf.b; // get buf.b mem addr to use in assembly uint256 bStart; uint256 bufBStart = buf.idx; assembly { bStart := add(b, 32) bufBStart := add(add(bufB, 32), bufBStart) } for (uint256 i = 0; i < len; i += 32) { assembly { mstore(add(bStart, i), mload(add(bufBStart, i))) } } buf.idx = end; } // return packed ints function decPacked(Buffer memory buf) internal pure returns (uint256[] memory t) { uint256 len = decVarint(buf); uint256 end = buf.idx + len; require(end <= buf.b.length); // avoid overflow // array in memory must be init w/ known length // so we have to create a tmp array w/ max possible len first uint256[] memory tmp = new uint256[](len); uint256 i = 0; // count how many ints are there while (buf.idx < end) { tmp[i] = decVarint(buf); i++; } t = new uint256[](i); // init t with correct length for (uint256 j = 0; j < i; j++) { t[j] = tmp[j]; } return t; } // move idx pass current value field, to beginning of next tag or msg end function skipValue(Buffer memory buf, WireType wire) internal pure { if (wire == WireType.Varint) { decVarint(buf); } else if (wire == WireType.LengthDelim) { uint256 len = decVarint(buf); buf.idx += len; // skip len bytes value data require(buf.idx <= buf.b.length); // avoid overflow } else { revert(); } // unsupported wiretype } // type conversion help utils function _bool(uint256 x) internal pure returns (bool v) { return x != 0; } function _uint256(bytes memory b) internal pure returns (uint256 v) { require(b.length <= 32); // b's length must be smaller than or equal to 32 assembly { v := mload(add(b, 32)) } // load all 32bytes to v v = v >> (8 * (32 - b.length)); // only first b.length is valid } function _address(bytes memory b) internal pure returns (address v) { v = _addressPayable(b); } function _addressPayable(bytes memory b) internal pure returns (address payable v) { require(b.length == 20); //load 32bytes then shift right 12 bytes assembly { v := div(mload(add(b, 32)), 0x1000000000000000000000000) } } function _bytes32(bytes memory b) internal pure returns (bytes32 v) { require(b.length == 32); assembly { v := mload(add(b, 32)) } } // uint[] to uint8[] function uint8s(uint256[] memory arr) internal pure returns (uint8[] memory t) { t = new uint8[](arr.length); for (uint256 i = 0; i < t.length; i++) { t[i] = uint8(arr[i]); } } function uint32s(uint256[] memory arr) internal pure returns (uint32[] memory t) { t = new uint32[](arr.length); for (uint256 i = 0; i < t.length; i++) { t[i] = uint32(arr[i]); } } function uint64s(uint256[] memory arr) internal pure returns (uint64[] memory t) { t = new uint64[](arr.length); for (uint256 i = 0; i < t.length; i++) { t[i] = uint64(arr[i]); } } function bools(uint256[] memory arr) internal pure returns (bool[] memory t) { t = new bool[](arr.length); for (uint256 i = 0; i < t.length; i++) { t[i] = arr[i] != 0; } } }
// SPDX-License-Identifier: GPL-3.0-only // Code generated by protoc-gen-sol. DO NOT EDIT. // source: bridge.proto pragma solidity 0.8.17; import "./Pb.sol"; library PbBridge { using Pb for Pb.Buffer; // so we can call Pb funcs on Buffer obj struct Relay { address sender; // tag: 1 address receiver; // tag: 2 address token; // tag: 3 uint256 amount; // tag: 4 uint64 srcChainId; // tag: 5 uint64 dstChainId; // tag: 6 bytes32 srcTransferId; // tag: 7 } // end struct Relay function decRelay(bytes memory raw) internal pure returns (Relay memory m) { Pb.Buffer memory buf = Pb.fromBytes(raw); uint256 tag; Pb.WireType wire; while (buf.hasMore()) { (tag, wire) = buf.decKey(); if (false) {} // solidity has no switch/case else if (tag == 1) { m.sender = Pb._address(buf.decBytes()); } else if (tag == 2) { m.receiver = Pb._address(buf.decBytes()); } else if (tag == 3) { m.token = Pb._address(buf.decBytes()); } else if (tag == 4) { m.amount = Pb._uint256(buf.decBytes()); } else if (tag == 5) { m.srcChainId = uint64(buf.decVarint()); } else if (tag == 6) { m.dstChainId = uint64(buf.decVarint()); } else if (tag == 7) { m.srcTransferId = Pb._bytes32(buf.decBytes()); } else { buf.skipValue(wire); } // skip value of unknown tag } } // end decoder Relay }
// SPDX-License-Identifier: GPL-3.0-only // Code generated by protoc-gen-sol. DO NOT EDIT. // source: contracts/libraries/proto/pool.proto pragma solidity 0.8.17; import "./Pb.sol"; library PbPool { using Pb for Pb.Buffer; // so we can call Pb funcs on Buffer obj struct WithdrawMsg { uint64 chainid; // tag: 1 uint64 seqnum; // tag: 2 address receiver; // tag: 3 address token; // tag: 4 uint256 amount; // tag: 5 bytes32 refid; // tag: 6 } // end struct WithdrawMsg function decWithdrawMsg(bytes memory raw) internal pure returns (WithdrawMsg memory m) { Pb.Buffer memory buf = Pb.fromBytes(raw); uint256 tag; Pb.WireType wire; while (buf.hasMore()) { (tag, wire) = buf.decKey(); if (false) {} // solidity has no switch/case else if (tag == 1) { m.chainid = uint64(buf.decVarint()); } else if (tag == 2) { m.seqnum = uint64(buf.decVarint()); } else if (tag == 3) { m.receiver = Pb._address(buf.decBytes()); } else if (tag == 4) { m.token = Pb._address(buf.decBytes()); } else if (tag == 5) { m.amount = Pb._uint256(buf.decBytes()); } else if (tag == 6) { m.refid = Pb._bytes32(buf.decBytes()); } else { buf.skipValue(wire); } // skip value of unknown tag } } // end decoder WithdrawMsg }
// SPDX-License-Identifier: GPL-3.0-only pragma solidity 0.8.17; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "../interfaces/IWETH.sol"; import "../libraries/PbPool.sol"; import "../safeguard/Pauser.sol"; import "../safeguard/VolumeControl.sol"; import "../safeguard/DelayedTransfer.sol"; import "./Signers.sol"; /** * @title Liquidity pool functions for {Bridge}. */ contract Pool is Signers, ReentrancyGuard, Pauser, VolumeControl, DelayedTransfer { using SafeERC20 for IERC20; uint64 public addseq; // ensure unique LiquidityAdded event, start from 1 mapping(address => uint256) public minAdd; // add _amount must > minAdd // map of successful withdraws, if true means already withdrew money or added to delayedTransfers mapping(bytes32 => bool) public withdraws; // erc20 wrap of gas token of this chain, eg. WETH, when relay ie. pay out, // if request.token equals this, will withdraw and send native token to receiver // note we don't check whether it's zero address. when this isn't set, and request.token // is all 0 address, guarantee fail address public nativeWrap; // when transfer native token after wrap, use this gas used config. uint256 public nativeTokenTransferGas = 50000; // liquidity events event LiquidityAdded( uint64 seqnum, address provider, address token, uint256 amount // how many tokens were added ); event WithdrawDone( bytes32 withdrawId, uint64 seqnum, address receiver, address token, uint256 amount, bytes32 refid ); event MinAddUpdated(address token, uint256 amount); /** * @notice Add liquidity to the pool-based bridge. * NOTE: This function DOES NOT SUPPORT fee-on-transfer / rebasing tokens. * @param _token The address of the token. * @param _amount The amount to add. */ function addLiquidity(address _token, uint256 _amount) external nonReentrant whenNotPaused { require(_amount > minAdd[_token], "amount too small"); addseq += 1; IERC20(_token).safeTransferFrom(msg.sender, address(this), _amount); emit LiquidityAdded(addseq, msg.sender, _token, _amount); } /** * @notice Add native token liquidity to the pool-based bridge. * @param _amount The amount to add. */ function addNativeLiquidity(uint256 _amount) external payable nonReentrant whenNotPaused { require(msg.value == _amount, "Amount mismatch"); require(nativeWrap != address(0), "Native wrap not set"); require(_amount > minAdd[nativeWrap], "amount too small"); addseq += 1; IWETH(nativeWrap).deposit{value: _amount}(); emit LiquidityAdded(addseq, msg.sender, nativeWrap, _amount); } /** * @notice Withdraw funds from the bridge pool. * @param _wdmsg The serialized Withdraw protobuf. * @param _sigs The list of signatures sorted by signing addresses in ascending order. A withdrawal must be * signed-off by +2/3 of the bridge's current signing power to be delivered. * @param _signers The sorted list of signers. * @param _powers The signing powers of the signers. */ function withdraw( bytes calldata _wdmsg, bytes[] calldata _sigs, address[] calldata _signers, uint256[] calldata _powers ) external whenNotPaused { bytes32 domain = keccak256(abi.encodePacked(block.chainid, address(this), "WithdrawMsg")); verifySigs(abi.encodePacked(domain, _wdmsg), _sigs, _signers, _powers); // decode and check wdmsg PbPool.WithdrawMsg memory wdmsg = PbPool.decWithdrawMsg(_wdmsg); // len = 8 + 8 + 20 + 20 + 32 = 88 bytes32 wdId = keccak256( abi.encodePacked(wdmsg.chainid, wdmsg.seqnum, wdmsg.receiver, wdmsg.token, wdmsg.amount) ); require(withdraws[wdId] == false, "withdraw already succeeded"); withdraws[wdId] = true; _updateVolume(wdmsg.token, wdmsg.amount); uint256 delayThreshold = delayThresholds[wdmsg.token]; if (delayThreshold > 0 && wdmsg.amount > delayThreshold) { _addDelayedTransfer(wdId, wdmsg.receiver, wdmsg.token, wdmsg.amount); } else { _sendToken(wdmsg.receiver, wdmsg.token, wdmsg.amount); } emit WithdrawDone(wdId, wdmsg.seqnum, wdmsg.receiver, wdmsg.token, wdmsg.amount, wdmsg.refid); } function executeDelayedTransfer(bytes32 id) external whenNotPaused { delayedTransfer memory transfer = _executeDelayedTransfer(id); _sendToken(transfer.receiver, transfer.token, transfer.amount); } function setMinAdd(address[] calldata _tokens, uint256[] calldata _amounts) external onlyGovernor { require(_tokens.length == _amounts.length, "length mismatch"); for (uint256 i = 0; i < _tokens.length; i++) { minAdd[_tokens[i]] = _amounts[i]; emit MinAddUpdated(_tokens[i], _amounts[i]); } } function _sendToken( address _receiver, address _token, uint256 _amount ) internal { if (_token == nativeWrap) { // withdraw then transfer native to receiver IWETH(nativeWrap).withdraw(_amount); (bool sent, ) = _receiver.call{value: _amount, gas: nativeTokenTransferGas}(""); require(sent, "failed to send native token"); } else { IERC20(_token).safeTransfer(_receiver, _amount); } } // set nativeWrap, for relay requests, if token == nativeWrap, will withdraw first then transfer native to receiver function setWrap(address _weth) external onlyOwner { nativeWrap = _weth; } // setNativeTransferGasUsed, native transfer will use this config. function setNativeTokenTransferGas(uint256 _gasUsed) external onlyGovernor { nativeTokenTransferGas = _gasUsed; } }
// SPDX-License-Identifier: GPL-3.0-only pragma solidity 0.8.17; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "../safeguard/Ownable.sol"; import "../interfaces/ISigsVerifier.sol"; /** * @title Multi-sig verification and management functions for {Bridge}. */ contract Signers is Ownable, ISigsVerifier { using ECDSA for bytes32; bytes32 public ssHash; uint256 public triggerTime; // timestamp when last update was triggered // reset can be called by the owner address for emergency recovery uint256 public resetTime; uint256 public noticePeriod; // advance notice period as seconds for reset uint256 constant MAX_INT = 2**256 - 1; event SignersUpdated(address[] _signers, uint256[] _powers); event ResetNotification(uint256 resetTime); /** * @notice Verifies that a message is signed by a quorum among the signers * The sigs must be sorted by signer addresses in ascending order. * @param _msg signed message * @param _sigs list of signatures sorted by signer addresses in ascending order * @param _signers sorted list of current signers * @param _powers powers of current signers */ function verifySigs( bytes memory _msg, bytes[] calldata _sigs, address[] calldata _signers, uint256[] calldata _powers ) public view override { bytes32 h = keccak256(abi.encodePacked(_signers, _powers)); require(ssHash == h, "Mismatch current signers"); _verifySignedPowers(keccak256(_msg).toEthSignedMessageHash(), _sigs, _signers, _powers); } /** * @notice Update new signers. * @param _newSigners sorted list of new signers * @param _curPowers powers of new signers * @param _sigs list of signatures sorted by signer addresses in ascending order * @param _curSigners sorted list of current signers * @param _curPowers powers of current signers */ function updateSigners( uint256 _triggerTime, address[] calldata _newSigners, uint256[] calldata _newPowers, bytes[] calldata _sigs, address[] calldata _curSigners, uint256[] calldata _curPowers ) external { // use trigger time for nonce protection, must be ascending require(_triggerTime > triggerTime, "Trigger time is not increasing"); // make sure triggerTime is not too large, as it cannot be decreased once set require(_triggerTime < block.timestamp + 3600, "Trigger time is too large"); bytes32 domain = keccak256(abi.encodePacked(block.chainid, address(this), "UpdateSigners")); verifySigs(abi.encodePacked(domain, _triggerTime, _newSigners, _newPowers), _sigs, _curSigners, _curPowers); _updateSigners(_newSigners, _newPowers); triggerTime = _triggerTime; } /** * @notice reset signers, only used for init setup and emergency recovery */ function resetSigners(address[] calldata _signers, uint256[] calldata _powers) external onlyOwner { require(block.timestamp > resetTime, "not reach reset time"); resetTime = MAX_INT; _updateSigners(_signers, _powers); } function notifyResetSigners() external onlyOwner { resetTime = block.timestamp + noticePeriod; emit ResetNotification(resetTime); } function increaseNoticePeriod(uint256 period) external onlyOwner { require(period > noticePeriod, "notice period can only be increased"); noticePeriod = period; } // separate from verifySigs func to avoid "stack too deep" issue function _verifySignedPowers( bytes32 _hash, bytes[] calldata _sigs, address[] calldata _signers, uint256[] calldata _powers ) private pure { require(_signers.length == _powers.length, "signers and powers length not match"); uint256 totalPower; // sum of all signer.power for (uint256 i = 0; i < _signers.length; i++) { totalPower += _powers[i]; } uint256 quorum = (totalPower * 2) / 3 + 1; uint256 signedPower; // sum of signer powers who are in sigs address prev = address(0); uint256 index = 0; for (uint256 i = 0; i < _sigs.length; i++) { address signer = _hash.recover(_sigs[i]); require(signer > prev, "signers not in ascending order"); prev = signer; // now find match signer add its power while (signer > _signers[index]) { index += 1; require(index < _signers.length, "signer not found"); } if (signer == _signers[index]) { signedPower += _powers[index]; } if (signedPower >= quorum) { // return early to save gas return; } } revert("quorum not reached"); } function _updateSigners(address[] calldata _signers, uint256[] calldata _powers) private { require(_signers.length == _powers.length, "signers and powers length not match"); address prev = address(0); for (uint256 i = 0; i < _signers.length; i++) { require(_signers[i] > prev, "New signers not in ascending order"); prev = _signers[i]; } ssHash = keccak256(abi.encodePacked(_signers, _powers)); emit SignersUpdated(_signers, _powers); } }
// SPDX-License-Identifier: GPL-3.0-only pragma solidity 0.8.17; import "./Governor.sol"; abstract contract DelayedTransfer is Governor { struct delayedTransfer { address receiver; address token; uint256 amount; uint256 timestamp; } mapping(bytes32 => delayedTransfer) public delayedTransfers; mapping(address => uint256) public delayThresholds; uint256 public delayPeriod; // in seconds event DelayedTransferAdded(bytes32 id); event DelayedTransferExecuted(bytes32 id, address receiver, address token, uint256 amount); event DelayPeriodUpdated(uint256 period); event DelayThresholdUpdated(address token, uint256 threshold); function setDelayThresholds(address[] calldata _tokens, uint256[] calldata _thresholds) external onlyGovernor { require(_tokens.length == _thresholds.length, "length mismatch"); for (uint256 i = 0; i < _tokens.length; i++) { delayThresholds[_tokens[i]] = _thresholds[i]; emit DelayThresholdUpdated(_tokens[i], _thresholds[i]); } } function setDelayPeriod(uint256 _period) external onlyGovernor { delayPeriod = _period; emit DelayPeriodUpdated(_period); } function _addDelayedTransfer( bytes32 id, address receiver, address token, uint256 amount ) internal { require(delayedTransfers[id].timestamp == 0, "delayed transfer already exists"); delayedTransfers[id] = delayedTransfer({ receiver: receiver, token: token, amount: amount, timestamp: block.timestamp }); emit DelayedTransferAdded(id); } // caller needs to do the actual token transfer function _executeDelayedTransfer(bytes32 id) internal returns (delayedTransfer memory) { delayedTransfer memory transfer = delayedTransfers[id]; require(transfer.timestamp > 0, "delayed transfer not exist"); require(block.timestamp > transfer.timestamp + delayPeriod, "delayed transfer still locked"); delete delayedTransfers[id]; emit DelayedTransferExecuted(id, transfer.receiver, transfer.token, transfer.amount); return transfer; } }
// SPDX-License-Identifier: GPL-3.0-only pragma solidity 0.8.17; import "./Ownable.sol"; abstract contract Governor is Ownable { mapping(address => bool) public governors; event GovernorAdded(address account); event GovernorRemoved(address account); modifier onlyGovernor() { require(isGovernor(msg.sender), "Caller is not governor"); _; } constructor() { _addGovernor(msg.sender); } function isGovernor(address _account) public view returns (bool) { return governors[_account]; } function addGovernor(address _account) public onlyOwner { _addGovernor(_account); } function removeGovernor(address _account) public onlyOwner { _removeGovernor(_account); } function renounceGovernor() public { _removeGovernor(msg.sender); } function _addGovernor(address _account) private { require(!isGovernor(_account), "Account is already governor"); governors[_account] = true; emit GovernorAdded(_account); } function _removeGovernor(address _account) private { require(isGovernor(_account), "Account is not governor"); governors[_account] = false; emit GovernorRemoved(_account); } }
// SPDX-License-Identifier: GPL-3.0-only 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. * * This adds a normal func that setOwner if _owner is address(0). So we can't allow * renounceOwnership. So we can support Proxy based upgradable contract */ abstract contract Ownable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(msg.sender); } /** * @dev Only to be called by inherit contracts, in their init func called by Proxy * we require _owner == address(0), which is only possible when it's a delegateCall * because constructor sets _owner in contract state. */ function initOwner() internal { require(_owner == address(0), "owner already set"); _setOwner(msg.sender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == msg.sender, "Ownable: caller is not the owner"); _; } /** * @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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: GPL-3.0-only pragma solidity 0.8.17; import "@openzeppelin/contracts/security/Pausable.sol"; import "./Ownable.sol"; abstract contract Pauser is Ownable, Pausable { mapping(address => bool) public pausers; event PauserAdded(address account); event PauserRemoved(address account); constructor() { _addPauser(msg.sender); } modifier onlyPauser() { require(isPauser(msg.sender), "Caller is not pauser"); _; } function pause() public onlyPauser { _pause(); } function unpause() public onlyPauser { _unpause(); } function isPauser(address account) public view returns (bool) { return pausers[account]; } function addPauser(address account) public onlyOwner { _addPauser(account); } function removePauser(address account) public onlyOwner { _removePauser(account); } function renouncePauser() public { _removePauser(msg.sender); } function _addPauser(address account) private { require(!isPauser(account), "Account is already pauser"); pausers[account] = true; emit PauserAdded(account); } function _removePauser(address account) private { require(isPauser(account), "Account is not pauser"); pausers[account] = false; emit PauserRemoved(account); } }
// SPDX-License-Identifier: GPL-3.0-only pragma solidity 0.8.17; import "./Governor.sol"; abstract contract VolumeControl is Governor { uint256 public epochLength; // seconds mapping(address => uint256) public epochVolumes; // key is token mapping(address => uint256) public epochVolumeCaps; // key is token mapping(address => uint256) public lastOpTimestamps; // key is token event EpochLengthUpdated(uint256 length); event EpochVolumeUpdated(address token, uint256 cap); function setEpochLength(uint256 _length) external onlyGovernor { epochLength = _length; emit EpochLengthUpdated(_length); } function setEpochVolumeCaps(address[] calldata _tokens, uint256[] calldata _caps) external onlyGovernor { require(_tokens.length == _caps.length, "length mismatch"); for (uint256 i = 0; i < _tokens.length; i++) { epochVolumeCaps[_tokens[i]] = _caps[i]; emit EpochVolumeUpdated(_tokens[i], _caps[i]); } } function _updateVolume(address _token, uint256 _amount) internal { if (epochLength == 0) { return; } uint256 cap = epochVolumeCaps[_token]; if (cap == 0) { return; } uint256 volume = epochVolumes[_token]; uint256 timestamp = block.timestamp; uint256 epochStartTime = (timestamp / epochLength) * epochLength; if (lastOpTimestamps[_token] < epochStartTime) { volume = _amount; } else { volume += _amount; } require(volume <= cap, "volume exceeds cap"); epochVolumes[_token] = volume; lastOpTimestamps[_token] = timestamp; } }
{ "optimizer": { "enabled": true } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"period","type":"uint256"}],"name":"DelayPeriodUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"threshold","type":"uint256"}],"name":"DelayThresholdUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"DelayedTransferAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"id","type":"bytes32"},{"indexed":false,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"DelayedTransferExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"length","type":"uint256"}],"name":"EpochLengthUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"cap","type":"uint256"}],"name":"EpochVolumeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"GovernorAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"GovernorRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"seqnum","type":"uint64"},{"indexed":false,"internalType":"address","name":"provider","type":"address"},{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"LiquidityAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"MaxSendUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"MinAddUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"MinSendUpdated","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":"PauserAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"PauserRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"transferId","type":"bytes32"},{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint64","name":"srcChainId","type":"uint64"},{"indexed":false,"internalType":"bytes32","name":"srcTransferId","type":"bytes32"}],"name":"Relay","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"resetTime","type":"uint256"}],"name":"ResetNotification","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"transferId","type":"bytes32"},{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint64","name":"dstChainId","type":"uint64"},{"indexed":false,"internalType":"uint64","name":"nonce","type":"uint64"},{"indexed":false,"internalType":"uint32","name":"maxSlippage","type":"uint32"}],"name":"Send","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"_signers","type":"address[]"},{"indexed":false,"internalType":"uint256[]","name":"_powers","type":"uint256[]"}],"name":"SignersUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"withdrawId","type":"bytes32"},{"indexed":false,"internalType":"uint64","name":"seqnum","type":"uint64"},{"indexed":false,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"refid","type":"bytes32"}],"name":"WithdrawDone","type":"event"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"addGovernor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"addLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"addNativeLiquidity","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addPauser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"addseq","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"delayPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"delayThresholds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"delayedTransfers","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"timestamp","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"epochLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"epochVolumeCaps","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"epochVolumes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"executeDelayedTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"governors","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"period","type":"uint256"}],"name":"increaseNoticePeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"isGovernor","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isPauser","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastOpTimestamps","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"maxSend","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minAdd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minSend","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minimalMaxSlippage","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nativeTokenTransferGas","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nativeWrap","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"noticePeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notifyResetSigners","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"","type":"address"}],"name":"pausers","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"_relayRequest","type":"bytes"},{"internalType":"bytes[]","name":"_sigs","type":"bytes[]"},{"internalType":"address[]","name":"_signers","type":"address[]"},{"internalType":"uint256[]","name":"_powers","type":"uint256[]"}],"name":"relay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"removeGovernor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removePauser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceGovernor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renouncePauser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_signers","type":"address[]"},{"internalType":"uint256[]","name":"_powers","type":"uint256[]"}],"name":"resetSigners","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"resetTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint64","name":"_dstChainId","type":"uint64"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"uint32","name":"_maxSlippage","type":"uint32"}],"name":"send","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint64","name":"_dstChainId","type":"uint64"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"uint32","name":"_maxSlippage","type":"uint32"}],"name":"sendNative","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_period","type":"uint256"}],"name":"setDelayPeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_tokens","type":"address[]"},{"internalType":"uint256[]","name":"_thresholds","type":"uint256[]"}],"name":"setDelayThresholds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_length","type":"uint256"}],"name":"setEpochLength","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_tokens","type":"address[]"},{"internalType":"uint256[]","name":"_caps","type":"uint256[]"}],"name":"setEpochVolumeCaps","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_tokens","type":"address[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"setMaxSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_tokens","type":"address[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"setMinAdd","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_tokens","type":"address[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"setMinSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_minimalMaxSlippage","type":"uint32"}],"name":"setMinimalMaxSlippage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_gasUsed","type":"uint256"}],"name":"setNativeTokenTransferGas","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_weth","type":"address"}],"name":"setWrap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"ssHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"transfers","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"triggerTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_triggerTime","type":"uint256"},{"internalType":"address[]","name":"_newSigners","type":"address[]"},{"internalType":"uint256[]","name":"_newPowers","type":"uint256[]"},{"internalType":"bytes[]","name":"_sigs","type":"bytes[]"},{"internalType":"address[]","name":"_curSigners","type":"address[]"},{"internalType":"uint256[]","name":"_curPowers","type":"uint256[]"}],"name":"updateSigners","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"_msg","type":"bytes"},{"internalType":"bytes[]","name":"_sigs","type":"bytes[]"},{"internalType":"address[]","name":"_signers","type":"address[]"},{"internalType":"uint256[]","name":"_powers","type":"uint256[]"}],"name":"verifySigs","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"_wdmsg","type":"bytes"},{"internalType":"bytes[]","name":"_sigs","type":"bytes[]"},{"internalType":"address[]","name":"_signers","type":"address[]"},{"internalType":"uint256[]","name":"_powers","type":"uint256[]"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"withdraws","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
9c4d535b0000000000000000000000000000000000000000000000000000000000000000010007addf63a0a04136b7ef9058ad37fec3044563a3c398a595cfc6ce3b32f000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x0004000000000002000600000000000200000000030100190000006003300270000007040430019700030000004103550002000000010355000007040030019d000100000000001f00000001012001900000000c0000c13d1c0c01550000040f00000080020000390000004001000039000500000002001d00000000002104350000000001000416000000000110004c000000a30000c13d00000000010000191c0c1c0a0000040f000400000001001d00000705031001970000000002000411000600000002001d000000000123019f00000000020000191c0c1c080000040f00000704010000410000000002000414000007040320009c0000000001024019000000c0011002100000000402000029000007060520019700000707011001c70000800d020000390000000303000039000007080400004100000006060000291c0c1bfe0000040f0000000101200190000000a30000613d000000010100003900000005020000391c0c1c080000040f0000000601000039000400000001001d1c0c1c0a0000040f000001000200008a000200000002001d000000000121016f00000004020000291c0c1c080000040f0000000601000029000000000010043500000007020000390000002001000039000400000001001d000100000002001d000000000021043500000040020000390000000001000019000300000002001d1c0c01190000040f1c0c1c0a0000040f000000ff01100190000000a60000c13d00000006010000290000000000100435000000040100002900000001020000290000000000210435000000000100001900000003020000291c0c01190000040f000500000001001d1c0c1c0a0000040f0000000202000029000000000121016f00000001011001bf00000005020000291c0c1c080000040f000000030100002900000000010104330000000602000029000000000021043500000704020000410000000003000414000007040430009c0000000003028019000007040410009c00000000010280190000004001100210000000c002300210000000000112019f0000070b011001c70000800d0200003900000001030000390000070c040000411c0c1bfe0000040f0000000101200190000000a30000613d00000002010000290000000601000029000000000010043500000008020000390000000401000029000300000002001d000000000021043500000040020000390000000001000019000500000002001d1c0c01190000040f1c0c1c0a0000040f000000ff01100190000000b40000c13d00000006010000290000000000100435000000040100002900000003020000290000000000210435000000000100001900000005020000291c0c01190000040f000300000001001d1c0c1c0a0000040f0000000202000029000000000121016f00000001011001bf00000003020000291c0c1c080000040f000000050100002900000000010104330000000602000029000000000021043500000704020000410000000003000414000007040430009c0000000003028019000007040410009c00000000010280190000004001100210000000c002300210000000000112019f0000070b011001c70000800d0200003900000001030000390000070e040000411c0c1bfe0000040f0000000101200190000000a30000613d0000c3500100003900000014020000391c0c1c080000040f0000010001000039000000040200002900000000002104390000012002000039000000000002043900000040020000390000070f030000411c0c01420000040f000000000100001900000000020000191c0c014c0000040f0000070902000041000000050100002900000000002104350000008403000039000000040200002900000000002304350000001903000039000000a40200003900000000003204350000070a03000041000000c402000039000000000032043500000064020000391c0c014c0000040f0000000501000029000000000101043300000044021000390000070d03000041000000000032043500000024021000390000001b0300003900000000003204350000070902000041000000000021043500000004021000390000000403000029000000000032043500000064020000391c0c014c0000040f0002000000000002000200000006001d000100000005001d0000070405000041000007040630009c00000000030580190000004003300210000007040640009c00000000040580190000006004400210000000000334019f000007040410009c0000000001058019000000c001100210000000000113019f1c0c1bfe0000040f000000010800002900000002040000290000001f0340018f0000000504400270000000000540004c000000e20000613d000000000500001900000005065002100000000007680019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b000000da0000413d000000010220018f000000000530004c000000f20000613d0000000504400210000000000541034f00000000044800190000000303300210000000000604043300000000063601cf000000000636022f000000000505043b0000010003300089000000000535022f00000000033501cf000000000363019f000000000034043500030000000103550000006001100270000107040010019d00000000010200190000000200000005000000000001042d0001000000000002000100000003001d0000070403000041000007040420009c0000000002038019000007040410009c0000000001038019000000c0011002100000004002200210000000000112019f00000710011001c700000001020000391c0c1c030000040f0000000106000029000000010220018f000000000300001900000005043002100000000005460019000000000441034f000000000404043b00000000004504350000000103300039000000000430004c000000000400001900000001040060390000000104400190000001080000c13d00030000000103550000006001100270000107040010019d00000000010200190000000100000005000000000001042d0000070403000041000007040410009c00000000010380190000004001100210000007040420009c00000000020380190000006002200210000000000112019f0000000002000414000007040420009c0000000002038019000000c002200210000000000112019f00000707011001c700008010020000391c0c1c030000040f00000001022001900000012d0000613d000000000101043b000000000001042d000000000100001900000000020000191c0c014c0000040f000000000301001900000704010000410000000004000414000007040540009c0000000001044019000000c00110021000000060022002100000000001120019000007110110004100000000020300191c0c1c030000040f00000001022001900000013f0000613d000000000101043b000000000001042d000000000100001900000000020000191c0c014c0000040f0000070404000041000007040510009c000000000104801900000040011002100000000001310019000007040320009c00000000020480190000006002200210000000000121001900001c0d0001042e0000070403000041000007040420009c0000000002038019000007040410009c000000000103801900000040011002100000006002200210000000000112019f00001c0e00010430000b0000000000020000008001000039000000400500003900000000001504350000000003000031000000040130008c000001fb0000413d0000000202000367000000000102043b000000e001100270000007120410009c000007d00000613d000007130410009c000002010000613d000007140410009c000008300000613d000007150410009c000008790000613d000007160410009c000002610000613d000007170410009c000008950000613d000007180410009c000008e60000613d000007190410009c0000027c0000613d0000071a0410009c000002b50000613d0000071b0410009c000003200000613d0000071c0410009c000003520000613d0000071d0410009c000008ff0000613d0000071e0410009c0000092c0000613d0000071f0410009c0000036e0000613d000007200410009c0000039c0000613d000007210410009c0000098c0000613d000007220410009c000003c50000613d000007230410009c000004300000613d000007240410009c000009c50000613d000007250410009c000009e30000613d000007260410009c0000044b0000613d000007270410009c000004740000613d000007280410009c0000048f0000613d000007290410009c000004e20000613d0000072a0410009c000005060000613d0000072b0410009c00000a0c0000613d0000072c0210009c0000051d0000613d0000072d0210009c00000a570000613d0000072e0210009c00000aa80000613d0000072f0210009c00000ae90000613d000007300210009c000005300000613d000007310210009c00000b490000613d000007320210009c0000054c0000613d000007330210009c000005670000613d000007340210009c00000b650000613d000007350210009c000000000300041000000b900000613d000007360210009c00000c700000613d000007370210009c000005cf0000613d000007380210009c00000ce70000613d000007390210009c00000d150000613d0000073a0210009c000005f80000613d0000073b0210009c000006130000613d0000073c0210009c0000063c0000613d0000073d0210009c0000068f0000613d0000073e0210009c00000d300000613d0000073f0210009c000006b80000613d000007400210009c000006dd0000613d000007410210009c00000d660000613d000007420210009c000006f80000613d000007430210009c00000d7d0000613d000007440210009c000007110000613d000007450210009c00000daa0000613d000007460210009c000007240000613d000007470210009c000200000005001d000007480000613d000007480210009c000007720000613d000007490210009c000007a80000613d0000074a0110009c000011cb0000c13d0000000001000416000000000110004c000011cb0000c13d000000040100008a00000000011000310000074b02000041000000200310008c000000000300001900000000030240190000074b01100197000000000410004c000000000200a0190000074b0110009c00000000010300190000000001026019000000000110004c000011cb0000c13d00000004010000390000000201100367000000000101043b000b00000001001d1c0c12170000040f0000000b010000290000070601100197000000000010043500000016010000390000002002000039000b00000002001d0000000000120435000000000100001900000002020000291c0c01190000040f1c0c1c0a0000040f00000002020000290000000002020433000000000012043500000000010200190000000b0200002900000000030000191c0c01420000040f000000000130004c000011cb0000c13d0000000001000019000000000200001900000000030000191c0c01420000040f0000000001000416000000000110004c000011cb0000c13d00000000010000311c0c11eb0000040f0000000005000411000000000050043500000008050000390000002006000039000300000006001d0000000000560435000400000001001d000600000002001d000200000003001d000500000004001d000000400200003900000000010000191c0c01190000040f1c0c1c0a0000040f000000ff0110018f1c0c15d50000040f00000006010000290000000502000029000000000121004b000000000100001900000001010060391c0c15e70000040f0000000e01000039000100000001001d00000000050000190000000601000029000000000115004b000001fd0000813d0000000501000029000000000115004b00000e0a0000813d0000000501500210000000040200002900000000032100190000000202000367000b00000003001d000000000332034f000000000303043b000007060430009c000011cb0000213d00000002040000290000000001410019000800000001001d000000000112034f000000000101043b000a00000001001d000000000030043500000003010000290000000102000029000000000021043500000040020000390000000001000019000700000002001d000900000005001d1c0c01190000040f00000000020100190000000a010000291c0c1c080000040f00000002020003670000000b01000029000000000112034f000000000101043b000007060310009c000011cb0000213d0000000803000029000000000232034f000000000202043b0000000703000029000000000303043300000020043000390000000000240435000000000013043500000704010000410000000002000414000007040420009c0000000002018019000007040430009c00000000010340190000004001100210000000c002200210000000000112019f00000750011001c70000800d02000039000000010300003900000776040000411c0c1bfe0000040f0000000905000029000000010550003900000001012001900000021f0000c13d000011cb0000013d000200000005001d0000000001000416000000000110004c000011cb0000c13d000000040100008a00000000011000310000074b02000041000000000310004c000000000300001900000000030240190000074b01100197000000000410004c000000000200a0190000074b0110009c00000000010300190000000001026019000000000110004c000011cb0000c13d00000002010000391c0c1c0a0000040f0000000202000029000000000302043300000000001304350000002002000039000000000103001900000000030000191c0c01420000040f0000000001000416000000000110004c000011cb0000c13d000000040100008a00000000011000310000074b02000041000000200310008c000000000300001900000000030240190000074b01100197000000000410004c000000000200a0190000074b0110009c00000000010300190000000001026019000000000110004c000011cb0000c13d00000004010000390000000201100367000000000101043b000b00000001001d0000000001000411000000000010043500000008010000390000002002000039000000000012043500000000010000190000000002050019000200000002001d1c0c01190000040f1c0c1c0a0000040f000000ff0110018f1c0c15d50000040f0000000f020000390000000b010000291c0c1c080000040f000000020100002900000000010104330000000b02000029000000000021043500000704020000410000000003000414000007040430009c0000000003028019000007040410009c00000000010280190000004001100210000000c002300210000000000112019f0000070b011001c70000800d02000039000000010300003900000774040000411c0c1bfe0000040f0000000101200190000001fd0000c13d000011cb0000013d000200000005001d000000040130008a0000074b03000041000000a00410008c000000000400001900000000040340190000074b01100197000000000510004c000000000300a0190000074b0110009c00000000010400190000000001036019000000000110004c000011cb0000c13d0000000401200370000000000101043b000b00000001001d000007060110009c000011cb0000213d0000002401200370000000000101043b000a00000001001d0000004401200370000000000101043b000900000001001d000007550110009c000011cb0000213d0000006401200370000000000101043b000800000001001d000007550110009c000011cb0000213d0000008401200370000000000101043b000700000001001d000007040110009c000011cb0000213d0000000501000039000600000001001d1c0c1c0a0000040f000000020110008c0000000001000019000000010100c0391c0c12cc0000040f000000020100003900000006020000291c0c1c080000040f00000006010000391c0c1c0a0000040f000000ff01100190000000000100001900000001010060391c0c12e20000040f00000000010004160000000a02000029000000000121004b000000000100001900000001010060391c0c13fa0000040f0000001301000039000600000001001d1c0c1c0a0000040f0000070601100197000500000001001d000000000110004c0000000001000019000000010100c0391c0c140c0000040f0000000b0100002900000005020000290000000a030000290000000904000029000000080500002900000007060000291c0c14420000040f000500000001001d00000006010000291c0c1c0a0000040f0000076902000041000000000020043900000706021001970000000401000039000600000002001d0000000000210439000080020100003900000024020000391c0c01300000040f000000000110004c000011cb0000613d000000020100002900000000030104330000076a01000041000000000013043500000000010004140000000605000029000000040250008c000011a10000613d0000000a02000029000000000220004c000400000003001d0000118b0000c13d00000004040000390000000002050019000000000503001900000000060000191c0c00c30000040f0000119e0000013d0000000001000416000000000110004c000011cb0000c13d000000040100008a00000000011000310000074b02000041000000000310004c000000000300001900000000030240190000074b01100197000000000410004c000000000200a0190000074b0110009c00000000010300190000000001026019000000000110004c000011cb0000c13d0000000001000411000a00000001001d000000000010043500000007010000390000002002000039000900000002001d000000000012043500000040020000390000000001000019000b00000002001d1c0c01190000040f1c0c1c0a0000040f000000ff0110018f1c0c1b240000040f00000006010000391c0c1c0a0000040f000000ff0210019000000f240000c13d0000000b0100002900000000010104330000004402100039000007710300004100000000003204350000002402100039000000140300003900000000003204350000070902000041000000000021043500000004021000390000000903000029000000000032043500000064020000391c0c014c0000040f000200000005001d0000000001000416000000000110004c000011cb0000c13d000000040100008a00000000011000310000074b02000041000000000310004c000000000300001900000000030240190000074b01100197000000000410004c000000000200a0190000074b0110009c00000000010300190000000001026019000000000110004c000011cb0000c13d00000013010000391c0c1c0a0000040f00000002020000290000000003020433000007060110019700000000001304350000002002000039000000000103001900000000030000191c0c01420000040f0000000001000416000000000110004c000011cb0000c13d000000040100008a00000000011000310000074b02000041000000200310008c000000000300001900000000030240190000074b01100197000000000410004c000000000200a0190000074b0110009c00000000010300190000000001026019000000000110004c000011cb0000c13d00000004010000390000000201100367000000000101043b000b00000001001d000007040110009c000011cb0000213d00000000010004110000000000100435000000080100003900000020020000390000000000120435000000400200003900000000010000191c0c01190000040f1c0c1c0a0000040f000000ff0110018f1c0c15d50000040f0000001801000039000a00000001001d1c0c1c0a0000040f0000076e011001970000000b02000029000000000121019f0000000a020000291c0c1c080000040f0000000001000019000000000200001900000000030000191c0c01420000040f000200000005001d0000000001000416000000000110004c000011cb0000c13d000000040100008a00000000011000310000074b02000041000000200310008c000000000300001900000000030240190000074b01100197000000000410004c000000000200a0190000074b0110009c00000000010300190000000001026019000000000110004c000011cb0000c13d00000004010000390000000201100367000000000101043b000b00000001001d1c0c12170000040f0000000b01000029000007060110019700000000001004350000000e010000390000002002000039000b00000002001d0000000000120435000000000100001900000002020000291c0c01190000040f1c0c1c0a0000040f00000002020000290000000002020433000000000012043500000000010200190000000b0200002900000000030000191c0c01420000040f0000000001000416000000000110004c000011cb0000c13d000000040100008a00000000011000310000074b02000041000000400310008c000000000300001900000000030240190000074b01100197000000000410004c000000000200a0190000074b0110009c00000000010300190000000001026019000000000110004c000011cb0000c13d00000002010003670000000402100370000000000202043b000b00000002001d000007060220009c000011cb0000213d0000002401100370000000000101043b000a00000001001d0000000501000039000900000001001d1c0c1c0a0000040f000000020110008c0000000001000019000000010100c0391c0c12cc0000040f000000020100003900000009020000291c0c1c080000040f00000006010000391c0c1c0a0000040f000000ff01100190000000000100001900000001010060391c0c12e20000040f0000000b01000029000000000010043500000011010000390000002002000039000000000012043500000040020000390000000001000019000900000002001d1c0c01190000040f1c0c1c0a0000040f0000000a02000029000000000112004b000000000100001900000001010020391c0c141e0000040f00000010010000391c0c1c0a0000040f0000075502100197000007550320009c00000a4f0000613d00000768011001970000000102200039000000000112019f0000001002000039000800000002001d1c0c1c080000040f0000000002000411000700000002001d00000000030004100000000b010000290000000a040000291c0c130b0000040f00000008010000291c0c1c0a0000040f00000007020000290000070602200197000000090300002900000000030304330000002004300039000000000024043500000040023000390000000b04000029000000000042043500000060023000390000000a0400002900000000004204350000075501100197000000000013043500000704010000410000000002000414000007040420009c0000000002018019000007040430009c00000000010340190000004001100210000000c002200210000000000112019f00000763011001c70000800d0200003900000001030000390000076c040000411c0c1bfe0000040f0000000101200190000011030000c13d000011cb0000013d000200000005001d0000000001000416000000000110004c000011cb0000c13d000000040100008a00000000011000310000074b02000041000000000310004c000000000300001900000000030240190000074b01100197000000000410004c000000000200a0190000074b0110009c00000000010300190000000001026019000000000110004c000011cb0000c13d00000009010000391c0c1c0a0000040f0000000202000029000000000302043300000000001304350000002002000039000000000103001900000000030000191c0c01420000040f000200000005001d0000000001000416000000000110004c000011cb0000c13d000000040100008a00000000011000310000074b02000041000000200310008c000000000300001900000000030240190000074b01100197000000000410004c000000000200a0190000074b0110009c00000000010300190000000001026019000000000110004c000011cb0000c13d00000004010000390000000201100367000000000101043b000b00000001001d1c0c12170000040f0000000b010000290000070601100197000000000010043500000017010000390000002002000039000b00000002001d0000000000120435000000000100001900000002020000291c0c01190000040f1c0c1c0a0000040f00000002020000290000000002020433000000000012043500000000010200190000000b0200002900000000030000191c0c01420000040f000200000005001d0000000001000416000000000110004c000011cb0000c13d000000040100008a00000000011000310000074b02000041000000000310004c000000000300001900000000030240190000074b01100197000000000410004c000000000200a0190000074b0110009c00000000010300190000000001026019000000000110004c000011cb0000c13d00000003010000391c0c1c0a0000040f0000000202000029000000000302043300000000001304350000002002000039000000000103001900000000030000191c0c01420000040f0000000001000416000000000110004c000011cb0000c13d0000000003000031000000040130008a0000074b02000041000000800410008c000000000400001900000000040240190000074b01100197000000000510004c000000000200a0190000074b0110009c00000000010400190000000001026019000000000110004c000011cb0000c13d00000002020003670000000401200370000000000101043b000007550410009c000011cb0000213d00000023041000390000074b05000041000000000634004b000000000600001900000000060580190000074b073001970000074b04400197000000000874004b0000000005008019000000000474013f0000074b0440009c00000000040600190000000004056019000000000440004c000011cb0000c13d0000000404100039000000000242034f000000000202043b00000024011000391c0c12310000040f000b00000001001d00000024010000390000000201100367000000000101043b000007550210009c000011cb0000213d000000000200003100000004011000391c0c11ce0000040f000a00000001001d000900000002001d00000044010000390000000201100367000000000101043b000007550210009c000011cb0000213d000000000200003100000004011000391c0c11ce0000040f000800000001001d000700000002001d00000064010000390000000201100367000000000101043b000007550210009c000011cb0000213d000000000200003100000004011000391c0c11ce0000040f000000000601001900000000070200190000000b010000290000000a020000290000000903000029000000080400002900000007050000291c0c16c30000040f0000000001000019000000000200001900000000030000191c0c01420000040f0000000001000416000000000110004c000011cb0000c13d000000040100008a00000000011000310000074b02000041000000200310008c000000000300001900000000030240190000074b01100197000000000410004c000000000200a0190000074b0110009c00000000010300190000000001026019000000000110004c000011cb0000c13d00000004010000390000000201100367000000000101043b000b00000001001d1c0c12170000040f00000000010000191c0c1c0a0000040f00000706011001970000000002000411000000000121004b000000000100001900000001010060391c0c16a10000040f0000000b010000291c0c1b360000040f0000000001000019000000000200001900000000030000191c0c01420000040f0000000001000416000000000110004c000011cb0000c13d000000040100008a00000000011000310000074b02000041000000000310004c000000000300001900000000030240190000074b01100197000000000410004c000000000200a0190000074b0110009c00000000010300190000000001026019000000000110004c000011cb0000c13d00000000010004111c0c1b360000040f0000000001000019000000000200001900000000030000191c0c01420000040f000200000005001d0000000001000416000000000110004c000011cb0000c13d000000040100008a00000000011000310000074b02000041000000200310008c000000000300001900000000030240190000074b01100197000000000410004c000000000200a0190000074b0110009c00000000010300190000000001026019000000000110004c000011cb0000c13d000009110000013d000200000005001d0000000001000416000000000110004c000011cb0000c13d000000040100008a00000000011000310000074b02000041000000000310004c000000000300001900000000030240190000074b01100197000000000410004c000000000200a0190000074b0110009c00000000010300190000000001026019000000000110004c000011cb0000c13d00000010010000391c0c1c0a0000040f00000002020000290000000003020433000007550110019700000000001304350000002002000039000000000103001900000000030000191c0c01420000040f000200000005001d0000000001000416000000000110004c000011cb0000c13d000000040100008a00000000011000310000074b02000041000000000310004c000000000300001900000000030240190000074b01100197000000000410004c000000000200a0190000074b0110009c00000000010300190000000001026019000000000110004c000011cb0000c13d00000004010000391c0c1c0a0000040f0000000202000029000000000302043300000000001304350000002002000039000000000103001900000000030000191c0c01420000040f000200000005001d0000000001000416000000000110004c000011cb0000c13d000000040100008a00000000011000310000074b02000041000000200310008c000000000300001900000000030240190000074b01100197000000000410004c000000000200a0190000074b0110009c00000000010300190000000001026019000000000110004c000011cb0000c13d00000004010000390000000201100367000000000101043b000b00000001001d00000006010000391c0c1c0a0000040f000000ff01100190000000000100001900000001010060391c0c12e20000040f000000020200002900000000010204330000075e0310009c00000d5e0000213d0000008003100039000000000032043500000060031000390000000000030435000000400310003900000000000304350000002003100039000000000003043500000000000104350000000b0100002900000000001004350000000d030000390000002001000039000800000001001d000700000003001d000000000031043500000000010000191c0c01190000040f0000000202000029000000000401001900000000030204330000075e0130009c00000d5e0000213d0000000b01000029000000800130003900000000001204350000000001040019000a00000003001d000900000004001d1c0c1c0a0000040f00000706011001970000000a020000290000000000120435000000090100002900000001011000391c0c1c0a0000040f00000706011001970000000a020000290000002002200039000600000002001d0000000000120435000000090100002900000002011000391c0c1c0a0000040f0000000a020000290000004002200039000500000002001d0000000000120435000000090100002900000003011000391c0c1c0a0000040f0000000a02000029000000600220003900000000030100190000000000320435000000000130004c000010490000c13d0000000201000029000000000101043300000044021000390000076503000041000000000032043500000024021000390000001a0300003900000000003204350000070902000041000000000021043500000004021000390000000803000029000000000032043500000064020000391c0c014c0000040f000200000005001d0000000001000416000000000110004c000011cb0000c13d00000000010000311c0c11eb0000040f000a00000001001d000900000002001d000800000003001d000700000004001d00000000010000191c0c1c0a0000040f00000706011001970000000002000411000000000121004b000000000100001900000001010060391c0c16a10000040f0000075a0100004100000000001004390000800b0100003900000004020000391c0c01300000040f000b00000001001d00000003010000391c0c1c0a0000040f0000000b02000029000000000112004b00000e120000a13d000000010100008a00000003020000391c0c1c080000040f0000000a010000290000000902000029000000080300002900000007040000291c0c19980000040f0000000001000019000000000200001900000000030000191c0c01420000040f000200000005001d0000000001000416000000000110004c000011cb0000c13d000000040100008a00000000011000310000074b02000041000000000310004c000000000300001900000000030240190000074b01100197000000000410004c000000000200a0190000074b0110009c00000000010300190000000001026019000000000110004c000011cb0000c13d00000014010000391c0c1c0a0000040f0000000202000029000000000302043300000000001304350000002002000039000000000103001900000000030000191c0c01420000040f000200000005001d0000000001000416000000000110004c000011cb0000c13d000000040100008a00000000011000310000074b02000041000000200310008c000000000300001900000000030240190000074b01100197000000000410004c000000000200a0190000074b0110009c00000000010300190000000001026019000000000110004c000011cb0000c13d00000004010000390000000201100367000000000101043b000b00000001001d1c0c12170000040f0000000b01000029000007060110019700000000001004350000000b010000390000002002000039000b00000002001d0000000000120435000000000100001900000002020000291c0c01190000040f1c0c1c0a0000040f00000002020000290000000002020433000000000012043500000000010200190000000b0200002900000000030000191c0c01420000040f0000000001000416000000000110004c000011cb0000c13d0000000002000031000000040120008a0000074b03000041000000c00410008c000000000400001900000000040340190000074b01100197000000000510004c000000000300a0190000074b0110009c00000000010400190000000001036019000000000110004c000011cb0000c13d00000024010000390000000201100367000000000101043b000007550310009c000011cb0000213d00000004011000391c0c11ce0000040f000b00000001001d000a00000002001d00000044010000390000000201100367000000000101043b000007550210009c000011cb0000213d000000000200003100000004011000391c0c11ce0000040f000900000001001d000800000002001d00000064010000390000000201100367000000000101043b000007550210009c000011cb0000213d000000000200003100000004011000391c0c11ce0000040f000700000001001d000600000002001d00000084010000390000000201100367000000000101043b000007550210009c000011cb0000213d000000000200003100000004011000391c0c11ce0000040f000500000001001d000400000002001d000000a4010000390000000201100367000000000101043b000007550210009c000011cb0000213d000000000200003100000004011000391c0c11ce0000040f00000004030000390000000203300367000000000303043b000000000a010019000000000b02001900000000010300190000000b020000290000000a030000290000000904000029000000080500002900000007060000290000000607000029000000050800002900000004090000291c0c18520000040f0000000001000019000000000200001900000000030000191c0c01420000040f000200000005001d0000000001000416000000000110004c000011cb0000c13d000000040100008a00000000011000310000074b02000041000000200310008c000000000300001900000000030240190000074b01100197000000000410004c000000000200a0190000074b0110009c00000000010300190000000001026019000000000110004c000011cb0000c13d00000004010000390000000201100367000000000101043b000b00000001001d1c0c12170000040f0000000b010000290000070601100197000000000010043500000011010000390000002002000039000b00000002001d0000000000120435000000000100001900000002020000291c0c01190000040f1c0c1c0a0000040f00000002020000290000000002020433000000000012043500000000010200190000000b0200002900000000030000191c0c01420000040f0000000001000416000000000110004c000011cb0000c13d000000040100008a00000000011000310000074b02000041000000200310008c000000000300001900000000030240190000074b01100197000000000410004c000000000200a0190000074b0110009c00000000010300190000000001026019000000000110004c000011cb0000c13d00000000010004110000000000100435000000080100003900000020020000390000000000120435000000400200003900000000010000191c0c01190000040f1c0c1c0a0000040f000000ff0110018f1c0c15d50000040f00000004010000390000000201100367000000000101043b00000014020000391c0c1c080000040f0000000001000019000000000200001900000000030000191c0c01420000040f000200000005001d0000000001000416000000000110004c000011cb0000c13d000000040100008a00000000011000310000074b02000041000000000310004c000000000300001900000000030240190000074b01100197000000000410004c000000000200a0190000074b0110009c00000000010300190000000001026019000000000110004c000011cb0000c13d00000001010000391c0c1c0a0000040f0000000202000029000000000302043300000000001304350000002002000039000000000103001900000000030000191c0c01420000040f000200000005001d0000000001000416000000000110004c000011cb0000c13d00000000010000311c0c121d0000040f000000000010043500000012010000390000002002000039000b00000002001d0000000000120435000000000100001900000002020000291c0c01190000040f1c0c1c0a0000040f00000002020000290000000002020433000000ff011001900000000001000019000000010100c039000000000012043500000000010200190000000b0200002900000000030000191c0c01420000040f000200000005001d0000000001000416000000000110004c000011cb0000c13d000000040100008a00000000011000310000074b02000041000000200310008c000000000300001900000000030240190000074b01100197000000000410004c000000000200a0190000074b0110009c00000000010300190000000001026019000000000110004c000011cb0000c13d00000d8f0000013d0000000001000416000000000110004c000011cb0000c13d000000040100008a00000000011000310000074b02000041000000200310008c000000000300001900000000030240190000074b01100197000000000410004c000000000200a0190000074b0110009c00000000010300190000000001026019000000000110004c000011cb0000c13d00000004010000390000000201100367000000000101043b000b00000001001d1c0c12170000040f00000000010000191c0c1c0a0000040f00000706011001970000000002000411000000000121004b000000000100001900000001010060391c0c16a10000040f0000000b010000291c0c1ade0000040f0000000001000019000000000200001900000000030000191c0c01420000040f0000000001000416000000000110004c000011cb0000c13d000000040100008a00000000011000310000074b02000041000000200310008c000000000300001900000000030240190000074b01100197000000000410004c000000000200a0190000074b0110009c00000000010300190000000001026019000000000110004c000011cb0000c13d0000000401000039000a00000001001d0000000201100367000000000101043b000b00000001001d00000000010000191c0c1c0a0000040f00000706011001970000000002000411000000000121004b000000000100001900000001010060391c0c16a10000040f0000000a010000291c0c1c0a0000040f0000000b03000029000000000113004b00000f3d0000a13d000000040200003900000000010300191c0c1c080000040f0000000001000019000000000200001900000000030000191c0c01420000040f0000000001000416000000000110004c000011cb0000c13d000000040100008a00000000011000310000074b02000041000000200310008c000000000300001900000000030240190000074b01100197000000000410004c000000000200a0190000074b0110009c00000000010300190000000001026019000000000110004c000011cb0000c13d00000004010000390000000201100367000000000101043b000b00000001001d000007060110009c000011cb0000213d00000000010000191c0c1c0a0000040f000900000001001d00000706021001970000000001000411000a00000002001d000000000112004b000000000100001900000001010060391c0c16a10000040f0000000b01000029000000000110004c00000f4f0000c13d0000000201000029000000000101043300000064021000390000074c03000041000000000032043500000044021000390000074d0300004100000000003204350000002402100039000000260300003900000000003204350000070902000041000000000021043500000004021000390000002003000039000000000032043500000084020000391c0c014c0000040f0000000001000416000000000110004c000011cb0000c13d000000040100008a00000000011000310000074b02000041000000200310008c000000000300001900000000030240190000074b01100197000000000410004c000000000200a0190000074b0110009c00000000010300190000000001026019000000000110004c000011cb0000c13d00000004010000390000000201100367000000000101043b000b00000001001d1c0c12170000040f0000000b01000029000007060110019700000000001004350000000c010000390000002002000039000b00000002001d0000000000120435000000000100001900000002020000291c0c01190000040f1c0c1c0a0000040f00000002020000290000000002020433000000000012043500000000010200190000000b0200002900000000030000191c0c01420000040f0000000001000416000000000110004c000011cb0000c13d00000000010000311c0c11eb0000040f0000000005000411000000000050043500000008050000390000002006000039000300000006001d0000000000560435000400000001001d000600000002001d000200000003001d000500000004001d000000400200003900000000010000191c0c01190000040f1c0c1c0a0000040f000000ff0110018f1c0c15d50000040f00000006010000290000000502000029000000000121004b000000000100001900000001010060391c0c15e70000040f0000001601000039000100000001001d00000000050000190000000601000029000000000115004b000001fd0000813d0000000501000029000000000115004b00000e0a0000813d0000000501500210000000040200002900000000032100190000000202000367000b00000003001d000000000332034f000000000303043b000007060430009c000011cb0000213d00000002040000290000000001410019000800000001001d000000000112034f000000000101043b000a00000001001d000000000030043500000003010000290000000102000029000000000021043500000040020000390000000001000019000700000002001d000900000005001d1c0c01190000040f00000000020100190000000a010000291c0c1c080000040f00000002020003670000000b01000029000000000112034f000000000101043b000007060310009c000011cb0000213d0000000803000029000000000232034f000000000202043b0000000703000029000000000303043300000020043000390000000000240435000000000013043500000704010000410000000002000414000007040420009c0000000002018019000007040430009c00000000010340190000004001100210000000c002200210000000000112019f00000750011001c70000800d02000039000000010300003900000777040000411c0c1bfe0000040f000000090500002900000001055000390000000101200190000007ee0000c13d000011cb0000013d000200000005001d0000000001000416000000000110004c000011cb0000c13d000000040100008a00000000011000310000074b02000041000000000310004c000000000300001900000000030240190000074b01100197000000000410004c000000000200a0190000074b0110009c00000000010300190000000001026019000000000110004c000011cb0000c13d00000000010000191c0c1c0a0000040f00000706011001970000000002000411000000000121004b000000000100001900000001010060391c0c16a10000040f0000075a01000041000a00000001001d00000000001004390000800b01000039000800000001001d0000000402000039000b00000002001d1c0c01300000040f000900000001001d0000000b010000291c0c1c0a0000040f0000000a020000290000000000200439000a00000001001d00000008010000290000000b020000291c0c01300000040f00000009020000290000000a030000290000000003230019000000000131004b00000a4f0000213d00000003020000390000000001030019000b00000003001d1c0c1c080000040f000000020100002900000000010104330000000b02000029000000000021043500000704020000410000000003000414000007040430009c0000000003028019000007040410009c00000000010280190000004001100210000000c002300210000000000112019f0000070b011001c70000800d02000039000000010300003900000775040000411c0c1bfe0000040f0000000101200190000001fd0000c13d000011cb0000013d000200000005001d0000000001000416000000000110004c000011cb0000c13d000000040100008a00000000011000310000074b02000041000000000310004c000000000300001900000000030240190000074b01100197000000000410004c000000000200a0190000074b0110009c00000000010300190000000001026019000000000110004c000011cb0000c13d00000018010000391c0c1c0a0000040f00000002020000290000000003020433000007040110019700000000001304350000002002000039000000000103001900000000030000191c0c01420000040f0000000001000416000000000110004c000011cb0000c13d000000040100008a00000000011000310000074b02000041000000200310008c000000000300001900000000030240190000074b01100197000000000410004c000000000200a0190000074b0110009c00000000010300190000000001026019000000000110004c000011cb0000c13d00000004010000390000000201100367000000000101043b000b00000001001d000007060110009c000011cb0000213d00000000010000191c0c1c0a0000040f00000706011001970000000002000411000000000121004b000000000100001900000001010060391c0c16a10000040f0000000b01000029000000000010043500000008020000390000002001000039000900000001001d000800000002001d000000000021043500000040020000390000000001000019000a00000002001d1c0c01190000040f1c0c1c0a0000040f000000ff0110019000000f640000c13d0000000b01000029000000000010043500000009010000290000000802000029000000000021043500000000010000190000000a020000291c0c01190000040f000900000001001d1c0c1c0a0000040f000001000200008a000000000121016f00000001011001bf00000009020000291c0c1c080000040f0000000a0100002900000000010104330000000b02000029000000000021043500000704020000410000000003000414000007040430009c0000000003028019000007040410009c00000000010280190000004001100210000000c002300210000000000112019f0000070b011001c70000800d0200003900000001030000390000070e040000411c0c1bfe0000040f0000000101200190000001fd0000c13d000011cb0000013d000200000005001d0000000001000416000000000110004c000011cb0000c13d00000000010000311c0c121d0000040f000000000010043500000015010000390000002002000039000b00000002001d0000000000120435000000000100001900000002020000291c0c01190000040f1c0c1c0a0000040f00000002020000290000000002020433000000ff011001900000000001000019000000010100c039000000000012043500000000010200190000000b0200002900000000030000191c0c01420000040f000200000005001d0000000001000416000000000110004c000011cb0000c13d000000040100008a00000000011000310000074b02000041000000200310008c000000000300001900000000030240190000074b01100197000000000410004c000000000200a0190000074b0110009c00000000010300190000000001026019000000000110004c000011cb0000c13d00000004010000390000000201100367000000000101043b000b00000001001d1c0c12170000040f0000000b010000290000070601100197000000000010043500000007010000390000002002000039000b00000002001d000000000012043500000000010000190000000202000029000200000002001d1c0c01190000040f1c0c1c0a0000040f00000002020000290000000002020433000000ff011001900000000001000019000000010100c039000000000012043500000000010200190000000b0200002900000000030000191c0c01420000040f0000000001000416000000000110004c000011cb0000c13d00000000010000311c0c11eb0000040f0000000005000411000000000050043500000008050000390000002006000039000300000006001d0000000000560435000400000001001d000600000002001d000200000003001d000500000004001d000000400200003900000000010000191c0c01190000040f1c0c1c0a0000040f000000ff0110018f1c0c15d50000040f00000006010000290000000502000029000000000121004b000000000100001900000001010060391c0c15e70000040f0000000b01000039000100000001001d00000000050000190000000601000029000000000115004b000001fd0000813d0000000501000029000000000115004b00000e0a0000813d0000000501500210000000040200002900000000032100190000000202000367000b00000003001d000000000332034f000000000303043b000007060430009c000011cb0000213d00000002040000290000000001410019000800000001001d000000000112034f000000000101043b000a00000001001d000000000030043500000003010000290000000102000029000000000021043500000040020000390000000001000019000700000002001d000900000005001d1c0c01190000040f00000000020100190000000a010000291c0c1c080000040f00000002020003670000000b01000029000000000112034f000000000101043b000007060310009c000011cb0000213d0000000803000029000000000232034f000000000202043b0000000703000029000000000303043300000020043000390000000000240435000000000013043500000704010000410000000002000414000007040420009c0000000002018019000007040430009c00000000010340190000004001100210000000c002200210000000000112019f00000750011001c70000800d0200003900000001030000390000076f040000411c0c1bfe0000040f0000000905000029000000010550003900000001012001900000094a0000c13d000011cb0000013d0000000001000416000000000110004c000011cb0000c13d000000040100008a00000000011000310000074b02000041000000200310008c000000000300001900000000030240190000074b01100197000000000410004c000000000200a0190000074b0110009c00000000010300190000000001026019000000000110004c000011cb0000c13d00000004010000390000000201100367000000000101043b000b00000001001d0000000001000411000000000010043500000008010000390000002002000039000000000012043500000000010000190000000002050019000200000002001d1c0c01190000040f1c0c1c0a0000040f000000ff0110018f1c0c15d50000040f00000009020000390000000b010000291c0c1c080000040f000000020100002900000000010104330000000b02000029000000000021043500000704020000410000000003000414000007040430009c0000000003028019000007040410009c00000000010280190000004001100210000000c002300210000000000112019f0000070b011001c70000800d0200003900000001030000390000076d040000411c0c1bfe0000040f0000000101200190000001fd0000c13d000011cb0000013d000200000005001d0000000001000416000000000110004c000011cb0000c13d000000040100008a00000000011000310000074b02000041000000000310004c000000000300001900000000030240190000074b01100197000000000410004c000000000200a0190000074b0110009c00000000010300190000000001026019000000000110004c000011cb0000c13d00000006010000391c0c1c0a0000040f00000002020000290000000003020433000000ff011001900000000001000019000000010100c03900000000001304350000002002000039000000000103001900000000030000191c0c01420000040f000200000005001d0000000001000416000000000110004c000011cb0000c13d000000040100008a00000000011000310000074b02000041000000200310008c000000000300001900000000030240190000074b01100197000000000410004c000000000200a0190000074b0110009c00000000010300190000000001026019000000000110004c000011cb0000c13d00000004010000390000000201100367000000000101043b000b00000001001d1c0c12170000040f0000000b01000029000007060110019700000000001004350000000a010000390000002002000039000b00000002001d0000000000120435000000000100001900000002020000291c0c01190000040f1c0c1c0a0000040f00000002020000290000000002020433000000000012043500000000010200190000000b0200002900000000030000191c0c01420000040f000200000005001d000000040130008a0000074b03000041000000200410008c000000000400001900000000040340190000074b01100197000000000510004c000000000300a0190000074b0110009c00000000010400190000000001036019000000000110004c000011cb0000c13d0000000401200370000000000101043b000b00000001001d0000000501000039000a00000001001d1c0c1c0a0000040f000000020110008c0000000001000019000000010100c0391c0c12cc0000040f00000002010000390000000a020000291c0c1c080000040f00000006010000391c0c1c0a0000040f000000ff01100190000000000100001900000001010060391c0c12e20000040f00000000010004160000000b02000029000000000121004b000000000100001900000001010060391c0c13fa0000040f00000013010000391c0c1c0a0000040f0000070601100197000a00000001001d000000000110004c0000000001000019000000010100c0391c0c140c0000040f0000000a01000029000000000010043500000011010000390000002002000039000000000012043500000040020000390000000001000019000a00000002001d1c0c01190000040f1c0c1c0a0000040f0000000b02000029000000000112004b000000000100001900000001010020391c0c141e0000040f00000010010000391c0c1c0a0000040f0000075502100197000007550120009c00000e210000c13d00000773010000410000000000100435000000110100003900000004020000390000000000120435000000240200003900000000010000191c0c014c0000040f0000000001000416000000000110004c000011cb0000c13d000000040100008a00000000011000310000074b02000041000000200310008c000000000300001900000000030240190000074b01100197000000000410004c000000000200a0190000074b0110009c00000000010300190000000001026019000000000110004c000011cb0000c13d00000004010000390000000201100367000000000101043b000b00000001001d000007060110009c000011cb0000213d00000000010000191c0c1c0a0000040f00000706011001970000000002000411000000000121004b000000000100001900000001010060391c0c16a10000040f0000000b01000029000000000010043500000007020000390000002001000039000900000001001d000800000002001d000000000021043500000040020000390000000001000019000a00000002001d1c0c01190000040f1c0c1c0a0000040f000000ff0110019000000f730000c13d0000000b01000029000000000010043500000009010000290000000802000029000000000021043500000000010000190000000a020000291c0c01190000040f000900000001001d1c0c1c0a0000040f000001000200008a000000000121016f00000001011001bf00000009020000291c0c1c080000040f0000000a0100002900000000010104330000000b02000029000000000021043500000704020000410000000003000414000007040430009c0000000003028019000007040410009c00000000010280190000004001100210000000c002300210000000000112019f0000070b011001c70000800d0200003900000001030000390000070c040000411c0c1bfe0000040f0000000101200190000001fd0000c13d000011cb0000013d0000000001000416000000000110004c000011cb0000c13d000000040100008a00000000011000310000074b02000041000000000310004c000000000300001900000000030240190000074b01100197000000000410004c000000000200a0190000074b0110009c00000000010300190000000001026019000000000110004c000011cb0000c13d0000000001000411000b00000001001d000000000010043500000007010000390000002002000039000000000012043500000000010000190000000002050019000200000002001d1c0c01190000040f1c0c1c0a0000040f000000ff0110018f1c0c1b240000040f0000000601000039000a00000001001d1c0c1c0a0000040f000900000001001d000000ff02100190000000000100001900000001010060391c0c12e20000040f000001000100008a0000000902000029000000000112016f00000001011001bf0000000a020000291c0c1c080000040f000000020100002900000000010104330000000b02000029000000000021043500000704020000410000000003000414000007040430009c0000000003028019000007040410009c00000000010280190000004001100210000000c002300210000000000112019f0000070b011001c70000800d02000039000000010300003900000767040000411c0c1bfe0000040f0000000101200190000001fd0000c13d000011cb0000013d0000000001000416000000000110004c000011cb0000c13d00000000010000311c0c11eb0000040f0000000005000411000000000050043500000008050000390000002006000039000300000006001d0000000000560435000400000001001d000600000002001d000200000003001d000500000004001d000000400200003900000000010000191c0c01190000040f1c0c1c0a0000040f000000ff0110018f1c0c15d50000040f00000006010000290000000502000029000000000121004b000000000100001900000001010060391c0c15e70000040f0000001701000039000100000001001d00000000050000190000000601000029000000000115004b000001fd0000813d0000000501000029000000000115004b00000e0a0000813d0000000501500210000000040200002900000000032100190000000202000367000b00000003001d000000000332034f000000000303043b000007060430009c000011cb0000213d00000002040000290000000001410019000800000001001d000000000112034f000000000101043b000a00000001001d000000000030043500000003010000290000000102000029000000000021043500000040020000390000000001000019000700000002001d000900000005001d1c0c01190000040f00000000020100190000000a010000291c0c1c080000040f00000002020003670000000b01000029000000000112034f000000000101043b000007060310009c000011cb0000213d0000000803000029000000000232034f000000000202043b0000000703000029000000000303043300000020043000390000000000240435000000000013043500000704010000410000000002000414000007040420009c0000000002018019000007040430009c00000000010340190000004001100210000000c002200210000000000112019f00000750011001c70000800d02000039000000010300003900000766040000411c0c1bfe0000040f00000009050000290000000105500039000000010120019000000b070000c13d000011cb0000013d000200000005001d0000000001000416000000000110004c000011cb0000c13d000000040100008a00000000011000310000074b02000041000000000310004c000000000300001900000000030240190000074b01100197000000000410004c000000000200a0190000074b0110009c00000000010300190000000001026019000000000110004c000011cb0000c13d00000000010000191c0c1c0a0000040f00000002020000290000000003020433000007060110019700000000001304350000002002000039000000000103001900000000030000191c0c01420000040f0000000001000416000000000110004c000011cb0000c13d000000040100008a00000000011000310000074b02000041000000200310008c000000000300001900000000030240190000074b01100197000000000410004c000000000200a0190000074b0110009c00000000010300190000000001026019000000000110004c000011cb0000c13d00000004010000390000000201100367000000000101043b000b00000001001d1c0c12170000040f00000000010000191c0c1c0a0000040f00000706011001970000000002000411000000000121004b000000000100001900000001010060391c0c16a10000040f0000001301000039000a00000001001d1c0c1c0a0000040f0000000b0200002900000706022001970000070501100197000000000121019f0000000a020000291c0c1c080000040f0000000001000019000000000200001900000000030000191c0c01420000040f000b00000003001d000200000005001d0000000001000416000000000110004c000011cb0000c13d00000000010000311c0c12720000040f000900000001001d000800000002001d000700000003001d000600000004001d000500000005001d000400000006001d000300000007001d000100000008001d00000006010000391c0c1c0a0000040f000000ff01100190000000000100001900000001010060391c0c12e20000040f00000002010000290000000001010433000a00000001001d000007520100004100000000001004390000800b0100003900000004020000391c0c01300000040f00000002040000290000000b0200002900000060022002100000000a05000029000000400350003900000000002304350000075d020000410000005403500039000000000023043500000000030500190000003f020000390000000000230435000000000201001900000020013000390000000000210435000007540230009c00000d5e0000213d0000006002300039000000000024043500000000020304331c0c01190000040f000000020200002900000000020204330000002003200039000000000013043500000008090000290000001f0390018f0000004001200039000000090400002900000002044003670000000505900270000000000650004c00000bd70000613d000000000600001900000005076002100000000008710019000000000774034f000000000707043b00000000007804350000000106600039000000000756004b00000bcf0000413d000000000630004c00000be60000613d0000000505500210000000000454034f00000000055100190000000303300210000000000605043300000000063601cf000000000636022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000363019f0000000000350435000000000191001900000000000104350000000001210049000000200310008a00000000003204350000001f01100039000000200300008a000000000331016f0000000001230019000000000331004b00000000030000190000000103004039000007550410009c000000020400002900000d5e0000213d000000010330019000000d5e0000c13d000000000014043500000000010200190000000702000029000000060300002900000005040000290000000405000029000000030600002900000001070000291c0c16c30000040f0000000003000031000000090100002900000008020000291c0c12310000040f00000002030000290000000004030433000007570240009c00000d5e0000213d000000c0024000390000000000230435000000a002400039000400000002001d00000000000204350000008002400039000500000002001d00000000000204350000006002400039000600000002001d00000000000204350000004002400039000700000002001d00000000000204350000000000040435000900000004001d0000002002400039000800000002001d00000000000204351c0c14f00000040f00000000030100190000002001300039000a00000001001d000b00000003001d00000000010304330000000a0200002900000000020204330000000002020433000000000121004b00000f820000813d00000000010300191c0c15030000040f000000010310008c00000c310000c13d0000000b010000291c0c15110000040f0000075501100197000000090200002900000000001204350000000b0300002900000c200000013d0000000b03000029000000020310008c00000c3b0000c13d0000000b010000291c0c15110000040f0000000b0300002900000755011001970000000802000029000000000012043500000c200000013d000000030310008c00000c490000c13d0000000b010000291c0c15400000040f0000000002010433000000140220008c000011cb0000c13d000000200110003900000000010104330000006001100270000000070200002900000000001204350000000b0300002900000c200000013d000000040310008c00000c570000c13d0000000b010000291c0c15400000040f0000000002010433000000140220008c000011cb0000c13d000000200110003900000000010104330000006001100270000000060200002900000000001204350000000b0300002900000c200000013d000000050310008c00000c600000c13d0000000b010000291c0c15400000040f1c0c15c50000040f0000000b030000290000000502000029000000000012043500000c200000013d000000060110008c0000000b0100002900000c6d0000c13d1c0c15400000040f0000000002010433000000200220008c000011cb0000c13d00000020011000390000000001010433000000040200002900000000001204350000000b0300002900000c200000013d1c0c15980000040f0000000b0300002900000c200000013d000200000005001d0000000001000416000000000110004c000011cb0000c13d000000040100008a00000000011000310000074b02000041000000c00310008c000000000300001900000000030240190000074b01100197000000000410004c000000000200a0190000074b0110009c00000000010300190000000001026019000000000110004c000011cb0000c13d00000002010003670000000402100370000000000202043b000b00000002001d000007060220009c000011cb0000213d0000002402100370000000000202043b000a00000002001d000007060220009c000011cb0000213d0000004402100370000000000202043b000900000002001d0000006402100370000000000202043b000800000002001d000007550220009c000011cb0000213d0000008402100370000000000202043b000700000002001d000007550220009c000011cb0000213d000000a401100370000000000101043b000600000001001d000007040110009c000011cb0000213d0000000501000039000500000001001d1c0c1c0a0000040f000000020110008c0000000001000019000000010100c0391c0c12cc0000040f000000020100003900000005020000291c0c1c080000040f00000006010000391c0c1c0a0000040f000000ff01100190000000000100001900000001010060391c0c12e20000040f0000000b010000290000000a0200002900000009030000290000000804000029000000070500002900000006060000291c0c14420000040f000500000001001d0000000002000411000300000002001d00000000030004100000000a0100002900000009040000291c0c130b0000040f00000002010000290000000001010433000400000001001d000000050200002900000003030000290000000b040000290000000a0500002900000009060000290000000807000029000000070800002900000006090000291c0c12f40000040f000000040400002900000000014100490000070402000041000007040340009c000000000302001900000000030440190000004003300210000007040410009c00000000010280190000006001100210000000000131019f0000000003000414000007040430009c0000000002034019000000c002200210000000000121019f00000707011001c70000800d0200003900000001030000390000075c040000411c0c1bfe0000040f0000000101200190000011cb0000613d000000010100003900000005020000391c0c1c080000040f0000000001000019000000000200001900000000030000191c0c01420000040f000200000005001d0000000001000416000000000110004c000011cb0000c13d00000000010000311c0c121d0000040f00000000001004350000000d0100003900000020020000390000000000120435000000000100001900000002020000291c0c01190000040f000b00000001001d1c0c1c0a0000040f000a00000001001d0000000b0100002900000001011000391c0c1c0a0000040f000900000001001d0000000b0100002900000002011000391c0c1c0a0000040f0000000b020000290000000302200039000b00000001001d00000000010200191c0c1c0a0000040f00000009020000290000070602200197000000020300002900000000030304330000002004300039000000000024043500000040023000390000000b040000290000000000420435000000600230003900000000001204350000000a01000029000007060110019700000000001304350000008002000039000000000103001900000000030000191c0c01420000040f000200000005001d0000000001000416000000000110004c000011cb0000c13d000000040100008a00000000011000310000074b02000041000000000310004c000000000300001900000000030240190000074b01100197000000000410004c000000000200a0190000074b0110009c00000000010300190000000001026019000000000110004c000011cb0000c13d0000000f010000391c0c1c0a0000040f0000000202000029000000000302043300000000001304350000002002000039000000000103001900000000030000191c0c01420000040f000b00000003001d000200000005001d0000000001000416000000000110004c000011cb0000c13d00000000010000311c0c12720000040f000900000001001d000800000002001d000700000003001d000600000004001d000500000005001d000400000006001d000300000007001d000100000008001d00000006010000391c0c1c0a0000040f000000ff01100190000000000100001900000001010060391c0c12e20000040f00000002010000290000000001010433000a00000001001d000007520100004100000000001004390000800b0100003900000004020000391c0c01300000040f00000002040000290000000b0200002900000060022002100000000a0500002900000040035000390000000000230435000007530200004100000054035000390000000000230435000000000305001900000039020000390000000000230435000000000201001900000020013000390000000000210435000007540230009c00000e4a0000a13d00000773010000410000000000100435000000410100003900000004020000390000000000120435000000240200003900000000010000191c0c014c0000040f0000000001000416000000000110004c000011cb0000c13d000000040100008a00000000011000310000074b02000041000000000310004c000000000300001900000000030240190000074b01100197000000000410004c000000000200a0190000074b0110009c00000000010300190000000001026019000000000110004c000011cb0000c13d00000000010004111c0c1ade0000040f0000000001000019000000000200001900000000030000191c0c01420000040f000200000005001d0000000001000416000000000110004c000011cb0000c13d000000040100008a00000000011000310000074b02000041000000200310008c000000000300001900000000030240190000074b01100197000000000410004c000000000200a0190000074b0110009c00000000010300190000000001026019000000000110004c000011cb0000c13d00000004010000390000000201100367000000000101043b000b00000001001d1c0c12170000040f0000000b010000290000070601100197000000000010043500000008010000390000002002000039000b00000002001d000000000012043500000000010000190000000202000029000200000002001d1c0c01190000040f1c0c1c0a0000040f00000002020000290000000002020433000000ff011001900000000001000019000000010100c039000000000012043500000000010200190000000b0200002900000000030000191c0c01420000040f0000000001000416000000000110004c000011cb0000c13d00000000010000311c0c11eb0000040f0000000005000411000000000050043500000008050000390000002006000039000300000006001d0000000000560435000400000001001d000600000002001d000200000003001d000500000004001d000000400200003900000000010000191c0c01190000040f1c0c1c0a0000040f000000ff0110018f1c0c15d50000040f00000006010000290000000502000029000000000121004b000000000100001900000001010060391c0c15e70000040f0000001101000039000100000001001d00000000050000190000000601000029000000000115004b000001fd0000813d0000000501000029000000000115004b00000e0a0000813d0000000501500210000000040200002900000000032100190000000202000367000b00000003001d000000000332034f000000000303043b000007060430009c000011cb0000213d00000002040000290000000001410019000800000001001d000000000112034f000000000101043b000a00000001001d000000000030043500000003010000290000000102000029000000000021043500000040020000390000000001000019000700000002001d000900000005001d1c0c01190000040f00000000020100190000000a010000291c0c1c080000040f00000002020003670000000b01000029000000000112034f000000000101043b000007060310009c000011cb0000213d0000000803000029000000000232034f000000000202043b0000000703000029000000000303043300000020043000390000000000240435000000000013043500000704010000410000000002000414000007040420009c0000000002018019000007040430009c00000000010340190000004001100210000000c002200210000000000112019f00000750011001c70000800d02000039000000010300003900000751040000411c0c1bfe0000040f00000009050000290000000105500039000000010120019000000dc80000c13d000011cb0000013d00000773010000410000000000100435000000320100003900000004020000390000000000120435000000240200003900000000010000191c0c014c0000040f0000000201000029000000000101043300000044021000390000075b0300004100000000003204350000002402100039000000140300003900000000003204350000070902000041000000000021043500000004021000390000002003000039000000000032043500000064020000391c0c014c0000040f0000001001000039000900000001001d000800000002001d1c0c1c0a0000040f000000080200002900000001022000390000076801100197000000000121019f00000009020000291c0c1c080000040f00000013010000391c0c1c0a0000040f0000076902000041000000000020043900000706021001970000000401000039000900000002001d0000000000210439000080020100003900000024020000391c0c01300000040f000000000110004c000011cb0000613d0000000a0100002900000000050104330000076a01000041000000000015043500000000010004140000000906000029000000040260008c0000000b03000029000010db0000613d000000000230004c000800000005001d000010a30000c13d00000004040000390000000002060019000000000305001900000000060000191c0c00c30000040f000010b50000013d0000006002300039000000000024043500000000020304331c0c01190000040f000000020200002900000000020204330000002003200039000000000013043500000008090000290000001f0390018f0000004001200039000000090400002900000002044003670000000505900270000000000650004c00000e630000613d000000000600001900000005076002100000000008710019000000000774034f000000000707043b00000000007804350000000106600039000000000756004b00000e5b0000413d000000000630004c00000e720000613d0000000505500210000000000454034f00000000055100190000000303300210000000000605043300000000063601cf000000000636022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000363019f0000000000350435000000000191001900000000000104350000000001210049000000200310008a00000000003204350000001f01100039000000200300008a000000000331016f0000000001230019000000000331004b00000000030000190000000103004039000007550410009c000000020400002900000d5e0000213d000000010330019000000d5e0000c13d000000000014043500000000010200190000000702000029000000060300002900000005040000290000000405000029000000030600002900000001070000291c0c16c30000040f0000000003000031000000090100002900000008020000291c0c12310000040f00000002030000290000000004030433000007560240009c00000d5e0000213d000000e0024000390000000000230435000000c002400039000300000002001d0000000000020435000000a002400039000400000002001d00000000000204350000008002400039000500000002001d00000000000204350000006002400039000900000002001d00000000000204350000004002400039000a00000002001d00000000000204350000000000040435000600000004001d0000002002400039000800000002001d00000000000204351c0c14f00000040f000000080d0000290000000a0c000029000000090b00002900000000030100190000002001300039000700000001001d000b00000003001d0000000001030433000000070200002900000000020204330000000002020433000000000121004b00000fe20000813d00000000010300191c0c15030000040f000000010310008c00000ecb0000c13d0000000b010000291c0c15400000040f0000000002010433000000140220008c000011cb0000c13d00000020011000390000000001010433000000600110027000000006020000290000000000120435000000090b0000290000000a0c000029000000080d0000290000000b0300002900000eb20000013d000000020310008c00000edb0000c13d0000000b010000291c0c15400000040f0000000002010433000000140220008c000011cb0000c13d000000200110003900000000010104330000006001100270000000080d00002900000000001d0435000000090b0000290000000a0c0000290000000b0300002900000eb20000013d000000030310008c00000eeb0000c13d0000000b010000291c0c15400000040f0000000002010433000000140220008c000011cb0000c13d0000002001100039000000000101043300000060011002700000000a0c00002900000000001c0435000000090b000029000000080d0000290000000b0300002900000eb20000013d000000040310008c00000ef60000c13d0000000b010000291c0c15400000040f1c0c15c50000040f0000000b03000029000000090b00002900000000001b04350000000a0c000029000000080d00002900000eb20000013d000000050310008c00000f020000c13d0000000b010000291c0c15110000040f0000000b03000029000007550110019700000005020000290000000000120435000000090b0000290000000a0c000029000000080d00002900000eb20000013d000000060310008c00000f0e0000c13d0000000b010000291c0c15110000040f0000000b03000029000007550110019700000004020000290000000000120435000000090b0000290000000a0c000029000000080d00002900000eb20000013d000000070110008c0000000b0100002900000f1e0000c13d1c0c15400000040f0000000002010433000000200220008c000011cb0000c13d0000002001100039000000000101043300000003020000290000000000120435000000090b0000290000000a0c000029000000080d0000290000000b0300002900000eb20000013d1c0c15980000040f0000000b03000029000000090b0000290000000a0c000029000000080d00002900000eb20000013d000001000200008a000000000121016f00000006020000391c0c1c080000040f0000000b0100002900000000010104330000000a02000029000000000021043500000704020000410000000003000414000007040430009c0000000003028019000007040410009c00000000010280190000004001100210000000c002300210000000000112019f0000070b011001c70000800d02000039000000010300003900000770040000411c0c1bfe0000040f0000000101200190000001fd0000c13d000011cb0000013d0000000201000029000000000101043300000064021000390000074e03000041000000000032043500000044021000390000074f0300004100000000003204350000002402100039000000230300003900000000003204350000070902000041000000000021043500000004021000390000002003000039000000000032043500000084020000391c0c014c0000040f000000090100002900000705011001970000000b02000029000000000121019f00000000020000191c0c1c080000040f00000704010000410000000002000414000007040320009c0000000001024019000000c00110021000000707011001c70000800d02000039000000030300003900000708040000410000000a050000290000000b060000291c0c1bfe0000040f0000000101200190000001fd0000c13d000011cb0000013d0000000a01000029000000000101043300000044021000390000070d03000041000000000032043500000024021000390000001b0300003900000000003204350000070902000041000000000021043500000004021000390000000903000029000000000032043500000064020000391c0c014c0000040f0000000a01000029000000000101043300000044021000390000070a0300004100000000003204350000002402100039000000190300003900000000003204350000070902000041000000000021043500000004021000390000000903000029000000000032043500000064020000391c0c014c0000040f0000000501000029000000000301043300000006010000290000000004010433000000070100002900000000050104330000000801000029000000000601043300000009010000290000000001010433000000c0071002100000000208000029000000000208043300000020012000390000000000710435000000c00660021000000028072000390000000000670435000000600550021000000030062000390000000000560435000000600440021000000044052000390000000000450435000000000508001900000058042000390000000000340435000000580300003900000000003204350000075e0320009c00000d5e0000213d0000008003200039000000000035043500000000020204331c0c01190000040f000a00000001001d000000000010043500000012020000390000002001000039000b00000001001d000900000002001d0000000000210435000000000100001900000002020000291c0c01190000040f1c0c1c0a0000040f000000ff01100190000011080000c13d0000000a0100002900000000001004350000000b01000029000000090200002900000000002104350000004002000039000900000002001d00000000010000191c0c01190000040f000300000001001d1c0c1c0a0000040f000001000200008a000000000121016f00000001011001bf00000003020000291c0c1c080000040f000000050100002900000000020104330000000601000029000000000101043300000706011001971c0c1b7c0000040f00000006010000290000000001010433000007060110019700000000001004350000000e010000390000000b020000290000000000120435000000000100001900000009020000291c0c01190000040f1c0c1c0a0000040f00000005020000290000000004020433000000060200002900000000020204330000070603200197000000070200002900000000020204330000070602200197000000000510004c0000115b0000613d000000000114004b0000115b0000a13d0000000a010000291c0c1a550000040f0000115f0000013d00000000030b04330000000301000029000000000401043300000000050c04330000000401000029000000000601043300000000070d04330000000601000029000000000101043300000005020000290000000002020433000000c008200210000000020a00002900000000020a04330000007c092000390000000000890435000000600810021000000020012000390000000000810435000000600770021000000034082000390000000000780435000000c006600210000000840720003900000000006704350000006005500210000000480620003900000000005604350000008c05200039000000000045043500000000050a00190000005c0420003900000000003404350000008c030000390000000000320435000007570320009c00000d5e0000213d000000c003200039000000000035043500000000020204331c0c01190000040f000b00000001001d00000000001004350000001502000039000400000002001d0000002001000039000700000001001d0000000000210435000000000100001900000002020000291c0c01190000040f1c0c1c0a0000040f000000ff01100190000000000100001900000001010060391c0c14300000040f0000000b010000290000000000100435000000070100002900000004020000290000000000210435000000000100001900000002020000291c0c01190000040f000400000001001d1c0c1c0a0000040f000001000200008a000000000121016f00000001011001bf00000004020000291c0c1c080000040f000000090100002900000000020104330000000a01000029000000000101043300000706011001971c0c1b7c0000040f0000000a010000290000000001010433000007060110019700000000001004350000000e0100003900000007020000290000000000120435000000000100001900000002020000291c0c01190000040f1c0c1c0a0000040f000000090200002900000000040204330000000a0200002900000000020204330000070603200197000000080200002900000000020204330000070602200197000000000510004c000011170000613d000000000114004b000011170000a13d0000000b010000291c0c1a550000040f0000111b0000013d0000075a0100004100000000001004390000800b010000390000000402000039000900000003001d1c0c01300000040f000400000001001d0000000f010000391c0c1c0a0000040f00000009020000290000000002210019000000000112004b00000000010000190000000101004039000000010110019000000a4f0000c13d0000000401000029000000000121004b0000114c0000a13d0000000b010000290000000000100435000000080100002900000007020000290000000000210435000000000100001900000002020000291c0c01190000040f0000000002010019000900000002001d00000000010000191c0c1c080000040f0000000901000029000000010210003900000000010000191c0c1c080000040f0000000901000029000000020210003900000000010000191c0c1c080000040f0000000901000029000000030210003900000000010000191c0c1c080000040f0000000a010000290000000001010433000000060200002900000000020204330000000503000029000000000303043300000002040000290000000004040433000000600540003900000000003504350000070602200197000000400340003900000000002304350000070601100197000000200240003900000000001204350000000b01000029000000000014043500000704010000410000000002000414000007040320009c0000000002018019000007040340009c00000000010440190000004001100210000000c002200210000000000112019f00000763011001c70000800d02000039000000010300003900000764040000411c0c1bfe0000040f0000000101200190000011cb0000613d00000005010000290000000003010433000000060100002900000000020104330000000a010000290000000001010433000007060110019700000706022001971c0c15f90000040f0000000001000019000000000200001900000000030000191c0c01420000040f0000070402000041000007040410009c0000000001028019000007040450009c00000000020540190000004002200210000000c001100210000000000121019f0000076b011001c70000800902000039000000000406001900000000050000191c0c1bfe0000040f00000000030100190000006003300270000107040030019d0003000000010355000000010120018f000000000110004c0000000b030000290000000805000029000010db0000c13d000000030200036700000001040000310000001f0340018f000000020100002900000000010104330000000504400270000000000540004c000010ca0000613d000000000500001900000005065002100000000007610019000000000662034f000000000606043b00000000006704350000000105500039000000000645004b000010c20000413d000000000530004c000010d90000613d0000000504400210000000000242034f00000000044100190000000303300210000000000504043300000000053501cf000000000535022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000252019f000000000024043500000001020000311c0c014c0000040f000007550150009c00000d5e0000213d0000000a01000029000000000051043500000010010000391c0c1c0a0000040f000900000001001d00000013010000391c0c1c0a0000040f000000000200041100000706022001970000000a0300002900000000030304330000002004300039000000000024043500000706011001970000004002300039000000000012043500000060013000390000000b02000029000000000021043500000009010000290000075501100197000000000013043500000704010000410000000002000414000007040420009c0000000002018019000007040430009c00000000010340190000004001100210000000c002200210000000000112019f00000763011001c70000800d0200003900000001030000390000076c040000411c0c1bfe0000040f0000000101200190000011cb0000613d1c0c12de0000040f0000000001000019000000000200001900000000030000191c0c01420000040f0000000201000029000000000101043300000044021000390000075f03000041000000000032043500000024021000390000001a0300003900000000003204350000070902000041000000000021043500000004021000390000000b03000029000000000032043500000064020000391c0c014c0000040f0000000001020019000000000203001900000000030400191c0c15f90000040f00000006010000290000000001010433000000080200002900000000020204330000000a03000029000000000303043300000009040000290000000004040433000000050500002900000000050504330000000306000029000000000606043300000002070000290000000007070433000000c00870003900000000006804350000075505500197000000a0067000390000000000560435000000800570003900000000004504350000070603300197000000600470003900000000003404350000070602200197000000400370003900000000002304350000070601100197000000200270003900000000001204350000000b01000029000000000017043500000704010000410000000002000414000007040320009c0000000002018019000007040370009c00000000010740190000004001100210000000c002200210000000000112019f00000758011001c70000800d02000039000000010300003900000759040000411c0c1bfe0000040f0000000101200190000001fd0000c13d000011cb0000013d0000000201000029000000000101043300000044021000390000076203000041000000000032043500000024021000390000001d0300003900000000003204350000070902000041000000000021043500000004021000390000000803000029000000000032043500000064020000391c0c014c0000040f0000000001020019000000000203001900000000030400191c0c15f90000040f000000080100002900000000010104330000000702000029000000000202043300000006030000290000000003030433000000050400002900000000040404330000000405000029000000000505043300000009060000290000000006060433000000a0076000390000000000570435000000800560003900000000004504350000070603300197000000600460003900000000003404350000070602200197000000400360003900000000002304350000075501100197000000200260003900000000001204350000000a01000029000000000016043500000704010000410000000002000414000007040320009c0000000002018019000007040360009c00000000010640190000004001100210000000c002200210000000000112019f00000760011001c70000800d02000039000000010300003900000761040000411c0c1bfe0000040f0000000101200190000001fd0000c13d000011cb0000013d0000070402000041000007040410009c0000000001028019000007040430009c00000000020340190000004002200210000000c001100210000000000121019f0000076b011001c700008009020000390000000a03000029000000000405001900000000050000191c0c1bfe0000040f00000000030100190000006003300270000107040030019d0003000000010355000000010120018f000000000110004c0000000403000029000010b90000613d000007720130009c000000020200002900000d5e0000813d000000000032043500000013010000391c0c1c0a0000040f00000002020000290000000002020433000600000002001d00000706051001970000000003000411000000000102001900000005020000290000000b040000290000000a060000290000000907000029000000080800002900000007090000291c0c12f40000040f000000060400002900000000014100490000070402000041000007040340009c000000000302001900000000030440190000004003300210000007040410009c00000000010280190000006001100210000000000131019f0000000003000414000007040430009c0000000002034019000000c002200210000000000121019f00000707011001c70000800d0200003900000001030000390000075c040000411c0c1bfe0000040f0000000101200190000011030000c13d000000000100001900000000020000191c0c014c0000040f0000001f031000390000074b04000041000000000523004b000000000500001900000000050440190000074b062001970000074b03300197000000000763004b000000000400a019000000000363013f0000074b0330009c00000000030500190000000003046019000000000330004c000011e80000613d0000000203100367000000000303043b000007550430009c000011e80000213d000000050430021000000020011000390000000004410019000000000224004b000011e80000213d0000000002030019000000000001042d000000000100001900000000020000191c0c014c0000040f00030000000000020000000005010019000000040150008a0000074b020000410000003f0310008c000000000300001900000000030220190000074b01100197000000000410004c00000000020080190000074b0110009c00000000010300190000000001026019000000000110004c000012140000613d00000004010000390000000201100367000000000101043b000007550210009c000012140000213d00000004011000390000000002050019000300000005001d1c0c11ce0000040f0000000303000029000200000001001d000100000002001d00000024010000390000000201100367000000000101043b000007550210009c000012140000213d000000040110003900000000020300191c0c11ce0000040f00000000030100190000000004020019000000020100002900000001020000290000000300000005000000000001042d000000000100001900000000020000191c0c014c0000040f000007780110009c0000121a0000813d000000000001042d000000000100001900000000020000191c0c014c0000040f000000040110008a0000074b020000410000001f0310008c000000000300001900000000030220190000074b01100197000000000410004c00000000020080190000074b0110009c00000000010300190000000001026019000000000110004c0000122e0000613d00000004010000390000000201100367000000000101043b000000000001042d000000000100001900000000020000191c0c014c0000040f0000000004010019000007720120009c000012670000813d0000003f01200039000000200500008a000000000651016f000000400500003900000000010504330000000006610019000000000716004b00000000070000190000000107004039000007550860009c000012670000213d0000000107700190000012670000c13d000000000065043500000000002104350000000005420019000000000335004b0000126f0000213d0000001f0520018f000000020440036700000020031000390000000506200270000000000760004c000012550000613d000000000700001900000005087002100000000009830019000000000884034f000000000808043b00000000008904350000000107700039000000000867004b0000124d0000413d000000000750004c000012640000613d0000000506600210000000000464034f00000000066300190000000305500210000000000706043300000000075701cf000000000757022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000474019f000000000046043500000000022300190000000000020435000000000001042d00000773010000410000000000100435000000410100003900000004020000390000000000120435000000240200003900000000010000191c0c014c0000040f000000000100001900000000020000191c0c014c0000040f00070000000000020000000008010019000000040180008a0000074b020000410000007f0310008c000000000300001900000000030220190000074b01100197000000000410004c00000000020080190000074b0110009c00000000010300190000000001026019000000000110004c000012c90000613d00000002010003670000000402100370000000000202043b000007550320009c000012c90000213d00000023032000390000074b04000041000000000583004b000000000500001900000000050480190000074b068001970000074b03300197000000000763004b0000000004008019000000000363013f0000074b0330009c00000000030500190000000003046019000000000330004c000012c90000c13d0000000403200039000000000331034f000000000303043b000700000003001d000007550330009c000012c90000213d00000024032000390000000702000029000500000003001d0000000002230019000000000282004b000012c90000213d0000002401100370000000000101043b000007550210009c000012c90000213d00000004011000390000000002080019000600000008001d1c0c11ce0000040f0000000603000029000400000001001d000300000002001d00000044010000390000000201100367000000000101043b000007550210009c000012c90000213d000000040110003900000000020300191c0c11ce0000040f0000000603000029000200000001001d000100000002001d00000064010000390000000201100367000000000101043b000007550210009c000012c90000213d000000040110003900000000020300191c0c11ce0000040f000000000701001900000000080200190000000501000029000000070200002900000004030000290000000304000029000000020500002900000001060000290000000700000005000000000001042d000000000100001900000000020000191c0c014c0000040f000000000110004c000012cf0000613d000000000001042d0000004001000039000000000101043300000044021000390000077903000041000000000032043500000024021000390000001f0300003900000000003204350000070902000041000000000021043500000004021000390000002003000039000000000032043500000064020000391c0c014c0000040f000000010100003900000005020000391c0c1c080000040f000000000001042d000000000110004c000012e50000613d000000000001042d0000004001000039000000000101043300000044021000390000077a0300004100000000003204350000002402100039000000100300003900000000003204350000070902000041000000000021043500000004021000390000002003000039000000000032043500000064020000391c0c014c0000040f0000070409900197000000e00a10003900000000009a04350000075508800197000000c00910003900000000008904350000075507700197000000a00810003900000000007804350000008007100039000000000067043500000706055001970000006006100039000000000056043500000706044001970000004005100039000000000045043500000706033001970000002004100039000000000034043500000000002104350000010001100039000000000001042d00000000050200190000004006000039000000000206043300000020072000390000077b08000041000000000087043500000064072000390000000000470435000007060330019700000044042000390000000000340435000007060350019700000024042000390000000000340435000000640300003900000000003204350000077c0320009c000013210000813d000000a00320003900000000003604351c0c13290000040f000000000001042d00000773010000410000000000100435000000410100003900000004020000390000000000120435000000240200003900000000010000191c0c014c0000040f0005000000000002000400000002001d0000070604100197000000400200003900000000030204330000077d0130009c000013740000813d0000004001300039000200000002001d000000000012043500000020013000390000077e0200004100000000002104350000002001000039000300000001001d000100000003001d0000000000130435000007690100004100000000001004390000000401000039000500000004001d0000000000410439000080020100003900000024020000391c0c01300000040f000000000110004c0000137c0000613d00000000010004140000000502000029000000040320008c0000000003000019000013520000613d000000040300002900000000040304330000002003300039000000000500001900000000060000191c0c00c30000040f000000000110004c00000000030000190000000103006039000500000003001d1c0c13bd0000040f0000000002010433000000050300002900000001033001900000138b0000c13d000000000320004c0000136f0000613d0000074b030000410000001f0420008c000000000400001900000000040320190000074b02200197000000000520004c00000000030080190000074b0220009c00000000020400190000000002036019000000000220004c000013710000613d00000020011000390000000001010433000000000210004c0000000002000019000000010200c039000000000221004b000013710000c13d000000000110004c000013a20000613d0000000500000005000000000001042d000000000100001900000000020000191c0c014c0000040f00000773010000410000000000100435000000410100003900000004020000390000000000120435000000240200003900000000010000191c0c014c0000040f0000000201000029000000000101043300000044021000390000078103000041000000000032043500000024021000390000001d0300003900000000003204350000070902000041000000000021043500000004021000390000000303000029000000000032043500000064020000391c0c014c0000040f000000000320004c000013b40000c13d0000000201000029000000000101043300000709020000410000000000210435000000040210003900000003030000290000000000320435000000010700002900000000020704330000002403100039000000000023043500000044031000390000000004000019000000000524004b000013b60000813d000000000534001900000020044000390000000006740019000000000606043300000000006504350000139a0000013d0000000201000029000000000101043300000064021000390000077f03000041000000000032043500000044021000390000078003000041000000000032043500000024021000390000002a0300003900000000003204350000070902000041000000000021043500000004021000390000000303000029000000000032043500000084020000391c0c014c0000040f00000020011000391c0c014c0000040f000000000332001900000000000304350000001f02200039000000200300008a000000000232016f00000044022000391c0c014c0000040f00000060010000390000000102000031000000000320004c000013f10000613d000007720120009c000013f20000813d0000003f01200039000000200300008a000000000431016f000000400300003900000000010304330000000004410019000000000514004b00000000050000190000000105004039000007550640009c000013f20000213d0000000105500190000013f20000c13d000000000043043500000000002104350000002002100039000000030300036700000001050000310000001f0450018f0000000505500270000000000650004c000013e20000613d000000000600001900000005076002100000000008720019000000000773034f000000000707043b00000000007804350000000106600039000000000756004b000013da0000413d000000000640004c000013f10000613d0000000505500210000000000353034f00000000025200190000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000000000001042d00000773010000410000000000100435000000410100003900000004020000390000000000120435000000240200003900000000010000191c0c014c0000040f000000000110004c000013fd0000613d000000000001042d0000004001000039000000000101043300000044021000390000078203000041000000000032043500000024021000390000000f0300003900000000003204350000070902000041000000000021043500000004021000390000002003000039000000000032043500000064020000391c0c014c0000040f000000000110004c0000140f0000613d000000000001042d000000400100003900000000010104330000004402100039000007830300004100000000003204350000002402100039000000130300003900000000003204350000070902000041000000000021043500000004021000390000002003000039000000000032043500000064020000391c0c014c0000040f000000000110004c000014210000613d000000000001042d000000400100003900000000010104330000004402100039000007840300004100000000003204350000002402100039000000100300003900000000003204350000070902000041000000000021043500000004021000390000002003000039000000000032043500000064020000391c0c014c0000040f000000000110004c000014330000613d000000000001042d0000004001000039000000000101043300000044021000390000078503000041000000000032043500000024021000390000000f0300003900000000003204350000070902000041000000000021043500000004021000390000002003000039000000000032043500000064020000391c0c014c0000040f000b000000000002000700000006001d000500000005001d000300000004001d000900000003001d000400000001001d000600000002001d0000070601200197000800000001001d000000000010043500000016010000390000002002000039000a00000002001d000100000001001d00000000001204350000004002000039000b00000002001d00000000010000191c0c01190000040f1c0c1c0a0000040f0000000902000029000000000121004b000000000100001900000001010040391c0c141e0000040f0000000801000029000000000010043500000017020000390000000a01000029000200000002001d000000000021043500000000010000190000000b020000291c0c01190000040f1c0c1c0a0000040f000000000110004c000014740000613d000000080100002900000000001004350000000a010000290000000202000029000000000021043500000040020000390000000001000019000800000002001d1c0c01190000040f1c0c1c0a0000040f0000000902000029000000000121004b000014e10000413d00000009010000290000000a0100002900000018010000391c0c1c0a0000040f0000000b020000290000000002020433000800000002001d000000070200002900000704022001970000070401100197000000000112004b000014cb0000a13d000007520100004100000000001004390000800b010000390000000402000039000700000002001d1c0c01300000040f0000000302000029000000c00220021000000008050000290000007c035000390000000000230435000000000200041100000060022002100000002003500039000000000023043500000004020000290000006002200210000000340450003900000000002404350000000502000029000000c002200210000000840450003900000000002404350000000602000029000000600220021000000048045000390000000000240435000000c0011002100000008c0250003900000000001204350000005c0150003900000009020000290000000000210435000000740100003900000000001504350000077c0150009c000014d90000813d000000a0015000390000000b020000290000000000120435000000000205043300000000010300191c0c01190000040f000900000001001d00000000001004350000001501000039000800000001001d0000000a02000029000000000012043500000000010000190000000b020000291c0c01190000040f1c0c1c0a0000040f000000ff01100190000000000100001900000001010060391c0c14300000040f000000090100002900000000001004350000000a010000290000000802000029000000000021043500000000010000190000000b020000291c0c01190000040f000b00000001001d1c0c1c0a0000040f000001000200008a000000000121016f00000001011001bf0000000b020000291c0c1c080000040f00000009010000290000000b00000005000000000001042d00000008010000290000004403100039000007870200004100000000002304350000002403100039000000010200002900000000002304350000070902000041000000000021043500000004031000390000000a02000029000000000023043500000064020000391c0c014c0000040f00000773010000410000000000100435000000410100003900000007020000290000000000120435000000240200003900000000010000191c0c014c0000040f000000080100002900000000010104330000004402100039000007860300004100000000003204350000002402100039000000100300003900000000003204350000070902000041000000000021043500000004021000390000000a03000029000000000032043500000064020000391c0c014c0000040f0000000002010019000000400300003900000000010304330000077d0410009c000014fb0000813d00000040041000390000000000430435000000200310003900000000002304350000000000010435000000000001042d00000773010000410000000000100435000000410100003900000004020000390000000000120435000000240200003900000000010000191c0c014c0000040f1c0c15110000040f000000070210018f000000060320008c000015090000813d0000000301100270000000000001042d00000773010000410000000000100435000000210100003900000004020000390000000000120435000000240200003900000000010000191c0c014c0000040f00000000030104330000002002100039000000000202043300000000023200190000002002200039000000000402043300000000020000190000000005000019000000090650008c000015350000213d00000007765000c9000000000750004c000015230000613d000000ff0750018f000000ff0860018f00000000877800d9000000070770008c000015380000c13d0000000307500210000000f807700089000000000774022f0000007f0870018f00000000066801cf000000000226019f00000001055000390000008006700190000015190000c13d0000000003350019000000000453004b000000000400001900000001040040390000000104400190000015380000c13d00000000003104350000000001020019000000000001042d000000000100001900000000020000191c0c014c0000040f00000773010000410000000000100435000000110100003900000004020000390000000000120435000000240200003900000000010000191c0c014c0000040f0001000000000002000100000001001d1c0c15110000040f000000010c00002900000000020c04330000000003120019000000000223004b000000000200001900000001020040390000000102200190000015810000c13d0000002005c0003900000000020504330000000002020433000000000223004b000015950000213d000007720210009c0000158d0000813d0000003f02100039000000200400008a000000000742016f000000400600003900000000020604330000000007720019000000000827004b00000000080000190000000108004039000007550970009c0000158d0000213d00000001088001900000158d0000c13d000000000076043500000000001204350000001f061000390000000506600270000000000760004c000015710000613d0000002007200039000000000800003100000002088003670000000009000019000000050a900210000000000ba70019000000000aa8034f000000000a0a043b0000000000ab04350000000109900039000000000a69004b000015690000413d000000000600004c000015730000613d00000000060c043300000000050504330000000007000019000000000817004b000015890000813d000000200870003900000000095800190000000009690019000000000a280019000000000909043300000000009a0435000000000747004b0000000007080019000015760000c13d00000773010000410000000000100435000000110100003900000004020000390000000000120435000000240200003900000000010000191c0c014c0000040f00000000003c043500000000010200190000000100000005000000000001042d00000773010000410000000000100435000000410100003900000004020000390000000000120435000000240200003900000000010000191c0c014c0000040f000000000100001900000000020000191c0c014c0000040f0001000000000002000000060320008c000015b50000813d000000000320004c000015b20000613d000000020220008c000015af0000c13d000100000001001d1c0c15110000040f000000010300002900000000020304330000000001120019000000000221004b000000000200001900000001020040390000000102200190000015bd0000c13d0000000000130435000000200230003900000000020204330000000002020433000000000121004b000015b30000a13d000000000100001900000000020000191c0c014c0000040f1c0c15110000040f0000000100000005000000000001042d00000773010000410000000000100435000000210100003900000004020000390000000000120435000000240200003900000000010000191c0c014c0000040f00000773010000410000000000100435000000110100003900000004020000390000000000120435000000240200003900000000010000191c0c014c0000040f0000000002010433000000210320008c000015d20000813d0000002001100039000000000101043300000003022002100000010003200089000000000131022f0000000002200049000001000300008a000000000232004b0000000001004019000000000001042d000000000100001900000000020000191c0c014c0000040f000000000110004c000015d80000613d000000000001042d000000400100003900000000010104330000004402100039000007880300004100000000003204350000002402100039000000160300003900000000003204350000070902000041000000000021043500000004021000390000002003000039000000000032043500000064020000391c0c014c0000040f000000000110004c000015ea0000613d000000000001042d0000004001000039000000000101043300000044021000390000078903000041000000000032043500000024021000390000000f0300003900000000003204350000070902000041000000000021043500000004021000390000002003000039000000000032043500000064020000391c0c014c0000040f0004000000000002000400000003001d000200000002001d000300000001001d00000013010000391c0c1c0a0000040f000000020200002900000706032001970000070601100197000000000113004b000016430000c13d0000000401000029000000030100002900000013010000391c0c1c0a0000040f0000076902000041000000000020043900000706021001970000000401000039000200000002001d0000000000210439000080020100003900000024020000391c0c01300000040f000000000110004c0000166e0000613d000000400500003900000000060504330000078c01000041000000000016043500000004026000390000000001000414000000040300002900000000003204350000000202000029000000040320008c000100000005001d000016290000613d000000240400003900000000030600190000000005060019000200000006001d00000000060000191c0c00c30000040f00000002060000290000000105000029000000000110004c000016800000613d000007550160009c000016660000213d000000000065043500000014010000391c0c1c0a0000040f00000001030000390000000304000029000000040240008c0000165f0000613d0000000403000029000000000230004c000016580000613d0000070402000041000007040510009c0000000001028019000000c00110021000000707011001c7000080090200003900000000050000191c0c1bfe0000040f00000000030100190000006003300270000107040030019d0003000000010355000000010320018f0000165f0000013d0000004001000039000000000201043300000020042000390000078a0500004100000000005404350000004404200039000000040500002900000000005404350000000304000029000007060440019700000024052000390000000000450435000000440400003900000000004204350000078b0420009c000016660000813d0000008004200039000000000041043500000000010300191c0c13290000040f000016640000013d000000000204001900000000030000190000000004000019000000000500001900000000060000191c0c00c30000040f0000000003010019000400000003001d1c0c13bd0000040f0000000401000029000000000110004c000016710000613d0000000400000005000000000001042d00000773010000410000000000100435000000410100003900000004020000390000000000120435000000240200003900000000010000191c0c014c0000040f000000000100001900000000020000191c0c014c0000040f0000000101000029000000000101043300000044021000390000078d03000041000000000032043500000024021000390000001b0300003900000000003204350000070902000041000000000021043500000004021000390000002003000039000000000032043500000064020000391c0c014c0000040f000000030200036700000001040000310000001f0340018f00000000010504330000000504400270000000000540004c000016900000613d000000000500001900000005065002100000000007610019000000000662034f000000000606043b00000000006704350000000105500039000000000645004b000016880000413d000000000530004c0000169f0000613d0000000504400210000000000242034f00000000044100190000000303300210000000000504043300000000053501cf000000000535022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000252019f000000000024043500000001020000311c0c014c0000040f000000000110004c000016a40000613d000000000001042d0000004001000039000000000101043300000044021000390000078e030000410000000000320435000007090200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000000000032043500000064020000391c0c014c0000040f0000000004000019000000000524004b000016be0000813d0000000205100367000000000505043b000007780650009c000016c00000813d0000000000530435000000010440003900000020011000390000002003300039000016b30000013d0000000001030019000000000001042d000000000100001900000000020000191c0c014c0000040f000e000000000002000900000007001d000800000006001d000700000005001d000600000004001d000500000003001d000e00000002001d000b00000001001d0000004001000039000100000001001d0000000001010433000d00000001001d000000200310003900000000010400190000000002050019000c00000003001d1c0c16b20000040f0000000608000029000000070700002900000009020000290000078f0220009c000017d30000813d0000000802000029000000020220036700000009030000290000079003300197000000000430004c000016e80000613d000000000400001900000005054002100000000006510019000000000552034f000000000505043b00000000005604350000000104400039000000000534004b000016e00000413d00000009020000290000000502200210000000000300004c000016ec0000613d0000000d0300002900000000023200490000000001120019000000200210008a00000000002304350000001f01100039000000200200008a000000000221016f0000000001320019000000000221004b00000000020000190000000102004039000007550310009c00000001030000290000183b0000213d00000001022001900000183b0000c13d000000000013043500000001010000391c0c1c0a0000040f0000000d020000290000000002020433000d00000001001d0000000c010000291c0c01190000040f0000000d02000029000000000112004b000018430000c13d0000000b01000029000000000201043300000020011000391c0c01190000040f000000010500002900000000020504330000002003200039000007920400004100000000004304350000003c0420003900000000001404350000003c010000390000000000120435000007540120009c00000000040500190000183b0000213d00000060012000390000000000140435000000000202043300000000010300191c0c01190000040f00000009020000290000000703000029000000000223004b00000000020000190000000102006039000300000001001d00000000010200191c0c19030000040f0000000706000029000000020100036700000000020000190000000003000019000000000463004b0000173b0000813d0000000904000029000000000443004b000017d60000813d000000050430021000000008050000290000000004540019000000000441034f0000000103300039000000000404043b0000000002240019000000000442004b000000000400001900000001040040390000000104400190000017290000613d000017c90000013d0000000103200210000000000420004c000017410000613d00000000422300d9000000020220008c000017c90000c13d0000001f0200008a0000000e040000290000000002420049000400000002001d000000032330011a000200000003001d0000000009000019000000000a000019000000000b000019000000000c000019000000050200002900000000022c004b000017ed0000813d0000000502c002100000000e030000290000000002320019000000000221034f000000000300003100000004040000290000000004340019000000000202043b0000074b05000041000000000642004b000000000600001900000000060580190000074b044001970000074b07200197000000000847004b0000000005008019000000000447013f0000074b0440009c00000000040600190000000004056019000000000440004c000017d30000c13d0000000e040000290000000004420019000000000141034f000000000201043b000007550120009c000017d30000213d000000000523004900000020014000390000074b04000041000000000651004b000000000600001900000000060420190000074b055001970000074b07100197000000000857004b0000000004008019000000000557013f0000074b0550009c000000000406c019000000000440004c000017d30000c13d000a0000000c001d000b0000000b001d000c0000000a001d000d00000009001d1c0c12310000040f0000000004010433000000410240008c000000400210003900000020031000390000178b0000c13d0000000004020433000000000303043300000060011000390000000001010433000000f80210027000000003010000291c0c19500000040f000017940000013d000000400140008c0000181e0000c13d000000000303043300000000010204330000079304100197000000ff011002700000001b0210003900000003010000291c0c19500000040f000000050320008c000000070600002900000006070000290000000d090000290000000c0a0000290000000b040000290000000a08000029000017f80000813d000000000320004c000018000000c13d00000706021001970000070603400197000000000332004b0000180d0000a13d000000000b010019000000020100036700000000036a004b000017d60000813d0000000503a002100000000004730019000000000441034f000000000404043b000007060540009c000017d30000213d000000000542004b000017b20000a13d000000010aa0003900000000036a004b000017a40000413d000017de0000013d000000000242004b000017c10000c13d000000090200002900000000022a004b000017d60000813d00000008020000290000000002230019000000000221034f000000000202043b0000000009920019000000000229004b000000000200001900000001020040390000000102200190000017c90000c13d0000000202000029000000000229004b000017d10000213d0000000102800039000000010300008a000000000338004b000000000c0200190000174b0000c13d00000773010000410000000000100435000000110100003900000004020000390000000000120435000000240200003900000000010000191c0c014c0000040f0000000e00000005000000000001042d000000000100001900000000020000191c0c014c0000040f00000773010000410000000000100435000000320100003900000004020000390000000000120435000000240200003900000000010000191c0c014c0000040f000000010100002900000000010104330000004402100039000007950300004100000000003204350000002402100039000000100300003900000000003204350000070902000041000000000021043500000004021000390000002003000039000000000032043500000064020000391c0c014c0000040f00000001010000290000000002010433000e00000002001d0000070901000041000000000012043500000004012000391c0c19180000040f0000000e03000029000000000231004900000000010300191c0c014c0000040f00000773010000410000000000100435000000210100003900000004020000390000000000120435000000240200003900000000010000191c0c014c0000040f000000010120008c0000181c0000c13d00000001010000290000000002010433000e00000002001d0000070901000041000000000012043500000004012000391c0c19460000040f0000000e03000029000000000231004900000000010300191c0c014c0000040f0000000101000029000000000101043300000044021000390000079403000041000000000032043500000024021000390000001e0300003900000000003204350000070902000041000000000021043500000004021000390000002003000039000000000032043500000064020000391c0c014c0000040f000000020120008c000018290000c13d00000001010000290000000002010433000e00000002001d0000070901000041000000000012043500000004012000391c0c193c0000040f0000000e03000029000000000231004900000000010300191c0c014c0000040f0000000101000029000000000301043300000709010000410000000000130435000e00000003001d0000000401300039000000030220008c000018360000c13d1c0c192f0000040f0000000e03000029000000000231004900000000010300191c0c014c0000040f1c0c19220000040f0000000e03000029000000000231004900000000010300191c0c014c0000040f00000773010000410000000000100435000000410100003900000004020000390000000000120435000000240200003900000000010000191c0c014c0000040f000000010100002900000000010104330000004402100039000007910300004100000000003204350000002402100039000000180300003900000000003204350000070902000041000000000021043500000004021000390000002003000039000000000032043500000064020000391c0c014c0000040f000f00000000000200080000000b001d00070000000a001d000600000009001d000500000008001d000400000007001d000300000006001d000d00000005001d000a00000004001d000c00000003001d000b00000002001d000f00000001001d00000002010000391c0c1c0a0000040f0000000f02000029000000000121004b000018db0000813d0000075a0100004100000000001004390000800b010000390000000402000039000e00000002001d1c0c01300000040f00000e100200008a000000000221004b000018ea0000813d0000004002000039000e00000002001d0000000002020433000900000002001d00000e10011000390000000f02000029000000000121004b000018f20000a13d000007520100004100000000001004390000800b010000390000000402000039000200000002001d1c0c01300000040f000000000200041000000060022002100000000904000029000000400340003900000000002304350000005402400039000007980300004100000000003204350000004102000039000100000002001d00000000002404350000000002010019000000200140003900000000002104350000078b0240009c000018d30000813d00000080024000390000000e03000029000000000023043500000000020404331c0c01190000040f0000000e0200002900000000030204330000002002300039000000000012043500000040013000390000000f020000290000000000210435000900000003001d00000060033000390000000b010000290000000c020000291c0c16b20000040f0000000d070000290000078f0270009c000019000000813d0000000a0200002900000002022003670000079003700197000000000430004c000018ac0000613d000000000400001900000005054002100000000006510019000000000552034f000000000505043b00000000005604350000000104400039000000000534004b000018a40000413d0000000502700210000000000300004c000018af0000613d000000090400002900000000024200490000000001120019000000200210008a00000000002404350000001f01100039000000200200008a000000000221016f0000000001420019000000000221004b00000000020000190000000102004039000007550310009c000018d30000213d0000000102200190000018d30000c13d0000000e02000029000000000012043500000000010400190000000302000029000000040300002900000005040000290000000605000029000000070600002900000008070000291c0c16c30000040f0000000b010000290000000c020000290000000a030000290000000d040000291c0c19980000040f00000002020000390000000f010000291c0c1c080000040f0000000f00000005000000000001042d00000773010000410000000000100435000000020100002900000001020000290000000000210435000000240200003900000000010000191c0c014c0000040f0000004001000039000000000101043300000044021000390000079603000041000000000032043500000024021000390000001e0300003900000000003204350000070902000041000000000021043500000004021000390000002003000039000000000032043500000064020000391c0c014c0000040f0000077301000041000000000010043500000011010000390000000e020000290000000000120435000000240200003900000000010000191c0c014c0000040f00000009010000290000004403100039000007970200004100000000002304350000002403100039000000190200003900000000002304350000070902000041000000000021043500000004031000390000002002000039000000000023043500000064020000391c0c014c0000040f000000000100001900000000020000191c0c014c0000040f000000000110004c000019060000613d000000000001042d0000004001000039000000000101043300000064021000390000079903000041000000000032043500000044021000390000079a0300004100000000003204350000002402100039000000230300003900000000003204350000070902000041000000000021043500000004021000390000002003000039000000000032043500000084020000391c0c014c0000040f00000040021000390000079b030000410000000000320435000000200210003900000012030000390000000000320435000000200200003900000000002104350000006001100039000000000001042d00000060021000390000079c03000041000000000032043500000040021000390000079d030000410000000000320435000000200210003900000022030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d00000060021000390000079c03000041000000000032043500000040021000390000079e030000410000000000320435000000200210003900000022030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d00000040021000390000079f03000041000000000032043500000020021000390000001f030000390000000000320435000000200200003900000000002104350000006001100039000000000001042d0000004002100039000007a0030000410000000000320435000000200210003900000018030000390000000000320435000000200200003900000000002104350000006001100039000000000001042d000100000000000200000000060200190000000302000039000007a10540009c0000000005000019000019730000813d0000000402000039000000ff0660018f0000001b0560008a000000010550008c0000000005000019000019730000213d0000004002000039000100000002001d000000000202043300000060052000390000000000450435000000400420003900000000003404350000002003200039000000000063043500000000001204350000000000000435000000000100041400000000030000191c0c00f80000040f000000000110004c000019760000613d0000000102000039000000000100043300000706031001980000000005000019000019730000613d0000000005010019000000000200001900000000010500190000000100000005000000000001042d000000030200036700000001040000310000001f0340018f000000010100002900000000010104330000000504400270000000000540004c000019870000613d000000000500001900000005065002100000000007610019000000000662034f000000000606043b00000000006704350000000105500039000000000645004b0000197f0000413d000000000530004c000019960000613d0000000504400210000000000242034f00000000044100190000000303300210000000000504043300000000053501cf000000000535022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000252019f000000000024043500000001020000311c0c014c0000040f0008000000000002000500000003001d000700000002001d000600000001001d000800000004001d000000000142004b000000000100001900000001010060391c0c19030000040f00000006010000290000000702000029000000020700036700000000060000190000000003000019000000000423004b000019c40000813d00000005043002100000000004140019000000000447034f000000000404043b000007780540009c00001a4a0000813d0000000103300039000000000564004b0000000006040019000019a60000213d000000400100003900000000010104330000006402100039000007a30300004100000000003204350000004402100039000007a40300004100000000003204350000002402100039000000220300003900000000003204350000070902000041000000000021043500000004021000390000002003000039000000000032043500000084020000391c0c014c0000040f0000004003000039000400000003001d0000000003030433000300000003001d0000002003300039000200000003001d1c0c16b20000040f0000000802000029000007900220009c00001a4a0000213d0000000502000029000000020220036700000008030000290000079003300197000000000430004c000019dd0000613d000000000400001900000005054002100000000006510019000000000552034f000000000505043b00000000005604350000000104400039000000000534004b000019d50000413d00000008020000290000000503200210000000000200004c000019e10000613d000100000003001d000000030400002900000000024300490000000001120019000000200210008a00000000002404350000001f01100039000000200200008a000000000221016f0000000001420019000000000221004b00000000020000190000000102004039000007550310009c00001a4d0000213d000000010220019000001a4d0000c13d00000004020000290000000000120435000000000204043300000002010000291c0c01190000040f00000001020000391c0c1c080000040f0000000403000029000000000103043300000040021000390000000707000029000000000072043500000000003104350000006003100039000000000400001900000006080000290000000109000029000000000274004b000000200230003900001a0f0000813d0000000205800367000000000505043b000007060650009c00001a4a0000213d000000000053043500000001044000390000002008800039000000000302001900001a030000013d000000000413004900000020051000390000000000450435000000080400002900000000004304350000001f0390018f000000050400002900000002044003670000000505900270000000000650004c00001a230000613d000000000600001900000005076002100000000008720019000000000774034f000000000707043b00000000007804350000000106600039000000000756004b00001a1b0000413d000000000630004c00001a320000613d0000000505500210000000000454034f00000000055200190000000303300210000000000605043300000000063601cf000000000636022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000363019f0000000000350435000000000319004900000000022300190000070403000041000007040410009c00000000010380190000004001100210000007040420009c00000000020380190000006002200210000000000112019f0000000002000414000007040420009c0000000002038019000000c002200210000000000112019f00000707011001c70000800d020000390000000103000039000007a2040000411c0c1bfe0000040f000000010120019000001a4a0000613d0000000800000005000000000001042d000000000100001900000000020000191c0c014c0000040f00000773010000410000000000100435000000410100003900000004020000390000000000120435000000240200003900000000010000191c0c014c0000040f0008000000000002000200000004001d000300000003001d000800000002001d000600000001001d00000000001004350000000d020000390000002001000039000500000001001d000400000002001d00000000002104350000004002000039000700000002001d00000000010000191c0c01190000040f00000003011000391c0c1c0a0000040f000000070300002900000000020300190000000003030433000000000110004c00001ac50000c13d0000078b0130009c00001ad30000813d000000800130003900000000001204350000004001300039000100000001001d00000002020000290000000000210435000000030100002900000706011001970000002002300039000200000002001d00000000001204350000000801000029000007060110019700000000001304350000075a0100004100000000001004390000800b010000390000000402000039000800000003001d1c0c01300000040f00000008020000290000006002200039000300000002001d000000000012043500000006010000290000000000100435000000050100002900000004020000290000000000210435000000000100001900000007020000291c0c01190000040f00000008020000290000000002020433000500000002001d000800000001001d1c0c1c0a0000040f000000050200002900000706022001970000070501100197000000000121019f00000008020000291c0c1c080000040f00000002010000290000000001010433000400000001001d00000008010000290000000101100039000500000001001d1c0c1c0a0000040f000000040200002900000706022001970000070501100197000000000121019f00000005020000291c0c1c080000040f00000001010000290000000001010433000000080200002900000002022000391c0c1c080000040f00000008010000290000000302100039000000030100002900000000010104331c0c1c080000040f000000070100002900000000010104330000000602000029000000000021043500000704020000410000000003000414000007040430009c0000000003028019000007040410009c00000000010280190000004001100210000000c002300210000000000112019f0000070b011001c70000800d020000390000000103000039000007a6040000411c0c1bfe0000040f000000010120019000001adb0000613d0000000800000005000000000001042d0000004401300039000007a502000041000000000021043500000024013000390000001f02000039000000000021043500000709010000410000000000130435000000040130003900000005020000290000000000210435000000640200003900000000010300191c0c014c0000040f00000773010000410000000000100435000000410100003900000004020000390000000000120435000000240200003900000000010000191c0c014c0000040f000000000100001900000000020000191c0c014c0000040f00040000000000020000070601100197000300000001001d000000000010043500000008020000390000002001000039000200000001001d000100000002001d000000000021043500000040020000390000000001000019000400000002001d1c0c01190000040f1c0c1c0a0000040f000000ff0110019000001b120000613d00000003010000290000000000100435000000020100002900000001020000290000000000210435000000000100001900000004020000291c0c01190000040f000200000001001d1c0c1c0a0000040f000001000200008a000000000121016f00000002020000291c0c1c080000040f000000040100002900000000010104330000000302000029000000000021043500000704020000410000000003000414000007040430009c0000000003028019000007040410009c00000000010280190000004001100210000000c002300210000000000112019f0000070b011001c70000800d020000390000000103000039000007a7040000411c0c1bfe0000040f000000010120019000001b210000613d0000000400000005000000000001042d000000040100002900000000010104330000004402100039000007a80300004100000000003204350000002402100039000000170300003900000000003204350000070902000041000000000021043500000004021000390000000203000029000000000032043500000064020000391c0c014c0000040f000000000100001900000000020000191c0c014c0000040f000000000110004c00001b270000613d000000000001042d000000400100003900000000010104330000004402100039000007a90300004100000000003204350000002402100039000000140300003900000000003204350000070902000041000000000021043500000004021000390000002003000039000000000032043500000064020000391c0c014c0000040f00040000000000020000070601100197000300000001001d000000000010043500000007020000390000002001000039000200000001001d000100000002001d000000000021043500000040020000390000000001000019000400000002001d1c0c01190000040f1c0c1c0a0000040f000000ff0110019000001b6a0000613d00000003010000290000000000100435000000020100002900000001020000290000000000210435000000000100001900000004020000291c0c01190000040f000200000001001d1c0c1c0a0000040f000001000200008a000000000121016f00000002020000291c0c1c080000040f000000040100002900000000010104330000000302000029000000000021043500000704020000410000000003000414000007040430009c0000000003028019000007040410009c00000000010280190000004001100210000000c002300210000000000112019f0000070b011001c70000800d020000390000000103000039000007aa040000411c0c1bfe0000040f000000010120019000001b790000613d0000000400000005000000000001042d000000040100002900000000010104330000004402100039000007ab0300004100000000003204350000002402100039000000150300003900000000003204350000070902000041000000000021043500000004021000390000000203000029000000000032043500000064020000391c0c014c0000040f000000000100001900000000020000191c0c014c0000040f000a000000000002000a00000002001d000900000001001d00000009010000391c0c1c0a0000040f000700000001001d000000000110004c00001be50000613d00000009010000290000070601100197000800000001001d00000000001004350000000b010000390000002002000039000900000002001d0000000000120435000000400200003900000000010000191c0c01190000040f1c0c1c0a0000040f000000000210004c00001be50000613d000600000001001d000000080100002900000000001004350000000a010000390000000902000029000500000001001d0000000000120435000000400200003900000000010000191c0c01190000040f1c0c1c0a0000040f0000075a020000410000000000200439000300000001001d0000800b010000390000000402000039000200000002001d1c0c01300000040f000000070400002900000000324100d900000000354200a9000000000114004b00001bac0000213d00000000212500d9000000000114004b00001be70000c13d000000080100002900000000001004350000000c020000390000000901000029000400000002001d000000000021043500000040020000390000000001000019000100000002001d000700000005001d1c0c01190000040f1c0c1c0a0000040f0000000702000029000000000121004b00001bc40000413d0000000a0100002900000003020000290000000001120019000a00000001001d000000000121004b00000000010000190000000101004039000000010110019000001be70000c13d0000000a020000290000000601000029000a00000002001d000000000112004b00001bef0000213d000000080100002900000000001004350000000902000029000000050100002900000000001204350000004002000039000700000002001d00000000010000191c0c01190000040f00000000020100190000000a010000291c0c1c080000040f00000008010000290000000000100435000000040100002900000009020000290000000000120435000000000100001900000007020000291c0c01190000040f0000075a020000410000000000200439000a00000001001d0000800b0100003900000004020000391c0c01300000040f0000000a020000291c0c1c080000040f0000000a00000005000000000001042d00000773010000410000000000100435000000110100003900000002020000290000000000120435000000240200003900000000010000191c0c014c0000040f000000010100002900000000010104330000004402100039000007ac0300004100000000003204350000002402100039000000120300003900000000003204350000070902000041000000000021043500000004021000390000000903000029000000000032043500000064020000391c0c014c0000040f00001c01002104210000000102000039000000000001042d0000000002000019000000000001042d00001c06002104230000000102000039000000000001042d0000000002000019000000000001042d000000000012041b000000000001042d000000000101041a000000000001042d00001c0c0000043200001c0d0001042e00001c0e00010430000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff02000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e008c379a0000000000000000000000000000000000000000000000000000000004163636f756e7420697320616c7265616479207061757365720000000000000002000000000000000000000000000000000000200000000000000000000000006719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f84163636f756e7420697320616c726561647920676f7665726e6f720000000000dc5a48d79e2e147530ff63ecdbed5a5a66adb9d5cf339384d5d076da197c40b500000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000020000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000089927410000000000000000000000000000000000000000000000000000000017bdbae50000000000000000000000000000000000000000000000000000000025c38b9f000000000000000000000000000000000000000000000000000000002fd1b0a400000000000000000000000000000000000000000000000000000000370fb47b000000000000000000000000000000000000000000000000000000003c4a25d0000000000000000000000000000000000000000000000000000000003c64f04b000000000000000000000000000000000000000000000000000000003d572107000000000000000000000000000000000000000000000000000000003f2e5fc3000000000000000000000000000000000000000000000000000000003f4ba83a00000000000000000000000000000000000000000000000000000000457bfa2f0000000000000000000000000000000000000000000000000000000046fbf68e0000000000000000000000000000000000000000000000000000000047b16c6c00000000000000000000000000000000000000000000000000000000482341260000000000000000000000000000000000000000000000000000000052532faa0000000000000000000000000000000000000000000000000000000054eea79600000000000000000000000000000000000000000000000000000000566887000000000000000000000000000000000000000000000000000000000057d775f8000000000000000000000000000000000000000000000000000000005c975abb0000000000000000000000000000000000000000000000000000000060216b0000000000000000000000000000000000000000000000000000000000618ee0550000000000000000000000000000000000000000000000000000000065a114f100000000000000000000000000000000000000000000000000000000682dbc22000000000000000000000000000000000000000000000000000000006b2c0f55000000000000000000000000000000000000000000000000000000006ef8d66d000000000000000000000000000000000000000000000000000000007044c89e0000000000000000000000000000000000000000000000000000000080f51c120000000000000000000000000000000000000000000000000000000082dc1ec4000000000000000000000000000000000000000000000000000000008456cb5900000000000000000000000000000000000000000000000000000000878fe1ce0000000000000000000000000000000000000000000000000000000089e39127000000000000000000000000000000000000000000000000000000008da5cb5b000000000000000000000000000000000000000000000000000000009b14d4c6000000000000000000000000000000000000000000000000000000009e25fc5c000000000000000000000000000000000000000000000000000000009ff9001a00000000000000000000000000000000000000000000000000000000a21a928000000000000000000000000000000000000000000000000000000000a5977fbb00000000000000000000000000000000000000000000000000000000a7bdf45a00000000000000000000000000000000000000000000000000000000adc0d57f00000000000000000000000000000000000000000000000000000000b1c94d9400000000000000000000000000000000000000000000000000000000b517b55000000000000000000000000000000000000000000000000000000000b5f2bc4700000000000000000000000000000000000000000000000000000000ba2cb25c00000000000000000000000000000000000000000000000000000000ccde517a00000000000000000000000000000000000000000000000000000000cdd1b25d00000000000000000000000000000000000000000000000000000000cefe0df500000000000000000000000000000000000000000000000000000000d0790da900000000000000000000000000000000000000000000000000000000e026049c00000000000000000000000000000000000000000000000000000000e09ab42800000000000000000000000000000000000000000000000000000000e3eece2600000000000000000000000000000000000000000000000000000000e43581b800000000000000000000000000000000000000000000000000000000e999e5f400000000000000000000000000000000000000000000000000000000eecdac8800000000000000000000000000000000000000000000000000000000f20c922a00000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000f832138300000000000000000000000000000000000000000000000000000000f8b30d7d800000000000000000000000000000000000000000000000000000000000000064647265737300000000000000000000000000000000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f206173656400000000000000000000000000000000000000000000000000000000006e6f7469636520706572696f642063616e206f6e6c7920626520696e637265610200000000000000000000000000000000000040000000000000000000000000c56b0d14c4940515800d94ebbd0f3f5d8cc58ba1109c12536bd993b72e466e4f9a8a0592ac89c5ad3bc6df8224c17b485976f597df104ee20d0df415241f670b52656c6179000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff9f000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffff1f000000000000000000000000000000000000000000000000ffffffffffffff3f02000000000000000000000000000000000000e000000000000000000000000079fa08de5149d912dce8e5e8da7a7c17ccdf23dd5d3bfe196802e6eb86347c7c796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d955391326e6f742072656163682072657365742074696d6500000000000000000000000089d8051e597ab4178a863a5190407b98abfeff406aa8db90c59af76612e58f0157697468647261774d7367000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff7f776974686472617720616c72656164792073756363656564656400000000000002000000000000000000000000000000000000c000000000000000000000000048a1ab26f3aa7b62bb6b6e8eed182f292b84eb7b006c0254386b268af20774be64656c61796564207472616e73666572207374696c6c206c6f636b656400000002000000000000000000000000000000000000800000000000000000000000003b40e5089937425d14cdd96947e5661868357e224af59bd8b24a4b8a330d442664656c61796564207472616e73666572206e6f742065786973740000000000004f12d1a5bfb3ccd3719255d4d299d808d50cdca9a0a5c2b3a5aaa7edde73052c62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258ffffffffffffffffffffffffffffffffffffffffffffffff00000000000000001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b83d0e30db0000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000004000000000000000000000000d5d28426c3248963b1719df49aa4c665120372e02c8249bbea03d019c39ce7642664fec2ff76486ac58ed087310855b648b15b9d19f3de8529e95f7c46b7d6b3ffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000608e49c22994f20b5d3496dca088b88dfd81b4a3e8cc3809ea1e10a320107e895db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa5061757361626c653a206e6f742070617573656400000000000000000000000000000000000000000000000000000000000000000000000100000000000000004e487b7100000000000000000000000000000000000000000000000000000000c0a39f234199b125fb93713c4d067bdcebbf691087f87b79c0feb92b156ba8b668e825132f7d4bc837dea2d64ac9fc19912bf0224b67f9317d8f1a917f5304a1ceaad6533bfb481492fb3e08ef19297f46611b8fa9de5ef4cf8dc23a56ad09ce8b59d386e660418a48d742213ad5ce7c4dd51ae81f30e4e2c387f17d907010c900000000000000000000000100000000000000000000000000000000000000005265656e7472616e637947756172643a207265656e7472616e742063616c6c005061757361626c653a207061757365640000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff60000000000000000000000000000000000000000000000000ffffffffffffffc05361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65646f742073756363656564000000000000000000000000000000000000000000005361666545524332303a204552433230206f7065726174696f6e20646964206e416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000416d6f756e74206d69736d6174636800000000000000000000000000000000004e61746976652077726170206e6f742073657400000000000000000000000000616d6f756e7420746f6f20736d616c6c000000000000000000000000000000007472616e73666572206578697374730000000000000000000000000000000000616d6f756e7420746f6f206c61726765000000000000000000000000000000006d617820736c69707061676520746f6f20736d616c6c0000000000000000000043616c6c6572206973206e6f7420676f7665726e6f72000000000000000000006c656e677468206d69736d617463680000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff802e1a7d4d000000000000000000000000000000000000000000000000000000006661696c656420746f2073656e64206e617469766520746f6b656e00000000004f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572080000000000000000000000000000000000000000000000000000000000000007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff4d69736d617463682063757272656e74207369676e657273000000000000000019457468657265756d205369676e6564204d6573736167653a0a3332000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7369676e657273206e6f7420696e20617363656e64696e67206f7264657200007369676e6572206e6f7420666f756e6400000000000000000000000000000000547269676765722074696d65206973206e6f7420696e6372656173696e670000547269676765722074696d6520697320746f6f206c61726765000000000000005570646174655369676e6572730000000000000000000000000000000000000074636800000000000000000000000000000000000000000000000000000000007369676e65727320616e6420706f77657273206c656e677468206e6f74206d6171756f72756d206e6f7420726561636865640000000000000000000000000000756500000000000000000000000000000000000000000000000000000000000045434453413a20696e76616c6964207369676e6174757265202776272076616c45434453413a20696e76616c6964207369676e6174757265202773272076616c45434453413a20696e76616c6964207369676e6174757265206c656e6774680045434453413a20696e76616c6964207369676e617475726500000000000000007fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a1f126123539a68393c55697f617e7d1148e371988daed246c2f41da99965a23f865720000000000000000000000000000000000000000000000000000000000004e6577207369676e657273206e6f7420696e20617363656e64696e67206f726464656c61796564207472616e7366657220616c72656164792065786973747300cbcfffe5102114216a85d3aceb14ad4b81a3935b1b5c468fadf3889eb9c5dce61ebe834e73d60a5fec822c1e1727d34bc79f2ad977ed504581cc1822fe20fb5b4163636f756e74206973206e6f7420676f7665726e6f7200000000000000000043616c6c6572206973206e6f7420706175736572000000000000000000000000cd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e4163636f756e74206973206e6f74207061757365720000000000000000000000766f6c756d652065786365656473206361700000000000000000000000000000
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 35 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ZKSYNC | 56.42% | $0.999743 | 1,146,525.1235 | $1,146,230.47 | |
ZKSYNC | 43.07% | $1,908.81 | 458.4575 | $875,108.17 | |
ZKSYNC | 0.46% | $0.006024 | 1,550,128.4571 | $9,337.4 | |
ZKSYNC | 0.04% | $0.999743 | 750.449 | $750.26 | |
ZKSYNC | <0.01% | $0.120817 | 957.213 | $115.65 | |
ZKSYNC | <0.01% | $0.024985 | 4,070.9182 | $101.71 | |
ZKSYNC | <0.01% | $1,904.6 | 0.007265 | $13.84 |
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.