More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 987 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw And Har... | 6179340 | 13 days ago | IN | 0 ETH | 0.00001089 | ||||
Harvest All | 6099922 | 14 days ago | IN | 0 ETH | 0.0000241 | ||||
Deposit | 6065272 | 15 days ago | IN | 0 ETH | 0.00000491 | ||||
Harvest All | 6065066 | 15 days ago | IN | 0 ETH | 0.00001433 | ||||
Withdraw And Har... | 6001312 | 15 days ago | IN | 0 ETH | 0.00000679 | ||||
Withdraw And Har... | 6001274 | 15 days ago | IN | 0 ETH | 0.00000469 | ||||
Withdraw And Har... | 6001250 | 15 days ago | IN | 0 ETH | 0.00000689 | ||||
Withdraw And Har... | 6001074 | 15 days ago | IN | 0 ETH | 0.00001084 | ||||
Withdraw And Har... | 5866834 | 17 days ago | IN | 0 ETH | 0.00001137 | ||||
Withdraw And Har... | 5848417 | 17 days ago | IN | 0 ETH | 0.00000682 | ||||
Withdraw And Har... | 5848282 | 17 days ago | IN | 0 ETH | 0.00000469 | ||||
Withdraw And Har... | 5848243 | 17 days ago | IN | 0 ETH | 0.00001088 | ||||
Withdraw And Har... | 5761089 | 18 days ago | IN | 0 ETH | 0.00000765 | ||||
Deposit | 5760546 | 18 days ago | IN | 0 ETH | 0.00000813 | ||||
Withdraw And Har... | 5760375 | 18 days ago | IN | 0 ETH | 0.00000472 | ||||
Withdraw And Har... | 5760326 | 18 days ago | IN | 0 ETH | 0.00000533 | ||||
Withdraw And Har... | 5760274 | 18 days ago | IN | 0 ETH | 0.00000534 | ||||
Harvest All | 5760204 | 18 days ago | IN | 0 ETH | 0.00001968 | ||||
Withdraw And Har... | 4224077 | 36 days ago | IN | 0 ETH | 0.00000548 | ||||
Harvest All | 4223494 | 36 days ago | IN | 0 ETH | 0.00001456 | ||||
Withdraw And Har... | 4104825 | 38 days ago | IN | 0 ETH | 0.00000896 | ||||
Withdraw And Har... | 4104436 | 38 days ago | IN | 0 ETH | 0.00000553 | ||||
Harvest All | 4104350 | 38 days ago | IN | 0 ETH | 0.00001505 | ||||
Withdraw And Har... | 4028794 | 39 days ago | IN | 0 ETH | 0.00000997 | ||||
Withdraw And Har... | 4028708 | 39 days ago | IN | 0 ETH | 0.00001165 |
Latest 1 internal transaction
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
1201406 | 72 days ago | Contract Creation | 0 ETH |
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
MONDMasterChef
Compiler Version
v0.8.7+commit.e28d00a7
ZkSolc Version
v1.5.7
Optimization Enabled:
Yes with Mode 3
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0-or-later // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. 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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * 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 `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } pragma solidity ^0.8.0; /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 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); } } } } pragma solidity ^0.8.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; 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"); } } } pragma solidity ^0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; if (lastIndex != toDeleteIndex) { bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex } // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { return _values(set._inner); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; assembly { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; assembly { result := store } return result; } } pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } 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; } } pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @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() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity 0.8.7; contract MONDToken is ERC20("MONDToken", "MOND"), Ownable { uint256 public constant MAX_SUPPLY = 250_000_000e18; // 250 million mond /// @notice Creates `_amount` token to `_to`. Must only be called by the owner (MasterChef). function mint(address _to, uint256 _amount) public onlyOwner { require( totalSupply() + _amount <= MAX_SUPPLY, "MOND::mint: cannot exceed max supply" ); _mint(_to, _amount); } } pragma solidity 0.8.7; interface IRewarder { function onMONDReward( uint256 pid, address user, address recipient, uint256 mondAmount, uint256 newLpAmount ) external; function pendingTokens( uint256 pid, address user, uint256 mondAmount ) external view returns (IERC20[] memory, uint256[] memory); } pragma solidity 0.8.7; /* This master chef is based on SUSHI's version with some adjustments: - Upgrade to pragma 0.8.7 - therefore remove usage of SafeMath (built in overflow check for solidity > 8) - Merge sushi's master chef V1 & V2 (no usage of dummy pool) - remove withdraw function (without harvest) => requires the rewardDebt to be an signed int instead of uint which requires a lot of casting and has no real usecase for us - no dev emissions, but treasury emissions instead - treasury percentage is subtracted from emissions instead of added on top - update of emission rate with upper limit of 6 MOND/block - more require checks in general */ contract MONDMasterChef is Ownable { using SafeERC20 for IERC20; using EnumerableSet for EnumerableSet.AddressSet; // Info of each user. struct UserInfo { uint256 amount; // How many LP tokens the user has provided. uint256 rewardDebt; // Reward debt. See explanation below. // // We do some fancy math here. Basically, any point in time, the amount of MOND // entitled to a user but is pending to be distributed is: // // pending reward = (user.amount * pool.accMONDPerShare) - user.rewardDebt // // Whenever a user deposits or withdraws LP tokens to a pool. Here's what happens: // 1. The pool's `accMONDPerShare` (and `lastRewardBlock`) gets updated. // 2. User receives the pending reward sent to his/her address. // 3. User's `amount` gets updated. // 4. User's `rewardDebt` gets updated. } // Info of each pool. struct PoolInfo { // we have a fixed number of MOND tokens released per block, each pool gets his fraction based on the allocPoint uint256 allocPoint; // How many allocation points assigned to this pool. the fraction MOND to distribute per block. uint256 lastRewardBlock; // Last block number that MOND distribution occurs. uint256 accMONDPerShare; // Accumulated MOND per LP share. this is multiplied by ACC_MOND_PRECISION for more exact results (rounding errors) } // The MOND TOKEN! MONDToken public mond; // Treasury address. address public treasuryAddress; // MOND tokens created per block. uint256 public mondPerBlock; uint256 private constant ACC_MOND_PRECISION = 1e12; // distribution percentages: a value of 1000 = 100% // 12.8% percentage of pool rewards that goes to the treasury. uint256 public constant TREASURY_PERCENTAGE = 124; // 87.2% percentage of pool rewards that goes to LP holders. uint256 public constant POOL_PERCENTAGE = 876; // Info of each pool. PoolInfo[] public poolInfo; // Info of each user that stakes LP tokens per pool. poolId => address => userInfo /// @notice Address of the LP token for each MCV pool. IERC20[] public lpTokens; EnumerableSet.AddressSet private lpTokenAddresses; /// @notice Address of each `IRewarder` contract in MCV. IRewarder[] public rewarder; mapping(uint256 => mapping(address => UserInfo)) public userInfo; // mapping form poolId => user Address => User Info // Total allocation points. Must be the sum of all allocation points in all pools. uint256 public totalAllocPoint = 0; // The block number when MOND mining starts. uint256 public startBlock; event Deposit( address indexed user, uint256 indexed pid, uint256 amount, address indexed to ); event Withdraw( address indexed user, uint256 indexed pid, uint256 amount, address indexed to ); event EmergencyWithdraw( address indexed user, uint256 indexed pid, uint256 amount, address indexed to ); event Harvest(address indexed user, uint256 indexed pid, uint256 amount); event LogPoolAddition( uint256 indexed pid, uint256 allocPoint, IERC20 indexed lpToken, IRewarder indexed rewarder ); event LogSetPool( uint256 indexed pid, uint256 allocPoint, IRewarder indexed rewarder, bool overwrite ); event LogUpdatePool( uint256 indexed pid, uint256 lastRewardBlock, uint256 lpSupply, uint256 accMONDPerShare ); event SetTreasuryAddress( address indexed oldAddress, address indexed newAddress ); event UpdateEmissionRate(address indexed user, uint256 _mondPerSec); constructor( MONDToken _mond, address _treasuryAddress, uint256 _mondPerBlock, uint256 _startBlock ) { require( _mondPerBlock <= 6e18, "maximum emission rate of 6 mond per block exceeded" ); mond = _mond; treasuryAddress = _treasuryAddress; mondPerBlock = _mondPerBlock; startBlock = _startBlock; } function poolLength() external view returns (uint256) { return poolInfo.length; } // Add a new lp to the pool. Can only be called by the owner. function add( uint256 _allocPoint, IERC20 _lpToken, IRewarder _rewarder ) public onlyOwner { require( Address.isContract(address(_lpToken)), "add: LP token must be a valid contract" ); require( Address.isContract(address(_rewarder)) || address(_rewarder) == address(0), "add: rewarder must be contract or zero" ); // we make sure the same LP cannot be added twice which would cause trouble require( !lpTokenAddresses.contains(address(_lpToken)), "add: LP already added" ); // respect startBlock! uint256 lastRewardBlock = block.timestamp > startBlock ? block.timestamp : startBlock; totalAllocPoint = totalAllocPoint + _allocPoint; // LP tokens, rewarders & pools are always on the same index which translates into the pid lpTokens.push(_lpToken); lpTokenAddresses.add(address(_lpToken)); rewarder.push(_rewarder); poolInfo.push( PoolInfo({ allocPoint: _allocPoint, lastRewardBlock: lastRewardBlock, accMONDPerShare: 0 }) ); emit LogPoolAddition( lpTokens.length - 1, _allocPoint, _lpToken, _rewarder ); } // Update the given pool's MOND allocation point. Can only be called by the owner. /// @param _pid The index of the pool. See `poolInfo`. /// @param _allocPoint New AP of the pool. /// @param _rewarder Address of the rewarder delegate. /// @param overwrite True if _rewarder should be `set`. Otherwise `_rewarder` is ignored. function set( uint256 _pid, uint256 _allocPoint, IRewarder _rewarder, bool overwrite ) public onlyOwner { require( Address.isContract(address(_rewarder)) || address(_rewarder) == address(0), "set: rewarder must be contract or zero" ); // we re-adjust the total allocation points totalAllocPoint = totalAllocPoint - poolInfo[_pid].allocPoint + _allocPoint; poolInfo[_pid].allocPoint = _allocPoint; if (overwrite) { rewarder[_pid] = _rewarder; } emit LogSetPool( _pid, _allocPoint, overwrite ? _rewarder : rewarder[_pid], overwrite ); } // View function to see pending MOND on frontend. function pendingMOND(uint256 _pid, address _user) external view returns (uint256 pending) { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][_user]; // how many MOND per lp token uint256 accMONDPerShare = pool.accMONDPerShare; // total staked lp tokens in this pool uint256 lpSupply = lpTokens[_pid].balanceOf(address(this)); if (block.timestamp > pool.lastRewardBlock && lpSupply != 0) { uint256 blocksSinceLastReward = block.timestamp - pool.lastRewardBlock; // based on the pool weight (allocation points) we calculate the mond rewarded for this specific pool uint256 mondRewards = (blocksSinceLastReward * mondPerBlock * pool.allocPoint) / totalAllocPoint; // we take parts of the rewards for treasury, these can be subject to change, so we recalculate it // a value of 1000 = 100% uint256 mondRewardsForPool = (mondRewards * POOL_PERCENTAGE) / 1000; // we calculate the new amount of accumulated mond per LP token accMONDPerShare = accMONDPerShare + ((mondRewardsForPool * ACC_MOND_PRECISION) / lpSupply); } // based on the number of LP tokens the user owns, we calculate the pending amount by subtracting the amount // which he is not eligible for (joined the pool later) or has already harvested pending = (user.amount * accMONDPerShare) / ACC_MOND_PRECISION - user.rewardDebt; } /// @notice Update reward variables for all pools. Be careful of gas spending! /// @param pids Pool IDs of all to be updated. Make sure to update all active pools. function massUpdatePools(uint256[] calldata pids) external { uint256 len = pids.length; for (uint256 i = 0; i < len; ++i) { updatePool(pids[i]); } } // Update reward variables of the given pool to be up-to-date. function updatePool(uint256 _pid) public returns (PoolInfo memory pool) { pool = poolInfo[_pid]; if (block.timestamp > pool.lastRewardBlock) { // total lp tokens staked for this pool uint256 lpSupply = lpTokens[_pid].balanceOf(address(this)); if (lpSupply > 0) { uint256 blocksSinceLastReward = block.timestamp - pool.lastRewardBlock; // rewards for this pool based on his allocation points uint256 mondRewards = (blocksSinceLastReward * mondPerBlock * pool.allocPoint) / totalAllocPoint; uint256 mondRewardsForPool = (mondRewards * POOL_PERCENTAGE) / 1000; mond.mint( treasuryAddress, (mondRewards * TREASURY_PERCENTAGE) / 1000 ); mond.mint(address(this), mondRewardsForPool); pool.accMONDPerShare = pool.accMONDPerShare + ((mondRewardsForPool * ACC_MOND_PRECISION) / lpSupply); } pool.lastRewardBlock = block.timestamp; poolInfo[_pid] = pool; emit LogUpdatePool( _pid, pool.lastRewardBlock, lpSupply, pool.accMONDPerShare ); } } // Deposit LP tokens to MasterChef for MOND allocation. function deposit( uint256 _pid, uint256 _amount, address _to ) public { PoolInfo memory pool = updatePool(_pid); UserInfo storage user = userInfo[_pid][_to]; user.amount = user.amount + _amount; // since we add more LP tokens, we have to keep track of the rewards he is not eligible for // if we would not do that, he would get rewards like he added them since the beginning of this pool // note that only the accMONDPerShare have the precision applied user.rewardDebt = user.rewardDebt + (_amount * pool.accMONDPerShare) / ACC_MOND_PRECISION; IRewarder _rewarder = rewarder[_pid]; if (address(_rewarder) != address(0)) { _rewarder.onMONDReward(_pid, _to, _to, 0, user.amount); } lpTokens[_pid].safeTransferFrom(msg.sender, address(this), _amount); emit Deposit(msg.sender, _pid, _amount, _to); } function harvestAll(uint256[] calldata _pids, address _to) external { for (uint256 i = 0; i < _pids.length; i++) { if (userInfo[_pids[i]][msg.sender].amount > 0) { harvest(_pids[i], _to); } } } /// @notice Harvest proceeds for transaction sender to `_to`. /// @param _pid The index of the pool. See `poolInfo`. /// @param _to Receiver of MOND rewards. function harvest(uint256 _pid, address _to) public { PoolInfo memory pool = updatePool(_pid); UserInfo storage user = userInfo[_pid][msg.sender]; // this would be the amount if the user joined right from the start of the farm uint256 accumulatedMOND = (user.amount * pool.accMONDPerShare) / ACC_MOND_PRECISION; // subtracting the rewards the user is not eligible for uint256 eligibleMOND = accumulatedMOND - user.rewardDebt; // we set the new rewardDebt to the current accumulated amount of rewards for his amount of LP token user.rewardDebt = accumulatedMOND; if (eligibleMOND > 0) { safeMONDTransfer(_to, eligibleMOND); } IRewarder _rewarder = rewarder[_pid]; if (address(_rewarder) != address(0)) { _rewarder.onMONDReward( _pid, msg.sender, _to, eligibleMOND, user.amount ); } emit Harvest(msg.sender, _pid, eligibleMOND); } /// @notice Withdraw LP tokens from MCV and harvest proceeds for transaction sender to `_to`. /// @param _pid The index of the pool. See `poolInfo`. /// @param _amount LP token amount to withdraw. /// @param _to Receiver of the LP tokens and MOND rewards. function withdrawAndHarvest( uint256 _pid, uint256 _amount, address _to ) public { PoolInfo memory pool = updatePool(_pid); UserInfo storage user = userInfo[_pid][msg.sender]; require(_amount <= user.amount, "cannot withdraw more than deposited"); // this would be the amount if the user joined right from the start of the farm uint256 accumulatedMOND = (user.amount * pool.accMONDPerShare) / ACC_MOND_PRECISION; // subtracting the rewards the user is not eligible for uint256 eligibleMOND = accumulatedMOND - user.rewardDebt; /* after harvest & withdraw, he should be eligible for exactly 0 tokens => userInfo.amount * pool.accMONDPerShare / ACC_MOND_PRECISION == userInfo.rewardDebt since we are removing some LP's from userInfo.amount, we also have to remove the equivalent amount of reward debt */ user.rewardDebt = accumulatedMOND - (_amount * pool.accMONDPerShare) / ACC_MOND_PRECISION; user.amount = user.amount - _amount; safeMONDTransfer(_to, eligibleMOND); IRewarder _rewarder = rewarder[_pid]; if (address(_rewarder) != address(0)) { _rewarder.onMONDReward( _pid, msg.sender, _to, eligibleMOND, user.amount ); } lpTokens[_pid].safeTransfer(_to, _amount); emit Withdraw(msg.sender, _pid, _amount, _to); emit Harvest(msg.sender, _pid, eligibleMOND); } // Withdraw without caring about rewards. EMERGENCY ONLY. function emergencyWithdraw(uint256 _pid, address _to) public { UserInfo storage user = userInfo[_pid][msg.sender]; uint256 amount = user.amount; user.amount = 0; user.rewardDebt = 0; IRewarder _rewarder = rewarder[_pid]; if (address(_rewarder) != address(0)) { _rewarder.onMONDReward(_pid, msg.sender, _to, 0, 0); } // Note: transfer can fail or succeed if `amount` is zero. lpTokens[_pid].safeTransfer(_to, amount); emit EmergencyWithdraw(msg.sender, _pid, amount, _to); } // Safe MOND transfer function, just in case if rounding error causes pool to not have enough MOND. function safeMONDTransfer(address _to, uint256 _amount) internal { uint256 mondBalance = mond.balanceOf(address(this)); if (_amount > mondBalance) { mond.transfer(_to, mondBalance); } else { mond.transfer(_to, _amount); } } // Update treasury address by the owner. function treasury(address _treasuryAddress) public onlyOwner { treasuryAddress = _treasuryAddress; emit SetTreasuryAddress(treasuryAddress, _treasuryAddress); } function updateEmissionRate(uint256 _mondPerBlock) public onlyOwner { require( _mondPerBlock <= 6e18, "maximum emission rate of 6 mond per block exceeded" ); mondPerBlock = _mondPerBlock; emit UpdateEmissionRate(msg.sender, _mondPerBlock); } }
{ "optimizer": { "enabled": true, "mode": "3" }, "outputSelection": { "*": { "*": [ "abi", "metadata" ], "": [ "ast" ] } }, "detectMissingLibraries": false, "forceEVMLA": false, "enableEraVMExtensions": false, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"contract MONDToken","name":"_mond","type":"address"},{"internalType":"address","name":"_treasuryAddress","type":"address"},{"internalType":"uint256","name":"_mondPerBlock","type":"uint256"},{"internalType":"uint256","name":"_startBlock","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"EmergencyWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Harvest","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"allocPoint","type":"uint256"},{"indexed":true,"internalType":"contract IERC20","name":"lpToken","type":"address"},{"indexed":true,"internalType":"contract IRewarder","name":"rewarder","type":"address"}],"name":"LogPoolAddition","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"allocPoint","type":"uint256"},{"indexed":true,"internalType":"contract IRewarder","name":"rewarder","type":"address"},{"indexed":false,"internalType":"bool","name":"overwrite","type":"bool"}],"name":"LogSetPool","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"lastRewardBlock","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"lpSupply","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"accMONDPerShare","type":"uint256"}],"name":"LogUpdatePool","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":true,"internalType":"address","name":"oldAddress","type":"address"},{"indexed":true,"internalType":"address","name":"newAddress","type":"address"}],"name":"SetTreasuryAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"_mondPerSec","type":"uint256"}],"name":"UpdateEmissionRate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"POOL_PERCENTAGE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TREASURY_PERCENTAGE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_allocPoint","type":"uint256"},{"internalType":"contract IERC20","name":"_lpToken","type":"address"},{"internalType":"contract IRewarder","name":"_rewarder","type":"address"}],"name":"add","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"harvest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_pids","type":"uint256[]"},{"internalType":"address","name":"_to","type":"address"}],"name":"harvestAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"lpTokens","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"pids","type":"uint256[]"}],"name":"massUpdatePools","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mond","outputs":[{"internalType":"contract MONDToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mondPerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"address","name":"_user","type":"address"}],"name":"pendingMOND","outputs":[{"internalType":"uint256","name":"pending","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"poolInfo","outputs":[{"internalType":"uint256","name":"allocPoint","type":"uint256"},{"internalType":"uint256","name":"lastRewardBlock","type":"uint256"},{"internalType":"uint256","name":"accMONDPerShare","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"rewarder","outputs":[{"internalType":"contract IRewarder","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_allocPoint","type":"uint256"},{"internalType":"contract IRewarder","name":"_rewarder","type":"address"},{"internalType":"bool","name":"overwrite","type":"bool"}],"name":"set","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAllocPoint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_treasuryAddress","type":"address"}],"name":"treasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasuryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mondPerBlock","type":"uint256"}],"name":"updateEmissionRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"updatePool","outputs":[{"components":[{"internalType":"uint256","name":"allocPoint","type":"uint256"},{"internalType":"uint256","name":"lastRewardBlock","type":"uint256"},{"internalType":"uint256","name":"accMONDPerShare","type":"uint256"}],"internalType":"struct MONDMasterChef.PoolInfo","name":"pool","type":"tuple"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"userInfo","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"rewardDebt","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawAndHarvest","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
9c4d535b0000000000000000000000000000000000000000000000000000000000000000010005c9a46ec6489c25405d9d998a06368e8493fa46080a753df7475702cb600000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000008000000000000000000000000061c0940b2760c7b64ad8fd775c12d1f11c73deb200000000000000000000000095d457a84e830a76be47419427814cefbd0c269f0000000000000000000000000000000000000000000000004615343e73b900000000000000000000000000000000000000000000000000000000000000125494
Deployed Bytecode
0x0003000000000002001000000000000200000060031002700000054e03300197000200000031035500010000000103550000008004000039000000400040043f00000001002001900000001f0000c13d000000040030008c000009300000413d000000000201043b000000e0022002700000055b0020009c000000790000a13d0000055c0020009c000000880000213d000005660020009c0000013e0000a13d000005670020009c000001ea0000213d0000056a0020009c000002970000613d0000056b0020009c000009300000c13d0000000001000416000000000001004b000009300000c13d0000000101000039000003c10000013d0000000002000416000000000002004b000009300000c13d0000001f023000390000054f022001970000008002200039000000400020043f0000001f0530018f000005500630019800000080026000390000002f0000613d000000000701034f000000007807043c0000000004840436000000000024004b0000002b0000c13d000000000005004b0000003c0000613d000000000161034f0000000304500210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000800030008c000009300000413d000000800700043d000005510070009c000009300000213d000000a00100043d001000000001001d000005510010009c000009300000213d000000000100041a00000552021001970000000006000411000000000262019f000000e00400043d000d00000004001d000000c00400043d000e00000004001d000000000020041b000000400200043d0000054e0020009c000c00000002001d0000054e02008041000b00400020021800000000020004140000054e0020009c0000054e02008041000000c00220021000000551051001970000000b012001af00000553011001c70000800d020000390000000303000039000f00000007001d0000055404000041153215280000040f0000000f030000290000000100200190000009300000613d0000000a01000039000000000001041b0000000e04000029000005550040009c0000044c0000413d0000000c03000029000000640130003900000557020000410000000000210435000000440130003900000558020000410000000000210435000000240130003900000032020000390000000000210435000005590100004100000000001304350000000401300039000000200200003900000000002104350000000b010000290000055a011001c700001534000104300000056f0020009c000000950000a13d000005700020009c000000c20000a13d000005710020009c000001d00000213d000005740020009c0000023e0000613d000005750020009c000009300000c13d0000000001000416000000000001004b000009300000c13d0000000b010000390000037e0000013d0000055d0020009c0000019c0000a13d0000055e0020009c000001f30000213d000005610020009c000002ab0000613d000005620020009c000009300000c13d0000000001000416000000000001004b000009300000c13d0000000201000039000003c10000013d000005790020009c000000b50000213d0000057d0020009c000002320000613d0000057e0020009c000002130000613d0000057f0020009c000009300000c13d000000240030008c000009300000413d0000000002000416000000000002004b000009300000c13d0000000401100370000000000101043b0000000402000039000000000302041a000000000013004b000009300000a13d000000000020043f00000003011000c9000005860210009a000000000202041a000005850310009a000000000303041a000005840110009a000000000101041a000000800010043f000000a00030043f000000c00020043f000005bf01000041000015330001042e0000057a0020009c000002370000613d0000057b0020009c0000022d0000613d0000057c0020009c000009300000c13d0000000001000416000000000001004b000009300000c13d000000000103001915320f8e0000040f15320f9c0000040f0000047a0000013d000005760020009c000003b40000613d000005770020009c000002b90000613d000005780020009c000009300000c13d000000440030008c000009300000413d0000000002000416000000000002004b000009300000c13d0000002402100370000000000202043b001000000002001d000005510020009c000009300000213d0000000401100370000000000101043b000f00000001001d000000000010043f0000000901000039000000200010043f00000000010004140000054e0010009c0000054e01008041000000c00110021000000597011001c700008010020000391532152d0000040f0000000100200190000009300000613d000000000101043b00000000020004110000055102200197000e00000002001d000000000020043f000000200010043f00000000010004140000054e0010009c0000054e01008041000000c00110021000000597011001c700008010020000391532152d0000040f0000000100200190000009300000613d000000000101043b000000000401041a000000000001041b0000000101100039000000000001041b0000000801000039000000000201041a0000000f03000029000000000032004b00000df20000a13d000c00000004001d000000000010043f000005990130009a000000000101041a000d05510010019c000006110000c13d0000000501000039000000000201041a0000000f03000029000000000032004b0000000c0400002900000df20000a13d000000000010043f000005890130009a000000000101041a000000400500043d0000004402500039000000000042043500000020035000390000059802000041000e00000003001d000000000023043500000024025000390000001003000029000000000032043500000044020000390000000000250435000005b80050009c00000f4a0000813d0000008002500039000000400020043f000d00000002001d000005b90020009c00000f4a0000213d0000055103100197000000c001500039000000400010043f00000020020000390000000d010000290000000000210435000a00000005001d000000a0025000390000059e01000041000900000002001d00000000001204350000058a010000410000000000100443000b00000003001d000000040030044300000000010004140000054e0010009c0000054e01008041000000c0011002100000058b011001c700008002020000391532152d0000040f000000010020019000000e540000613d000000000101043b000000000001004b000009f10000c13d000000400100043d0000004402100039000005bd03000041000000000032043500000024021000390000001d03000039000009aa0000013d0000056c0020009c000003c60000613d0000056d0020009c0000037a0000613d0000056e0020009c000009300000c13d000000440030008c000009300000413d0000000002000416000000000002004b000009300000c13d0000002402100370000000000202043b001000000002001d000005510020009c000009300000213d0000000401100370000000000201043b0000000401000039000000000101041a000000000021004b00000df20000a13d000f00000002001d000000000020043f0000000901000039000000200010043f00000000010004140000054e0010009c0000054e01008041000000c00110021000000597011001c700008010020000391532152d0000040f0000000100200190000009300000613d000000000101043b0000001002000029000000000020043f000000200010043f00000000010004140000054e0010009c0000054e01008041000000c00110021000000597011001c700008010020000391532152d0000040f0000000100200190000009300000613d000000000301043b0000000501000039000000000201041a0000000f04000029000000000042004b00000df20000a13d000d00000003001d00000003024000c9000e00000002001d000005860220009a000000000202041a000c00000002001d000000000010043f000005890140009a000000000101041a0000058a0200004100000000002004430000055101100197001000000001001d000000040010044300000000010004140000054e0010009c0000054e01008041000000c0011002100000058b011001c700008002020000391532152d0000040f000000010020019000000e540000613d000000000101043b000000000001004b000009300000613d000000400200043d0000058c01000041000000000012043500000000010004100000055101100197000f00000002001d0000000402200039000000000012043500000000010004140000001002000029000000040020008c000007120000c13d00000000030000310000073d0000013d000005630020009c000003e20000613d000005640020009c000003820000613d000005650020009c000009300000c13d000000640030008c000009300000413d0000000002000416000000000002004b000009300000c13d0000000402100370000000000202043b000f00000002001d0000002402100370000000000202043b001000000002001d000005510020009c000009300000213d0000004401100370000000000101043b000e00000001001d000005510010009c000009300000213d000000000100041a00000551011001970000000002000411000000000021004b000004430000c13d0000058a0100004100000000001004430000001001000029000000040010044300000000010004140000054e0010009c0000054e01008041000000c0011002100000058b011001c700008002020000391532152d0000040f000000010020019000000e540000613d000000000101043b000000000001004b000006380000c13d000000400100043d0000006402100039000005ac0300004100000000003204350000004402100039000005ad030000410000030b0000013d000005720020009c000002450000613d000005730020009c000009300000c13d000000240030008c000009300000413d0000000002000416000000000002004b000009300000c13d0000000401100370000000000101043b1532134d0000040f0000000032010434000000400400043d00000000022404360000000003030433000000000032043500000040011000390000000001010433000000400240003900000000001204350000054e0040009c0000054e040080410000004001400210000005b7011001c7000015330001042e000005680020009c000002d60000613d000005690020009c000009300000c13d0000000001000416000000000001004b000009300000c13d000000000100041a000003c20000013d0000055f0020009c000003190000613d000005600020009c000009300000c13d000000240030008c000009300000413d0000000002000416000000000002004b000009300000c13d0000000401100370000000000601043b000005510060009c000009300000213d000000000100041a00000551021001970000000005000411000000000052004b000004430000c13d000000000006004b0000046c0000c13d0000055901000041000000800010043f0000002001000039000000840010043f0000002601000039000000a40010043f0000058101000041000000c40010043f0000058201000041000000e40010043f00000583010000410000153400010430000000240030008c000009300000413d0000000002000416000000000002004b000009300000c13d0000000401100370000000000101043b000000000200041a00000551022001970000000005000411000000000052004b000004430000c13d000005550010009c000004600000413d0000055901000041000000800010043f0000002001000039000000840010043f0000003201000039000000a40010043f0000055801000041000000c40010043f0000055701000041000000e40010043f000005830100004100001534000104300000000001000416000000000001004b000009300000c13d0000000a010000390000037e0000013d0000000001000416000000000001004b000009300000c13d00000004010000390000037e0000013d0000000001000416000000000001004b000009300000c13d0000007c01000039000000800010043f000005a401000041000015330001042e0000000001000416000000000001004b000009300000c13d0000036c01000039000000800010043f000005a401000041000015330001042e000000440030008c000009300000413d0000000002000416000000000002004b000009300000c13d0000000402100370000000000202043b0000058e0020009c000009300000213d0000002304200039000000000034004b000009300000813d0000000404200039000000000441034f000000000404043b000e00000004001d0000058e0040009c000009300000213d000d00240020003d0000000e0200002900000005022002100000000d02200029000000000032004b000009300000213d0000002401100370000000000101043b000b00000001001d000005510010009c000009300000213d0000000e0000006b000003e00000613d00008010030000390000000001000411000c05510010019b00000000020000190000026e0000013d000000100200002900000001022000390000000e0020006c00008010030000390000047a0000813d001000000002001d00000005012002100000000d01100029000f00000001001d0000000101100367000000000101043b000000000010043f0000000901000039000000200010043f00000000010004140000054e0010009c0000054e01008041000000c00110021000000597011001c700000000020300191532152d0000040f0000000100200190000009300000613d000000000101043b0000000c02000029000000000020043f000000200010043f00000000010004140000054e0010009c0000054e01008041000000c00110021000000597011001c700008010020000391532152d0000040f0000000100200190000009300000613d000000000101043b000000000101041a000000000001004b000002690000613d0000000f010000290000000101100367000000000101043b0000000b0200002915320f9c0000040f000002690000013d0000000001000416000000000001004b000009300000c13d000000000100041a00000551021001970000000005000411000000000052004b000004430000c13d0000055201100197000000000010041b00000000010004140000054e0010009c0000054e01008041000000c00110021000000580011001c70000800d02000039000000030300003900000554040000410000000006000019000004770000013d000000240030008c000009300000413d0000000002000416000000000002004b000009300000c13d0000000401100370000000000101043b0000000802000039000000000302041a000000000013004b000009300000a13d000000000020043f000005990110009a000003c10000013d000000240030008c000009300000413d0000000002000416000000000002004b000009300000c13d0000000401100370000000000501043b000005510050009c000009300000213d000000000100041a00000551011001970000000002000411000000000021004b000004430000c13d0000000201000039000000000201041a0000055202200197000000000252019f000000000021041b00000000010004140000054e0010009c0000054e01008041000000c00110021000000580011001c70000800d020000390000000303000039000005be040000410000000006050019000004770000013d000000840030008c000009300000413d0000000002000416000000000002004b000009300000c13d0000002402100370000000000202043b000e00000002001d0000000402100370000000000202043b000f00000002001d0000004402100370000000000202043b001000000002001d000005510020009c000009300000213d0000006401100370000000000201043b000000000002004b0000000001000039000000010100c039000d00000002001d000000000012004b000009300000c13d000000000100041a00000551011001970000000002000411000000000021004b000004430000c13d0000058a0100004100000000001004430000001001000029000000040010044300000000010004140000054e0010009c0000054e01008041000000c0011002100000058b011001c700008002020000391532152d0000040f000000010020019000000e540000613d000000000101043b000000100000006b000006510000613d000000000001004b000006510000c13d000000400100043d0000006402100039000005aa0300004100000000003204350000004402100039000005b3030000410000000000320435000000240210003900000026030000390000000000320435000005590200004100000000002104350000000402100039000000200300003900000000003204350000054e0010009c0000054e0100804100000040011002100000055a011001c70000153400010430000000640030008c000009300000413d0000000002000416000000000002004b000009300000c13d0000004402100370000000000202043b001000000002001d000005510020009c000009300000213d0000000402100370000000000202043b0000002401100370000000000301043b000000e001000039000000400010043f000000800000043f000000a00000043f000000c00000043f0000000404000039000000000104041a000000000021004b00000df20000a13d000d00000003001d000000000040043f0000014001000039000000400010043f000f00000002001d00000003012000c9000005840210009a000c00000002001d000000000202041a000000e00020043f000005850210009a000b00000002001d000000000202041a000e00000002001d000001000020043f000005860110009a000a00000001001d000000000101041a000001200010043f0000058701000041000000000010044300000000010004140000054e0010009c0000054e01008041000000c00110021000000588011001c70000800b020000391532152d0000040f000000010020019000000e540000613d000000000101043b000900000001001d0000000e0010006c000008050000a13d0000000501000039000000000201041a0000000f03000029000000000032004b00000df20000a13d000000000010043f000005890130009a000000000101041a0000058a0200004100000000002004430000055101100197000e00000001001d000000040010044300000000010004140000054e0010009c0000054e01008041000000c0011002100000058b011001c700008002020000391532152d0000040f000000010020019000000e540000613d000000000101043b000000000001004b000009300000613d000000400300043d0000058c01000041000000000013043500000000010004100000055102100197000800000003001d0000000401300039000700000002001d000000000021043500000000010004140000000e02000029000000040020008c000007950000c13d0000000003000031000007c00000013d0000000001000416000000000001004b000009300000c13d0000000301000039000000000101041a000000800010043f000005a401000041000015330001042e000000440030008c000009300000413d0000000002000416000000000002004b000009300000c13d0000002402100370000000000202043b001000000002001d000005510020009c000009300000213d0000000401100370000000000101043b000000000010043f0000000901000039000000200010043f00000000010004140000054e0010009c0000054e01008041000000c00110021000000597011001c700008010020000391532152d0000040f0000000100200190000009300000613d000000000101043b0000001002000029000000000020043f000000200010043f00000000010004140000054e0010009c0000054e01008041000000c00110021000000597011001c700008010020000391532152d0000040f0000000100200190000009300000613d000000000101043b000000000201041a0000000101100039000000000101041a000000400300043d0000002004300039000000000014043500000000002304350000054e0030009c0000054e030080410000004001300210000005ae011001c7000015330001042e000000240030008c000009300000413d0000000002000416000000000002004b000009300000c13d0000000401100370000000000101043b0000000502000039000000000302041a000000000013004b000009300000a13d000000000020043f000005890110009a000000000101041a0000055101100197000000800010043f000005a401000041000015330001042e000000240030008c000009300000413d0000000002000416000000000002004b000009300000c13d0000000402100370000000000202043b0000058e0020009c000009300000213d0000002304200039000000000034004b000009300000813d0000000404200039000000000141034f000000000101043b000600000001001d0000058e0010009c000009300000213d000500240020003d000000060100002900000005011002100000000501100029000000000031004b000009300000213d000000060000006b0000047f0000c13d00000080010000390000047b0000013d000000640030008c000009300000413d0000000002000416000000000002004b000009300000c13d0000004402100370000000000202043b001000000002001d000005510020009c000009300000213d0000000402100370000000000202043b0000002401100370000000000301043b000000e001000039000000400010043f000000800000043f000000a00000043f000000c00000043f0000000404000039000000000104041a000000000021004b00000df20000a13d000d00000003001d000000000040043f0000014001000039000000400010043f000f00000002001d00000003012000c9000005840210009a000c00000002001d000000000202041a000000e00020043f000005850210009a000b00000002001d000000000202041a000e00000002001d000001000020043f000005860110009a000a00000001001d000000000101041a000001200010043f0000058701000041000000000010044300000000010004140000054e0010009c0000054e01008041000000c00110021000000588011001c70000800b020000391532152d0000040f000000010020019000000e540000613d000000000101043b000900000001001d0000000e0010006c000008dc0000a13d0000000501000039000000000201041a0000000f03000029000000000032004b00000df20000a13d000000000010043f000005890130009a000000000101041a0000058a0200004100000000002004430000055101100197000e00000001001d000000040010044300000000010004140000054e0010009c0000054e01008041000000c0011002100000058b011001c700008002020000391532152d0000040f000000010020019000000e540000613d000000000101043b000000000001004b000009300000613d000000400300043d0000058c01000041000000000013043500000000010004100000055102100197000800000003001d0000000401300039000700000002001d000000000021043500000000010004140000000e02000029000000040020008c0000086c0000c13d0000000003000031000008970000013d0000055901000041000000800010043f0000002001000039000000840010043f000000a40010043f000005c001000041000000c40010043f000005c10100004100001534000104300000000101000039000000000201041a0000055202200197000000000232019f000000000021041b0000000201000039000000000201041a000005520220019700000010022001af000000000021041b0000000301000039000000000041041b0000000b010000390000000d02000029000000000021041b0000002001000039000001000010044300000120000004430000055601000041000015330001042e0000000302000039000000000012041b000000800010043f00000000010004140000054e0010009c0000054e01008041000000c001100210000005c2011001c70000800d020000390000000203000039000005c304000041000004770000013d0000055201100197000000000161019f000000000010041b00000000010004140000054e0010009c0000054e01008041000000c00110021000000580011001c70000800d0200003900000003030000390000055404000041153215280000040f0000000100200190000009300000613d000000400100043d0000054e0010009c0000054e010080410000004001100210000015330001042e0000000001000410000405510010019b0000000002000019000004870000013d0000000b020000290000000102200039000000060020006c0000047a0000813d000b00000002001d000000050120021000000005011000290000000101100367000000000301043b000000400100043d000005a80010009c00000f4a0000213d0000006002100039000000400020043f000000400210003900000000000204350000002002100039000000000002043500000000000104350000000402000039000000000102041a000000000031004b00000df20000a13d000000000020043f000000400100043d001000000001001d000005a80010009c00000f4a0000213d00000010040000290000006001400039000000400010043f000f00000003001d00000003013000c9000005840210009a000a00000002001d000000000202041a0000000003240436000005850210009a000900000002001d000000000202041a000e00000003001d000c00000002001d00000000002304350000004002400039000005860110009a000800000001001d000000000101041a000d00000002001d00000000001204350000058701000041000000000010044300000000010004140000054e0010009c0000054e01008041000000c00110021000000588011001c70000800b020000391532152d0000040f000000010020019000000e540000613d000000000101043b000700000001001d0000000c0010006c0000000f02000029000004830000a13d0000000501000039000000000101041a000000000021004b00000df20000a13d0000000501000039000000000010043f000005890120009a000000000101041a0000058a0200004100000000002004430000055101100197000c00000001001d000000040010044300000000010004140000054e0010009c0000054e01008041000000c0011002100000058b011001c700008002020000391532152d0000040f000000010020019000000e540000613d000000000101043b000000000001004b000009300000613d000000400a00043d0000058c0100004100000000001a04350000000401a000390000000402000029000000000021043500000000010004140000000c02000029000000040020008c000004e90000c13d0000000003000031000005140000013d0000054e00a0009c0000054e0300004100000000030a401900000040033002100000054e0010009c0000054e01008041000000c001100210000000000131019f0000058d011001c7000c0000000a001d1532152d0000040f0000000c0a00002900000060031002700000054e03300197000000200030008c00000020060000390000000006034019000000200560019000000000045a0019000005030000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b000004ff0000c13d0000001f06600190000005100000613d000000000551034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000000003001f00020000000103550000000100200190000009e50000613d0000001f01300039000005c4021001970000000001a20019000000000021004b000000000200003900000001020040390000058e0010009c00000f4a0000213d000000010020019000000f4a0000c13d000000400010043f0000058f0030009c000009300000213d000000200030008c000009300000413d00000000010a0433000c00000001001d000000000001004b000005da0000613d0000000e010000290000000001010433000000070110006b0000090c0000413d0000000302000039000000000202041a000005310000613d000005c503100129000000000023004b0000090c0000413d00000000011200aa00000010020000290000000002020433000005380000613d000005c503100129000000000023004b0000090c0000413d0000000a03000039000000000303041a000000000003004b00000a750000613d00000000011200a900000000013100d9000700000001001d000005900010009c0000090c0000213d0000000201000039000000000101041a000200000001001d0000000101000039000000000101041a0000058a0200004100000000002004430000055101100197000300000001001d000000040010044300000000010004140000054e0010009c0000054e01008041000000c0011002100000058b011001c700008002020000391532152d0000040f000000010020019000000e540000613d000000000101043b000000000001004b000009300000613d00000007010000290000007c011000c9000003e80110011a00000002020000290000055102200197000000400400043d00000024034000390000000000130435000005910100004100000000001404350000000401400039000000000021043500000000010004140000000302000029000000040020008c000005690000c13d00000000030000310000057b0000013d0000054e0040009c000200000004001d0000054e03000041000000000304401900000040033002100000054e0010009c0000054e01008041000000c001100210000000000131019f00000592011001c7153215280000040f00000060031002700000054e0030019d0000054e033001970002000000010355000000010020019000000a7b0000613d00000002040000290000001f01300039000005c4021001970000000001420019000000000021004b000000000200003900000001020040390000058e0010009c00000f4a0000213d000000010020019000000f4a0000c13d000000400010043f0000058f0030009c000009300000213d0000000101000039000000000101041a0000058a0200004100000000002004430000055101100197000300000001001d000000040010044300000000010004140000054e0010009c0000054e01008041000000c0011002100000058b011001c700008002020000391532152d0000040f000000010020019000000e540000613d000000000101043b000000000001004b000009300000613d00000007010000290000036c011000c9000003e80410011a000000400500043d000000240150003900000000004104350000059101000041000000000015043500000004015000390000000402000029000000000021043500000000010004140000000302000029000000040020008c000005ac0000c13d0000000003000031000005c00000013d000200000004001d0000054e0050009c000100000005001d0000054e03000041000000000305401900000040033002100000054e0010009c0000054e01008041000000c001100210000000000131019f00000592011001c7153215280000040f00000060031002700000054e0030019d0000054e033001970002000000010355000000010020019000000a870000613d000000020400002900000001050000290000001f01300039000005c4021001970000000001520019000000000021004b000000000200003900000001020040390000058e0010009c00000f4a0000213d000000010020019000000f4a0000c13d000000400010043f0000058f0030009c000009300000213d0000000701000029000005930010009c0000090c0000213d0000000d01000029000000000101043300000594024000d10000000c022000fa000005c503200167000000000031004b0000090c0000213d00000000011200190000000d0200002900000000001204350000058701000041000000000010044300000000010004140000054e0010009c0000054e01008041000000c00110021000000588011001c70000800b020000391532152d0000040f000000010020019000000e540000613d000000000101043b0000000e0200002900000000001204350000000402000039000000000102041a0000000f05000029000000000051004b00000df20000a13d000000000020043f000000100100002900000000010104330000000a02000029000000000012041b0000000e0100002900000000010104330000000902000029000000000012041b0000000d0200002900000000020204330000000803000029000000000023041b000000400300043d0000004004300039000000000024043500000020023000390000000c04000029000000000042043500000000001304350000054e0030009c0000054e03008041000000400130021000000000020004140000054e0020009c0000054e02008041000000c002200210000000000112019f00000595011001c70000800d0200003900000002030000390000059604000041153215280000040f0000000100200190000004830000c13d000009300000013d0000058a0100004100000000001004430000000d01000029000000040010044300000000010004140000054e0010009c0000054e01008041000000c0011002100000058b011001c700008002020000391532152d0000040f000000010020019000000e540000613d000000000101043b000000000001004b000009300000613d000000400300043d00000044013000390000001002000029000000000021043500000024013000390000000e0200002900000000002104350000059a01000041000000000013043500000004013000390000000f02000029000000000021043500000084013000390000000000010435000e00000003001d0000006401300039000000000001043500000000010004140000000d02000029000000040020008c000009120000c13d0000000003000031000009230000013d0000058a0100004100000000001004430000000e01000029000000040010044300000000010004140000054e0010009c0000054e01008041000000c0011002100000058b011001c700008002020000391532152d0000040f000000010020019000000e540000613d000000000101043b0000000e0000006b000006710000613d000000000001004b000006710000c13d000000400100043d0000006402100039000005aa0300004100000000003204350000004402100039000005ab030000410000030b0000013d0000000401000039000000000101041a0000000f02000029000000000021004b00000df20000a13d0000000a01000039000000000301041a00000003022000c9000005840220009a000000000402041a000000000343004b0000090c0000413d000000010400008a0000000e0440014f000000000043004b0000090c0000213d0000000e040000290000000003430019000000000031041b000000000042041b0000000801000039000000000201041a0000000d0000006b000009850000c13d0000000f03000029000000000032004b00000df20000a13d000000000010043f000005990130009a000000000101041a001005510010019b0000098f0000013d0000001001000029000000000010043f0000000701000039000000200010043f00000000010004140000054e0010009c0000054e01008041000000c00110021000000597011001c700008010020000391532152d0000040f0000000100200190000009300000613d000000000101043b000000000101041a000000000001004b000009a40000c13d0000000b01000039000000000101041a000d00000001001d0000058701000041000000000010044300000000010004140000054e0010009c0000054e01008041000000c00110021000000588011001c70000800b020000391532152d0000040f000000010020019000000e540000613d000000000101043b0000000d0010006c0000000d0100a029000d00000001001d000000010100008a0000000f0310014f0000000a01000039000000000201041a000000000032004b0000090c0000213d0000000f02200029000000000021041b0000000501000039000000000101041a0000058e0010009c00000f4a0000213d00000001021000390000000503000039000000000023041b000005890110009a000000000201041a00000552022001970000001003000029000000000232019f000000000021041b000000000030043f0000000701000039000000200010043f00000000010004140000054e0010009c0000054e01008041000000c00110021000000597011001c700008010020000391532152d0000040f0000000100200190000009300000613d000000000101043b000000000101041a000000000001004b000006d30000c13d0000000601000039000000000201041a0000058e0020009c00000f4a0000213d0000000103200039000000000031041b000005a70220009a0000001003000029000000000032041b000000000101041a000c00000001001d000000000030043f0000000701000039000000200010043f00000000010004140000054e0010009c0000054e01008041000000c00110021000000597011001c700008010020000391532152d0000040f0000000100200190000009300000613d000000000101043b0000000c02000029000000000021041b0000000802000039000000000102041a0000058e0010009c00000f4a0000213d0000000103100039000000000032041b000005990110009a000000000201041a00000552022001970000000e022001af000000000021041b000000400100043d000005a80010009c00000f4a0000213d0000006002100039000000400020043f00000020031000390000000d0200002900000000002304350000000f020000290000000000210435000000400210003900000000000204350000000405000039000000000405041a0000058e0040009c00000f4a0000213d0000000106400039000000000065041b000000000050043f000000000101043300000003044000c9000005840540009a000000000015041b0000000001030433000005850340009a000000000013041b000005860140009a0000000002020433000000000021041b0000000501000039000000000201041a000000000002004b0000090c0000613d000000400100043d0000000f0300002900000000003104350000054e0010009c0000054e01008041000000400110021000000000030004140000054e0030009c0000054e03008041000000c003300210000000000113019f0000059f011001c7000000010520008a0000800d020000390000000403000039000005a90400004100000010060000290000000e07000029000004770000013d0000000f020000290000054e0020009c0000054e0200804100000040022002100000054e0010009c0000054e01008041000000c001100210000000000121019f0000058d011001c700000010020000291532152d0000040f00000060031002700000054e03300197000000200030008c000000200400003900000000040340190000001f0540018f00000020064001900000000f046000290000072c0000613d000000000701034f0000000f08000029000000007907043c0000000008980436000000000048004b000007280000c13d000000000005004b000007390000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000000000003001f00020000000103550000000100200190000009b50000613d0000001f01300039000005c4021001970000000f01200029000000000021004b000000000200003900000001020040390000058e0010009c00000f4a0000213d000000010020019000000f4a0000c13d000000400010043f0000058f0030009c000009300000213d000000200030008c000009300000413d0000000f010000290000000001010433000f00000001001d0000000e01000029000005850110009a000000000101041a001000000001001d0000058701000041000000000010044300000000010004140000054e0010009c0000054e01008041000000c00110021000000588011001c70000800b020000391532152d0000040f000000010020019000000e540000613d000000000101043b000000100210006c000007800000a13d0000000f0000006b000007800000613d000005c5042001290000000303000039000000000303041a000000000034004b0000090c0000413d0000000e04000029000005840440009a00000000022300aa000000000304041a000007700000613d000005c504200129000000000034004b0000090c0000413d0000000a04000039000000000404041a000000000004004b00000a750000613d00000000022300a900000000024200d9000005930020009c0000090c0000213d0000036c022000c9000003e80220011a00000594022000d10000000f022000fa000005c5012001670000000c0010006b0000090c0000213d000c000c0020002d0000000d01000029000000000101041a000000000001004b000007870000613d000005c5021001290000000c0020006c0000090c0000413d0000000c011000b9000005940110012a0000000d020000290000000102200039000000000202041a000000000121004b0000090c0000413d000000400200043d00000000001204350000054e0020009c0000054e020080410000004001200210000005b5011001c7000015330001042e00000008020000290000054e0020009c0000054e0200804100000040022002100000054e0010009c0000054e01008041000000c001100210000000000121019f0000058d011001c70000000e020000291532152d0000040f00000060031002700000054e03300197000000200030008c000000200400003900000000040340190000001f0540018f00000020064001900000000804600029000007af0000613d000000000701034f0000000808000029000000007907043c0000000008980436000000000048004b000007ab0000c13d000000000005004b000007bc0000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000000000003001f00020000000103550000000100200190000009c10000613d0000001f01300039000005c4021001970000000801200029000000000021004b000000000200003900000001020040390000058e0010009c00000f4a0000213d000000010020019000000f4a0000c13d000000400010043f0000058f0030009c000009300000213d000000200030008c000009300000413d00000008010000290000000001010433000e00000001001d000000000001004b00000a210000c13d0000058701000041000000000010044300000000010004140000054e0010009c0000054e01008041000000c00110021000000588011001c70000800b020000391532152d0000040f000000010020019000000e540000613d000000000101043b000001000010043f0000000403000039000000000203041a0000000f05000029000000000052004b00000df20000a13d000000000030043f000000e00200043d0000000c03000029000000000023041b0000000b02000029000000000012041b000001200200043d0000000a03000029000000000023041b000000400300043d0000004004300039000000000024043500000020023000390000000e04000029000000000042043500000000001304350000054e0030009c0000054e03008041000000400130021000000000020004140000054e0020009c0000054e02008041000000c002200210000000000112019f00000595011001c70000800d0200003900000002030000390000059604000041153215280000040f0000000100200190000009300000613d0000000f01000029000000000010043f0000000901000039000000200010043f00000000010004140000054e0010009c0000054e01008041000000c00110021000000597011001c700008010020000391532152d0000040f0000000100200190000009300000613d000000000101043b00000000020004110000055102200197000e00000002001d000000000020043f000000200010043f00000000010004140000054e0010009c0000054e01008041000000c00110021000000597011001c700008010020000391532152d0000040f0000000100200190000009300000613d000000000101043b000c00000001001d000000000301041a0000000d0130006c000008300000813d000000400100043d0000006402100039000005a20300004100000000003204350000004402100039000005a3030000410000000000320435000000240210003900000023030000390000030e0000013d000001200200043d000000000003004b000008360000613d000005c504300129000000000024004b0000090c0000413d00000000033200a9000005940430012a0000000c030000290000000103300039000000000503041a000b0000005400530000090c0000413d0000000d0000006b000008430000613d000000010500008a0000000d055000fa000000000025004b0000090c0000413d0000000d022000b9000005940220012a000000000224004b0000090c0000413d000000000023041b0000000c02000029000000000012041b0000000101000039000900000001001d000000000101041a0000058a0200004100000000002004430000055101100197000a00000001001d000000040010044300000000010004140000054e0010009c0000054e01008041000000c0011002100000058b011001c700008002020000391532152d0000040f000000010020019000000e540000613d000000000101043b000000000001004b000009300000613d000000400200043d0000058c01000041000000000012043500000000010004100000055101100197000800000002001d0000000402200039000000000012043500000000010004140000000a02000029000000040020008c00000b380000c13d000000000300003100000b630000013d00000008020000290000054e0020009c0000054e0200804100000040022002100000054e0010009c0000054e01008041000000c001100210000000000121019f0000058d011001c70000000e020000291532152d0000040f00000060031002700000054e03300197000000200030008c000000200400003900000000040340190000001f0540018f00000020064001900000000804600029000008860000613d000000000701034f0000000808000029000000007907043c0000000008980436000000000048004b000008820000c13d000000000005004b000008930000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000000000003001f00020000000103550000000100200190000009cd0000613d0000001f01300039000005c4021001970000000801200029000000000021004b000000000200003900000001020040390000058e0010009c00000f4a0000213d000000010020019000000f4a0000c13d000000400010043f0000058f0030009c000009300000213d000000200030008c000009300000413d00000008010000290000000001010433000e00000001001d000000000001004b00000a620000c13d0000058701000041000000000010044300000000010004140000054e0010009c0000054e01008041000000c00110021000000588011001c70000800b020000391532152d0000040f000000010020019000000e540000613d000000000101043b000001000010043f0000000403000039000000000203041a0000000f05000029000000000052004b00000df20000a13d000000000030043f000000e00200043d0000000c03000029000000000023041b0000000b02000029000000000012041b000001200200043d0000000a03000029000000000023041b000000400300043d0000004004300039000000000024043500000020023000390000000e04000029000000000042043500000000001304350000054e0030009c0000054e03008041000000400130021000000000020004140000054e0020009c0000054e02008041000000c002200210000000000112019f00000595011001c70000800d0200003900000002030000390000059604000041153215280000040f0000000100200190000009300000613d0000000f01000029000000000010043f0000000901000039000000200010043f00000000010004140000054e0010009c0000054e01008041000000c00110021000000597011001c700008010020000391532152d0000040f0000000100200190000009300000613d000000000101043b0000001002000029000000000020043f000000200010043f00000000010004140000054e0010009c0000054e01008041000000c00110021000000597011001c700008010020000391532152d0000040f0000000100200190000009300000613d0000000d06000029000005c504600167000000000101043b000000000301041a000000000043004b0000090c0000213d0000000003630019000e00000003001d000000000031041b000001200400043d0000000101100039000000000301041a000000000006004b000009070000613d000005c505600129000000000045004b0000090c0000413d00000000046400a9000005940440012a000005c502400167000000000023004b000009320000a13d000005b601000041000000000010043f0000001101000039000000040010043f0000058d0100004100001534000104300000000e020000290000054e0020009c0000054e0200804100000040022002100000054e0010009c0000054e01008041000000c001100210000000000121019f0000059b011001c70000000d02000029153215280000040f00000060031002700000054e0030019d0000054e0330019700020000000103550000000100200190000009d90000613d0000001f01300039000005c4021001970000000e01200029000000000021004b000000000200003900000001020040390000058e0010009c00000f4a0000213d000000010020019000000f4a0000c13d000000400010043f0000058f0030009c000001000000a13d000000000100001900001534000104300000000002340019000000000021041b0000000801000039000000000201041a0000000f03000029000000000032004b00000df20000a13d000000000010043f000005990130009a000000000101041a000c05510010019c000009fa0000c13d0000000501000039000000000201041a0000000f03000029000000000032004b0000000d0400002900000df20000a13d000000000010043f000005890130009a000000000101041a000000400500043d0000006402500039000000000042043500000000020004100000055102200197000000440350003900000000002304350000002003500039000005af02000041000c00000003001d0000000000230435000000000200041100000551022001970000002403500039000000000023043500000064020000390000000000250435000e00000005001d000005b00050009c00000f4a0000213d0000000e03000029000000a002300039000b00000002001d000000400020043f000005b10030009c00000f4a0000213d00000551041001970000000e03000029000000e001300039000000400010043f00000020020000390000000b010000290000000000210435000000c0023000390000059e01000041000900000002001d00000000001204350000058a010000410000000000100443000a00000004001d000000040040044300000000010004140000054e0010009c0000054e01008041000000c0011002100000058b011001c700008002020000391532152d0000040f000000010020019000000e540000613d000000000101043b000000000001004b000001370000613d0000000e01000029000000000201043300000000010004140000000a03000029000000040030008c00000c1d0000c13d0000000102000039000000000400003100000c300000013d0000000f03000029000000000032004b000000100400002900000df20000a13d000000000010043f000005990130009a000000000201041a0000055202200197000000000242019f000000000021041b000000400100043d00000020021000390000000d0300002900000000003204350000000e0200002900000000002104350000054e0010009c0000054e01008041000000400110021000000000020004140000054e0020009c0000054e02008041000000c002200210000000000112019f00000597011001c70000800d020000390000000303000039000005b4040000410000000f050000290000001006000029000004770000013d000000400100043d0000004402100039000005a5030000410000000000320435000000240210003900000015030000390000000000320435000005590200004100000000002104350000000402100039000000200300003900000000003204350000054e0010009c0000054e010080410000004001100210000005a6011001c700001534000104300000001f0530018f0000055006300198000000400200043d000000000462001900000a920000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000009bc0000c13d00000a920000013d0000001f0530018f0000055006300198000000400200043d000000000462001900000a920000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000009c80000c13d00000a920000013d0000001f0530018f0000055006300198000000400200043d000000000462001900000a920000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000009d40000c13d00000a920000013d0000001f0530018f0000055006300198000000400200043d000000000462001900000a920000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000009e00000c13d00000a920000013d0000001f0530018f0000055006300198000000400200043d000000000462001900000a920000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000009ec0000c13d00000a920000013d0000000a01000029000000000201043300000000010004140000000b03000029000000040030008c00000aa50000c13d0000000102000039000000000400003100000ab80000013d0000058a0100004100000000001004430000000c01000029000000040010044300000000010004140000054e0010009c0000054e01008041000000c0011002100000058b011001c700008002020000391532152d0000040f000000010020019000000e540000613d000000000101043b000000000001004b000009300000613d000000400300043d00000084013000390000000e020000290000000000210435000000440130003900000010020000290000000000210435000000240130003900000000002104350000059a01000041000000000013043500000004013000390000000f020000290000000000210435000e00000003001d0000006401300039000000000001043500000000010004140000000c02000029000000040020008c00000bc80000c13d000000000300003100000bd90000013d000001000100043d000000090110006b0000090c0000413d0000000302000039000000000202041a00000a2a0000613d000005c503100129000000000023004b0000090c0000413d00000000011200aa000000e00200043d00000a300000613d000005c503100129000000000023004b0000090c0000413d0000000a03000039000000000303041a000000000003004b00000a750000613d00000000011200a900000000013100d9000900000001001d000005900010009c0000090c0000213d0000000201000039000000000101041a000600000001001d0000000101000039000000000101041a0000058a0200004100000000002004430000055101100197000800000001001d000000040010044300000000010004140000054e0010009c0000054e01008041000000c0011002100000058b011001c700008002020000391532152d0000040f000000010020019000000e540000613d000000000101043b000000000001004b000009300000613d00000009010000290000007c011000c9000003e80110011a00000006020000290000055102200197000000400400043d0000002403400039000000000013043500000591010000410000000000140435000600000004001d0000000401400039000000000021043500000000010004140000000802000029000000040020008c00000c920000c13d000000000300003100000ca30000013d000001000100043d000000090110006b0000090c0000413d0000000302000039000000000202041a00000a6b0000613d000005c503100129000000000023004b0000090c0000413d00000000011200aa000000e00200043d00000a710000613d000005c503100129000000000023004b0000090c0000413d0000000a03000039000000000303041a000000000003004b00000b9a0000c13d000005b601000041000000000010043f0000001201000039000000040010043f0000058d0100004100001534000104300000001f0530018f0000055006300198000000400200043d000000000462001900000a920000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000a820000c13d00000a920000013d0000001f0530018f0000055006300198000000400200043d000000000462001900000a920000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000a8e0000c13d000000000005004b00000a9f0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000054e0020009c0000054e020080410000004002200210000000000112019f00001534000104300000000e030000290000054e0030009c0000054e0300804100000040033002100000054e0020009c0000054e020080410000006002200210000000000232019f0000054e0010009c0000054e01008041000000c001100210000000000112019f0000000b02000029153215280000040f000000010220018f000200000001035500000060011002700000054e0010019d0000054e04100197000000000004004b00000abd0000c13d0000006003000039000000800100003900000ae40000013d0000001f01400039000005c4011001970000003f01100039000005c401100197000000400300043d0000000001130019000000000031004b000000000600003900000001060040390000058e0010009c00000f4a0000213d000000010060019000000f4a0000c13d000000400010043f0000000001430436000005c4054001980000001f0640018f0000000004510019000000020700036700000ad70000613d000000000807034f0000000009010019000000008a08043c0000000009a90436000000000049004b00000ad30000c13d000000000006004b00000ae40000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005404350000000003030433000000000002004b00000b0d0000c13d000000000003004b00000c500000c13d000000400100043d000005590200004100000000002104350000000402100039000000200300003900000000003204350000000d02000029000000000202043300000024031000390000000000230435000000000002004b00000b020000613d00000044031000390000000004000019000000090700002900000000053400190000000006740019000000000606043300000000006504350000002004400039000000000024004b00000af80000413d00000b020000a13d000000000332001900000000000304350000001f02200039000005c40220019700000044022000390000054e0020009c0000054e0200804100000060022002100000054e0010009c0000054e010080410000004001100210000000000112019f0000153400010430000000000003004b00000b220000c13d000000400100043d0000000c0200002900000000002104350000054e0010009c0000054e01008041000000400110021000000000020004140000054e0020009c0000054e02008041000000c002200210000000000112019f0000059f011001c70000800d020000390000000403000039000005bc0400004100000000050004110000000f060000290000001007000029000004770000013d0000058f0030009c000009300000213d000000200030008c000009300000413d0000000001010433000000000001004b0000000002000039000000010200c039000000000021004b000009300000c13d000000000001004b00000b0f0000c13d000000400100043d0000006402100039000005ba0300004100000000003204350000004402100039000005bb03000041000000000032043500000024021000390000002a030000390000030e0000013d00000008020000290000054e0020009c0000054e0200804100000040022002100000054e0010009c0000054e01008041000000c001100210000000000121019f0000058d011001c70000000a020000291532152d0000040f00000060031002700000054e03300197000000200030008c000000200400003900000000040340190000001f0540018f0000002006400190000000080460002900000b520000613d000000000701034f0000000808000029000000007907043c0000000008980436000000000048004b00000b4e0000c13d000000000005004b00000b5f0000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000000000003001f0002000000010355000000010020019000000be70000613d0000001f01300039000005c4021001970000000801200029000000000021004b000000000200003900000001020040390000058e0010009c00000f4a0000213d000000010020019000000f4a0000c13d000000400010043f0000058f0030009c000009300000213d000000200030008c000009300000413d000000080100002900000000020104330000058a010000410000000000100443000800000002001d0000000b0020006c00000bff0000813d0000000101000039000000000101041a0000055101100197000a00000001001d000000040010044300000000010004140000054e0010009c0000054e01008041000000c0011002100000058b011001c700008002020000391532152d0000040f000000010020019000000e540000613d000000000101043b000000000001004b000009300000613d000000400200043d00000024012000390000000803000029000000000031043500000598010000410000000000120435000700000002001d00000004012000390000001002000029000000000021043500000000010004140000000a02000029000000040020008c00000d270000c13d000000000300003100000d520000013d00000000011200a900000000013100d9000900000001001d000005900010009c0000090c0000213d0000000201000039000000000101041a000600000001001d0000000101000039000000000101041a0000058a0200004100000000002004430000055101100197000800000001001d000000040010044300000000010004140000054e0010009c0000054e01008041000000c0011002100000058b011001c700008002020000391532152d0000040f000000010020019000000e540000613d000000000101043b000000000001004b000009300000613d00000009010000290000007c011000c9000003e80110011a00000006020000290000055102200197000000400400043d0000002403400039000000000013043500000591010000410000000000140435000600000004001d0000000401400039000000000021043500000000010004140000000802000029000000040020008c00000cd60000c13d000000000300003100000ce70000013d0000000e020000290000054e0020009c0000054e0200804100000040022002100000054e0010009c0000054e01008041000000c001100210000000000121019f0000059b011001c70000000c02000029153215280000040f00000060031002700000054e0030019d0000054e033001970002000000010355000000010020019000000bf30000613d0000001f01300039000005c4021001970000000e01200029000000000021004b000000000200003900000001020040390000058e0010009c00000f4a0000213d000000010020019000000f4a0000c13d000000400010043f0000058f0030009c000009300000213d0000093e0000013d0000001f0530018f0000055006300198000000400200043d000000000462001900000a920000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000bee0000c13d00000a920000013d0000001f0530018f0000055006300198000000400200043d000000000462001900000a920000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000bfa0000c13d00000a920000013d0000000a01000029000000040010044300000000010004140000054e0010009c0000054e01008041000000c0011002100000058b011001c700008002020000391532152d0000040f000000010020019000000e540000613d000000000101043b000000000001004b000009300000613d000000400300043d00000024013000390000000b02000029000000000021043500000598010000410000000000130435000800000003001d00000004013000390000001002000029000000000021043500000000010004140000000a02000029000000040020008c00000d650000c13d000000000300003100000d900000013d0000000c030000290000054e0030009c0000054e0300804100000040033002100000054e0020009c0000054e020080410000006002200210000000000232019f0000054e0010009c0000054e01008041000000c001100210000000000112019f0000000a02000029153215280000040f000000010220018f000200000001035500000060011002700000054e0010019d0000054e04100197000000000004004b00000c580000c13d000000600300003900000080010000390000000003030433000000000002004b00000c800000c13d000000000003004b00000c500000c13d000000400100043d000005590200004100000000002104350000000402100039000000200300003900000000003204350000000b02000029000000000202043300000024031000390000000000230435000000000002004b00000b020000613d00000044031000390000000004000019000000090700002900000000053400190000000006740019000000000606043300000000006504350000002004400039000000000024004b00000c480000413d00000aff0000013d0000054e0010009c0000054e0100804100000040011002100000054e0030009c0000054e030080410000006002300210000000000112019f00001534000104300000001f01400039000005c4011001970000003f01100039000005c401100197000000400300043d0000000001130019000000000031004b000000000600003900000001060040390000058e0010009c00000f4a0000213d000000010060019000000f4a0000c13d000000400010043f0000000001430436000005c4054001980000001f0640018f0000000004510019000000020700036700000c720000613d000000000807034f0000000009010019000000008a08043c0000000009a90436000000000049004b00000c6e0000c13d000000000006004b00000c340000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f000000000054043500000c340000013d000000000003004b00000d1a0000c13d000000400100043d0000000d0200002900000000002104350000054e0010009c0000054e01008041000000400110021000000000020004140000054e0020009c0000054e02008041000000c002200210000000000112019f0000059f011001c70000800d020000390000000403000039000005b20400004100000b1e0000013d00000006020000290000054e0020009c0000054e0200804100000040022002100000054e0010009c0000054e01008041000000c001100210000000000121019f00000592011001c70000000802000029153215280000040f00000060031002700000054e0030019d0000054e033001970002000000010355000000010020019000000df80000613d0000001f01300039000005c4021001970000000601200029000000000021004b000000000200003900000001020040390000058e0010009c00000f4a0000213d000000010020019000000f4a0000c13d000000400010043f0000058f0030009c000009300000213d0000000101000039000000000101041a0000058a0200004100000000002004430000055101100197000800000001001d000000040010044300000000010004140000054e0010009c0000054e01008041000000c0011002100000058b011001c700008002020000391532152d0000040f000000010020019000000e540000613d000000000101043b000000000001004b000009300000613d00000009010000290000036c011000c9000003e80210011a000000400300043d0000002401300039000500000002001d000000000021043500000591010000410000000000130435000600000003001d00000004013000390000000702000029000000000021043500000000010004140000000802000029000000040020008c00000e550000c13d000000000300003100000e660000013d00000006020000290000054e0020009c0000054e0200804100000040022002100000054e0010009c0000054e01008041000000c001100210000000000121019f00000592011001c70000000802000029153215280000040f00000060031002700000054e0030019d0000054e033001970002000000010355000000010020019000000e040000613d0000001f01300039000005c4021001970000000601200029000000000021004b000000000200003900000001020040390000058e0010009c00000f4a0000213d000000010020019000000f4a0000c13d000000400010043f0000058f0030009c000009300000213d0000000101000039000000000101041a0000058a0200004100000000002004430000055101100197000800000001001d000000040010044300000000010004140000054e0010009c0000054e01008041000000c0011002100000058b011001c700008002020000391532152d0000040f000000010020019000000e540000613d000000000101043b000000000001004b000009300000613d00000009010000290000036c011000c9000003e80210011a000000400300043d0000002401300039000500000002001d000000000021043500000591010000410000000000130435000600000003001d00000004013000390000000702000029000000000021043500000000010004140000000802000029000000040020008c00000e800000c13d000000000300003100000e910000013d0000058f0030009c000009300000213d000000200030008c000009300000413d0000000001010433000000000001004b0000000002000039000000010200c039000000000021004b000009300000c13d000000000001004b00000b2e0000613d00000c820000013d00000007020000290000054e0020009c0000054e0200804100000040022002100000054e0010009c0000054e01008041000000c001100210000000000121019f00000592011001c70000000a02000029153215280000040f00000060031002700000054e03300197000000200030008c000000200400003900000000040340190000001f0540018f0000002006400190000000070460002900000d410000613d000000000701034f0000000708000029000000007907043c0000000008980436000000000048004b00000d3d0000c13d000000000005004b00000d4e0000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000000000003001f0002000000010355000000010020019000000e100000613d0000001f01300039000005c4011001970000000702100029000000000012004b00000000010000390000000101004039000a00000002001d0000058e0020009c00000f4a0000213d000000010010019000000f4a0000c13d0000000a01000029000000400010043f0000058f0030009c000009300000213d000000200030008c000009300000413d000000070100002900000da20000013d00000008020000290000054e0020009c0000054e0200804100000040022002100000054e0010009c0000054e01008041000000c001100210000000000121019f00000592011001c70000000a02000029153215280000040f00000060031002700000054e03300197000000200030008c000000200400003900000000040340190000001f0540018f0000002006400190000000080460002900000d7f0000613d000000000701034f0000000808000029000000007907043c0000000008980436000000000048004b00000d7b0000c13d000000000005004b00000d8c0000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000000000003001f0002000000010355000000010020019000000e1c0000613d0000001f01300039000005c4011001970000000802100029000000000012004b00000000010000390000000101004039000a00000002001d0000058e0020009c00000f4a0000213d000000010010019000000f4a0000c13d0000000a01000029000000400010043f0000058f0030009c000009300000213d000000200030008c000009300000413d00000008010000290000000001010433000000000001004b0000000002000039000000010200c039000000000021004b000009300000c13d0000000801000039000000000201041a0000000f03000029000000000032004b00000df20000a13d000000000010043f000005990130009a000000000101041a000805510010019c00000e280000c13d0000000501000039000000000201041a0000000f03000029000000000032004b0000000d0400002900000df20000a13d000000000010043f000005890130009a000000000101041a0000000a050000290000004402500039000000000042043500000020035000390000059802000041000c00000003001d0000000000230435000000240250003900000010030000290000000000320435000000440200003900000000002504350000059c0050009c00000f4a0000213d0000000a030000290000008002300039000800000002001d000000400020043f0000059d0030009c00000f4a0000213d00000551041001970000000a03000029000000c001300039000000400010043f000000200200003900000008010000290000000000210435000000a0023000390000059e01000041000e00000002001d00000000001204350000058a010000410000000000100443000700000004001d000000040040044300000000010004140000054e0010009c0000054e01008041000000c0011002100000058b011001c700008002020000391532152d0000040f000000010020019000000e540000613d000000000101043b000000000001004b000001370000613d0000000a01000029000000000201043300000000010004140000000703000029000000040030008c00000ef00000c13d000000000300003100000f030000013d000005b601000041000000000010043f0000003201000039000000040010043f0000058d0100004100001534000104300000001f0530018f0000055006300198000000400200043d000000000462001900000a920000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000dff0000c13d00000a920000013d0000001f0530018f0000055006300198000000400200043d000000000462001900000a920000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000e0b0000c13d00000a920000013d0000001f0530018f0000055006300198000000400200043d000000000462001900000a920000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000e170000c13d00000a920000013d0000001f0530018f0000055006300198000000400200043d000000000462001900000a920000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000e230000c13d00000a920000013d0000000c01000029000000000101041a000c00000001001d0000058a0100004100000000001004430000000801000029000000040010044300000000010004140000054e0010009c0000054e01008041000000c0011002100000058b011001c700008002020000391532152d0000040f000000010020019000000e540000613d000000000101043b000000000001004b000009300000613d000000400300043d00000084013000390000000c02000029000000000021043500000064013000390000000b02000029000000000021043500000044013000390000001002000029000000000021043500000024013000390000000e0200002900000000002104350000059a010000410000000000130435000e00000003001d00000004013000390000000f02000029000000000021043500000000010004140000000802000029000000040020008c00000ec30000c13d000000000300003100000ed40000013d000000000001042f00000006020000290000054e0020009c0000054e0200804100000040022002100000054e0010009c0000054e01008041000000c001100210000000000121019f00000592011001c70000000802000029153215280000040f00000060031002700000054e0030019d0000054e033001970002000000010355000000010020019000000eab0000613d0000001f01300039000005c4021001970000000601200029000000000021004b000000000200003900000001020040390000058e0010009c00000f4a0000213d000000010020019000000f4a0000c13d000000400010043f0000058f0030009c000009300000213d0000000901000029000005930010009c0000090c0000213d000001200100043d000000050200002900000594022000d10000000e022000fa000005c503200167000000000031004b0000090c0000213d0000000001120019000001200010043f000007d40000013d00000006020000290000054e0020009c0000054e0200804100000040022002100000054e0010009c0000054e01008041000000c001100210000000000121019f00000592011001c70000000802000029153215280000040f00000060031002700000054e0030019d0000054e033001970002000000010355000000010020019000000eb70000613d0000001f01300039000005c4021001970000000601200029000000000021004b000000000200003900000001020040390000058e0010009c00000f4a0000213d000000010020019000000f4a0000c13d000000400010043f0000058f0030009c000009300000213d0000000901000029000005930010009c0000090c0000213d000001200100043d000000050200002900000594022000d10000000e022000fa000005c503200167000000000031004b0000090c0000213d0000000001120019000001200010043f000008ab0000013d0000001f0530018f0000055006300198000000400200043d000000000462001900000a920000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000eb20000c13d00000a920000013d0000001f0530018f0000055006300198000000400200043d000000000462001900000a920000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000ebe0000c13d00000a920000013d0000000e020000290000054e0020009c0000054e0200804100000040022002100000054e0010009c0000054e01008041000000c001100210000000000121019f0000059b011001c70000000802000029153215280000040f00000060031002700000054e0030019d0000054e033001970002000000010355000000010020019000000ee40000613d0000001f01300039000005c4011001970000000e02100029000000000012004b00000000010000390000000101004039000a00000002001d0000058e0020009c00000f4a0000213d000000010010019000000f4a0000c13d0000000a01000029000000400010043f0000058f0030009c000009300000213d00000db20000013d0000001f0530018f0000055006300198000000400200043d000000000462001900000a920000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000eeb0000c13d00000a920000013d0000000c030000290000054e0030009c0000054e0300804100000040033002100000054e0020009c0000054e020080410000006002200210000000000232019f0000054e0010009c0000054e01008041000000c001100210000000000112019f0000000702000029153215280000040f0009000100200193000200000001035500000060011002700000054e0010019d0000054e03100197000000000003004b00000f220000c13d000000600200003900000080010000390000000002020433000000090000006b00000f500000c13d000000000002004b00000f790000c13d000000400100043d000005590200004100000000002104350000000402100039000000200300003900000000003204350000000802000029000000000202043300000024031000390000000000230435000000000002004b00000b020000613d0000004403100039000000000400001900000000053400190000000e06400029000000000606043300000000006504350000002004400039000000000024004b00000f1a0000413d00000aff0000013d0000001f01300039000005c4011001970000003f01100039000005c401100197000000400200043d0000000001120019000000000021004b000000000400003900000001040040390000058e0010009c00000f4a0000213d000000010040019000000f4a0000c13d000000400010043f0000000001320436000005c4043001980000001f0530018f0000000003410019000000020600036700000f3c0000613d000000000706034f0000000008010019000000007907043c0000000008980436000000000038004b00000f380000c13d000000000005004b00000f070000613d000000000446034f0000000305500210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f000000000043043500000f070000013d000005b601000041000000000010043f0000004101000039000000040010043f0000058d010000410000153400010430000000000002004b00000f810000c13d000000400100043d0000000d0200002900000000002104350000054e0010009c0000054e01008041000000400110021000000000020004140000054e0020009c0000054e02008041000000c002200210000000000112019f0000059f011001c70000800d020000390000000403000039000005a00400004100000000050004110000000f060000290000001007000029153215280000040f0000000100200190000009300000613d000000400100043d0000000b0200002900000000002104350000054e0010009c0000054e01008041000000400110021000000000020004140000054e0020009c0000054e02008041000000c002200210000000000112019f0000059f011001c70000800d020000390000000303000039000005a10400004100000000050004110000000f06000029000004770000013d0000054e0010009c0000054e0100804100000040011002100000054e0020009c0000054e020080410000006002200210000000000112019f00001534000104300000058f0020009c000009300000213d000000200020008c000009300000413d0000000001010433000000000001004b0000000002000039000000010200c039000000000021004b000009300000c13d000000000001004b00000b2e0000613d00000f520000013d0000058f0010009c00000f9a0000213d000000430010008c00000f9a0000a13d00000001010003670000002402100370000000000202043b000005510020009c00000f9a0000213d0000000401100370000000000101043b000000000001042d00000000010000190000153400010430000d000000000002000900000002001d000d00000001001d000000400100043d000005c60010009c000012da0000813d0000006002100039000000400020043f000000400210003900000000000204350000002002100039000000000002043500000000000104350000000403000039000000000103041a0000000d0010006c000012e70000a13d000000000030043f000000400100043d000b00000001001d000005a80010009c000012da0000213d0000000b030000290000006001300039000000400010043f0000000d0100002900000003011000c9000005840210009a000700000002001d000000000202041a0000000004230436000005850210009a000600000002001d000000000202041a000a00000004001d000800000002001d00000000002404350000004002300039000005860110009a000500000001001d000000000101041a000c00000002001d00000000001204350000058701000041000000000010044300000000010004140000054e0010009c0000054e01008041000000c00110021000000588011001c70000800b020000391532152d0000040f0000000100200190000012e00000613d000000000101043b000400000001001d000000080010006c000011250000a13d0000000501000039000000000201041a0000000d03000029000000000032004b000012e70000a13d000000000010043f000005890130009a000000000101041a0000058a0200004100000000002004430000055101100197000800000001001d000000040010044300000000010004140000054e0010009c0000054e01008041000000c0011002100000058b011001c700008002020000391532152d0000040f0000000100200190000012e00000613d000000000101043b000000000001004b000012d80000613d000000400a00043d0000058c0100004100000000001a0435000000000100041000000551021001970000000401a00039000300000002001d000000000021043500000000010004140000000802000029000000040020008c00000ffd0000c13d0000000003000031000010290000013d0000054e00a0009c0000054e0300004100000000030a401900000040033002100000054e0010009c0000054e01008041000000c001100210000000000131019f0000058d011001c700080000000a001d1532152d0000040f000000080a00002900000060031002700000054e03300197000000200030008c000000200400003900000000040340190000001f0540018f000000200640019000000000046a0019000010180000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b000010140000c13d000000000005004b000010250000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000000000003001f00020000000103550000000100200190000012ff0000613d0000001f01300039000005c4021001970000000001a20019000000000021004b000000000200003900000001020040390000058e0010009c000012da0000213d0000000100200190000012da0000c13d000000400010043f0000058f0030009c000012d80000213d000000200030008c000012d80000413d00000000010a0433000800000001001d000000000001004b000010ef0000613d0000000a010000290000000001010433000000040110006b000012e10000413d0000000302000039000000000202041a000010460000613d000005c503100129000000000023004b000012e10000413d00000000011200aa0000000b0200002900000000020204330000104d0000613d000005c503100129000000000023004b000012e10000413d0000000a03000039000000000303041a000000000003004b000012ed0000613d00000000011200a900000000013100d9000400000001001d000005900010009c000012e10000213d0000000201000039000000000101041a000100000001001d0000000101000039000000000101041a0000058a0200004100000000002004430000055101100197000200000001001d000000040010044300000000010004140000054e0010009c0000054e01008041000000c0011002100000058b011001c700008002020000391532152d0000040f0000000100200190000012e00000613d000000000101043b000000000001004b000012d80000613d00000004010000290000007c011000c9000003e80110011a00000001020000290000055102200197000000400400043d00000024034000390000000000130435000005910100004100000000001404350000000401400039000000000021043500000000010004140000000202000029000000040020008c0000107e0000c13d0000000003000031000010900000013d0000054e0040009c000100000004001d0000054e03000041000000000304401900000040033002100000054e0010009c0000054e01008041000000c001100210000000000131019f00000592011001c7153215280000040f00000060031002700000054e0030019d0000054e0330019700020000000103550000000100200190000013170000613d00000001040000290000001f01300039000005c4021001970000000001420019000000000021004b000000000200003900000001020040390000058e0010009c000012da0000213d0000000100200190000012da0000c13d000000400010043f0000058f0030009c000012d80000213d0000000101000039000000000101041a0000058a0200004100000000002004430000055101100197000200000001001d000000040010044300000000010004140000054e0010009c0000054e01008041000000c0011002100000058b011001c700008002020000391532152d0000040f0000000100200190000012e00000613d000000000101043b000000000001004b000012d80000613d00000004010000290000036c011000c9000003e80410011a000000400500043d000000240150003900000000004104350000059101000041000000000015043500000004015000390000000302000029000000000021043500000000010004140000000202000029000000040020008c000010c10000c13d0000000003000031000010d50000013d000300000004001d0000054e0050009c000100000005001d0000054e03000041000000000305401900000040033002100000054e0010009c0000054e01008041000000c001100210000000000131019f00000592011001c7153215280000040f00000060031002700000054e0030019d0000054e0330019700020000000103550000000100200190000013230000613d000000030400002900000001050000290000001f01300039000005c4021001970000000001520019000000000021004b000000000200003900000001020040390000058e0010009c000012da0000213d0000000100200190000012da0000c13d000000400010043f0000058f0030009c000012d80000213d0000000401000029000005930010009c000012e10000213d0000000c01000029000000000101043300000594024000d100000008022000fa000005c503200167000000000031004b000012e10000213d00000000011200190000000c0200002900000000001204350000058701000041000000000010044300000000010004140000054e0010009c0000054e01008041000000c00110021000000588011001c70000800b020000391532152d0000040f0000000100200190000012e00000613d000000000101043b0000000a0200002900000000001204350000000402000039000000000102041a0000000d05000029000000000051004b000012e70000a13d000000000020043f0000000b0100002900000000010104330000000702000029000000000012041b0000000a0100002900000000010104330000000602000029000000000012041b0000000c0200002900000000020204330000000503000029000000000023041b000000400300043d0000004004300039000000000024043500000020023000390000000804000029000000000042043500000000001304350000054e0030009c0000054e03008041000000400130021000000000020004140000054e0020009c0000054e02008041000000c002200210000000000112019f00000595011001c70000800d0200003900000002030000390000059604000041153215280000040f0000000100200190000012d80000613d0000000d01000029000000000010043f0000000901000039000000200010043f00000000010004140000054e0010009c0000054e01008041000000c00110021000000597011001c700008010020000391532152d0000040f0000000100200190000012d80000613d000000000101043b00000000020004110000055102200197000a00000002001d000000000020043f000000200010043f00000000010004140000054e0010009c0000054e01008041000000c00110021000000597011001c700008010020000391532152d0000040f0000000100200190000012d80000613d0000000c020000290000000002020433000000000101043b000b00000001001d000000000101041a000000000001004b0000114b0000613d000005c503100129000000000023004b000012e10000413d00000000011200a9000005940110012a0000000b020000290000000102200039000000000302041a000c000000310053000012e10000413d000000000012041b0000126d0000613d0000000101000039000000000101041a0000058a0200004100000000002004430000055101100197000800000001001d000000040010044300000000010004140000054e0010009c0000054e01008041000000c0011002100000058b011001c700008002020000391532152d0000040f0000000100200190000012e00000613d000000000101043b000000000001004b0000000804000029000012d80000613d000000400a00043d0000058c0100004100000000001a0435000000000100041000000551011001970000000402a0003900000000001204350000000001000414000000040040008c000011740000c13d0000000003000031000011a20000013d0000054e00a0009c0000054e0200004100000000020a401900000040022002100000054e0010009c0000054e01008041000000c001100210000000000121019f0000058d011001c7000000000204001900070000000a001d1532152d0000040f000000070a00002900000060031002700000054e03300197000000200030008c000000200400003900000000040340190000001f0540018f000000200640019000000000046a0019000011900000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b0000118c0000c13d000000000005004b0000119d0000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000000000003001f000200000001035500000001002001900000130b0000613d00000008040000290000001f01300039000005c4021001970000000001a20019000000000021004b000000000200003900000001020040390000058e0010009c000012da0000213d0000000100200190000012da0000c13d000000400010043f0000058f0030009c000012d80000213d000000200030008c000012d80000413d00000000020a04330000058a0100004100000000001004430000000c0020006c0000120e0000813d000700000002001d0000000101000039000000000101041a0000055101100197000800000001001d000000040010044300000000010004140000054e0010009c0000054e01008041000000c0011002100000058b011001c700008002020000391532152d0000040f0000000100200190000012e00000613d000000000101043b000000000001004b000012d80000613d000000400a00043d0000002401a0003900000007020000290000000000210435000005980100004100000000001a0435000000090100002900000551011001970000000402a00039000000000012043500000000010004140000000802000029000000040020008c000012290000613d0000054e00a0009c0000054e0300004100000000030a401900000040033002100000054e0010009c0000054e01008041000000c001100210000000000131019f00000592011001c700080000000a001d153215280000040f000000080a00002900000060031002700000054e03300197000000200030008c000000200400003900000000040340190000001f0540018f000000200640019000000000046a0019000011f10000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b000011ed0000c13d000000000005004b000011fe0000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000000000003001f00020000000103550000000100200190000012580000c13d0000001f0530018f0000055006300198000000400200043d00000000046200190000133a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012090000c13d0000133a0000013d000000040040044300000000010004140000054e0010009c0000054e01008041000000c0011002100000058b011001c700008002020000391532152d0000040f0000000100200190000012e00000613d000000000101043b000000000001004b0000000803000029000012d80000613d000000400a00043d0000002401a000390000000c020000290000000000210435000005980100004100000000001a0435000000090100002900000551011001970000000402a0003900000000001204350000000001000414000000040030008c0000122b0000c13d0000000003000031000012580000013d0000054e00a0009c0000054e0200004100000000020a401900000040022002100000054e0010009c0000054e01008041000000c001100210000000000121019f00000592011001c7000000000203001900080000000a001d153215280000040f000000080a00002900000060031002700000054e03300197000000200030008c000000200400003900000000040340190000001f0540018f000000200640019000000000046a0019000012470000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b000012430000c13d000000000005004b000012540000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000000000003001f000200000001035500000001002001900000132f0000613d0000001f01300039000005c4021001970000000001a20019000000000021004b000000000200003900000001020040390000058e0010009c000012da0000213d0000000100200190000012da0000c13d000000400010043f0000058f0030009c000012d80000213d000000200030008c000012d80000413d00000000010a0433000000000001004b0000000002000039000000010200c039000000000021004b000012d80000c13d0000000801000039000000000201041a0000000d03000029000000000032004b000012e70000a13d000000000010043f000005990130009a000000000101041a0000055102100198000012a30000613d0000000b01000029000000000101041a000800000001001d0000058a010000410000000000100443000b00000002001d000000040020044300000000010004140000054e0010009c0000054e01008041000000c0011002100000058b011001c700008002020000391532152d0000040f0000000100200190000012e00000613d000000000101043b000000000001004b000012d80000613d000000400400043d00000084014000390000000802000029000000000021043500000064014000390000000c020000290000000000210435000000090100002900000551011001970000004402400039000000000012043500000024014000390000000a0200002900000000002104350000059a01000041000000000014043500000004014000390000000d02000029000000000021043500000000010004140000000b02000029000000040020008c000012a50000c13d0000000003000031000012b70000013d000000400100043d000012c40000013d0000054e0040009c000a00000004001d0000054e03000041000000000304401900000040033002100000054e0010009c0000054e01008041000000c001100210000000000131019f0000059b011001c7153215280000040f00000060031002700000054e0030019d0000054e0330019700020000000103550000000100200190000012f30000613d0000000a040000290000001f01300039000005c4021001970000000001420019000000000021004b000000000200003900000001020040390000058e0010009c000012da0000213d0000000100200190000012da0000c13d000000400010043f0000058f0030009c000012d80000213d0000000c0200002900000000002104350000054e0010009c0000054e01008041000000400110021000000000020004140000054e0020009c0000054e02008041000000c002200210000000000112019f0000059f011001c70000800d020000390000000303000039000005a10400004100000000050004110000000d06000029153215280000040f0000000100200190000012d80000613d000000000001042d00000000010000190000153400010430000005b601000041000000000010043f0000004101000039000000040010043f0000058d010000410000153400010430000000000001042f000005b601000041000000000010043f0000001101000039000000040010043f0000058d010000410000153400010430000005b601000041000000000010043f0000003201000039000000040010043f0000058d010000410000153400010430000005b601000041000000000010043f0000001201000039000000040010043f0000058d0100004100001534000104300000001f0530018f0000055006300198000000400200043d00000000046200190000133a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012fa0000c13d0000133a0000013d0000001f0530018f0000055006300198000000400200043d00000000046200190000133a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000013060000c13d0000133a0000013d0000001f0530018f0000055006300198000000400200043d00000000046200190000133a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000013120000c13d0000133a0000013d0000001f0530018f0000055006300198000000400200043d00000000046200190000133a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000131e0000c13d0000133a0000013d0000001f0530018f0000055006300198000000400200043d00000000046200190000133a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000132a0000c13d0000133a0000013d0000001f0530018f0000055006300198000000400200043d00000000046200190000133a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000013360000c13d000000000005004b000013470000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000054e0020009c0000054e020080410000004002200210000000000112019f0000153400010430000c000000000002000000400300043d000005c60030009c000014d60000813d0000006002300039000000400020043f000000400230003900000000000204350000002002300039000000000002043500000000000304350000000403000039000000000203041a000000000012004b000014df0000a13d000000000030043f000000400200043d000c00000002001d000005a80020009c000014d60000213d0000000c030000290000006002300039000000400020043f000b00000001001d00000003011000c9000005840210009a000700000002001d000000000202041a0000000004230436000005850210009a000600000002001d000000000202041a000a00000004001d000800000002001d00000000002404350000004002300039000005860110009a000500000001001d000000000101041a000900000002001d00000000001204350000058701000041000000000010044300000000010004140000054e0010009c0000054e01008041000000c00110021000000588011001c70000800b020000391532152d0000040f0000000100200190000014de0000613d000000000101043b000400000001001d000000080010006c0000000b03000029000014d40000a13d0000000501000039000000000201041a000000000032004b000014df0000a13d000000000010043f000005890130009a000000000101041a0000058a0200004100000000002004430000055101100197000800000001001d000000040010044300000000010004140000054e0010009c0000054e01008041000000c0011002100000058b011001c700008002020000391532152d0000040f0000000100200190000014de0000613d000000000101043b000000000001004b000014dc0000613d000000400a00043d0000058c0100004100000000001a0435000000000100041000000551031001970000000401a00039000000000031043500000000010004140000000802000029000000040020008c000300000003001d000013ac0000c13d0000000003000031000013d80000013d0000054e00a0009c0000054e0300004100000000030a401900000040033002100000054e0010009c0000054e01008041000000c001100210000000000131019f0000058d011001c700080000000a001d1532152d0000040f000000080a00002900000060031002700000054e03300197000000200030008c000000200400003900000000040340190000001f0540018f000000200640019000000000046a0019000013c70000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b000013c30000c13d000000000005004b000013d40000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000000000003001f00020000000103550000000100200190000014f10000613d0000001f01300039000005c4021001970000000001a20019000000000021004b000000000200003900000001020040390000058e0010009c000014d60000213d0000000100200190000014d60000c13d000000400010043f0000058f0030009c000014dc0000213d000000200030008c000014dc0000413d00000000010a0433000800000001001d000000000001004b0000149e0000613d0000000a010000290000000001010433000000040110006b000014e50000413d0000000302000039000000000202041a000013f50000613d000005c503100129000000000023004b000014e50000413d00000000011200aa0000000c020000290000000002020433000013fc0000613d000005c503100129000000000023004b000014e50000413d0000000a03000039000000000303041a000000000003004b000014eb0000613d00000000011200a900000000013100d9000400000001001d000005900010009c000014e50000213d0000000201000039000000000101041a000100000001001d0000000101000039000000000101041a0000058a0200004100000000002004430000055101100197000200000001001d000000040010044300000000010004140000054e0010009c0000054e01008041000000c0011002100000058b011001c700008002020000391532152d0000040f0000000100200190000014de0000613d000000000101043b000000000001004b000014dc0000613d00000004010000290000007c011000c9000003e80110011a00000001020000290000055102200197000000400400043d00000024034000390000000000130435000005910100004100000000001404350000000401400039000000000021043500000000010004140000000202000029000000040020008c0000142d0000c13d00000000030000310000143f0000013d0000054e0040009c000100000004001d0000054e03000041000000000304401900000040033002100000054e0010009c0000054e01008041000000c001100210000000000131019f00000592011001c7153215280000040f00000060031002700000054e0030019d0000054e0330019700020000000103550000000100200190000014fd0000613d00000001040000290000001f01300039000005c4021001970000000001420019000000000021004b000000000200003900000001020040390000058e0010009c000014d60000213d0000000100200190000014d60000c13d000000400010043f0000058f0030009c000014dc0000213d0000000101000039000000000101041a0000058a0200004100000000002004430000055101100197000200000001001d000000040010044300000000010004140000054e0010009c0000054e01008041000000c0011002100000058b011001c700008002020000391532152d0000040f0000000100200190000014de0000613d000000000101043b000000000001004b000014dc0000613d00000004010000290000036c011000c9000003e80410011a000000400500043d000000240150003900000000004104350000059101000041000000000015043500000004015000390000000302000029000000000021043500000000010004140000000202000029000000040020008c000014700000c13d0000000003000031000014840000013d000300000004001d0000054e0050009c000100000005001d0000054e03000041000000000305401900000040033002100000054e0010009c0000054e01008041000000c001100210000000000131019f00000592011001c7153215280000040f00000060031002700000054e0030019d0000054e0330019700020000000103550000000100200190000015090000613d000000030400002900000001050000290000001f01300039000005c4021001970000000001520019000000000021004b000000000200003900000001020040390000058e0010009c000014d60000213d0000000100200190000014d60000c13d000000400010043f0000058f0030009c000014dc0000213d0000000401000029000005930010009c000014e50000213d0000000901000029000000000101043300000594024000d100000008022000fa000005c503200167000000000031004b000014e50000213d0000000001120019000000090200002900000000001204350000058701000041000000000010044300000000010004140000054e0010009c0000054e01008041000000c00110021000000588011001c70000800b020000391532152d0000040f0000000100200190000014de0000613d000000000101043b0000000a0200002900000000001204350000000402000039000000000102041a0000000b05000029000000000051004b000014df0000a13d000000000020043f0000000c0100002900000000010104330000000702000029000000000012041b0000000a0100002900000000010104330000000602000029000000000012041b000000090200002900000000020204330000000503000029000000000023041b000000400300043d0000004004300039000000000024043500000020023000390000000804000029000000000042043500000000001304350000054e0030009c0000054e03008041000000400130021000000000020004140000054e0020009c0000054e02008041000000c002200210000000000112019f00000595011001c70000800d0200003900000002030000390000059604000041153215280000040f0000000100200190000014dc0000613d0000000c01000029000000000001042d000005b601000041000000000010043f0000004101000039000000040010043f0000058d01000041000015340001043000000000010000190000153400010430000000000001042f000005b601000041000000000010043f0000003201000039000000040010043f0000058d010000410000153400010430000005b601000041000000000010043f0000001101000039000000040010043f0000058d010000410000153400010430000005b601000041000000000010043f0000001201000039000000040010043f0000058d0100004100001534000104300000001f0530018f0000055006300198000000400200043d0000000004620019000015140000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000014f80000c13d000015140000013d0000001f0530018f0000055006300198000000400200043d0000000004620019000015140000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000015040000c13d000015140000013d0000001f0530018f0000055006300198000000400200043d0000000004620019000015140000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000015100000c13d000000000005004b000015210000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000054e0020009c0000054e020080410000004002200210000000000112019f0000153400010430000000000001042f0000152b002104210000000102000039000000000001042d0000000002000019000000000001042d00001530002104230000000102000039000000000001042d0000000002000019000000000001042d0000153200000432000015330001042e000015340001043000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e000000000000000000000000000000000000000000000000053444835ec580001000000020000000000000000000000000000004000000100000000000000000070657220626c6f636b20657863656564656400000000000000000000000000006d6178696d756d20656d697373696f6e2072617465206f662036206d6f6e642008c379a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000000000000000000000057a5b58b000000000000000000000000000000000000000000000000000000008dbdbe6c00000000000000000000000000000000000000000000000000000000c346253c00000000000000000000000000000000000000000000000000000000d1abb90600000000000000000000000000000000000000000000000000000000d1abb90700000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000c346253d00000000000000000000000000000000000000000000000000000000c5f956af000000000000000000000000000000000000000000000000000000008dbdbe6d0000000000000000000000000000000000000000000000000000000093f1a40b00000000000000000000000000000000000000000000000000000000ab7de09800000000000000000000000000000000000000000000000000000000715018a50000000000000000000000000000000000000000000000000000000088bba42e0000000000000000000000000000000000000000000000000000000088bba42f000000000000000000000000000000000000000000000000000000008da5cb5b00000000000000000000000000000000000000000000000000000000715018a600000000000000000000000000000000000000000000000000000000760415460000000000000000000000000000000000000000000000000000000057a5b58c000000000000000000000000000000000000000000000000000000005a61ddb1000000000000000000000000000000000000000000000000000000005d8e9ae9000000000000000000000000000000000000000000000000000000001bb5e2db0000000000000000000000000000000000000000000000000000000039e5f4fe000000000000000000000000000000000000000000000000000000004bf37df5000000000000000000000000000000000000000000000000000000004bf37df60000000000000000000000000000000000000000000000000000000051eb05a60000000000000000000000000000000000000000000000000000000039e5f4ff0000000000000000000000000000000000000000000000000000000048cd4cb1000000000000000000000000000000000000000000000000000000001bb5e2dc000000000000000000000000000000000000000000000000000000002d809cb6000000000000000000000000000000000000000000000000000000002f940c7000000000000000000000000000000000000000000000000000000000173b31d700000000000000000000000000000000000000000000000000000000173b31d80000000000000000000000000000000000000000000000000000000017caf6f10000000000000000000000000000000000000000000000000000000018fccc7600000000000000000000000000000000000000000000000000000000081e3eda000000000000000000000000000000000000000000000000000000000ba84cd2000000000000000000000000000000000000000000000000000000001526fe2702000000000000000000000000000000000000000000008000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008400000080000000000000000075ca53043ea007e5c65182cbb028f60d7179ff4b55739a3949b401801c942e6575ca53043ea007e5c65182cbb028f60d7179ff4b55739a3949b401801c942e6475ca53043ea007e5c65182cbb028f60d7179ff4b55739a3949b401801c942e63796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d955391320200000200000000000000000000000000000004000000000000000000000000fc949c7b4a13586e39d89eead2f38644f9fb3efb5a0490b14f8fc0ceab44c2501806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b83020000020000000000000000000000000000002400000000000000000000000070a08231000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff004ad012b404ad012b404ad012b404ad012b404ad012b404ad012b404ad012b440c10f190000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000440000000000000000000000000000000001415187065826eb2bb3cca994638de20e01f790a3a9bde8209ddfa5000000000000000000000000000000000000000000000000000000e8d4a510000200000000000000000000000000000000000060000000000000000000000000cb7325664a4a3b7c7223eefc492a97ca4fdf94d46884621e5a8fae5a04b2b9d20200000000000000000000000000000000000040000000000000000000000000a9059cbb000000000000000000000000000000000000000000000000000000000c085601c9b05546c4de925af5cdebeab0dd5f5d4bea4dc57b37e961749c911d8e9f947f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a4000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff7f000000000000000000000000000000000000000000000000ffffffffffffff3f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656402000000000000000000000000000000000000200000000000000000000000008166bf25f8a2b7ed3c85049207da4358d16edbed977d23fa2ee6f0dde3ec213271bab65ced2e5750775a0613be067df48ef06cf92a496ebf7663ae0660924954746564000000000000000000000000000000000000000000000000000000000063616e6e6f74207769746864726177206d6f7265207468616e206465706f736900000000000000000000000000000000000000200000008000000000000000006164643a204c5020616c72656164792061646465640000000000000000000000000000000000000000000000000000000000006400000000000000000000000009addddcec1d7ba6ad726df49aeea3e93fb0c1037d551236841a60c0c883f2c1000000000000000000000000000000000000000000000000ffffffffffffff9f81ee0f8c5c46e2cb41984886f77a84181724abb86c32a5f6de539b07509d45e572207a65726f00000000000000000000000000000000000000000000000000006164643a207265776172646572206d75737420626520636f6e7472616374206f6e747261637400000000000000000000000000000000000000000000000000006164643a204c5020746f6b656e206d75737420626520612076616c696420636f000000000000000000000000000000000000004000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff5f000000000000000000000000000000000000000000000000ffffffffffffff1f02d7e648dd130fc184d383e55bb126ac4c9c60e8f94bf05acdf557ba2d540b477365743a207265776172646572206d75737420626520636f6e7472616374206f95895a6ab1df54420d241b55243258a33e61b2194db66c1179ec521aae8e186500000000000000000000000000000000000000200000000000000000000000004e487b71000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff80000000000000000000000000000000000000000000000000ffffffffffffffbf6f742073756363656564000000000000000000000000000000000000000000005361666545524332303a204552433230206f7065726174696f6e20646964206e2cac5e20e1541d836381527a43f651851e302817b71dc8e810284e69210c1c6b416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000061885cdba916be748ff3e3f6f15e4206153b8ea3b7acabade9d04b4063a8351000000000000000000000000000000000000000600000008000000000000000004f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000000000000000000000640000008000000000000000000200000000000000000000000000000000000020000000800000000000000000e2492e003bbe8afa53088b406f0c1cb5d9e280370fc72a74cf116ffd343c4053ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffa000000000000000000000000000000000000000000000000000000000000000002564c5c6efcfd4d67cde75d20e307226e3eba65300a4793afa1e2df2d42a2fd7
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000061c0940b2760c7b64ad8fd775c12d1f11c73deb200000000000000000000000095d457a84e830a76be47419427814cefbd0c269f0000000000000000000000000000000000000000000000004615343e73b900000000000000000000000000000000000000000000000000000000000000125494
-----Decoded View---------------
Arg [0] : _mond (address): 0x61c0940b2760C7B64aD8fd775c12D1f11c73deb2
Arg [1] : _treasuryAddress (address): 0x95d457A84e830a76Be47419427814CeFbD0c269F
Arg [2] : _mondPerBlock (uint256): 5050000000000000000
Arg [3] : _startBlock (uint256): 1201300
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 00000000000000000000000061c0940b2760c7b64ad8fd775c12d1f11c73deb2
Arg [1] : 00000000000000000000000095d457a84e830a76be47419427814cefbd0c269f
Arg [2] : 0000000000000000000000000000000000000000000000004615343e73b90000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000125494
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.