content
stringlengths
7
1.05M
fixed_cases
stringlengths
1
1.28M
class ScrollProperties(object): """ Encapsulates properties related to scrolling. """ def Instance(self): """ This function has been arbitrarily put into the stubs""" return ScrollProperties() @staticmethod def __new__(self,*args): #cannot find CLR constructor """ __new__(cls: type,container: ScrollableControl) """ pass Enabled=property(lambda self: object(),lambda self,v: None,lambda self: None) """Gets or sets whether the scroll bar can be used on the container. Get: Enabled(self: ScrollProperties) -> bool Set: Enabled(self: ScrollProperties)=value """ LargeChange=property(lambda self: object(),lambda self,v: None,lambda self: None) """Gets or sets the distance to move a scroll bar in response to a large scroll command. Get: LargeChange(self: ScrollProperties) -> int Set: LargeChange(self: ScrollProperties)=value """ Maximum=property(lambda self: object(),lambda self,v: None,lambda self: None) """Gets or sets the upper limit of the scrollable range. Get: Maximum(self: ScrollProperties) -> int Set: Maximum(self: ScrollProperties)=value """ Minimum=property(lambda self: object(),lambda self,v: None,lambda self: None) """Gets or sets the lower limit of the scrollable range. Get: Minimum(self: ScrollProperties) -> int Set: Minimum(self: ScrollProperties)=value """ ParentControl=property(lambda self: object(),lambda self,v: None,lambda self: None) """Gets the control to which this scroll information applies. """ SmallChange=property(lambda self: object(),lambda self,v: None,lambda self: None) """Gets or sets the distance to move a scroll bar in response to a small scroll command. Get: SmallChange(self: ScrollProperties) -> int Set: SmallChange(self: ScrollProperties)=value """ Value=property(lambda self: object(),lambda self,v: None,lambda self: None) """Gets or sets a numeric value that represents the current position of the scroll bar box. Get: Value(self: ScrollProperties) -> int Set: Value(self: ScrollProperties)=value """ Visible=property(lambda self: object(),lambda self,v: None,lambda self: None) """Gets or sets whether the scroll bar can be seen by the user. Get: Visible(self: ScrollProperties) -> bool Set: Visible(self: ScrollProperties)=value """
class Scrollproperties(object): """ Encapsulates properties related to scrolling. """ def instance(self): """ This function has been arbitrarily put into the stubs""" return scroll_properties() @staticmethod def __new__(self, *args): """ __new__(cls: type,container: ScrollableControl) """ pass enabled = property(lambda self: object(), lambda self, v: None, lambda self: None) 'Gets or sets whether the scroll bar can be used on the container.\n\n\n\nGet: Enabled(self: ScrollProperties) -> bool\n\n\n\nSet: Enabled(self: ScrollProperties)=value\n\n' large_change = property(lambda self: object(), lambda self, v: None, lambda self: None) 'Gets or sets the distance to move a scroll bar in response to a large scroll command.\n\n\n\nGet: LargeChange(self: ScrollProperties) -> int\n\n\n\nSet: LargeChange(self: ScrollProperties)=value\n\n' maximum = property(lambda self: object(), lambda self, v: None, lambda self: None) 'Gets or sets the upper limit of the scrollable range.\n\n\n\nGet: Maximum(self: ScrollProperties) -> int\n\n\n\nSet: Maximum(self: ScrollProperties)=value\n\n' minimum = property(lambda self: object(), lambda self, v: None, lambda self: None) 'Gets or sets the lower limit of the scrollable range.\n\n\n\nGet: Minimum(self: ScrollProperties) -> int\n\n\n\nSet: Minimum(self: ScrollProperties)=value\n\n' parent_control = property(lambda self: object(), lambda self, v: None, lambda self: None) 'Gets the control to which this scroll information applies.\n\n\n\n' small_change = property(lambda self: object(), lambda self, v: None, lambda self: None) 'Gets or sets the distance to move a scroll bar in response to a small scroll command.\n\n\n\nGet: SmallChange(self: ScrollProperties) -> int\n\n\n\nSet: SmallChange(self: ScrollProperties)=value\n\n' value = property(lambda self: object(), lambda self, v: None, lambda self: None) 'Gets or sets a numeric value that represents the current position of the scroll bar box.\n\n\n\nGet: Value(self: ScrollProperties) -> int\n\n\n\nSet: Value(self: ScrollProperties)=value\n\n' visible = property(lambda self: object(), lambda self, v: None, lambda self: None) 'Gets or sets whether the scroll bar can be seen by the user.\n\n\n\nGet: Visible(self: ScrollProperties) -> bool\n\n\n\nSet: Visible(self: ScrollProperties)=value\n\n'
# -- coding: utf-8 -- # Created by LoginRadius Development Team # Copyright 2019 LoginRadius Inc. All rights reserved. # class MultiFactorAuthenticationApi: def __init__(self, lr_object): """ :param lr_object: this is the reference to the parent LoginRadius object. """ self._lr_object = lr_object def mfa_configure_by_access_token(self, access_token, sms_template2_f_a=None): """This API is used to configure the Multi-factor authentication after login by using the access_token when MFA is set as optional on the LoginRadius site. Args: access_token: Uniquely generated identifier key by LoginRadius that is activated after successful authentication. sms_template2_f_a: SMS Template Name Returns: Response containing Definition of Complete Multi-Factor Authentication Settings data 5.7 """ if(self._lr_object.is_null_or_whitespace(access_token)): raise Exception(self._lr_object.get_validation_message("access_token")) query_parameters = {} query_parameters["access_token"] = access_token query_parameters["apiKey"] = self._lr_object.get_api_key() if(not self._lr_object.is_null_or_whitespace(sms_template2_f_a)): query_parameters["smsTemplate2FA"] = sms_template2_f_a resource_path = "identity/v2/auth/account/2fa" return self._lr_object.execute("GET", resource_path, query_parameters, None) def mfa_update_setting(self, access_token, multi_factor_auth_model_with_lockout, fields=''): """This API is used to trigger the Multi-factor authentication settings after login for secure actions Args: access_token: Uniquely generated identifier key by LoginRadius that is activated after successful authentication. multi_factor_auth_model_with_lockout: Model Class containing Definition of payload for MultiFactorAuthModel With Lockout API fields: The fields parameter filters the API response so that the response only includes a specific set of fields Returns: Response containing Definition for Complete profile data 5.9 """ if(self._lr_object.is_null_or_whitespace(access_token)): raise Exception(self._lr_object.get_validation_message("access_token")) if(multi_factor_auth_model_with_lockout is None): raise Exception(self._lr_object.get_validation_message("multi_factor_auth_model_with_lockout")) query_parameters = {} query_parameters["access_token"] = access_token query_parameters["apiKey"] = self._lr_object.get_api_key() if(not self._lr_object.is_null_or_whitespace(fields)): query_parameters["fields"] = fields resource_path = "identity/v2/auth/account/2fa/verification/otp" return self._lr_object.execute("PUT", resource_path, query_parameters, multi_factor_auth_model_with_lockout) def mfa_update_by_access_token(self, access_token, multi_factor_auth_model_by_google_authenticator_code, fields='', sms_template=None): """This API is used to Enable Multi-factor authentication by access token on user login Args: access_token: Uniquely generated identifier key by LoginRadius that is activated after successful authentication. multi_factor_auth_model_by_google_authenticator_code: Model Class containing Definition of payload for MultiFactorAuthModel By GoogleAuthenticator Code API fields: The fields parameter filters the API response so that the response only includes a specific set of fields sms_template: SMS Template name Returns: Response containing Definition for Complete profile data 5.10 """ if(self._lr_object.is_null_or_whitespace(access_token)): raise Exception(self._lr_object.get_validation_message("access_token")) if(multi_factor_auth_model_by_google_authenticator_code is None): raise Exception(self._lr_object.get_validation_message("multi_factor_auth_model_by_google_authenticator_code")) query_parameters = {} query_parameters["access_token"] = access_token query_parameters["apiKey"] = self._lr_object.get_api_key() if(not self._lr_object.is_null_or_whitespace(fields)): query_parameters["fields"] = fields if(not self._lr_object.is_null_or_whitespace(sms_template)): query_parameters["smsTemplate"] = sms_template resource_path = "identity/v2/auth/account/2fa/verification/googleauthenticatorcode" return self._lr_object.execute("PUT", resource_path, query_parameters, multi_factor_auth_model_by_google_authenticator_code) def mfa_update_phone_number_by_token(self, access_token, phone_no2_f_a, sms_template2_f_a=None): """This API is used to update the Multi-factor authentication phone number by sending the verification OTP to the provided phone number Args: access_token: Uniquely generated identifier key by LoginRadius that is activated after successful authentication. phone_no2_f_a: Phone Number For 2FA sms_template2_f_a: SMS Template Name Returns: Response containing Definition for Complete SMS data 5.11 """ if(self._lr_object.is_null_or_whitespace(access_token)): raise Exception(self._lr_object.get_validation_message("access_token")) if(self._lr_object.is_null_or_whitespace(phone_no2_f_a)): raise Exception(self._lr_object.get_validation_message("phone_no2_f_a")) query_parameters = {} query_parameters["access_token"] = access_token query_parameters["apiKey"] = self._lr_object.get_api_key() if(not self._lr_object.is_null_or_whitespace(sms_template2_f_a)): query_parameters["smsTemplate2FA"] = sms_template2_f_a body_parameters = {} body_parameters["phoneNo2FA"] = phone_no2_f_a resource_path = "identity/v2/auth/account/2fa" return self._lr_object.execute("PUT", resource_path, query_parameters, body_parameters) def mfa_reset_google_auth_by_token(self, access_token, googleauthenticator): """This API Resets the Google Authenticator configurations on a given account via the access_token Args: access_token: Uniquely generated identifier key by LoginRadius that is activated after successful authentication. googleauthenticator: boolean type value,Enable google Authenticator Code. Returns: Response containing Definition of Delete Request 5.12.1 """ if(self._lr_object.is_null_or_whitespace(access_token)): raise Exception(self._lr_object.get_validation_message("access_token")) query_parameters = {} query_parameters["access_token"] = access_token query_parameters["apiKey"] = self._lr_object.get_api_key() body_parameters = {} body_parameters["googleauthenticator"] = googleauthenticator resource_path = "identity/v2/auth/account/2fa/authenticator" return self._lr_object.execute("DELETE", resource_path, query_parameters, body_parameters) def mfa_reset_sms_auth_by_token(self, access_token, otpauthenticator): """This API resets the SMS Authenticator configurations on a given account via the access_token. Args: access_token: Uniquely generated identifier key by LoginRadius that is activated after successful authentication. otpauthenticator: Pass 'otpauthenticator' to remove SMS Authenticator Returns: Response containing Definition of Delete Request 5.12.2 """ if(self._lr_object.is_null_or_whitespace(access_token)): raise Exception(self._lr_object.get_validation_message("access_token")) query_parameters = {} query_parameters["access_token"] = access_token query_parameters["apiKey"] = self._lr_object.get_api_key() body_parameters = {} body_parameters["otpauthenticator"] = otpauthenticator resource_path = "identity/v2/auth/account/2fa/authenticator" return self._lr_object.execute("DELETE", resource_path, query_parameters, body_parameters) def mfa_backup_code_by_access_token(self, access_token): """This API is used to get a set of backup codes via access_token to allow the user login on a site that has Multi-factor Authentication enabled in the event that the user does not have a secondary factor available. We generate 10 codes, each code can only be consumed once. If any user attempts to go over the number of invalid login attempts configured in the Dashboard then the account gets blocked automatically Args: access_token: Uniquely generated identifier key by LoginRadius that is activated after successful authentication. Returns: Response containing Definition of Complete Backup Code data 5.13 """ if(self._lr_object.is_null_or_whitespace(access_token)): raise Exception(self._lr_object.get_validation_message("access_token")) query_parameters = {} query_parameters["access_token"] = access_token query_parameters["apiKey"] = self._lr_object.get_api_key() resource_path = "identity/v2/auth/account/2fa/backupcode" return self._lr_object.execute("GET", resource_path, query_parameters, None) def mfa_reset_backup_code_by_access_token(self, access_token): """API is used to reset the backup codes on a given account via the access_token. This API call will generate 10 new codes, each code can only be consumed once Args: access_token: Uniquely generated identifier key by LoginRadius that is activated after successful authentication. Returns: Response containing Definition of Complete Backup Code data 5.14 """ if(self._lr_object.is_null_or_whitespace(access_token)): raise Exception(self._lr_object.get_validation_message("access_token")) query_parameters = {} query_parameters["access_token"] = access_token query_parameters["apiKey"] = self._lr_object.get_api_key() resource_path = "identity/v2/auth/account/2fa/backupcode/reset" return self._lr_object.execute("GET", resource_path, query_parameters, None) def mfa_login_by_email(self, email, password, email_template=None, fields='', login_url=None, sms_template=None, sms_template2_f_a=None, verification_url=None): """This API can be used to login by emailid on a Multi-factor authentication enabled LoginRadius site. Args: email: user's email password: Password for the email email_template: Email template name fields: The fields parameter filters the API response so that the response only includes a specific set of fields login_url: Url where the user is logging from sms_template: SMS Template name sms_template2_f_a: SMS Template Name verification_url: Email verification url Returns: Complete user UserProfile data 9.8.1 """ if(self._lr_object.is_null_or_whitespace(email)): raise Exception(self._lr_object.get_validation_message("email")) if(self._lr_object.is_null_or_whitespace(password)): raise Exception(self._lr_object.get_validation_message("password")) query_parameters = {} query_parameters["apiKey"] = self._lr_object.get_api_key() if(not self._lr_object.is_null_or_whitespace(email_template)): query_parameters["emailTemplate"] = email_template if(not self._lr_object.is_null_or_whitespace(fields)): query_parameters["fields"] = fields if(not self._lr_object.is_null_or_whitespace(login_url)): query_parameters["loginUrl"] = login_url if(not self._lr_object.is_null_or_whitespace(sms_template)): query_parameters["smsTemplate"] = sms_template if(not self._lr_object.is_null_or_whitespace(sms_template2_f_a)): query_parameters["smsTemplate2FA"] = sms_template2_f_a if(not self._lr_object.is_null_or_whitespace(verification_url)): query_parameters["verificationUrl"] = verification_url body_parameters = {} body_parameters["email"] = email body_parameters["password"] = password resource_path = "identity/v2/auth/login/2fa" return self._lr_object.execute("POST", resource_path, query_parameters, body_parameters) def mfa_login_by_user_name(self, password, username, email_template=None, fields='', login_url=None, sms_template=None, sms_template2_f_a=None, verification_url=None): """This API can be used to login by username on a Multi-factor authentication enabled LoginRadius site. Args: password: Password for the email username: Username of the user email_template: Email template name fields: The fields parameter filters the API response so that the response only includes a specific set of fields login_url: Url where the user is logging from sms_template: SMS Template name sms_template2_f_a: SMS Template Name verification_url: Email verification url Returns: Complete user UserProfile data 9.8.2 """ if(self._lr_object.is_null_or_whitespace(password)): raise Exception(self._lr_object.get_validation_message("password")) if(self._lr_object.is_null_or_whitespace(username)): raise Exception(self._lr_object.get_validation_message("username")) query_parameters = {} query_parameters["apiKey"] = self._lr_object.get_api_key() if(not self._lr_object.is_null_or_whitespace(email_template)): query_parameters["emailTemplate"] = email_template if(not self._lr_object.is_null_or_whitespace(fields)): query_parameters["fields"] = fields if(not self._lr_object.is_null_or_whitespace(login_url)): query_parameters["loginUrl"] = login_url if(not self._lr_object.is_null_or_whitespace(sms_template)): query_parameters["smsTemplate"] = sms_template if(not self._lr_object.is_null_or_whitespace(sms_template2_f_a)): query_parameters["smsTemplate2FA"] = sms_template2_f_a if(not self._lr_object.is_null_or_whitespace(verification_url)): query_parameters["verificationUrl"] = verification_url body_parameters = {} body_parameters["password"] = password body_parameters["username"] = username resource_path = "identity/v2/auth/login/2fa" return self._lr_object.execute("POST", resource_path, query_parameters, body_parameters) def mfa_login_by_phone(self, password, phone, email_template=None, fields='', login_url=None, sms_template=None, sms_template2_f_a=None, verification_url=None): """This API can be used to login by Phone on a Multi-factor authentication enabled LoginRadius site. Args: password: Password for the email phone: New Phone Number email_template: Email template name fields: The fields parameter filters the API response so that the response only includes a specific set of fields login_url: Url where the user is logging from sms_template: SMS Template name sms_template2_f_a: SMS Template Name verification_url: Email verification url Returns: Complete user UserProfile data 9.8.3 """ if(self._lr_object.is_null_or_whitespace(password)): raise Exception(self._lr_object.get_validation_message("password")) if(self._lr_object.is_null_or_whitespace(phone)): raise Exception(self._lr_object.get_validation_message("phone")) query_parameters = {} query_parameters["apiKey"] = self._lr_object.get_api_key() if(not self._lr_object.is_null_or_whitespace(email_template)): query_parameters["emailTemplate"] = email_template if(not self._lr_object.is_null_or_whitespace(fields)): query_parameters["fields"] = fields if(not self._lr_object.is_null_or_whitespace(login_url)): query_parameters["loginUrl"] = login_url if(not self._lr_object.is_null_or_whitespace(sms_template)): query_parameters["smsTemplate"] = sms_template if(not self._lr_object.is_null_or_whitespace(sms_template2_f_a)): query_parameters["smsTemplate2FA"] = sms_template2_f_a if(not self._lr_object.is_null_or_whitespace(verification_url)): query_parameters["verificationUrl"] = verification_url body_parameters = {} body_parameters["password"] = password body_parameters["phone"] = phone resource_path = "identity/v2/auth/login/2fa" return self._lr_object.execute("POST", resource_path, query_parameters, body_parameters) def mfa_validate_otp_by_phone(self, multi_factor_auth_model_with_lockout, second_factor_authentication_token, fields='', sms_template2_f_a=None): """This API is used to login via Multi-factor authentication by passing the One Time Password received via SMS Args: multi_factor_auth_model_with_lockout: Model Class containing Definition of payload for MultiFactorAuthModel With Lockout API second_factor_authentication_token: A Uniquely generated MFA identifier token after successful authentication fields: The fields parameter filters the API response so that the response only includes a specific set of fields sms_template2_f_a: SMS Template Name Returns: Complete user UserProfile data 9.12 """ if(multi_factor_auth_model_with_lockout is None): raise Exception(self._lr_object.get_validation_message("multi_factor_auth_model_with_lockout")) if(self._lr_object.is_null_or_whitespace(second_factor_authentication_token)): raise Exception(self._lr_object.get_validation_message("second_factor_authentication_token")) query_parameters = {} query_parameters["apiKey"] = self._lr_object.get_api_key() query_parameters["secondFactorAuthenticationToken"] = second_factor_authentication_token if(not self._lr_object.is_null_or_whitespace(fields)): query_parameters["fields"] = fields if(not self._lr_object.is_null_or_whitespace(sms_template2_f_a)): query_parameters["smsTemplate2FA"] = sms_template2_f_a resource_path = "identity/v2/auth/login/2fa/verification/otp" return self._lr_object.execute("PUT", resource_path, query_parameters, multi_factor_auth_model_with_lockout) def mfa_validate_google_auth_code(self, google_authenticator_code, second_factor_authentication_token, fields='', sms_template2_f_a=None): """This API is used to login via Multi-factor-authentication by passing the google authenticator code. Args: google_authenticator_code: The code generated by google authenticator app after scanning QR code second_factor_authentication_token: A Uniquely generated MFA identifier token after successful authentication fields: The fields parameter filters the API response so that the response only includes a specific set of fields sms_template2_f_a: SMS Template Name Returns: Complete user UserProfile data 9.13 """ if(self._lr_object.is_null_or_whitespace(google_authenticator_code)): raise Exception(self._lr_object.get_validation_message("google_authenticator_code")) if(self._lr_object.is_null_or_whitespace(second_factor_authentication_token)): raise Exception(self._lr_object.get_validation_message("second_factor_authentication_token")) query_parameters = {} query_parameters["apiKey"] = self._lr_object.get_api_key() query_parameters["secondFactorAuthenticationToken"] = second_factor_authentication_token if(not self._lr_object.is_null_or_whitespace(fields)): query_parameters["fields"] = fields if(not self._lr_object.is_null_or_whitespace(sms_template2_f_a)): query_parameters["smsTemplate2FA"] = sms_template2_f_a body_parameters = {} body_parameters["googleAuthenticatorCode"] = google_authenticator_code resource_path = "identity/v2/auth/login/2fa/verification/googleauthenticatorcode" return self._lr_object.execute("PUT", resource_path, query_parameters, body_parameters) def mfa_validate_backup_code(self, multi_factor_auth_model_by_backup_code, second_factor_authentication_token, fields=''): """This API is used to validate the backup code provided by the user and if valid, we return an access_token allowing the user to login incases where Multi-factor authentication (MFA) is enabled and the secondary factor is unavailable. When a user initially downloads the Backup codes, We generate 10 codes, each code can only be consumed once. if any user attempts to go over the number of invalid login attempts configured in the Dashboard then the account gets blocked automatically Args: multi_factor_auth_model_by_backup_code: Model Class containing Definition of payload for MultiFactorAuth By BackupCode API second_factor_authentication_token: A Uniquely generated MFA identifier token after successful authentication fields: The fields parameter filters the API response so that the response only includes a specific set of fields Returns: Complete user UserProfile data 9.14 """ if(multi_factor_auth_model_by_backup_code is None): raise Exception(self._lr_object.get_validation_message("multi_factor_auth_model_by_backup_code")) if(self._lr_object.is_null_or_whitespace(second_factor_authentication_token)): raise Exception(self._lr_object.get_validation_message("second_factor_authentication_token")) query_parameters = {} query_parameters["apiKey"] = self._lr_object.get_api_key() query_parameters["secondFactorAuthenticationToken"] = second_factor_authentication_token if(not self._lr_object.is_null_or_whitespace(fields)): query_parameters["fields"] = fields resource_path = "identity/v2/auth/login/2fa/verification/backupcode" return self._lr_object.execute("PUT", resource_path, query_parameters, multi_factor_auth_model_by_backup_code) def mfa_update_phone_number(self, phone_no2_f_a, second_factor_authentication_token, sms_template2_f_a=None): """This API is used to update (if configured) the phone number used for Multi-factor authentication by sending the verification OTP to the provided phone number Args: phone_no2_f_a: Phone Number For 2FA second_factor_authentication_token: A Uniquely generated MFA identifier token after successful authentication sms_template2_f_a: SMS Template Name Returns: Response containing Definition for Complete SMS data 9.16 """ if(self._lr_object.is_null_or_whitespace(phone_no2_f_a)): raise Exception(self._lr_object.get_validation_message("phone_no2_f_a")) if(self._lr_object.is_null_or_whitespace(second_factor_authentication_token)): raise Exception(self._lr_object.get_validation_message("second_factor_authentication_token")) query_parameters = {} query_parameters["apiKey"] = self._lr_object.get_api_key() query_parameters["secondFactorAuthenticationToken"] = second_factor_authentication_token if(not self._lr_object.is_null_or_whitespace(sms_template2_f_a)): query_parameters["smsTemplate2FA"] = sms_template2_f_a body_parameters = {} body_parameters["phoneNo2FA"] = phone_no2_f_a resource_path = "identity/v2/auth/login/2fa" return self._lr_object.execute("PUT", resource_path, query_parameters, body_parameters) def mfa_resend_otp(self, second_factor_authentication_token, sms_template2_f_a=None): """This API is used to resending the verification OTP to the provided phone number Args: second_factor_authentication_token: A Uniquely generated MFA identifier token after successful authentication sms_template2_f_a: SMS Template Name Returns: Response containing Definition for Complete SMS data 9.17 """ if(self._lr_object.is_null_or_whitespace(second_factor_authentication_token)): raise Exception(self._lr_object.get_validation_message("second_factor_authentication_token")) query_parameters = {} query_parameters["apiKey"] = self._lr_object.get_api_key() query_parameters["secondFactorAuthenticationToken"] = second_factor_authentication_token if(not self._lr_object.is_null_or_whitespace(sms_template2_f_a)): query_parameters["smsTemplate2FA"] = sms_template2_f_a resource_path = "identity/v2/auth/login/2fa/resend" return self._lr_object.execute("GET", resource_path, query_parameters, None) def mfa_reset_sms_authenticator_by_uid(self, otpauthenticator, uid): """This API resets the SMS Authenticator configurations on a given account via the UID. Args: otpauthenticator: Pass 'otpauthenticator' to remove SMS Authenticator uid: UID, the unified identifier for each user account Returns: Response containing Definition of Delete Request 18.21.1 """ if(self._lr_object.is_null_or_whitespace(uid)): raise Exception(self._lr_object.get_validation_message("uid")) query_parameters = {} query_parameters["apiKey"] = self._lr_object.get_api_key() query_parameters["apiSecret"] = self._lr_object.get_api_secret() query_parameters["uid"] = uid body_parameters = {} body_parameters["otpauthenticator"] = otpauthenticator resource_path = "identity/v2/manage/account/2fa/authenticator" return self._lr_object.execute("DELETE", resource_path, query_parameters, body_parameters) def mfa_reset_google_authenticator_by_uid(self, googleauthenticator, uid): """This API resets the Google Authenticator configurations on a given account via the UID. Args: googleauthenticator: boolean type value,Enable google Authenticator Code. uid: UID, the unified identifier for each user account Returns: Response containing Definition of Delete Request 18.21.2 """ if(self._lr_object.is_null_or_whitespace(uid)): raise Exception(self._lr_object.get_validation_message("uid")) query_parameters = {} query_parameters["apiKey"] = self._lr_object.get_api_key() query_parameters["apiSecret"] = self._lr_object.get_api_secret() query_parameters["uid"] = uid body_parameters = {} body_parameters["googleauthenticator"] = googleauthenticator resource_path = "identity/v2/manage/account/2fa/authenticator" return self._lr_object.execute("DELETE", resource_path, query_parameters, body_parameters) def mfa_backup_code_by_uid(self, uid): """This API is used to reset the backup codes on a given account via the UID. This API call will generate 10 new codes, each code can only be consumed once. Args: uid: UID, the unified identifier for each user account Returns: Response containing Definition of Complete Backup Code data 18.25 """ if(self._lr_object.is_null_or_whitespace(uid)): raise Exception(self._lr_object.get_validation_message("uid")) query_parameters = {} query_parameters["apiKey"] = self._lr_object.get_api_key() query_parameters["apiSecret"] = self._lr_object.get_api_secret() query_parameters["uid"] = uid resource_path = "identity/v2/manage/account/2fa/backupcode" return self._lr_object.execute("GET", resource_path, query_parameters, None) def mfa_reset_backup_code_by_uid(self, uid): """This API is used to reset the backup codes on a given account via the UID. This API call will generate 10 new codes, each code can only be consumed once. Args: uid: UID, the unified identifier for each user account Returns: Response containing Definition of Complete Backup Code data 18.26 """ if(self._lr_object.is_null_or_whitespace(uid)): raise Exception(self._lr_object.get_validation_message("uid")) query_parameters = {} query_parameters["apiKey"] = self._lr_object.get_api_key() query_parameters["apiSecret"] = self._lr_object.get_api_secret() query_parameters["uid"] = uid resource_path = "identity/v2/manage/account/2fa/backupcode/reset" return self._lr_object.execute("GET", resource_path, query_parameters, None)
class Multifactorauthenticationapi: def __init__(self, lr_object): """ :param lr_object: this is the reference to the parent LoginRadius object. """ self._lr_object = lr_object def mfa_configure_by_access_token(self, access_token, sms_template2_f_a=None): """This API is used to configure the Multi-factor authentication after login by using the access_token when MFA is set as optional on the LoginRadius site. Args: access_token: Uniquely generated identifier key by LoginRadius that is activated after successful authentication. sms_template2_f_a: SMS Template Name Returns: Response containing Definition of Complete Multi-Factor Authentication Settings data 5.7 """ if self._lr_object.is_null_or_whitespace(access_token): raise exception(self._lr_object.get_validation_message('access_token')) query_parameters = {} query_parameters['access_token'] = access_token query_parameters['apiKey'] = self._lr_object.get_api_key() if not self._lr_object.is_null_or_whitespace(sms_template2_f_a): query_parameters['smsTemplate2FA'] = sms_template2_f_a resource_path = 'identity/v2/auth/account/2fa' return self._lr_object.execute('GET', resource_path, query_parameters, None) def mfa_update_setting(self, access_token, multi_factor_auth_model_with_lockout, fields=''): """This API is used to trigger the Multi-factor authentication settings after login for secure actions Args: access_token: Uniquely generated identifier key by LoginRadius that is activated after successful authentication. multi_factor_auth_model_with_lockout: Model Class containing Definition of payload for MultiFactorAuthModel With Lockout API fields: The fields parameter filters the API response so that the response only includes a specific set of fields Returns: Response containing Definition for Complete profile data 5.9 """ if self._lr_object.is_null_or_whitespace(access_token): raise exception(self._lr_object.get_validation_message('access_token')) if multi_factor_auth_model_with_lockout is None: raise exception(self._lr_object.get_validation_message('multi_factor_auth_model_with_lockout')) query_parameters = {} query_parameters['access_token'] = access_token query_parameters['apiKey'] = self._lr_object.get_api_key() if not self._lr_object.is_null_or_whitespace(fields): query_parameters['fields'] = fields resource_path = 'identity/v2/auth/account/2fa/verification/otp' return self._lr_object.execute('PUT', resource_path, query_parameters, multi_factor_auth_model_with_lockout) def mfa_update_by_access_token(self, access_token, multi_factor_auth_model_by_google_authenticator_code, fields='', sms_template=None): """This API is used to Enable Multi-factor authentication by access token on user login Args: access_token: Uniquely generated identifier key by LoginRadius that is activated after successful authentication. multi_factor_auth_model_by_google_authenticator_code: Model Class containing Definition of payload for MultiFactorAuthModel By GoogleAuthenticator Code API fields: The fields parameter filters the API response so that the response only includes a specific set of fields sms_template: SMS Template name Returns: Response containing Definition for Complete profile data 5.10 """ if self._lr_object.is_null_or_whitespace(access_token): raise exception(self._lr_object.get_validation_message('access_token')) if multi_factor_auth_model_by_google_authenticator_code is None: raise exception(self._lr_object.get_validation_message('multi_factor_auth_model_by_google_authenticator_code')) query_parameters = {} query_parameters['access_token'] = access_token query_parameters['apiKey'] = self._lr_object.get_api_key() if not self._lr_object.is_null_or_whitespace(fields): query_parameters['fields'] = fields if not self._lr_object.is_null_or_whitespace(sms_template): query_parameters['smsTemplate'] = sms_template resource_path = 'identity/v2/auth/account/2fa/verification/googleauthenticatorcode' return self._lr_object.execute('PUT', resource_path, query_parameters, multi_factor_auth_model_by_google_authenticator_code) def mfa_update_phone_number_by_token(self, access_token, phone_no2_f_a, sms_template2_f_a=None): """This API is used to update the Multi-factor authentication phone number by sending the verification OTP to the provided phone number Args: access_token: Uniquely generated identifier key by LoginRadius that is activated after successful authentication. phone_no2_f_a: Phone Number For 2FA sms_template2_f_a: SMS Template Name Returns: Response containing Definition for Complete SMS data 5.11 """ if self._lr_object.is_null_or_whitespace(access_token): raise exception(self._lr_object.get_validation_message('access_token')) if self._lr_object.is_null_or_whitespace(phone_no2_f_a): raise exception(self._lr_object.get_validation_message('phone_no2_f_a')) query_parameters = {} query_parameters['access_token'] = access_token query_parameters['apiKey'] = self._lr_object.get_api_key() if not self._lr_object.is_null_or_whitespace(sms_template2_f_a): query_parameters['smsTemplate2FA'] = sms_template2_f_a body_parameters = {} body_parameters['phoneNo2FA'] = phone_no2_f_a resource_path = 'identity/v2/auth/account/2fa' return self._lr_object.execute('PUT', resource_path, query_parameters, body_parameters) def mfa_reset_google_auth_by_token(self, access_token, googleauthenticator): """This API Resets the Google Authenticator configurations on a given account via the access_token Args: access_token: Uniquely generated identifier key by LoginRadius that is activated after successful authentication. googleauthenticator: boolean type value,Enable google Authenticator Code. Returns: Response containing Definition of Delete Request 5.12.1 """ if self._lr_object.is_null_or_whitespace(access_token): raise exception(self._lr_object.get_validation_message('access_token')) query_parameters = {} query_parameters['access_token'] = access_token query_parameters['apiKey'] = self._lr_object.get_api_key() body_parameters = {} body_parameters['googleauthenticator'] = googleauthenticator resource_path = 'identity/v2/auth/account/2fa/authenticator' return self._lr_object.execute('DELETE', resource_path, query_parameters, body_parameters) def mfa_reset_sms_auth_by_token(self, access_token, otpauthenticator): """This API resets the SMS Authenticator configurations on a given account via the access_token. Args: access_token: Uniquely generated identifier key by LoginRadius that is activated after successful authentication. otpauthenticator: Pass 'otpauthenticator' to remove SMS Authenticator Returns: Response containing Definition of Delete Request 5.12.2 """ if self._lr_object.is_null_or_whitespace(access_token): raise exception(self._lr_object.get_validation_message('access_token')) query_parameters = {} query_parameters['access_token'] = access_token query_parameters['apiKey'] = self._lr_object.get_api_key() body_parameters = {} body_parameters['otpauthenticator'] = otpauthenticator resource_path = 'identity/v2/auth/account/2fa/authenticator' return self._lr_object.execute('DELETE', resource_path, query_parameters, body_parameters) def mfa_backup_code_by_access_token(self, access_token): """This API is used to get a set of backup codes via access_token to allow the user login on a site that has Multi-factor Authentication enabled in the event that the user does not have a secondary factor available. We generate 10 codes, each code can only be consumed once. If any user attempts to go over the number of invalid login attempts configured in the Dashboard then the account gets blocked automatically Args: access_token: Uniquely generated identifier key by LoginRadius that is activated after successful authentication. Returns: Response containing Definition of Complete Backup Code data 5.13 """ if self._lr_object.is_null_or_whitespace(access_token): raise exception(self._lr_object.get_validation_message('access_token')) query_parameters = {} query_parameters['access_token'] = access_token query_parameters['apiKey'] = self._lr_object.get_api_key() resource_path = 'identity/v2/auth/account/2fa/backupcode' return self._lr_object.execute('GET', resource_path, query_parameters, None) def mfa_reset_backup_code_by_access_token(self, access_token): """API is used to reset the backup codes on a given account via the access_token. This API call will generate 10 new codes, each code can only be consumed once Args: access_token: Uniquely generated identifier key by LoginRadius that is activated after successful authentication. Returns: Response containing Definition of Complete Backup Code data 5.14 """ if self._lr_object.is_null_or_whitespace(access_token): raise exception(self._lr_object.get_validation_message('access_token')) query_parameters = {} query_parameters['access_token'] = access_token query_parameters['apiKey'] = self._lr_object.get_api_key() resource_path = 'identity/v2/auth/account/2fa/backupcode/reset' return self._lr_object.execute('GET', resource_path, query_parameters, None) def mfa_login_by_email(self, email, password, email_template=None, fields='', login_url=None, sms_template=None, sms_template2_f_a=None, verification_url=None): """This API can be used to login by emailid on a Multi-factor authentication enabled LoginRadius site. Args: email: user's email password: Password for the email email_template: Email template name fields: The fields parameter filters the API response so that the response only includes a specific set of fields login_url: Url where the user is logging from sms_template: SMS Template name sms_template2_f_a: SMS Template Name verification_url: Email verification url Returns: Complete user UserProfile data 9.8.1 """ if self._lr_object.is_null_or_whitespace(email): raise exception(self._lr_object.get_validation_message('email')) if self._lr_object.is_null_or_whitespace(password): raise exception(self._lr_object.get_validation_message('password')) query_parameters = {} query_parameters['apiKey'] = self._lr_object.get_api_key() if not self._lr_object.is_null_or_whitespace(email_template): query_parameters['emailTemplate'] = email_template if not self._lr_object.is_null_or_whitespace(fields): query_parameters['fields'] = fields if not self._lr_object.is_null_or_whitespace(login_url): query_parameters['loginUrl'] = login_url if not self._lr_object.is_null_or_whitespace(sms_template): query_parameters['smsTemplate'] = sms_template if not self._lr_object.is_null_or_whitespace(sms_template2_f_a): query_parameters['smsTemplate2FA'] = sms_template2_f_a if not self._lr_object.is_null_or_whitespace(verification_url): query_parameters['verificationUrl'] = verification_url body_parameters = {} body_parameters['email'] = email body_parameters['password'] = password resource_path = 'identity/v2/auth/login/2fa' return self._lr_object.execute('POST', resource_path, query_parameters, body_parameters) def mfa_login_by_user_name(self, password, username, email_template=None, fields='', login_url=None, sms_template=None, sms_template2_f_a=None, verification_url=None): """This API can be used to login by username on a Multi-factor authentication enabled LoginRadius site. Args: password: Password for the email username: Username of the user email_template: Email template name fields: The fields parameter filters the API response so that the response only includes a specific set of fields login_url: Url where the user is logging from sms_template: SMS Template name sms_template2_f_a: SMS Template Name verification_url: Email verification url Returns: Complete user UserProfile data 9.8.2 """ if self._lr_object.is_null_or_whitespace(password): raise exception(self._lr_object.get_validation_message('password')) if self._lr_object.is_null_or_whitespace(username): raise exception(self._lr_object.get_validation_message('username')) query_parameters = {} query_parameters['apiKey'] = self._lr_object.get_api_key() if not self._lr_object.is_null_or_whitespace(email_template): query_parameters['emailTemplate'] = email_template if not self._lr_object.is_null_or_whitespace(fields): query_parameters['fields'] = fields if not self._lr_object.is_null_or_whitespace(login_url): query_parameters['loginUrl'] = login_url if not self._lr_object.is_null_or_whitespace(sms_template): query_parameters['smsTemplate'] = sms_template if not self._lr_object.is_null_or_whitespace(sms_template2_f_a): query_parameters['smsTemplate2FA'] = sms_template2_f_a if not self._lr_object.is_null_or_whitespace(verification_url): query_parameters['verificationUrl'] = verification_url body_parameters = {} body_parameters['password'] = password body_parameters['username'] = username resource_path = 'identity/v2/auth/login/2fa' return self._lr_object.execute('POST', resource_path, query_parameters, body_parameters) def mfa_login_by_phone(self, password, phone, email_template=None, fields='', login_url=None, sms_template=None, sms_template2_f_a=None, verification_url=None): """This API can be used to login by Phone on a Multi-factor authentication enabled LoginRadius site. Args: password: Password for the email phone: New Phone Number email_template: Email template name fields: The fields parameter filters the API response so that the response only includes a specific set of fields login_url: Url where the user is logging from sms_template: SMS Template name sms_template2_f_a: SMS Template Name verification_url: Email verification url Returns: Complete user UserProfile data 9.8.3 """ if self._lr_object.is_null_or_whitespace(password): raise exception(self._lr_object.get_validation_message('password')) if self._lr_object.is_null_or_whitespace(phone): raise exception(self._lr_object.get_validation_message('phone')) query_parameters = {} query_parameters['apiKey'] = self._lr_object.get_api_key() if not self._lr_object.is_null_or_whitespace(email_template): query_parameters['emailTemplate'] = email_template if not self._lr_object.is_null_or_whitespace(fields): query_parameters['fields'] = fields if not self._lr_object.is_null_or_whitespace(login_url): query_parameters['loginUrl'] = login_url if not self._lr_object.is_null_or_whitespace(sms_template): query_parameters['smsTemplate'] = sms_template if not self._lr_object.is_null_or_whitespace(sms_template2_f_a): query_parameters['smsTemplate2FA'] = sms_template2_f_a if not self._lr_object.is_null_or_whitespace(verification_url): query_parameters['verificationUrl'] = verification_url body_parameters = {} body_parameters['password'] = password body_parameters['phone'] = phone resource_path = 'identity/v2/auth/login/2fa' return self._lr_object.execute('POST', resource_path, query_parameters, body_parameters) def mfa_validate_otp_by_phone(self, multi_factor_auth_model_with_lockout, second_factor_authentication_token, fields='', sms_template2_f_a=None): """This API is used to login via Multi-factor authentication by passing the One Time Password received via SMS Args: multi_factor_auth_model_with_lockout: Model Class containing Definition of payload for MultiFactorAuthModel With Lockout API second_factor_authentication_token: A Uniquely generated MFA identifier token after successful authentication fields: The fields parameter filters the API response so that the response only includes a specific set of fields sms_template2_f_a: SMS Template Name Returns: Complete user UserProfile data 9.12 """ if multi_factor_auth_model_with_lockout is None: raise exception(self._lr_object.get_validation_message('multi_factor_auth_model_with_lockout')) if self._lr_object.is_null_or_whitespace(second_factor_authentication_token): raise exception(self._lr_object.get_validation_message('second_factor_authentication_token')) query_parameters = {} query_parameters['apiKey'] = self._lr_object.get_api_key() query_parameters['secondFactorAuthenticationToken'] = second_factor_authentication_token if not self._lr_object.is_null_or_whitespace(fields): query_parameters['fields'] = fields if not self._lr_object.is_null_or_whitespace(sms_template2_f_a): query_parameters['smsTemplate2FA'] = sms_template2_f_a resource_path = 'identity/v2/auth/login/2fa/verification/otp' return self._lr_object.execute('PUT', resource_path, query_parameters, multi_factor_auth_model_with_lockout) def mfa_validate_google_auth_code(self, google_authenticator_code, second_factor_authentication_token, fields='', sms_template2_f_a=None): """This API is used to login via Multi-factor-authentication by passing the google authenticator code. Args: google_authenticator_code: The code generated by google authenticator app after scanning QR code second_factor_authentication_token: A Uniquely generated MFA identifier token after successful authentication fields: The fields parameter filters the API response so that the response only includes a specific set of fields sms_template2_f_a: SMS Template Name Returns: Complete user UserProfile data 9.13 """ if self._lr_object.is_null_or_whitespace(google_authenticator_code): raise exception(self._lr_object.get_validation_message('google_authenticator_code')) if self._lr_object.is_null_or_whitespace(second_factor_authentication_token): raise exception(self._lr_object.get_validation_message('second_factor_authentication_token')) query_parameters = {} query_parameters['apiKey'] = self._lr_object.get_api_key() query_parameters['secondFactorAuthenticationToken'] = second_factor_authentication_token if not self._lr_object.is_null_or_whitespace(fields): query_parameters['fields'] = fields if not self._lr_object.is_null_or_whitespace(sms_template2_f_a): query_parameters['smsTemplate2FA'] = sms_template2_f_a body_parameters = {} body_parameters['googleAuthenticatorCode'] = google_authenticator_code resource_path = 'identity/v2/auth/login/2fa/verification/googleauthenticatorcode' return self._lr_object.execute('PUT', resource_path, query_parameters, body_parameters) def mfa_validate_backup_code(self, multi_factor_auth_model_by_backup_code, second_factor_authentication_token, fields=''): """This API is used to validate the backup code provided by the user and if valid, we return an access_token allowing the user to login incases where Multi-factor authentication (MFA) is enabled and the secondary factor is unavailable. When a user initially downloads the Backup codes, We generate 10 codes, each code can only be consumed once. if any user attempts to go over the number of invalid login attempts configured in the Dashboard then the account gets blocked automatically Args: multi_factor_auth_model_by_backup_code: Model Class containing Definition of payload for MultiFactorAuth By BackupCode API second_factor_authentication_token: A Uniquely generated MFA identifier token after successful authentication fields: The fields parameter filters the API response so that the response only includes a specific set of fields Returns: Complete user UserProfile data 9.14 """ if multi_factor_auth_model_by_backup_code is None: raise exception(self._lr_object.get_validation_message('multi_factor_auth_model_by_backup_code')) if self._lr_object.is_null_or_whitespace(second_factor_authentication_token): raise exception(self._lr_object.get_validation_message('second_factor_authentication_token')) query_parameters = {} query_parameters['apiKey'] = self._lr_object.get_api_key() query_parameters['secondFactorAuthenticationToken'] = second_factor_authentication_token if not self._lr_object.is_null_or_whitespace(fields): query_parameters['fields'] = fields resource_path = 'identity/v2/auth/login/2fa/verification/backupcode' return self._lr_object.execute('PUT', resource_path, query_parameters, multi_factor_auth_model_by_backup_code) def mfa_update_phone_number(self, phone_no2_f_a, second_factor_authentication_token, sms_template2_f_a=None): """This API is used to update (if configured) the phone number used for Multi-factor authentication by sending the verification OTP to the provided phone number Args: phone_no2_f_a: Phone Number For 2FA second_factor_authentication_token: A Uniquely generated MFA identifier token after successful authentication sms_template2_f_a: SMS Template Name Returns: Response containing Definition for Complete SMS data 9.16 """ if self._lr_object.is_null_or_whitespace(phone_no2_f_a): raise exception(self._lr_object.get_validation_message('phone_no2_f_a')) if self._lr_object.is_null_or_whitespace(second_factor_authentication_token): raise exception(self._lr_object.get_validation_message('second_factor_authentication_token')) query_parameters = {} query_parameters['apiKey'] = self._lr_object.get_api_key() query_parameters['secondFactorAuthenticationToken'] = second_factor_authentication_token if not self._lr_object.is_null_or_whitespace(sms_template2_f_a): query_parameters['smsTemplate2FA'] = sms_template2_f_a body_parameters = {} body_parameters['phoneNo2FA'] = phone_no2_f_a resource_path = 'identity/v2/auth/login/2fa' return self._lr_object.execute('PUT', resource_path, query_parameters, body_parameters) def mfa_resend_otp(self, second_factor_authentication_token, sms_template2_f_a=None): """This API is used to resending the verification OTP to the provided phone number Args: second_factor_authentication_token: A Uniquely generated MFA identifier token after successful authentication sms_template2_f_a: SMS Template Name Returns: Response containing Definition for Complete SMS data 9.17 """ if self._lr_object.is_null_or_whitespace(second_factor_authentication_token): raise exception(self._lr_object.get_validation_message('second_factor_authentication_token')) query_parameters = {} query_parameters['apiKey'] = self._lr_object.get_api_key() query_parameters['secondFactorAuthenticationToken'] = second_factor_authentication_token if not self._lr_object.is_null_or_whitespace(sms_template2_f_a): query_parameters['smsTemplate2FA'] = sms_template2_f_a resource_path = 'identity/v2/auth/login/2fa/resend' return self._lr_object.execute('GET', resource_path, query_parameters, None) def mfa_reset_sms_authenticator_by_uid(self, otpauthenticator, uid): """This API resets the SMS Authenticator configurations on a given account via the UID. Args: otpauthenticator: Pass 'otpauthenticator' to remove SMS Authenticator uid: UID, the unified identifier for each user account Returns: Response containing Definition of Delete Request 18.21.1 """ if self._lr_object.is_null_or_whitespace(uid): raise exception(self._lr_object.get_validation_message('uid')) query_parameters = {} query_parameters['apiKey'] = self._lr_object.get_api_key() query_parameters['apiSecret'] = self._lr_object.get_api_secret() query_parameters['uid'] = uid body_parameters = {} body_parameters['otpauthenticator'] = otpauthenticator resource_path = 'identity/v2/manage/account/2fa/authenticator' return self._lr_object.execute('DELETE', resource_path, query_parameters, body_parameters) def mfa_reset_google_authenticator_by_uid(self, googleauthenticator, uid): """This API resets the Google Authenticator configurations on a given account via the UID. Args: googleauthenticator: boolean type value,Enable google Authenticator Code. uid: UID, the unified identifier for each user account Returns: Response containing Definition of Delete Request 18.21.2 """ if self._lr_object.is_null_or_whitespace(uid): raise exception(self._lr_object.get_validation_message('uid')) query_parameters = {} query_parameters['apiKey'] = self._lr_object.get_api_key() query_parameters['apiSecret'] = self._lr_object.get_api_secret() query_parameters['uid'] = uid body_parameters = {} body_parameters['googleauthenticator'] = googleauthenticator resource_path = 'identity/v2/manage/account/2fa/authenticator' return self._lr_object.execute('DELETE', resource_path, query_parameters, body_parameters) def mfa_backup_code_by_uid(self, uid): """This API is used to reset the backup codes on a given account via the UID. This API call will generate 10 new codes, each code can only be consumed once. Args: uid: UID, the unified identifier for each user account Returns: Response containing Definition of Complete Backup Code data 18.25 """ if self._lr_object.is_null_or_whitespace(uid): raise exception(self._lr_object.get_validation_message('uid')) query_parameters = {} query_parameters['apiKey'] = self._lr_object.get_api_key() query_parameters['apiSecret'] = self._lr_object.get_api_secret() query_parameters['uid'] = uid resource_path = 'identity/v2/manage/account/2fa/backupcode' return self._lr_object.execute('GET', resource_path, query_parameters, None) def mfa_reset_backup_code_by_uid(self, uid): """This API is used to reset the backup codes on a given account via the UID. This API call will generate 10 new codes, each code can only be consumed once. Args: uid: UID, the unified identifier for each user account Returns: Response containing Definition of Complete Backup Code data 18.26 """ if self._lr_object.is_null_or_whitespace(uid): raise exception(self._lr_object.get_validation_message('uid')) query_parameters = {} query_parameters['apiKey'] = self._lr_object.get_api_key() query_parameters['apiSecret'] = self._lr_object.get_api_secret() query_parameters['uid'] = uid resource_path = 'identity/v2/manage/account/2fa/backupcode/reset' return self._lr_object.execute('GET', resource_path, query_parameters, None)
"""Not sure why memory limit exceeded, but this solution works""" class Solution(object): def wordBreak(self, s, wordDict): """ :type s: str :type wordDict: List[str] :rtype: List[str] """ def postProcess(combos, s): if combos is None: return list() else: ans = list() for c in combos: words = list() start = 0 for end in c: words.append(s[start:end]) start = end ans.append(' '.join(words)) return ans dp = [None] * (len(s)+1) dp[0] = [[]] for i in xrange(1, len(dp)): combosFori = list() for j in xrange(i): if dp[j] is not None and s[j:i] in wordDict: for combo in dp[j]: combosFori.append(combo + [i]) if len(combosFori) > 0: dp[i] = combosFori return postProcess(dp[len(s)], s)
"""Not sure why memory limit exceeded, but this solution works""" class Solution(object): def word_break(self, s, wordDict): """ :type s: str :type wordDict: List[str] :rtype: List[str] """ def post_process(combos, s): if combos is None: return list() else: ans = list() for c in combos: words = list() start = 0 for end in c: words.append(s[start:end]) start = end ans.append(' '.join(words)) return ans dp = [None] * (len(s) + 1) dp[0] = [[]] for i in xrange(1, len(dp)): combos_fori = list() for j in xrange(i): if dp[j] is not None and s[j:i] in wordDict: for combo in dp[j]: combosFori.append(combo + [i]) if len(combosFori) > 0: dp[i] = combosFori return post_process(dp[len(s)], s)
class IAMPolicies(): def __init__(self, iam): self.client = iam def _marker_handler(self, marker=None, scope='All'): if marker: response = self.client.list_policies( Scope=scope, OnlyAttached=True, PolicyUsageFilter='PermissionsPolicy', Marker=marker) else: response = self.client.list_policies( Scope=scope, OnlyAttached=True, PolicyUsageFilter='PermissionsPolicy' ) return response def get_policy_document(self, arn, version_id): response = self.client.get_policy_version(PolicyArn=arn, VersionId=version_id) document = response['PolicyVersion']['Document'] return document def get_policies(self): policies = [] marker = None for scope in ['AWS', 'Local']: while True: resp = self._marker_handler(marker, scope) for policy in resp['Policies']: policy['Scope'] = scope policies.append(policy) marker = resp.get('Marker') if not resp['IsTruncated']: break return policies
class Iampolicies: def __init__(self, iam): self.client = iam def _marker_handler(self, marker=None, scope='All'): if marker: response = self.client.list_policies(Scope=scope, OnlyAttached=True, PolicyUsageFilter='PermissionsPolicy', Marker=marker) else: response = self.client.list_policies(Scope=scope, OnlyAttached=True, PolicyUsageFilter='PermissionsPolicy') return response def get_policy_document(self, arn, version_id): response = self.client.get_policy_version(PolicyArn=arn, VersionId=version_id) document = response['PolicyVersion']['Document'] return document def get_policies(self): policies = [] marker = None for scope in ['AWS', 'Local']: while True: resp = self._marker_handler(marker, scope) for policy in resp['Policies']: policy['Scope'] = scope policies.append(policy) marker = resp.get('Marker') if not resp['IsTruncated']: break return policies
runtime_project='core' editor_project='core-Editor' runtime_project_file='Assembly-CSharp' editor_project_file='Assembly-CSharp-Editor' define='ANDROID' MONO="/Applications/Unity/MonoDevelop.app/Contents/Frameworks/Mono.framework/Versions/Current/bin/mono" MDTOOL="/Applications/Unity/MonoDevelop.app/Contents/MacOS/lib/monodevelop/bin/mdtool.exe" MONO_SOLUTION="Core.sln"
runtime_project = 'core' editor_project = 'core-Editor' runtime_project_file = 'Assembly-CSharp' editor_project_file = 'Assembly-CSharp-Editor' define = 'ANDROID' mono = '/Applications/Unity/MonoDevelop.app/Contents/Frameworks/Mono.framework/Versions/Current/bin/mono' mdtool = '/Applications/Unity/MonoDevelop.app/Contents/MacOS/lib/monodevelop/bin/mdtool.exe' mono_solution = 'Core.sln'
L = 0 heatmap = [] while True: try: line = [int(x) for x in input()] # Pad heatmap with 9s heat = [9] + line + [9] L = len(heat) heatmap.extend(heat) except EOFError: break index = 0 # Pad 9s in top and bottom heatmap = heatmap + (L*[9]) bigmap = (L*[9]) + heatmap + (L*[9]) # Part 1 total = [] for index, value in enumerate(heatmap, start = 0): if bigmap[index] == 9: continue me = bigmap[index] left = bigmap[index - 1] right = bigmap[index + 1] top = bigmap[index - L] bottom = bigmap[index + L] if me == left or me == right or me == top or me == bottom: continue lowest = min(me, left, right, top, bottom) if me == lowest: total.append(lowest + 1) print("SUM", sum(total)) # Part 2 # Get list of the indexes of lowest points # # From each lowest point go: # UP then as far left and right as possiple (repeat with UP steps) # Down then as far left and right as possiple (repeat with DOWN steps)
l = 0 heatmap = [] while True: try: line = [int(x) for x in input()] heat = [9] + line + [9] l = len(heat) heatmap.extend(heat) except EOFError: break index = 0 heatmap = heatmap + L * [9] bigmap = L * [9] + heatmap + L * [9] total = [] for (index, value) in enumerate(heatmap, start=0): if bigmap[index] == 9: continue me = bigmap[index] left = bigmap[index - 1] right = bigmap[index + 1] top = bigmap[index - L] bottom = bigmap[index + L] if me == left or me == right or me == top or (me == bottom): continue lowest = min(me, left, right, top, bottom) if me == lowest: total.append(lowest + 1) print('SUM', sum(total))
# Copyright 2019 the rules_bison authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # # SPDX-License-Identifier: Apache-2.0 load( "@rules_bison//bison/internal:versions.bzl", _VERSION_URLS = "VERSION_URLS", ) _GNULIB_VERSION = "788db09a9f88abbef73c97e8d7291c40455336d8" _GNULIB_SHA256 = "4350696d531852118f3735a0e2d1091746388392c27d582f0cc241b6a39fe493" _URL_BASE = "github.com/jmillikin/rules_bison/releases/download/v0.1/bison-gnulib-{}.tar.xz".format(_GNULIB_VERSION) _GNULIB_URLS = [ "https://mirror.bazel.build/" + _URL_BASE, "https://" + _URL_BASE, ] _CONFIG_HEADER = """ #include "gnulib/lib/config.in.h" #include "gnulib/lib/arg-nonnull.h" #define PACKAGE "bison" #define PACKAGE_BUGREPORT "bug-bison@gnu.org" #define PACKAGE_COPYRIGHT_YEAR {BISON_COPYRIGHT_YEAR} #define PACKAGE_NAME "GNU Bison" #define PACKAGE_STRING "GNU Bison {BISON_VERSION}" #define PACKAGE_URL "http://www.gnu.org/software/bison/" #define PACKAGE_VERSION "{BISON_VERSION}" #define VERSION "{BISON_VERSION}" #define M4 "m4" #define M4_GNU_OPTION "--gnu" """ _CONFIG_FOOTER = """ #include <stdint.h> #include <stdio.h> #include <wchar.h> struct obstack; int obstack_printf(struct obstack *obs, const char *format, ...); int obstack_vprintf(struct obstack *obs, const char *format, va_list args); int strverscmp(const char *s1, const char *s2); int wcwidth(wchar_t wc); """ _CONFIGMAKE_H = """ #define LOCALEDIR "" #define PKGDATADIR "{WORKSPACE_ROOT}/data" """ def gnulib_overlay(ctx, bison_version): ctx.download_and_extract( url = _GNULIB_URLS, sha256 = _GNULIB_SHA256, output = "gnulib", stripPrefix = "gnulib-" + _GNULIB_VERSION, ) ctx.symlink(ctx.attr._gnulib_build, "gnulib/BUILD.bazel") config_header = _CONFIG_HEADER.format( BISON_VERSION = bison_version, BISON_COPYRIGHT_YEAR = _VERSION_URLS[bison_version]["copyright_year"], ) for (os, template) in [ ("darwin", ctx.attr._gnulib_config_darwin_h), ("linux", ctx.attr._gnulib_config_linux_h), ("windows", ctx.attr._gnulib_config_windows_h), ]: config_prefix = "gnulib/config-{}/".format(os) ctx.template(config_prefix + "config.h", template, substitutions = { "{GNULIB_CONFIG_HEADER}": config_header, "{GNULIB_CONFIG_FOOTER}": _CONFIG_FOOTER, }, executable = False) ctx.file(config_prefix + "configmake.h", _CONFIGMAKE_H.format( WORKSPACE_ROOT = "external/" + ctx.attr.name, )) for shim in _WINDOWS_STDLIB_SHIMS: in_h = "gnulib/lib/{}.in.h".format(shim.replace("/", "_")) out_h = "gnulib/config-windows/shim-libc/gnulib/{}.h".format(shim) ctx.template(out_h, in_h, substitutions = _WINDOWS_AC_SUBST, executable = False) # Older versions of Gnulib had a different layout for 'bitset' ctx.file("gnulib/lib/bitset_stats.h", '#include "gnulib/lib/bitset/stats.h"') ctx.file("gnulib/lib/bitsetv-print.h", '#include "gnulib/lib/bitsetv.h"') # Fix a mismatch between _Noreturn and __attribute_noreturn__ when # building with a C11-aware GCC. ctx.template("gnulib/lib/obstack.c", "gnulib/lib/obstack.c", substitutions = { "static _Noreturn void": "static _Noreturn __attribute_noreturn__ void", }, executable = False) # Ambiguous include path of timevar.def confuses Bazel's C++ header dependency # checker. Work around this by using non-ambiguous paths. ctx.template("gnulib/lib/timevar.c", "gnulib/lib/timevar.c", substitutions = { '"timevar.def"': '"lib/timevar.def"', }, executable = False) ctx.template("gnulib/lib/timevar.h", "gnulib/lib/timevar.h", substitutions = { '"timevar.def"': '"lib/timevar.def"', }, executable = False) # Force isnanl() to be defined in terms of standard isnan() macro, # instead of compiler-specific __builtin_isnan(). ctx.file("gnulib/lib/isnanl-nolibm.h", "\n".join([ "#include <math.h>", "#define isnanl isnan", ])) # Gnulib tries to detect the maximum file descriptor count by passing # an invalid value to an OS API and seeing what happens. Well, what happens # in debug mode is the binary is aborted. # # Per https://docs.microsoft.com/en-us/cpp/c-runtime-library/reference/setmaxstdio # the maximum limit of this value is 2048. Lets hope that's good enough. ctx.template("gnulib/lib/getdtablesize.c", "gnulib/lib/getdtablesize.c", substitutions = { "for (bound = 0x10000;": "for (bound = 2048;", }, executable = False) # Gnulib uses spawnvpe() to emulate fork/exec on Windows, but something # about its other environment variable shims conflicts with spawnvpe's # internal environment concatenation. Spawning M4 from Bison in a # release build consistently crashes the process. # # Bison doesn't attempt to manipulate the environment variables of its # child processes, so we can avoid the issue by disabling environment # manipulation in Gnulib's shim. ctx.template("gnulib/lib/spawn-pipe.c", "gnulib/lib/spawn-pipe.c", substitutions = { "(const char **) environ": "NULL", }, executable = False) _WINDOWS_STDLIB_SHIMS = [ "alloca", "errno", "fcntl", "getopt", "getopt-cdefs", "signal", "stdio", "string", "sys/resource", "sys/stat", "sys/time", "sys/times", "sys/types", "sys/wait", "unistd", "unitypes", "uniwidth", "wchar", "wctype", ] _WINDOWS_AC_SUBST = { "@PRAGMA_SYSTEM_HEADER@": "", "@PRAGMA_COLUMNS@": "", "@INCLUDE_NEXT@": "include", "@GUARD_PREFIX@": "GL_BISON", "@ASM_SYMBOL_PREFIX@": '""', "/* The definitions of _GL_FUNCDECL_RPL etc. are copied here. */": '#include "gnulib/lib/c++defs.h"', "/* The definition of _GL_ARG_NONNULL is copied here. */": '#include "gnulib/lib/arg-nonnull.h"', "/* The definition of _GL_WARN_ON_USE is copied here. */": '#include "gnulib/lib/warn-on-use.h"', # alloca.h # errno.h "@NEXT_ERRNO_H@": "<gnulib-system-libc/errno.h>", "@EMULTIHOP_HIDDEN@": "0", "@EMULTIHOP_VALUE@": "EMULTIHOP", "@ENOLINK_HIDDEN@": "0", "@ENOLINK_VALUE@": "ENOLINK", "@EOVERFLOW_HIDDEN@": "0", "@EOVERFLOW_VALUE@": "EOVERFLOW", # fcntl.h "@NEXT_FCNTL_H@": "<gnulib-system-libc/fcntl.h>", "@GNULIB_FCNTL@": "1", "@REPLACE_FCNTL@": "0", "@HAVE_FCNTL@": "0", "@GNULIB_OPEN@": "1", "@REPLACE_OPEN@": "0", "@GNULIB_OPENAT@": "0", "@REPLACE_OPENAT@": "0", "@HAVE_OPENAT@": "1", "@GNULIB_NONBLOCKING@": "0", # getopt.h "@HAVE_GETOPT_H@": "0", "@NEXT_GETOPT_H@": "<gnulib-system-libc/getopt.h>", # getopt-cdefs.h "@HAVE_SYS_CDEFS_H@": "0", # signal.h "@NEXT_SIGNAL_H@": "<gnulib-system-libc/signal.h>", "@GNULIB_PTHREAD_SIGMASK@": "0", "@HAVE_TYPE_VOLATILE_SIG_ATOMIC_T@": "1", "@HAVE_SIGSET_T@": "0", "@HAVE_SIGHANDLER_T@": "0", "@GNULIB_SIGNAL_H_SIGPIPE@": "1", "@REPLACE_PTHREAD_SIGMASK@": "0", "@HAVE_PTHREAD_SIGMASK@": "1", "@GNULIB_RAISE@": "1", "@REPLACE_RAISE@": "1", "@HAVE_RAISE@": "1", "@GNULIB_SIGPROCMASK@": "1", "@HAVE_POSIX_SIGNALBLOCKING@": "0", "@GNULIB_SIGACTION@": "1", "@HAVE_SIGACTION@": "0", "@HAVE_SIGINFO_T@": "0", "@HAVE_STRUCT_SIGACTION_SA_SIGACTION@": "1", # stdio.h "@NEXT_STDIO_H@": "<gnulib-system-libc/stdio.h>", "@GNULIB_RENAMEAT@": "0", "@GNULIB_PERROR@": "0", "@GNULIB_REMOVE@": "0", "@GNULIB_RENAME@": "0", "@GNULIB_DPRINTF@": "0", "@REPLACE_DPRINTF@": "0", "@HAVE_DPRINTF@": "1", "@GNULIB_FCLOSE@": "0", "@REPLACE_FCLOSE@": "0", "@GNULIB_FDOPEN@": "0", "@REPLACE_FDOPEN@": "1", "@GNULIB_FFLUSH@": "0", "@REPLACE_FFLUSH@": "0", "@GNULIB_FGETC@": "1", "@REPLACE_STDIO_READ_FUNCS@": "0", "@GNULIB_STDIO_H_NONBLOCKING@": "0", "@GNULIB_FGETS@": "1", "@GNULIB_FOPEN@": "1", "@REPLACE_FOPEN@": "0", "@GNULIB_FPRINTF_POSIX@": "0", "@GNULIB_FPRINTF@": "1", "@REPLACE_FPRINTF@": "0", "@REPLACE_STDIO_WRITE_FUNCS@": "0", "@GNULIB_STDIO_H_SIGPIPE@": "0", "@GNULIB_VFPRINTF_POSIX@": "0", "@GNULIB_FPURGE@": "1", "@REPLACE_FPURGE@": "0", "@HAVE_DECL_FPURGE@": "0", "@GNULIB_FPUTC@": "1", "@GNULIB_FREAD@": "1", "@GNULIB_FREOPEN@": "0", "@REPLACE_FREOPEN@": "0", "@GNULIB_FSCANF@": "1", "@GNULIB_FSEEK@": "0", "@REPLACE_FSEEK@": "0", "@GNULIB_FSEEKO@": "0", "@REPLACE_FSEEKO@": "0", "@HAVE_DECL_FSEEKO@": "0", "@GNULIB_FTELL@": "0", "@REPLACE_FTELL@": "0", "@GNULIB_FTELLO@": "0", "@REPLACE_FTELLO@": "0", "@HAVE_DECL_FTELLO@": "0", "@GNULIB_FWRITE@": "0", "@GNULIB_GETC@": "1", "@GNULIB_GETCHAR@": "1", "@GNULIB_GETDELIM@": "0", "@REPLACE_GETDELIM@": "0", "@HAVE_DECL_GETDELIM@": "1", "@GNULIB_GETLINE@": "0", "@REPLACE_GETLINE@": "0", "@HAVE_DECL_GETLINE@": "1", "@GNULIB_OBSTACK_PRINTF@": "1", "@GNULIB_OBSTACK_PRINTF_POSIX@": "0", "@REPLACE_OBSTACK_PRINTF@": "0", "@HAVE_DECL_OBSTACK_PRINTF@": "0", "@GNULIB_PCLOSE@": "0", "@HAVE_PCLOSE@": "1", "@REPLACE_PERROR@": "0", "@GNULIB_POPEN@": "0", "@REPLACE_POPEN@": "0", "@HAVE_POPEN@": "1", "@GNULIB_PRINTF_POSIX@": "0", "@GNULIB_PRINTF@": "1", "@REPLACE_PRINTF@": "0", "@GNULIB_PUTC@": "1", "@GNULIB_PUTCHAR@": "1", "@GNULIB_PUTS@": "1", "@REPLACE_RENAME@": "0", "@REPLACE_RENAMEAT@": "0", "@HAVE_RENAMEAT@": "1", "@GNULIB_SCANF@": "1", "@GNULIB_SNPRINTF@": "1", "@REPLACE_SNPRINTF@": "1", "@HAVE_DECL_SNPRINTF@": "1", "@GNULIB_SPRINTF_POSIX@": "0", "@REPLACE_SPRINTF@": "0", "@GNULIB_TMPFILE@": "0", "@REPLACE_TMPFILE@": "0", "@GNULIB_VASPRINTF@": "1", "@REPLACE_VASPRINTF@": "0", "@HAVE_VASPRINTF@": "0", "@GNULIB_VDPRINTF@": "0", "@REPLACE_VDPRINTF@": "0", "@HAVE_VDPRINTF@": "1", "@GNULIB_VFSCANF@": "0", "@GNULIB_FPUTS@": "1", "@REPLACE_REMOVE@": "0", "@GNULIB_VFPRINTF@": "1", "@REPLACE_VFPRINTF@": "0", "@GNULIB_VPRINTF_POSIX@": "0", "@GNULIB_VSCANF@": "0", "@GNULIB_VSNPRINTF@": "0", "@REPLACE_VSNPRINTF@": "0", "@HAVE_DECL_VSNPRINTF@": "1", "@GNULIB_VSPRINTF_POSIX@": "0", "@REPLACE_VSPRINTF@": "0", "@GNULIB_VPRINTF@": "1", "@REPLACE_VPRINTF@": "0", # string.h "@NEXT_STRING_H@": "<gnulib-system-libc/string.h>", "@GNULIB_MBSLEN@": "0", "@GNULIB_STRSIGNAL@": "1", "@GNULIB_FFSL@": "0", "@HAVE_FFSL@": "1", "@GNULIB_FFSLL@": "0", "@HAVE_FFSLL@": "1", "@GNULIB_MEMCHR@": "1", "@REPLACE_MEMCHR@": "0", "@HAVE_MEMCHR@": "1", "@GNULIB_MEMMEM@": "0", "@REPLACE_MEMMEM@": "0", "@HAVE_DECL_MEMMEM@": "1", "@GNULIB_MEMPCPY@": "0", "@HAVE_MEMPCPY@": "1", "@GNULIB_MEMRCHR@": "0", "@HAVE_DECL_MEMRCHR@": "1", "@GNULIB_RAWMEMCHR@": "1", "@HAVE_RAWMEMCHR@": "0", "@GNULIB_STPCPY@": "1", "@HAVE_STPCPY@": "0", "@GNULIB_STPNCPY@": "0", "@REPLACE_STPNCPY@": "0", "@HAVE_STPNCPY@": "1", "@GNULIB_STRCHRNUL@": "1", "@REPLACE_STRCHRNUL@": "0", "@HAVE_STRCHRNUL@": "0", "@GNULIB_STRDUP@": "0", "@REPLACE_STRDUP@": "1", "@HAVE_DECL_STRDUP@": "1", "@GNULIB_STRNCAT@": "0", "@REPLACE_STRNCAT@": "0", "@GNULIB_STRNDUP@": "1", "@REPLACE_STRNDUP@": "0", "@HAVE_DECL_STRNDUP@": "0", "@GNULIB_STRNLEN@": "1", "@REPLACE_STRNLEN@": "0", "@HAVE_DECL_STRNLEN@": "1", "@GNULIB_STRPBRK@": "0", "@HAVE_STRPBRK@": "1", "@GNULIB_STRSEP@": "0", "@HAVE_STRSEP@": "1", "@GNULIB_STRSTR@": "1", "@REPLACE_STRSTR@": "1", "@GNULIB_STRCASESTR@": "0", "@REPLACE_STRCASESTR@": "0", "@HAVE_STRCASESTR@": "1", "@GNULIB_STRTOK_R@": "0", "@REPLACE_STRTOK_R@": "0", "@UNDEFINE_STRTOK_R@": "0", "@HAVE_DECL_STRTOK_R@": "1", "@HAVE_MBSLEN@": "0", "@GNULIB_MBSNLEN@": "0", "@GNULIB_MBSCHR@": "0", "@GNULIB_MBSRCHR@": "0", "@GNULIB_MBSSTR@": "0", "@GNULIB_MBSCASECMP@": "0", "@GNULIB_MBSNCASECMP@": "0", "@GNULIB_MBSPCASECMP@": "0", "@GNULIB_MBSCASESTR@": "0", "@GNULIB_MBSCSPN@": "0", "@GNULIB_MBSPBRK@": "0", "@GNULIB_MBSSPN@": "0", "@GNULIB_MBSSEP@": "0", "@GNULIB_MBSTOK_R@": "0", "@GNULIB_STRERROR@": "1", "@REPLACE_STRERROR@": "1", "@GNULIB_STRERROR_R@": "1", "@REPLACE_STRERROR_R@": "0", "@HAVE_DECL_STRERROR_R@": "0", "@REPLACE_STRSIGNAL@": "0", "@HAVE_DECL_STRSIGNAL@": "0", "@GNULIB_STRVERSCMP@": "1", "@HAVE_STRVERSCMP@": "0", "@GNULIB_EXPLICIT_BZERO@": "0", "@HAVE_EXPLICIT_BZERO@": "1", # sys/resource.h "@HAVE_SYS_RESOURCE_H@": "0", "@GNULIB_GETRUSAGE@": "1", "@HAVE_GETRUSAGE@": "0", # sys/stat.h "@NEXT_SYS_STAT_H@": "<gnulib-system-libc/sys/stat.h>", "@WINDOWS_64_BIT_ST_SIZE@": "1", "@GNULIB_FCHMODAT@": "0", "@HAVE_FCHMODAT@": "1", "@GNULIB_FSTAT@": "1", "@REPLACE_FSTAT@": "1", "@GNULIB_FSTATAT@": "0", "@REPLACE_FSTATAT@": "0", "@HAVE_FSTATAT@": "1", "@GNULIB_FUTIMENS@": "0", "@REPLACE_FUTIMENS@": "0", "@HAVE_FUTIMENS@": "1", "@GNULIB_LCHMOD@": "0", "@HAVE_LCHMOD@": "1", "@GNULIB_LSTAT@": "1", "@HAVE_LSTAT@": "0", "@REPLACE_LSTAT@": "0", "@REPLACE_MKDIR@": "0", "@GNULIB_MKDIRAT@": "0", "@HAVE_MKDIRAT@": "1", "@GNULIB_MKFIFO@": "0", "@REPLACE_MKFIFO@": "0", "@HAVE_MKFIFO@": "1", "@GNULIB_MKFIFOAT@": "0", "@HAVE_MKFIFOAT@": "1", "@GNULIB_MKNOD@": "0", "@REPLACE_MKNOD@": "0", "@HAVE_MKNOD@": "1", "@GNULIB_MKNODAT@": "0", "@HAVE_MKNODAT@": "1", "@GNULIB_STAT@": "1", "@REPLACE_STAT@": "0", "@GNULIB_UTIMENSAT@": "0", "@REPLACE_UTIMENSAT@": "0", "@HAVE_UTIMENSAT@": "1", "@GNULIB_OVERRIDES_STRUCT_STAT@": "0", "@WINDOWS_STAT_TIMESPEC@": "0", # sys/time.h "@NEXT_SYS_TIME_H@": "<gnulib-system-libc/sys/time.h>", "@HAVE_SYS_TIME_H@": "0", "@REPLACE_STRUCT_TIMEVAL@": "1", "@HAVE_WINSOCK2_H@": "1", "@HAVE_STRUCT_TIMEVAL@": "1", "@GNULIB_GETTIMEOFDAY@": "1", "@REPLACE_GETTIMEOFDAY@": "0", "@HAVE_GETTIMEOFDAY@": "0", # sys/times.h "@HAVE_SYS_TIMES_H@": "0", "@NEXT_SYS_TIMES_H@": "<gnulib-system-libc/sys/times.h>", "@HAVE_STRUCT_TMS@": "0", "@GNULIB_TIMES@": "0", "@HAVE_TIMES@": "1", # sys/types.h "@NEXT_SYS_TYPES_H@": "<gnulib-system-libc/sys/types.h>", "@WINDOWS_STAT_INODES@": "0", # sys/wait.h "@NEXT_SYS_WAIT_H@": "<gnulib-system-libc/sys/wait.h>", "@GNULIB_WAITPID@": "1", # unistd.h "@NEXT_UNISTD_H@": "<gnulib-system-libc/unistd.h>", "@HAVE_UNISTD_H@": "0", "@GNULIB_GETHOSTNAME@": "0", "@UNISTD_H_HAVE_WINSOCK2_H@": "1", "@GNULIB_UNLINK@": "0", "@GNULIB_SYMLINKAT@": "0", "@GNULIB_UNLINKAT@": "0", "@GNULIB_CHDIR@": "1", "@GNULIB_CLOSE@": "1", "@GNULIB_DUP@": "0", "@GNULIB_DUP2@": "1", "@GNULIB_ISATTY@": "0", "@GNULIB_LSEEK@": "1", "@GNULIB_READ@": "0", "@GNULIB_WRITE@": "0", "@GNULIB_GETDOMAINNAME@": "0", "@WINDOWS_64_BIT_OFF_T@": "1", "@GNULIB_READLINK@": "1", "@HAVE_READLINK@": "0", "@GNULIB_READLINKAT@": "0", "@GNULIB_PREAD@": "0", "@GNULIB_PWRITE@": "0", "@GNULIB_UNISTD_H_GETOPT@": "1", "@GNULIB_CHOWN@": "0", "@REPLACE_CHOWN@": "0", "@HAVE_CHOWN@": "1", "@REPLACE_CLOSE@": "1", "@UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS@": "0", "@REPLACE_DUP@": "1", "@REPLACE_DUP2@": "1", "@GNULIB_DUP3@": "0", "@HAVE_DUP3@": "1", "@GNULIB_ENVIRON@": "1", "@HAVE_DECL_ENVIRON@": "1", "@GNULIB_EUIDACCESS@": "0", "@HAVE_EUIDACCESS@": "1", "@GNULIB_FACCESSAT@": "0", "@HAVE_FACCESSAT@": "1", "@GNULIB_FCHDIR@": "0", "@HAVE_FCHDIR@": "1", "@HAVE_DECL_FCHDIR@": "1", "@GNULIB_FCHOWNAT@": "0", "@REPLACE_FCHOWNAT@": "0", "@HAVE_FCHOWNAT@": "1", "@GNULIB_FDATASYNC@": "0", "@HAVE_FDATASYNC@": "1", "@HAVE_DECL_FDATASYNC@": "1", "@GNULIB_FSYNC@": "0", "@HAVE_FSYNC@": "1", "@GNULIB_FTRUNCATE@": "0", "@HAVE_FTRUNCATE@": "1", "@GNULIB_GETCWD@": "0", "@REPLACE_GETCWD@": "1", "@REPLACE_GETDOMAINNAME@": "0", "@HAVE_DECL_GETDOMAINNAME@": "1", "@GNULIB_GETDTABLESIZE@": "1", "@REPLACE_GETDTABLESIZE@": "0", "@HAVE_GETDTABLESIZE@": "0", "@GNULIB_GETGROUPS@": "0", "@HAVE_GETGROUPS@": "1", "@HAVE_GETHOSTNAME@": "1", "@GNULIB_GETLOGIN@": "0", "@HAVE_DECL_GETLOGIN@": "1", "@GNULIB_GETLOGIN_R@": "0", "@REPLACE_GETLOGIN_R@": "0", "@HAVE_DECL_GETLOGIN_R@": "1", "@GNULIB_GETPAGESIZE@": "0", "@REPLACE_GETPAGESIZE@": "0", "@HAVE_GETPAGESIZE@": "0", "@HAVE_OS_H@": "0", "@HAVE_SYS_PARAM_H@": "0", "@HAVE_DECL_GETPAGESIZE@": "0", "@GNULIB_GETUSERSHELL@": "0", "@HAVE_DECL_GETUSERSHELL@": "1", "@GNULIB_GROUP_MEMBER@": "0", "@HAVE_GROUP_MEMBER@": "1", "@REPLACE_ISATTY@": "0", "@GNULIB_LCHOWN@": "0", "@REPLACE_LCHOWN@": "0", "@HAVE_LCHOWN@": "1", "@GNULIB_LINK@": "0", "@REPLACE_LINK@": "0", "@HAVE_LINK@": "0", "@GNULIB_LINKAT@": "0", "@REPLACE_LINKAT@": "0", "@HAVE_LINKAT@": "1", "@REPLACE_LSEEK@": "0", "@GNULIB_PIPE@": "0", "@HAVE_PIPE@": "1", "@GNULIB_PIPE2@": "1", "@HAVE_PIPE2@": "0", "@REPLACE_PREAD@": "0", "@HAVE_PREAD@": "1", "@REPLACE_PWRITE@": "0", "@HAVE_PWRITE@": "1", "@REPLACE_READ@": "0", "@REPLACE_READLINK@": "0", "@REPLACE_READLINKAT@": "0", "@HAVE_READLINKAT@": "1", "@GNULIB_RMDIR@": "1", "@REPLACE_RMDIR@": "1", "@GNULIB_SETHOSTNAME@": "0", "@HAVE_SETHOSTNAME@": "1", "@HAVE_DECL_SETHOSTNAME@": "1", "@GNULIB_SLEEP@": "0", "@REPLACE_SLEEP@": "0", "@HAVE_SLEEP@": "0", "@GNULIB_SYMLINK@": "0", "@REPLACE_SYMLINK@": "0", "@HAVE_SYMLINK@": "0", "@REPLACE_SYMLINKAT@": "0", "@HAVE_SYMLINKAT@": "1", "@GNULIB_TTYNAME_R@": "0", "@REPLACE_TTYNAME_R@": "0", "@HAVE_DECL_TTYNAME_R@": "1", "@REPLACE_UNLINK@": "0", "@REPLACE_UNLINKAT@": "0", "@HAVE_UNLINKAT@": "1", "@GNULIB_USLEEP@": "0", "@REPLACE_USLEEP@": "0", "@HAVE_USLEEP@": "1", "@REPLACE_WRITE@": "1", "@HAVE_DUP2@": "1", "@REPLACE_FACCESSAT@": "0", "@REPLACE_FTRUNCATE@": "0", "@REPLACE_GETGROUPS@": "0", "@GNULIB_GETPASS@": "0", "@REPLACE_GETPASS@": "0", "@HAVE_GETPASS@": "1", "@GNULIB_TRUNCATE@": "0", "@REPLACE_TRUNCATE@": "0", "@HAVE_DECL_TRUNCATE@": "1", # wchar.h "@HAVE_WCHAR_H@": "1", "@NEXT_WCHAR_H@": "<gnulib-system-libc/wchar.h>", "@HAVE_FEATURES_H@": "0", "@HAVE_WINT_T@": "1", "@GNULIB_OVERRIDES_WINT_T@": "1", "@HAVE_MBSINIT@": "0", "@HAVE_MBRTOWC@": "1", "@REPLACE_MBSTATE_T@": "1", "@GNULIB_BTOWC@": "1", "@REPLACE_BTOWC@": "0", "@HAVE_BTOWC@": "1", "@GNULIB_WCTOB@": "0", "@REPLACE_WCTOB@": "1", "@HAVE_DECL_WCTOB@": "1", "@GNULIB_MBSINIT@": "1", "@REPLACE_MBSINIT@": "1", "@GNULIB_MBRTOWC@": "1", "@REPLACE_MBRTOWC@": "1", "@GNULIB_MBRLEN@": "0", "@REPLACE_MBRLEN@": "0", "@HAVE_MBRLEN@": "1", "@GNULIB_MBSRTOWCS@": "0", "@REPLACE_MBSRTOWCS@": "0", "@HAVE_MBSRTOWCS@": "1", "@GNULIB_MBSNRTOWCS@": "0", "@REPLACE_MBSNRTOWCS@": "0", "@HAVE_MBSNRTOWCS@": "1", "@GNULIB_WCRTOMB@": "1", "@REPLACE_WCRTOMB@": "1", "@HAVE_WCRTOMB@": "1", "@GNULIB_WCSRTOMBS@": "0", "@REPLACE_WCSRTOMBS@": "0", "@HAVE_WCSRTOMBS@": "1", "@GNULIB_WCSNRTOMBS@": "0", "@REPLACE_WCSNRTOMBS@": "0", "@HAVE_WCSNRTOMBS@": "1", "@GNULIB_WCWIDTH@": "1", "@REPLACE_WCWIDTH@": "0", "@HAVE_DECL_WCWIDTH@": "0", "@GNULIB_WMEMCHR@": "0", "@HAVE_WMEMCHR@": "1", "@GNULIB_WMEMCMP@": "0", "@HAVE_WMEMCMP@": "1", "@GNULIB_WMEMCPY@": "0", "@HAVE_WMEMCPY@": "1", "@GNULIB_WMEMMOVE@": "0", "@HAVE_WMEMMOVE@": "1", "@GNULIB_WMEMSET@": "0", "@HAVE_WMEMSET@": "1", "@GNULIB_WCSLEN@": "0", "@HAVE_WCSLEN@": "1", "@GNULIB_WCSNLEN@": "0", "@HAVE_WCSNLEN@": "1", "@GNULIB_WCSCPY@": "0", "@HAVE_WCSCPY@": "1", "@GNULIB_WCPCPY@": "0", "@HAVE_WCPCPY@": "1", "@GNULIB_WCSNCPY@": "0", "@HAVE_WCSNCPY@": "1", "@GNULIB_WCPNCPY@": "0", "@HAVE_WCPNCPY@": "1", "@GNULIB_WCSCAT@": "0", "@HAVE_WCSCAT@": "1", "@GNULIB_WCSNCAT@": "0", "@HAVE_WCSNCAT@": "1", "@GNULIB_WCSCMP@": "0", "@HAVE_WCSCMP@": "1", "@GNULIB_WCSNCMP@": "0", "@HAVE_WCSNCMP@": "1", "@GNULIB_WCSCASECMP@": "0", "@HAVE_WCSCASECMP@": "1", "@GNULIB_WCSNCASECMP@": "0", "@HAVE_WCSNCASECMP@": "1", "@GNULIB_WCSCOLL@": "0", "@HAVE_WCSCOLL@": "1", "@GNULIB_WCSXFRM@": "0", "@HAVE_WCSXFRM@": "1", "@GNULIB_WCSDUP@": "0", "@HAVE_WCSDUP@": "1", "@GNULIB_WCSCHR@": "0", "@HAVE_WCSCHR@": "1", "@GNULIB_WCSRCHR@": "0", "@HAVE_WCSRCHR@": "1", "@GNULIB_WCSCSPN@": "0", "@HAVE_WCSCSPN@": "1", "@GNULIB_WCSSPN@": "0", "@HAVE_WCSSPN@": "1", "@GNULIB_WCSPBRK@": "0", "@HAVE_WCSPBRK@": "1", "@GNULIB_WCSSTR@": "0", "@HAVE_WCSSTR@": "1", "@GNULIB_WCSTOK@": "0", "@HAVE_WCSTOK@": "1", "@GNULIB_WCSWIDTH@": "0", "@REPLACE_WCSWIDTH@": "0", "@HAVE_WCSWIDTH@": "1", "@HAVE_CRTDEFS_H@": "1", "@GNULIB_WCSFTIME@": "0", "@REPLACE_WCSFTIME@": "0", "@HAVE_WCSFTIME@": "1", # wctype.h "@NEXT_WCTYPE_H@": "<gnulib-system-libc/wctype.h>", "@HAVE_WCTYPE_H@": "1", "@HAVE_ISWCNTRL@": "1", "@REPLACE_ISWCNTRL@": "0", "@REPLACE_TOWLOWER@": "0", "@GNULIB_ISWBLANK@": "0", "@HAVE_ISWBLANK@": "1", "@REPLACE_ISWBLANK@": "0", "@HAVE_WCTYPE_T@": "1", "@GNULIB_WCTYPE@": "0", "@GNULIB_ISWCTYPE@": "0", "@HAVE_WCTRANS_T@": "1", "@GNULIB_WCTRANS@": "0", "@GNULIB_TOWCTRANS@": "0", }
load('@rules_bison//bison/internal:versions.bzl', _VERSION_URLS='VERSION_URLS') _gnulib_version = '788db09a9f88abbef73c97e8d7291c40455336d8' _gnulib_sha256 = '4350696d531852118f3735a0e2d1091746388392c27d582f0cc241b6a39fe493' _url_base = 'github.com/jmillikin/rules_bison/releases/download/v0.1/bison-gnulib-{}.tar.xz'.format(_GNULIB_VERSION) _gnulib_urls = ['https://mirror.bazel.build/' + _URL_BASE, 'https://' + _URL_BASE] _config_header = '\n#include "gnulib/lib/config.in.h"\n#include "gnulib/lib/arg-nonnull.h"\n\n#define PACKAGE "bison"\n#define PACKAGE_BUGREPORT "bug-bison@gnu.org"\n#define PACKAGE_COPYRIGHT_YEAR {BISON_COPYRIGHT_YEAR}\n#define PACKAGE_NAME "GNU Bison"\n#define PACKAGE_STRING "GNU Bison {BISON_VERSION}"\n#define PACKAGE_URL "http://www.gnu.org/software/bison/"\n#define PACKAGE_VERSION "{BISON_VERSION}"\n#define VERSION "{BISON_VERSION}"\n\n#define M4 "m4"\n#define M4_GNU_OPTION "--gnu"\n' _config_footer = '\n#include <stdint.h>\n#include <stdio.h>\n#include <wchar.h>\n\nstruct obstack;\nint obstack_printf(struct obstack *obs, const char *format, ...);\nint obstack_vprintf(struct obstack *obs, const char *format, va_list args);\nint strverscmp(const char *s1, const char *s2);\nint wcwidth(wchar_t wc);\n' _configmake_h = '\n#define LOCALEDIR ""\n#define PKGDATADIR "{WORKSPACE_ROOT}/data"\n' def gnulib_overlay(ctx, bison_version): ctx.download_and_extract(url=_GNULIB_URLS, sha256=_GNULIB_SHA256, output='gnulib', stripPrefix='gnulib-' + _GNULIB_VERSION) ctx.symlink(ctx.attr._gnulib_build, 'gnulib/BUILD.bazel') config_header = _CONFIG_HEADER.format(BISON_VERSION=bison_version, BISON_COPYRIGHT_YEAR=_VERSION_URLS[bison_version]['copyright_year']) for (os, template) in [('darwin', ctx.attr._gnulib_config_darwin_h), ('linux', ctx.attr._gnulib_config_linux_h), ('windows', ctx.attr._gnulib_config_windows_h)]: config_prefix = 'gnulib/config-{}/'.format(os) ctx.template(config_prefix + 'config.h', template, substitutions={'{GNULIB_CONFIG_HEADER}': config_header, '{GNULIB_CONFIG_FOOTER}': _CONFIG_FOOTER}, executable=False) ctx.file(config_prefix + 'configmake.h', _CONFIGMAKE_H.format(WORKSPACE_ROOT='external/' + ctx.attr.name)) for shim in _WINDOWS_STDLIB_SHIMS: in_h = 'gnulib/lib/{}.in.h'.format(shim.replace('/', '_')) out_h = 'gnulib/config-windows/shim-libc/gnulib/{}.h'.format(shim) ctx.template(out_h, in_h, substitutions=_WINDOWS_AC_SUBST, executable=False) ctx.file('gnulib/lib/bitset_stats.h', '#include "gnulib/lib/bitset/stats.h"') ctx.file('gnulib/lib/bitsetv-print.h', '#include "gnulib/lib/bitsetv.h"') ctx.template('gnulib/lib/obstack.c', 'gnulib/lib/obstack.c', substitutions={'static _Noreturn void': 'static _Noreturn __attribute_noreturn__ void'}, executable=False) ctx.template('gnulib/lib/timevar.c', 'gnulib/lib/timevar.c', substitutions={'"timevar.def"': '"lib/timevar.def"'}, executable=False) ctx.template('gnulib/lib/timevar.h', 'gnulib/lib/timevar.h', substitutions={'"timevar.def"': '"lib/timevar.def"'}, executable=False) ctx.file('gnulib/lib/isnanl-nolibm.h', '\n'.join(['#include <math.h>', '#define isnanl isnan'])) ctx.template('gnulib/lib/getdtablesize.c', 'gnulib/lib/getdtablesize.c', substitutions={'for (bound = 0x10000;': 'for (bound = 2048;'}, executable=False) ctx.template('gnulib/lib/spawn-pipe.c', 'gnulib/lib/spawn-pipe.c', substitutions={'(const char **) environ': 'NULL'}, executable=False) _windows_stdlib_shims = ['alloca', 'errno', 'fcntl', 'getopt', 'getopt-cdefs', 'signal', 'stdio', 'string', 'sys/resource', 'sys/stat', 'sys/time', 'sys/times', 'sys/types', 'sys/wait', 'unistd', 'unitypes', 'uniwidth', 'wchar', 'wctype'] _windows_ac_subst = {'@PRAGMA_SYSTEM_HEADER@': '', '@PRAGMA_COLUMNS@': '', '@INCLUDE_NEXT@': 'include', '@GUARD_PREFIX@': 'GL_BISON', '@ASM_SYMBOL_PREFIX@': '""', '/* The definitions of _GL_FUNCDECL_RPL etc. are copied here. */': '#include "gnulib/lib/c++defs.h"', '/* The definition of _GL_ARG_NONNULL is copied here. */': '#include "gnulib/lib/arg-nonnull.h"', '/* The definition of _GL_WARN_ON_USE is copied here. */': '#include "gnulib/lib/warn-on-use.h"', '@NEXT_ERRNO_H@': '<gnulib-system-libc/errno.h>', '@EMULTIHOP_HIDDEN@': '0', '@EMULTIHOP_VALUE@': 'EMULTIHOP', '@ENOLINK_HIDDEN@': '0', '@ENOLINK_VALUE@': 'ENOLINK', '@EOVERFLOW_HIDDEN@': '0', '@EOVERFLOW_VALUE@': 'EOVERFLOW', '@NEXT_FCNTL_H@': '<gnulib-system-libc/fcntl.h>', '@GNULIB_FCNTL@': '1', '@REPLACE_FCNTL@': '0', '@HAVE_FCNTL@': '0', '@GNULIB_OPEN@': '1', '@REPLACE_OPEN@': '0', '@GNULIB_OPENAT@': '0', '@REPLACE_OPENAT@': '0', '@HAVE_OPENAT@': '1', '@GNULIB_NONBLOCKING@': '0', '@HAVE_GETOPT_H@': '0', '@NEXT_GETOPT_H@': '<gnulib-system-libc/getopt.h>', '@HAVE_SYS_CDEFS_H@': '0', '@NEXT_SIGNAL_H@': '<gnulib-system-libc/signal.h>', '@GNULIB_PTHREAD_SIGMASK@': '0', '@HAVE_TYPE_VOLATILE_SIG_ATOMIC_T@': '1', '@HAVE_SIGSET_T@': '0', '@HAVE_SIGHANDLER_T@': '0', '@GNULIB_SIGNAL_H_SIGPIPE@': '1', '@REPLACE_PTHREAD_SIGMASK@': '0', '@HAVE_PTHREAD_SIGMASK@': '1', '@GNULIB_RAISE@': '1', '@REPLACE_RAISE@': '1', '@HAVE_RAISE@': '1', '@GNULIB_SIGPROCMASK@': '1', '@HAVE_POSIX_SIGNALBLOCKING@': '0', '@GNULIB_SIGACTION@': '1', '@HAVE_SIGACTION@': '0', '@HAVE_SIGINFO_T@': '0', '@HAVE_STRUCT_SIGACTION_SA_SIGACTION@': '1', '@NEXT_STDIO_H@': '<gnulib-system-libc/stdio.h>', '@GNULIB_RENAMEAT@': '0', '@GNULIB_PERROR@': '0', '@GNULIB_REMOVE@': '0', '@GNULIB_RENAME@': '0', '@GNULIB_DPRINTF@': '0', '@REPLACE_DPRINTF@': '0', '@HAVE_DPRINTF@': '1', '@GNULIB_FCLOSE@': '0', '@REPLACE_FCLOSE@': '0', '@GNULIB_FDOPEN@': '0', '@REPLACE_FDOPEN@': '1', '@GNULIB_FFLUSH@': '0', '@REPLACE_FFLUSH@': '0', '@GNULIB_FGETC@': '1', '@REPLACE_STDIO_READ_FUNCS@': '0', '@GNULIB_STDIO_H_NONBLOCKING@': '0', '@GNULIB_FGETS@': '1', '@GNULIB_FOPEN@': '1', '@REPLACE_FOPEN@': '0', '@GNULIB_FPRINTF_POSIX@': '0', '@GNULIB_FPRINTF@': '1', '@REPLACE_FPRINTF@': '0', '@REPLACE_STDIO_WRITE_FUNCS@': '0', '@GNULIB_STDIO_H_SIGPIPE@': '0', '@GNULIB_VFPRINTF_POSIX@': '0', '@GNULIB_FPURGE@': '1', '@REPLACE_FPURGE@': '0', '@HAVE_DECL_FPURGE@': '0', '@GNULIB_FPUTC@': '1', '@GNULIB_FREAD@': '1', '@GNULIB_FREOPEN@': '0', '@REPLACE_FREOPEN@': '0', '@GNULIB_FSCANF@': '1', '@GNULIB_FSEEK@': '0', '@REPLACE_FSEEK@': '0', '@GNULIB_FSEEKO@': '0', '@REPLACE_FSEEKO@': '0', '@HAVE_DECL_FSEEKO@': '0', '@GNULIB_FTELL@': '0', '@REPLACE_FTELL@': '0', '@GNULIB_FTELLO@': '0', '@REPLACE_FTELLO@': '0', '@HAVE_DECL_FTELLO@': '0', '@GNULIB_FWRITE@': '0', '@GNULIB_GETC@': '1', '@GNULIB_GETCHAR@': '1', '@GNULIB_GETDELIM@': '0', '@REPLACE_GETDELIM@': '0', '@HAVE_DECL_GETDELIM@': '1', '@GNULIB_GETLINE@': '0', '@REPLACE_GETLINE@': '0', '@HAVE_DECL_GETLINE@': '1', '@GNULIB_OBSTACK_PRINTF@': '1', '@GNULIB_OBSTACK_PRINTF_POSIX@': '0', '@REPLACE_OBSTACK_PRINTF@': '0', '@HAVE_DECL_OBSTACK_PRINTF@': '0', '@GNULIB_PCLOSE@': '0', '@HAVE_PCLOSE@': '1', '@REPLACE_PERROR@': '0', '@GNULIB_POPEN@': '0', '@REPLACE_POPEN@': '0', '@HAVE_POPEN@': '1', '@GNULIB_PRINTF_POSIX@': '0', '@GNULIB_PRINTF@': '1', '@REPLACE_PRINTF@': '0', '@GNULIB_PUTC@': '1', '@GNULIB_PUTCHAR@': '1', '@GNULIB_PUTS@': '1', '@REPLACE_RENAME@': '0', '@REPLACE_RENAMEAT@': '0', '@HAVE_RENAMEAT@': '1', '@GNULIB_SCANF@': '1', '@GNULIB_SNPRINTF@': '1', '@REPLACE_SNPRINTF@': '1', '@HAVE_DECL_SNPRINTF@': '1', '@GNULIB_SPRINTF_POSIX@': '0', '@REPLACE_SPRINTF@': '0', '@GNULIB_TMPFILE@': '0', '@REPLACE_TMPFILE@': '0', '@GNULIB_VASPRINTF@': '1', '@REPLACE_VASPRINTF@': '0', '@HAVE_VASPRINTF@': '0', '@GNULIB_VDPRINTF@': '0', '@REPLACE_VDPRINTF@': '0', '@HAVE_VDPRINTF@': '1', '@GNULIB_VFSCANF@': '0', '@GNULIB_FPUTS@': '1', '@REPLACE_REMOVE@': '0', '@GNULIB_VFPRINTF@': '1', '@REPLACE_VFPRINTF@': '0', '@GNULIB_VPRINTF_POSIX@': '0', '@GNULIB_VSCANF@': '0', '@GNULIB_VSNPRINTF@': '0', '@REPLACE_VSNPRINTF@': '0', '@HAVE_DECL_VSNPRINTF@': '1', '@GNULIB_VSPRINTF_POSIX@': '0', '@REPLACE_VSPRINTF@': '0', '@GNULIB_VPRINTF@': '1', '@REPLACE_VPRINTF@': '0', '@NEXT_STRING_H@': '<gnulib-system-libc/string.h>', '@GNULIB_MBSLEN@': '0', '@GNULIB_STRSIGNAL@': '1', '@GNULIB_FFSL@': '0', '@HAVE_FFSL@': '1', '@GNULIB_FFSLL@': '0', '@HAVE_FFSLL@': '1', '@GNULIB_MEMCHR@': '1', '@REPLACE_MEMCHR@': '0', '@HAVE_MEMCHR@': '1', '@GNULIB_MEMMEM@': '0', '@REPLACE_MEMMEM@': '0', '@HAVE_DECL_MEMMEM@': '1', '@GNULIB_MEMPCPY@': '0', '@HAVE_MEMPCPY@': '1', '@GNULIB_MEMRCHR@': '0', '@HAVE_DECL_MEMRCHR@': '1', '@GNULIB_RAWMEMCHR@': '1', '@HAVE_RAWMEMCHR@': '0', '@GNULIB_STPCPY@': '1', '@HAVE_STPCPY@': '0', '@GNULIB_STPNCPY@': '0', '@REPLACE_STPNCPY@': '0', '@HAVE_STPNCPY@': '1', '@GNULIB_STRCHRNUL@': '1', '@REPLACE_STRCHRNUL@': '0', '@HAVE_STRCHRNUL@': '0', '@GNULIB_STRDUP@': '0', '@REPLACE_STRDUP@': '1', '@HAVE_DECL_STRDUP@': '1', '@GNULIB_STRNCAT@': '0', '@REPLACE_STRNCAT@': '0', '@GNULIB_STRNDUP@': '1', '@REPLACE_STRNDUP@': '0', '@HAVE_DECL_STRNDUP@': '0', '@GNULIB_STRNLEN@': '1', '@REPLACE_STRNLEN@': '0', '@HAVE_DECL_STRNLEN@': '1', '@GNULIB_STRPBRK@': '0', '@HAVE_STRPBRK@': '1', '@GNULIB_STRSEP@': '0', '@HAVE_STRSEP@': '1', '@GNULIB_STRSTR@': '1', '@REPLACE_STRSTR@': '1', '@GNULIB_STRCASESTR@': '0', '@REPLACE_STRCASESTR@': '0', '@HAVE_STRCASESTR@': '1', '@GNULIB_STRTOK_R@': '0', '@REPLACE_STRTOK_R@': '0', '@UNDEFINE_STRTOK_R@': '0', '@HAVE_DECL_STRTOK_R@': '1', '@HAVE_MBSLEN@': '0', '@GNULIB_MBSNLEN@': '0', '@GNULIB_MBSCHR@': '0', '@GNULIB_MBSRCHR@': '0', '@GNULIB_MBSSTR@': '0', '@GNULIB_MBSCASECMP@': '0', '@GNULIB_MBSNCASECMP@': '0', '@GNULIB_MBSPCASECMP@': '0', '@GNULIB_MBSCASESTR@': '0', '@GNULIB_MBSCSPN@': '0', '@GNULIB_MBSPBRK@': '0', '@GNULIB_MBSSPN@': '0', '@GNULIB_MBSSEP@': '0', '@GNULIB_MBSTOK_R@': '0', '@GNULIB_STRERROR@': '1', '@REPLACE_STRERROR@': '1', '@GNULIB_STRERROR_R@': '1', '@REPLACE_STRERROR_R@': '0', '@HAVE_DECL_STRERROR_R@': '0', '@REPLACE_STRSIGNAL@': '0', '@HAVE_DECL_STRSIGNAL@': '0', '@GNULIB_STRVERSCMP@': '1', '@HAVE_STRVERSCMP@': '0', '@GNULIB_EXPLICIT_BZERO@': '0', '@HAVE_EXPLICIT_BZERO@': '1', '@HAVE_SYS_RESOURCE_H@': '0', '@GNULIB_GETRUSAGE@': '1', '@HAVE_GETRUSAGE@': '0', '@NEXT_SYS_STAT_H@': '<gnulib-system-libc/sys/stat.h>', '@WINDOWS_64_BIT_ST_SIZE@': '1', '@GNULIB_FCHMODAT@': '0', '@HAVE_FCHMODAT@': '1', '@GNULIB_FSTAT@': '1', '@REPLACE_FSTAT@': '1', '@GNULIB_FSTATAT@': '0', '@REPLACE_FSTATAT@': '0', '@HAVE_FSTATAT@': '1', '@GNULIB_FUTIMENS@': '0', '@REPLACE_FUTIMENS@': '0', '@HAVE_FUTIMENS@': '1', '@GNULIB_LCHMOD@': '0', '@HAVE_LCHMOD@': '1', '@GNULIB_LSTAT@': '1', '@HAVE_LSTAT@': '0', '@REPLACE_LSTAT@': '0', '@REPLACE_MKDIR@': '0', '@GNULIB_MKDIRAT@': '0', '@HAVE_MKDIRAT@': '1', '@GNULIB_MKFIFO@': '0', '@REPLACE_MKFIFO@': '0', '@HAVE_MKFIFO@': '1', '@GNULIB_MKFIFOAT@': '0', '@HAVE_MKFIFOAT@': '1', '@GNULIB_MKNOD@': '0', '@REPLACE_MKNOD@': '0', '@HAVE_MKNOD@': '1', '@GNULIB_MKNODAT@': '0', '@HAVE_MKNODAT@': '1', '@GNULIB_STAT@': '1', '@REPLACE_STAT@': '0', '@GNULIB_UTIMENSAT@': '0', '@REPLACE_UTIMENSAT@': '0', '@HAVE_UTIMENSAT@': '1', '@GNULIB_OVERRIDES_STRUCT_STAT@': '0', '@WINDOWS_STAT_TIMESPEC@': '0', '@NEXT_SYS_TIME_H@': '<gnulib-system-libc/sys/time.h>', '@HAVE_SYS_TIME_H@': '0', '@REPLACE_STRUCT_TIMEVAL@': '1', '@HAVE_WINSOCK2_H@': '1', '@HAVE_STRUCT_TIMEVAL@': '1', '@GNULIB_GETTIMEOFDAY@': '1', '@REPLACE_GETTIMEOFDAY@': '0', '@HAVE_GETTIMEOFDAY@': '0', '@HAVE_SYS_TIMES_H@': '0', '@NEXT_SYS_TIMES_H@': '<gnulib-system-libc/sys/times.h>', '@HAVE_STRUCT_TMS@': '0', '@GNULIB_TIMES@': '0', '@HAVE_TIMES@': '1', '@NEXT_SYS_TYPES_H@': '<gnulib-system-libc/sys/types.h>', '@WINDOWS_STAT_INODES@': '0', '@NEXT_SYS_WAIT_H@': '<gnulib-system-libc/sys/wait.h>', '@GNULIB_WAITPID@': '1', '@NEXT_UNISTD_H@': '<gnulib-system-libc/unistd.h>', '@HAVE_UNISTD_H@': '0', '@GNULIB_GETHOSTNAME@': '0', '@UNISTD_H_HAVE_WINSOCK2_H@': '1', '@GNULIB_UNLINK@': '0', '@GNULIB_SYMLINKAT@': '0', '@GNULIB_UNLINKAT@': '0', '@GNULIB_CHDIR@': '1', '@GNULIB_CLOSE@': '1', '@GNULIB_DUP@': '0', '@GNULIB_DUP2@': '1', '@GNULIB_ISATTY@': '0', '@GNULIB_LSEEK@': '1', '@GNULIB_READ@': '0', '@GNULIB_WRITE@': '0', '@GNULIB_GETDOMAINNAME@': '0', '@WINDOWS_64_BIT_OFF_T@': '1', '@GNULIB_READLINK@': '1', '@HAVE_READLINK@': '0', '@GNULIB_READLINKAT@': '0', '@GNULIB_PREAD@': '0', '@GNULIB_PWRITE@': '0', '@GNULIB_UNISTD_H_GETOPT@': '1', '@GNULIB_CHOWN@': '0', '@REPLACE_CHOWN@': '0', '@HAVE_CHOWN@': '1', '@REPLACE_CLOSE@': '1', '@UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS@': '0', '@REPLACE_DUP@': '1', '@REPLACE_DUP2@': '1', '@GNULIB_DUP3@': '0', '@HAVE_DUP3@': '1', '@GNULIB_ENVIRON@': '1', '@HAVE_DECL_ENVIRON@': '1', '@GNULIB_EUIDACCESS@': '0', '@HAVE_EUIDACCESS@': '1', '@GNULIB_FACCESSAT@': '0', '@HAVE_FACCESSAT@': '1', '@GNULIB_FCHDIR@': '0', '@HAVE_FCHDIR@': '1', '@HAVE_DECL_FCHDIR@': '1', '@GNULIB_FCHOWNAT@': '0', '@REPLACE_FCHOWNAT@': '0', '@HAVE_FCHOWNAT@': '1', '@GNULIB_FDATASYNC@': '0', '@HAVE_FDATASYNC@': '1', '@HAVE_DECL_FDATASYNC@': '1', '@GNULIB_FSYNC@': '0', '@HAVE_FSYNC@': '1', '@GNULIB_FTRUNCATE@': '0', '@HAVE_FTRUNCATE@': '1', '@GNULIB_GETCWD@': '0', '@REPLACE_GETCWD@': '1', '@REPLACE_GETDOMAINNAME@': '0', '@HAVE_DECL_GETDOMAINNAME@': '1', '@GNULIB_GETDTABLESIZE@': '1', '@REPLACE_GETDTABLESIZE@': '0', '@HAVE_GETDTABLESIZE@': '0', '@GNULIB_GETGROUPS@': '0', '@HAVE_GETGROUPS@': '1', '@HAVE_GETHOSTNAME@': '1', '@GNULIB_GETLOGIN@': '0', '@HAVE_DECL_GETLOGIN@': '1', '@GNULIB_GETLOGIN_R@': '0', '@REPLACE_GETLOGIN_R@': '0', '@HAVE_DECL_GETLOGIN_R@': '1', '@GNULIB_GETPAGESIZE@': '0', '@REPLACE_GETPAGESIZE@': '0', '@HAVE_GETPAGESIZE@': '0', '@HAVE_OS_H@': '0', '@HAVE_SYS_PARAM_H@': '0', '@HAVE_DECL_GETPAGESIZE@': '0', '@GNULIB_GETUSERSHELL@': '0', '@HAVE_DECL_GETUSERSHELL@': '1', '@GNULIB_GROUP_MEMBER@': '0', '@HAVE_GROUP_MEMBER@': '1', '@REPLACE_ISATTY@': '0', '@GNULIB_LCHOWN@': '0', '@REPLACE_LCHOWN@': '0', '@HAVE_LCHOWN@': '1', '@GNULIB_LINK@': '0', '@REPLACE_LINK@': '0', '@HAVE_LINK@': '0', '@GNULIB_LINKAT@': '0', '@REPLACE_LINKAT@': '0', '@HAVE_LINKAT@': '1', '@REPLACE_LSEEK@': '0', '@GNULIB_PIPE@': '0', '@HAVE_PIPE@': '1', '@GNULIB_PIPE2@': '1', '@HAVE_PIPE2@': '0', '@REPLACE_PREAD@': '0', '@HAVE_PREAD@': '1', '@REPLACE_PWRITE@': '0', '@HAVE_PWRITE@': '1', '@REPLACE_READ@': '0', '@REPLACE_READLINK@': '0', '@REPLACE_READLINKAT@': '0', '@HAVE_READLINKAT@': '1', '@GNULIB_RMDIR@': '1', '@REPLACE_RMDIR@': '1', '@GNULIB_SETHOSTNAME@': '0', '@HAVE_SETHOSTNAME@': '1', '@HAVE_DECL_SETHOSTNAME@': '1', '@GNULIB_SLEEP@': '0', '@REPLACE_SLEEP@': '0', '@HAVE_SLEEP@': '0', '@GNULIB_SYMLINK@': '0', '@REPLACE_SYMLINK@': '0', '@HAVE_SYMLINK@': '0', '@REPLACE_SYMLINKAT@': '0', '@HAVE_SYMLINKAT@': '1', '@GNULIB_TTYNAME_R@': '0', '@REPLACE_TTYNAME_R@': '0', '@HAVE_DECL_TTYNAME_R@': '1', '@REPLACE_UNLINK@': '0', '@REPLACE_UNLINKAT@': '0', '@HAVE_UNLINKAT@': '1', '@GNULIB_USLEEP@': '0', '@REPLACE_USLEEP@': '0', '@HAVE_USLEEP@': '1', '@REPLACE_WRITE@': '1', '@HAVE_DUP2@': '1', '@REPLACE_FACCESSAT@': '0', '@REPLACE_FTRUNCATE@': '0', '@REPLACE_GETGROUPS@': '0', '@GNULIB_GETPASS@': '0', '@REPLACE_GETPASS@': '0', '@HAVE_GETPASS@': '1', '@GNULIB_TRUNCATE@': '0', '@REPLACE_TRUNCATE@': '0', '@HAVE_DECL_TRUNCATE@': '1', '@HAVE_WCHAR_H@': '1', '@NEXT_WCHAR_H@': '<gnulib-system-libc/wchar.h>', '@HAVE_FEATURES_H@': '0', '@HAVE_WINT_T@': '1', '@GNULIB_OVERRIDES_WINT_T@': '1', '@HAVE_MBSINIT@': '0', '@HAVE_MBRTOWC@': '1', '@REPLACE_MBSTATE_T@': '1', '@GNULIB_BTOWC@': '1', '@REPLACE_BTOWC@': '0', '@HAVE_BTOWC@': '1', '@GNULIB_WCTOB@': '0', '@REPLACE_WCTOB@': '1', '@HAVE_DECL_WCTOB@': '1', '@GNULIB_MBSINIT@': '1', '@REPLACE_MBSINIT@': '1', '@GNULIB_MBRTOWC@': '1', '@REPLACE_MBRTOWC@': '1', '@GNULIB_MBRLEN@': '0', '@REPLACE_MBRLEN@': '0', '@HAVE_MBRLEN@': '1', '@GNULIB_MBSRTOWCS@': '0', '@REPLACE_MBSRTOWCS@': '0', '@HAVE_MBSRTOWCS@': '1', '@GNULIB_MBSNRTOWCS@': '0', '@REPLACE_MBSNRTOWCS@': '0', '@HAVE_MBSNRTOWCS@': '1', '@GNULIB_WCRTOMB@': '1', '@REPLACE_WCRTOMB@': '1', '@HAVE_WCRTOMB@': '1', '@GNULIB_WCSRTOMBS@': '0', '@REPLACE_WCSRTOMBS@': '0', '@HAVE_WCSRTOMBS@': '1', '@GNULIB_WCSNRTOMBS@': '0', '@REPLACE_WCSNRTOMBS@': '0', '@HAVE_WCSNRTOMBS@': '1', '@GNULIB_WCWIDTH@': '1', '@REPLACE_WCWIDTH@': '0', '@HAVE_DECL_WCWIDTH@': '0', '@GNULIB_WMEMCHR@': '0', '@HAVE_WMEMCHR@': '1', '@GNULIB_WMEMCMP@': '0', '@HAVE_WMEMCMP@': '1', '@GNULIB_WMEMCPY@': '0', '@HAVE_WMEMCPY@': '1', '@GNULIB_WMEMMOVE@': '0', '@HAVE_WMEMMOVE@': '1', '@GNULIB_WMEMSET@': '0', '@HAVE_WMEMSET@': '1', '@GNULIB_WCSLEN@': '0', '@HAVE_WCSLEN@': '1', '@GNULIB_WCSNLEN@': '0', '@HAVE_WCSNLEN@': '1', '@GNULIB_WCSCPY@': '0', '@HAVE_WCSCPY@': '1', '@GNULIB_WCPCPY@': '0', '@HAVE_WCPCPY@': '1', '@GNULIB_WCSNCPY@': '0', '@HAVE_WCSNCPY@': '1', '@GNULIB_WCPNCPY@': '0', '@HAVE_WCPNCPY@': '1', '@GNULIB_WCSCAT@': '0', '@HAVE_WCSCAT@': '1', '@GNULIB_WCSNCAT@': '0', '@HAVE_WCSNCAT@': '1', '@GNULIB_WCSCMP@': '0', '@HAVE_WCSCMP@': '1', '@GNULIB_WCSNCMP@': '0', '@HAVE_WCSNCMP@': '1', '@GNULIB_WCSCASECMP@': '0', '@HAVE_WCSCASECMP@': '1', '@GNULIB_WCSNCASECMP@': '0', '@HAVE_WCSNCASECMP@': '1', '@GNULIB_WCSCOLL@': '0', '@HAVE_WCSCOLL@': '1', '@GNULIB_WCSXFRM@': '0', '@HAVE_WCSXFRM@': '1', '@GNULIB_WCSDUP@': '0', '@HAVE_WCSDUP@': '1', '@GNULIB_WCSCHR@': '0', '@HAVE_WCSCHR@': '1', '@GNULIB_WCSRCHR@': '0', '@HAVE_WCSRCHR@': '1', '@GNULIB_WCSCSPN@': '0', '@HAVE_WCSCSPN@': '1', '@GNULIB_WCSSPN@': '0', '@HAVE_WCSSPN@': '1', '@GNULIB_WCSPBRK@': '0', '@HAVE_WCSPBRK@': '1', '@GNULIB_WCSSTR@': '0', '@HAVE_WCSSTR@': '1', '@GNULIB_WCSTOK@': '0', '@HAVE_WCSTOK@': '1', '@GNULIB_WCSWIDTH@': '0', '@REPLACE_WCSWIDTH@': '0', '@HAVE_WCSWIDTH@': '1', '@HAVE_CRTDEFS_H@': '1', '@GNULIB_WCSFTIME@': '0', '@REPLACE_WCSFTIME@': '0', '@HAVE_WCSFTIME@': '1', '@NEXT_WCTYPE_H@': '<gnulib-system-libc/wctype.h>', '@HAVE_WCTYPE_H@': '1', '@HAVE_ISWCNTRL@': '1', '@REPLACE_ISWCNTRL@': '0', '@REPLACE_TOWLOWER@': '0', '@GNULIB_ISWBLANK@': '0', '@HAVE_ISWBLANK@': '1', '@REPLACE_ISWBLANK@': '0', '@HAVE_WCTYPE_T@': '1', '@GNULIB_WCTYPE@': '0', '@GNULIB_ISWCTYPE@': '0', '@HAVE_WCTRANS_T@': '1', '@GNULIB_WCTRANS@': '0', '@GNULIB_TOWCTRANS@': '0'}
test = { 'name': 'q1_19', 'points': 1, 'suites': [ { 'cases': [ { 'code': r""" >>> -1 <= observed_diff_proportion <= 1 True """, 'hidden': False, 'locked': False }, { 'code': r""" >>> # The observed difference in proportion should be about 0.219; >>> np.round(observed_diff_proportion, 3) == 0.219 True """, 'hidden': False, 'locked': False } ], 'scored': True, 'setup': '', 'teardown': '', 'type': 'doctest' } ] }
test = {'name': 'q1_19', 'points': 1, 'suites': [{'cases': [{'code': '\n >>> -1 <= observed_diff_proportion <= 1\n True\n ', 'hidden': False, 'locked': False}, {'code': '\n >>> # The observed difference in proportion should be about 0.219;\n >>> np.round(observed_diff_proportion, 3) == 0.219\n True\n ', 'hidden': False, 'locked': False}], 'scored': True, 'setup': '', 'teardown': '', 'type': 'doctest'}]}
# Enter your code for "Hello with attitude" here. name = input("What is your name? ") print("So you call yourself '" + name + "' huh?")
name = input('What is your name? ') print("So you call yourself '" + name + "' huh?")
# https://www.codewars.com/kata/59e49b2afc3c494d5d00002a/train/python def sort_vowels(s): if isinstance(s, int) or s == None: return '' vovels = ['a', 'e', 'u', 'i', 'o'] output = [] for letter in s: if vovels.count(letter.lower()) > 0: output.append(f'|{letter}') else: output.append(f'{letter}|') return '\n'.join(output)
def sort_vowels(s): if isinstance(s, int) or s == None: return '' vovels = ['a', 'e', 'u', 'i', 'o'] output = [] for letter in s: if vovels.count(letter.lower()) > 0: output.append(f'|{letter}') else: output.append(f'{letter}|') return '\n'.join(output)
#!/usr/bin/python3 # The MDPs consists of a range of integers 0..stateMax which represent # the states of the MDP, a set of actions. The rewards and transition # probabilities are accessed with some of the functions below defined # for the Python classes that represent MDPs. # # - The __init__ constructor builds the state of the MDP, possibly # with additional configuration options. # - applicableActions(state) returns all actions possible in a state. # - successors(state,action) returns the information about possible # successor state of a state. It is a triple (s,p,r) where # - s is a successor state, # - p is the probability of reaching s from state, and # - r is the reward/cost when going from state to s. # - stateMax is the maximum state index. The minimum is 0. # - show() visualizes the MDP in whatever way it can be visualized. # The example MDP class provided for this exercise is a grid navigation # problem, in which an agent can move to the four cardinal directions # in a finite rectangular grid. # The move actions are nondeterministic: with 0.8 probability the move # is to the nominal direction (N,S,E,W), but with 0.1+0.1 probabilities # the move is to one of the direction 90 degrees off the nominal direction. # So, when trying to move North, with probability 0.8 the move actually # is to North, but it will be to the East with probability 0.1 and to # the West with probability 0.1. # Grid cells are associated with rewards/costs, obtained when reaching # the cell. 99 is a special number in the grid cell which indicates that # the cell cannot be entered. Moves to these 99 cells or against the outside # wall of the grid will result in the agent not moving anywhere. # The example MDP has a 'teleport' feature which may be turned on when # creating the MDP: all moves from the NE corner will lead to the SW corner. class GridMDP: def __init__(self, xs, ys, cells, teleport=False): self.xSize = xs # number of columns self.ySize = ys # number of rows self.stateMax = xs * ys - 1 # index of last (SE corner) cell self.grid = cells # List for rewards/costs of all cells self.teleport = teleport NORTH = 1 SOUTH = 2 WEST = 3 EAST = 4 ACTIONS = [NORTH, SOUTH, WEST, EAST] def turnleft(self, a): if a == self.NORTH: return self.WEST elif a == self.WEST: return self.SOUTH elif a == self.SOUTH: return self.EAST else: return self.NORTH def turnright(self, a): if a == self.NORTH: return self.EAST elif a == self.EAST: return self.SOUTH elif a == self.SOUTH: return self.WEST else: return self.NORTH def actionName(self, a): if a == self.NORTH: return "N" elif a == self.SOUTH: return "S" elif a == self.EAST: return "E" else: return "W" def possible(self, action, state): if self.grid[state] == 99: return False else: return True def applicableActions(self, state): return [x for x in self.ACTIONS if self.possible(x, state)] # For every state and action, compute list of (state',P,R) # where state' is a successor of state # P is the probability of reaching state' # R is the reward obtained when reaching state' # Triples with the same state' will be merged. # The sum of the probabilities P is always 1. def addmove(self, state, direction, prob, dict): if direction == self.NORTH and state >= self.xSize and self.grid[state - self.xSize] != 99: state2 = state - self.xSize elif direction == self.SOUTH and state <= self.stateMax - self.xSize and self.grid[state + self.xSize] != 99: state2 = state + self.xSize elif direction == self.EAST and (state + 1) % self.xSize > 0 and self.grid[state + 1] != 99: state2 = state + 1 elif direction == self.WEST and state % self.xSize > 0 and self.grid[state - 1] != 99: state2 = state - 1 else: state2 = state if self.teleport and state == self.xSize - 1: # Teleport from the NE corner state2 = self.stateMax - self.xSize + 1 # to the SW corner reward = self.grid[state2] if state2 in dict: tmp = dict[state2] dict[state2] = (tmp[0] + prob, reward) # Sum the probabilities when merging. else: dict[state2] = (prob, reward) # Compute all successor state of state, with their probabilities and rewards def successors(self, state, action): dict = {} self.addmove(state, self.turnleft(action), 0.1, dict), self.addmove(state, self.turnright(action), 0.1, dict), self.addmove(state, action, 0.8, dict) succlist = [] for state2, value in dict.items(): tmp = (state2, value[0], value[1]) succlist.append(tmp) return succlist # Show the rewards of all grid cells def show(self): print("--------------------") for y in range(0, self.ySize): for x in range(0, self.xSize): i = y * self.xSize + x if self.grid[i] == 99: # wall cell inside the grid print("##", end="") elif self.grid[i] == 0: # 0 reward cells shown as . print(" .", end="") else: print("%2d" % (self.grid[i]), end="") print("") # Show the policy/plan for a grid MDP # MDP policies represented as dictionaries with the state # indices 0..stateMax as the dictionary keys, and the actions # as the values. def showPolicy(self, policy): print("--------------------") for y in range(0, self.ySize): for x in range(0, self.xSize): i = y * self.xSize + x if self.grid[i] == 99: print("#", end="") else: print(self.actionName(policy[i]), end="") print("") def showValues(self, V): print("--------------------") for y in range(0, self.ySize): for x in range(0, self.xSize): i = y * self.xSize + x print(" %3.3f" % V[i], end='') print("")
class Gridmdp: def __init__(self, xs, ys, cells, teleport=False): self.xSize = xs self.ySize = ys self.stateMax = xs * ys - 1 self.grid = cells self.teleport = teleport north = 1 south = 2 west = 3 east = 4 actions = [NORTH, SOUTH, WEST, EAST] def turnleft(self, a): if a == self.NORTH: return self.WEST elif a == self.WEST: return self.SOUTH elif a == self.SOUTH: return self.EAST else: return self.NORTH def turnright(self, a): if a == self.NORTH: return self.EAST elif a == self.EAST: return self.SOUTH elif a == self.SOUTH: return self.WEST else: return self.NORTH def action_name(self, a): if a == self.NORTH: return 'N' elif a == self.SOUTH: return 'S' elif a == self.EAST: return 'E' else: return 'W' def possible(self, action, state): if self.grid[state] == 99: return False else: return True def applicable_actions(self, state): return [x for x in self.ACTIONS if self.possible(x, state)] def addmove(self, state, direction, prob, dict): if direction == self.NORTH and state >= self.xSize and (self.grid[state - self.xSize] != 99): state2 = state - self.xSize elif direction == self.SOUTH and state <= self.stateMax - self.xSize and (self.grid[state + self.xSize] != 99): state2 = state + self.xSize elif direction == self.EAST and (state + 1) % self.xSize > 0 and (self.grid[state + 1] != 99): state2 = state + 1 elif direction == self.WEST and state % self.xSize > 0 and (self.grid[state - 1] != 99): state2 = state - 1 else: state2 = state if self.teleport and state == self.xSize - 1: state2 = self.stateMax - self.xSize + 1 reward = self.grid[state2] if state2 in dict: tmp = dict[state2] dict[state2] = (tmp[0] + prob, reward) else: dict[state2] = (prob, reward) def successors(self, state, action): dict = {} (self.addmove(state, self.turnleft(action), 0.1, dict),) (self.addmove(state, self.turnright(action), 0.1, dict),) self.addmove(state, action, 0.8, dict) succlist = [] for (state2, value) in dict.items(): tmp = (state2, value[0], value[1]) succlist.append(tmp) return succlist def show(self): print('--------------------') for y in range(0, self.ySize): for x in range(0, self.xSize): i = y * self.xSize + x if self.grid[i] == 99: print('##', end='') elif self.grid[i] == 0: print(' .', end='') else: print('%2d' % self.grid[i], end='') print('') def show_policy(self, policy): print('--------------------') for y in range(0, self.ySize): for x in range(0, self.xSize): i = y * self.xSize + x if self.grid[i] == 99: print('#', end='') else: print(self.actionName(policy[i]), end='') print('') def show_values(self, V): print('--------------------') for y in range(0, self.ySize): for x in range(0, self.xSize): i = y * self.xSize + x print(' %3.3f' % V[i], end='') print('')
W = int(input()) N, K = map(int, input().split()) dp = [{} for _ in range(K + 1)] dp[0][0] = 0 for _ in range(N): A, B = map(int, input().split()) for i in range(K - 1, -1, -1): for j in dp[i]: if j + A <= W: dp[i + 1].setdefault(j + A, 0) dp[i + 1][j + A] = max(dp[i + 1][j + A], dp[i][j] + B) result = 0 for i in range(K + 1): if len(dp[i]) == 0: continue result = max(result, max(dp[i].values())) print(result)
w = int(input()) (n, k) = map(int, input().split()) dp = [{} for _ in range(K + 1)] dp[0][0] = 0 for _ in range(N): (a, b) = map(int, input().split()) for i in range(K - 1, -1, -1): for j in dp[i]: if j + A <= W: dp[i + 1].setdefault(j + A, 0) dp[i + 1][j + A] = max(dp[i + 1][j + A], dp[i][j] + B) result = 0 for i in range(K + 1): if len(dp[i]) == 0: continue result = max(result, max(dp[i].values())) print(result)
# This file is part of the DMComm project by BladeSabre. License: MIT. class ProngOutput: """Description of the outputs for the RP2040 prong circuit. :param pin_drive_signal: The first pin to use for signal output. Note that `pin_drive_low=pin_drive_signal+1` due to the rules of PIO. :param pin_weak_pull: The pin to use for the weak pull-up / pull-down. """ def __init__(self, pin_drive_signal, pin_weak_pull): #pin_drive_low must be pin_drive_signal+1 self.pin_drive_signal = pin_drive_signal self.pin_weak_pull = pin_weak_pull class ProngInput: """Description of the input for the RP2040 prong circuit. :param pin_input: The pin to use for input. An analog pin is recommended for compatibility with the Arduino version and for a possible future voltage test. """ def __init__(self, pin_input): self.pin_input = pin_input class InfraredOutput: """Description of the infrared LED output. :param pin_output: The pin to use for output. """ def __init__(self, pin_output): self.pin_output = pin_output class InfraredInputModulated: """Description of the modulated infrared input (TSOP4838 recommended). :param pin_input: The pin to use for input. """ def __init__(self, pin_input): self.pin_input = pin_input class InfraredInputRaw: """Description of the non-modulated infrared input (TSMP58000 recommended). :param pin_input: The pin to use for input. """ def __init__(self, pin_input): self.pin_input = pin_input
class Prongoutput: """Description of the outputs for the RP2040 prong circuit. :param pin_drive_signal: The first pin to use for signal output. Note that `pin_drive_low=pin_drive_signal+1` due to the rules of PIO. :param pin_weak_pull: The pin to use for the weak pull-up / pull-down. """ def __init__(self, pin_drive_signal, pin_weak_pull): self.pin_drive_signal = pin_drive_signal self.pin_weak_pull = pin_weak_pull class Pronginput: """Description of the input for the RP2040 prong circuit. :param pin_input: The pin to use for input. An analog pin is recommended for compatibility with the Arduino version and for a possible future voltage test. """ def __init__(self, pin_input): self.pin_input = pin_input class Infraredoutput: """Description of the infrared LED output. :param pin_output: The pin to use for output. """ def __init__(self, pin_output): self.pin_output = pin_output class Infraredinputmodulated: """Description of the modulated infrared input (TSOP4838 recommended). :param pin_input: The pin to use for input. """ def __init__(self, pin_input): self.pin_input = pin_input class Infraredinputraw: """Description of the non-modulated infrared input (TSMP58000 recommended). :param pin_input: The pin to use for input. """ def __init__(self, pin_input): self.pin_input = pin_input
class RenderInterface(object): def render(self): raise NotImplementedError("Class %s doesn't implement render()" % (self.__class__.__name__)) class ViewportInterface(object): def to_dict(self): raise NotImplementedError("Class %s doesn't implement to_dict()" % (self.__class__.__name__)) def render(self): raise NotImplementedError("Class %s doesn't implement render()" % (self.__class__.__name__)) def autocompute(self): raise NotImplementedError("Class %s doesn't implement autocompute()" % (self.__class__.__name__))
class Renderinterface(object): def render(self): raise not_implemented_error("Class %s doesn't implement render()" % self.__class__.__name__) class Viewportinterface(object): def to_dict(self): raise not_implemented_error("Class %s doesn't implement to_dict()" % self.__class__.__name__) def render(self): raise not_implemented_error("Class %s doesn't implement render()" % self.__class__.__name__) def autocompute(self): raise not_implemented_error("Class %s doesn't implement autocompute()" % self.__class__.__name__)
num1 = int(input('digite um valor')) num2 = int(input('digite um valor')) s = num1 + num2 print('A soma entre {} e {} vale {}'.format(num1, num2, s))
num1 = int(input('digite um valor')) num2 = int(input('digite um valor')) s = num1 + num2 print('A soma entre {} e {} vale {}'.format(num1, num2, s))
def modify_phoneme_script_to_create_grapheme_script(original_dataset_path, grapheme_dataset_path): with open(original_dataset_path, 'r', encoding='utf-8-sig') as f: lines = f.readlines() new_lines = [] for line in lines: split_result = line.split('|') wav_path = split_result[0] speaker = split_result[2].rstrip() speaking_emotion = 0 content_emotion = 0 txt_path = wav_path.replace('selvas_wav', 'selvas_txt').replace('wav_trimmed_22050', 'script').replace('.wav', '.txt') with open(txt_path, 'r', encoding='utf-8-sig') as f: txt = f.readline().rstrip() # new_line = '{}|{}|{}|{}|{}'.format(wav_path,txt, speaker, speaking_emotion, content_emotion) new_line = txt new_lines.append(new_line) with open(grapheme_dataset_path, 'w', encoding='utf-8') as f: for line in new_lines: f.write(line+'\n') if __name__ == '__main__': # original_dataset_path = '/home/admin/projects/graduate/emotion_vector/filelists/selvas_main_train.txt' # grapheme_dataset_path = '/home/admin/projects/graduate/emotion_vector/filelists/grapheme/grapheme_selvas_main_train_tmp.txt' original_dataset_path = '/home/admin/projects/graduate/emotion_vector/filelists/single_language_selvas/train_file_list_pron.txt' grapheme_dataset_path = '/home/admin/projects/graduate/emotion_vector/filelists/grapheme_selvas_multi_train_tmp.txt' modify_phoneme_script_to_create_grapheme_script(original_dataset_path, grapheme_dataset_path)
def modify_phoneme_script_to_create_grapheme_script(original_dataset_path, grapheme_dataset_path): with open(original_dataset_path, 'r', encoding='utf-8-sig') as f: lines = f.readlines() new_lines = [] for line in lines: split_result = line.split('|') wav_path = split_result[0] speaker = split_result[2].rstrip() speaking_emotion = 0 content_emotion = 0 txt_path = wav_path.replace('selvas_wav', 'selvas_txt').replace('wav_trimmed_22050', 'script').replace('.wav', '.txt') with open(txt_path, 'r', encoding='utf-8-sig') as f: txt = f.readline().rstrip() new_line = txt new_lines.append(new_line) with open(grapheme_dataset_path, 'w', encoding='utf-8') as f: for line in new_lines: f.write(line + '\n') if __name__ == '__main__': original_dataset_path = '/home/admin/projects/graduate/emotion_vector/filelists/single_language_selvas/train_file_list_pron.txt' grapheme_dataset_path = '/home/admin/projects/graduate/emotion_vector/filelists/grapheme_selvas_multi_train_tmp.txt' modify_phoneme_script_to_create_grapheme_script(original_dataset_path, grapheme_dataset_path)
# Solution def add_one(arr): output = 1; for i in range(len(arr), 0, -1): output = output + arr[i - 1] borrow = output//10 if borrow == 0: arr[i - 1] = output break else: arr[i - 1] = output % 10 output = borrow arr = [borrow] + arr index = 0 while arr[index]==0: index += 1 return arr[index:]
def add_one(arr): output = 1 for i in range(len(arr), 0, -1): output = output + arr[i - 1] borrow = output // 10 if borrow == 0: arr[i - 1] = output break else: arr[i - 1] = output % 10 output = borrow arr = [borrow] + arr index = 0 while arr[index] == 0: index += 1 return arr[index:]
def interpolation_search(arr, key): low = 0 high = len(arr) - 1 while arr[high] != arr[low] and key >= arr[low] and key <= arr[high]: mid = int(low + ((key - arr[low]) * (high - low) / (arr[high] - arr[low]))) if arr[mid] == key: return mid elif arr[mid] < key: low = mid + 1 else: high = mid - 1 return -1 # input arr arr = [2, 4, 6, 8, 10, 12, 14, 16] # interpolation_search call to search 3 in arr print('6 is at index: ', interpolation_search(arr, 6)) # Output: 6 is at index: 2
def interpolation_search(arr, key): low = 0 high = len(arr) - 1 while arr[high] != arr[low] and key >= arr[low] and (key <= arr[high]): mid = int(low + (key - arr[low]) * (high - low) / (arr[high] - arr[low])) if arr[mid] == key: return mid elif arr[mid] < key: low = mid + 1 else: high = mid - 1 return -1 arr = [2, 4, 6, 8, 10, 12, 14, 16] print('6 is at index: ', interpolation_search(arr, 6))
# encoding: utf-8 # module Tekla.Structures.Model.History calls itself History # from Tekla.Structures.Model,Version=2017.0.0.0,Culture=neutral,PublicKeyToken=2f04dbe497b71114 # by generator 1.145 # no doc # no imports # no functions # classes class ModelHistory(object): # no doc @staticmethod def GetCurrentModificationStamp(): """ GetCurrentModificationStamp() -> ModificationStamp """ pass @staticmethod def GetDeletedObjects(ModStamp): """ GetDeletedObjects(ModStamp: ModificationStamp) -> ModelObjectEnumerator """ pass @staticmethod def GetDeletedObjectsWithType(ModStamp, Enum): """ GetDeletedObjectsWithType(ModStamp: ModificationStamp,Enum: ModelObjectEnum) -> ModelObjectEnumerator """ pass @staticmethod def GetLocalChanges(): """ GetLocalChanges() -> ModificationInfo """ pass @staticmethod def GetModifications(Name, *__args): """ GetModifications(Name: str,ObjectTypes: IEnumerable[ModelObjectEnum],PrevStamp: ModificationStamp) -> ModificationInfo GetModifications(Name: str,PrevStamp: ModificationStamp) -> ModificationInfo """ pass @staticmethod def GetModifiedObjects(ModStamp): """ GetModifiedObjects(ModStamp: ModificationStamp) -> ModelObjectEnumerator """ pass @staticmethod def GetModifiedObjectsWithType(ModStamp, Enum): """ GetModifiedObjectsWithType(ModStamp: ModificationStamp,Enum: ModelObjectEnum) -> ModelObjectEnumerator """ pass @staticmethod def GetNotSharedObjects(): """ GetNotSharedObjects() -> ModelObjectEnumerator """ pass @staticmethod def TakeModifications(Name, *__args): """ TakeModifications(Name: str,ObjectTypes: IEnumerable[ModelObjectEnum],PrevStamp: ModificationStamp) -> ModificationInfo TakeModifications(Name: str,PrevStamp: ModificationStamp) -> ModificationInfo """ pass @staticmethod def UpdateModificationStampToLatest(modificationStampKey): """ UpdateModificationStampToLatest(modificationStampKey: str) """ pass __all__ = [ "__reduce_ex__", "GetCurrentModificationStamp", "GetDeletedObjects", "GetDeletedObjectsWithType", "GetLocalChanges", "GetModifications", "GetModifiedObjects", "GetModifiedObjectsWithType", "GetNotSharedObjects", "TakeModifications", "UpdateModificationStampToLatest", ] class ModificationInfo(object): # no doc Deleted = None Modified = None ModifiedWithInfo = None class ModificationStamp(object): """ ModificationStamp() ModificationStamp(LocalStamp: int,ServerStamp: int) """ @staticmethod def __new__(self, LocalStamp=None, ServerStamp=None): """ __new__(cls: type) __new__(cls: type,LocalStamp: int,ServerStamp: int) """ pass Guid = property(lambda self: object(), lambda self, v: None, lambda self: None) """Get: Guid(self: ModificationStamp) -> str """ LocalStamp = property( lambda self: object(), lambda self, v: None, lambda self: None ) """Get: LocalStamp(self: ModificationStamp) -> int Set: LocalStamp(self: ModificationStamp)=value """ ServerStamp = property( lambda self: object(), lambda self, v: None, lambda self: None ) """Get: ServerStamp(self: ModificationStamp) -> int Set: ServerStamp(self: ModificationStamp)=value """ class ModifiedObjectInfo(object): # no doc IsAttributeChanged = None IsCreated = None IsModified = None IsNumberingChanged = None ModelObject = None
class Modelhistory(object): @staticmethod def get_current_modification_stamp(): """ GetCurrentModificationStamp() -> ModificationStamp """ pass @staticmethod def get_deleted_objects(ModStamp): """ GetDeletedObjects(ModStamp: ModificationStamp) -> ModelObjectEnumerator """ pass @staticmethod def get_deleted_objects_with_type(ModStamp, Enum): """ GetDeletedObjectsWithType(ModStamp: ModificationStamp,Enum: ModelObjectEnum) -> ModelObjectEnumerator """ pass @staticmethod def get_local_changes(): """ GetLocalChanges() -> ModificationInfo """ pass @staticmethod def get_modifications(Name, *__args): """ GetModifications(Name: str,ObjectTypes: IEnumerable[ModelObjectEnum],PrevStamp: ModificationStamp) -> ModificationInfo GetModifications(Name: str,PrevStamp: ModificationStamp) -> ModificationInfo """ pass @staticmethod def get_modified_objects(ModStamp): """ GetModifiedObjects(ModStamp: ModificationStamp) -> ModelObjectEnumerator """ pass @staticmethod def get_modified_objects_with_type(ModStamp, Enum): """ GetModifiedObjectsWithType(ModStamp: ModificationStamp,Enum: ModelObjectEnum) -> ModelObjectEnumerator """ pass @staticmethod def get_not_shared_objects(): """ GetNotSharedObjects() -> ModelObjectEnumerator """ pass @staticmethod def take_modifications(Name, *__args): """ TakeModifications(Name: str,ObjectTypes: IEnumerable[ModelObjectEnum],PrevStamp: ModificationStamp) -> ModificationInfo TakeModifications(Name: str,PrevStamp: ModificationStamp) -> ModificationInfo """ pass @staticmethod def update_modification_stamp_to_latest(modificationStampKey): """ UpdateModificationStampToLatest(modificationStampKey: str) """ pass __all__ = ['__reduce_ex__', 'GetCurrentModificationStamp', 'GetDeletedObjects', 'GetDeletedObjectsWithType', 'GetLocalChanges', 'GetModifications', 'GetModifiedObjects', 'GetModifiedObjectsWithType', 'GetNotSharedObjects', 'TakeModifications', 'UpdateModificationStampToLatest'] class Modificationinfo(object): deleted = None modified = None modified_with_info = None class Modificationstamp(object): """ ModificationStamp() ModificationStamp(LocalStamp: int,ServerStamp: int) """ @staticmethod def __new__(self, LocalStamp=None, ServerStamp=None): """ __new__(cls: type) __new__(cls: type,LocalStamp: int,ServerStamp: int) """ pass guid = property(lambda self: object(), lambda self, v: None, lambda self: None) 'Get: Guid(self: ModificationStamp) -> str\n\n\n\n' local_stamp = property(lambda self: object(), lambda self, v: None, lambda self: None) 'Get: LocalStamp(self: ModificationStamp) -> int\n\n\n\nSet: LocalStamp(self: ModificationStamp)=value\n\n' server_stamp = property(lambda self: object(), lambda self, v: None, lambda self: None) 'Get: ServerStamp(self: ModificationStamp) -> int\n\n\n\nSet: ServerStamp(self: ModificationStamp)=value\n\n' class Modifiedobjectinfo(object): is_attribute_changed = None is_created = None is_modified = None is_numbering_changed = None model_object = None
# dividebyzero.py """Simple exception handling example.""" while True: # attempt to convert and divide values try: number1 = int(input('Enter numerator: ')) number2 = int(input('Enter denominator: ')) result = number1 / number2 except ValueError: # tried to convert non-numeric value to int print('You must enter two integers\n') except ZeroDivisionError: # denominator was 0 print('Attempted to divide by zero\n') else: # executes only if no exceptions occur print(f'{number1:.3f} / {number2:.3f} = {result:.3f}') break # terminate the loop ########################################################################## # (C) Copyright 2019 by Deitel & Associates, Inc. and # # Pearson Education, Inc. All Rights Reserved. # # # # DISCLAIMER: The authors and publisher of this book have used their # # best efforts in preparing the book. These efforts include the # # development, research, and testing of the theories and programs # # to determine their effectiveness. The authors and publisher make # # no warranty of any kind, expressed or implied, with regard to these # # programs or to the documentation contained in these books. The authors # # and publisher shall not be liable in any event for incidental or # # consequential damages in connection with, or arising out of, the # # furnishing, performance, or use of these programs. # ##########################################################################
"""Simple exception handling example.""" while True: try: number1 = int(input('Enter numerator: ')) number2 = int(input('Enter denominator: ')) result = number1 / number2 except ValueError: print('You must enter two integers\n') except ZeroDivisionError: print('Attempted to divide by zero\n') else: print(f'{number1:.3f} / {number2:.3f} = {result:.3f}') break
try: with open('../../.password/google-maps/api', 'r') as fp: key = fp.readlines() key = ''.join(key) except: # Insert your API key here key = 'AIzaSyDxydKN7Yt54JNmVw9opg9EcibCghjetgw'
try: with open('../../.password/google-maps/api', 'r') as fp: key = fp.readlines() key = ''.join(key) except: key = 'AIzaSyDxydKN7Yt54JNmVw9opg9EcibCghjetgw'
#SOLUTION FOR P20 '''P20 (*) Remove the K'th element from a list. Example: * (remove-at '(a b c d) 2) (A C D)''' my_list = ['a','b','c','d','e'] pos= int(input('Element to remove = ')) if pos <= len(my_list): #CHECK IF INPUT IS IN RANGE my_list.pop(pos-1) #REMOVE THE ELEMENT AT GIVEN INDEX print(my_list) #PRINT THE LIST else: print('Invalid input ')
"""P20 (*) Remove the K'th element from a list. Example: * (remove-at '(a b c d) 2) (A C D)""" my_list = ['a', 'b', 'c', 'd', 'e'] pos = int(input('Element to remove = ')) if pos <= len(my_list): my_list.pop(pos - 1) print(my_list) else: print('Invalid input ')
class PairSet(object): __slots__ = '_data', def __init__(self): self._data = set() def __contains__(self, item): return item in self._data def has(self, a, b): return (a, b) in self._data def add(self, a, b): self._data.add((a, b)) self._data.add((b, a)) return self def remove(self, a, b): self._data.discard((a, b)) self._data.discard((b, a))
class Pairset(object): __slots__ = ('_data',) def __init__(self): self._data = set() def __contains__(self, item): return item in self._data def has(self, a, b): return (a, b) in self._data def add(self, a, b): self._data.add((a, b)) self._data.add((b, a)) return self def remove(self, a, b): self._data.discard((a, b)) self._data.discard((b, a))
class TreeNode: def __init__(self, x): self.val = x self.left = None self.right = None class Solution: def count_unival_subtrees(self, root: TreeNode) -> int: self.count = 0 self.is_unival(root) return self.count def is_unival(self, root: TreeNode) -> bool: # Leaf Node must be an Univalue Tree, return True if root is None: return True # Traverse tree with DFS left = self.is_unival(root.left) right = self.is_unival(root.right) # If both children are Univalue Tree and root.value is # equal to both children's values. Then the tree of root # node is an Univalue Tree if left and right: if (root.left is not None) and (root.val != root.left.val): return False if (root.right is not None) and (root.val != root.right.val): return False self.count += 1 return True return False
class Treenode: def __init__(self, x): self.val = x self.left = None self.right = None class Solution: def count_unival_subtrees(self, root: TreeNode) -> int: self.count = 0 self.is_unival(root) return self.count def is_unival(self, root: TreeNode) -> bool: if root is None: return True left = self.is_unival(root.left) right = self.is_unival(root.right) if left and right: if root.left is not None and root.val != root.left.val: return False if root.right is not None and root.val != root.right.val: return False self.count += 1 return True return False
class Node: def __init__(self, data): self.data = data self.next = None class LinkedList: def __init__(self): self.head = None def push(self, new_data): new_node = Node(new_data) new_node.next = self.head self.head = new_node def getNth(self, llist, position): llist.getNthNode(self.head, position, llist) def getNthNode(self, head, position, llist): count = 0 if(head): if count == position: print(head.data) else: llist.getNthNode(head.next, position - 1, llist) else: print("Index Doesn't Exist") if __name__ == "__main__": llist = LinkedList() llist.push(5) llist.push(6) llist.push(98) llist.push(3) llist.push(1) llist.push(10) print("Element at Index 4 is:", end=" ") llist.getNth(llist, 4)
class Node: def __init__(self, data): self.data = data self.next = None class Linkedlist: def __init__(self): self.head = None def push(self, new_data): new_node = node(new_data) new_node.next = self.head self.head = new_node def get_nth(self, llist, position): llist.getNthNode(self.head, position, llist) def get_nth_node(self, head, position, llist): count = 0 if head: if count == position: print(head.data) else: llist.getNthNode(head.next, position - 1, llist) else: print("Index Doesn't Exist") if __name__ == '__main__': llist = linked_list() llist.push(5) llist.push(6) llist.push(98) llist.push(3) llist.push(1) llist.push(10) print('Element at Index 4 is:', end=' ') llist.getNth(llist, 4)
# Configuration file for the Sphinx documentation builder. # # This file only contains a selection of the most common options. For a full # list see the documentation: # https://www.sphinx-doc.org/en/master/usage/configuration.html # -- Path setup -------------------------------------------------------------- # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. # # import os # import sys # sys.path.insert(0, os.path.abspath('.')) # -- Project information ----------------------------------------------------- project = 'elasticsearch-objects-operator' copyright = '2020, 90poe & elasticsearch-objects-operator development tean' author = 'elasticsearch-objects-operator development team' # -- General configuration --------------------------------------------------- # Add any Sphinx extension module names here, as strings. They can be # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. extensions = [ 'recommonmark', 'sphinx_markdown_tables', ] # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. # This pattern also affects html_static_path and html_extra_path. exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] # -- Options for HTML output ------------------------------------------------- # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. # html_theme = 'sphinx_rtd_theme' # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". html_static_path = ['_static'] # The suffix(es) of source filenames. # You can specify multiple suffix as a list of string: # source_suffix = ['.rst', '.md'] # The master toctree document. master_doc = 'index' pygments_style = 'sphinx' # Output file base name for HTML help builder. htmlhelp_basename = 'elasticsearch-objects-operatordoc' # One entry per manual page. List of tuples # (source start file, name, description, authors, manual section). man_pages = [ (master_doc, 'elasticsearch-objects-operator', 'elasticsearch-objects-operator Documentation', [author], 1) ] # Grouping the document tree into Texinfo files. List of tuples # (source start file, target name, title, author, # dir menu entry, description, category) texinfo_documents = [ (master_doc, 'elasticsearch-objects-operator', 'elasticsearch-objects-operator Documentation', author, 'elasticsearch-objects-operator', 'One line description of project.', 'Miscellaneous'), ] def setup(app): app.add_stylesheet('custom.css')
project = 'elasticsearch-objects-operator' copyright = '2020, 90poe & elasticsearch-objects-operator development tean' author = 'elasticsearch-objects-operator development team' extensions = ['recommonmark', 'sphinx_markdown_tables'] templates_path = ['_templates'] exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] html_theme = 'sphinx_rtd_theme' html_static_path = ['_static'] source_suffix = ['.rst', '.md'] master_doc = 'index' pygments_style = 'sphinx' htmlhelp_basename = 'elasticsearch-objects-operatordoc' man_pages = [(master_doc, 'elasticsearch-objects-operator', 'elasticsearch-objects-operator Documentation', [author], 1)] texinfo_documents = [(master_doc, 'elasticsearch-objects-operator', 'elasticsearch-objects-operator Documentation', author, 'elasticsearch-objects-operator', 'One line description of project.', 'Miscellaneous')] def setup(app): app.add_stylesheet('custom.css')
def draw_line(tick_length, tick_label=""): line = "-" * tick_length if tick_label: line += " " + tick_label print(line) def draw_interval(center_length): if center_length > 0: draw_interval(center_length - 1) draw_line(center_length) draw_interval(center_length - 1) def draw_ruler(num_inches, major_length): draw_line(major_length, "0") for i in range(1, 1 + num_inches): draw_interval(major_length - 1) draw_line(major_length, str(i)) if __name__ == '__main__': draw_ruler(1, 3) draw_ruler(1, 4)
def draw_line(tick_length, tick_label=''): line = '-' * tick_length if tick_label: line += ' ' + tick_label print(line) def draw_interval(center_length): if center_length > 0: draw_interval(center_length - 1) draw_line(center_length) draw_interval(center_length - 1) def draw_ruler(num_inches, major_length): draw_line(major_length, '0') for i in range(1, 1 + num_inches): draw_interval(major_length - 1) draw_line(major_length, str(i)) if __name__ == '__main__': draw_ruler(1, 3) draw_ruler(1, 4)
class TrainConfig(typing.NamedTuple): T: int train_size: int batch_size: int loss_func: typing.Callable class TrainData(typing.NamedTuple): feats: np.ndarray targs: np.ndarray DaRnnNet = collections.namedtuple("DaRnnNet", ["encoder", "decoder", "enc_opt", "dec_opt"])
class Trainconfig(typing.NamedTuple): t: int train_size: int batch_size: int loss_func: typing.Callable class Traindata(typing.NamedTuple): feats: np.ndarray targs: np.ndarray da_rnn_net = collections.namedtuple('DaRnnNet', ['encoder', 'decoder', 'enc_opt', 'dec_opt'])
class SqsWorkerBaseException(Exception): """ All worker exceptions should derived from this base exception """ class WorkerAbortSilently(SqsWorkerBaseException): """ Called when the worker finds a condition that requires to abort the task, but without reporting as an actual code error """ class WorkerInternalError(SqsWorkerBaseException): """ Called when the worker catches an unrecoverable exceptions When this happens, we want to restart worker """ class WorkerActionHardError(SqsWorkerBaseException): """ Called when the worker catches a specific exception on its action This should represent an unexpected but handled exception for the given Action This error will delete the current SQS message """ class WorkerActionSoftError(SqsWorkerBaseException): """ Called when the worker catches a specific exception on its action This should represent an unexpected but handled exception for the given Action This error will NOT delete the current SQS message, so the message will be requeue """ class HaltAndCatchFire(SqsWorkerBaseException): """ Not really an exception, this is used to force a shut down procedure The handler will delete the SQS message and then sleep for 90min, allowing the worker to be killed Ref: https://en.wikipedia.org/wiki/Halt_and_Catch_Fire """
class Sqsworkerbaseexception(Exception): """ All worker exceptions should derived from this base exception """ class Workerabortsilently(SqsWorkerBaseException): """ Called when the worker finds a condition that requires to abort the task, but without reporting as an actual code error """ class Workerinternalerror(SqsWorkerBaseException): """ Called when the worker catches an unrecoverable exceptions When this happens, we want to restart worker """ class Workeractionharderror(SqsWorkerBaseException): """ Called when the worker catches a specific exception on its action This should represent an unexpected but handled exception for the given Action This error will delete the current SQS message """ class Workeractionsofterror(SqsWorkerBaseException): """ Called when the worker catches a specific exception on its action This should represent an unexpected but handled exception for the given Action This error will NOT delete the current SQS message, so the message will be requeue """ class Haltandcatchfire(SqsWorkerBaseException): """ Not really an exception, this is used to force a shut down procedure The handler will delete the SQS message and then sleep for 90min, allowing the worker to be killed Ref: https://en.wikipedia.org/wiki/Halt_and_Catch_Fire """
__author__ = 'matti' class Config(object): DEBUG = False TESTING = False SQLALCHEMY_DATABASE_URI = 'postgresql://postgres:testipassu@localhost/gachimuchio' class DebugConfig(Config): DEBUG = True
__author__ = 'matti' class Config(object): debug = False testing = False sqlalchemy_database_uri = 'postgresql://postgres:testipassu@localhost/gachimuchio' class Debugconfig(Config): debug = True
phrase = "Awana Academy" print("Awana\nAcademy") print("Awana\"Academy") print("Awana\Academy") print(phrase + " is cool") print(phrase.capitalize()) print(phrase.lower()) print(phrase.upper()) print(phrase.isupper()) print(phrase.upper().isupper()) print(len(phrase)) print(phrase[0]) print(phrase.index("A")) print(phrase.index("na")) print(phrase.replace("Awana", "Diamondtia" ))
phrase = 'Awana Academy' print('Awana\nAcademy') print('Awana"Academy') print('Awana\\Academy') print(phrase + ' is cool') print(phrase.capitalize()) print(phrase.lower()) print(phrase.upper()) print(phrase.isupper()) print(phrase.upper().isupper()) print(len(phrase)) print(phrase[0]) print(phrase.index('A')) print(phrase.index('na')) print(phrase.replace('Awana', 'Diamondtia'))
#!/usr/bin/env python3 with open('AUTHORS', 'r') as authors_file: authors = list(sorted([x.strip() for x in authors_file])) with open('Qiskit.bib', 'w') as fd: fd.write("@misc{ Qiskit,\n") fd.write(' author = {%s},\n' % ' and '.join(authors)) fd.write(' title = {Qiskit: the Quantum Information Science Kit},\n') fd.write(' year = {2019},\n}\n')
with open('AUTHORS', 'r') as authors_file: authors = list(sorted([x.strip() for x in authors_file])) with open('Qiskit.bib', 'w') as fd: fd.write('@misc{ Qiskit,\n') fd.write(' author = {%s},\n' % ' and '.join(authors)) fd.write(' title = {Qiskit: the Quantum Information Science Kit},\n') fd.write(' year = {2019},\n}\n')
# Copyright 2019, Oath Inc. # Licensed under the terms of the Apache 2.0 license. See the LICENSE file in the project root for terms """ Screwdrivercd wrappers and utilities to perform code validation """ __all__ = ['validate_dependencies', 'validate_package_quality', 'validate_style', 'validate_type', 'validate_unittest']
""" Screwdrivercd wrappers and utilities to perform code validation """ __all__ = ['validate_dependencies', 'validate_package_quality', 'validate_style', 'validate_type', 'validate_unittest']
#while loop temp = 0 while(temp < 20): temp+=1 if(temp>10): print(temp,"> 10") print(temp) # for loops colors = ['yellow','white','blue','magenta','red'] for color in colors: print(color) print(range(10)) for index in range(10): print(index)
temp = 0 while temp < 20: temp += 1 if temp > 10: print(temp, '> 10') print(temp) colors = ['yellow', 'white', 'blue', 'magenta', 'red'] for color in colors: print(color) print(range(10)) for index in range(10): print(index)
# alias to Bazel module `toolchains/cc` load("@rules_nixpkgs_cc//:foreign_cc.bzl", _nixpkgs_foreign_cc_configure = "nixpkgs_foreign_cc_configure") nixpkgs_foreign_cc_configure = _nixpkgs_foreign_cc_configure
load('@rules_nixpkgs_cc//:foreign_cc.bzl', _nixpkgs_foreign_cc_configure='nixpkgs_foreign_cc_configure') nixpkgs_foreign_cc_configure = _nixpkgs_foreign_cc_configure
def get_just_smaller(arr): just_smaller_array = [-1] * len(arr) stack = [] for i in range(len(arr) - 1, -1, -1): elem = arr[i] while len(stack) > 0 and elem < arr[stack[-1]]: index = stack.pop() just_smaller_array[index] = i stack.append(i) return just_smaller_array def solve(arr): if len(arr) == 0: return 0 just_small_left = get_just_smaller(arr) just_small_right = get_just_smaller(arr[::-1])[::-1] just_small_right = [len(arr) - i - 1 if i != -1 else len(arr) for i in just_small_right] max_area = -float('inf') for i, elem in enumerate(arr): left_index = just_small_left[i] right_index = just_small_right[i] width = right_index - left_index - 1 max_area = max(max_area, width * elem) return max_area A = [2, 1, 5, 6, 2, 3] print(solve(A))
def get_just_smaller(arr): just_smaller_array = [-1] * len(arr) stack = [] for i in range(len(arr) - 1, -1, -1): elem = arr[i] while len(stack) > 0 and elem < arr[stack[-1]]: index = stack.pop() just_smaller_array[index] = i stack.append(i) return just_smaller_array def solve(arr): if len(arr) == 0: return 0 just_small_left = get_just_smaller(arr) just_small_right = get_just_smaller(arr[::-1])[::-1] just_small_right = [len(arr) - i - 1 if i != -1 else len(arr) for i in just_small_right] max_area = -float('inf') for (i, elem) in enumerate(arr): left_index = just_small_left[i] right_index = just_small_right[i] width = right_index - left_index - 1 max_area = max(max_area, width * elem) return max_area a = [2, 1, 5, 6, 2, 3] print(solve(A))
""" CONTAINER WITH MOST WATER Given n non-negative integers a1, a2, ..., an , where each represents a point at coordinate (i, ai). n vertical lines are drawn such that the two endpoints of the line i is at (i, ai) and (i, 0). Find two lines, which, together with the x-axis forms a container, such that the container contains the most water. Notice that you may not slant the container. Example 1: Input: height = [1,8,6,2,5,4,8,3,7] Output: 49 Explanation: The above vertical lines are represented by array [1,8,6,2,5,4,8,3,7]. In this case, the max area of water (blue section) the container can contain is 49. Example 2: Input: height = [1,1] Output: 1 Example 3: Input: height = [4,3,2,1,4] Output: 16 Example 4: Input: height = [1,2,1] Output: 2 Constraints: n = height.length 2 <= n <= 3 * 104 0 <= height[i] <= 3 * 104 """ def maxArea(height): area = 0 """ # BRUTE FORCE APPROACH for i in range(len(height) - 1): for j in range(i+1, len(height)): areaTemp = min(height[i], height[j]) * (j - i) if areaTemp > area: area = areaTemp """ # TWO POINTER APPROACH i, j = 0, len(height) - 1 while i < j: areaT = min(height[i], height[j]) * (j - i) if areaT > area: area = areaT if height[i] < height[j]: i += 1 else: j -= 1 return area
""" CONTAINER WITH MOST WATER Given n non-negative integers a1, a2, ..., an , where each represents a point at coordinate (i, ai). n vertical lines are drawn such that the two endpoints of the line i is at (i, ai) and (i, 0). Find two lines, which, together with the x-axis forms a container, such that the container contains the most water. Notice that you may not slant the container. Example 1: Input: height = [1,8,6,2,5,4,8,3,7] Output: 49 Explanation: The above vertical lines are represented by array [1,8,6,2,5,4,8,3,7]. In this case, the max area of water (blue section) the container can contain is 49. Example 2: Input: height = [1,1] Output: 1 Example 3: Input: height = [4,3,2,1,4] Output: 16 Example 4: Input: height = [1,2,1] Output: 2 Constraints: n = height.length 2 <= n <= 3 * 104 0 <= height[i] <= 3 * 104 """ def max_area(height): area = 0 '\n # BRUTE FORCE APPROACH\n \n for i in range(len(height) - 1):\n for j in range(i+1, len(height)):\n areaTemp = min(height[i], height[j]) * (j - i)\n if areaTemp > area:\n area = areaTemp\n \n ' (i, j) = (0, len(height) - 1) while i < j: area_t = min(height[i], height[j]) * (j - i) if areaT > area: area = areaT if height[i] < height[j]: i += 1 else: j -= 1 return area
class CredentialsNotFound(Exception): """Credential files not found""" class MultipleFilesError(Exception): """More than one file matching the name given""" class NotFoundError(Exception): """Item not Found""" class FileExists(Exception): """File already exists""" class FolderExists(Exception): """Folder already exists"""
class Credentialsnotfound(Exception): """Credential files not found""" class Multiplefileserror(Exception): """More than one file matching the name given""" class Notfounderror(Exception): """Item not Found""" class Fileexists(Exception): """File already exists""" class Folderexists(Exception): """Folder already exists"""
class Empty(Exception): pass class ArrayStack: def __init__(self): self._data = [] def __len__(self): return len(self._data) def is_empty(self): return len(self._data) == 0 def push(self, e): self._data.append(e) def top(self): if self.is_empty(): raise Empty('Stack is empty') return self._data[-1] def pop(self): if self.is_empty(): raise Empty('Stack is empty') return self._data.pop[-1]
class Empty(Exception): pass class Arraystack: def __init__(self): self._data = [] def __len__(self): return len(self._data) def is_empty(self): return len(self._data) == 0 def push(self, e): self._data.append(e) def top(self): if self.is_empty(): raise empty('Stack is empty') return self._data[-1] def pop(self): if self.is_empty(): raise empty('Stack is empty') return self._data.pop[-1]
class WorklogError(ValueError): pass class CommandError(WorklogError): pass class GitError(WorklogError): pass
class Worklogerror(ValueError): pass class Commanderror(WorklogError): pass class Giterror(WorklogError): pass
# https://www.freecodecamp.org/learn/scientific-computing-with-python/scientific-computing-with-python-projects/time-calculator # https://replit.com/@harmonify/time-calculator#time_calculator.py def add_time(base: str, addon: str, dow: str = "") -> str: DAYS_OF_WEEK = ("Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday") base_arr = base.split() base_hour, base_minute = map(int, base_arr[0].split(":")) meridiem = base_arr[1] addon_hour, addon_minute = map(int, addon.split(":")) addon_day = 0 minutes = (base_minute + addon_minute) % 60 total_hours = base_hour + addon_hour + (base_minute+addon_minute)//60 hours = 12 if total_hours % 12 == 0 else total_hours % 12 # if change meridiem if total_hours // 12 % 2 != 0: if meridiem == "AM": meridiem = "PM" else: addon_day += 1 meridiem = "AM" addon_day += total_hours // 24 if addon_day == 1: day = '(next day)' elif addon_day > 1: day = f"({addon_day} days later)" else: day = "" if dow: dow = ", " + DAYS_OF_WEEK[(DAYS_OF_WEEK.index( dow.capitalize()) + addon_day) % 7] return f"{hours}:{minutes:02} {meridiem}{dow} {day}".rstrip() def main(args=None): print(add_time("3:00 PM", "3:10")) # Returns: 6:10 PM print(add_time("5:01 AM", "0:00") == '5:01 AM') # Returns: 5:01 AM print(add_time("11:30 AM", "2:32", "Monday")) # Returns: 2:02 PM, Monday print(add_time("11:43 AM", "00:20")) # Returns: 12:03 PM print(add_time("10:10 PM", "3:30")) # Returns: 1:40 AM (next day) print(add_time("11:43 PM", "24:20", "tueSday")) # Returns: 12:03 AM, Thursday (2 days later) print(add_time("6:30 PM", "205:12")) # Returns: 7:42 AM (9 days later) if __name__ == '__main__': main()
def add_time(base: str, addon: str, dow: str='') -> str: days_of_week = ('Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', 'Sunday') base_arr = base.split() (base_hour, base_minute) = map(int, base_arr[0].split(':')) meridiem = base_arr[1] (addon_hour, addon_minute) = map(int, addon.split(':')) addon_day = 0 minutes = (base_minute + addon_minute) % 60 total_hours = base_hour + addon_hour + (base_minute + addon_minute) // 60 hours = 12 if total_hours % 12 == 0 else total_hours % 12 if total_hours // 12 % 2 != 0: if meridiem == 'AM': meridiem = 'PM' else: addon_day += 1 meridiem = 'AM' addon_day += total_hours // 24 if addon_day == 1: day = '(next day)' elif addon_day > 1: day = f'({addon_day} days later)' else: day = '' if dow: dow = ', ' + DAYS_OF_WEEK[(DAYS_OF_WEEK.index(dow.capitalize()) + addon_day) % 7] return f'{hours}:{minutes:02} {meridiem}{dow} {day}'.rstrip() def main(args=None): print(add_time('3:00 PM', '3:10')) print(add_time('5:01 AM', '0:00') == '5:01 AM') print(add_time('11:30 AM', '2:32', 'Monday')) print(add_time('11:43 AM', '00:20')) print(add_time('10:10 PM', '3:30')) print(add_time('11:43 PM', '24:20', 'tueSday')) print(add_time('6:30 PM', '205:12')) if __name__ == '__main__': main()
# 3.6 Excel Spreadsheet - Column Number to Column Name def excel_column_number_to_name(column_number): output = '' index = column_number - 1 while index >= 0: character = chr((index % 26) + ord('A')) output = output + character index = (index / 26) - 1 return output[::-1]
def excel_column_number_to_name(column_number): output = '' index = column_number - 1 while index >= 0: character = chr(index % 26 + ord('A')) output = output + character index = index / 26 - 1 return output[::-1]
class collision(): def rectangle(x, y, target_x, target_y, width=32, height=32, target_width=32, target_height=32): # Assuming width/height is *dangerous* since this library might give false-positives. if x >= target_x and (x + width) <= (target_x + target_width): if y >= target_y and (y + height) <= (target_y + target_height): return True return False
class Collision: def rectangle(x, y, target_x, target_y, width=32, height=32, target_width=32, target_height=32): if x >= target_x and x + width <= target_x + target_width: if y >= target_y and y + height <= target_y + target_height: return True return False
""" Copyright (c) 2014, Anders S. Christensen, All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. """ # First parameter is max uptake for this bin # Second parameter is alpha # Third parameter is beta model1 = [[ 0.33, 68.11, 2.73], [ 0.67, 0.31, 0.96], [ 1.00, 0.54, 2.24]] model2 = [[ 0.25, 0.05, 0.03], [ 0.60, 1.00, 0.30], [ 0.75, 0.62, 1.05], [ 1.00, 0.53, 2.30]] model3 = [[0.20, 0.08, 0.03], [0.40, 0.92, 0.33], [0.60, 0.37, 0.66], [0.80, 0.25, 1.28], [1.00, 0.13, 1.63]]
""" Copyright (c) 2014, Anders S. Christensen, All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. """ model1 = [[0.33, 68.11, 2.73], [0.67, 0.31, 0.96], [1.0, 0.54, 2.24]] model2 = [[0.25, 0.05, 0.03], [0.6, 1.0, 0.3], [0.75, 0.62, 1.05], [1.0, 0.53, 2.3]] model3 = [[0.2, 0.08, 0.03], [0.4, 0.92, 0.33], [0.6, 0.37, 0.66], [0.8, 0.25, 1.28], [1.0, 0.13, 1.63]]
# THIS FILE IS GENERATED FROM pytsrepr SETUP.PY short_version = '0.0.1' version = '0.0.1' full_version = '0.0.1.dev0+Unknown' git_revision = 'Unknown' release = False if not release: version = full_version
short_version = '0.0.1' version = '0.0.1' full_version = '0.0.1.dev0+Unknown' git_revision = 'Unknown' release = False if not release: version = full_version
#!/usr/bin/python class Employee: empCount = 0 def __init__(self, name, salary, age): self.name = name self.salary = salary self.age = age Employee.empCount += 1 def displayCount(self): print ("Total Employee %d" % Employee.empCount) def displayEmployee(self): print ("Name : ", self.name, ", Salary: ", self.salary, ", Age: ", self.age) emp1 = Employee("Zara", 2000, 45) emp2 = Employee("Manni", 5000, 32) emp3 = Employee("Ram", 4500, 56) emp1.displayEmployee() emp2.displayEmployee() emp3.displayEmployee() print ("Total Employee %d" % Employee.empCount)
class Employee: emp_count = 0 def __init__(self, name, salary, age): self.name = name self.salary = salary self.age = age Employee.empCount += 1 def display_count(self): print('Total Employee %d' % Employee.empCount) def display_employee(self): print('Name : ', self.name, ', Salary: ', self.salary, ', Age: ', self.age) emp1 = employee('Zara', 2000, 45) emp2 = employee('Manni', 5000, 32) emp3 = employee('Ram', 4500, 56) emp1.displayEmployee() emp2.displayEmployee() emp3.displayEmployee() print('Total Employee %d' % Employee.empCount)
class Solution(object): def maxDistance(self, grid): """ :type grid: List[List[int]] :rtype: int """ N, M = len(grid), len(grid[0]) if grid else 0 def around(r,c, val): """return valid cells around (r, c) whose values are equal to val""" for (rr,cc) in ((r+1, c), (r-1, c), (r, c+1), (r, c-1)): if 0<=rr<N and 0<=cc<M and grid[rr][cc]==val: yield (rr, cc) # mark the grid with SEEN values SEEN = 2 # frontier. initially land-cells f = [] for r in range(N): for c in range(M): if grid[r][c]: f.append((r,c)) # new frontier nf = [] if not f: # no land cells return -1 # distance away from land for the current frontier. dst = 0 # BFS while f: while f: r, c = f.pop() for cell in around(r, c, 0): rr, cc = cell grid[rr][cc] = SEEN nf.append(cell) f, nf = nf, f if f: dst += 1 return dst or -1
class Solution(object): def max_distance(self, grid): """ :type grid: List[List[int]] :rtype: int """ (n, m) = (len(grid), len(grid[0]) if grid else 0) def around(r, c, val): """return valid cells around (r, c) whose values are equal to val""" for (rr, cc) in ((r + 1, c), (r - 1, c), (r, c + 1), (r, c - 1)): if 0 <= rr < N and 0 <= cc < M and (grid[rr][cc] == val): yield (rr, cc) seen = 2 f = [] for r in range(N): for c in range(M): if grid[r][c]: f.append((r, c)) nf = [] if not f: return -1 dst = 0 while f: while f: (r, c) = f.pop() for cell in around(r, c, 0): (rr, cc) = cell grid[rr][cc] = SEEN nf.append(cell) (f, nf) = (nf, f) if f: dst += 1 return dst or -1
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ Section 4: Region Borders """ def B23p_T(T): """function B23p_T = B23p_T(T) Section 4.1 Boundary between region 2 and 3. Release on the IAPWS Industrial formulation 1997 for the Thermodynamic Properties of Water and Steam 1997 Section 4 Auxiliary Equation for the Boundary between Regions 2 and 3 Eq 5, Page 5 """ return 348.05185628969 - 1.1671859879975 * T + 1.0192970039326E-03 * (T ** 2) def B23T_p(p): """function B23T_p = B23T_p(p) Section 4.1 Boundary between region 2 and 3. Release on the IAPWS Industrial formulation 1997 for the Thermodynamic Properties of Water and Steam 1997 Section 4 Auxiliary Equation for the Boundary between Regions 2 and 3 Eq 6, Page 6 """ return 572.54459862746 + ((p - 13.91883977887) / 1.0192970039326E-03) ** 0.5 def p3sat_h(h): """function p3sat_h = p3sat_h(h) Section 4.2 Region 3. pSat_h & pSat_s Revised Supplementary Release on Backward Equations for the functions T(p,h), v(p,h) s& T(p,s), v(p,s) for Region 3 of the IAPWS Industrial formulation 1997 for the Thermodynamic Properties of Water & Steam 2004 Section 4 Boundary Equations psat(h) & psat(s) for the Saturation Lines of Region 3 See pictures Page 17, Eq 10, Table 17, Page 18 """ Ii = [0, 1, 1, 1, 1, 5, 7, 8, 14, 20, 22, 24, 28, 36] Ji = [0, 1, 3, 4, 36, 3, 0, 24, 16, 16, 3, 18, 8, 24] ni = [0.600073641753024, -9.36203654849857, 24.6590798594147, -107.014222858224, -91582131580576.8, -8623.32011700662, -23.5837344740032, 2.52304969384128E+17, -3.89718771997719E+18, -3.33775713645296E+22, 35649946963.6328, -1.48547544720641E+26, 3.30611514838798E+18, 8.13641294467829E+37] hs = h / 2600 ps = 0 for i in range(0, 14): ps = ps + ni[i] * (hs - 1.02) ** Ii[i] * (hs - 0.608) ** Ji[i] return ps * 22 def p3sat_s(s): """function p3sat_s = p3sat_s(s) Section 4.2 Region 3. pSat_h & pSat_s """ Ii = [0, 1, 1, 4, 12, 12, 16, 24, 28, 32] Ji = [0, 1, 32, 7, 4, 14, 36, 10, 0, 18] ni = [0.639767553612785, -12.9727445396014, -2.24595125848403E+15, 1774667.41801846, 7170793495.71538, -3.78829107169011E+17, -9.55586736431328E+34, 1.87269814676188E+23, 119254746466.473, 1.10649277244882E+36] Sigma = s / 5.2 Pi = 0 for i in range(0, 10): Pi = Pi + ni[i] * (Sigma - 1.03) ** Ii[i] * (Sigma - 0.699) ** Ji[i] return Pi * 22 def hB13_s(s): """function hB13_s = hB13_s(s) Section 4.3 Region boundary 1 to 3 & 3to2 as a functions of s Supplementary Release on Backward Equations ( ) , p h s for Region 3, Chapter 4.5 page 23. """ Ii = [0, 1, 1, 3, 5, 6] Ji = [0, -2, 2, -12, -4, -3] ni = [0.913965547600543, -4.30944856041991E-05, 60.3235694765419, 1.17518273082168E-18, 0.220000904781292, -69.0815545851641] Sigma = s / 3.8 eta = 0 for i in range(0, 6): eta = eta + ni[i] * (Sigma - 0.884) ** Ii[i] * (Sigma - 0.864) ** Ji[i] return eta * 1700 def TB23_hs(h, s): """function TB23_hs = TB23_hs(h, s) Section 4.3 Region boundary 1to3 & 3to2 as a functions of s Supplementary Release on Backward Equations () , p h s for Region 3, Chapter 4.6 page 25. """ Ii = [-12, -10, -8, -4, -3, -2, -2, -2, -2, 0, 1, 1, 1, 3, 3, 5, 6, 6, 8, 8, 8, 12, 12, 14, 14] Ji = [10, 8, 3, 4, 3, -6, 2, 3, 4, 0, -3, -2, 10, -2, -1, -5, -6, -3, -8, -2, -1, -12, -1, -12, 1] ni = [6.2909626082981E-04, -8.23453502583165E-04, 5.15446951519474E-08, -1.17565945784945, 3.48519684726192, -5.07837382408313E-12, -2.84637670005479, -2.36092263939673, 6.01492324973779, 1.48039650824546, 3.60075182221907E-04, -1.26700045009952E-02, -1221843.32521413, 0.149276502463272, 0.698733471798484, -2.52207040114321E-02, 1.47151930985213E-02, -1.08618917681849, -9.36875039816322E-04, 81.9877897570217, -182.041861521835, 2.61907376402688E-06, -29162.6417025961, 1.40660774926165E-05, 7832370.62349385] Sigma = s / 5.3 eta = h / 3000 teta = 0 for i in range(0, 25): teta = teta + ni[i] * (eta - 0.727) ** Ii[i] * (Sigma - 0.864) ** Ji[i] return teta * 900
""" Section 4: Region Borders """ def b23p_t(T): """function B23p_T = B23p_T(T) Section 4.1 Boundary between region 2 and 3. Release on the IAPWS Industrial formulation 1997 for the Thermodynamic Properties of Water and Steam 1997 Section 4 Auxiliary Equation for the Boundary between Regions 2 and 3 Eq 5, Page 5 """ return 348.05185628969 - 1.1671859879975 * T + 0.0010192970039326 * T ** 2 def b23_t_p(p): """function B23T_p = B23T_p(p) Section 4.1 Boundary between region 2 and 3. Release on the IAPWS Industrial formulation 1997 for the Thermodynamic Properties of Water and Steam 1997 Section 4 Auxiliary Equation for the Boundary between Regions 2 and 3 Eq 6, Page 6 """ return 572.54459862746 + ((p - 13.91883977887) / 0.0010192970039326) ** 0.5 def p3sat_h(h): """function p3sat_h = p3sat_h(h) Section 4.2 Region 3. pSat_h & pSat_s Revised Supplementary Release on Backward Equations for the functions T(p,h), v(p,h) s& T(p,s), v(p,s) for Region 3 of the IAPWS Industrial formulation 1997 for the Thermodynamic Properties of Water & Steam 2004 Section 4 Boundary Equations psat(h) & psat(s) for the Saturation Lines of Region 3 See pictures Page 17, Eq 10, Table 17, Page 18 """ ii = [0, 1, 1, 1, 1, 5, 7, 8, 14, 20, 22, 24, 28, 36] ji = [0, 1, 3, 4, 36, 3, 0, 24, 16, 16, 3, 18, 8, 24] ni = [0.600073641753024, -9.36203654849857, 24.6590798594147, -107.014222858224, -91582131580576.8, -8623.32011700662, -23.5837344740032, 2.52304969384128e+17, -3.89718771997719e+18, -3.33775713645296e+22, 35649946963.6328, -1.48547544720641e+26, 3.30611514838798e+18, 8.13641294467829e+37] hs = h / 2600 ps = 0 for i in range(0, 14): ps = ps + ni[i] * (hs - 1.02) ** Ii[i] * (hs - 0.608) ** Ji[i] return ps * 22 def p3sat_s(s): """function p3sat_s = p3sat_s(s) Section 4.2 Region 3. pSat_h & pSat_s """ ii = [0, 1, 1, 4, 12, 12, 16, 24, 28, 32] ji = [0, 1, 32, 7, 4, 14, 36, 10, 0, 18] ni = [0.639767553612785, -12.9727445396014, -2245951258484030.0, 1774667.41801846, 7170793495.71538, -3.78829107169011e+17, -9.55586736431328e+34, 1.87269814676188e+23, 119254746466.473, 1.10649277244882e+36] sigma = s / 5.2 pi = 0 for i in range(0, 10): pi = Pi + ni[i] * (Sigma - 1.03) ** Ii[i] * (Sigma - 0.699) ** Ji[i] return Pi * 22 def h_b13_s(s): """function hB13_s = hB13_s(s) Section 4.3 Region boundary 1 to 3 & 3to2 as a functions of s Supplementary Release on Backward Equations ( ) , p h s for Region 3, Chapter 4.5 page 23. """ ii = [0, 1, 1, 3, 5, 6] ji = [0, -2, 2, -12, -4, -3] ni = [0.913965547600543, -4.30944856041991e-05, 60.3235694765419, 1.17518273082168e-18, 0.220000904781292, -69.0815545851641] sigma = s / 3.8 eta = 0 for i in range(0, 6): eta = eta + ni[i] * (Sigma - 0.884) ** Ii[i] * (Sigma - 0.864) ** Ji[i] return eta * 1700 def tb23_hs(h, s): """function TB23_hs = TB23_hs(h, s) Section 4.3 Region boundary 1to3 & 3to2 as a functions of s Supplementary Release on Backward Equations () , p h s for Region 3, Chapter 4.6 page 25. """ ii = [-12, -10, -8, -4, -3, -2, -2, -2, -2, 0, 1, 1, 1, 3, 3, 5, 6, 6, 8, 8, 8, 12, 12, 14, 14] ji = [10, 8, 3, 4, 3, -6, 2, 3, 4, 0, -3, -2, 10, -2, -1, -5, -6, -3, -8, -2, -1, -12, -1, -12, 1] ni = [0.00062909626082981, -0.000823453502583165, 5.15446951519474e-08, -1.17565945784945, 3.48519684726192, -5.07837382408313e-12, -2.84637670005479, -2.36092263939673, 6.01492324973779, 1.48039650824546, 0.000360075182221907, -0.0126700045009952, -1221843.32521413, 0.149276502463272, 0.698733471798484, -0.0252207040114321, 0.0147151930985213, -1.08618917681849, -0.000936875039816322, 81.9877897570217, -182.041861521835, 2.61907376402688e-06, -29162.6417025961, 1.40660774926165e-05, 7832370.62349385] sigma = s / 5.3 eta = h / 3000 teta = 0 for i in range(0, 25): teta = teta + ni[i] * (eta - 0.727) ** Ii[i] * (Sigma - 0.864) ** Ji[i] return teta * 900
class minHeap: harr=[] def parent(self,i): return (i-1)/2 def left(self,i): return ((2*i)+1) def right(self,i): return ((2*i)*2) def getMin(self): return self.harr[0] def replaceMax(self,x): self.harr[0]=x minHeapify(0) def __init__(self,arr,size): self.heapSize = size self.harr = arr self.i = (self.heapSize - 1)//2 while(self.i >= 0): minHeapify(self.i) def kthSmallest(arr,n,k): minHeap arr = [12,3,5,7,19] n = len(arr) kthSmallest(arr,n,k)
class Minheap: harr = [] def parent(self, i): return (i - 1) / 2 def left(self, i): return 2 * i + 1 def right(self, i): return 2 * i * 2 def get_min(self): return self.harr[0] def replace_max(self, x): self.harr[0] = x min_heapify(0) def __init__(self, arr, size): self.heapSize = size self.harr = arr self.i = (self.heapSize - 1) // 2 while self.i >= 0: min_heapify(self.i) def kth_smallest(arr, n, k): minHeap arr = [12, 3, 5, 7, 19] n = len(arr) kth_smallest(arr, n, k)
class Vet: animals = [] space = 5 def __init__(self, name): self.name = name self.animals = [] def register_animal(self, animal): if self.space <= len(self.animals): return f"Not enough space" self.animals.append(animal) Vet.animals.append(animal) return f"{animal} registered in the clinic" def unregister_animal(self, animal): if animal not in self.animals: return f"{animal} registered in the clinic" self.animals.remove(animal) Vet.animals.remove(animal) return f"{animal} unregistered successfully" def info(self): animals_count = len(self.animals) space_left = Vet.space - animals_count return f"{self.name} has {animals_count} animals. {space_left} space left in clinic" peter = Vet("Peter") george = Vet("George") print(peter.register_animal("Tom")) print(george.register_animal("Cory")) print(peter.register_animal("Fishy")) print(peter.register_animal("Bobby")) print(george.register_animal("Kay")) print(george.unregister_animal("Cory")) print(peter.register_animal("Silky")) print(peter.unregister_animal("Molly")) print(peter.unregister_animal("Tom")) print(peter.info()) print(george.info())
class Vet: animals = [] space = 5 def __init__(self, name): self.name = name self.animals = [] def register_animal(self, animal): if self.space <= len(self.animals): return f'Not enough space' self.animals.append(animal) Vet.animals.append(animal) return f'{animal} registered in the clinic' def unregister_animal(self, animal): if animal not in self.animals: return f'{animal} registered in the clinic' self.animals.remove(animal) Vet.animals.remove(animal) return f'{animal} unregistered successfully' def info(self): animals_count = len(self.animals) space_left = Vet.space - animals_count return f'{self.name} has {animals_count} animals. {space_left} space left in clinic' peter = vet('Peter') george = vet('George') print(peter.register_animal('Tom')) print(george.register_animal('Cory')) print(peter.register_animal('Fishy')) print(peter.register_animal('Bobby')) print(george.register_animal('Kay')) print(george.unregister_animal('Cory')) print(peter.register_animal('Silky')) print(peter.unregister_animal('Molly')) print(peter.unregister_animal('Tom')) print(peter.info()) print(george.info())
def solution(A): return 1 if __name__ == '__main__': print ('Start tests..') assert solution([1, 5, 2, 1, 4, 0]) == 1 print ('passed!')
def solution(A): return 1 if __name__ == '__main__': print('Start tests..') assert solution([1, 5, 2, 1, 4, 0]) == 1 print('passed!')
def generate_key_table(key): table=[] all_chars=['a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z'] for char in key: if char not in table: if char=='i': if 'j' not in table and 'i' not in table: table.append(char) elif char=='j': if 'i' not in table and 'j' not in table: table.append(char) else: table.append(char) for char in all_chars: if char=='i': if 'j' not in table and 'i' not in table: table.append(char) elif char=='j': if 'i' not in table and 'j' not in table: table.append(char) elif char not in table: table.append(char) key_table=[] for i in range(0,len(table),5): key_table.append(table[i:i+5]) return (key_table) def playfair_encryption(plain_text,key): key_table=generate_key_table(key) #playfair_encryption('instruments','monarchy')
def generate_key_table(key): table = [] all_chars = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z'] for char in key: if char not in table: if char == 'i': if 'j' not in table and 'i' not in table: table.append(char) elif char == 'j': if 'i' not in table and 'j' not in table: table.append(char) else: table.append(char) for char in all_chars: if char == 'i': if 'j' not in table and 'i' not in table: table.append(char) elif char == 'j': if 'i' not in table and 'j' not in table: table.append(char) elif char not in table: table.append(char) key_table = [] for i in range(0, len(table), 5): key_table.append(table[i:i + 5]) return key_table def playfair_encryption(plain_text, key): key_table = generate_key_table(key)
# https://www.hackerrank.com/challenges/30-sorting/problem # Inputs standard_input = """3 3 2 1""" num = int(input()) # 3 l = [int(s) for s in input().split()] # 3 2 1 swap_count = 0 for i in range(num): for j in range(num - i - 1): if l[j] > l[j + 1]: tmp = l[j] l[j] = l[j + 1] l[j + 1] = tmp swap_count += 1 print(f"Array is sorted in {swap_count} swaps.") print(f"First Element: {l[0]}") print(f"Last Element: {l[-1]}") # Array is sorted in 3 swaps. # First Element: 1 # Last Element: 3
standard_input = '3\n3 2 1' num = int(input()) l = [int(s) for s in input().split()] swap_count = 0 for i in range(num): for j in range(num - i - 1): if l[j] > l[j + 1]: tmp = l[j] l[j] = l[j + 1] l[j + 1] = tmp swap_count += 1 print(f'Array is sorted in {swap_count} swaps.') print(f'First Element: {l[0]}') print(f'Last Element: {l[-1]}')
# -*- coding: utf-8 -*- def import_oauth_class(m): m = m.split('.') c = m.pop(-1) module = __import__('.'.join(m), fromlist=[c]) return getattr(module, c)
def import_oauth_class(m): m = m.split('.') c = m.pop(-1) module = __import__('.'.join(m), fromlist=[c]) return getattr(module, c)
"""GrayScale package initialization module. The GrayScale package is designed to work with shades of gray, namely, it checks whether a color is a shade of gray and how many values need to be added to its components to make it so. The shades are taken from the RGB palette, and the color codes are written in a 16-digit number system. The package can be launched from the console as an independent program using the 'grayscale' command. It is also possible to set the -t (--test) and -e (--example) flags, which will start the execution of tests and examples of functions of the main module. For the correct operation of this package, the modules click, pytest and coverage are required. The first is necessary to provide a CLI for some modules of the package, the second is needed to run tests, the third is needed to check the code coverage with tests. In addition, the modules of this package import unittest module and functions from os, pathlib and doctest modules. Content: Main modules: - __init__ - package initialization - __main__ - ensuring the independent operation of the package - shades - contains functions for working with shades of gray Additional modules: - grayscale_example - contains examples of the functions of the main module (lies on the same level with the package) Subpackages: - tests - a package of tests of the functions of the main module """ __all__ = ['shades']
"""GrayScale package initialization module. The GrayScale package is designed to work with shades of gray, namely, it checks whether a color is a shade of gray and how many values need to be added to its components to make it so. The shades are taken from the RGB palette, and the color codes are written in a 16-digit number system. The package can be launched from the console as an independent program using the 'grayscale' command. It is also possible to set the -t (--test) and -e (--example) flags, which will start the execution of tests and examples of functions of the main module. For the correct operation of this package, the modules click, pytest and coverage are required. The first is necessary to provide a CLI for some modules of the package, the second is needed to run tests, the third is needed to check the code coverage with tests. In addition, the modules of this package import unittest module and functions from os, pathlib and doctest modules. Content: Main modules: - __init__ - package initialization - __main__ - ensuring the independent operation of the package - shades - contains functions for working with shades of gray Additional modules: - grayscale_example - contains examples of the functions of the main module (lies on the same level with the package) Subpackages: - tests - a package of tests of the functions of the main module """ __all__ = ['shades']
# coding=utf-8 """Fixtures for testing gmusicapi_wrapper.""" TEST_SONGS_1 = [ {'artist': 'Muse', 'album': 'Black Holes and Revelations', 'year': 2006, 'track_number': 1, 'title': 'Take a Bow'}, {'artist': 'Muse', 'album': 'Black Holes and Revelations', 'year': 2006, 'track_number': 2, 'title': 'Starlight'} ] TEST_SONGS_2 = [ {'artist': 'Muse', 'album': 'Black Holes and Revelations', 'year': 2006, 'track_number': 1, 'title': 'Take a Bow'} ]
"""Fixtures for testing gmusicapi_wrapper.""" test_songs_1 = [{'artist': 'Muse', 'album': 'Black Holes and Revelations', 'year': 2006, 'track_number': 1, 'title': 'Take a Bow'}, {'artist': 'Muse', 'album': 'Black Holes and Revelations', 'year': 2006, 'track_number': 2, 'title': 'Starlight'}] test_songs_2 = [{'artist': 'Muse', 'album': 'Black Holes and Revelations', 'year': 2006, 'track_number': 1, 'title': 'Take a Bow'}]
def init(): global white global black global red global green global fill global blue global yellow white = [255, 255, 255] black = [0, 0, 0] red = [204, 0, 0] green = [0, 153, 0] fill = [48, 48, 48] blue = [15, 176, 255] yellow = [255, 241, 27]
def init(): global white global black global red global green global fill global blue global yellow white = [255, 255, 255] black = [0, 0, 0] red = [204, 0, 0] green = [0, 153, 0] fill = [48, 48, 48] blue = [15, 176, 255] yellow = [255, 241, 27]
""" Source: Stack Abuse Exponential search depends on binary search to perform the final comparison of values. The algorithm works by: - Determining the range where the element we're looking for is likely to be - Using binary search for the range to find the exact index of the item """ def ExponentialSearch(lys, val): if lys[0] == val: return 0 index = 1 while index < len(lys) and lys[index] <= val: index = index * 2 return BinarySearch( arr[:min(index, len(lys))], val)
""" Source: Stack Abuse Exponential search depends on binary search to perform the final comparison of values. The algorithm works by: - Determining the range where the element we're looking for is likely to be - Using binary search for the range to find the exact index of the item """ def exponential_search(lys, val): if lys[0] == val: return 0 index = 1 while index < len(lys) and lys[index] <= val: index = index * 2 return binary_search(arr[:min(index, len(lys))], val)
""" Binary Tree Cameras You are given the root of a binary tree. We install cameras on the tree nodes where each camera at a node can monitor its parent, itself, and its immediate children. Return the minimum number of cameras needed to monitor all nodes of the tree. Example 1: Input: root = [0,0,null,0,0] Output: 1 Explanation: One camera is enough to monitor all nodes if placed as shown. Example 2: Input: root = [0,0,null,0,null,0,null,null,0] Output: 2 Explanation: At least two cameras are needed to monitor all nodes of the tree. The above image shows one of the valid configurations of camera placement. Constraints: The number of nodes in the tree is in the range [1, 1000]. Node.val == 0 """ # DFS """ One of the first realizations that we can make is that we never need to place a camera on a leaf, since it would always be better to place a camera on the node above a leaf. This should lead us to thinking that we need to start from the bottom of the binary tree and work our way up. This naturally calls for a depth first search (DFS) approach with a recursive helper function (dfs). We can navigate to the lowest part of the tree, then deal with placing cameras on the way back up the recursion stack, using the return values to pass information from child to parent. First, we should consider the different information that will be necessary to pass up to the parent about the child node, and in fact there are only three: - Nothing below needs monitoring. - A camera was placed below and can monitor the parent. - An unmonitored node below needs a camera placed above. The next challenge is to identify the different scenarios that we'll face once we've collected the values (val) of the children of the current node. Again, there are three scenarios: - No child needs monitoring, so hold off on placing a camera and instead return a value that indicates that the parent will have to place one. - One or more of the chidren need monitoring, so we will have to place a camera here. We'll want to return a value indicating that the parent will be monitored. - One of the children has a camera and the other child either has a camera or doesn't need monitoring (otherwise we would trigger the second scenario instead). This tree is fully monitored, but has no monitoring to provide to the parent; it will return the same value as a null branch. With all this in mind, we can let the return value indicate how we move from one state to another. At each node if the combined val from below is greater than 2, then we need to place a camera. If so we should increment our counter (ans) before moving on. One last tricky piece is the root node. If the root node returns a value indicating that it still needs a camera, we should add 1 to ans before we return it. """ """ Time Complexity: O(N) where N is the number of nodes in the binary tree Space Complexity: O(M) where M is the maximum depth of the binary tree, which can range up to N, for the recursion stack """ class TreeNode: def __init__(self, val=0, left=None, right=None): self.val = val self.left = left self.right = right class Solution: ans = 0 def minCameraCover(self, root: TreeNode) -> int: def dfs(node: TreeNode) -> int: if not node: return 0 val = dfs(node.left) + dfs(node.right) if val == 0: return 3 if val < 3: return 0 self.ans += 1 return 1 return self.ans + 1 if dfs(root) > 2 else self.ans
""" Binary Tree Cameras You are given the root of a binary tree. We install cameras on the tree nodes where each camera at a node can monitor its parent, itself, and its immediate children. Return the minimum number of cameras needed to monitor all nodes of the tree. Example 1: Input: root = [0,0,null,0,0] Output: 1 Explanation: One camera is enough to monitor all nodes if placed as shown. Example 2: Input: root = [0,0,null,0,null,0,null,null,0] Output: 2 Explanation: At least two cameras are needed to monitor all nodes of the tree. The above image shows one of the valid configurations of camera placement. Constraints: The number of nodes in the tree is in the range [1, 1000]. Node.val == 0 """ "\n\nOne of the first realizations that we can make is that we never need to \nplace a camera on a leaf, since it would always be better to place a \ncamera on the node above a leaf. This should lead us to thinking that \nwe need to start from the bottom of the binary tree and work our way up.\n\nThis naturally calls for a depth first search (DFS) approach with a \nrecursive helper function (dfs). We can navigate to the lowest part of \nthe tree, then deal with placing cameras on the way back up the recursion \nstack, using the return values to pass information from child to parent.\n\nFirst, we should consider the different information that will be necessary\nto pass up to the parent about the child node, and in fact there are only three:\n\n- Nothing below needs monitoring.\n- A camera was placed below and can monitor the parent.\n- An unmonitored node below needs a camera placed above.\n\nThe next challenge is to identify the different scenarios \nthat we'll face once we've collected the values (val) of the \nchildren of the current node. Again, there are three scenarios:\n\n- No child needs monitoring, so hold off on placing a camera and \ninstead return a value that indicates that the parent will have \nto place one.\n- One or more of the chidren need monitoring, so we will have \nto place a camera here. We'll want to return a value indicating \nthat the parent will be monitored.\n- One of the children has a camera and the other child either \nhas a camera or doesn't need monitoring (otherwise we would trigger \nthe second scenario instead). This tree is fully monitored, but has \nno monitoring to provide to the parent; it will return the same value \nas a null branch.\n\nWith all this in mind, we can let the return value indicate how we move\nfrom one state to another. At each node if the combined val from below \nis greater than 2, then we need to place a camera. If so we should increment \nour counter (ans) before moving on.\n\nOne last tricky piece is the root node. If the root node returns a value \nindicating that it still needs a camera, we should add 1 to ans before we \nreturn it.\n\n" '\nTime Complexity: O(N) where N is the number of nodes in the binary tree\nSpace Complexity: O(M) where M is the maximum depth of the binary tree, \nwhich can range up to N, for the recursion stack\n' class Treenode: def __init__(self, val=0, left=None, right=None): self.val = val self.left = left self.right = right class Solution: ans = 0 def min_camera_cover(self, root: TreeNode) -> int: def dfs(node: TreeNode) -> int: if not node: return 0 val = dfs(node.left) + dfs(node.right) if val == 0: return 3 if val < 3: return 0 self.ans += 1 return 1 return self.ans + 1 if dfs(root) > 2 else self.ans
class Main: def __init__(self): self.li = [] for i in range(0, 2): self.li.append(int(input())) self.salary = float(input()) def totalSalary(self): return self.li[1] * self.salary def output(self): print("NUMBER = {num}".format(num=self.li[0])) print("SALARY = U$ %0.2f" % self.totalSalary()) if __name__ == '__main__': obj = Main() obj.output()
class Main: def __init__(self): self.li = [] for i in range(0, 2): self.li.append(int(input())) self.salary = float(input()) def total_salary(self): return self.li[1] * self.salary def output(self): print('NUMBER = {num}'.format(num=self.li[0])) print('SALARY = U$ %0.2f' % self.totalSalary()) if __name__ == '__main__': obj = main() obj.output()
# see https://www.codewars.com/kata/556196a6091a7e7f58000018/solutions/python def largest_pair_sum(numbers): return sorted(numbers)[-1] + sorted(numbers)[-2] print(largest_pair_sum([10,14,2,23,19]) == 42) print(largest_pair_sum([-100,-29,-24,-19,19]) == 0) print(largest_pair_sum([1,2,3,4,6,-1,2]) == 10) print(largest_pair_sum([-10, -8, -16, -18, -19]) == -18)
def largest_pair_sum(numbers): return sorted(numbers)[-1] + sorted(numbers)[-2] print(largest_pair_sum([10, 14, 2, 23, 19]) == 42) print(largest_pair_sum([-100, -29, -24, -19, 19]) == 0) print(largest_pair_sum([1, 2, 3, 4, 6, -1, 2]) == 10) print(largest_pair_sum([-10, -8, -16, -18, -19]) == -18)
ckpt_path = '../ckpts' data_path = '../../data' graph_path = '../graphs' num_trains = { 'mnist': 60000, 'cifar': 50000, 'fmnist': 60000 } num_tests = { 'mnist': 10000, 'cifar': 10000, 'fmnist': 10000 } input_sizes = { 'mnist': 28*28, 'cifar': 3*32*32, 'fmnist': 28*28 } output_sizes = { 'mnist': 10, 'cifar': 10, 'fmnist': 10 } E_glob = 250 # \times 10^4 J D_glob = 0.25 # seconds F = { 'eps_min': 10**(-10), 'gamma': 1/4.0, 'gamma_pred': 1/1.0, 'phi': 1/10.0 }
ckpt_path = '../ckpts' data_path = '../../data' graph_path = '../graphs' num_trains = {'mnist': 60000, 'cifar': 50000, 'fmnist': 60000} num_tests = {'mnist': 10000, 'cifar': 10000, 'fmnist': 10000} input_sizes = {'mnist': 28 * 28, 'cifar': 3 * 32 * 32, 'fmnist': 28 * 28} output_sizes = {'mnist': 10, 'cifar': 10, 'fmnist': 10} e_glob = 250 d_glob = 0.25 f = {'eps_min': 10 ** (-10), 'gamma': 1 / 4.0, 'gamma_pred': 1 / 1.0, 'phi': 1 / 10.0}
"""Python3 Code to solve problem 1254: Number of closed islands. https://leetcode.com/problems/number-of-closed-islands/ """ def close_island(grid): if not grid or len(grid) == 0: return 0 height, width = len(grid), len(grid[0]) count = 0 for x in range(height): for y in range(width): if grid[x][y] == 0: is_island = dfs(grid, x, y) if is_island: count += 1 return count def dfs(grid, x, y): """When find a `0` in the grid, visit all neighbor `0` s and decide whether it is an island.""" height, width = len(grid), len(grid[0]) is_island = True if (x == 0 or x == height - 1) or (y == 0 or y == width - 1): is_island = False # When visited, set grid[x][y] = -1 to avoid visiting repeatly. grid[x][y] = -1 directions = [[-1, 0], [1, 0], [0, -1], [0, 1]] for direction in directions: new_x = x + direction[0] new_y = y + direction[1] if (0 <= new_x < height and 0 <= new_y < width and grid[new_x][new_y] == 0): dfs_result = dfs(grid, new_x, new_y) is_island = is_island & dfs_result return is_island
"""Python3 Code to solve problem 1254: Number of closed islands. https://leetcode.com/problems/number-of-closed-islands/ """ def close_island(grid): if not grid or len(grid) == 0: return 0 (height, width) = (len(grid), len(grid[0])) count = 0 for x in range(height): for y in range(width): if grid[x][y] == 0: is_island = dfs(grid, x, y) if is_island: count += 1 return count def dfs(grid, x, y): """When find a `0` in the grid, visit all neighbor `0` s and decide whether it is an island.""" (height, width) = (len(grid), len(grid[0])) is_island = True if (x == 0 or x == height - 1) or (y == 0 or y == width - 1): is_island = False grid[x][y] = -1 directions = [[-1, 0], [1, 0], [0, -1], [0, 1]] for direction in directions: new_x = x + direction[0] new_y = y + direction[1] if 0 <= new_x < height and 0 <= new_y < width and (grid[new_x][new_y] == 0): dfs_result = dfs(grid, new_x, new_y) is_island = is_island & dfs_result return is_island
#Y = Species("Y",U_Y) class Species: def __init__(self, name, U): self.name = name #Y.name = "Y" self.U = U #Y.U = U_Y self.behaviour = None def get_U(self): return self.U #Y.get_U returns U_Y #Y.set_U(U) def set_U(self, U): self.U = U #returns Y.U = U def get_name(self): return self.name #Y.get_name returns Y.name which is "Y" #Y.set_behaviour(Y_behaviour) def set_behaviour(self, behaviour): self.behaviour = behaviour #Y.set_behaviour = Y_behaviour
class Species: def __init__(self, name, U): self.name = name self.U = U self.behaviour = None def get_u(self): return self.U def set_u(self, U): self.U = U def get_name(self): return self.name def set_behaviour(self, behaviour): self.behaviour = behaviour
display = [[False for i in range(50)] for j in range(6)] commands = [] while True: try: line = input() except: break if not line: break commands.append(line) for command in commands: if command[:4] == 'rect': i, j = command.find(' '), command.find('x') a = command[i+1 : j] b = command[j+1 :] for i in range(int(b)): for j in range(int(a)): display[i][j] = True elif 'column' in command: i = command.find('=') j = i + 2 if command[j] != ' ': j += 1 k = command.rfind(' ') col = int(command[i+1 : j]) by = int(command[k+1 :]) l = [] for i in range(len(display)): l.append(display[i][col]) l = l[-by:] + l[:-by] for i in range(len(display)): display[i][col] = l[i] elif 'row' in command: i = command.find('=') j = i + 2 if command[j] != ' ': j += 1 k = command.rfind(' ') row = int(command[i+1 : j]) by = int(command[k+1 :]) l = [] for i in range(len(display[0])): l.append(display[row][i]) l = l[-by:] + l[:-by] for i in range(len(display[0])): display[row][i] = l[i] count = 0 for line in display: print(''.join(['#' if i else '.' for i in line])) count += sum(line) print('#1', count)
display = [[False for i in range(50)] for j in range(6)] commands = [] while True: try: line = input() except: break if not line: break commands.append(line) for command in commands: if command[:4] == 'rect': (i, j) = (command.find(' '), command.find('x')) a = command[i + 1:j] b = command[j + 1:] for i in range(int(b)): for j in range(int(a)): display[i][j] = True elif 'column' in command: i = command.find('=') j = i + 2 if command[j] != ' ': j += 1 k = command.rfind(' ') col = int(command[i + 1:j]) by = int(command[k + 1:]) l = [] for i in range(len(display)): l.append(display[i][col]) l = l[-by:] + l[:-by] for i in range(len(display)): display[i][col] = l[i] elif 'row' in command: i = command.find('=') j = i + 2 if command[j] != ' ': j += 1 k = command.rfind(' ') row = int(command[i + 1:j]) by = int(command[k + 1:]) l = [] for i in range(len(display[0])): l.append(display[row][i]) l = l[-by:] + l[:-by] for i in range(len(display[0])): display[row][i] = l[i] count = 0 for line in display: print(''.join(['#' if i else '.' for i in line])) count += sum(line) print('#1', count)
''' https://www.hackerrank.com/challenges/python-mutations/problem ''' def mutate_string(s, p, ch): if p < 0 or p >= len(s): return s return s[:p] + ch + s[p+1:] ''' Reverse String -------------- Problem: Given a string, reverse the characters order so that the last at first, the penultimate at the second, etc. Example: 'ab cd' -> 'dc ba' ''' def reverese_str(s): # ternary operator version: # return None if s is None else s[::-1] # or: if s is None: return None else: return s[::-1] ''' Reverse List ------------ Problem: Given a list, reverse the elements' order so that the last at first, the penultimate at the second, etc. Example: ['a', 'b'] -> ['b', 'a'] ''' def reverese_lst(s): return None if s is None else s[::-1] ''' Reverse Words ------------- Problem: Given a string with space and words, reverse the words so make the last at first, the penultimate at the second, etc. Replacing each space with '.' Example: 'ab cd' -> 'cd.ab' ''' def reverse_words(s): ss = s.split(' ') return '.'.join(ss[::-1])
""" https://www.hackerrank.com/challenges/python-mutations/problem """ def mutate_string(s, p, ch): if p < 0 or p >= len(s): return s return s[:p] + ch + s[p + 1:] "\n Reverse String\n --------------\n\n Problem:\n Given a string, reverse the characters order so that the last at first,\n the penultimate at the second, etc.\n\n Example:\n 'ab cd' -> 'dc ba'\n" def reverese_str(s): if s is None: return None else: return s[::-1] "\n Reverse List\n ------------\n\n Problem:\n Given a list, reverse the elements' order so that the last at first,\n the penultimate at the second, etc.\n\n Example:\n ['a', 'b'] -> ['b', 'a']\n" def reverese_lst(s): return None if s is None else s[::-1] "\n Reverse Words\n -------------\n\n Problem:\n Given a string with space and words, reverse the words so make the last\n at first, the penultimate at the second, etc. Replacing each space with '.'\n\n Example:\n 'ab cd' -> 'cd.ab'\n\n" def reverse_words(s): ss = s.split(' ') return '.'.join(ss[::-1])
class ReskinPacket: def __init__(self): self.type = "RESKIN" self.skinID = 0 def write(self, writer): writer.writeInt32(self.skinID) def read(self, reader): self.skinID = reader.readerInt32()
class Reskinpacket: def __init__(self): self.type = 'RESKIN' self.skinID = 0 def write(self, writer): writer.writeInt32(self.skinID) def read(self, reader): self.skinID = reader.readerInt32()
class Stack: # Construct an empty Stack object. def __init__(self): self._a = [] # Items # Return True if self is empty, and False otherwise. def is_empty(self): return len(self._a) == 0 # Push object item onto the top of self. def push(self, item): self._a += [item] # Pop the top object from self and return it. def pop(self): return self._a.pop()
class Stack: def __init__(self): self._a = [] def is_empty(self): return len(self._a) == 0 def push(self, item): self._a += [item] def pop(self): return self._a.pop()
""" A library containing utilities for additive manufacturing. """ def dimension(dim: float, tol: int = 0, step: float = 0.4) -> float: """ Given a dimension, this function will round down to the next multiple of the dimension. An additional parameter `tol` can be specified to add `tol` additional steps to add a tolerance to accommodate for shrinking. """ # Add small value to reduce risk of the remainder being zero. dim += 1e-10 return (dim // step) * step + tol * step
""" A library containing utilities for additive manufacturing. """ def dimension(dim: float, tol: int=0, step: float=0.4) -> float: """ Given a dimension, this function will round down to the next multiple of the dimension. An additional parameter `tol` can be specified to add `tol` additional steps to add a tolerance to accommodate for shrinking. """ dim += 1e-10 return dim // step * step + tol * step
def rectangle_area(w, h): return w * h width = int(input()) height = int(input()) print(rectangle_area(width, height))
def rectangle_area(w, h): return w * h width = int(input()) height = int(input()) print(rectangle_area(width, height))
class IUserManager: def logIn(self, userId, password): raise NotImplementedError def SignUp(self, userId, password): raise NotImplementedError
class Iusermanager: def log_in(self, userId, password): raise NotImplementedError def sign_up(self, userId, password): raise NotImplementedError
display_name = "Myriad Worlds" library_name = "myriad" version = "0.5" author = "Duncan McGreggor, Paul McGuire" author_email = "oubiwann@twistedmatrix.com" license = "MIT" url = "http://github.com/oubiwann/myriad-worlds" description = "Myriad Worlds Game Server" long_description = ("An experiment in generating worlds, stories, and " "interactive fiction games.") requires = [ "PyParsing", "PyYAML", "carapce", ]
display_name = 'Myriad Worlds' library_name = 'myriad' version = '0.5' author = 'Duncan McGreggor, Paul McGuire' author_email = 'oubiwann@twistedmatrix.com' license = 'MIT' url = 'http://github.com/oubiwann/myriad-worlds' description = 'Myriad Worlds Game Server' long_description = 'An experiment in generating worlds, stories, and interactive fiction games.' requires = ['PyParsing', 'PyYAML', 'carapce']
def setup_routes(app, handler): app.router.add_get( '/browsers/{version}', handler.browsers, name='browsers', )
def setup_routes(app, handler): app.router.add_get('/browsers/{version}', handler.browsers, name='browsers')
# McrpType.py def typedproperty(name, expected_type): private_name = '_'+name @property def prop(self): return getattr(self, private_name) @prop.setter def prop(self, value): if not isinstance(value, expected_type): raise TypeError('Expected type {}'.format(expected_type)) setattr(self, private_name, value) return self
def typedproperty(name, expected_type): private_name = '_' + name @property def prop(self): return getattr(self, private_name) @prop.setter def prop(self, value): if not isinstance(value, expected_type): raise type_error('Expected type {}'.format(expected_type)) setattr(self, private_name, value) return self
# # PySNMP MIB module TVD-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/TVD-MIB # Produced by pysmi-0.3.4 at Mon Apr 29 21:20:44 2019 # On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4 # Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15) # OctetString, Integer, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "OctetString", "Integer", "ObjectIdentifier") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") SingleValueConstraint, ValueSizeConstraint, ValueRangeConstraint, ConstraintsUnion, ConstraintsIntersection = mibBuilder.importSymbols("ASN1-REFINEMENT", "SingleValueConstraint", "ValueSizeConstraint", "ValueRangeConstraint", "ConstraintsUnion", "ConstraintsIntersection") naiTrapProblemResolution, naiTrapLongDescription, naiTrapAgent, naiTrapSourceDNSName, naiTrapDiagID, naiTrapTargetDNSName, naiTrapAgentVersion, naiTrapURL, naiTrapShortDescription, nai, naiTrapSeverity = mibBuilder.importSymbols("NAI-MIB", "naiTrapProblemResolution", "naiTrapLongDescription", "naiTrapAgent", "naiTrapSourceDNSName", "naiTrapDiagID", "naiTrapTargetDNSName", "naiTrapAgentVersion", "naiTrapURL", "naiTrapShortDescription", "nai", "naiTrapSeverity") ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup") iso, TimeTicks, Unsigned32, IpAddress, NotificationType, Integer32, ModuleIdentity, Gauge32, Bits, Counter64, MibIdentifier, NotificationType, enterprises, MibScalar, MibTable, MibTableRow, MibTableColumn, Counter32, ObjectIdentity = mibBuilder.importSymbols("SNMPv2-SMI", "iso", "TimeTicks", "Unsigned32", "IpAddress", "NotificationType", "Integer32", "ModuleIdentity", "Gauge32", "Bits", "Counter64", "MibIdentifier", "NotificationType", "enterprises", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Counter32", "ObjectIdentity") TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString") mcafee = MibIdentifier((1, 3, 6, 1, 4, 1, 3401, 12)) mcafeeTVDTrap = MibIdentifier((1, 3, 6, 1, 4, 1, 3401, 12, 0)) mcafeeStandardTrapField = MibIdentifier((1, 3, 6, 1, 4, 1, 3401, 12, 1)) mcafee_TRAPID = MibScalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: mcafee_TRAPID.setStatus('mandatory') mcafee_ENGINEVERSION = MibScalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mcafee_ENGINEVERSION.setStatus('mandatory') mcafee_DATVERSION = MibScalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 3), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mcafee_DATVERSION.setStatus('mandatory') mcafee_ENGINESTATUS = MibScalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 4), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: mcafee_ENGINESTATUS.setStatus('mandatory') mcafee_VIRUSNAME = MibScalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 5), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mcafee_VIRUSNAME.setStatus('mandatory') mcafee_VIRUSTYPE = MibScalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 6), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mcafee_VIRUSTYPE.setStatus('mandatory') mcafee_FILENAME = MibScalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 7), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mcafee_FILENAME.setStatus('mandatory') mcafee_USERNAME = MibScalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 8), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mcafee_USERNAME.setStatus('mandatory') mcafee_OS = MibScalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 9), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mcafee_OS.setStatus('mandatory') mcafee_PROCESSORSERIAL = MibScalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 10), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mcafee_PROCESSORSERIAL.setStatus('mandatory') mcafee_TASKNAME = MibScalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 11), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mcafee_TASKNAME.setStatus('mandatory') mcafee_NUMVIRS = MibScalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 15), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: mcafee_NUMVIRS.setStatus('mandatory') mcafee_NUMCLEANED = MibScalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 16), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: mcafee_NUMCLEANED.setStatus('mandatory') mcafee_NUMDELETED = MibScalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 17), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: mcafee_NUMDELETED.setStatus('mandatory') mcafee_NUMQUARANTINED = MibScalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 18), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: mcafee_NUMQUARANTINED.setStatus('mandatory') mcafee_SCANRETURNCODE = MibScalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 19), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: mcafee_SCANRETURNCODE.setStatus('mandatory') mcafee_MAILFROMNAME = MibScalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 30), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mcafee_MAILFROMNAME.setStatus('mandatory') mcafee_MAILTONAME = MibScalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 31), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mcafee_MAILTONAME.setStatus('mandatory') mcafee_MAILCCNAME = MibScalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 32), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mcafee_MAILCCNAME.setStatus('mandatory') mcafee_MAILSUBJECTLINE = MibScalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 33), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mcafee_MAILSUBJECTLINE.setStatus('optional') mcafee_MAILIDENTIFIERINFO = MibScalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 34), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mcafee_MAILIDENTIFIERINFO.setStatus('optional') mcafee_NOTEID = MibScalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 35), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mcafee_NOTEID.setStatus('optional') mcafee_NOTESSERVERNAME = MibScalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 36), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mcafee_NOTESSERVERNAME.setStatus('optional') mcafee_NOTESDBNAME = MibScalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 37), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mcafee_NOTESDBNAME.setStatus('optional') mcafee_DOMAIN = MibScalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 38), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mcafee_DOMAIN.setStatus('optional') mcafee_OBRULE = MibScalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 39), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mcafee_OBRULE.setStatus('optional') mcafee_LANGUAGECODE = MibScalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 40), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mcafee_LANGUAGECODE.setStatus('optional') mcafee_CLIENTCOMPUTER = MibScalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 41), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mcafee_CLIENTCOMPUTER.setStatus('optional') mcafee_TSCLIENTID = MibScalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 42), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: mcafee_TSCLIENTID.setStatus('optional') mcafee_ACCESSPROCESSNAME = MibScalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 43), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mcafee_ACCESSPROCESSNAME.setStatus('optional') mcafee_EVENTNAME = MibScalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 44), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mcafee_EVENTNAME.setStatus('optional') mcafee_GMTTIME = MibScalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 45), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mcafee_GMTTIME.setStatus('optional') mcafee_TIME = MibScalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 46), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mcafee_TIME.setStatus('optional') mcafee_SOURCEIP = MibScalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 47), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mcafee_SOURCEIP.setStatus('optional') mcafee_TARGETIP = MibScalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 48), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mcafee_TARGETIP.setStatus('optional') mcafee_EVENT_TEST_TRAP = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,9999)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_VIRFOUND = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1024)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_FILECLEANED = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1025)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_FILECLEANERROR = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1026)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_FILEDELETED = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1027)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_FILEDELETEERROR = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1028)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_FILEEXCLUDING = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1029)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_EXCLUDEERR = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1030)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_INFECTION_ACESSDENIED = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1031)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_VIRUS_QUARANTINED = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1032)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_VIRUS_QUARANTINE_FAILURE = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1033)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_SCANEND_NO_VIRUSES = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1034)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_SCAN_CANCELED = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1035)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_VIRUS_FOUND_IN_MEMORY = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1036)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_VIRUS_IN_BOOT_RECORD = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1037)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_SCAN_FOUND_INFECTED_FILES = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1038)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_SCAN_FOUND_AND_CLEANED_INFECTIONS = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1039)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_ALOG_ERROR = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1040)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_MEMALLOC_ERROR = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1041)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_DIR_ACCESS_ERROR = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1042)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_WRITE_PROTECT_ERR = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1043)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_MEDIA_NOT_FOUND_ERR = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1044)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_SCAN_ITEM_INVALID = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1045)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_FILE_IO_ERRORS = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1046)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_DISK_IO_ERR = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1047)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_GEN_SYSTEM_ERROR = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1048)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_INTERNAL_APP_ERROR = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1049)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_INFECTION_PASSWORD_PROTECTED = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1050)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_NOT_SCANNED_PASSWORD = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1051)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_INFECTED_BINDARY = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1052)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_INFECTED_HEURISTICS = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1053)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_DELETED_HEURISTICS = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1054)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_DELETE_ERR_HEURISTICS = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1055)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_QUARANTINED_HEURISTICS = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1056)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_QUAR_ERROR_HEURISTICS = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1057)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_SCAN_TIMEOUT = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1059)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_BOOT_SECTOR_CLEANED = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1060)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_CLEANERROR_BOOTSECTOR = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1061)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_ALERTERROR = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1062)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_OPTIONSERROR = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1063)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_SERVICE_STARTED_1064 = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1064)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_SERVICE_ENDING_1065 = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1065)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_SCED_START_TASK_OK = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1066)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_SCHED_START_TASK_ERROR = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1067)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_SCED_TASK_END_OK = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1068)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_SCHED_TASK_STOP_ERROR = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1069)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_SCHED_TASK_SUCCESS = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1070)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_SCHED_TASK_CANCELED = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1071)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_TASKERR_LOGFILE = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1076)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_TASK_ERR_MEMALLOC = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1077)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_SCAN_PROC_ERR = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1086)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_OAS_START = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1087)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_OAS_STOP = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1088)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_SCAN_SETTINGS = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1089)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_MACRO_VIRUS_DETECTED = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1100)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_MACRO_VIRUS_DELETED = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1101)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_UPDATEOK = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1118)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_UPDATEFAILED = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1119)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_UPDATE_RUNNING = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1120)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_UPDATECANCELED = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1121)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_UPGRADE_RUNNING = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1122)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_UPGRADE_FAILED = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1123)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_UPGRADE_CANCELED = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1124)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_UPDATE_VERSION_OLDER = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1125)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_SCAN_CANCELED_BY_UPD = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1126)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_SCANNER_DISABLED = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1127)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_START_PROCESS = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1200)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_PROCESS_ENDED = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1201)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_ODS_SCAN_STARTED = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1202)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_ODS_SCAN_ENDED = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1203)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_SCAN_REPORT_OS = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1204)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_MAIL_VIRUSCLEANED = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1500)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_MAIL_VIRUSQUARANTINED = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1501)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_MAIL_VIRUS_NOTCLEANED = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1502)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_MAIL_VIRUS_DETECTED = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1503)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_MAIL_VIRUS_DELETED = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1504)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_MAIL_VIRUS_FILTERED = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1505)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_MAIL_CONTENTBLOCK = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1506)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_MAIL_LOWDISKLIMIT = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1507)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_MAIL_UPPERDISKLIMIT = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1508)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_MAIL_SERVICE_START = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1509)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_MAIL_SERVICE_SHUTDOWN_OK = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1510)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_MAIL_SERVICE_ABEND = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1511)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_MAIL_SERVICE_MAX_LOAD = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1512)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_MAIL_VIRUS_QUARANTINEDCLEANED = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1513)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_MAIL_VIRUS_QUARANTINED = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1514)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_NEW_MIB = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,1900)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_EPO_FAILE_INSTPRODUCT = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,2201)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_EPO_AGENT_RETRYLIMIT = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,2202)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_EPO_AGENT_DISKSPACE = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,2204)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_EPO_SPIPE_DISKSPACE = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,2208)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mcafee_EVENT_EPO_AGENT_WRONG_PLATFORM = NotificationType((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0,2216)).setObjects(("NAI-MIB", "naiTrapAgent"), ("NAI-MIB", "naiTrapShortDescription"), ("NAI-MIB", "naiTrapSeverity"), ("TVD-MIB", "mcafee_SOURCEIP"), ("TVD-MIB", "mcafee_GMTTIME"), ("NAI-MIB", "naiTrapAgentVersion"), ("NAI-MIB", "naiTrapLongDescription"), ("NAI-MIB", "naiTrapProblemResolution"), ("NAI-MIB", "naiTrapDiagID"), ("NAI-MIB", "naiTrapURL"), ("NAI-MIB", "naiTrapSourceDNSName"), ("TVD-MIB", "mcafee_TIME"), ("TVD-MIB", "mcafee_TARGETIP"), ("NAI-MIB", "naiTrapTargetDNSName"), ("TVD-MIB", "mcafee_TRAPID"), ("TVD-MIB", "mcafee_ENGINEVERSION"), ("TVD-MIB", "mcafee_DATVERSION"), ("TVD-MIB", "mcafee_ENGINESTATUS"), ("TVD-MIB", "mcafee_VIRUSNAME"), ("TVD-MIB", "mcafee_VIRUSTYPE"), ("TVD-MIB", "mcafee_FILENAME"), ("TVD-MIB", "mcafee_USERNAME"), ("TVD-MIB", "mcafee_OS"), ("TVD-MIB", "mcafee_PROCESSORSERIAL"), ("TVD-MIB", "mcafee_NUMVIRS"), ("TVD-MIB", "mcafee_NUMCLEANED"), ("TVD-MIB", "mcafee_NUMDELETED"), ("TVD-MIB", "mcafee_NUMQUARANTINED"), ("TVD-MIB", "mcafee_SCANRETURNCODE"), ("TVD-MIB", "mcafee_MAILFROMNAME"), ("TVD-MIB", "mcafee_MAILTONAME"), ("TVD-MIB", "mcafee_MAILCCNAME"), ("TVD-MIB", "mcafee_MAILSUBJECTLINE"), ("TVD-MIB", "mcafee_MAILIDENTIFIERINFO"), ("TVD-MIB", "mcafee_LANGUAGECODE"), ("TVD-MIB", "mcafee_CLIENTCOMPUTER"), ("TVD-MIB", "mcafee_TSCLIENTID"), ("TVD-MIB", "mcafee_ACCESSPROCESSNAME"), ("TVD-MIB", "mcafee_NOTEID"), ("TVD-MIB", "mcafee_NOTESSERVERNAME"), ("TVD-MIB", "mcafee_NOTESDBNAME"), ("TVD-MIB", "mcafee_DOMAIN"), ("TVD-MIB", "mcafee_OBRULE"), ("TVD-MIB", "mcafee_EVENTNAME")) mibBuilder.exportSymbols("TVD-MIB", mcafee_MAILCCNAME=mcafee_MAILCCNAME, mcafee_DOMAIN=mcafee_DOMAIN, mcafee_EVENT_TEST_TRAP=mcafee_EVENT_TEST_TRAP, mcafee_EVENT_UPDATE_VERSION_OLDER=mcafee_EVENT_UPDATE_VERSION_OLDER, mcafee_EVENT_MAIL_UPPERDISKLIMIT=mcafee_EVENT_MAIL_UPPERDISKLIMIT, mcafee_EVENT_MAIL_SERVICE_SHUTDOWN_OK=mcafee_EVENT_MAIL_SERVICE_SHUTDOWN_OK, mcafee_EVENT_EPO_AGENT_DISKSPACE=mcafee_EVENT_EPO_AGENT_DISKSPACE, mcafee_EVENT_VIRFOUND=mcafee_EVENT_VIRFOUND, mcafee_EVENT_UPDATECANCELED=mcafee_EVENT_UPDATECANCELED, mcafee_EVENT_FILEEXCLUDING=mcafee_EVENT_FILEEXCLUDING, mcafee_EVENT_DELETED_HEURISTICS=mcafee_EVENT_DELETED_HEURISTICS, mcafee_EVENT_VIRUS_FOUND_IN_MEMORY=mcafee_EVENT_VIRUS_FOUND_IN_MEMORY, mcafee_ACCESSPROCESSNAME=mcafee_ACCESSPROCESSNAME, mcafee_EVENT_SCAN_ITEM_INVALID=mcafee_EVENT_SCAN_ITEM_INVALID, mcafee_CLIENTCOMPUTER=mcafee_CLIENTCOMPUTER, mcafee_OS=mcafee_OS, mcafee_MAILFROMNAME=mcafee_MAILFROMNAME, mcafee_EVENT_MAIL_SERVICE_MAX_LOAD=mcafee_EVENT_MAIL_SERVICE_MAX_LOAD, mcafee_ENGINEVERSION=mcafee_ENGINEVERSION, mcafee_NOTESSERVERNAME=mcafee_NOTESSERVERNAME, mcafee_MAILIDENTIFIERINFO=mcafee_MAILIDENTIFIERINFO, mcafee_TARGETIP=mcafee_TARGETIP, mcafee_EVENT_GEN_SYSTEM_ERROR=mcafee_EVENT_GEN_SYSTEM_ERROR, mcafee_EVENT_CLEANERROR_BOOTSECTOR=mcafee_EVENT_CLEANERROR_BOOTSECTOR, mcafee_EVENT_EPO_FAILE_INSTPRODUCT=mcafee_EVENT_EPO_FAILE_INSTPRODUCT, mcafee_EVENT_SCHED_START_TASK_ERROR=mcafee_EVENT_SCHED_START_TASK_ERROR, mcafee=mcafee, mcafee_NOTESDBNAME=mcafee_NOTESDBNAME, mcafee_EVENT_INFECTION_PASSWORD_PROTECTED=mcafee_EVENT_INFECTION_PASSWORD_PROTECTED, mcafee_EVENT_UPDATE_RUNNING=mcafee_EVENT_UPDATE_RUNNING, mcafee_EVENTNAME=mcafee_EVENTNAME, mcafee_EVENT_SCED_TASK_END_OK=mcafee_EVENT_SCED_TASK_END_OK, mcafee_EVENT_EPO_SPIPE_DISKSPACE=mcafee_EVENT_EPO_SPIPE_DISKSPACE, mcafee_EVENT_TASKERR_LOGFILE=mcafee_EVENT_TASKERR_LOGFILE, mcafeeStandardTrapField=mcafeeStandardTrapField, mcafee_EVENT_MAIL_SERVICE_START=mcafee_EVENT_MAIL_SERVICE_START, mcafee_EVENT_OPTIONSERROR=mcafee_EVENT_OPTIONSERROR, mcafee_EVENT_SCAN_REPORT_OS=mcafee_EVENT_SCAN_REPORT_OS, mcafee_EVENT_DIR_ACCESS_ERROR=mcafee_EVENT_DIR_ACCESS_ERROR, mcafee_EVENT_VIRUS_QUARANTINE_FAILURE=mcafee_EVENT_VIRUS_QUARANTINE_FAILURE, mcafee_EVENT_SCAN_CANCELED=mcafee_EVENT_SCAN_CANCELED, mcafee_EVENT_MACRO_VIRUS_DETECTED=mcafee_EVENT_MACRO_VIRUS_DETECTED, mcafee_EVENT_OAS_STOP=mcafee_EVENT_OAS_STOP, mcafee_TASKNAME=mcafee_TASKNAME, mcafee_EVENT_TASK_ERR_MEMALLOC=mcafee_EVENT_TASK_ERR_MEMALLOC, mcafee_EVENT_MAIL_SERVICE_ABEND=mcafee_EVENT_MAIL_SERVICE_ABEND, mcafee_TRAPID=mcafee_TRAPID, mcafee_EVENT_SCHED_TASK_SUCCESS=mcafee_EVENT_SCHED_TASK_SUCCESS, mcafee_GMTTIME=mcafee_GMTTIME, mcafee_EVENT_MAIL_VIRUSQUARANTINED=mcafee_EVENT_MAIL_VIRUSQUARANTINED, mcafee_EVENT_INFECTION_ACESSDENIED=mcafee_EVENT_INFECTION_ACESSDENIED, mcafee_EVENT_UPGRADE_CANCELED=mcafee_EVENT_UPGRADE_CANCELED, mcafee_TSCLIENTID=mcafee_TSCLIENTID, mcafee_EVENT_FILECLEANERROR=mcafee_EVENT_FILECLEANERROR, mcafee_EVENT_MAIL_VIRUS_DETECTED=mcafee_EVENT_MAIL_VIRUS_DETECTED, mcafee_ENGINESTATUS=mcafee_ENGINESTATUS, mcafee_EVENT_UPDATEOK=mcafee_EVENT_UPDATEOK, mcafee_EVENT_MEMALLOC_ERROR=mcafee_EVENT_MEMALLOC_ERROR, mcafee_EVENT_MACRO_VIRUS_DELETED=mcafee_EVENT_MACRO_VIRUS_DELETED, mcafee_EVENT_FILEDELETED=mcafee_EVENT_FILEDELETED, mcafee_EVENT_INTERNAL_APP_ERROR=mcafee_EVENT_INTERNAL_APP_ERROR, mcafee_EVENT_EXCLUDEERR=mcafee_EVENT_EXCLUDEERR, mcafeeTVDTrap=mcafeeTVDTrap, mcafee_EVENT_SERVICE_STARTED_1064=mcafee_EVENT_SERVICE_STARTED_1064, mcafee_EVENT_SCAN_PROC_ERR=mcafee_EVENT_SCAN_PROC_ERR, mcafee_EVENT_MAIL_VIRUS_QUARANTINEDCLEANED=mcafee_EVENT_MAIL_VIRUS_QUARANTINEDCLEANED, mcafee_EVENT_WRITE_PROTECT_ERR=mcafee_EVENT_WRITE_PROTECT_ERR, mcafee_EVENT_MEDIA_NOT_FOUND_ERR=mcafee_EVENT_MEDIA_NOT_FOUND_ERR, mcafee_EVENT_FILE_IO_ERRORS=mcafee_EVENT_FILE_IO_ERRORS, mcafee_EVENT_QUAR_ERROR_HEURISTICS=mcafee_EVENT_QUAR_ERROR_HEURISTICS, mcafee_NOTEID=mcafee_NOTEID, mcafee_EVENT_DELETE_ERR_HEURISTICS=mcafee_EVENT_DELETE_ERR_HEURISTICS, mcafee_EVENT_UPGRADE_FAILED=mcafee_EVENT_UPGRADE_FAILED, mcafee_SOURCEIP=mcafee_SOURCEIP, mcafee_EVENT_FILEDELETEERROR=mcafee_EVENT_FILEDELETEERROR, mcafee_EVENT_SCAN_CANCELED_BY_UPD=mcafee_EVENT_SCAN_CANCELED_BY_UPD, mcafee_MAILSUBJECTLINE=mcafee_MAILSUBJECTLINE, mcafee_NUMVIRS=mcafee_NUMVIRS, mcafee_EVENT_MAIL_VIRUS_QUARANTINED=mcafee_EVENT_MAIL_VIRUS_QUARANTINED, mcafee_EVENT_MAIL_VIRUS_FILTERED=mcafee_EVENT_MAIL_VIRUS_FILTERED, mcafee_EVENT_SCAN_TIMEOUT=mcafee_EVENT_SCAN_TIMEOUT, mcafee_EVENT_DISK_IO_ERR=mcafee_EVENT_DISK_IO_ERR, mcafee_EVENT_ODS_SCAN_STARTED=mcafee_EVENT_ODS_SCAN_STARTED, mcafee_EVENT_NEW_MIB=mcafee_EVENT_NEW_MIB, mcafee_EVENT_SCHED_TASK_CANCELED=mcafee_EVENT_SCHED_TASK_CANCELED, mcafee_EVENT_START_PROCESS=mcafee_EVENT_START_PROCESS, mcafee_TIME=mcafee_TIME, mcafee_EVENT_INFECTED_BINDARY=mcafee_EVENT_INFECTED_BINDARY, mcafee_EVENT_MAIL_VIRUSCLEANED=mcafee_EVENT_MAIL_VIRUSCLEANED, mcafee_SCANRETURNCODE=mcafee_SCANRETURNCODE, mcafee_LANGUAGECODE=mcafee_LANGUAGECODE, mcafee_DATVERSION=mcafee_DATVERSION, mcafee_EVENT_OAS_START=mcafee_EVENT_OAS_START, mcafee_EVENT_SERVICE_ENDING_1065=mcafee_EVENT_SERVICE_ENDING_1065, mcafee_EVENT_INFECTED_HEURISTICS=mcafee_EVENT_INFECTED_HEURISTICS, mcafee_EVENT_MAIL_VIRUS_NOTCLEANED=mcafee_EVENT_MAIL_VIRUS_NOTCLEANED, mcafee_EVENT_MAIL_CONTENTBLOCK=mcafee_EVENT_MAIL_CONTENTBLOCK, mcafee_EVENT_UPDATEFAILED=mcafee_EVENT_UPDATEFAILED, mcafee_EVENT_VIRUS_IN_BOOT_RECORD=mcafee_EVENT_VIRUS_IN_BOOT_RECORD, mcafee_EVENT_VIRUS_QUARANTINED=mcafee_EVENT_VIRUS_QUARANTINED, mcafee_NUMQUARANTINED=mcafee_NUMQUARANTINED, mcafee_EVENT_SCED_START_TASK_OK=mcafee_EVENT_SCED_START_TASK_OK, mcafee_EVENT_UPGRADE_RUNNING=mcafee_EVENT_UPGRADE_RUNNING, mcafee_EVENT_MAIL_LOWDISKLIMIT=mcafee_EVENT_MAIL_LOWDISKLIMIT, mcafee_VIRUSNAME=mcafee_VIRUSNAME, mcafee_EVENT_SCHED_TASK_STOP_ERROR=mcafee_EVENT_SCHED_TASK_STOP_ERROR, mcafee_EVENT_SCAN_SETTINGS=mcafee_EVENT_SCAN_SETTINGS, mcafee_EVENT_ODS_SCAN_ENDED=mcafee_EVENT_ODS_SCAN_ENDED, mcafee_FILENAME=mcafee_FILENAME, mcafee_MAILTONAME=mcafee_MAILTONAME, mcafee_NUMCLEANED=mcafee_NUMCLEANED, mcafee_PROCESSORSERIAL=mcafee_PROCESSORSERIAL, mcafee_EVENT_EPO_AGENT_WRONG_PLATFORM=mcafee_EVENT_EPO_AGENT_WRONG_PLATFORM, mcafee_NUMDELETED=mcafee_NUMDELETED, mcafee_EVENT_FILECLEANED=mcafee_EVENT_FILECLEANED, mcafee_EVENT_ALERTERROR=mcafee_EVENT_ALERTERROR, mcafee_EVENT_PROCESS_ENDED=mcafee_EVENT_PROCESS_ENDED, mcafee_EVENT_EPO_AGENT_RETRYLIMIT=mcafee_EVENT_EPO_AGENT_RETRYLIMIT, mcafee_EVENT_ALOG_ERROR=mcafee_EVENT_ALOG_ERROR, mcafee_EVENT_SCANEND_NO_VIRUSES=mcafee_EVENT_SCANEND_NO_VIRUSES, mcafee_USERNAME=mcafee_USERNAME, mcafee_EVENT_BOOT_SECTOR_CLEANED=mcafee_EVENT_BOOT_SECTOR_CLEANED, mcafee_OBRULE=mcafee_OBRULE, mcafee_EVENT_SCAN_FOUND_AND_CLEANED_INFECTIONS=mcafee_EVENT_SCAN_FOUND_AND_CLEANED_INFECTIONS, mcafee_EVENT_MAIL_VIRUS_DELETED=mcafee_EVENT_MAIL_VIRUS_DELETED, mcafee_EVENT_SCAN_FOUND_INFECTED_FILES=mcafee_EVENT_SCAN_FOUND_INFECTED_FILES, mcafee_VIRUSTYPE=mcafee_VIRUSTYPE, mcafee_EVENT_QUARANTINED_HEURISTICS=mcafee_EVENT_QUARANTINED_HEURISTICS, mcafee_EVENT_SCANNER_DISABLED=mcafee_EVENT_SCANNER_DISABLED, mcafee_EVENT_NOT_SCANNED_PASSWORD=mcafee_EVENT_NOT_SCANNED_PASSWORD)
(octet_string, integer, object_identifier) = mibBuilder.importSymbols('ASN1', 'OctetString', 'Integer', 'ObjectIdentifier') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (single_value_constraint, value_size_constraint, value_range_constraint, constraints_union, constraints_intersection) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'SingleValueConstraint', 'ValueSizeConstraint', 'ValueRangeConstraint', 'ConstraintsUnion', 'ConstraintsIntersection') (nai_trap_problem_resolution, nai_trap_long_description, nai_trap_agent, nai_trap_source_dns_name, nai_trap_diag_id, nai_trap_target_dns_name, nai_trap_agent_version, nai_trap_url, nai_trap_short_description, nai, nai_trap_severity) = mibBuilder.importSymbols('NAI-MIB', 'naiTrapProblemResolution', 'naiTrapLongDescription', 'naiTrapAgent', 'naiTrapSourceDNSName', 'naiTrapDiagID', 'naiTrapTargetDNSName', 'naiTrapAgentVersion', 'naiTrapURL', 'naiTrapShortDescription', 'nai', 'naiTrapSeverity') (module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup') (iso, time_ticks, unsigned32, ip_address, notification_type, integer32, module_identity, gauge32, bits, counter64, mib_identifier, notification_type, enterprises, mib_scalar, mib_table, mib_table_row, mib_table_column, counter32, object_identity) = mibBuilder.importSymbols('SNMPv2-SMI', 'iso', 'TimeTicks', 'Unsigned32', 'IpAddress', 'NotificationType', 'Integer32', 'ModuleIdentity', 'Gauge32', 'Bits', 'Counter64', 'MibIdentifier', 'NotificationType', 'enterprises', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Counter32', 'ObjectIdentity') (textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString') mcafee = mib_identifier((1, 3, 6, 1, 4, 1, 3401, 12)) mcafee_tvd_trap = mib_identifier((1, 3, 6, 1, 4, 1, 3401, 12, 0)) mcafee_standard_trap_field = mib_identifier((1, 3, 6, 1, 4, 1, 3401, 12, 1)) mcafee_trapid = mib_scalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: mcafee_TRAPID.setStatus('mandatory') mcafee_engineversion = mib_scalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mcafee_ENGINEVERSION.setStatus('mandatory') mcafee_datversion = mib_scalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 3), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mcafee_DATVERSION.setStatus('mandatory') mcafee_enginestatus = mib_scalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 4), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: mcafee_ENGINESTATUS.setStatus('mandatory') mcafee_virusname = mib_scalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 5), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mcafee_VIRUSNAME.setStatus('mandatory') mcafee_virustype = mib_scalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 6), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mcafee_VIRUSTYPE.setStatus('mandatory') mcafee_filename = mib_scalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 7), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mcafee_FILENAME.setStatus('mandatory') mcafee_username = mib_scalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 8), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mcafee_USERNAME.setStatus('mandatory') mcafee_os = mib_scalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 9), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mcafee_OS.setStatus('mandatory') mcafee_processorserial = mib_scalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 10), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mcafee_PROCESSORSERIAL.setStatus('mandatory') mcafee_taskname = mib_scalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 11), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mcafee_TASKNAME.setStatus('mandatory') mcafee_numvirs = mib_scalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 15), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: mcafee_NUMVIRS.setStatus('mandatory') mcafee_numcleaned = mib_scalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 16), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: mcafee_NUMCLEANED.setStatus('mandatory') mcafee_numdeleted = mib_scalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 17), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: mcafee_NUMDELETED.setStatus('mandatory') mcafee_numquarantined = mib_scalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 18), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: mcafee_NUMQUARANTINED.setStatus('mandatory') mcafee_scanreturncode = mib_scalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 19), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: mcafee_SCANRETURNCODE.setStatus('mandatory') mcafee_mailfromname = mib_scalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 30), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mcafee_MAILFROMNAME.setStatus('mandatory') mcafee_mailtoname = mib_scalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 31), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mcafee_MAILTONAME.setStatus('mandatory') mcafee_mailccname = mib_scalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 32), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mcafee_MAILCCNAME.setStatus('mandatory') mcafee_mailsubjectline = mib_scalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 33), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mcafee_MAILSUBJECTLINE.setStatus('optional') mcafee_mailidentifierinfo = mib_scalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 34), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mcafee_MAILIDENTIFIERINFO.setStatus('optional') mcafee_noteid = mib_scalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 35), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mcafee_NOTEID.setStatus('optional') mcafee_notesservername = mib_scalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 36), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mcafee_NOTESSERVERNAME.setStatus('optional') mcafee_notesdbname = mib_scalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 37), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mcafee_NOTESDBNAME.setStatus('optional') mcafee_domain = mib_scalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 38), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mcafee_DOMAIN.setStatus('optional') mcafee_obrule = mib_scalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 39), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mcafee_OBRULE.setStatus('optional') mcafee_languagecode = mib_scalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 40), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mcafee_LANGUAGECODE.setStatus('optional') mcafee_clientcomputer = mib_scalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 41), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mcafee_CLIENTCOMPUTER.setStatus('optional') mcafee_tsclientid = mib_scalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 42), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: mcafee_TSCLIENTID.setStatus('optional') mcafee_accessprocessname = mib_scalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 43), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mcafee_ACCESSPROCESSNAME.setStatus('optional') mcafee_eventname = mib_scalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 44), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mcafee_EVENTNAME.setStatus('optional') mcafee_gmttime = mib_scalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 45), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mcafee_GMTTIME.setStatus('optional') mcafee_time = mib_scalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 46), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mcafee_TIME.setStatus('optional') mcafee_sourceip = mib_scalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 47), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mcafee_SOURCEIP.setStatus('optional') mcafee_targetip = mib_scalar((1, 3, 6, 1, 4, 1, 3401, 12, 1, 48), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mcafee_TARGETIP.setStatus('optional') mcafee_event_test_trap = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 9999)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_virfound = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1024)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_filecleaned = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1025)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_filecleanerror = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1026)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_filedeleted = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1027)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_filedeleteerror = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1028)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_fileexcluding = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1029)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_excludeerr = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1030)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_infection_acessdenied = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1031)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_virus_quarantined = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1032)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_virus_quarantine_failure = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1033)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_scanend_no_viruses = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1034)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_scan_canceled = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1035)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_virus_found_in_memory = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1036)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_virus_in_boot_record = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1037)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_scan_found_infected_files = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1038)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_scan_found_and_cleaned_infections = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1039)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_alog_error = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1040)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_memalloc_error = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1041)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_dir_access_error = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1042)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_write_protect_err = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1043)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_media_not_found_err = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1044)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_scan_item_invalid = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1045)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_file_io_errors = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1046)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_disk_io_err = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1047)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_gen_system_error = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1048)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_internal_app_error = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1049)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_infection_password_protected = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1050)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_not_scanned_password = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1051)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_infected_bindary = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1052)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_infected_heuristics = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1053)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_deleted_heuristics = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1054)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_delete_err_heuristics = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1055)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_quarantined_heuristics = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1056)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_quar_error_heuristics = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1057)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_scan_timeout = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1059)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_boot_sector_cleaned = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1060)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_cleanerror_bootsector = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1061)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_alerterror = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1062)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_optionserror = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1063)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_service_started_1064 = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1064)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_service_ending_1065 = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1065)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_sced_start_task_ok = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1066)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_sched_start_task_error = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1067)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_sced_task_end_ok = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1068)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_sched_task_stop_error = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1069)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_sched_task_success = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1070)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_sched_task_canceled = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1071)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_taskerr_logfile = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1076)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_task_err_memalloc = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1077)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_scan_proc_err = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1086)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_oas_start = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1087)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_oas_stop = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1088)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_scan_settings = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1089)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_macro_virus_detected = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1100)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_macro_virus_deleted = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1101)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_updateok = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1118)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_updatefailed = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1119)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_update_running = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1120)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_updatecanceled = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1121)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_upgrade_running = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1122)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_upgrade_failed = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1123)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_upgrade_canceled = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1124)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_update_version_older = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1125)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_scan_canceled_by_upd = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1126)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_scanner_disabled = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1127)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_start_process = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1200)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_process_ended = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1201)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_ods_scan_started = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1202)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_ods_scan_ended = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1203)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_scan_report_os = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1204)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_mail_viruscleaned = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1500)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_mail_virusquarantined = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1501)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_mail_virus_notcleaned = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1502)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_mail_virus_detected = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1503)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_mail_virus_deleted = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1504)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_mail_virus_filtered = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1505)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_mail_contentblock = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1506)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_mail_lowdisklimit = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1507)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_mail_upperdisklimit = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1508)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_mail_service_start = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1509)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_mail_service_shutdown_ok = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1510)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_mail_service_abend = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1511)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_mail_service_max_load = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1512)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_mail_virus_quarantinedcleaned = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1513)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_mail_virus_quarantined = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1514)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_new_mib = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 1900)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_epo_faile_instproduct = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 2201)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_epo_agent_retrylimit = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 2202)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_epo_agent_diskspace = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 2204)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_epo_spipe_diskspace = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 2208)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mcafee_event_epo_agent_wrong_platform = notification_type((1, 3, 6, 1, 4, 1, 3401, 12, 0) + (0, 2216)).setObjects(('NAI-MIB', 'naiTrapAgent'), ('NAI-MIB', 'naiTrapShortDescription'), ('NAI-MIB', 'naiTrapSeverity'), ('TVD-MIB', 'mcafee_SOURCEIP'), ('TVD-MIB', 'mcafee_GMTTIME'), ('NAI-MIB', 'naiTrapAgentVersion'), ('NAI-MIB', 'naiTrapLongDescription'), ('NAI-MIB', 'naiTrapProblemResolution'), ('NAI-MIB', 'naiTrapDiagID'), ('NAI-MIB', 'naiTrapURL'), ('NAI-MIB', 'naiTrapSourceDNSName'), ('TVD-MIB', 'mcafee_TIME'), ('TVD-MIB', 'mcafee_TARGETIP'), ('NAI-MIB', 'naiTrapTargetDNSName'), ('TVD-MIB', 'mcafee_TRAPID'), ('TVD-MIB', 'mcafee_ENGINEVERSION'), ('TVD-MIB', 'mcafee_DATVERSION'), ('TVD-MIB', 'mcafee_ENGINESTATUS'), ('TVD-MIB', 'mcafee_VIRUSNAME'), ('TVD-MIB', 'mcafee_VIRUSTYPE'), ('TVD-MIB', 'mcafee_FILENAME'), ('TVD-MIB', 'mcafee_USERNAME'), ('TVD-MIB', 'mcafee_OS'), ('TVD-MIB', 'mcafee_PROCESSORSERIAL'), ('TVD-MIB', 'mcafee_NUMVIRS'), ('TVD-MIB', 'mcafee_NUMCLEANED'), ('TVD-MIB', 'mcafee_NUMDELETED'), ('TVD-MIB', 'mcafee_NUMQUARANTINED'), ('TVD-MIB', 'mcafee_SCANRETURNCODE'), ('TVD-MIB', 'mcafee_MAILFROMNAME'), ('TVD-MIB', 'mcafee_MAILTONAME'), ('TVD-MIB', 'mcafee_MAILCCNAME'), ('TVD-MIB', 'mcafee_MAILSUBJECTLINE'), ('TVD-MIB', 'mcafee_MAILIDENTIFIERINFO'), ('TVD-MIB', 'mcafee_LANGUAGECODE'), ('TVD-MIB', 'mcafee_CLIENTCOMPUTER'), ('TVD-MIB', 'mcafee_TSCLIENTID'), ('TVD-MIB', 'mcafee_ACCESSPROCESSNAME'), ('TVD-MIB', 'mcafee_NOTEID'), ('TVD-MIB', 'mcafee_NOTESSERVERNAME'), ('TVD-MIB', 'mcafee_NOTESDBNAME'), ('TVD-MIB', 'mcafee_DOMAIN'), ('TVD-MIB', 'mcafee_OBRULE'), ('TVD-MIB', 'mcafee_EVENTNAME')) mibBuilder.exportSymbols('TVD-MIB', mcafee_MAILCCNAME=mcafee_MAILCCNAME, mcafee_DOMAIN=mcafee_DOMAIN, mcafee_EVENT_TEST_TRAP=mcafee_EVENT_TEST_TRAP, mcafee_EVENT_UPDATE_VERSION_OLDER=mcafee_EVENT_UPDATE_VERSION_OLDER, mcafee_EVENT_MAIL_UPPERDISKLIMIT=mcafee_EVENT_MAIL_UPPERDISKLIMIT, mcafee_EVENT_MAIL_SERVICE_SHUTDOWN_OK=mcafee_EVENT_MAIL_SERVICE_SHUTDOWN_OK, mcafee_EVENT_EPO_AGENT_DISKSPACE=mcafee_EVENT_EPO_AGENT_DISKSPACE, mcafee_EVENT_VIRFOUND=mcafee_EVENT_VIRFOUND, mcafee_EVENT_UPDATECANCELED=mcafee_EVENT_UPDATECANCELED, mcafee_EVENT_FILEEXCLUDING=mcafee_EVENT_FILEEXCLUDING, mcafee_EVENT_DELETED_HEURISTICS=mcafee_EVENT_DELETED_HEURISTICS, mcafee_EVENT_VIRUS_FOUND_IN_MEMORY=mcafee_EVENT_VIRUS_FOUND_IN_MEMORY, mcafee_ACCESSPROCESSNAME=mcafee_ACCESSPROCESSNAME, mcafee_EVENT_SCAN_ITEM_INVALID=mcafee_EVENT_SCAN_ITEM_INVALID, mcafee_CLIENTCOMPUTER=mcafee_CLIENTCOMPUTER, mcafee_OS=mcafee_OS, mcafee_MAILFROMNAME=mcafee_MAILFROMNAME, mcafee_EVENT_MAIL_SERVICE_MAX_LOAD=mcafee_EVENT_MAIL_SERVICE_MAX_LOAD, mcafee_ENGINEVERSION=mcafee_ENGINEVERSION, mcafee_NOTESSERVERNAME=mcafee_NOTESSERVERNAME, mcafee_MAILIDENTIFIERINFO=mcafee_MAILIDENTIFIERINFO, mcafee_TARGETIP=mcafee_TARGETIP, mcafee_EVENT_GEN_SYSTEM_ERROR=mcafee_EVENT_GEN_SYSTEM_ERROR, mcafee_EVENT_CLEANERROR_BOOTSECTOR=mcafee_EVENT_CLEANERROR_BOOTSECTOR, mcafee_EVENT_EPO_FAILE_INSTPRODUCT=mcafee_EVENT_EPO_FAILE_INSTPRODUCT, mcafee_EVENT_SCHED_START_TASK_ERROR=mcafee_EVENT_SCHED_START_TASK_ERROR, mcafee=mcafee, mcafee_NOTESDBNAME=mcafee_NOTESDBNAME, mcafee_EVENT_INFECTION_PASSWORD_PROTECTED=mcafee_EVENT_INFECTION_PASSWORD_PROTECTED, mcafee_EVENT_UPDATE_RUNNING=mcafee_EVENT_UPDATE_RUNNING, mcafee_EVENTNAME=mcafee_EVENTNAME, mcafee_EVENT_SCED_TASK_END_OK=mcafee_EVENT_SCED_TASK_END_OK, mcafee_EVENT_EPO_SPIPE_DISKSPACE=mcafee_EVENT_EPO_SPIPE_DISKSPACE, mcafee_EVENT_TASKERR_LOGFILE=mcafee_EVENT_TASKERR_LOGFILE, mcafeeStandardTrapField=mcafeeStandardTrapField, mcafee_EVENT_MAIL_SERVICE_START=mcafee_EVENT_MAIL_SERVICE_START, mcafee_EVENT_OPTIONSERROR=mcafee_EVENT_OPTIONSERROR, mcafee_EVENT_SCAN_REPORT_OS=mcafee_EVENT_SCAN_REPORT_OS, mcafee_EVENT_DIR_ACCESS_ERROR=mcafee_EVENT_DIR_ACCESS_ERROR, mcafee_EVENT_VIRUS_QUARANTINE_FAILURE=mcafee_EVENT_VIRUS_QUARANTINE_FAILURE, mcafee_EVENT_SCAN_CANCELED=mcafee_EVENT_SCAN_CANCELED, mcafee_EVENT_MACRO_VIRUS_DETECTED=mcafee_EVENT_MACRO_VIRUS_DETECTED, mcafee_EVENT_OAS_STOP=mcafee_EVENT_OAS_STOP, mcafee_TASKNAME=mcafee_TASKNAME, mcafee_EVENT_TASK_ERR_MEMALLOC=mcafee_EVENT_TASK_ERR_MEMALLOC, mcafee_EVENT_MAIL_SERVICE_ABEND=mcafee_EVENT_MAIL_SERVICE_ABEND, mcafee_TRAPID=mcafee_TRAPID, mcafee_EVENT_SCHED_TASK_SUCCESS=mcafee_EVENT_SCHED_TASK_SUCCESS, mcafee_GMTTIME=mcafee_GMTTIME, mcafee_EVENT_MAIL_VIRUSQUARANTINED=mcafee_EVENT_MAIL_VIRUSQUARANTINED, mcafee_EVENT_INFECTION_ACESSDENIED=mcafee_EVENT_INFECTION_ACESSDENIED, mcafee_EVENT_UPGRADE_CANCELED=mcafee_EVENT_UPGRADE_CANCELED, mcafee_TSCLIENTID=mcafee_TSCLIENTID, mcafee_EVENT_FILECLEANERROR=mcafee_EVENT_FILECLEANERROR, mcafee_EVENT_MAIL_VIRUS_DETECTED=mcafee_EVENT_MAIL_VIRUS_DETECTED, mcafee_ENGINESTATUS=mcafee_ENGINESTATUS, mcafee_EVENT_UPDATEOK=mcafee_EVENT_UPDATEOK, mcafee_EVENT_MEMALLOC_ERROR=mcafee_EVENT_MEMALLOC_ERROR, mcafee_EVENT_MACRO_VIRUS_DELETED=mcafee_EVENT_MACRO_VIRUS_DELETED, mcafee_EVENT_FILEDELETED=mcafee_EVENT_FILEDELETED, mcafee_EVENT_INTERNAL_APP_ERROR=mcafee_EVENT_INTERNAL_APP_ERROR, mcafee_EVENT_EXCLUDEERR=mcafee_EVENT_EXCLUDEERR, mcafeeTVDTrap=mcafeeTVDTrap, mcafee_EVENT_SERVICE_STARTED_1064=mcafee_EVENT_SERVICE_STARTED_1064, mcafee_EVENT_SCAN_PROC_ERR=mcafee_EVENT_SCAN_PROC_ERR, mcafee_EVENT_MAIL_VIRUS_QUARANTINEDCLEANED=mcafee_EVENT_MAIL_VIRUS_QUARANTINEDCLEANED, mcafee_EVENT_WRITE_PROTECT_ERR=mcafee_EVENT_WRITE_PROTECT_ERR, mcafee_EVENT_MEDIA_NOT_FOUND_ERR=mcafee_EVENT_MEDIA_NOT_FOUND_ERR, mcafee_EVENT_FILE_IO_ERRORS=mcafee_EVENT_FILE_IO_ERRORS, mcafee_EVENT_QUAR_ERROR_HEURISTICS=mcafee_EVENT_QUAR_ERROR_HEURISTICS, mcafee_NOTEID=mcafee_NOTEID, mcafee_EVENT_DELETE_ERR_HEURISTICS=mcafee_EVENT_DELETE_ERR_HEURISTICS, mcafee_EVENT_UPGRADE_FAILED=mcafee_EVENT_UPGRADE_FAILED, mcafee_SOURCEIP=mcafee_SOURCEIP, mcafee_EVENT_FILEDELETEERROR=mcafee_EVENT_FILEDELETEERROR, mcafee_EVENT_SCAN_CANCELED_BY_UPD=mcafee_EVENT_SCAN_CANCELED_BY_UPD, mcafee_MAILSUBJECTLINE=mcafee_MAILSUBJECTLINE, mcafee_NUMVIRS=mcafee_NUMVIRS, mcafee_EVENT_MAIL_VIRUS_QUARANTINED=mcafee_EVENT_MAIL_VIRUS_QUARANTINED, mcafee_EVENT_MAIL_VIRUS_FILTERED=mcafee_EVENT_MAIL_VIRUS_FILTERED, mcafee_EVENT_SCAN_TIMEOUT=mcafee_EVENT_SCAN_TIMEOUT, mcafee_EVENT_DISK_IO_ERR=mcafee_EVENT_DISK_IO_ERR, mcafee_EVENT_ODS_SCAN_STARTED=mcafee_EVENT_ODS_SCAN_STARTED, mcafee_EVENT_NEW_MIB=mcafee_EVENT_NEW_MIB, mcafee_EVENT_SCHED_TASK_CANCELED=mcafee_EVENT_SCHED_TASK_CANCELED, mcafee_EVENT_START_PROCESS=mcafee_EVENT_START_PROCESS, mcafee_TIME=mcafee_TIME, mcafee_EVENT_INFECTED_BINDARY=mcafee_EVENT_INFECTED_BINDARY, mcafee_EVENT_MAIL_VIRUSCLEANED=mcafee_EVENT_MAIL_VIRUSCLEANED, mcafee_SCANRETURNCODE=mcafee_SCANRETURNCODE, mcafee_LANGUAGECODE=mcafee_LANGUAGECODE, mcafee_DATVERSION=mcafee_DATVERSION, mcafee_EVENT_OAS_START=mcafee_EVENT_OAS_START, mcafee_EVENT_SERVICE_ENDING_1065=mcafee_EVENT_SERVICE_ENDING_1065, mcafee_EVENT_INFECTED_HEURISTICS=mcafee_EVENT_INFECTED_HEURISTICS, mcafee_EVENT_MAIL_VIRUS_NOTCLEANED=mcafee_EVENT_MAIL_VIRUS_NOTCLEANED, mcafee_EVENT_MAIL_CONTENTBLOCK=mcafee_EVENT_MAIL_CONTENTBLOCK, mcafee_EVENT_UPDATEFAILED=mcafee_EVENT_UPDATEFAILED, mcafee_EVENT_VIRUS_IN_BOOT_RECORD=mcafee_EVENT_VIRUS_IN_BOOT_RECORD, mcafee_EVENT_VIRUS_QUARANTINED=mcafee_EVENT_VIRUS_QUARANTINED, mcafee_NUMQUARANTINED=mcafee_NUMQUARANTINED, mcafee_EVENT_SCED_START_TASK_OK=mcafee_EVENT_SCED_START_TASK_OK, mcafee_EVENT_UPGRADE_RUNNING=mcafee_EVENT_UPGRADE_RUNNING, mcafee_EVENT_MAIL_LOWDISKLIMIT=mcafee_EVENT_MAIL_LOWDISKLIMIT, mcafee_VIRUSNAME=mcafee_VIRUSNAME, mcafee_EVENT_SCHED_TASK_STOP_ERROR=mcafee_EVENT_SCHED_TASK_STOP_ERROR, mcafee_EVENT_SCAN_SETTINGS=mcafee_EVENT_SCAN_SETTINGS, mcafee_EVENT_ODS_SCAN_ENDED=mcafee_EVENT_ODS_SCAN_ENDED, mcafee_FILENAME=mcafee_FILENAME, mcafee_MAILTONAME=mcafee_MAILTONAME, mcafee_NUMCLEANED=mcafee_NUMCLEANED, mcafee_PROCESSORSERIAL=mcafee_PROCESSORSERIAL, mcafee_EVENT_EPO_AGENT_WRONG_PLATFORM=mcafee_EVENT_EPO_AGENT_WRONG_PLATFORM, mcafee_NUMDELETED=mcafee_NUMDELETED, mcafee_EVENT_FILECLEANED=mcafee_EVENT_FILECLEANED, mcafee_EVENT_ALERTERROR=mcafee_EVENT_ALERTERROR, mcafee_EVENT_PROCESS_ENDED=mcafee_EVENT_PROCESS_ENDED, mcafee_EVENT_EPO_AGENT_RETRYLIMIT=mcafee_EVENT_EPO_AGENT_RETRYLIMIT, mcafee_EVENT_ALOG_ERROR=mcafee_EVENT_ALOG_ERROR, mcafee_EVENT_SCANEND_NO_VIRUSES=mcafee_EVENT_SCANEND_NO_VIRUSES, mcafee_USERNAME=mcafee_USERNAME, mcafee_EVENT_BOOT_SECTOR_CLEANED=mcafee_EVENT_BOOT_SECTOR_CLEANED, mcafee_OBRULE=mcafee_OBRULE, mcafee_EVENT_SCAN_FOUND_AND_CLEANED_INFECTIONS=mcafee_EVENT_SCAN_FOUND_AND_CLEANED_INFECTIONS, mcafee_EVENT_MAIL_VIRUS_DELETED=mcafee_EVENT_MAIL_VIRUS_DELETED, mcafee_EVENT_SCAN_FOUND_INFECTED_FILES=mcafee_EVENT_SCAN_FOUND_INFECTED_FILES, mcafee_VIRUSTYPE=mcafee_VIRUSTYPE, mcafee_EVENT_QUARANTINED_HEURISTICS=mcafee_EVENT_QUARANTINED_HEURISTICS, mcafee_EVENT_SCANNER_DISABLED=mcafee_EVENT_SCANNER_DISABLED, mcafee_EVENT_NOT_SCANNED_PASSWORD=mcafee_EVENT_NOT_SCANNED_PASSWORD)
''' * Colors for terminal ''' class COLORS: # Regular colors Black = "\033[0;30m" Red = "\033[0;31m" Green = "\033[0;32m" Yellow = "\033[0;33m" Blue = "\033[0;34m" Purple = "\033[0;35m" Cyan = "\033[0;36m" White = "\033[0;37m" # Background colors On_Black = "\033[40m" On_Red = "\033[41m" On_Green = "\033[42m" On_Yellow = "\033[43m" On_Blue = "\033[44m" On_Purple = "\033[45m" On_Cyan = "\033[46m" On_White = "\033[47m" # Reset colors RESET = "\033[0m" # TESTING HEADINGS = "\033[45;37m"
""" * Colors for terminal """ class Colors: black = '\x1b[0;30m' red = '\x1b[0;31m' green = '\x1b[0;32m' yellow = '\x1b[0;33m' blue = '\x1b[0;34m' purple = '\x1b[0;35m' cyan = '\x1b[0;36m' white = '\x1b[0;37m' on__black = '\x1b[40m' on__red = '\x1b[41m' on__green = '\x1b[42m' on__yellow = '\x1b[43m' on__blue = '\x1b[44m' on__purple = '\x1b[45m' on__cyan = '\x1b[46m' on__white = '\x1b[47m' reset = '\x1b[0m' headings = '\x1b[45;37m'
# me - this DAT # par - the Par object that has changed # val - the current value # prev - the previous value # # Make sure the corresponding toggle is enabled in the Parameter Execute DAT. def onValueChange(par, prev): # use par.eval() to get current value parent.save.Par_functions(par) return # Called at end of frame with complete list of individual parameter changes. # The changes are a list of named tuples, where each tuple is (Par, previous value) def onValuesChanged(changes): for c in changes: # use par.eval() to get current value par = c.par prev = c.prev return def onPulse(par): parent.save.Par_functions(par) return def onExpressionChange(par, val, prev): return def onExportChange(par, val, prev): return def onEnableChange(par, val, prev): return def onModeChange(par, val, prev): return
def on_value_change(par, prev): parent.save.Par_functions(par) return def on_values_changed(changes): for c in changes: par = c.par prev = c.prev return def on_pulse(par): parent.save.Par_functions(par) return def on_expression_change(par, val, prev): return def on_export_change(par, val, prev): return def on_enable_change(par, val, prev): return def on_mode_change(par, val, prev): return
# Formatting configuration for locale sh_YU languages={'el': u'Gr\u010dki', 'en': 'Engleski', 'co': 'Korzikanski', 'af': 'Afrikanerski', 'sw': 'Svahili', 'ca': 'Katalonski', 'it': 'Italijanski', 'cs': u'\u010ce\u0161ki', 'ar': 'Arapski', 'mk': 'Makedonski', 'ga': 'Irski', 'eu': 'Baskijski', 'et': 'Estonski', 'zh': 'Kineski', 'id': 'Indonezijski', 'es': u'\u0160panski', 'ru': 'Ruski', 'nl': 'Holandski', 'pt': 'Portugalski', 'la': 'Latinski', 'tr': 'Turski', 'lv': 'Letonski', 'lt': 'Litvanski', 'vi': 'Vijetnamski', 'rm': 'Reto-Romanski', 'ro': 'Rumunski', 'is': 'Islandski', 'pl': 'Poljski', 'yi': u'Jidi\u0161', 'be': 'Beloruski', 'fr': 'Francuski', 'bg': 'Bugarski', 'uk': 'Ukrajnski', 'hr': 'Hrvatski', 'de': u'Nema\u010dki', 'da': 'Danski', 'fa': 'Persijski', 'no': u'Norve\u0161ki', 'br': 'Bretonski', 'fi': 'Finski', 'hy': 'Armenski', 'hu': u'Ma\u0111arski', 'ja': 'Japanski', 'he': 'Hebrejski', 'ka': 'Gruzijski', 'sr': 'Srpski', 'mo': 'Moldavski', 'mn': 'Mongolski', 'ko': 'Korejski', 'sv': u'\u0160vedski', 'km': u'Kambod\u017eanski', 'sk': u'Slova\u010dki', 'sh': 'Srpsko-Hrvatski', 'ku': 'Kurdski', 'sl': u'Slovena\u010dki', 'ky': 'Kirgiski', 'my': 'Burmanski', 'sq': 'Albanski'} countries={'BD': u'Banglade\u0161', 'BE': 'Belgija', 'BF': 'Burkina Faso', 'BG': 'Bugarska', 'BA': 'Bosna i Hercegovina', 'BB': 'Barbados', 'WF': 'Wallis and Futuna', 'BM': 'Bermuda', 'BN': 'Brunej', 'BO': 'Bolivija', 'BH': 'Bahrein', 'BI': 'Burundi', 'BJ': 'Benin', 'BT': 'Butan', 'JM': 'Jamajka', 'BV': 'Bouvet Island', 'BW': 'Bocvana', 'WS': 'Samoa', 'BR': 'Brazil', 'BS': 'Bahami', 'BY': 'Belorusija', 'BZ': 'Belise', 'RU': 'Rusija', 'RW': 'Ruanda', 'TL': 'Timor-Leste', 'RE': u'R\xe9union', 'TM': 'Turkmenistan', 'TJ': u'Tad\u017eikistan', 'RO': 'Rumunija', 'TK': 'Tokelau', 'GW': 'Gvineja-Bisao', 'GU': 'Guam', 'GT': 'Gvatemala', 'GS': 'South Georgia and South Sandwich Islands', 'GR': u'Gr\u010dka', 'GQ': 'Ekvatorijalna Gvineja', 'GP': 'Gvadelupe', 'JP': 'Japan', 'GY': 'Gvajana', 'GF': 'Francuska Gvajana', 'GE': 'Gruzija', 'GD': 'Grenada', 'GB': 'Velika Britanija', 'GA': 'Gabon', 'SV': 'Salvador', 'GN': 'Gvineja', 'GM': 'Gambija', 'GL': 'Greenland', 'GI': 'Gibraltar', 'GH': 'Gana', 'OM': 'Oman', 'TN': 'Tunis', 'JO': 'Jordan', 'SP': 'Srbija', 'HR': 'Hrvatska', 'HT': 'Haiti', 'HU': u'Ma\u0111arska', 'HK': 'Hong Kong S.A.R., China', 'HN': 'Honduras', 'HM': 'Heard Island and McDonald Islands', 'VE': 'Venecuela', 'PR': 'Porto Riko', 'PS': 'Palestinian Territory', 'PW': 'Palau', 'PT': 'Portugal', 'SJ': 'Svalbard and Jan Mayen', 'PY': 'Paragvaj', 'IQ': 'Irak', 'PA': 'Panama', 'PF': 'Francuska Polinezija', 'PG': 'Papua Nova Gvineja', 'PE': 'Peru', 'PK': 'Pakistan', 'PH': 'Filipini', 'PN': 'Pitcairn', 'PL': 'Poljska', 'PM': 'Saint Pierre and Miquelon', 'ZM': 'Zambija', 'EH': 'Zapadna Sahara', 'EE': 'Estonija', 'EG': 'Egipat', 'ZA': u'Ju\u017ena Afrika', 'EC': 'Ekvador', 'IT': 'Italija', 'VN': 'Vijetnam', 'SB': 'Solomon Islands', 'ET': 'Etiopija', 'SO': 'Somalija', 'ZW': 'Zimbabve', 'SA': 'Saudijska Arabija', 'ES': u'\u0160panija', 'ER': 'Eritreja', 'MD': 'Moldavija', 'MG': 'Madagaskar', 'MA': 'Maroko', 'MC': 'Monako', 'UZ': 'Uzbekistan', 'MM': 'Mijnamar', 'ML': 'Mali', 'MO': 'Macao S.A.R. China', 'MN': 'Mongolija', 'MH': 'Marshall Islands', 'MK': 'Makedonija', 'MU': 'Mauricius', 'MT': 'Malta', 'MW': 'Malawi', 'MV': 'Maldives', 'MQ': 'Martinik', 'MP': 'Northern Mariana Islands', 'MS': 'Montserrat', 'MR': 'Mauritanija', 'UG': 'Uganda', 'MY': 'Malezija', 'MX': 'Meksiko', 'IL': 'Izrael', 'FR': 'Francuska', 'IO': 'British Indian Ocean Territory', 'SH': 'Saint Helena', 'FI': 'Finska', 'FJ': u'Fid\u017ei', 'FK': 'Falkland Islands', 'FM': 'Mikronezija', 'FO': 'Faroe Islands', 'NI': 'Nikaragva', 'NL': 'Holandija', 'NO': u'Norve\u0161ka', 'NA': 'Namibija', 'VU': 'Vanuatu', 'NC': 'Nova Kaledonija', 'NE': 'Niger', 'NF': 'Norfolk Island', 'NG': 'Nigerija', 'NZ': 'Novi Zeland', 'NP': 'Nepal', 'NR': 'Nauru', 'NU': 'Niue', 'CK': 'Cook Islands', 'CI': u'Obala Slonova\u010de', 'CH': u'\u0160vajcarska', 'CO': 'Kolumbija', 'CN': 'Kina', 'CM': 'Kamerun', 'CL': u'\u010cile', 'CC': 'Cocos Islands', 'CA': 'Kanada', 'CG': 'Kongo', 'CF': u'Centralno Afri\u010dka Republika', 'CD': 'Democratic Republic of the Congo', 'CZ': u'\u010ce\u0161ka', 'CY': 'Kipar', 'CX': 'Christmas Island', 'CR': 'Kostarika', 'Fallback': 'en', 'CV': 'Cape Verde', 'CU': 'Kuba', 'SZ': 'Svazilend', 'SY': 'Sirija', 'KG': 'Kirgistan', 'KE': 'Kenija', 'SR': 'Surinam', 'KI': 'Kiribati', 'KH': u'Kambod\u017ea', 'KN': 'Saint Kitts and Nevis', 'KM': 'Comoros', 'ST': 'Sao Tome and Principe', 'SK': u'Slova\u010dka', 'KR': u'Ju\u017ena Koreja', 'SI': 'Slovenija', 'KP': 'Severna Koreja', 'KW': 'Kuvajt', 'SN': 'Senegal', 'SM': 'San Marino', 'SL': 'Sijera Leone', 'SC': u'Sej\u0161eli', 'KZ': 'Kazahstan', 'KY': 'Cayman Islands', 'SG': 'Singapur', 'SE': u'\u0160vedska', 'SD': 'Sudan', 'DO': 'Dominikanska Republika', 'DM': 'Dominika', 'DJ': u'D\u017eibuti', 'DK': 'Danska', 'VG': u'Britanska Devi\u010danska Ostrva', 'DE': u'Nema\u010dka', 'YE': 'Jemen', 'DZ': u'Al\u017eir', 'US': u'Sjedinjene Ameri\u010dke Dr\u017eave', 'UY': 'Urugvaj', 'YU': 'Jugoslavija', 'YT': 'Mayotte', 'UM': 'United States Minor Outlying Islands', 'LB': 'Liban', 'LC': 'Saint Lucia', 'LA': 'Laos', 'TV': 'Tuvalu', 'TW': 'Tajvan', 'TT': 'Trinidad i Tobago', 'TR': 'Turska', 'LK': u'\u0160rilanka', 'LI': u'Lihen\u0161tajn', 'LV': 'Letonija', 'TO': 'Tonga', 'LT': 'Litvanija', 'LU': 'Luksemburg', 'LR': 'Liberija', 'LS': 'Lesoto', 'TH': 'Tajland', 'TF': u'Francuske Ju\u017ene Teritorije', 'TG': 'Togo', 'TD': u'\u010cad', 'TC': 'Turks and Caicos Islands', 'LY': 'Libija', 'VA': 'Vatikan', 'VC': 'Saint Vincent and the Grenadines', 'AE': 'Ujedinjeni Arapski Emirati', 'AD': 'Andora', 'AG': 'Antigua and Barbuda', 'AF': 'Avganistan', 'AI': 'Anguilla', 'VI': u'S.A.D. Devi\u010danska Ostrva', 'IS': 'Island', 'IR': 'Iran', 'AM': 'Armenija', 'AL': 'Albanija', 'AO': 'Angola', 'AN': 'Holandski Antili', 'AQ': 'Antarctica', 'AS': 'American Samoa', 'AR': 'Argentina', 'AU': 'Australija', 'AT': 'Austrija', 'AW': 'Aruba', 'IN': 'Indija', 'TZ': 'Tanzanija', 'AZ': u'Azerbejd\u017ean', 'IE': 'Irska', 'ID': 'Indonezija', 'UA': 'Ukrajina', 'QA': 'Katar', 'MZ': 'Mozambik'} months=['januar', 'februar', 'mart', 'april', 'maj', 'juni', 'juli', 'avgust', 'septembar', 'oktobar', 'novembar', 'decembar'] abbrMonths=['jan', 'feb', 'mar', 'apr', 'maj', 'jun', 'jul', 'avg', 'sep', 'okt', 'nov', 'dec'] days=['ponedeljak', 'utorak', 'sreda', u'\u010detvrtak', 'petak', 'subota', 'nedelja'] abbrDays=['pon', 'uto', 'sre', u'\u010det', 'pet', 'sub', 'ned'] dateFormats={'medium': '%d.%m.%Y.', 'full': '%%(dayname)s, %d. %%(monthname)s %Y.', 'long': '%%(dayname)s, %d.%m.%Y.', 'short': '%d.%m.%y.'} numericSymbols={'group': '.', 'nativeZeroDigit': '0', 'exponential': 'E', 'perMille': u'\u2030', 'nan': u'\ufffd', 'decimal': ',', 'percentSign': '%', 'list': ';', 'patternDigit': '#', 'plusSign': '+', 'infinity': u'\u221e', 'minusSign': '-'}
languages = {'el': u'Grčki', 'en': 'Engleski', 'co': 'Korzikanski', 'af': 'Afrikanerski', 'sw': 'Svahili', 'ca': 'Katalonski', 'it': 'Italijanski', 'cs': u'Češki', 'ar': 'Arapski', 'mk': 'Makedonski', 'ga': 'Irski', 'eu': 'Baskijski', 'et': 'Estonski', 'zh': 'Kineski', 'id': 'Indonezijski', 'es': u'Španski', 'ru': 'Ruski', 'nl': 'Holandski', 'pt': 'Portugalski', 'la': 'Latinski', 'tr': 'Turski', 'lv': 'Letonski', 'lt': 'Litvanski', 'vi': 'Vijetnamski', 'rm': 'Reto-Romanski', 'ro': 'Rumunski', 'is': 'Islandski', 'pl': 'Poljski', 'yi': u'Jidiš', 'be': 'Beloruski', 'fr': 'Francuski', 'bg': 'Bugarski', 'uk': 'Ukrajnski', 'hr': 'Hrvatski', 'de': u'Nemački', 'da': 'Danski', 'fa': 'Persijski', 'no': u'Norveški', 'br': 'Bretonski', 'fi': 'Finski', 'hy': 'Armenski', 'hu': u'Mađarski', 'ja': 'Japanski', 'he': 'Hebrejski', 'ka': 'Gruzijski', 'sr': 'Srpski', 'mo': 'Moldavski', 'mn': 'Mongolski', 'ko': 'Korejski', 'sv': u'Švedski', 'km': u'Kambodžanski', 'sk': u'Slovački', 'sh': 'Srpsko-Hrvatski', 'ku': 'Kurdski', 'sl': u'Slovenački', 'ky': 'Kirgiski', 'my': 'Burmanski', 'sq': 'Albanski'} countries = {'BD': u'Bangladeš', 'BE': 'Belgija', 'BF': 'Burkina Faso', 'BG': 'Bugarska', 'BA': 'Bosna i Hercegovina', 'BB': 'Barbados', 'WF': 'Wallis and Futuna', 'BM': 'Bermuda', 'BN': 'Brunej', 'BO': 'Bolivija', 'BH': 'Bahrein', 'BI': 'Burundi', 'BJ': 'Benin', 'BT': 'Butan', 'JM': 'Jamajka', 'BV': 'Bouvet Island', 'BW': 'Bocvana', 'WS': 'Samoa', 'BR': 'Brazil', 'BS': 'Bahami', 'BY': 'Belorusija', 'BZ': 'Belise', 'RU': 'Rusija', 'RW': 'Ruanda', 'TL': 'Timor-Leste', 'RE': u'Réunion', 'TM': 'Turkmenistan', 'TJ': u'Tadžikistan', 'RO': 'Rumunija', 'TK': 'Tokelau', 'GW': 'Gvineja-Bisao', 'GU': 'Guam', 'GT': 'Gvatemala', 'GS': 'South Georgia and South Sandwich Islands', 'GR': u'Grčka', 'GQ': 'Ekvatorijalna Gvineja', 'GP': 'Gvadelupe', 'JP': 'Japan', 'GY': 'Gvajana', 'GF': 'Francuska Gvajana', 'GE': 'Gruzija', 'GD': 'Grenada', 'GB': 'Velika Britanija', 'GA': 'Gabon', 'SV': 'Salvador', 'GN': 'Gvineja', 'GM': 'Gambija', 'GL': 'Greenland', 'GI': 'Gibraltar', 'GH': 'Gana', 'OM': 'Oman', 'TN': 'Tunis', 'JO': 'Jordan', 'SP': 'Srbija', 'HR': 'Hrvatska', 'HT': 'Haiti', 'HU': u'Mađarska', 'HK': 'Hong Kong S.A.R., China', 'HN': 'Honduras', 'HM': 'Heard Island and McDonald Islands', 'VE': 'Venecuela', 'PR': 'Porto Riko', 'PS': 'Palestinian Territory', 'PW': 'Palau', 'PT': 'Portugal', 'SJ': 'Svalbard and Jan Mayen', 'PY': 'Paragvaj', 'IQ': 'Irak', 'PA': 'Panama', 'PF': 'Francuska Polinezija', 'PG': 'Papua Nova Gvineja', 'PE': 'Peru', 'PK': 'Pakistan', 'PH': 'Filipini', 'PN': 'Pitcairn', 'PL': 'Poljska', 'PM': 'Saint Pierre and Miquelon', 'ZM': 'Zambija', 'EH': 'Zapadna Sahara', 'EE': 'Estonija', 'EG': 'Egipat', 'ZA': u'Južna Afrika', 'EC': 'Ekvador', 'IT': 'Italija', 'VN': 'Vijetnam', 'SB': 'Solomon Islands', 'ET': 'Etiopija', 'SO': 'Somalija', 'ZW': 'Zimbabve', 'SA': 'Saudijska Arabija', 'ES': u'Španija', 'ER': 'Eritreja', 'MD': 'Moldavija', 'MG': 'Madagaskar', 'MA': 'Maroko', 'MC': 'Monako', 'UZ': 'Uzbekistan', 'MM': 'Mijnamar', 'ML': 'Mali', 'MO': 'Macao S.A.R. China', 'MN': 'Mongolija', 'MH': 'Marshall Islands', 'MK': 'Makedonija', 'MU': 'Mauricius', 'MT': 'Malta', 'MW': 'Malawi', 'MV': 'Maldives', 'MQ': 'Martinik', 'MP': 'Northern Mariana Islands', 'MS': 'Montserrat', 'MR': 'Mauritanija', 'UG': 'Uganda', 'MY': 'Malezija', 'MX': 'Meksiko', 'IL': 'Izrael', 'FR': 'Francuska', 'IO': 'British Indian Ocean Territory', 'SH': 'Saint Helena', 'FI': 'Finska', 'FJ': u'Fidži', 'FK': 'Falkland Islands', 'FM': 'Mikronezija', 'FO': 'Faroe Islands', 'NI': 'Nikaragva', 'NL': 'Holandija', 'NO': u'Norveška', 'NA': 'Namibija', 'VU': 'Vanuatu', 'NC': 'Nova Kaledonija', 'NE': 'Niger', 'NF': 'Norfolk Island', 'NG': 'Nigerija', 'NZ': 'Novi Zeland', 'NP': 'Nepal', 'NR': 'Nauru', 'NU': 'Niue', 'CK': 'Cook Islands', 'CI': u'Obala Slonovače', 'CH': u'Švajcarska', 'CO': 'Kolumbija', 'CN': 'Kina', 'CM': 'Kamerun', 'CL': u'Čile', 'CC': 'Cocos Islands', 'CA': 'Kanada', 'CG': 'Kongo', 'CF': u'Centralno Afrička Republika', 'CD': 'Democratic Republic of the Congo', 'CZ': u'Češka', 'CY': 'Kipar', 'CX': 'Christmas Island', 'CR': 'Kostarika', 'Fallback': 'en', 'CV': 'Cape Verde', 'CU': 'Kuba', 'SZ': 'Svazilend', 'SY': 'Sirija', 'KG': 'Kirgistan', 'KE': 'Kenija', 'SR': 'Surinam', 'KI': 'Kiribati', 'KH': u'Kambodža', 'KN': 'Saint Kitts and Nevis', 'KM': 'Comoros', 'ST': 'Sao Tome and Principe', 'SK': u'Slovačka', 'KR': u'Južna Koreja', 'SI': 'Slovenija', 'KP': 'Severna Koreja', 'KW': 'Kuvajt', 'SN': 'Senegal', 'SM': 'San Marino', 'SL': 'Sijera Leone', 'SC': u'Sejšeli', 'KZ': 'Kazahstan', 'KY': 'Cayman Islands', 'SG': 'Singapur', 'SE': u'Švedska', 'SD': 'Sudan', 'DO': 'Dominikanska Republika', 'DM': 'Dominika', 'DJ': u'Džibuti', 'DK': 'Danska', 'VG': u'Britanska Devičanska Ostrva', 'DE': u'Nemačka', 'YE': 'Jemen', 'DZ': u'Alžir', 'US': u'Sjedinjene Američke Države', 'UY': 'Urugvaj', 'YU': 'Jugoslavija', 'YT': 'Mayotte', 'UM': 'United States Minor Outlying Islands', 'LB': 'Liban', 'LC': 'Saint Lucia', 'LA': 'Laos', 'TV': 'Tuvalu', 'TW': 'Tajvan', 'TT': 'Trinidad i Tobago', 'TR': 'Turska', 'LK': u'Šrilanka', 'LI': u'Lihenštajn', 'LV': 'Letonija', 'TO': 'Tonga', 'LT': 'Litvanija', 'LU': 'Luksemburg', 'LR': 'Liberija', 'LS': 'Lesoto', 'TH': 'Tajland', 'TF': u'Francuske Južne Teritorije', 'TG': 'Togo', 'TD': u'Čad', 'TC': 'Turks and Caicos Islands', 'LY': 'Libija', 'VA': 'Vatikan', 'VC': 'Saint Vincent and the Grenadines', 'AE': 'Ujedinjeni Arapski Emirati', 'AD': 'Andora', 'AG': 'Antigua and Barbuda', 'AF': 'Avganistan', 'AI': 'Anguilla', 'VI': u'S.A.D. Devičanska Ostrva', 'IS': 'Island', 'IR': 'Iran', 'AM': 'Armenija', 'AL': 'Albanija', 'AO': 'Angola', 'AN': 'Holandski Antili', 'AQ': 'Antarctica', 'AS': 'American Samoa', 'AR': 'Argentina', 'AU': 'Australija', 'AT': 'Austrija', 'AW': 'Aruba', 'IN': 'Indija', 'TZ': 'Tanzanija', 'AZ': u'Azerbejdžan', 'IE': 'Irska', 'ID': 'Indonezija', 'UA': 'Ukrajina', 'QA': 'Katar', 'MZ': 'Mozambik'} months = ['januar', 'februar', 'mart', 'april', 'maj', 'juni', 'juli', 'avgust', 'septembar', 'oktobar', 'novembar', 'decembar'] abbr_months = ['jan', 'feb', 'mar', 'apr', 'maj', 'jun', 'jul', 'avg', 'sep', 'okt', 'nov', 'dec'] days = ['ponedeljak', 'utorak', 'sreda', u'četvrtak', 'petak', 'subota', 'nedelja'] abbr_days = ['pon', 'uto', 'sre', u'čet', 'pet', 'sub', 'ned'] date_formats = {'medium': '%d.%m.%Y.', 'full': '%%(dayname)s, %d. %%(monthname)s %Y.', 'long': '%%(dayname)s, %d.%m.%Y.', 'short': '%d.%m.%y.'} numeric_symbols = {'group': '.', 'nativeZeroDigit': '0', 'exponential': 'E', 'perMille': u'‰', 'nan': u'�', 'decimal': ',', 'percentSign': '%', 'list': ';', 'patternDigit': '#', 'plusSign': '+', 'infinity': u'∞', 'minusSign': '-'}
print(f"{'='*12} BRANT'STORE {'='*12}") price = float(input('How much the product costs? $')) print('''Choose the form of payment: [1] Cash/check [2] Credit Card''') payment = int(input('What is the payment method? ')) if payment == 1: price -= price * 0.1 print(f'The price will be ${price:.2f}') elif payment == 2: print('''Choose the installment: [1] In Cash [2] Up to 2x [3] Up to 3x or more''') installment = int(input('Installment: ')) if installment == 1: price -= price * 0.05 print(f'The price will be ${price:.2f}') elif installment == 2: print(f'The price will be ${price:.2f} (${price / 2:.2f} per month)') elif installment == 3: price += price * 0.2 time = int(input('For how many months? ')) if time > 2: print(f'The price will be ${price:.2f} (${price / time:.2f} per month during {time} months)') else: print('[ERROR] Verify the data and try again!') else: print('[ERROR] Verify the data and try again!') else: print('[ERROR] Verify the date and try again!')
print(f"{'=' * 12} BRANT'STORE {'=' * 12}") price = float(input('How much the product costs? $')) print('Choose the form of payment:\n[1] Cash/check\n[2] Credit Card') payment = int(input('What is the payment method? ')) if payment == 1: price -= price * 0.1 print(f'The price will be ${price:.2f}') elif payment == 2: print('Choose the installment:\n [1] In Cash \n [2] Up to 2x\n [3] Up to 3x or more') installment = int(input('Installment: ')) if installment == 1: price -= price * 0.05 print(f'The price will be ${price:.2f}') elif installment == 2: print(f'The price will be ${price:.2f} (${price / 2:.2f} per month)') elif installment == 3: price += price * 0.2 time = int(input('For how many months? ')) if time > 2: print(f'The price will be ${price:.2f} (${price / time:.2f} per month during {time} months)') else: print('[ERROR] Verify the data and try again!') else: print('[ERROR] Verify the data and try again!') else: print('[ERROR] Verify the date and try again!')
class Solution: def replaceSpaces(self, S: str, length: int) -> str: cnt = 0 S = list(S) cnt += sum((1 for c in S[:length] if c == ' ')) newLen = length + 2 * cnt #print(length, newLen) S = S[:newLen] for i in range(length - 1, -1, -1): if S[i] == ' ': S[newLen - 1] = '0' S[newLen - 2] = '2' S[newLen - 3] = '%' newLen -= 3 else: S[newLen - 1] = S[i] newLen -= 1 return ''.join(S)
class Solution: def replace_spaces(self, S: str, length: int) -> str: cnt = 0 s = list(S) cnt += sum((1 for c in S[:length] if c == ' ')) new_len = length + 2 * cnt s = S[:newLen] for i in range(length - 1, -1, -1): if S[i] == ' ': S[newLen - 1] = '0' S[newLen - 2] = '2' S[newLen - 3] = '%' new_len -= 3 else: S[newLen - 1] = S[i] new_len -= 1 return ''.join(S)
# DFLOW LIBRARY: # dflow matrices module # with zeros and ones # functions def zeros(rows, columns): return [[0]*columns]*rows def ones(rows, columns): return [[1]*columns]*rows
def zeros(rows, columns): return [[0] * columns] * rows def ones(rows, columns): return [[1] * columns] * rows
def merge(L, R, arr): nl = len(L) nr = len(R) i, j, k = 0, 0, 0 while i < nl and j < nr: if L[i] <= R[j]: arr[k] = L[i] k += 1 i += 1 else: arr[k] = R[j] k += 1 j += 1 def exhaust(index, maxIndex, arrIndex, arr, shortArr): while index < maxIndex: arr[arrIndex] = shortArr[index] index += 1 arrIndex += 1 exhaust(i, nl, k, arr, L) exhaust(j, nr, k, arr, R) def mergeSort(arr): n = len(arr) if n < 2: return arr mid = n // 2 left = arr[:mid] right = arr[mid:] mergeSort(left) mergeSort(right) merge(left, right, arr) if __name__ == "__main__": nums = list(map(int, input().split())) mergeSort(nums) print(nums)
def merge(L, R, arr): nl = len(L) nr = len(R) (i, j, k) = (0, 0, 0) while i < nl and j < nr: if L[i] <= R[j]: arr[k] = L[i] k += 1 i += 1 else: arr[k] = R[j] k += 1 j += 1 def exhaust(index, maxIndex, arrIndex, arr, shortArr): while index < maxIndex: arr[arrIndex] = shortArr[index] index += 1 arr_index += 1 exhaust(i, nl, k, arr, L) exhaust(j, nr, k, arr, R) def merge_sort(arr): n = len(arr) if n < 2: return arr mid = n // 2 left = arr[:mid] right = arr[mid:] merge_sort(left) merge_sort(right) merge(left, right, arr) if __name__ == '__main__': nums = list(map(int, input().split())) merge_sort(nums) print(nums)
""" Created on Wed Jul 22 22:27:09 2020 @author: wallissoncarvalho This file is based on https://github.com/mullenkamp/nasadap """ mission_product_dict = { 'gpm': { 'base_url': 'https://gpm1.gesdisc.eosdis.nasa.gov:443', 'process_level': 'GPM_L3', 'version': 6, 'products': { '3IMERGHHE': '{mission}_{product}.{version:02}/{year}/{dayofyear:03}/3B-HHR-E.MS.MRG.3IMERG.{' 'date}-S{time_start}-E{time_end}.{minutes}.V{version:02}B.HDF5', '3IMERGHHL': '{mission}_{product}.{version:02}/{year}/{dayofyear:03}/3B-HHR-L.MS.MRG.3IMERG.{' 'date}-S{time_start}-E{time_end}.{minutes}.V{version:02}B.HDF5', '3IMERGHH': '{mission}_{product}.{version:02}/{year}/{dayofyear:03}/3B-HHR.MS.MRG.3IMERG.{' 'date}-S{time_start}-E{time_end}.{minutes}.V{version:02}B.HDF5 ' } } } master_datasets = {'3IMERGHHE': ['precipitationQualityIndex', 'IRkalmanFilterWeight', 'precipitationCal', 'HQprecipitation', 'probabilityLiquidPrecipitation', 'randomError', 'IRprecipitation'], '3IMERGHHL': ['precipitationQualityIndex', 'IRkalmanFilterWeight', 'precipitationCal', 'HQprecipitation', 'probabilityLiquidPrecipitation', 'randomError', 'IRprecipitation'], '3IMERGHH': ['precipitationQualityIndex', 'IRkalmanFilterWeight', 'precipitationCal', 'HQprecipitation', 'probabilityLiquidPrecipitation', 'randomError', 'IRprecipitation']}
""" Created on Wed Jul 22 22:27:09 2020 @author: wallissoncarvalho This file is based on https://github.com/mullenkamp/nasadap """ mission_product_dict = {'gpm': {'base_url': 'https://gpm1.gesdisc.eosdis.nasa.gov:443', 'process_level': 'GPM_L3', 'version': 6, 'products': {'3IMERGHHE': '{mission}_{product}.{version:02}/{year}/{dayofyear:03}/3B-HHR-E.MS.MRG.3IMERG.{date}-S{time_start}-E{time_end}.{minutes}.V{version:02}B.HDF5', '3IMERGHHL': '{mission}_{product}.{version:02}/{year}/{dayofyear:03}/3B-HHR-L.MS.MRG.3IMERG.{date}-S{time_start}-E{time_end}.{minutes}.V{version:02}B.HDF5', '3IMERGHH': '{mission}_{product}.{version:02}/{year}/{dayofyear:03}/3B-HHR.MS.MRG.3IMERG.{date}-S{time_start}-E{time_end}.{minutes}.V{version:02}B.HDF5 '}}} master_datasets = {'3IMERGHHE': ['precipitationQualityIndex', 'IRkalmanFilterWeight', 'precipitationCal', 'HQprecipitation', 'probabilityLiquidPrecipitation', 'randomError', 'IRprecipitation'], '3IMERGHHL': ['precipitationQualityIndex', 'IRkalmanFilterWeight', 'precipitationCal', 'HQprecipitation', 'probabilityLiquidPrecipitation', 'randomError', 'IRprecipitation'], '3IMERGHH': ['precipitationQualityIndex', 'IRkalmanFilterWeight', 'precipitationCal', 'HQprecipitation', 'probabilityLiquidPrecipitation', 'randomError', 'IRprecipitation']}
# AUTOGENERATED BY NBDEV! DO NOT EDIT! __all__ = ["index", "modules", "custom_doc_links", "git_url"] index = {"article_holder": "00_loadarticles.ipynb", "CoverageTrendsLoader": "00_loadarticles.ipynb", "dailysourcepermalinksLoader": "00_loadarticles.ipynb", "describer": "01_descriptive_analysis.ipynb", "predicter": "02_predictive_analysis.ipynb", "get_mse": "02_predictive_analysis.ipynb", "visualizer": "03_visualize.ipynb", "downloadGDELT": "04_download.ipynb"} modules = ["loader.py", "describe.py", "predict.py", "visualize.py", "download.py"] doc_url = "https://brockmanmatt.github.io/newstrends/" git_url = "https://github.com/brockmanmatt/newstrends/tree/master/" def custom_doc_links(name): return None
__all__ = ['index', 'modules', 'custom_doc_links', 'git_url'] index = {'article_holder': '00_loadarticles.ipynb', 'CoverageTrendsLoader': '00_loadarticles.ipynb', 'dailysourcepermalinksLoader': '00_loadarticles.ipynb', 'describer': '01_descriptive_analysis.ipynb', 'predicter': '02_predictive_analysis.ipynb', 'get_mse': '02_predictive_analysis.ipynb', 'visualizer': '03_visualize.ipynb', 'downloadGDELT': '04_download.ipynb'} modules = ['loader.py', 'describe.py', 'predict.py', 'visualize.py', 'download.py'] doc_url = 'https://brockmanmatt.github.io/newstrends/' git_url = 'https://github.com/brockmanmatt/newstrends/tree/master/' def custom_doc_links(name): return None
class ShellException(Exception): def __init__(self, msg): self._msg = msg def __str__(self): return repr(self._msg) class ParseException(Exception): def __init__(self, msg): self._msg = msg def __str__(self): return repr(self._msg) class TreeException(Exception): def __init__(self, msg): self._msg = msg def __str__(self): return repr(self._msg) class AccessException(Exception): def __init__(self, msg): self._msg = msg def __str__(self): return repr(self._msg)
class Shellexception(Exception): def __init__(self, msg): self._msg = msg def __str__(self): return repr(self._msg) class Parseexception(Exception): def __init__(self, msg): self._msg = msg def __str__(self): return repr(self._msg) class Treeexception(Exception): def __init__(self, msg): self._msg = msg def __str__(self): return repr(self._msg) class Accessexception(Exception): def __init__(self, msg): self._msg = msg def __str__(self): return repr(self._msg)
#!/usr/bin/env python # -*- coding : utf-8 -*- message = "hello python" def say(): print(message)
message = 'hello python' def say(): print(message)
''' Created on 18.05.2018 @author: yvo ''' class DataReader(object): ''' Generic main class of all data reader objects used for the GLAMOS data interface. An inherited data reader object can be specialised for file, database or web-services ... As main object common to all inherited objects a glacier object will has to be given to all constructors. Attributes: _glacier Glacier of which the data has to be read. ''' _glacier = None #TODO: Including a logger to log all transactions done by reading files and databases. @property def glacier(self): ''' Get the Glacier object of the data reader. ''' return self._glacier def __init__(self, glacier): ''' Main constructor for all inherited data reader objects. The main constructor has to be called by super().__main__() by all constructors. @type glacier: DataObjects.Glacier.Glacier @param glacier: Glacier object for which the data will be read. ''' self._glacier = glacier def __del__(self): ''' Destructor of the DataReader and inherited classes. Deletes all main objects of the class. ''' self._glacier = None
""" Created on 18.05.2018 @author: yvo """ class Datareader(object): """ Generic main class of all data reader objects used for the GLAMOS data interface. An inherited data reader object can be specialised for file, database or web-services ... As main object common to all inherited objects a glacier object will has to be given to all constructors. Attributes: _glacier Glacier of which the data has to be read. """ _glacier = None @property def glacier(self): """ Get the Glacier object of the data reader. """ return self._glacier def __init__(self, glacier): """ Main constructor for all inherited data reader objects. The main constructor has to be called by super().__main__() by all constructors. @type glacier: DataObjects.Glacier.Glacier @param glacier: Glacier object for which the data will be read. """ self._glacier = glacier def __del__(self): """ Destructor of the DataReader and inherited classes. Deletes all main objects of the class. """ self._glacier = None
class Solution(object): def isValidSerialization(self, preorder): """ :type preorder: str :rtype: bool """ count = 1 for num in preorder.split(','): if not count: return False elif num != '#': count += 1 else: count -= 1 return count == 0
class Solution(object): def is_valid_serialization(self, preorder): """ :type preorder: str :rtype: bool """ count = 1 for num in preorder.split(','): if not count: return False elif num != '#': count += 1 else: count -= 1 return count == 0
def addBorder(picture): pictureWithBorder = [] pictureWithBorder.append('*'*(len(picture[0])+2)) for i in range(len(picture)): pictureWithBorder.append('*' + picture[i] + '*') pictureWithBorder.append('*'*(len(picture[0])+2)) return pictureWithBorder
def add_border(picture): picture_with_border = [] pictureWithBorder.append('*' * (len(picture[0]) + 2)) for i in range(len(picture)): pictureWithBorder.append('*' + picture[i] + '*') pictureWithBorder.append('*' * (len(picture[0]) + 2)) return pictureWithBorder
x = 5 for i in range(1,10, 2): for j in reversed(range(x, x+3)): print("I={} J={}".format(i,j)) x = x + 2
x = 5 for i in range(1, 10, 2): for j in reversed(range(x, x + 3)): print('I={} J={}'.format(i, j)) x = x + 2
key = 5 message = open("encrypted.txt", "r") encrypted = message.read() message.close() print(encrypted) print("DECRYPTED: ", " ") decrypt = [] for i in range(0, len(encrypted)): decrypt.append(ord(encrypted[i]) - key) #decrypt[i] = decrypt[i] - key for i in range(0, len(decrypt)): decrypt[i] = chr(decrypt[i]) decrypted = open("decrypted.txt", "w") for i in range(0, len(decrypt)): decrypted.write(decrypt[i]) decrypted.close() print(decrypt)
key = 5 message = open('encrypted.txt', 'r') encrypted = message.read() message.close() print(encrypted) print('DECRYPTED: ', ' ') decrypt = [] for i in range(0, len(encrypted)): decrypt.append(ord(encrypted[i]) - key) for i in range(0, len(decrypt)): decrypt[i] = chr(decrypt[i]) decrypted = open('decrypted.txt', 'w') for i in range(0, len(decrypt)): decrypted.write(decrypt[i]) decrypted.close() print(decrypt)
#from enum import Enum # Enum only in Python >= 3.4 #class Operator(Enum): class Operator(object): And = 0 Equal = 1 GreaterEqual = 2 Greater = 3 LessEqual = 4 Less = 5 NotEqual = 6 Or = 7 Between = 8 Contains = 9 EndsWith = 10 Is = 11 IsNot = 12 Like = 13 Matches = 14 StartsWith = 15 Add = 16 Sub = 17 Mul = 18 Div = 19 Mod = 20 InstanceOf = 21 class LogicalConnective(object): def __init__(self, operator, operands): self.operator = operator self.operands = operands @classmethod def create(cls, operator, operands): return cls(operator, operands) def __and__(self, other): return LogicalConnective.create(Operator.And, (self, other)) def __or__(self, other): return LogicalConnective.create(Operator.Or, (self, other)) def and_(a, b): if isinstance(a, LogicalConnective) and isinstance(b, LogicalConnective): return LogicalConnective(Operator.And, (a, b)) else: raise TypeError('Both operands to conjunction must be ' 'LogicalConnective objects; got {0} & {1}'.format( type(a), type(b))) def or_(a, b): if isinstance(a, LogicalConnective) and isinstance(b, LogicalConnective): return LogicalConnective(Operator.Or, (a, b)) else: raise TypeError('Both operands to disjunction must be LogicalConnective ' 'objects; got {0} | {1}'.format(type(a), type(b))) class IdentityOperand(object): def __eq__(self, value): return LogicalConnective(Operator.Equal, (self, value)) def __ne__(self, value): return LogicalConnective(Operator.NotEqual, (self, value)) class RelativeOperand(IdentityOperand): def __ge__(self, value): return LogicalConnective(Operator.GreaterEqual, (self, value)) def __gt__(self, value): return LogicalConnective(Operator.Greater, (self, value)) def __le__(self, value): return LogicalConnective(Operator.LessEqual, (self, value)) def __lt__(self, value): return LogicalConnective(Operator.Less, (self, value)) def between(self, left, right): return LogicalConnective(Operator.Between, (self, left, right)) class Operand(RelativeOperand): def contains(self, contained): return LogicalConnective(Operator.Contains, (self, contained)) def endswith(self, trailing): return LogicalConnective(Operator.EndsWith, (self, trailing)) def is_(self, value): """ Test if a property is null :param value: May (presently?) only be None """ return LogicalConnective(Operator.Is, (self, value)) def is_not(self, value): """ Test if a property is not nll :param value: May (presently?) only be None """ return LogicalConnective(Operator.IsNot, (self, value)) def like(self, value): return LogicalConnective(Operator.Like, (self, value)) def matches(self, expression): return LogicalConnective(Operator.Matches, (self, expression)) def startswith(self, leading): return LogicalConnective(Operator.StartsWith, (self, leading)) class ArithmeticMixin(object): def __add__(self, other): return ArithmeticOperation(Operator.Add, (self, other)) def __radd__(self, left): return ArithmeticOperation(Operator.Add, (left, self)) def __sub__(self, other): return ArithmeticOperation(Operator.Sub, (self, other)) def __rsub__(self, left): return ArithmeticOperation(Operator.Sub, (left, self)) def __mul__(self, other): return ArithmeticOperation(Operator.Mul, (self, other)) def __rmul__(self, left): return ArithmeticOperation(Operator.Mul, (left, self)) def __div__(self, other): return ArithmeticOperation(Operator.Div, (self, other)) def __rdiv__(self, left): return ArithmeticOperation(Operator.Div, (left, self)) def __mod__(self, other): return ArithmeticOperation(Operator.Mod, (self, other)) def __rmod__(self, left): return ArithmeticOperation(Operator.Mod, (left, self)) class ArithmeticOperation(ArithmeticMixin, RelativeOperand): def __init__(self, operator, operands): self.operator = operator self.operands = operands self.paren = False def __getitem__(self, key): """Provide syntax to parenthesise an operation Do not see any reason to enforce a key type. """ self.paren = True return self # Record Attributes class InstanceOfMixin(object): @classmethod def instanceof(cls, left, right=None): if cls is InstanceOf: return LogicalConnective(Operator.InstanceOf, (left, right)) else: # Subclass return LogicalConnective(Operator.InstanceOf, (cls, left)) def instanceof(left, right): return InstanceOfMixin.instanceof(left, right)
class Operator(object): and = 0 equal = 1 greater_equal = 2 greater = 3 less_equal = 4 less = 5 not_equal = 6 or = 7 between = 8 contains = 9 ends_with = 10 is = 11 is_not = 12 like = 13 matches = 14 starts_with = 15 add = 16 sub = 17 mul = 18 div = 19 mod = 20 instance_of = 21 class Logicalconnective(object): def __init__(self, operator, operands): self.operator = operator self.operands = operands @classmethod def create(cls, operator, operands): return cls(operator, operands) def __and__(self, other): return LogicalConnective.create(Operator.And, (self, other)) def __or__(self, other): return LogicalConnective.create(Operator.Or, (self, other)) def and_(a, b): if isinstance(a, LogicalConnective) and isinstance(b, LogicalConnective): return logical_connective(Operator.And, (a, b)) else: raise type_error('Both operands to conjunction must be LogicalConnective objects; got {0} & {1}'.format(type(a), type(b))) def or_(a, b): if isinstance(a, LogicalConnective) and isinstance(b, LogicalConnective): return logical_connective(Operator.Or, (a, b)) else: raise type_error('Both operands to disjunction must be LogicalConnective objects; got {0} | {1}'.format(type(a), type(b))) class Identityoperand(object): def __eq__(self, value): return logical_connective(Operator.Equal, (self, value)) def __ne__(self, value): return logical_connective(Operator.NotEqual, (self, value)) class Relativeoperand(IdentityOperand): def __ge__(self, value): return logical_connective(Operator.GreaterEqual, (self, value)) def __gt__(self, value): return logical_connective(Operator.Greater, (self, value)) def __le__(self, value): return logical_connective(Operator.LessEqual, (self, value)) def __lt__(self, value): return logical_connective(Operator.Less, (self, value)) def between(self, left, right): return logical_connective(Operator.Between, (self, left, right)) class Operand(RelativeOperand): def contains(self, contained): return logical_connective(Operator.Contains, (self, contained)) def endswith(self, trailing): return logical_connective(Operator.EndsWith, (self, trailing)) def is_(self, value): """ Test if a property is null :param value: May (presently?) only be None """ return logical_connective(Operator.Is, (self, value)) def is_not(self, value): """ Test if a property is not nll :param value: May (presently?) only be None """ return logical_connective(Operator.IsNot, (self, value)) def like(self, value): return logical_connective(Operator.Like, (self, value)) def matches(self, expression): return logical_connective(Operator.Matches, (self, expression)) def startswith(self, leading): return logical_connective(Operator.StartsWith, (self, leading)) class Arithmeticmixin(object): def __add__(self, other): return arithmetic_operation(Operator.Add, (self, other)) def __radd__(self, left): return arithmetic_operation(Operator.Add, (left, self)) def __sub__(self, other): return arithmetic_operation(Operator.Sub, (self, other)) def __rsub__(self, left): return arithmetic_operation(Operator.Sub, (left, self)) def __mul__(self, other): return arithmetic_operation(Operator.Mul, (self, other)) def __rmul__(self, left): return arithmetic_operation(Operator.Mul, (left, self)) def __div__(self, other): return arithmetic_operation(Operator.Div, (self, other)) def __rdiv__(self, left): return arithmetic_operation(Operator.Div, (left, self)) def __mod__(self, other): return arithmetic_operation(Operator.Mod, (self, other)) def __rmod__(self, left): return arithmetic_operation(Operator.Mod, (left, self)) class Arithmeticoperation(ArithmeticMixin, RelativeOperand): def __init__(self, operator, operands): self.operator = operator self.operands = operands self.paren = False def __getitem__(self, key): """Provide syntax to parenthesise an operation Do not see any reason to enforce a key type. """ self.paren = True return self class Instanceofmixin(object): @classmethod def instanceof(cls, left, right=None): if cls is InstanceOf: return logical_connective(Operator.InstanceOf, (left, right)) else: return logical_connective(Operator.InstanceOf, (cls, left)) def instanceof(left, right): return InstanceOfMixin.instanceof(left, right)
""" Offer a significant performance boost; it is most effective in situations where the cost of initializing a class instance is high, the rate of instantiation of a class is high, and the number of instantiations in use at any one time is low. """ class ReusablePool: """ Manage Reusable objects for use by Client objects. """ def __init__(self, size): self._reusables = [Reusable() for _ in range(size)] def acquire(self): return self._reusables.pop() def release(self, reusable): self._reusables.append(reusable) class Reusable: """ Collaborate with other objects for a limited amount of time, then they are no longer needed for that collaboration. """ pass def main(): reusable_pool = ReusablePool(10) reusable = reusable_pool.acquire() reusable_pool.release(reusable) if __name__ == "__main__": main()
""" Offer a significant performance boost; it is most effective in situations where the cost of initializing a class instance is high, the rate of instantiation of a class is high, and the number of instantiations in use at any one time is low. """ class Reusablepool: """ Manage Reusable objects for use by Client objects. """ def __init__(self, size): self._reusables = [reusable() for _ in range(size)] def acquire(self): return self._reusables.pop() def release(self, reusable): self._reusables.append(reusable) class Reusable: """ Collaborate with other objects for a limited amount of time, then they are no longer needed for that collaboration. """ pass def main(): reusable_pool = reusable_pool(10) reusable = reusable_pool.acquire() reusable_pool.release(reusable) if __name__ == '__main__': main()
__author__ = "IceArrow256" __version__ = '4' def union(first, second): result = set() for i in first: result.add(i) for i in second: if i not in result: result.add(i) return result def intersection(first, second): result = set() for i in first: if i in second: result.add(i) return result def difference(first, second): result = set() for i in first: if i not in second: result.add(i) return result def symmetric_difference(first, second): result = set() for i in first: if i not in second: result.add(i) for i in second: if i not in first: result.add(i) return result class Set: def __init__(self, name: str = "", data: set = None, venn_num=0): if data is None: data = set() self.data = set() if venn_num == 0: self.venn_set = set() if venn_num == 1: self.venn_set = {'100', '110', '101', '111'} elif venn_num == 2: self.venn_set = {'010', '110', '011', '111'} elif venn_num == 3: self.venn_set = {'001', '101', '011', '111'} for i in data: if i: self.data.add(i) self.name = name def __str__(self): if self.data: return str(self.data) else: return "{0}" def union(self, other): # u result = Set(self.name + ' u ' + other.name, union(self.data, other.data)) result.venn_set = union(self.venn_set, other.venn_set) return result def intersection(self, other): # n result = Set(self.name + ' n ' + other.name, intersection(self.data, other.data)) result.venn_set = intersection(self.venn_set, other.venn_set) return result def difference(self, other): # \ result = Set(self.name + ' \\ ' + other.name, difference(self.data, other.data)) result.venn_set = difference(self.venn_set, other.venn_set) return result def symmetric_difference(self, other): # + result = Set(self.name + ' + ' + other.name, symmetric_difference(self.data, other.data)) result.venn_set = symmetric_difference(self.venn_set, other.venn_set) return result def addition(self, U): result = Set('_' + self.name, difference(U.data, self.data)) result.venn_set = difference(U.venn_set, self.venn_set) return result
__author__ = 'IceArrow256' __version__ = '4' def union(first, second): result = set() for i in first: result.add(i) for i in second: if i not in result: result.add(i) return result def intersection(first, second): result = set() for i in first: if i in second: result.add(i) return result def difference(first, second): result = set() for i in first: if i not in second: result.add(i) return result def symmetric_difference(first, second): result = set() for i in first: if i not in second: result.add(i) for i in second: if i not in first: result.add(i) return result class Set: def __init__(self, name: str='', data: set=None, venn_num=0): if data is None: data = set() self.data = set() if venn_num == 0: self.venn_set = set() if venn_num == 1: self.venn_set = {'100', '110', '101', '111'} elif venn_num == 2: self.venn_set = {'010', '110', '011', '111'} elif venn_num == 3: self.venn_set = {'001', '101', '011', '111'} for i in data: if i: self.data.add(i) self.name = name def __str__(self): if self.data: return str(self.data) else: return '{0}' def union(self, other): result = set(self.name + ' u ' + other.name, union(self.data, other.data)) result.venn_set = union(self.venn_set, other.venn_set) return result def intersection(self, other): result = set(self.name + ' n ' + other.name, intersection(self.data, other.data)) result.venn_set = intersection(self.venn_set, other.venn_set) return result def difference(self, other): result = set(self.name + ' \\ ' + other.name, difference(self.data, other.data)) result.venn_set = difference(self.venn_set, other.venn_set) return result def symmetric_difference(self, other): result = set(self.name + ' + ' + other.name, symmetric_difference(self.data, other.data)) result.venn_set = symmetric_difference(self.venn_set, other.venn_set) return result def addition(self, U): result = set('_' + self.name, difference(U.data, self.data)) result.venn_set = difference(U.venn_set, self.venn_set) return result
__all__ = ["InvalidUnrestrictedGrammarFormatException"] class InvalidUnrestrictedGrammarFormatException(Exception): pass
__all__ = ['InvalidUnrestrictedGrammarFormatException'] class Invalidunrestrictedgrammarformatexception(Exception): pass
def greet(firstName='', middleName='', lastName=''): print('Hello, ' + lastName + ', ' + middleName + ' ' + firstName) greet('Michael', 'G', 'Bay') # supplying parameters in a specific sequence greet('Michael', 'G') # skipping lastName parameter greet() # skipping all parameters # specifying the custom sequence in which parameter values are passed greet(middleName='J', lastName='Damodaran', firstName='Ramkumar')
def greet(firstName='', middleName='', lastName=''): print('Hello, ' + lastName + ', ' + middleName + ' ' + firstName) greet('Michael', 'G', 'Bay') greet('Michael', 'G') greet() greet(middleName='J', lastName='Damodaran', firstName='Ramkumar')
# Maze in a 85x85 grid # Nodes: 1231 # Edges: 1280 adjList = [ [41, 1], [27, 0], [55, 3], [57, 4, 2], [87, 3], [22, 6], [59, 7, 5], [60, 6], [30, 9], [32, 8], [44, 11], [46, 10], [47, 13], [34, 12], [77, 15], [36, 14], [89, 17], [67, 18, 16], [40, 17], [28], [53, 21], [54, 20], [5], [33, 24], [43, 23], [49, 26], [50, 25], [1, 28], [19, 27], [61, 30], [8, 29], [63, 32], [64, 9, 33, 31], [65, 23, 32], [13, 35], [76, 34], [15, 37], [36], [68, 39], [80, 38], [18, 41], [0, 40], [71, 43], [24, 42], [10, 45], [72, 44], [11, 47], [12, 46], [92, 49], [25, 48], [26, 51], [82, 50], [83, 53], [20, 52], [21, 55], [2, 54], [86, 57], [3, 56], [88, 59], [6, 58], [7, 61], [29, 62, 60], [69, 61], [31, 64], [32, 65, 63], [33, 64], [74], [90, 17, 68], [38, 67], [97, 62, 70], [69], [42, 72], [45, 71], [104, 74], [66, 73], [107, 76], [35, 75], [14, 78], [109, 79, 77], [166, 78], [39, 81], [112, 80], [51, 83], [52, 84, 82], [83], [113, 86], [56, 85], [4, 88], [58, 87], [16, 90], [67, 91, 89], [120, 90], [48, 93], [122, 92], [95], [124, 94], [130, 97], [157, 69, 98, 96], [131, 97], [132], [133, 101], [136, 102, 100], [137, 103, 101], [118, 102], [164, 73, 105], [138, 104], [139, 107], [75, 106], [109], [78, 108], [121], [142, 112], [143, 81, 111], [85, 114], [152, 113], [154, 116], [183, 117, 115], [116], [103], [147, 120], [91, 121, 119], [110, 120], [93, 123], [149, 122], [150, 95, 125], [171, 124], [172, 127], [173, 128, 126], [151, 127], [156, 130], [146, 96, 129], [98, 132], [99, 131], [100, 134], [160, 133], [162, 136], [101, 137, 135], [102, 136], [105, 139], [106, 140, 138], [165, 139], [168, 142], [111, 141], [112, 144], [170, 143], [153], [130], [119, 148], [180, 147], [123, 150], [124, 149], [128, 152], [114, 151], [196, 145, 154], [115, 153], [184, 156], [129, 155], [97, 158], [198, 157], [199, 160], [134, 161, 159], [160], [135, 163], [190, 164, 162], [175, 104, 163], [140, 166], [215, 79, 165], [193, 168], [141, 167], [207, 170], [144, 169], [125, 172], [222, 126, 171], [127, 174], [194, 173], [164, 176], [203, 175], [204, 178], [206, 177], [191, 180], [148, 179], [220, 182], [211, 181], [116, 184], [212, 155, 185, 183], [213, 184], [187], [229, 186], [232, 189], [188], [163], [179], [242, 193], [167, 192], [174, 195], [224, 194], [153, 197], [196], [158, 199], [159, 198], [234, 201], [235, 200], [237, 203], [176, 204, 202], [177, 203], [240, 206], [178, 205], [169, 208], [256, 207], [219], [244, 211], [182, 210], [248, 184, 213], [185, 212], [251, 215], [166, 214], [253, 217], [254, 216], [303, 219], [209, 220, 218], [181, 219], [258, 222], [172, 221], [246], [195, 225], [259, 224], [260, 227], [316, 226], [262, 229], [263, 187, 228], [264, 231], [291, 232, 230], [292, 188, 231], [265, 234], [200, 233], [201, 236], [267, 235], [202, 238], [268, 237], [269, 240], [205, 239], [271, 242], [192, 241], [274, 244], [210, 243], [281, 246], [223, 247, 245], [283, 246], [212, 249], [278, 248], [251], [214, 252, 250], [301, 251], [273, 216, 254], [217, 253], [310, 256], [208, 255], [305, 258], [221, 257], [225, 260], [226, 259], [288, 262], [228, 261], [229, 264], [230, 263], [233, 266], [294, 265], [236, 268], [238, 267], [239, 270], [298, 269], [241, 272], [308, 273, 271], [343, 253, 272], [243, 275], [304, 274], [284], [278], [287, 249, 277], [311], [306, 281], [245, 280], [283], [247, 284, 282], [314, 276, 283], [359, 286], [315, 285], [278, 288], [261, 287], [318, 290], [335, 289], [320, 231, 292], [232, 293, 291], [322, 292], [266, 295], [338, 294], [323, 297], [325, 296], [270, 299], [326, 298], [339, 301], [252, 300], [327, 303], [218, 302], [275, 305], [257, 306, 304], [331, 280, 305], [525, 308], [272, 307], [344, 310], [255, 309], [279, 312], [347, 311], [376, 314], [284, 313], [286, 316], [348, 227, 315], [361, 318], [289, 317], [379, 320], [291, 321, 319], [350, 320], [293], [296, 324], [352, 323], [297, 326], [299, 325], [302, 328], [373, 327], [391, 330], [356, 331, 329], [306, 332, 330], [358, 331], [375], [377, 335], [290, 334], [363, 337], [364, 338, 336], [365, 295, 337], [300, 340], [367, 339], [368], [369, 343], [273, 342], [309, 345], [371, 344], [374, 347], [390, 312, 346], [316], [399], [321, 351], [381, 350], [324, 353], [385, 354, 352], [386, 355, 353], [387, 354], [330, 357], [392, 358, 356], [332, 357], [285, 360], [395, 359], [317, 362], [397, 361], [382, 336, 364], [337, 365, 363], [338, 366, 364], [365], [340, 368], [341, 367], [342, 370], [389, 371, 369], [345, 372, 370], [371], [328, 374], [346, 373], [401, 333, 376], [313, 375], [334, 378], [403, 377], [319, 380], [405, 379], [351, 382], [363, 381], [409, 384], [410, 383], [353, 386], [354, 385], [355, 388], [414, 387], [370], [420, 347, 391], [329, 390], [421, 357, 393], [400, 392], [422], [360, 396], [449, 395], [362, 398], [426, 399, 397], [349, 398], [393], [375, 402], [446, 401], [429, 378, 404], [434, 405, 403], [430, 380, 404], [454, 407], [406], [437, 409], [383, 408], [384, 411], [457, 410], [458, 413], [459, 412], [388, 415], [481, 414], [482, 417], [438, 416], [439, 419], [442, 420, 418], [390, 421, 419], [392, 420], [394, 423], [447, 424, 422], [448, 423], [450, 426], [398, 425], [474, 428], [492, 429, 427], [403, 428], [435, 405, 431], [452, 430], [486, 433], [461, 432], [404, 435], [430, 434], [466, 437], [408, 436], [417, 439], [418, 440, 438], [485, 441, 439], [468, 440], [419, 443], [496, 442], [471, 445], [529, 444], [462, 402, 447], [423, 446], [424, 449], [396, 450, 448], [425, 451, 449], [472, 450], [431, 453], [495, 454, 452], [406, 453], [476, 456], [477, 455], [478, 411, 458], [412, 457], [413, 460], [480, 459], [433, 462], [446, 461], [493, 464], [501, 463], [504, 466], [436, 467, 465], [475, 466], [441, 469], [513, 468], [497, 471], [444, 470], [451], [500, 474], [427, 473], [506, 467, 476], [455, 477, 475], [456, 478, 476], [457, 479, 477], [509, 478], [460, 481], [524, 415, 480], [416, 483], [547, 482], [575, 485], [440, 484], [432, 487], [530, 486], [514, 489], [516, 488], [518, 491], [531, 490], [428, 493], [463, 492], [495], [503, 453, 494], [443, 497], [470, 496], [517], [532, 500], [473, 499], [464, 502], [542, 501], [495], [465, 505], [535, 506, 504], [475, 505], [536, 508], [537, 507], [479, 510], [521, 509], [522], [548, 513], [469, 512], [488, 515], [555, 514], [489, 517], [498, 518, 516], [490, 517], [520], [559, 519], [540, 510, 522], [544, 511, 521], [545, 524], [481, 523], [563, 307, 526], [546, 525], [549, 528], [550, 527], [551, 445, 530], [487, 529], [491, 532], [567, 499, 533, 531], [597, 534, 532], [557, 533], [505, 536], [507, 535], [508, 538], [537], [569, 540], [521, 539], [566], [502, 543], [585, 542], [571, 522, 545], [523, 544], [526, 547], [574, 483, 546], [512, 549], [527, 548], [528, 551], [529, 552, 550], [605, 551], [578, 554], [579, 553], [515, 556], [581, 555], [534, 558], [583, 559, 557], [520, 560, 558], [600, 559], [586, 562], [602, 561], [525], [592, 565], [564], [541, 567], [532, 566], [588, 569], [539, 568], [616, 571], [544, 570], [617, 573], [618, 572], [547], [484, 576], [625, 575], [627, 578], [553, 577], [554, 580], [606, 579], [556, 582], [609, 581], [558, 584], [611, 583], [543, 586], [561, 585], [588], [614, 568, 587], [620, 590], [621, 589], [592], [564, 593, 591], [676, 594, 592], [640, 593], [630, 596], [660, 595], [533, 598], [633, 597], [634, 600], [560, 601, 599], [665, 600], [562, 603], [638, 602], [641, 605], [552, 604], [580, 607], [642, 606], [643, 609], [582, 608], [645, 611], [584, 610], [666, 613], [636, 612], [588, 615], [647, 614], [570, 617], [572, 618, 616], [685, 573, 617], [671, 620], [589, 619], [590, 622], [652, 623, 621], [674, 624, 622], [653, 623], [576, 626], [654, 625], [577, 628], [655, 629, 627], [656, 628], [595, 631], [659, 630], [661, 633], [598, 632], [599, 635], [664, 634], [667, 613, 637], [636], [603, 639], [670, 638], [594, 641], [604, 640], [607, 643], [680, 608, 642], [693, 645], [610, 644], [700, 647], [615, 646], [649], [683, 650, 648], [684, 649], [652], [673, 622, 651], [624, 654], [626, 653], [628], [629, 657], [688, 656], [681, 659], [631, 658], [596, 661], [632, 660], [695], [696, 664], [635, 663], [601, 666], [612, 665], [636, 668], [733, 667], [734, 670], [639, 669], [686, 619, 672], [705, 671], [652, 674], [623, 673], [709, 676], [593, 675], [711, 678], [712, 679, 677], [724, 678], [715, 643, 681], [689, 658, 680], [683], [702, 649, 682], [704, 650, 685], [618, 684], [671], [725, 688], [657, 687], [681, 690], [727, 689], [729, 692], [691], [644, 694], [732, 693], [662, 696], [716, 663, 695], [698], [747, 697], [749, 700], [646, 701, 699], [718, 700], [683, 703], [735, 704, 702], [684, 703], [738, 672, 706], [739, 705], [720], [740, 709], [675, 708], [722, 711], [677, 712, 710], [678, 713, 711], [758, 712], [742, 715], [680, 714], [696, 717], [745, 716], [750, 701, 719], [751, 718], [754, 707, 721], [755, 720], [710], [759, 724], [679, 725, 723], [687, 724], [762, 727], [690, 726], [763, 729], [691, 730, 728], [765, 729], [766, 732], [694, 731], [668, 734], [669, 733], [753, 703, 736], [814, 735], [769, 738], [705, 739, 737], [706, 738], [708, 741], [772, 740], [714], [768], [778, 745], [717, 744], [792, 747], [779, 698, 746], [812, 749], [699, 750, 748], [718, 749], [719, 752], [784, 753, 751], [735, 752], [720], [721, 756], [786, 755], [788, 758], [713, 757], [800, 723, 760], [759], [804, 762], [726, 761], [728, 764], [805, 763], [730, 766], [731, 765], [790, 768], [743, 767], [793, 737, 770], [794, 769], [796, 772], [741, 771], [802, 774], [803, 773], [832, 776], [817, 775], [807, 778], [744, 777], [747, 780], [779], [838, 782], [846, 781], [847, 784], [752, 783], [815, 786], [756, 785], [853, 788], [757, 787], [863, 790], [818, 767, 789], [792], [841, 746, 791], [769], [770, 795], [821, 794], [771, 797], [823, 798, 796], [852, 797], [825, 800], [759, 799], [827, 802], [773, 801], [774, 804], [761, 803], [764, 806], [834, 805], [777, 808], [835, 807], [842, 810], [843, 809], [844, 812], [748, 811], [839, 814], [736, 813], [851, 785, 816], [822, 815], [776], [790, 819], [865, 818], [849, 821], [795, 820], [878, 816, 823], [797, 822], [854, 825], [799, 824], [883], [801, 828], [857, 827], [830], [870, 831, 829], [858, 832, 830], [859, 775, 831], [861, 834], [806, 833], [808, 836], [892, 835], [845, 838], [781, 837], [813, 840], [875, 839], [896, 792, 842], [809, 841], [810, 844], [811, 845, 843], [867, 837, 844], [782, 847], [874, 783, 846], [933, 849], [894, 820, 848], [851], [815, 850], [798, 853], [787, 852], [824, 855], [882, 854], [909, 857], [828, 856], [831, 859], [832, 858], [887, 861], [833, 860], [946, 863], [789, 862], [889, 865], [819, 866, 864], [865], [845, 868], [900, 867], [885, 870], [830, 869], [897, 872], [898, 871], [874], [847, 875, 873], [893, 840, 874], [920, 877], [904, 876], [822, 879], [906, 880, 878], [907, 879], [908, 882], [855, 883, 881], [923, 826, 882], [885], [938, 869, 884], [913, 887], [860, 886], [916], [864, 890], [924, 889], [925, 892], [836, 891], [875], [849, 895], [894], [841, 897], [871, 896], [928, 872, 899], [898], [868, 901], [950, 900], [930, 903], [931, 902], [877, 905], [936, 904], [879], [880, 908], [921, 881, 907], [856, 910], [957, 909], [940, 912], [941, 911], [886, 914], [967, 913], [916], [945, 888, 915], [947, 918], [958, 917], [961, 920], [876, 919], [908], [923], [883, 922], [890, 925], [891, 924], [971], [972, 928], [898, 927], [988, 930], [902, 929], [903, 932], [977, 931], [848, 934], [991, 933], [1025, 936], [905, 935], [981], [885, 939], [964, 940, 938], [911, 939], [965, 912, 942], [966, 941], [968, 944], [969, 943], [916, 946], [862, 947, 945], [917, 946], [1019, 949], [974, 950, 948], [901, 949], [962], [979, 953], [992, 952], [982, 955], [983, 954], [984, 957], [910, 956], [985, 918, 959], [986, 960, 958], [1016, 959], [919, 962], [1011, 951, 961], [995, 964], [939, 965, 963], [941, 964], [998, 942, 967], [914, 968, 966], [943, 967], [944, 970], [1002, 969], [926, 972], [1004, 927, 971], [1006], [949], [1007], [1008, 977], [932, 978, 976], [989, 977], [952, 980], [1026, 979], [937, 982], [954, 981], [955, 984], [956, 983], [958, 986], [959, 985], [1021, 988], [929, 987], [978], [1068, 991], [1024, 934, 990], [953, 993], [1038, 992], [995], [1028, 963, 996, 994], [1041, 995], [1029, 998], [966, 997], [1031, 1000], [999], [1033, 1002], [970, 1001], [1014], [972, 1005], [1036, 1006, 1004], [973, 1005], [1023, 975, 1008], [976, 1009, 1007], [1048, 1008], [1069, 1011], [962, 1010], [1039, 1013], [1088, 1012], [1042, 1003, 1015], [1043, 1014], [960, 1017], [1062, 1016], [1065, 1019], [948, 1018], [1067, 1021], [987, 1020], [1046, 1023], [1122, 1007, 1022], [991], [935, 1026], [980, 1025], [1095, 1028], [995, 1027], [997, 1030], [1057, 1029], [999, 1032], [1059, 1031], [1001, 1034], [1077, 1033], [1063, 1036], [1005, 1035], [1050], [993, 1039], [1012, 1038], [1074, 1041], [996, 1040], [1014], [1015, 1044], [1079, 1043], [1080, 1046], [1022, 1045], [1048], [1009, 1049, 1047], [1083, 1048], [1071, 1037, 1051], [1126, 1052, 1050], [1085, 1053, 1051], [1086, 1052], [1113, 1055], [1087, 1054], [1057], [1089, 1030, 1056], [1090, 1059], [1115, 1032, 1060, 1058], [1059], [1091, 1062], [1017, 1061], [1035, 1064], [1063], [1018, 1066], [1103, 1067, 1065], [1020, 1066], [1108, 990, 1069], [1010, 1070, 1068], [1093, 1071, 1069], [1050, 1070], [1111, 1073], [1072], [1040, 1075], [1097, 1074], [1116, 1077], [1034, 1076], [1100, 1079], [1044, 1078], [1045, 1081], [1104, 1080], [1106, 1083], [1049, 1082], [1141, 1085], [1052, 1086, 1084], [1110, 1053, 1085], [1055, 1088], [1128, 1013, 1087], [1057, 1090], [1058, 1089], [1061, 1092], [1120, 1091], [1124, 1070, 1094], [1125, 1093], [1027, 1096], [1147, 1095], [1075, 1098], [1149, 1097], [1100], [1154, 1078, 1099], [1158, 1102], [1130, 1101], [1066, 1104], [1133, 1081, 1103], [1121], [1082, 1107], [1135, 1106], [1068, 1109], [1139, 1108], [1086, 1111], [1144, 1072, 1110], [1145, 1113], [1054, 1112], [1115], [1129, 1059, 1114], [1076, 1117], [1152, 1116], [1155, 1119], [1156, 1120, 1118], [1092, 1119], [1105, 1122], [1023, 1121], [1160, 1124], [1093, 1123], [1094, 1126], [1051, 1125], [1128], [1088, 1127], [1115], [1102, 1131], [1167, 1130], [1168, 1133], [1104, 1132], [1171, 1135], [1107, 1136, 1134], [1198, 1137, 1135], [1136], [1206, 1139], [1109, 1138], [1187, 1141], [1084, 1140], [1143], [1189, 1144, 1142], [1111, 1143], [1112, 1146], [1191, 1145], [1165, 1096, 1148], [1147], [1098, 1150], [1201, 1149], [1175, 1152], [1117, 1151], [1176, 1154], [1100, 1153], [1118, 1156], [1180, 1119, 1155], [1158], [1101, 1159, 1157], [1183, 1158], [1123, 1161], [1160], [1192, 1163], [1214, 1162], [1215, 1165], [1147, 1164], [1193, 1167], [1131, 1166], [1132, 1169], [1168], [1227, 1171], [1134, 1170], [1216, 1173], [1200, 1172], [1202, 1175], [1151, 1174], [1219, 1153, 1177], [1204, 1176], [1205, 1179], [1220, 1178], [1156, 1181], [1221, 1180], [1222, 1183], [1159, 1182], [1207, 1185], [1208, 1184], [1209, 1187], [1140, 1186], [1211], [1143, 1190], [1212, 1189], [1146, 1192], [1162, 1191], [1166, 1194], [1224, 1193], [1225, 1196], [1226, 1195], [1229, 1198], [1136, 1197], [1200], [1173, 1199], [1150, 1202], [1174, 1201], [1218], [1177, 1205], [1178, 1204], [1138, 1207], [1184, 1206], [1185, 1209], [1186, 1208], [1211], [1188, 1212, 1210], [1190, 1213, 1211], [1212], [1163, 1215], [1164, 1216, 1214], [1172, 1215], [1218], [1203, 1219, 1217], [1176, 1218], [1179, 1221], [1181, 1222, 1220], [1182, 1221], [1224], [1194, 1225, 1223], [1195, 1224], [1196, 1227], [1170, 1226], [1229], [1197, 1230, 1228], [1229]] # x coord, y coord nodeData = [ (15, 1), (24, 1), (34, 1), (38, 1), (40, 1), (42, 1), (45, 1), (47, 1), (51, 1), (57, 1), (65, 1), (70, 1), (73, 1), (77, 1), (81, 1), (83, 1), (2, 2), (4, 2), (12, 2), (27, 2), (30, 2), (32, 2), (42, 2), (59, 2), (63, 2), (19, 3), (21, 3), (24, 3), (27, 3), (49, 3), (51, 3), (54, 3), (57, 3), (59, 3), (77, 3), (79, 3), (83, 3), (85, 3), (6, 4), (9, 4), (12, 4), (15, 4), (61, 4), (63, 4), (65, 4), (68, 4), (70, 4), (73, 4), (16, 5), (19, 5), (21, 5), (24, 5), (28, 5), (30, 5), (32, 5), (34, 5), (36, 5), (38, 5), (43, 5), (45, 5), (47, 5), (49, 5), (50, 5), (54, 5), (57, 5), (59, 5), (75, 5), (4, 6), (6, 6), (50, 6), (52, 6), (61, 6), (68, 6), (70, 6), (75, 6), (77, 6), (79, 6), (81, 6), (82, 6), (84, 6), (9, 7), (13, 7), (24, 7), (28, 7), (30, 7), (33, 7), (36, 7), (40, 7), (43, 7), (2, 8), (4, 8), (5, 8), (16, 8), (18, 8), (20, 8), (22, 8), (47, 8), (50, 8), (52, 8), (54, 8), (56, 8), (63, 8), (65, 8), (68, 8), (70, 8), (72, 8), (74, 8), (77, 8), (81, 8), (82, 8), (7, 9), (10, 9), (13, 9), (33, 9), (35, 9), (39, 9), (41, 9), (43, 9), (68, 9), (1, 10), (5, 10), (7, 10), (18, 10), (20, 10), (22, 10), (25, 10), (27, 10), (29, 10), (32, 10), (45, 10), (47, 10), (52, 10), (54, 10), (56, 10), (58, 10), (62, 10), (63, 10), (65, 10), (72, 10), (74, 10), (82, 10), (8, 11), (10, 11), (13, 11), (16, 11), (37, 11), (47, 11), (1, 12), (3, 12), (20, 12), (22, 12), (32, 12), (35, 12), (37, 12), (39, 12), (43, 12), (45, 12), (50, 12), (53, 12), (55, 12), (58, 12), (60, 12), (62, 12), (67, 12), (70, 12), (82, 12), (84, 12), (6, 13), (8, 13), (10, 13), (16, 13), (25, 13), (27, 13), (29, 13), (31, 13), (70, 13), (73, 13), (76, 13), (81, 13), (1, 14), (3, 14), (17, 14), (24, 14), (41, 14), (43, 14), (46, 14), (50, 14), (51, 14), (58, 14), (60, 14), (67, 14), (1, 15), (4, 15), (6, 15), (31, 15), (35, 15), (37, 15), (38, 15), (53, 15), (55, 15), (62, 15), (65, 15), (70, 15), (73, 15), (76, 15), (79, 15), (81, 15), (10, 16), (12, 16), (15, 16), (20, 16), (24, 16), (43, 16), (46, 16), (82, 16), (84, 16), (6, 17), (8, 17), (14, 17), (15, 17), (17, 17), (25, 17), (27, 17), (30, 17), (35, 17), (37, 17), (39, 17), (41, 17), (49, 17), (51, 17), (54, 17), (56, 17), (58, 17), (60, 17), (62, 17), (65, 17), (67, 17), (70, 17), (72, 17), (74, 17), (79, 17), (1, 18), (4, 18), (18, 18), (20, 18), (28, 18), (30, 18), (32, 18), (43, 18), (45, 18), (80, 18), (82, 18), (84, 18), (6, 19), (8, 19), (10, 19), (12, 19), (23, 19), (25, 19), (37, 19), (39, 19), (47, 19), (49, 19), (51, 19), (54, 19), (60, 19), (64, 19), (67, 19), (72, 19), (74, 19), (76, 19), (1, 20), (4, 20), (6, 20), (18, 20), (20, 20), (34, 20), (44, 20), (45, 20), (16, 21), (25, 21), (28, 21), (31, 21), (32, 21), (34, 21), (36, 21), (38, 21), (45, 21), (47, 21), (49, 21), (53, 21), (56, 21), (58, 21), (61, 21), (64, 21), (66, 21), (68, 21), (74, 21), (76, 21), (79, 21), (81, 21), (84, 21), (12, 22), (14, 22), (20, 22), (23, 22), (25, 22), (2, 23), (4, 23), (8, 23), (10, 23), (16, 23), (19, 23), (32, 23), (34, 23), (38, 23), (41, 23), (43, 23), (49, 23), (55, 23), (56, 23), (57, 23), (61, 23), (68, 23), (70, 23), (74, 23), (79, 23), (12, 24), (14, 24), (21, 24), (23, 24), (25, 24), (27, 24), (29, 24), (50, 24), (53, 24), (62, 24), (64, 24), (66, 24), (81, 24), (83, 24), (85, 24), (4, 25), (6, 25), (8, 25), (10, 25), (17, 25), (19, 25), (41, 25), (48, 25), (57, 25), (60, 25), (70, 25), (76, 25), (78, 25), (80, 25), (23, 26), (24, 26), (27, 26), (36, 26), (38, 26), (43, 26), (45, 26), (62, 26), (64, 26), (66, 26), (67, 26), (83, 26), (85, 26), (4, 27), (8, 27), (10, 27), (11, 27), (14, 27), (17, 27), (29, 27), (32, 27), (50, 27), (53, 27), (55, 27), (57, 27), (60, 27), (62, 27), (71, 27), (73, 27), (76, 27), (78, 27), (80, 27), (82, 27), (8, 28), (19, 28), (21, 28), (24, 28), (27, 28), (35, 28), (38, 28), (42, 28), (45, 28), (47, 28), (48, 28), (27, 29), (29, 29), (32, 29), (53, 29), (55, 29), (57, 29), (63, 29), (65, 29), (68, 29), (71, 29), (73, 29), (75, 29), (78, 29), (80, 29), (82, 29), (85, 29), (4, 30), (6, 30), (10, 30), (16, 30), (19, 30), (24, 30), (35, 30), (38, 30), (40, 30), (44, 30), (47, 30), (50, 30), (52, 30), (53, 30), (57, 30), (60, 30), (28, 31), (30, 31), (55, 31), (57, 31), (66, 31), (68, 31), (6, 32), (10, 32), (12, 32), (14, 32), (16, 32), (19, 32), (23, 32), (25, 32), (32, 32), (38, 32), (40, 32), (42, 32), (44, 32), (46, 32), (60, 32), (62, 32), (63, 32), (70, 32), (72, 32), (75, 32), (78, 32), (80, 32), (83, 32), (30, 33), (32, 33), (54, 33), (57, 33), (64, 33), (66, 33), (67, 33), (14, 34), (16, 34), (21, 34), (23, 34), (46, 34), (48, 34), (50, 34), (67, 34), (70, 34), (72, 34), (75, 34), (76, 34), (83, 34), (85, 34), (4, 35), (7, 35), (10, 35), (12, 35), (28, 35), (30, 35), (32, 35), (36, 35), (41, 35), (43, 35), (52, 35), (54, 35), (61, 35), (62, 35), (19, 36), (21, 36), (39, 36), (46, 36), (48, 36), (57, 36), (59, 36), (62, 36), (64, 36), (65, 36), (67, 36), (71, 36), (73, 36), (76, 36), (79, 36), (81, 36), (13, 37), (16, 37), (32, 37), (34, 37), (36, 37), (39, 37), (41, 37), (54, 37), (55, 37), (79, 37), (81, 37), (83, 37), (85, 37), (2, 38), (4, 38), (18, 38), (23, 38), (25, 38), (30, 38), (43, 38), (46, 38), (48, 38), (51, 38), (65, 38), (71, 38), (73, 38), (74, 38), (77, 38), (79, 38), (41, 39), (59, 39), (62, 39), (81, 39), (83, 39), (4, 40), (7, 40), (13, 40), (18, 40), (23, 40), (25, 40), (26, 40), (30, 40), (32, 40), (34, 40), (38, 40), (51, 40), (53, 40), (55, 40), (58, 40), (66, 40), (68, 40), (2, 41), (19, 41), (20, 41), (41, 41), (46, 41), (74, 41), (77, 41), (79, 41), (81, 41), (83, 41), (85, 41), (7, 42), (10, 42), (15, 42), (28, 42), (30, 42), (32, 42), (34, 42), (38, 42), (40, 42), (53, 42), (55, 42), (62, 42), (66, 42), (73, 42), (74, 42), (3, 43), (5, 43), (18, 43), (19, 43), (20, 43), (22, 43), (42, 43), (46, 43), (48, 43), (50, 43), (57, 43), (58, 43), (61, 43), (68, 43), (70, 43), (24, 44), (26, 44), (34, 44), (36, 44), (38, 44), (40, 44), (53, 44), (55, 44), (63, 44), (65, 44), (74, 44), (76, 44), (79, 44), (83, 44), (85, 44), (1, 45), (3, 45), (5, 45), (8, 45), (10, 45), (13, 45), (15, 45), (17, 45), (28, 45), (31, 45), (33, 45), (42, 45), (44, 45), (48, 45), (50, 45), (57, 45), (59, 45), (65, 45), (67, 45), (70, 45), (72, 45), (22, 46), (24, 46), (36, 46), (38, 46), (51, 46), (53, 46), (74, 46), (76, 46), (79, 46), (80, 46), (83, 46), (5, 47), (8, 47), (13, 47), (17, 47), (31, 47), (33, 47), (35, 47), (40, 47), (44, 47), (46, 47), (48, 47), (55, 47), (57, 47), (59, 47), (61, 47), (63, 47), (65, 47), (67, 47), (70, 47), (72, 47), (1, 48), (3, 48), (8, 48), (10, 48), (18, 48), (20, 48), (22, 48), (24, 48), (29, 48), (38, 48), (40, 48), (78, 48), (80, 48), (83, 48), (85, 48), (1, 49), (33, 49), (35, 49), (40, 49), (43, 49), (46, 49), (48, 49), (51, 49), (53, 49), (55, 49), (57, 49), (64, 49), (65, 49), (72, 49), (74, 49), (75, 49), (80, 49), (82, 49), (83, 49), (3, 50), (5, 50), (7, 50), (12, 50), (18, 50), (21, 50), (22, 50), (24, 50), (25, 50), (36, 50), (38, 50), (57, 50), (61, 50), (75, 50), (77, 50), (7, 51), (9, 51), (21, 51), (27, 51), (29, 51), (33, 51), (40, 51), (43, 51), (45, 51), (46, 51), (49, 51), (51, 51), (53, 51), (67, 51), (70, 51), (82, 51), (84, 51), (2, 52), (3, 52), (5, 52), (12, 52), (18, 52), (36, 52), (56, 52), (59, 52), (61, 52), (63, 52), (65, 52), (71, 52), (72, 52), (75, 52), (77, 52), (81, 52), (82, 52), (7, 53), (9, 53), (11, 53), (22, 53), (25, 53), (27, 53), (29, 53), (38, 53), (40, 53), (45, 53), (47, 53), (49, 53), (51, 53), (54, 53), (56, 53), (2, 54), (4, 54), (13, 54), (18, 54), (32, 54), (36, 54), (41, 54), (44, 54), (57, 54), (59, 54), (65, 54), (68, 54), (74, 54), (76, 54), (78, 54), (81, 54), (9, 55), (11, 55), (19, 55), (22, 55), (52, 55), (54, 55), (62, 55), (63, 55), (2, 56), (4, 56), (6, 56), (13, 56), (14, 56), (16, 56), (23, 56), (27, 56), (29, 56), (32, 56), (36, 56), (38, 56), (47, 56), (49, 56), (57, 56), (59, 56), (65, 56), (67, 56), (69, 56), (71, 56), (81, 56), (84, 56), (9, 57), (12, 57), (44, 57), (54, 57), (56, 57), (3, 58), (6, 58), (12, 58), (14, 58), (21, 58), (23, 58), (27, 58), (29, 58), (31, 58), (34, 58), (36, 58), (39, 58), (41, 58), (46, 58), (49, 58), (59, 58), (61, 58), (71, 58), (74, 58), (81, 58), (85, 58), (63, 59), (65, 59), (67, 59), (69, 59), (71, 59), (76, 59), (78, 59), (1, 60), (3, 60), (7, 60), (9, 60), (16, 60), (19, 60), (21, 60), (25, 60), (29, 60), (31, 60), (39, 60), (41, 60), (44, 60), (46, 60), (50, 60), (52, 60), (54, 60), (56, 60), (57, 60), (71, 60), (73, 60), (34, 61), (36, 61), (66, 61), (68, 61), (76, 61), (78, 61), (85, 61), (7, 62), (9, 62), (12, 62), (15, 62), (17, 62), (19, 62), (25, 62), (27, 62), (33, 62), (34, 62), (40, 62), (44, 62), (48, 62), (54, 62), (56, 62), (59, 62), (61, 62), (85, 62), (3, 63), (4, 63), (63, 63), (66, 63), (68, 63), (70, 63), (73, 63), (75, 63), (79, 63), (82, 63), (9, 64), (13, 64), (15, 64), (17, 64), (19, 64), (29, 64), (31, 64), (36, 64), (38, 64), (40, 64), (42, 64), (46, 64), (48, 64), (52, 64), (54, 64), (5, 65), (7, 65), (19, 65), (26, 65), (27, 65), (56, 65), (59, 65), (61, 65), (63, 65), (68, 65), (77, 65), (79, 65), (82, 65), (84, 65), (1, 66), (3, 66), (11, 66), (13, 66), (22, 66), (34, 66), (35, 66), (36, 66), (38, 66), (40, 66), (44, 66), (46, 66), (48, 66), (50, 66), (52, 66), (69, 66), (72, 66), (75, 66), (9, 67), (14, 67), (18, 67), (24, 67), (27, 67), (29, 67), (31, 67), (54, 67), (56, 67), (58, 67), (5, 68), (9, 68), (33, 68), (35, 68), (38, 68), (40, 68), (42, 68), (44, 68), (46, 68), (50, 68), (61, 68), (63, 68), (66, 68), (72, 68), (79, 68), (81, 68), (84, 68), (85, 68), (14, 69), (16, 69), (22, 69), (24, 69), (27, 69), (29, 69), (54, 69), (56, 69), (74, 69), (77, 69), (85, 69), (1, 70), (3, 70), (18, 70), (20, 70), (32, 70), (33, 70), (36, 70), (38, 70), (40, 70), (42, 70), (44, 70), (47, 70), (50, 70), (52, 70), (63, 70), (65, 70), (66, 70), (79, 70), (81, 70), (83, 70), (6, 71), (9, 71), (24, 71), (29, 71), (52, 71), (54, 71), (58, 71), (61, 71), (67, 71), (69, 71), (71, 71), (74, 71), (77, 71), (79, 71), (3, 72), (11, 72), (16, 72), (31, 72), (33, 72), (38, 72), (40, 72), (42, 72), (44, 72), (47, 72), (50, 72), (63, 72), (65, 72), (10, 73), (20, 73), (24, 73), (34, 73), (36, 73), (52, 73), (54, 73), (56, 73), (73, 73), (77, 73), (82, 73), (83, 73), (85, 73), (10, 74), (12, 74), (16, 74), (18, 74), (25, 74), (27, 74), (39, 74), (40, 74), (42, 74), (44, 74), (45, 74), (58, 74), (61, 74), (63, 74), (64, 74), (67, 74), (69, 74), (71, 74), (1, 75), (6, 75), (8, 75), (10, 75), (21, 75), (22, 75), (34, 75), (36, 75), (47, 75), (50, 75), (54, 75), (56, 75), (73, 75), (75, 75), (81, 75), (85, 75), (15, 76), (16, 76), (18, 76), (27, 76), (29, 76), (40, 76), (42, 76), (58, 76), (61, 76), (8, 77), (10, 77), (31, 77), (34, 77), (36, 77), (39, 77), (52, 77), (54, 77), (64, 77), (67, 77), (69, 77), (75, 77), (77, 77), (81, 77), (83, 77), (1, 78), (4, 78), (18, 78), (21, 78), (23, 78), (25, 78), (43, 78), (44, 78), (47, 78), (49, 78), (56, 78), (60, 78), (61, 78), (77, 78), (79, 78), (6, 79), (8, 79), (10, 79), (12, 79), (28, 79), (29, 79), (44, 79), (67, 79), (71, 79), (73, 79), (75, 79), (81, 79), (83, 79), (84, 79), (85, 79), (1, 80), (4, 80), (13, 80), (15, 80), (18, 80), (19, 80), (21, 80), (23, 80), (25, 80), (34, 80), (35, 80), (39, 80), (41, 80), (47, 80), (49, 80), (51, 80), (54, 80), (56, 80), (60, 80), (63, 80), (64, 80), (66, 80), (6, 81), (9, 81), (28, 81), (30, 81), (32, 81), (34, 81), (68, 81), (71, 81), (73, 81), (75, 81), (78, 81), (81, 81), (35, 82), (39, 82), (43, 82), (47, 82), (51, 82), (53, 82), (56, 82), (58, 82), (60, 82), (62, 82), (64, 82), (66, 82), (4, 83), (6, 83), (9, 83), (13, 83), (16, 83), (19, 83), (23, 83), (25, 83), (28, 83), (68, 83), (70, 83), (74, 83), (76, 83), (82, 83), (84, 83), (38, 84), (39, 84), (41, 84), (43, 84), (48, 84), (53, 84), (56, 84), (1, 85), (4, 85), (6, 85), (9, 85), (13, 85), (16, 85), (23, 85), (26, 85), (30, 85), (32, 85), (35, 85), (46, 85), (48, 85), (51, 85), (58, 85), (62, 85), (64, 85), (68, 85), (70, 85), (74, 85), (76, 85), (78, 85), (80, 85), (82, 85), (84, 85)]
adj_list = [[41, 1], [27, 0], [55, 3], [57, 4, 2], [87, 3], [22, 6], [59, 7, 5], [60, 6], [30, 9], [32, 8], [44, 11], [46, 10], [47, 13], [34, 12], [77, 15], [36, 14], [89, 17], [67, 18, 16], [40, 17], [28], [53, 21], [54, 20], [5], [33, 24], [43, 23], [49, 26], [50, 25], [1, 28], [19, 27], [61, 30], [8, 29], [63, 32], [64, 9, 33, 31], [65, 23, 32], [13, 35], [76, 34], [15, 37], [36], [68, 39], [80, 38], [18, 41], [0, 40], [71, 43], [24, 42], [10, 45], [72, 44], [11, 47], [12, 46], [92, 49], [25, 48], [26, 51], [82, 50], [83, 53], [20, 52], [21, 55], [2, 54], [86, 57], [3, 56], [88, 59], [6, 58], [7, 61], [29, 62, 60], [69, 61], [31, 64], [32, 65, 63], [33, 64], [74], [90, 17, 68], [38, 67], [97, 62, 70], [69], [42, 72], [45, 71], [104, 74], [66, 73], [107, 76], [35, 75], [14, 78], [109, 79, 77], [166, 78], [39, 81], [112, 80], [51, 83], [52, 84, 82], [83], [113, 86], [56, 85], [4, 88], [58, 87], [16, 90], [67, 91, 89], [120, 90], [48, 93], [122, 92], [95], [124, 94], [130, 97], [157, 69, 98, 96], [131, 97], [132], [133, 101], [136, 102, 100], [137, 103, 101], [118, 102], [164, 73, 105], [138, 104], [139, 107], [75, 106], [109], [78, 108], [121], [142, 112], [143, 81, 111], [85, 114], [152, 113], [154, 116], [183, 117, 115], [116], [103], [147, 120], [91, 121, 119], [110, 120], [93, 123], [149, 122], [150, 95, 125], [171, 124], [172, 127], [173, 128, 126], [151, 127], [156, 130], [146, 96, 129], [98, 132], [99, 131], [100, 134], [160, 133], [162, 136], [101, 137, 135], [102, 136], [105, 139], [106, 140, 138], [165, 139], [168, 142], [111, 141], [112, 144], [170, 143], [153], [130], [119, 148], [180, 147], [123, 150], [124, 149], [128, 152], [114, 151], [196, 145, 154], [115, 153], [184, 156], [129, 155], [97, 158], [198, 157], [199, 160], [134, 161, 159], [160], [135, 163], [190, 164, 162], [175, 104, 163], [140, 166], [215, 79, 165], [193, 168], [141, 167], [207, 170], [144, 169], [125, 172], [222, 126, 171], [127, 174], [194, 173], [164, 176], [203, 175], [204, 178], [206, 177], [191, 180], [148, 179], [220, 182], [211, 181], [116, 184], [212, 155, 185, 183], [213, 184], [187], [229, 186], [232, 189], [188], [163], [179], [242, 193], [167, 192], [174, 195], [224, 194], [153, 197], [196], [158, 199], [159, 198], [234, 201], [235, 200], [237, 203], [176, 204, 202], [177, 203], [240, 206], [178, 205], [169, 208], [256, 207], [219], [244, 211], [182, 210], [248, 184, 213], [185, 212], [251, 215], [166, 214], [253, 217], [254, 216], [303, 219], [209, 220, 218], [181, 219], [258, 222], [172, 221], [246], [195, 225], [259, 224], [260, 227], [316, 226], [262, 229], [263, 187, 228], [264, 231], [291, 232, 230], [292, 188, 231], [265, 234], [200, 233], [201, 236], [267, 235], [202, 238], [268, 237], [269, 240], [205, 239], [271, 242], [192, 241], [274, 244], [210, 243], [281, 246], [223, 247, 245], [283, 246], [212, 249], [278, 248], [251], [214, 252, 250], [301, 251], [273, 216, 254], [217, 253], [310, 256], [208, 255], [305, 258], [221, 257], [225, 260], [226, 259], [288, 262], [228, 261], [229, 264], [230, 263], [233, 266], [294, 265], [236, 268], [238, 267], [239, 270], [298, 269], [241, 272], [308, 273, 271], [343, 253, 272], [243, 275], [304, 274], [284], [278], [287, 249, 277], [311], [306, 281], [245, 280], [283], [247, 284, 282], [314, 276, 283], [359, 286], [315, 285], [278, 288], [261, 287], [318, 290], [335, 289], [320, 231, 292], [232, 293, 291], [322, 292], [266, 295], [338, 294], [323, 297], [325, 296], [270, 299], [326, 298], [339, 301], [252, 300], [327, 303], [218, 302], [275, 305], [257, 306, 304], [331, 280, 305], [525, 308], [272, 307], [344, 310], [255, 309], [279, 312], [347, 311], [376, 314], [284, 313], [286, 316], [348, 227, 315], [361, 318], [289, 317], [379, 320], [291, 321, 319], [350, 320], [293], [296, 324], [352, 323], [297, 326], [299, 325], [302, 328], [373, 327], [391, 330], [356, 331, 329], [306, 332, 330], [358, 331], [375], [377, 335], [290, 334], [363, 337], [364, 338, 336], [365, 295, 337], [300, 340], [367, 339], [368], [369, 343], [273, 342], [309, 345], [371, 344], [374, 347], [390, 312, 346], [316], [399], [321, 351], [381, 350], [324, 353], [385, 354, 352], [386, 355, 353], [387, 354], [330, 357], [392, 358, 356], [332, 357], [285, 360], [395, 359], [317, 362], [397, 361], [382, 336, 364], [337, 365, 363], [338, 366, 364], [365], [340, 368], [341, 367], [342, 370], [389, 371, 369], [345, 372, 370], [371], [328, 374], [346, 373], [401, 333, 376], [313, 375], [334, 378], [403, 377], [319, 380], [405, 379], [351, 382], [363, 381], [409, 384], [410, 383], [353, 386], [354, 385], [355, 388], [414, 387], [370], [420, 347, 391], [329, 390], [421, 357, 393], [400, 392], [422], [360, 396], [449, 395], [362, 398], [426, 399, 397], [349, 398], [393], [375, 402], [446, 401], [429, 378, 404], [434, 405, 403], [430, 380, 404], [454, 407], [406], [437, 409], [383, 408], [384, 411], [457, 410], [458, 413], [459, 412], [388, 415], [481, 414], [482, 417], [438, 416], [439, 419], [442, 420, 418], [390, 421, 419], [392, 420], [394, 423], [447, 424, 422], [448, 423], [450, 426], [398, 425], [474, 428], [492, 429, 427], [403, 428], [435, 405, 431], [452, 430], [486, 433], [461, 432], [404, 435], [430, 434], [466, 437], [408, 436], [417, 439], [418, 440, 438], [485, 441, 439], [468, 440], [419, 443], [496, 442], [471, 445], [529, 444], [462, 402, 447], [423, 446], [424, 449], [396, 450, 448], [425, 451, 449], [472, 450], [431, 453], [495, 454, 452], [406, 453], [476, 456], [477, 455], [478, 411, 458], [412, 457], [413, 460], [480, 459], [433, 462], [446, 461], [493, 464], [501, 463], [504, 466], [436, 467, 465], [475, 466], [441, 469], [513, 468], [497, 471], [444, 470], [451], [500, 474], [427, 473], [506, 467, 476], [455, 477, 475], [456, 478, 476], [457, 479, 477], [509, 478], [460, 481], [524, 415, 480], [416, 483], [547, 482], [575, 485], [440, 484], [432, 487], [530, 486], [514, 489], [516, 488], [518, 491], [531, 490], [428, 493], [463, 492], [495], [503, 453, 494], [443, 497], [470, 496], [517], [532, 500], [473, 499], [464, 502], [542, 501], [495], [465, 505], [535, 506, 504], [475, 505], [536, 508], [537, 507], [479, 510], [521, 509], [522], [548, 513], [469, 512], [488, 515], [555, 514], [489, 517], [498, 518, 516], [490, 517], [520], [559, 519], [540, 510, 522], [544, 511, 521], [545, 524], [481, 523], [563, 307, 526], [546, 525], [549, 528], [550, 527], [551, 445, 530], [487, 529], [491, 532], [567, 499, 533, 531], [597, 534, 532], [557, 533], [505, 536], [507, 535], [508, 538], [537], [569, 540], [521, 539], [566], [502, 543], [585, 542], [571, 522, 545], [523, 544], [526, 547], [574, 483, 546], [512, 549], [527, 548], [528, 551], [529, 552, 550], [605, 551], [578, 554], [579, 553], [515, 556], [581, 555], [534, 558], [583, 559, 557], [520, 560, 558], [600, 559], [586, 562], [602, 561], [525], [592, 565], [564], [541, 567], [532, 566], [588, 569], [539, 568], [616, 571], [544, 570], [617, 573], [618, 572], [547], [484, 576], [625, 575], [627, 578], [553, 577], [554, 580], [606, 579], [556, 582], [609, 581], [558, 584], [611, 583], [543, 586], [561, 585], [588], [614, 568, 587], [620, 590], [621, 589], [592], [564, 593, 591], [676, 594, 592], [640, 593], [630, 596], [660, 595], [533, 598], [633, 597], [634, 600], [560, 601, 599], [665, 600], [562, 603], [638, 602], [641, 605], [552, 604], [580, 607], [642, 606], [643, 609], [582, 608], [645, 611], [584, 610], [666, 613], [636, 612], [588, 615], [647, 614], [570, 617], [572, 618, 616], [685, 573, 617], [671, 620], [589, 619], [590, 622], [652, 623, 621], [674, 624, 622], [653, 623], [576, 626], [654, 625], [577, 628], [655, 629, 627], [656, 628], [595, 631], [659, 630], [661, 633], [598, 632], [599, 635], [664, 634], [667, 613, 637], [636], [603, 639], [670, 638], [594, 641], [604, 640], [607, 643], [680, 608, 642], [693, 645], [610, 644], [700, 647], [615, 646], [649], [683, 650, 648], [684, 649], [652], [673, 622, 651], [624, 654], [626, 653], [628], [629, 657], [688, 656], [681, 659], [631, 658], [596, 661], [632, 660], [695], [696, 664], [635, 663], [601, 666], [612, 665], [636, 668], [733, 667], [734, 670], [639, 669], [686, 619, 672], [705, 671], [652, 674], [623, 673], [709, 676], [593, 675], [711, 678], [712, 679, 677], [724, 678], [715, 643, 681], [689, 658, 680], [683], [702, 649, 682], [704, 650, 685], [618, 684], [671], [725, 688], [657, 687], [681, 690], [727, 689], [729, 692], [691], [644, 694], [732, 693], [662, 696], [716, 663, 695], [698], [747, 697], [749, 700], [646, 701, 699], [718, 700], [683, 703], [735, 704, 702], [684, 703], [738, 672, 706], [739, 705], [720], [740, 709], [675, 708], [722, 711], [677, 712, 710], [678, 713, 711], [758, 712], [742, 715], [680, 714], [696, 717], [745, 716], [750, 701, 719], [751, 718], [754, 707, 721], [755, 720], [710], [759, 724], [679, 725, 723], [687, 724], [762, 727], [690, 726], [763, 729], [691, 730, 728], [765, 729], [766, 732], [694, 731], [668, 734], [669, 733], [753, 703, 736], [814, 735], [769, 738], [705, 739, 737], [706, 738], [708, 741], [772, 740], [714], [768], [778, 745], [717, 744], [792, 747], [779, 698, 746], [812, 749], [699, 750, 748], [718, 749], [719, 752], [784, 753, 751], [735, 752], [720], [721, 756], [786, 755], [788, 758], [713, 757], [800, 723, 760], [759], [804, 762], [726, 761], [728, 764], [805, 763], [730, 766], [731, 765], [790, 768], [743, 767], [793, 737, 770], [794, 769], [796, 772], [741, 771], [802, 774], [803, 773], [832, 776], [817, 775], [807, 778], [744, 777], [747, 780], [779], [838, 782], [846, 781], [847, 784], [752, 783], [815, 786], [756, 785], [853, 788], [757, 787], [863, 790], [818, 767, 789], [792], [841, 746, 791], [769], [770, 795], [821, 794], [771, 797], [823, 798, 796], [852, 797], [825, 800], [759, 799], [827, 802], [773, 801], [774, 804], [761, 803], [764, 806], [834, 805], [777, 808], [835, 807], [842, 810], [843, 809], [844, 812], [748, 811], [839, 814], [736, 813], [851, 785, 816], [822, 815], [776], [790, 819], [865, 818], [849, 821], [795, 820], [878, 816, 823], [797, 822], [854, 825], [799, 824], [883], [801, 828], [857, 827], [830], [870, 831, 829], [858, 832, 830], [859, 775, 831], [861, 834], [806, 833], [808, 836], [892, 835], [845, 838], [781, 837], [813, 840], [875, 839], [896, 792, 842], [809, 841], [810, 844], [811, 845, 843], [867, 837, 844], [782, 847], [874, 783, 846], [933, 849], [894, 820, 848], [851], [815, 850], [798, 853], [787, 852], [824, 855], [882, 854], [909, 857], [828, 856], [831, 859], [832, 858], [887, 861], [833, 860], [946, 863], [789, 862], [889, 865], [819, 866, 864], [865], [845, 868], [900, 867], [885, 870], [830, 869], [897, 872], [898, 871], [874], [847, 875, 873], [893, 840, 874], [920, 877], [904, 876], [822, 879], [906, 880, 878], [907, 879], [908, 882], [855, 883, 881], [923, 826, 882], [885], [938, 869, 884], [913, 887], [860, 886], [916], [864, 890], [924, 889], [925, 892], [836, 891], [875], [849, 895], [894], [841, 897], [871, 896], [928, 872, 899], [898], [868, 901], [950, 900], [930, 903], [931, 902], [877, 905], [936, 904], [879], [880, 908], [921, 881, 907], [856, 910], [957, 909], [940, 912], [941, 911], [886, 914], [967, 913], [916], [945, 888, 915], [947, 918], [958, 917], [961, 920], [876, 919], [908], [923], [883, 922], [890, 925], [891, 924], [971], [972, 928], [898, 927], [988, 930], [902, 929], [903, 932], [977, 931], [848, 934], [991, 933], [1025, 936], [905, 935], [981], [885, 939], [964, 940, 938], [911, 939], [965, 912, 942], [966, 941], [968, 944], [969, 943], [916, 946], [862, 947, 945], [917, 946], [1019, 949], [974, 950, 948], [901, 949], [962], [979, 953], [992, 952], [982, 955], [983, 954], [984, 957], [910, 956], [985, 918, 959], [986, 960, 958], [1016, 959], [919, 962], [1011, 951, 961], [995, 964], [939, 965, 963], [941, 964], [998, 942, 967], [914, 968, 966], [943, 967], [944, 970], [1002, 969], [926, 972], [1004, 927, 971], [1006], [949], [1007], [1008, 977], [932, 978, 976], [989, 977], [952, 980], [1026, 979], [937, 982], [954, 981], [955, 984], [956, 983], [958, 986], [959, 985], [1021, 988], [929, 987], [978], [1068, 991], [1024, 934, 990], [953, 993], [1038, 992], [995], [1028, 963, 996, 994], [1041, 995], [1029, 998], [966, 997], [1031, 1000], [999], [1033, 1002], [970, 1001], [1014], [972, 1005], [1036, 1006, 1004], [973, 1005], [1023, 975, 1008], [976, 1009, 1007], [1048, 1008], [1069, 1011], [962, 1010], [1039, 1013], [1088, 1012], [1042, 1003, 1015], [1043, 1014], [960, 1017], [1062, 1016], [1065, 1019], [948, 1018], [1067, 1021], [987, 1020], [1046, 1023], [1122, 1007, 1022], [991], [935, 1026], [980, 1025], [1095, 1028], [995, 1027], [997, 1030], [1057, 1029], [999, 1032], [1059, 1031], [1001, 1034], [1077, 1033], [1063, 1036], [1005, 1035], [1050], [993, 1039], [1012, 1038], [1074, 1041], [996, 1040], [1014], [1015, 1044], [1079, 1043], [1080, 1046], [1022, 1045], [1048], [1009, 1049, 1047], [1083, 1048], [1071, 1037, 1051], [1126, 1052, 1050], [1085, 1053, 1051], [1086, 1052], [1113, 1055], [1087, 1054], [1057], [1089, 1030, 1056], [1090, 1059], [1115, 1032, 1060, 1058], [1059], [1091, 1062], [1017, 1061], [1035, 1064], [1063], [1018, 1066], [1103, 1067, 1065], [1020, 1066], [1108, 990, 1069], [1010, 1070, 1068], [1093, 1071, 1069], [1050, 1070], [1111, 1073], [1072], [1040, 1075], [1097, 1074], [1116, 1077], [1034, 1076], [1100, 1079], [1044, 1078], [1045, 1081], [1104, 1080], [1106, 1083], [1049, 1082], [1141, 1085], [1052, 1086, 1084], [1110, 1053, 1085], [1055, 1088], [1128, 1013, 1087], [1057, 1090], [1058, 1089], [1061, 1092], [1120, 1091], [1124, 1070, 1094], [1125, 1093], [1027, 1096], [1147, 1095], [1075, 1098], [1149, 1097], [1100], [1154, 1078, 1099], [1158, 1102], [1130, 1101], [1066, 1104], [1133, 1081, 1103], [1121], [1082, 1107], [1135, 1106], [1068, 1109], [1139, 1108], [1086, 1111], [1144, 1072, 1110], [1145, 1113], [1054, 1112], [1115], [1129, 1059, 1114], [1076, 1117], [1152, 1116], [1155, 1119], [1156, 1120, 1118], [1092, 1119], [1105, 1122], [1023, 1121], [1160, 1124], [1093, 1123], [1094, 1126], [1051, 1125], [1128], [1088, 1127], [1115], [1102, 1131], [1167, 1130], [1168, 1133], [1104, 1132], [1171, 1135], [1107, 1136, 1134], [1198, 1137, 1135], [1136], [1206, 1139], [1109, 1138], [1187, 1141], [1084, 1140], [1143], [1189, 1144, 1142], [1111, 1143], [1112, 1146], [1191, 1145], [1165, 1096, 1148], [1147], [1098, 1150], [1201, 1149], [1175, 1152], [1117, 1151], [1176, 1154], [1100, 1153], [1118, 1156], [1180, 1119, 1155], [1158], [1101, 1159, 1157], [1183, 1158], [1123, 1161], [1160], [1192, 1163], [1214, 1162], [1215, 1165], [1147, 1164], [1193, 1167], [1131, 1166], [1132, 1169], [1168], [1227, 1171], [1134, 1170], [1216, 1173], [1200, 1172], [1202, 1175], [1151, 1174], [1219, 1153, 1177], [1204, 1176], [1205, 1179], [1220, 1178], [1156, 1181], [1221, 1180], [1222, 1183], [1159, 1182], [1207, 1185], [1208, 1184], [1209, 1187], [1140, 1186], [1211], [1143, 1190], [1212, 1189], [1146, 1192], [1162, 1191], [1166, 1194], [1224, 1193], [1225, 1196], [1226, 1195], [1229, 1198], [1136, 1197], [1200], [1173, 1199], [1150, 1202], [1174, 1201], [1218], [1177, 1205], [1178, 1204], [1138, 1207], [1184, 1206], [1185, 1209], [1186, 1208], [1211], [1188, 1212, 1210], [1190, 1213, 1211], [1212], [1163, 1215], [1164, 1216, 1214], [1172, 1215], [1218], [1203, 1219, 1217], [1176, 1218], [1179, 1221], [1181, 1222, 1220], [1182, 1221], [1224], [1194, 1225, 1223], [1195, 1224], [1196, 1227], [1170, 1226], [1229], [1197, 1230, 1228], [1229]] node_data = [(15, 1), (24, 1), (34, 1), (38, 1), (40, 1), (42, 1), (45, 1), (47, 1), (51, 1), (57, 1), (65, 1), (70, 1), (73, 1), (77, 1), (81, 1), (83, 1), (2, 2), (4, 2), (12, 2), (27, 2), (30, 2), (32, 2), (42, 2), (59, 2), (63, 2), (19, 3), (21, 3), (24, 3), (27, 3), (49, 3), (51, 3), (54, 3), (57, 3), (59, 3), (77, 3), (79, 3), (83, 3), (85, 3), (6, 4), (9, 4), (12, 4), (15, 4), (61, 4), (63, 4), (65, 4), (68, 4), (70, 4), (73, 4), (16, 5), (19, 5), (21, 5), (24, 5), (28, 5), (30, 5), (32, 5), (34, 5), (36, 5), (38, 5), (43, 5), (45, 5), (47, 5), (49, 5), (50, 5), (54, 5), (57, 5), (59, 5), (75, 5), (4, 6), (6, 6), (50, 6), (52, 6), (61, 6), (68, 6), (70, 6), (75, 6), (77, 6), (79, 6), (81, 6), (82, 6), (84, 6), (9, 7), (13, 7), (24, 7), (28, 7), (30, 7), (33, 7), (36, 7), (40, 7), (43, 7), (2, 8), (4, 8), (5, 8), (16, 8), (18, 8), (20, 8), (22, 8), (47, 8), (50, 8), (52, 8), (54, 8), (56, 8), (63, 8), (65, 8), (68, 8), (70, 8), (72, 8), (74, 8), (77, 8), (81, 8), (82, 8), (7, 9), (10, 9), (13, 9), (33, 9), (35, 9), (39, 9), (41, 9), (43, 9), (68, 9), (1, 10), (5, 10), (7, 10), (18, 10), (20, 10), (22, 10), (25, 10), (27, 10), (29, 10), (32, 10), (45, 10), (47, 10), (52, 10), (54, 10), (56, 10), (58, 10), (62, 10), (63, 10), (65, 10), (72, 10), (74, 10), (82, 10), (8, 11), (10, 11), (13, 11), (16, 11), (37, 11), (47, 11), (1, 12), (3, 12), (20, 12), (22, 12), (32, 12), (35, 12), (37, 12), (39, 12), (43, 12), (45, 12), (50, 12), (53, 12), (55, 12), (58, 12), (60, 12), (62, 12), (67, 12), (70, 12), (82, 12), (84, 12), (6, 13), (8, 13), (10, 13), (16, 13), (25, 13), (27, 13), (29, 13), (31, 13), (70, 13), (73, 13), (76, 13), (81, 13), (1, 14), (3, 14), (17, 14), (24, 14), (41, 14), (43, 14), (46, 14), (50, 14), (51, 14), (58, 14), (60, 14), (67, 14), (1, 15), (4, 15), (6, 15), (31, 15), (35, 15), (37, 15), (38, 15), (53, 15), (55, 15), (62, 15), (65, 15), (70, 15), (73, 15), (76, 15), (79, 15), (81, 15), (10, 16), (12, 16), (15, 16), (20, 16), (24, 16), (43, 16), (46, 16), (82, 16), (84, 16), (6, 17), (8, 17), (14, 17), (15, 17), (17, 17), (25, 17), (27, 17), (30, 17), (35, 17), (37, 17), (39, 17), (41, 17), (49, 17), (51, 17), (54, 17), (56, 17), (58, 17), (60, 17), (62, 17), (65, 17), (67, 17), (70, 17), (72, 17), (74, 17), (79, 17), (1, 18), (4, 18), (18, 18), (20, 18), (28, 18), (30, 18), (32, 18), (43, 18), (45, 18), (80, 18), (82, 18), (84, 18), (6, 19), (8, 19), (10, 19), (12, 19), (23, 19), (25, 19), (37, 19), (39, 19), (47, 19), (49, 19), (51, 19), (54, 19), (60, 19), (64, 19), (67, 19), (72, 19), (74, 19), (76, 19), (1, 20), (4, 20), (6, 20), (18, 20), (20, 20), (34, 20), (44, 20), (45, 20), (16, 21), (25, 21), (28, 21), (31, 21), (32, 21), (34, 21), (36, 21), (38, 21), (45, 21), (47, 21), (49, 21), (53, 21), (56, 21), (58, 21), (61, 21), (64, 21), (66, 21), (68, 21), (74, 21), (76, 21), (79, 21), (81, 21), (84, 21), (12, 22), (14, 22), (20, 22), (23, 22), (25, 22), (2, 23), (4, 23), (8, 23), (10, 23), (16, 23), (19, 23), (32, 23), (34, 23), (38, 23), (41, 23), (43, 23), (49, 23), (55, 23), (56, 23), (57, 23), (61, 23), (68, 23), (70, 23), (74, 23), (79, 23), (12, 24), (14, 24), (21, 24), (23, 24), (25, 24), (27, 24), (29, 24), (50, 24), (53, 24), (62, 24), (64, 24), (66, 24), (81, 24), (83, 24), (85, 24), (4, 25), (6, 25), (8, 25), (10, 25), (17, 25), (19, 25), (41, 25), (48, 25), (57, 25), (60, 25), (70, 25), (76, 25), (78, 25), (80, 25), (23, 26), (24, 26), (27, 26), (36, 26), (38, 26), (43, 26), (45, 26), (62, 26), (64, 26), (66, 26), (67, 26), (83, 26), (85, 26), (4, 27), (8, 27), (10, 27), (11, 27), (14, 27), (17, 27), (29, 27), (32, 27), (50, 27), (53, 27), (55, 27), (57, 27), (60, 27), (62, 27), (71, 27), (73, 27), (76, 27), (78, 27), (80, 27), (82, 27), (8, 28), (19, 28), (21, 28), (24, 28), (27, 28), (35, 28), (38, 28), (42, 28), (45, 28), (47, 28), (48, 28), (27, 29), (29, 29), (32, 29), (53, 29), (55, 29), (57, 29), (63, 29), (65, 29), (68, 29), (71, 29), (73, 29), (75, 29), (78, 29), (80, 29), (82, 29), (85, 29), (4, 30), (6, 30), (10, 30), (16, 30), (19, 30), (24, 30), (35, 30), (38, 30), (40, 30), (44, 30), (47, 30), (50, 30), (52, 30), (53, 30), (57, 30), (60, 30), (28, 31), (30, 31), (55, 31), (57, 31), (66, 31), (68, 31), (6, 32), (10, 32), (12, 32), (14, 32), (16, 32), (19, 32), (23, 32), (25, 32), (32, 32), (38, 32), (40, 32), (42, 32), (44, 32), (46, 32), (60, 32), (62, 32), (63, 32), (70, 32), (72, 32), (75, 32), (78, 32), (80, 32), (83, 32), (30, 33), (32, 33), (54, 33), (57, 33), (64, 33), (66, 33), (67, 33), (14, 34), (16, 34), (21, 34), (23, 34), (46, 34), (48, 34), (50, 34), (67, 34), (70, 34), (72, 34), (75, 34), (76, 34), (83, 34), (85, 34), (4, 35), (7, 35), (10, 35), (12, 35), (28, 35), (30, 35), (32, 35), (36, 35), (41, 35), (43, 35), (52, 35), (54, 35), (61, 35), (62, 35), (19, 36), (21, 36), (39, 36), (46, 36), (48, 36), (57, 36), (59, 36), (62, 36), (64, 36), (65, 36), (67, 36), (71, 36), (73, 36), (76, 36), (79, 36), (81, 36), (13, 37), (16, 37), (32, 37), (34, 37), (36, 37), (39, 37), (41, 37), (54, 37), (55, 37), (79, 37), (81, 37), (83, 37), (85, 37), (2, 38), (4, 38), (18, 38), (23, 38), (25, 38), (30, 38), (43, 38), (46, 38), (48, 38), (51, 38), (65, 38), (71, 38), (73, 38), (74, 38), (77, 38), (79, 38), (41, 39), (59, 39), (62, 39), (81, 39), (83, 39), (4, 40), (7, 40), (13, 40), (18, 40), (23, 40), (25, 40), (26, 40), (30, 40), (32, 40), (34, 40), (38, 40), (51, 40), (53, 40), (55, 40), (58, 40), (66, 40), (68, 40), (2, 41), (19, 41), (20, 41), (41, 41), (46, 41), (74, 41), (77, 41), (79, 41), (81, 41), (83, 41), (85, 41), (7, 42), (10, 42), (15, 42), (28, 42), (30, 42), (32, 42), (34, 42), (38, 42), (40, 42), (53, 42), (55, 42), (62, 42), (66, 42), (73, 42), (74, 42), (3, 43), (5, 43), (18, 43), (19, 43), (20, 43), (22, 43), (42, 43), (46, 43), (48, 43), (50, 43), (57, 43), (58, 43), (61, 43), (68, 43), (70, 43), (24, 44), (26, 44), (34, 44), (36, 44), (38, 44), (40, 44), (53, 44), (55, 44), (63, 44), (65, 44), (74, 44), (76, 44), (79, 44), (83, 44), (85, 44), (1, 45), (3, 45), (5, 45), (8, 45), (10, 45), (13, 45), (15, 45), (17, 45), (28, 45), (31, 45), (33, 45), (42, 45), (44, 45), (48, 45), (50, 45), (57, 45), (59, 45), (65, 45), (67, 45), (70, 45), (72, 45), (22, 46), (24, 46), (36, 46), (38, 46), (51, 46), (53, 46), (74, 46), (76, 46), (79, 46), (80, 46), (83, 46), (5, 47), (8, 47), (13, 47), (17, 47), (31, 47), (33, 47), (35, 47), (40, 47), (44, 47), (46, 47), (48, 47), (55, 47), (57, 47), (59, 47), (61, 47), (63, 47), (65, 47), (67, 47), (70, 47), (72, 47), (1, 48), (3, 48), (8, 48), (10, 48), (18, 48), (20, 48), (22, 48), (24, 48), (29, 48), (38, 48), (40, 48), (78, 48), (80, 48), (83, 48), (85, 48), (1, 49), (33, 49), (35, 49), (40, 49), (43, 49), (46, 49), (48, 49), (51, 49), (53, 49), (55, 49), (57, 49), (64, 49), (65, 49), (72, 49), (74, 49), (75, 49), (80, 49), (82, 49), (83, 49), (3, 50), (5, 50), (7, 50), (12, 50), (18, 50), (21, 50), (22, 50), (24, 50), (25, 50), (36, 50), (38, 50), (57, 50), (61, 50), (75, 50), (77, 50), (7, 51), (9, 51), (21, 51), (27, 51), (29, 51), (33, 51), (40, 51), (43, 51), (45, 51), (46, 51), (49, 51), (51, 51), (53, 51), (67, 51), (70, 51), (82, 51), (84, 51), (2, 52), (3, 52), (5, 52), (12, 52), (18, 52), (36, 52), (56, 52), (59, 52), (61, 52), (63, 52), (65, 52), (71, 52), (72, 52), (75, 52), (77, 52), (81, 52), (82, 52), (7, 53), (9, 53), (11, 53), (22, 53), (25, 53), (27, 53), (29, 53), (38, 53), (40, 53), (45, 53), (47, 53), (49, 53), (51, 53), (54, 53), (56, 53), (2, 54), (4, 54), (13, 54), (18, 54), (32, 54), (36, 54), (41, 54), (44, 54), (57, 54), (59, 54), (65, 54), (68, 54), (74, 54), (76, 54), (78, 54), (81, 54), (9, 55), (11, 55), (19, 55), (22, 55), (52, 55), (54, 55), (62, 55), (63, 55), (2, 56), (4, 56), (6, 56), (13, 56), (14, 56), (16, 56), (23, 56), (27, 56), (29, 56), (32, 56), (36, 56), (38, 56), (47, 56), (49, 56), (57, 56), (59, 56), (65, 56), (67, 56), (69, 56), (71, 56), (81, 56), (84, 56), (9, 57), (12, 57), (44, 57), (54, 57), (56, 57), (3, 58), (6, 58), (12, 58), (14, 58), (21, 58), (23, 58), (27, 58), (29, 58), (31, 58), (34, 58), (36, 58), (39, 58), (41, 58), (46, 58), (49, 58), (59, 58), (61, 58), (71, 58), (74, 58), (81, 58), (85, 58), (63, 59), (65, 59), (67, 59), (69, 59), (71, 59), (76, 59), (78, 59), (1, 60), (3, 60), (7, 60), (9, 60), (16, 60), (19, 60), (21, 60), (25, 60), (29, 60), (31, 60), (39, 60), (41, 60), (44, 60), (46, 60), (50, 60), (52, 60), (54, 60), (56, 60), (57, 60), (71, 60), (73, 60), (34, 61), (36, 61), (66, 61), (68, 61), (76, 61), (78, 61), (85, 61), (7, 62), (9, 62), (12, 62), (15, 62), (17, 62), (19, 62), (25, 62), (27, 62), (33, 62), (34, 62), (40, 62), (44, 62), (48, 62), (54, 62), (56, 62), (59, 62), (61, 62), (85, 62), (3, 63), (4, 63), (63, 63), (66, 63), (68, 63), (70, 63), (73, 63), (75, 63), (79, 63), (82, 63), (9, 64), (13, 64), (15, 64), (17, 64), (19, 64), (29, 64), (31, 64), (36, 64), (38, 64), (40, 64), (42, 64), (46, 64), (48, 64), (52, 64), (54, 64), (5, 65), (7, 65), (19, 65), (26, 65), (27, 65), (56, 65), (59, 65), (61, 65), (63, 65), (68, 65), (77, 65), (79, 65), (82, 65), (84, 65), (1, 66), (3, 66), (11, 66), (13, 66), (22, 66), (34, 66), (35, 66), (36, 66), (38, 66), (40, 66), (44, 66), (46, 66), (48, 66), (50, 66), (52, 66), (69, 66), (72, 66), (75, 66), (9, 67), (14, 67), (18, 67), (24, 67), (27, 67), (29, 67), (31, 67), (54, 67), (56, 67), (58, 67), (5, 68), (9, 68), (33, 68), (35, 68), (38, 68), (40, 68), (42, 68), (44, 68), (46, 68), (50, 68), (61, 68), (63, 68), (66, 68), (72, 68), (79, 68), (81, 68), (84, 68), (85, 68), (14, 69), (16, 69), (22, 69), (24, 69), (27, 69), (29, 69), (54, 69), (56, 69), (74, 69), (77, 69), (85, 69), (1, 70), (3, 70), (18, 70), (20, 70), (32, 70), (33, 70), (36, 70), (38, 70), (40, 70), (42, 70), (44, 70), (47, 70), (50, 70), (52, 70), (63, 70), (65, 70), (66, 70), (79, 70), (81, 70), (83, 70), (6, 71), (9, 71), (24, 71), (29, 71), (52, 71), (54, 71), (58, 71), (61, 71), (67, 71), (69, 71), (71, 71), (74, 71), (77, 71), (79, 71), (3, 72), (11, 72), (16, 72), (31, 72), (33, 72), (38, 72), (40, 72), (42, 72), (44, 72), (47, 72), (50, 72), (63, 72), (65, 72), (10, 73), (20, 73), (24, 73), (34, 73), (36, 73), (52, 73), (54, 73), (56, 73), (73, 73), (77, 73), (82, 73), (83, 73), (85, 73), (10, 74), (12, 74), (16, 74), (18, 74), (25, 74), (27, 74), (39, 74), (40, 74), (42, 74), (44, 74), (45, 74), (58, 74), (61, 74), (63, 74), (64, 74), (67, 74), (69, 74), (71, 74), (1, 75), (6, 75), (8, 75), (10, 75), (21, 75), (22, 75), (34, 75), (36, 75), (47, 75), (50, 75), (54, 75), (56, 75), (73, 75), (75, 75), (81, 75), (85, 75), (15, 76), (16, 76), (18, 76), (27, 76), (29, 76), (40, 76), (42, 76), (58, 76), (61, 76), (8, 77), (10, 77), (31, 77), (34, 77), (36, 77), (39, 77), (52, 77), (54, 77), (64, 77), (67, 77), (69, 77), (75, 77), (77, 77), (81, 77), (83, 77), (1, 78), (4, 78), (18, 78), (21, 78), (23, 78), (25, 78), (43, 78), (44, 78), (47, 78), (49, 78), (56, 78), (60, 78), (61, 78), (77, 78), (79, 78), (6, 79), (8, 79), (10, 79), (12, 79), (28, 79), (29, 79), (44, 79), (67, 79), (71, 79), (73, 79), (75, 79), (81, 79), (83, 79), (84, 79), (85, 79), (1, 80), (4, 80), (13, 80), (15, 80), (18, 80), (19, 80), (21, 80), (23, 80), (25, 80), (34, 80), (35, 80), (39, 80), (41, 80), (47, 80), (49, 80), (51, 80), (54, 80), (56, 80), (60, 80), (63, 80), (64, 80), (66, 80), (6, 81), (9, 81), (28, 81), (30, 81), (32, 81), (34, 81), (68, 81), (71, 81), (73, 81), (75, 81), (78, 81), (81, 81), (35, 82), (39, 82), (43, 82), (47, 82), (51, 82), (53, 82), (56, 82), (58, 82), (60, 82), (62, 82), (64, 82), (66, 82), (4, 83), (6, 83), (9, 83), (13, 83), (16, 83), (19, 83), (23, 83), (25, 83), (28, 83), (68, 83), (70, 83), (74, 83), (76, 83), (82, 83), (84, 83), (38, 84), (39, 84), (41, 84), (43, 84), (48, 84), (53, 84), (56, 84), (1, 85), (4, 85), (6, 85), (9, 85), (13, 85), (16, 85), (23, 85), (26, 85), (30, 85), (32, 85), (35, 85), (46, 85), (48, 85), (51, 85), (58, 85), (62, 85), (64, 85), (68, 85), (70, 85), (74, 85), (76, 85), (78, 85), (80, 85), (82, 85), (84, 85)]
global N N = 4 def printSolution(board): for i in range(N): for j in range(N): print (board[i][j], end = " ") print() def isSafe(board, row, col): # Check this row on left side for i in range(col): if board[row][i] == 1: return False # Check upper diagonal on left side for i, j in zip(range(row, -1, -1), range(col, -1, -1)): if board[i][j] == 1: return False # Check lower diagonal on left side for i, j in zip(range(row, N, 1), range(col, -1, -1)): if board[i][j] == 1: return False return True def solveNQUtil(board, col): # base case: If all queens are placed # then return true if col >= N: return True # Consider this column and try placing # this queen in all rows one by one for i in range(N): if isSafe(board, i, col): # Place this queen in board[i][col] board[i][col] = 1 # recur to place rest of the queens if solveNQUtil(board, col + 1) == True: return True board[i][col] = 0 # if the queen can not be placed in any row in # this colum col then return false return False def solveNQ(): board = [ [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0] ] if solveNQUtil(board, 0) == False: print ("Solution does not exist") return False printSolution(board) return True # Driver Code solveNQ()
global N n = 4 def print_solution(board): for i in range(N): for j in range(N): print(board[i][j], end=' ') print() def is_safe(board, row, col): for i in range(col): if board[row][i] == 1: return False for (i, j) in zip(range(row, -1, -1), range(col, -1, -1)): if board[i][j] == 1: return False for (i, j) in zip(range(row, N, 1), range(col, -1, -1)): if board[i][j] == 1: return False return True def solve_nq_util(board, col): if col >= N: return True for i in range(N): if is_safe(board, i, col): board[i][col] = 1 if solve_nq_util(board, col + 1) == True: return True board[i][col] = 0 return False def solve_nq(): board = [[0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]] if solve_nq_util(board, 0) == False: print('Solution does not exist') return False print_solution(board) return True solve_nq()
""" Pointers do not exist in Python. If you want to know why i recommend reading this article: https://realpython.com/pointers-in-python/ """
""" Pointers do not exist in Python. If you want to know why i recommend reading this article: https://realpython.com/pointers-in-python/ """
marks = int(input("What is you marks in Math: ")) def show_grade(grade): print(f"You got: {grade}") if marks >= 80: show_grade("A+") elif marks >= 70: show_grade("A") elif marks >= 60: show_grade("A-") elif marks >= 50: show_grade("B") elif marks >= 40: show_grade("C") else: show_grade("F") if marks > 80 or marks < 10: print("You are very good or very bad") if marks > 80: print("Excellent") else: print("Not so good") else: print("You are okay")
marks = int(input('What is you marks in Math: ')) def show_grade(grade): print(f'You got: {grade}') if marks >= 80: show_grade('A+') elif marks >= 70: show_grade('A') elif marks >= 60: show_grade('A-') elif marks >= 50: show_grade('B') elif marks >= 40: show_grade('C') else: show_grade('F') if marks > 80 or marks < 10: print('You are very good or very bad') if marks > 80: print('Excellent') else: print('Not so good') else: print('You are okay')