[VOL-4913]: Implementation for on demand audit of ONU alarms
Change-Id: I48eadccb76cd1b486ce783e3f0ea50d94750969e
diff --git a/VERSION b/VERSION
index c8e38b6..5d9ade1 100755
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-2.9.0
+2.9.2
diff --git a/go.mod b/go.mod
index 0ba3576..b2a08f7 100644
--- a/go.mod
+++ b/go.mod
@@ -17,7 +17,7 @@
github.com/looplab/fsm v0.2.0
github.com/opencord/omci-lib-go/v2 v2.2.3
github.com/opencord/voltha-lib-go/v7 v7.3.2
- github.com/opencord/voltha-protos/v5 v5.3.8
+ github.com/opencord/voltha-protos/v5 v5.4.1
github.com/stretchr/testify v1.7.0
google.golang.org/grpc v1.44.0
)
diff --git a/go.sum b/go.sum
index 5238ae9..b067bba 100644
--- a/go.sum
+++ b/go.sum
@@ -209,8 +209,9 @@
github.com/opencord/omci-lib-go/v2 v2.2.3/go.mod h1:o1S/jhDLHNikFU7uG2TR5UOM5KmKlqwLlVncXi0FBYQ=
github.com/opencord/voltha-lib-go/v7 v7.3.2 h1:mvQE+HTf3sLXIMulkDQJbbR67lIaV/Y6IIj1co0vrhU=
github.com/opencord/voltha-lib-go/v7 v7.3.2/go.mod h1:3XnWQBHALGZTm5n3j401zKGG9aL2UqSU3/owGwNmcxM=
-github.com/opencord/voltha-protos/v5 v5.3.8 h1:tL8I1wtOfuMnKMQvgN1Ul+8YL/LTBm0PpNuxU1usGDw=
github.com/opencord/voltha-protos/v5 v5.3.8/go.mod h1:ZGcyW79kQKIo7AySo1LRu613E6uiozixrCF0yNB/4x8=
+github.com/opencord/voltha-protos/v5 v5.4.1 h1:TDEAxswSD6AEiPMy6Sz3jN/hJTRiZUy7FWq8GQ3hzi0=
+github.com/opencord/voltha-protos/v5 v5.4.1/go.mod h1:ZGcyW79kQKIo7AySo1LRu613E6uiozixrCF0yNB/4x8=
github.com/opentracing/opentracing-go v1.1.0/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o=
github.com/opentracing/opentracing-go v1.2.0 h1:uEJPy/1a5RIPAJ0Ov+OIO8OxWu77jEv+1B0VhjKrZUs=
github.com/opentracing/opentracing-go v1.2.0/go.mod h1:GxEUsuufX4nBwe+T+Wl9TAgYrxe9dPLANfrWvHYVTgc=
diff --git a/internal/pkg/almgr/alarm_manager.go b/internal/pkg/almgr/alarm_manager.go
index ae872fa..40632c2 100755
--- a/internal/pkg/almgr/alarm_manager.go
+++ b/internal/pkg/almgr/alarm_manager.go
@@ -14,7 +14,7 @@
* limitations under the License.
*/
-//Package almgr provides the utilities for managing alarm notifications
+// Package almgr provides the utilities for managing alarm notifications
package almgr
import (
@@ -31,6 +31,7 @@
"github.com/opencord/voltha-lib-go/v7/pkg/events/eventif"
"github.com/opencord/voltha-lib-go/v7/pkg/log"
cmn "github.com/opencord/voltha-openonu-adapter-go/internal/pkg/common"
+ "github.com/opencord/voltha-protos/v5/go/extension"
"github.com/opencord/voltha-protos/v5/go/voltha"
)
@@ -114,6 +115,9 @@
alarmUploadNoOfCmdsOrMEs uint16
StopAlarmAuditTimer chan struct{}
isExtendedOmci bool
+ AsyncAlarmsCommChan chan struct{}
+ isAsyncAlarmRequest bool
+ onuAlarmRequestLock sync.RWMutex
}
// NewAlarmManager - TODO: add comment
@@ -130,6 +134,8 @@
alarmManager.activeAlarms = make(map[alarmInfo]struct{})
alarmManager.alarmBitMapDB = make(map[meAlarmKey][alarmBitMapSizeBytes]byte)
alarmManager.StopAlarmAuditTimer = make(chan struct{})
+ alarmManager.AsyncAlarmsCommChan = make(chan struct{})
+ alarmManager.isAsyncAlarmRequest = false
alarmManager.onuEventsList = map[onuDevice]onuDeviceEvent{
{classID: circuitPackClassID, alarmno: 0}: {EventName: "ONU_EQUIPMENT",
EventCategory: voltha.EventCategory_EQUIPMENT, EventSubCategory: voltha.EventSubCategory_ONU, EventDescription: "onu equipment"},
@@ -186,6 +192,7 @@
"enter_" + asStAuditing: func(e *fsm.Event) { alarmManager.asFsmAuditing(ctx, e) },
"enter_" + asStInSync: func(e *fsm.Event) { alarmManager.asFsmInSync(ctx, e) },
"enter_" + asStResynchronizing: func(e *fsm.Event) { alarmManager.asFsmResynchronizing(ctx, e) },
+ "leave_" + asStAuditing: func(e *fsm.Event) { alarmManager.asFsmLeaveAuditing(ctx, e) },
},
)
return &alarmManager
@@ -237,7 +244,15 @@
go failureTransition()
}
}
+func (am *OnuAlarmManager) asFsmLeaveAuditing(ctx context.Context, e *fsm.Event) {
+ logger.Debugw(ctx, "alarm-sync-fsm-leave-auditing state", log.Fields{"state": e.FSM.Current(), "device-id": am.deviceID})
+ if am.isAsyncAlarmRequest {
+ logger.Errorw(ctx, "alarm-sync-fsm-leave-auditing state process the updated ONU alarms ", log.Fields{"state": e.FSM.Current(), "device-id": am.deviceID})
+ am.AsyncAlarmsCommChan <- struct{}{}
+ am.isAsyncAlarmRequest = false
+ }
+}
func (am *OnuAlarmManager) asFsmResynchronizing(ctx context.Context, e *fsm.Event) {
logger.Debugw(ctx, "alarm-sync-fsm", log.Fields{"state": e.FSM.Current(), "device-id": am.deviceID})
failureTransition := func() {
@@ -339,6 +354,17 @@
case <-am.StopAlarmAuditTimer:
logger.Infow(ctx, "stopping-alarm-timer", log.Fields{"device-id": am.deviceID})
return
+
+ case <-am.AsyncAlarmsCommChan:
+ go func() {
+ logger.Debugw(ctx, "On demand Auditing the ONU for Alarms ", log.Fields{"device-id": am.deviceID})
+ if err := am.AlarmSyncFsm.PFsm.Event(AsEvAudit); err != nil {
+ logger.Errorw(ctx, "alarm-sync-fsm-cannot-go-to-state-auditing, use current snapshot of alarms", log.Fields{"device-id": am.deviceID, "err": err})
+ am.isAsyncAlarmRequest = false
+ am.AsyncAlarmsCommChan <- struct{}{}
+ }
+ }()
+
}
}
}
@@ -450,6 +476,7 @@
logger.Debugw(ctx, "alarm-sync-fsm-cannot-go-to-state-sync", log.Fields{"device-id": am.deviceID, "err": err})
}
}()
+
}
} else {
logger.Errorw(ctx, "invalid-number-of-commands-received", log.Fields{"device-id": am.deviceID,
@@ -532,6 +559,7 @@
}
}()
}
+
}
}
@@ -796,7 +824,7 @@
return onuDeviceEvent{}, errors.New("onu Event Detail not found")
}
-//ResetAlarmUploadCounters resets alarm upload sequence number and number of commands
+// ResetAlarmUploadCounters resets alarm upload sequence number and number of commands
func (am *OnuAlarmManager) ResetAlarmUploadCounters() {
am.onuAlarmManagerLock.Lock()
am.alarmUploadSeqNo = 0
@@ -804,14 +832,14 @@
am.onuAlarmManagerLock.Unlock()
}
-//IncrementAlarmUploadSeqNo increments alarm upload sequence number
+// IncrementAlarmUploadSeqNo increments alarm upload sequence number
func (am *OnuAlarmManager) IncrementAlarmUploadSeqNo() {
am.onuAlarmManagerLock.Lock()
am.alarmUploadSeqNo++
am.onuAlarmManagerLock.Unlock()
}
-//GetAlarmUploadSeqNo gets alarm upload sequence number
+// GetAlarmUploadSeqNo gets alarm upload sequence number
func (am *OnuAlarmManager) GetAlarmUploadSeqNo() uint16 {
am.onuAlarmManagerLock.RLock()
value := am.alarmUploadSeqNo
@@ -819,11 +847,57 @@
return value
}
-//GetAlarmMgrEventChannel gets alarm manager event channel
+// GetAlarmMgrEventChannel gets alarm manager event channel
func (am *OnuAlarmManager) GetAlarmMgrEventChannel() chan cmn.Message {
return am.eventChannel
}
+// GetOnuActiveAlarms - Fetch the Active Alarms on demand
+func (am *OnuAlarmManager) GetOnuActiveAlarms(ctx context.Context) *extension.SingleGetValueResponse {
+
+ am.onuAlarmRequestLock.Lock()
+ defer am.onuAlarmRequestLock.Unlock()
+
+ resp := extension.SingleGetValueResponse{
+ Response: &extension.GetValueResponse{
+ Status: extension.GetValueResponse_OK,
+ Response: &extension.GetValueResponse_OnuActiveAlarms{
+ OnuActiveAlarms: &extension.GetOnuOmciActiveAlarmsResponse{},
+ },
+ },
+ }
+
+ logger.Debugw(ctx, "Requesting to start audit on demand ", log.Fields{"device-id": am.deviceID})
+ am.isAsyncAlarmRequest = true
+
+ am.AsyncAlarmsCommChan <- struct{}{}
+
+ select {
+ case <-time.After(10 * time.Second): //the time to wait needs further discussion.
+ logger.Errorw(ctx, "Couldn't get the Alarms with in 10 seconds stipulated time frame ", log.Fields{"device-id": am.deviceID})
+ am.isAsyncAlarmRequest = false
+
+ case <-am.AsyncAlarmsCommChan:
+ logger.Debugw(ctx, "Received response for the alarm audit ", log.Fields{"device-id": am.deviceID})
+
+ }
+
+ for activeAlarm := range am.activeAlarms {
+
+ onuEventDetails := am.onuEventsList[onuDevice{classID: activeAlarm.classID, alarmno: activeAlarm.alarmNo}]
+ activeAlarmData := extension.AlarmData{}
+ activeAlarmData.ClassId = uint32(activeAlarm.classID)
+ activeAlarmData.InstanceId = uint32(activeAlarm.instanceID)
+ activeAlarmData.Name = onuEventDetails.EventName
+ activeAlarmData.Description = onuEventDetails.EventDescription
+
+ resp.Response.GetOnuActiveAlarms().ActiveAlarms = append(resp.Response.GetOnuActiveAlarms().ActiveAlarms, &activeAlarmData)
+
+ }
+
+ return &resp
+}
+
// PrepareForGarbageCollection - remove references to prepare for garbage collection
func (am *OnuAlarmManager) PrepareForGarbageCollection(ctx context.Context, aDeviceID string) {
logger.Debugw(ctx, "prepare for garbage collection", log.Fields{"device-id": aDeviceID})
diff --git a/internal/pkg/common/interfaces.go b/internal/pkg/common/interfaces.go
index c56f8f8..901704d 100755
--- a/internal/pkg/common/interfaces.go
+++ b/internal/pkg/common/interfaces.go
@@ -14,7 +14,7 @@
* limitations under the License.
*/
-//Package common provides global definitions
+// Package common provides global definitions
package common
import (
@@ -26,6 +26,7 @@
"github.com/opencord/voltha-lib-go/v7/pkg/db"
"github.com/opencord/voltha-lib-go/v7/pkg/events/eventif"
"github.com/opencord/voltha-openonu-adapter-go/internal/pkg/devdb"
+ "github.com/opencord/voltha-protos/v5/go/extension"
ia "github.com/opencord/voltha-protos/v5/go/inter_adapter"
"github.com/opencord/voltha-protos/v5/go/openolt"
"github.com/opencord/voltha-protos/v5/go/voltha"
@@ -172,6 +173,7 @@
GetAlarmMgrEventChannel() chan Message
GetAlarmUploadSeqNo() uint16
IncrementAlarmUploadSeqNo()
+ GetOnuActiveAlarms(ctx context.Context) *extension.SingleGetValueResponse
}
// IonuUniTechProf interface to onuUniTechProf
diff --git a/internal/pkg/core/device_handler.go b/internal/pkg/core/device_handler.go
index e6bfea6..b9cadf0 100755
--- a/internal/pkg/core/device_handler.go
+++ b/internal/pkg/core/device_handler.go
@@ -14,7 +14,7 @@
* limitations under the License.
*/
-//Package core provides the utility for onu devices, flows and statistics
+// Package core provides the utility for onu devices, flows and statistics
package core
import (
@@ -95,7 +95,7 @@
devStUp = "devStUp"
)
-//Event category and subcategory definitions - same as defiend for OLT in eventmgr.go - should be done more centrally
+// Event category and subcategory definitions - same as defiend for OLT in eventmgr.go - should be done more centrally
const (
pon = voltha.EventSubCategory_PON
//olt = voltha.EventSubCategory_OLT
@@ -149,7 +149,7 @@
respChan *chan error // channel to report the Flow handling error
}
-//deviceHandler will interact with the ONU ? device.
+// deviceHandler will interact with the ONU ? device.
type deviceHandler struct {
DeviceID string
DeviceType string
@@ -233,7 +233,7 @@
oltAvailable bool
}
-//newDeviceHandler creates a new device handler
+// newDeviceHandler creates a new device handler
func newDeviceHandler(ctx context.Context, cc *vgrpc.Client, ep eventif.EventProxy, device *voltha.Device, adapter *OpenONUAC) *deviceHandler {
var dh deviceHandler
dh.coreClient = cc
@@ -333,7 +333,7 @@
// ##########################################################################################
// deviceHandler methods that implement the adapters interface requests ##### begin #########
-//adoptOrReconcileDevice adopts the ONU device
+// adoptOrReconcileDevice adopts the ONU device
func (dh *deviceHandler) adoptOrReconcileDevice(ctx context.Context, device *voltha.Device) {
logger.Debugw(ctx, "adopt_or_reconcile_device", log.Fields{"device-id": device.Id, "Address": device.GetHostAndPort()})
@@ -617,7 +617,7 @@
return nil
}
-//FlowUpdateIncremental removes and/or adds the flow changes on a given device
+// FlowUpdateIncremental removes and/or adds the flow changes on a given device
func (dh *deviceHandler) FlowUpdateIncremental(ctx context.Context,
apOfFlowChanges *of.FlowChanges,
apOfGroupChanges *of.FlowGroupChanges, apFlowMetaData *of.FlowMetadata) error {
@@ -789,9 +789,9 @@
return nil
}
-//disableDevice locks the ONU and its UNI/VEIP ports (admin lock via OMCI)
-//following are the expected device states after this activity:
-//Device Admin-State : down (on rwCore), Port-State: UNKNOWN, Conn-State: REACHABLE, Reason: omci-admin-lock
+// disableDevice locks the ONU and its UNI/VEIP ports (admin lock via OMCI)
+// following are the expected device states after this activity:
+// Device Admin-State : down (on rwCore), Port-State: UNKNOWN, Conn-State: REACHABLE, Reason: omci-admin-lock
// (Conn-State: REACHABLE might conflict with some previous ONU Down indication - maybe to be resolved later)
func (dh *deviceHandler) disableDevice(ctx context.Context, device *voltha.Device) {
logger.Debugw(ctx, "disable-device", log.Fields{"device-id": device.Id, "SerialNumber": device.SerialNumber})
@@ -835,7 +835,7 @@
}
}
-//reEnableDevice unlocks the ONU and its UNI/VEIP ports (admin unlock via OMCI)
+// reEnableDevice unlocks the ONU and its UNI/VEIP ports (admin unlock via OMCI)
func (dh *deviceHandler) reEnableDevice(ctx context.Context, device *voltha.Device) {
logger.Debugw(ctx, "reenable-device", log.Fields{"device-id": device.Id, "SerialNumber": device.SerialNumber})
@@ -1148,8 +1148,9 @@
} //for all flows of this UNI
}
-//waitOnUniVlanConfigReconcilingReady collects all VlanConfigReady signals from VlanConfig FSM processing in reconciling
-// and decrements the according handler wait group waiting for these indications
+// waitOnUniVlanConfigReconcilingReady collects all VlanConfigReady signals from VlanConfig FSM processing in reconciling
+//
+// and decrements the according handler wait group waiting for these indications
func (dh *deviceHandler) waitOnUniVlanConfigReconcilingReady(ctx context.Context, aSyncChannel chan<- struct{},
waitGroup *cmn.WaitGroupWithTimeOut) {
var reconciledUniVlanConfigEntries []uint8
@@ -1259,10 +1260,12 @@
return pDevEntry.GetKvProcessingErrorIndication()
}
-//func (dh *deviceHandler) rebootDevice(ctx context.Context, device *voltha.Device) error {
+// func (dh *deviceHandler) rebootDevice(ctx context.Context, device *voltha.Device) error {
// before this change here return like this was used:
-// return fmt.Errorf("device-unreachable: %s, %s", dh.DeviceID, device.SerialNumber)
-//was and is called in background - error return does not make sense
+//
+// return fmt.Errorf("device-unreachable: %s, %s", dh.DeviceID, device.SerialNumber)
+//
+// was and is called in background - error return does not make sense
func (dh *deviceHandler) rebootDevice(ctx context.Context, aCheckDeviceState bool, device *voltha.Device) {
logger.Infow(ctx, "reboot-device", log.Fields{"device-id": dh.DeviceID, "SerialNumber": dh.device.SerialNumber})
if aCheckDeviceState && device.ConnectStatus != voltha.ConnectStatus_REACHABLE {
@@ -1300,8 +1303,9 @@
// all other FSM's should be synchronized again
}
-//doOnuSwUpgrade initiates the SW download transfer to the ONU and on success activates the (inactive) image
-// used only for old - R2.7 style - upgrade API
+// doOnuSwUpgrade initiates the SW download transfer to the ONU and on success activates the (inactive) image
+//
+// used only for old - R2.7 style - upgrade API
func (dh *deviceHandler) doOnuSwUpgrade(ctx context.Context, apImageDsc *voltha.ImageDownload,
apDownloadManager *swupg.AdapterDownloadManager) error {
logger.Debugw(ctx, "onuSwUpgrade requested", log.Fields{
@@ -1353,7 +1357,7 @@
return err
}
-//onuSwUpgradeAfterDownload initiates the SW download transfer to the ONU with activate and commit options
+// onuSwUpgradeAfterDownload initiates the SW download transfer to the ONU with activate and commit options
// after the OnuImage has been downloaded to the adapter, called in background
func (dh *deviceHandler) onuSwUpgradeAfterDownload(ctx context.Context, apImageRequest *voltha.DeviceImageDownloadRequest,
apDownloadManager *swupg.FileDownloadManager, aImageIdentifier string) {
@@ -1423,7 +1427,7 @@
"device-id": dh.DeviceID, "error": err})
}
-//onuSwActivateRequest ensures activation of the requested image with commit options
+// onuSwActivateRequest ensures activation of the requested image with commit options
func (dh *deviceHandler) onuSwActivateRequest(ctx context.Context,
aVersion string, aCommitRequest bool) (*voltha.ImageState, error) {
var err error
@@ -1492,7 +1496,7 @@
return nil, fmt.Errorf("could not start upgradeFsm for device-id: %s", dh.DeviceID)
}
-//onuSwCommitRequest ensures commitment of the requested image
+// onuSwCommitRequest ensures commitment of the requested image
func (dh *deviceHandler) onuSwCommitRequest(ctx context.Context,
aVersion string) (*voltha.ImageState, error) {
var err error
@@ -1794,8 +1798,9 @@
// doStateConnected get the device info and update to voltha core
// for comparison of the original method (not that easy to uncomment): compare here:
-// voltha-openolt-adapter/adaptercore/device_handler.go
-// -> this one obviously initiates all communication interfaces of the device ...?
+//
+// voltha-openolt-adapter/adaptercore/device_handler.go
+// -> this one obviously initiates all communication interfaces of the device ...?
func (dh *deviceHandler) doStateConnected(ctx context.Context, e *fsm.Event) {
logger.Debugw(ctx, "doStateConnected-started", log.Fields{"device-id": dh.DeviceID})
@@ -1892,7 +1897,7 @@
// ###################################################
// deviceHandler utility methods ##### begin #########
-//GetOnuDeviceEntry gets the ONU device entry and may wait until its value is defined
+// GetOnuDeviceEntry gets the ONU device entry and may wait until its value is defined
func (dh *deviceHandler) GetOnuDeviceEntry(ctx context.Context, aWait bool) *mib.OnuDeviceEntry {
dh.lockDevice.RLock()
pOnuDeviceEntry := dh.pOnuOmciDevice
@@ -1916,7 +1921,7 @@
return pOnuDeviceEntry
}
-//setDeviceHandlerEntries sets the ONU device entry within the handler
+// setDeviceHandlerEntries sets the ONU device entry within the handler
func (dh *deviceHandler) setDeviceHandlerEntries(apDeviceEntry *mib.OnuDeviceEntry, apOnuTp *avcfg.OnuUniTechProf,
apOnuMetricsMgr *pmmgr.OnuMetricsManager, apOnuAlarmMgr *almgr.OnuAlarmManager, apSelfTestHdlr *otst.SelfTestControlBlock) {
dh.lockDevice.Lock()
@@ -1928,7 +1933,7 @@
dh.pSelfTestHdlr = apSelfTestHdlr
}
-//addOnuDeviceEntry creates a new ONU device or returns the existing
+// addOnuDeviceEntry creates a new ONU device or returns the existing
func (dh *deviceHandler) addOnuDeviceEntry(ctx context.Context) error {
logger.Debugw(ctx, "adding-deviceEntry", log.Fields{"device-id": dh.DeviceID})
@@ -2639,7 +2644,7 @@
}
}
-//DeviceProcStatusUpdate evaluates possible processing events and initiates according next activities
+// DeviceProcStatusUpdate evaluates possible processing events and initiates according next activities
func (dh *deviceHandler) DeviceProcStatusUpdate(ctx context.Context, devEvent cmn.OnuDeviceEvent) {
switch devEvent {
case cmn.MibDatabaseSync:
@@ -3122,7 +3127,7 @@
dh.lockUpgradeFsm.RUnlock()
}
-//SetBackend provides a DB backend for the specified path on the existing KV client
+// SetBackend provides a DB backend for the specified path on the existing KV client
func (dh *deviceHandler) SetBackend(ctx context.Context, aBasePathKvStore string) *db.Backend {
logger.Debugw(ctx, "SetKVStoreBackend", log.Fields{"IpTarget": dh.pOpenOnuAc.KVStoreAddress,
@@ -3260,7 +3265,7 @@
} //for all Actions
}
-//addFlowItemToUniPort parses the actual flow item to add it to the UniPort
+// addFlowItemToUniPort parses the actual flow item to add it to the UniPort
func (dh *deviceHandler) addFlowItemToUniPort(ctx context.Context, apFlowItem *of.OfpFlowStats, apUniPort *cmn.OnuUniPort,
apFlowMetaData *of.FlowMetadata, respChan *chan error) {
var loSetVlan uint16 = uint16(of.OfpVlanId_OFPVID_NONE) //noValidEntry
@@ -3361,7 +3366,7 @@
}
}
-//removeFlowItemFromUniPort parses the actual flow item to remove it from the UniPort
+// removeFlowItemFromUniPort parses the actual flow item to remove it from the UniPort
func (dh *deviceHandler) removeFlowItemFromUniPort(ctx context.Context, apFlowItem *of.OfpFlowStats, apUniPort *cmn.OnuUniPort, respChan *chan error) {
//optimization and assumption: the flow cookie uniquely identifies the flow and with that the internal rule
//hence only the cookie is used here to find the relevant flow and possibly remove the rule
@@ -3464,7 +3469,7 @@
return nil
}
-//VerifyVlanConfigRequest checks on existence of a given uniPort
+// VerifyVlanConfigRequest checks on existence of a given uniPort
// and starts verification of flow config based on that
func (dh *deviceHandler) VerifyVlanConfigRequest(ctx context.Context, aUniID uint8, aTpID uint8) {
//ensure that the given uniID is available (configured) in the UniPort class (used for OMCI entities)
@@ -3484,7 +3489,7 @@
dh.VerifyUniVlanConfigRequest(ctx, pCurrentUniPort, aTpID)
}
-//VerifyUniVlanConfigRequest checks on existence of flow configuration and starts it accordingly
+// VerifyUniVlanConfigRequest checks on existence of flow configuration and starts it accordingly
func (dh *deviceHandler) VerifyUniVlanConfigRequest(ctx context.Context, apUniPort *cmn.OnuUniPort, aTpID uint8) {
//TODO!! verify and start pending flow configuration
//some pending config request my exist in case the UniVlanConfig FSM was already started - with internal data -
@@ -3537,7 +3542,7 @@
}
}
-//RemoveVlanFilterFsm deletes the stored pointer to the VlanConfigFsm
+// RemoveVlanFilterFsm deletes the stored pointer to the VlanConfigFsm
// intention is to provide this method to be called from VlanConfigFsm itself, when resources (and methods!) are cleaned up
func (dh *deviceHandler) RemoveVlanFilterFsm(ctx context.Context, apUniPort *cmn.OnuUniPort) {
logger.Debugw(ctx, "remove UniVlanConfigFsm StateMachine", log.Fields{
@@ -3548,7 +3553,7 @@
dh.lockVlanConfig.Unlock()
}
-//startWritingOnuDataToKvStore initiates the KVStore write of ONU persistent data
+// startWritingOnuDataToKvStore initiates the KVStore write of ONU persistent data
func (dh *deviceHandler) startWritingOnuDataToKvStore(ctx context.Context, aPDevEntry *mib.OnuDeviceEntry) error {
dh.mutexKvStoreContext.Lock() //this write routine may (could) be called with the same context,
defer dh.mutexKvStoreContext.Unlock() //this write routine may (could) be called with the same context,
@@ -3568,8 +3573,8 @@
return aPDevEntry.GetKvProcessingErrorIndication()
}
-//StorePersUniFlowConfig updates local storage of OnuUniFlowConfig and writes it into kv-store afterwards to have it
-//available for potential reconcilement
+// StorePersUniFlowConfig updates local storage of OnuUniFlowConfig and writes it into kv-store afterwards to have it
+// available for potential reconcilement
func (dh *deviceHandler) StorePersUniFlowConfig(ctx context.Context, aUniID uint8,
aUniVlanFlowParams *[]cmn.UniVlanFlowParams, aWriteToKvStore bool) error {
@@ -3599,8 +3604,9 @@
"device-id": dh.DeviceID, "called from": aCallerIdent})
}
-//ReasonUpdate set the internally store device reason and if requested in notifyCore updates this state in the core
-// (renamed from previous deviceReasonUpdate to avoid confusing with the core function DeviceReasonUpdate)
+// ReasonUpdate set the internally store device reason and if requested in notifyCore updates this state in the core
+//
+// (renamed from previous deviceReasonUpdate to avoid confusing with the core function DeviceReasonUpdate)
func (dh *deviceHandler) ReasonUpdate(ctx context.Context, deviceReason uint8, notifyCore bool) error {
// acquire the deviceReason semaphore throughout this function including the possible update processing in core
// in order to avoid reversion of the state sequence within core in case of quasi-parallel calls (eg. in multi UNI processing)
@@ -4654,6 +4660,12 @@
return tpPathFound
}
+func (dh *deviceHandler) getOnuActiveAlarms(ctx context.Context) *extension.SingleGetValueResponse {
+ resp := dh.GetOnuAlarmManager().GetOnuActiveAlarms(ctx)
+ logger.Debugw(ctx, "Received response from AlarmManager for Active Alarms for DeviceEntry", log.Fields{"device-id": dh.DeviceID})
+ return resp
+}
+
// PrepareForGarbageCollection - remove references to prepare for garbage collection
func (dh *deviceHandler) PrepareForGarbageCollection(ctx context.Context, aDeviceID string) {
logger.Debugw(ctx, "prepare for garbage collection", log.Fields{"device-id": aDeviceID})
diff --git a/internal/pkg/core/openonu.go b/internal/pkg/core/openonu.go
index 5192850..bbcd956 100755
--- a/internal/pkg/core/openonu.go
+++ b/internal/pkg/core/openonu.go
@@ -14,7 +14,7 @@
* limitations under the License.
*/
-//Package core provides the utility for onu devices, flows and statistics
+// Package core provides the utility for onu devices, flows and statistics
package core
import (
@@ -60,7 +60,7 @@
keepAliveInterval int64
}
-//OpenONUAC structure holds the ONU core information
+// OpenONUAC structure holds the ONU core information
type OpenONUAC struct {
deviceHandlers map[string]*deviceHandler
deviceHandlersCreateChan map[string]chan bool //channels for deviceHandler create events
@@ -99,7 +99,7 @@
maxConcurrentFlowsPerUni int
}
-//NewOpenONUAC returns a new instance of OpenONU_AC
+// NewOpenONUAC returns a new instance of OpenONU_AC
func NewOpenONUAC(ctx context.Context, coreClient *vgrpc.Client, eventProxy eventif.EventProxy,
kvClient kvstore.Client, cfg *config.AdapterFlags, cm *conf.ConfigManager) *OpenONUAC {
var openOnuAc OpenONUAC
@@ -160,14 +160,14 @@
return &openOnuAc
}
-//Start starts (logs) the adapter
+// Start starts (logs) the adapter
func (oo *OpenONUAC) Start(ctx context.Context) error {
logger.Info(ctx, "starting-openonu-adapter")
return nil
}
-//Stop terminates the session
+// Stop terminates the session
func (oo *OpenONUAC) Stop(ctx context.Context) error {
logger.Info(ctx, "stopping-device-manager")
close(oo.exitChannel)
@@ -196,7 +196,7 @@
delete(oo.deviceHandlersCreateChan, agent.DeviceID)
}
-//getDeviceHandler gets the ONU deviceHandler and may wait until it is created
+// getDeviceHandler gets the ONU deviceHandler and may wait until it is created
func (oo *OpenONUAC) getDeviceHandler(ctx context.Context, deviceID string, aWait bool) *deviceHandler {
oo.mutexDeviceHandlersMap.Lock()
agent, ok := oo.deviceHandlers[deviceID]
@@ -249,7 +249,7 @@
return &empty.Empty{}, nil
}
-//ReconcileDevice is called once when the adapter needs to re-create device - usually on core restart
+// ReconcileDevice is called once when the adapter needs to re-create device - usually on core restart
func (oo *OpenONUAC) ReconcileDevice(ctx context.Context, device *voltha.Device) (*empty.Empty, error) {
if device == nil {
logger.Warn(ctx, "reconcile-device-voltha-device-is-nil")
@@ -289,7 +289,7 @@
return &empty.Empty{}, nil
}
-//DisableDevice disables the given device
+// DisableDevice disables the given device
func (oo *OpenONUAC) DisableDevice(ctx context.Context, device *voltha.Device) (*empty.Empty, error) {
logger.Infow(ctx, "disable-device", log.Fields{"device-id": device.Id})
if handler := oo.getDeviceHandler(ctx, device.Id, false); handler != nil {
@@ -300,7 +300,7 @@
return nil, fmt.Errorf(fmt.Sprintf("handler-not-found-%s", device.Id))
}
-//ReEnableDevice enables the onu device after disable
+// ReEnableDevice enables the onu device after disable
func (oo *OpenONUAC) ReEnableDevice(ctx context.Context, device *voltha.Device) (*empty.Empty, error) {
logger.Infow(ctx, "reenable-device", log.Fields{"device-id": device.Id})
if handler := oo.getDeviceHandler(ctx, device.Id, false); handler != nil {
@@ -311,7 +311,7 @@
return nil, fmt.Errorf(fmt.Sprintf("handler-not-found-%s", device.Id))
}
-//RebootDevice reboots the given device
+// RebootDevice reboots the given device
func (oo *OpenONUAC) RebootDevice(ctx context.Context, device *voltha.Device) (*empty.Empty, error) {
logger.Infow(ctx, "reboot-device", log.Fields{"device-id": device.Id})
if handler := oo.getDeviceHandler(ctx, device.Id, false); handler != nil {
@@ -367,7 +367,7 @@
return &empty.Empty{}, nil
}
-//UpdateFlowsIncrementally updates (add/remove) the flows on a given device
+// UpdateFlowsIncrementally updates (add/remove) the flows on a given device
func (oo *OpenONUAC) UpdateFlowsIncrementally(ctx context.Context, incrFlows *ca.IncrementalFlows) (*empty.Empty, error) {
logger.Infow(ctx, "update-flows-incrementally", log.Fields{"device-id": incrFlows.Device.Id})
@@ -397,7 +397,7 @@
return nil, fmt.Errorf(fmt.Sprintf("handler-not-found-%s", incrFlows.Device.Id))
}
-//UpdatePmConfig returns PmConfigs nil or error
+// UpdatePmConfig returns PmConfigs nil or error
func (oo *OpenONUAC) UpdatePmConfig(ctx context.Context, configs *ca.PmConfigsInfo) (*empty.Empty, error) {
logger.Infow(ctx, "update-pm-config", log.Fields{"device-id": configs.DeviceId})
if handler := oo.getDeviceHandler(ctx, configs.DeviceId, false); handler != nil {
@@ -410,8 +410,8 @@
return nil, fmt.Errorf(fmt.Sprintf("handler-not-found-%s", configs.DeviceId))
}
-//DownloadImage requests downloading some image according to indications as given in request
-//The ImageDownload needs to be called `request`due to library reflection requirements
+// DownloadImage requests downloading some image according to indications as given in request
+// The ImageDownload needs to be called `request`due to library reflection requirements
func (oo *OpenONUAC) DownloadImage(ctx context.Context, imageInfo *ca.ImageDownloadMessage) (*voltha.ImageDownload, error) {
ctx = log.WithSpanFromContext(context.Background(), ctx)
if imageInfo != nil && imageInfo.Image != nil && imageInfo.Image.Name != "" {
@@ -435,9 +435,11 @@
return nil, errors.New("invalid image definition")
}
-//ActivateImageUpdate requests downloading some Onu Software image to the ONU via OMCI
-// according to indications as given in request and on success activate the image on the ONU
-//The ImageDownload needs to be called `request`due to library reflection requirements
+// ActivateImageUpdate requests downloading some Onu Software image to the ONU via OMCI
+//
+// according to indications as given in request and on success activate the image on the ONU
+//
+// The ImageDownload needs to be called `request`due to library reflection requirements
func (oo *OpenONUAC) ActivateImageUpdate(ctx context.Context, imageInfo *ca.ImageDownloadMessage) (*voltha.ImageDownload, error) {
if imageInfo != nil && imageInfo.Image != nil && imageInfo.Image.Name != "" {
if oo.pDownloadManager.ImageLocallyDownloaded(ctx, imageInfo.Image) {
@@ -458,7 +460,7 @@
return nil, errors.New("invalid image definition")
}
-//GetSingleValue handles the core request to retrieve uni status
+// GetSingleValue handles the core request to retrieve uni status
func (oo *OpenONUAC) GetSingleValue(ctx context.Context, request *extension.SingleGetValueRequest) (*extension.SingleGetValueResponse, error) {
logger.Infow(ctx, "Single_get_value_request", log.Fields{"request": request})
@@ -485,6 +487,10 @@
return handler.getOnuOMCICounters(ctx, reqType.OnuInfo), nil
case *extension.GetValueRequest_OnuOmciStats:
return handler.getOnuOMCIStats(ctx)
+ case *extension.GetValueRequest_OnuActiveAlarms:
+ resp := handler.getOnuActiveAlarms(ctx)
+ logger.Infow(ctx, "Received response for on demand active alarms request ", log.Fields{"response": resp})
+ return resp, nil
default:
return uniprt.PostUniStatusErrResponse(extension.GetValueResponse_UNSUPPORTED), nil
}
@@ -500,7 +506,8 @@
// To be on the safe side argument names are left here always as defined in iAdapter.go .
// DownloadOnuImage downloads (and optionally activates and commits) the indicated ONU image to the requested ONU(s)
-// if the image is not yet present on the adapter it has to be automatically downloaded
+//
+// if the image is not yet present on the adapter it has to be automatically downloaded
func (oo *OpenONUAC) DownloadOnuImage(ctx context.Context, request *voltha.DeviceImageDownloadRequest) (*voltha.DeviceImageResponse, error) {
if request != nil && len((*request).DeviceId) > 0 && (*request).Image.Version != "" {
if strings.Contains((*request).Image.Url, "https:") {
@@ -601,7 +608,8 @@
}
// GetOnuImageStatus delivers the adapter-related information about the download/activation/commitment
-// status for the requested image
+//
+// status for the requested image
func (oo *OpenONUAC) GetOnuImageStatus(ctx context.Context, in *voltha.DeviceImageRequest) (*voltha.DeviceImageResponse, error) {
if in != nil && len((*in).DeviceId) > 0 && (*in).Version != "" {
loResponse := voltha.DeviceImageResponse{}
@@ -765,7 +773,8 @@
}
// ActivateOnuImage initiates the activation of the image for the requested ONU(s)
-// precondition: image downloaded and not yet activated or image refers to current inactive image
+//
+// precondition: image downloaded and not yet activated or image refers to current inactive image
func (oo *OpenONUAC) ActivateOnuImage(ctx context.Context, in *voltha.DeviceImageRequest) (*voltha.DeviceImageResponse, error) {
if in != nil && len((*in).DeviceId) > 0 && (*in).Version != "" {
loResponse := voltha.DeviceImageResponse{}
@@ -813,7 +822,8 @@
}
// CommitOnuImage enforces the commitment of the image for the requested ONU(s)
-// precondition: image activated and not yet committed
+//
+// precondition: image activated and not yet committed
func (oo *OpenONUAC) CommitOnuImage(ctx context.Context, in *voltha.DeviceImageRequest) (*voltha.DeviceImageResponse, error) {
if in != nil && len((*in).DeviceId) > 0 && (*in).Version != "" {
loResponse := voltha.DeviceImageResponse{}
@@ -1007,7 +1017,7 @@
return false
}
-//stopAllGrpcClients stops all grpc clients in use
+// stopAllGrpcClients stops all grpc clients in use
func (oo *OpenONUAC) stopAllGrpcClients(ctx context.Context) {
// Stop the clients that connect to the parent
oo.lockParentAdapterClients.Lock()
@@ -1196,54 +1206,53 @@
*
*/
-//GetOfpDeviceInfo returns OFP information for the given device. Method not implemented as per [VOL-3202].
+// GetOfpDeviceInfo returns OFP information for the given device. Method not implemented as per [VOL-3202].
// OF port info is now to be delivered within UniPort create cmp changes in onu_uni_port.go::CreateVolthaPort()
-//
func (oo *OpenONUAC) GetOfpDeviceInfo(ctx context.Context, device *voltha.Device) (*ca.SwitchCapability, error) {
return nil, errors.New("unImplemented")
}
-//SimulateAlarm is unimplemented
+// SimulateAlarm is unimplemented
func (oo *OpenONUAC) SimulateAlarm(context.Context, *ca.SimulateAlarmMessage) (*common.OperationResp, error) {
return nil, errors.New("unImplemented")
}
-//SetExtValue is unimplemented
+// SetExtValue is unimplemented
func (oo *OpenONUAC) SetExtValue(context.Context, *ca.SetExtValueMessage) (*empty.Empty, error) {
return nil, errors.New("unImplemented")
}
-//SetSingleValue is unimplemented
+// SetSingleValue is unimplemented
func (oo *OpenONUAC) SetSingleValue(context.Context, *extension.SingleSetValueRequest) (*extension.SingleSetValueResponse, error) {
return nil, errors.New("unImplemented")
}
-//StartOmciTest not implemented
+// StartOmciTest not implemented
func (oo *OpenONUAC) StartOmciTest(ctx context.Context, test *ca.OMCITest) (*omci.TestResponse, error) {
return nil, errors.New("unImplemented")
}
-//SuppressEvent unimplemented
+// SuppressEvent unimplemented
func (oo *OpenONUAC) SuppressEvent(ctx context.Context, filter *voltha.EventFilter) (*empty.Empty, error) {
return nil, errors.New("unImplemented")
}
-//UnSuppressEvent unimplemented
+// UnSuppressEvent unimplemented
func (oo *OpenONUAC) UnSuppressEvent(ctx context.Context, filter *voltha.EventFilter) (*empty.Empty, error) {
return nil, errors.New("unImplemented")
}
-//GetImageDownloadStatus is unimplemented
+// GetImageDownloadStatus is unimplemented
func (oo *OpenONUAC) GetImageDownloadStatus(ctx context.Context, imageInfo *ca.ImageDownloadMessage) (*voltha.ImageDownload, error) {
return nil, errors.New("unImplemented")
}
-//CancelImageDownload is unimplemented
+// CancelImageDownload is unimplemented
func (oo *OpenONUAC) CancelImageDownload(ctx context.Context, imageInfo *ca.ImageDownloadMessage) (*voltha.ImageDownload, error) {
return nil, errors.New("unImplemented")
}
-//RevertImageUpdate is unimplemented
+// RevertImageUpdate is unimplemented
func (oo *OpenONUAC) RevertImageUpdate(ctx context.Context, imageInfo *ca.ImageDownloadMessage) (*voltha.ImageDownload, error) {
return nil, errors.New("unImplemented")
}
@@ -1253,12 +1262,12 @@
return nil, errors.New("unImplemented")
}
-//SelfTestDevice unimplented
+// SelfTestDevice unimplented
func (oo *OpenONUAC) SelfTestDevice(ctx context.Context, device *voltha.Device) (*empty.Empty, error) {
return nil, errors.New("unImplemented")
}
-//SendPacketOut sends packet out to the device
+// SendPacketOut sends packet out to the device
func (oo *OpenONUAC) SendPacketOut(ctx context.Context, packet *ca.PacketOut) (*empty.Empty, error) {
return nil, errors.New("unImplemented")
}
diff --git a/vendor/github.com/opencord/voltha-protos/v5/go/extension/extensions.pb.go b/vendor/github.com/opencord/voltha-protos/v5/go/extension/extensions.pb.go
index a6c7a43..c4e91d3 100644
--- a/vendor/github.com/opencord/voltha-protos/v5/go/extension/extensions.pb.go
+++ b/vendor/github.com/opencord/voltha-protos/v5/go/extension/extensions.pb.go
@@ -256,7 +256,7 @@
}
func (GetValueResponse_Status) EnumDescriptor() ([]byte, []int) {
- return fileDescriptor_7ecf6e9799a9202d, []int{29, 0}
+ return fileDescriptor_7ecf6e9799a9202d, []int{32, 0}
}
type GetValueResponse_ErrorReason int32
@@ -299,7 +299,7 @@
}
func (GetValueResponse_ErrorReason) EnumDescriptor() ([]byte, []int) {
- return fileDescriptor_7ecf6e9799a9202d, []int{29, 1}
+ return fileDescriptor_7ecf6e9799a9202d, []int{32, 1}
}
type SetValueResponse_Status int32
@@ -327,7 +327,7 @@
}
func (SetValueResponse_Status) EnumDescriptor() ([]byte, []int) {
- return fileDescriptor_7ecf6e9799a9202d, []int{31, 0}
+ return fileDescriptor_7ecf6e9799a9202d, []int{34, 0}
}
type SetValueResponse_ErrorReason int32
@@ -352,7 +352,7 @@
}
func (SetValueResponse_ErrorReason) EnumDescriptor() ([]byte, []int) {
- return fileDescriptor_7ecf6e9799a9202d, []int{31, 1}
+ return fileDescriptor_7ecf6e9799a9202d, []int{34, 1}
}
type ValueSet struct {
@@ -2889,6 +2889,147 @@
return 0
}
+type GetOnuOmciActiveAlarmsRequest struct {
+ Empty *empty.Empty `protobuf:"bytes,1,opt,name=empty,proto3" json:"empty,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *GetOnuOmciActiveAlarmsRequest) Reset() { *m = GetOnuOmciActiveAlarmsRequest{} }
+func (m *GetOnuOmciActiveAlarmsRequest) String() string { return proto.CompactTextString(m) }
+func (*GetOnuOmciActiveAlarmsRequest) ProtoMessage() {}
+func (*GetOnuOmciActiveAlarmsRequest) Descriptor() ([]byte, []int) {
+ return fileDescriptor_7ecf6e9799a9202d, []int{28}
+}
+
+func (m *GetOnuOmciActiveAlarmsRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_GetOnuOmciActiveAlarmsRequest.Unmarshal(m, b)
+}
+func (m *GetOnuOmciActiveAlarmsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_GetOnuOmciActiveAlarmsRequest.Marshal(b, m, deterministic)
+}
+func (m *GetOnuOmciActiveAlarmsRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_GetOnuOmciActiveAlarmsRequest.Merge(m, src)
+}
+func (m *GetOnuOmciActiveAlarmsRequest) XXX_Size() int {
+ return xxx_messageInfo_GetOnuOmciActiveAlarmsRequest.Size(m)
+}
+func (m *GetOnuOmciActiveAlarmsRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_GetOnuOmciActiveAlarmsRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_GetOnuOmciActiveAlarmsRequest proto.InternalMessageInfo
+
+func (m *GetOnuOmciActiveAlarmsRequest) GetEmpty() *empty.Empty {
+ if m != nil {
+ return m.Empty
+ }
+ return nil
+}
+
+type AlarmData struct {
+ ClassId uint32 `protobuf:"varint,1,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"`
+ InstanceId uint32 `protobuf:"varint,2,opt,name=instance_id,json=instanceId,proto3" json:"instance_id,omitempty"`
+ Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
+ Description string `protobuf:"bytes,4,opt,name=description,proto3" json:"description,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *AlarmData) Reset() { *m = AlarmData{} }
+func (m *AlarmData) String() string { return proto.CompactTextString(m) }
+func (*AlarmData) ProtoMessage() {}
+func (*AlarmData) Descriptor() ([]byte, []int) {
+ return fileDescriptor_7ecf6e9799a9202d, []int{29}
+}
+
+func (m *AlarmData) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_AlarmData.Unmarshal(m, b)
+}
+func (m *AlarmData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_AlarmData.Marshal(b, m, deterministic)
+}
+func (m *AlarmData) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_AlarmData.Merge(m, src)
+}
+func (m *AlarmData) XXX_Size() int {
+ return xxx_messageInfo_AlarmData.Size(m)
+}
+func (m *AlarmData) XXX_DiscardUnknown() {
+ xxx_messageInfo_AlarmData.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_AlarmData proto.InternalMessageInfo
+
+func (m *AlarmData) GetClassId() uint32 {
+ if m != nil {
+ return m.ClassId
+ }
+ return 0
+}
+
+func (m *AlarmData) GetInstanceId() uint32 {
+ if m != nil {
+ return m.InstanceId
+ }
+ return 0
+}
+
+func (m *AlarmData) GetName() string {
+ if m != nil {
+ return m.Name
+ }
+ return ""
+}
+
+func (m *AlarmData) GetDescription() string {
+ if m != nil {
+ return m.Description
+ }
+ return ""
+}
+
+type GetOnuOmciActiveAlarmsResponse struct {
+ ActiveAlarms []*AlarmData `protobuf:"bytes,1,rep,name=active_alarms,json=activeAlarms,proto3" json:"active_alarms,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *GetOnuOmciActiveAlarmsResponse) Reset() { *m = GetOnuOmciActiveAlarmsResponse{} }
+func (m *GetOnuOmciActiveAlarmsResponse) String() string { return proto.CompactTextString(m) }
+func (*GetOnuOmciActiveAlarmsResponse) ProtoMessage() {}
+func (*GetOnuOmciActiveAlarmsResponse) Descriptor() ([]byte, []int) {
+ return fileDescriptor_7ecf6e9799a9202d, []int{30}
+}
+
+func (m *GetOnuOmciActiveAlarmsResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_GetOnuOmciActiveAlarmsResponse.Unmarshal(m, b)
+}
+func (m *GetOnuOmciActiveAlarmsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_GetOnuOmciActiveAlarmsResponse.Marshal(b, m, deterministic)
+}
+func (m *GetOnuOmciActiveAlarmsResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_GetOnuOmciActiveAlarmsResponse.Merge(m, src)
+}
+func (m *GetOnuOmciActiveAlarmsResponse) XXX_Size() int {
+ return xxx_messageInfo_GetOnuOmciActiveAlarmsResponse.Size(m)
+}
+func (m *GetOnuOmciActiveAlarmsResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_GetOnuOmciActiveAlarmsResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_GetOnuOmciActiveAlarmsResponse proto.InternalMessageInfo
+
+func (m *GetOnuOmciActiveAlarmsResponse) GetActiveAlarms() []*AlarmData {
+ if m != nil {
+ return m.ActiveAlarms
+ }
+ return nil
+}
+
type GetValueRequest struct {
// Types that are valid to be assigned to Request:
// *GetValueRequest_Distance
@@ -2902,6 +3043,7 @@
// *GetValueRequest_RxPower
// *GetValueRequest_OnuOmciStats
// *GetValueRequest_OltRxPower
+ // *GetValueRequest_OnuActiveAlarms
Request isGetValueRequest_Request `protobuf_oneof:"request"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
@@ -2912,7 +3054,7 @@
func (m *GetValueRequest) String() string { return proto.CompactTextString(m) }
func (*GetValueRequest) ProtoMessage() {}
func (*GetValueRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_7ecf6e9799a9202d, []int{28}
+ return fileDescriptor_7ecf6e9799a9202d, []int{31}
}
func (m *GetValueRequest) XXX_Unmarshal(b []byte) error {
@@ -2981,6 +3123,10 @@
OltRxPower *GetOltRxPowerRequest `protobuf:"bytes,11,opt,name=oltRxPower,proto3,oneof"`
}
+type GetValueRequest_OnuActiveAlarms struct {
+ OnuActiveAlarms *GetOnuOmciActiveAlarmsRequest `protobuf:"bytes,12,opt,name=onuActiveAlarms,proto3,oneof"`
+}
+
func (*GetValueRequest_Distance) isGetValueRequest_Request() {}
func (*GetValueRequest_UniInfo) isGetValueRequest_Request() {}
@@ -3003,6 +3149,8 @@
func (*GetValueRequest_OltRxPower) isGetValueRequest_Request() {}
+func (*GetValueRequest_OnuActiveAlarms) isGetValueRequest_Request() {}
+
func (m *GetValueRequest) GetRequest() isGetValueRequest_Request {
if m != nil {
return m.Request
@@ -3087,6 +3235,13 @@
return nil
}
+func (m *GetValueRequest) GetOnuActiveAlarms() *GetOnuOmciActiveAlarmsRequest {
+ if x, ok := m.GetRequest().(*GetValueRequest_OnuActiveAlarms); ok {
+ return x.OnuActiveAlarms
+ }
+ return nil
+}
+
// XXX_OneofWrappers is for the internal use of the proto package.
func (*GetValueRequest) XXX_OneofWrappers() []interface{} {
return []interface{}{
@@ -3101,6 +3256,7 @@
(*GetValueRequest_RxPower)(nil),
(*GetValueRequest_OnuOmciStats)(nil),
(*GetValueRequest_OltRxPower)(nil),
+ (*GetValueRequest_OnuActiveAlarms)(nil),
}
}
@@ -3119,6 +3275,7 @@
// *GetValueResponse_RxPower
// *GetValueResponse_OnuOmciStats
// *GetValueResponse_OltRxPower
+ // *GetValueResponse_OnuActiveAlarms
Response isGetValueResponse_Response `protobuf_oneof:"response"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
@@ -3129,7 +3286,7 @@
func (m *GetValueResponse) String() string { return proto.CompactTextString(m) }
func (*GetValueResponse) ProtoMessage() {}
func (*GetValueResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_7ecf6e9799a9202d, []int{29}
+ return fileDescriptor_7ecf6e9799a9202d, []int{32}
}
func (m *GetValueResponse) XXX_Unmarshal(b []byte) error {
@@ -3212,6 +3369,10 @@
OltRxPower *GetOltRxPowerResponse `protobuf:"bytes,13,opt,name=oltRxPower,proto3,oneof"`
}
+type GetValueResponse_OnuActiveAlarms struct {
+ OnuActiveAlarms *GetOnuOmciActiveAlarmsResponse `protobuf:"bytes,14,opt,name=onuActiveAlarms,proto3,oneof"`
+}
+
func (*GetValueResponse_Distance) isGetValueResponse_Response() {}
func (*GetValueResponse_UniInfo) isGetValueResponse_Response() {}
@@ -3234,6 +3395,8 @@
func (*GetValueResponse_OltRxPower) isGetValueResponse_Response() {}
+func (*GetValueResponse_OnuActiveAlarms) isGetValueResponse_Response() {}
+
func (m *GetValueResponse) GetResponse() isGetValueResponse_Response {
if m != nil {
return m.Response
@@ -3318,6 +3481,13 @@
return nil
}
+func (m *GetValueResponse) GetOnuActiveAlarms() *GetOnuOmciActiveAlarmsResponse {
+ if x, ok := m.GetResponse().(*GetValueResponse_OnuActiveAlarms); ok {
+ return x.OnuActiveAlarms
+ }
+ return nil
+}
+
// XXX_OneofWrappers is for the internal use of the proto package.
func (*GetValueResponse) XXX_OneofWrappers() []interface{} {
return []interface{}{
@@ -3332,6 +3502,7 @@
(*GetValueResponse_RxPower)(nil),
(*GetValueResponse_OnuOmciStats)(nil),
(*GetValueResponse_OltRxPower)(nil),
+ (*GetValueResponse_OnuActiveAlarms)(nil),
}
}
@@ -3348,7 +3519,7 @@
func (m *SetValueRequest) String() string { return proto.CompactTextString(m) }
func (*SetValueRequest) ProtoMessage() {}
func (*SetValueRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_7ecf6e9799a9202d, []int{30}
+ return fileDescriptor_7ecf6e9799a9202d, []int{33}
}
func (m *SetValueRequest) XXX_Unmarshal(b []byte) error {
@@ -3412,7 +3583,7 @@
func (m *SetValueResponse) String() string { return proto.CompactTextString(m) }
func (*SetValueResponse) ProtoMessage() {}
func (*SetValueResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_7ecf6e9799a9202d, []int{31}
+ return fileDescriptor_7ecf6e9799a9202d, []int{34}
}
func (m *SetValueResponse) XXX_Unmarshal(b []byte) error {
@@ -3459,7 +3630,7 @@
func (m *SingleGetValueRequest) String() string { return proto.CompactTextString(m) }
func (*SingleGetValueRequest) ProtoMessage() {}
func (*SingleGetValueRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_7ecf6e9799a9202d, []int{32}
+ return fileDescriptor_7ecf6e9799a9202d, []int{35}
}
func (m *SingleGetValueRequest) XXX_Unmarshal(b []byte) error {
@@ -3505,7 +3676,7 @@
func (m *SingleGetValueResponse) String() string { return proto.CompactTextString(m) }
func (*SingleGetValueResponse) ProtoMessage() {}
func (*SingleGetValueResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_7ecf6e9799a9202d, []int{33}
+ return fileDescriptor_7ecf6e9799a9202d, []int{36}
}
func (m *SingleGetValueResponse) XXX_Unmarshal(b []byte) error {
@@ -3545,7 +3716,7 @@
func (m *SingleSetValueRequest) String() string { return proto.CompactTextString(m) }
func (*SingleSetValueRequest) ProtoMessage() {}
func (*SingleSetValueRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_7ecf6e9799a9202d, []int{34}
+ return fileDescriptor_7ecf6e9799a9202d, []int{37}
}
func (m *SingleSetValueRequest) XXX_Unmarshal(b []byte) error {
@@ -3591,7 +3762,7 @@
func (m *SingleSetValueResponse) String() string { return proto.CompactTextString(m) }
func (*SingleSetValueResponse) ProtoMessage() {}
func (*SingleSetValueResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_7ecf6e9799a9202d, []int{35}
+ return fileDescriptor_7ecf6e9799a9202d, []int{38}
}
func (m *SingleSetValueResponse) XXX_Unmarshal(b []byte) error {
@@ -3659,6 +3830,9 @@
proto.RegisterType((*GetRxPowerResponse)(nil), "extension.GetRxPowerResponse")
proto.RegisterType((*GetOnuOmciTxRxStatsRequest)(nil), "extension.GetOnuOmciTxRxStatsRequest")
proto.RegisterType((*GetOnuOmciTxRxStatsResponse)(nil), "extension.GetOnuOmciTxRxStatsResponse")
+ proto.RegisterType((*GetOnuOmciActiveAlarmsRequest)(nil), "extension.GetOnuOmciActiveAlarmsRequest")
+ proto.RegisterType((*AlarmData)(nil), "extension.AlarmData")
+ proto.RegisterType((*GetOnuOmciActiveAlarmsResponse)(nil), "extension.GetOnuOmciActiveAlarmsResponse")
proto.RegisterType((*GetValueRequest)(nil), "extension.GetValueRequest")
proto.RegisterType((*GetValueResponse)(nil), "extension.GetValueResponse")
proto.RegisterType((*SetValueRequest)(nil), "extension.SetValueRequest")
@@ -3672,230 +3846,239 @@
func init() { proto.RegisterFile("voltha_protos/extensions.proto", fileDescriptor_7ecf6e9799a9202d) }
var fileDescriptor_7ecf6e9799a9202d = []byte{
- // 3562 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x5a, 0x4f, 0x73, 0xdb, 0xc8,
- 0x72, 0x17, 0x29, 0x89, 0x22, 0x9b, 0xa2, 0x44, 0x8d, 0xfe, 0xd1, 0x92, 0xff, 0x2d, 0x5e, 0xad,
- 0xed, 0xf7, 0xca, 0x8f, 0x36, 0xb9, 0x92, 0x57, 0xd9, 0xf7, 0x52, 0xf5, 0x48, 0x91, 0x12, 0x19,
- 0xcb, 0xa4, 0x76, 0x48, 0x7a, 0x77, 0x53, 0x95, 0x42, 0x41, 0xc4, 0x48, 0x46, 0x99, 0x04, 0x18,
- 0x60, 0xe8, 0xa5, 0x73, 0xce, 0x2d, 0xc9, 0xe9, 0x5d, 0xf2, 0x25, 0x52, 0x39, 0xe4, 0x90, 0x4b,
- 0x4e, 0x39, 0xe7, 0x4b, 0xa4, 0x2a, 0x5f, 0x20, 0xa9, 0x9c, 0x53, 0xa9, 0xf9, 0x07, 0x0c, 0x40,
- 0x4a, 0xb6, 0x37, 0xb9, 0xd8, 0x9a, 0xee, 0x5f, 0xff, 0xa6, 0x31, 0xd3, 0xdd, 0xd3, 0x18, 0x10,
- 0x1e, 0x7e, 0xf0, 0x46, 0xf4, 0x9d, 0x65, 0x4e, 0x7c, 0x8f, 0x7a, 0xc1, 0x0b, 0x32, 0xa3, 0xc4,
- 0x0d, 0x1c, 0xcf, 0x0d, 0xca, 0x5c, 0x82, 0x72, 0xa1, 0xe4, 0x60, 0x1e, 0x6a, 0x0e, 0x3d, 0xf7,
- 0xda, 0xb9, 0x11, 0xd0, 0x83, 0xc3, 0x1b, 0xcf, 0xbb, 0x19, 0x91, 0x17, 0x7c, 0x74, 0x35, 0xbd,
- 0x7e, 0x41, 0xc6, 0x13, 0xfa, 0x51, 0x28, 0x8d, 0xbf, 0x80, 0xec, 0x5b, 0x6b, 0x34, 0x25, 0x3d,
- 0x42, 0xd1, 0x06, 0xa4, 0x1d, 0xbb, 0x94, 0x7a, 0x9c, 0x7a, 0x96, 0xc3, 0x69, 0xc7, 0x46, 0x27,
- 0xb0, 0x6e, 0x8d, 0x2c, 0x7f, 0x2c, 0xe9, 0x4a, 0xe9, 0xc7, 0xa9, 0x67, 0xf9, 0xea, 0x76, 0x59,
- 0xb2, 0xd7, 0x98, 0xee, 0x94, 0xff, 0xdd, 0x5a, 0xc2, 0x79, 0x2b, 0x1a, 0xd6, 0xd7, 0x60, 0xf5,
- 0x03, 0x63, 0x35, 0x9e, 0x43, 0x8e, 0xd3, 0xf7, 0x3f, 0x4e, 0x88, 0xf1, 0x08, 0x56, 0xd8, 0xff,
- 0x28, 0x07, 0xab, 0xcd, 0x37, 0x97, 0xfd, 0x9f, 0x8a, 0x4b, 0x68, 0x1d, 0xb2, 0x8d, 0x76, 0xaf,
- 0x5f, 0xeb, 0x9c, 0x36, 0x8b, 0x29, 0xe3, 0x7b, 0xd8, 0x10, 0xce, 0x4c, 0xc8, 0xd0, 0xb9, 0x76,
- 0x88, 0x3f, 0xe7, 0xd2, 0x0b, 0x49, 0xcc, 0x7d, 0xd9, 0xa8, 0xde, 0x2b, 0x87, 0xcb, 0x50, 0x0e,
- 0xe7, 0x29, 0xb3, 0x7f, 0xb0, 0x74, 0x80, 0xc2, 0x3a, 0x26, 0x74, 0xea, 0xbb, 0x5c, 0x1d, 0xa0,
- 0x22, 0x2c, 0xf7, 0x08, 0xe5, 0x8c, 0x05, 0xcc, 0xfe, 0x44, 0x8f, 0x21, 0x3f, 0x70, 0x83, 0xe9,
- 0x64, 0xe2, 0xf9, 0x94, 0xd8, 0x9c, 0xb8, 0x80, 0x75, 0x11, 0xda, 0x81, 0xd5, 0xa6, 0xef, 0x7b,
- 0x7e, 0x69, 0x99, 0xeb, 0xc4, 0x00, 0x1d, 0x40, 0xb6, 0xe1, 0x04, 0xd4, 0x72, 0x87, 0xa4, 0xb4,
- 0xc2, 0x15, 0xe1, 0xd8, 0x78, 0x05, 0xe8, 0x9c, 0x50, 0x35, 0xc4, 0xe4, 0x2f, 0xa7, 0x24, 0xe0,
- 0x33, 0x79, 0xee, 0xb4, 0x41, 0x3e, 0x38, 0x43, 0xd2, 0x56, 0x4f, 0xa5, 0x8b, 0x8c, 0x0a, 0x6c,
- 0xc7, 0xec, 0x82, 0x89, 0xe7, 0x06, 0x84, 0x4d, 0x65, 0xab, 0xa9, 0x84, 0xe7, 0xe1, 0xd8, 0xa8,
- 0xc2, 0xce, 0x39, 0xa1, 0x5d, 0x77, 0x3a, 0x70, 0x9d, 0xb6, 0x7b, 0xed, 0xa9, 0xc9, 0x0e, 0x20,
- 0x3b, 0x65, 0x12, 0x9b, 0xcc, 0x94, 0x8d, 0x1a, 0x1b, 0xff, 0xbe, 0x02, 0xbb, 0x09, 0x23, 0x39,
- 0xd3, 0x25, 0x64, 0x2d, 0x7b, 0xdc, 0xa3, 0x16, 0x15, 0x33, 0x6d, 0x54, 0x8f, 0xb4, 0x25, 0x5e,
- 0x68, 0x53, 0xae, 0xd9, 0x63, 0xc7, 0x75, 0x02, 0xea, 0x5b, 0xd4, 0xf9, 0x40, 0xb8, 0x2d, 0x0e,
- 0x59, 0x50, 0x17, 0x72, 0xde, 0x84, 0xf8, 0x82, 0x52, 0xec, 0x5a, 0xe5, 0x93, 0x94, 0xdd, 0x09,
- 0x61, 0x6c, 0x9e, 0x6b, 0x8d, 0x04, 0x5f, 0xc4, 0xc1, 0x08, 0x45, 0x00, 0xb6, 0x5d, 0x9b, 0xef,
- 0xc8, 0xe7, 0x10, 0x8a, 0xb8, 0x9c, 0x0a, 0xd2, 0xb6, 0x6b, 0xe3, 0x88, 0xc3, 0xf8, 0xd7, 0x14,
- 0x14, 0x93, 0x7a, 0x04, 0x90, 0x19, 0x74, 0x5e, 0x77, 0x7f, 0xe8, 0x14, 0x97, 0x10, 0x82, 0x8d,
- 0x7e, 0xb3, 0x63, 0xd6, 0x6b, 0xbd, 0xa6, 0xd9, 0x37, 0xcf, 0x1a, 0x3f, 0x16, 0x53, 0x68, 0x0f,
- 0x50, 0x6b, 0xd0, 0x69, 0xe0, 0x66, 0x43, 0x97, 0xa7, 0x51, 0x09, 0x76, 0xce, 0xdb, 0xe7, 0xb5,
- 0x7a, 0xbb, 0x6f, 0x36, 0xfb, 0xad, 0x26, 0xee, 0x34, 0x85, 0x66, 0x99, 0x59, 0x30, 0x96, 0xf3,
- 0xb8, 0x7c, 0x25, 0xc1, 0xde, 0x6a, 0xfc, 0x58, 0x5c, 0x5d, 0xc0, 0xce, 0xe4, 0x99, 0x85, 0xec,
- 0x4c, 0xb3, 0x66, 0x9c, 0xc3, 0xf6, 0x82, 0x7d, 0x60, 0x44, 0xb5, 0xc6, 0x9b, 0x5e, 0xbf, 0xd6,
- 0x6f, 0x9a, 0x83, 0x4e, 0xa3, 0x79, 0xd6, 0xee, 0x34, 0x1b, 0xc5, 0x25, 0xf6, 0x78, 0x17, 0xdd,
- 0xd3, 0xd7, 0xcd, 0x46, 0x31, 0xc5, 0x72, 0x70, 0xd0, 0x91, 0xa3, 0xb4, 0x71, 0x06, 0xc5, 0xe4,
- 0xea, 0xa3, 0x7d, 0xd8, 0xee, 0x5e, 0x36, 0xf1, 0x3c, 0x4d, 0x1e, 0xd6, 0x9a, 0x9d, 0x5a, 0xfd,
- 0x42, 0xf1, 0x34, 0xda, 0x3d, 0x31, 0x4a, 0x1b, 0xff, 0x9c, 0xe2, 0x39, 0xd0, 0x1d, 0xd1, 0x4b,
- 0xcf, 0xa7, 0xa7, 0xde, 0xd4, 0xa5, 0xc4, 0x0f, 0xd0, 0x1e, 0x64, 0x58, 0x56, 0x75, 0x3c, 0x19,
- 0x94, 0x72, 0x84, 0xea, 0x90, 0x65, 0x7f, 0xb1, 0xd4, 0x95, 0x51, 0xf2, 0x24, 0xb1, 0xa9, 0x71,
- 0xa2, 0xf2, 0xa5, 0x44, 0xe3, 0xd0, 0xce, 0x68, 0x42, 0x56, 0x49, 0x51, 0x11, 0xd6, 0xd9, 0xdf,
- 0xe6, 0xa0, 0xf3, 0xba, 0x23, 0x76, 0x71, 0x17, 0xb6, 0xb8, 0x24, 0x5c, 0xb8, 0x4e, 0xa7, 0x5d,
- 0x4c, 0x85, 0xc0, 0xcb, 0x6e, 0xc7, 0xec, 0x5e, 0xf4, 0x8b, 0x69, 0xe3, 0xdf, 0x96, 0xe1, 0x60,
- 0x7e, 0xc2, 0x30, 0x45, 0x4a, 0xb0, 0x46, 0x67, 0xf5, 0x8f, 0x94, 0x04, 0xfc, 0x11, 0x56, 0xb0,
- 0x1a, 0x32, 0x8d, 0x2f, 0x35, 0x69, 0xa1, 0x91, 0x43, 0x74, 0x1f, 0x72, 0x74, 0x76, 0x69, 0x0d,
- 0xdf, 0x13, 0x1a, 0xf0, 0x98, 0x5d, 0xc1, 0x91, 0x80, 0x69, 0xfd, 0x50, 0xbb, 0x22, 0xb4, 0xa1,
- 0x00, 0x3d, 0x81, 0x0d, 0x3a, 0xe3, 0x25, 0x47, 0x41, 0x56, 0x39, 0x24, 0x21, 0x65, 0x38, 0x3f,
- 0x8e, 0xcb, 0x08, 0x9c, 0x3f, 0x87, 0xa3, 0xb3, 0xfa, 0xd0, 0x0a, 0xa8, 0xc2, 0xad, 0x29, 0x3e,
- 0x5d, 0x2a, 0xf8, 0x62, 0xb8, 0xac, 0xe2, 0x4b, 0xe2, 0xe8, 0x6c, 0xa0, 0xe3, 0x72, 0x8a, 0x6f,
- 0x30, 0xc7, 0x17, 0xc3, 0x81, 0xe2, 0x1b, 0xcc, 0xf1, 0xbd, 0xd1, 0x71, 0x79, 0xc5, 0xf7, 0x66,
- 0x8e, 0x2f, 0x86, 0x5b, 0x57, 0x7c, 0xba, 0xd4, 0x68, 0xa8, 0x02, 0x79, 0xe9, 0xb9, 0xdd, 0x09,
- 0x75, 0x86, 0xd6, 0x88, 0x95, 0x06, 0xf4, 0x1c, 0x56, 0xf9, 0x41, 0xc8, 0x77, 0x31, 0x5f, 0xdd,
- 0x2b, 0x8b, 0x63, 0xb2, 0xac, 0x8e, 0xc9, 0x72, 0x93, 0x69, 0xb1, 0x00, 0x19, 0x7f, 0x9d, 0x86,
- 0xfb, 0x8b, 0x68, 0xc2, 0xb0, 0xf8, 0x0d, 0x14, 0x27, 0xde, 0xcf, 0xc4, 0x3f, 0x23, 0xc4, 0x7e,
- 0xeb, 0x8d, 0xa8, 0x75, 0x23, 0x2a, 0x68, 0x1a, 0xcf, 0xc9, 0x51, 0x15, 0x76, 0x7c, 0x32, 0x24,
- 0xce, 0x07, 0x62, 0x4b, 0xaa, 0x4b, 0x06, 0xe1, 0x51, 0x93, 0xc6, 0x0b, 0x75, 0xe8, 0x15, 0xec,
- 0x8d, 0x89, 0xa5, 0xa6, 0xbe, 0xb0, 0xa6, 0xee, 0xf0, 0x9d, 0xb0, 0x5a, 0xe6, 0x56, 0xb7, 0x68,
- 0x99, 0x5f, 0x23, 0x2b, 0x20, 0x7e, 0xdd, 0xb1, 0x82, 0xd3, 0xa9, 0xef, 0x13, 0x97, 0xf2, 0x18,
- 0x4b, 0xe3, 0x39, 0x39, 0x3b, 0xa0, 0x28, 0x19, 0xf3, 0xec, 0x9f, 0xfa, 0x84, 0xc7, 0x59, 0x1a,
- 0xeb, 0x22, 0xe3, 0x1f, 0x53, 0xf0, 0x48, 0x2c, 0x43, 0x93, 0xbe, 0x23, 0xbe, 0x4b, 0x68, 0xdd,
- 0x77, 0xec, 0x1b, 0xc2, 0x32, 0xa5, 0xe5, 0x04, 0xd4, 0xf3, 0x3f, 0x22, 0x0c, 0x39, 0xdb, 0xf1,
- 0xc9, 0x90, 0x55, 0x90, 0x5b, 0x0f, 0x91, 0x5b, 0xcd, 0xcb, 0x0d, 0x65, 0x8b, 0x23, 0x1a, 0xe3,
- 0x04, 0x72, 0xa1, 0x1c, 0x15, 0x20, 0xa7, 0x17, 0x21, 0x56, 0xbf, 0x2e, 0x7b, 0x7d, 0xdc, 0xac,
- 0xbd, 0x29, 0xa6, 0xd0, 0x06, 0x40, 0xa3, 0xfb, 0x43, 0x47, 0x8e, 0xd3, 0xc6, 0x1f, 0x57, 0xe1,
- 0xe9, 0x27, 0xa6, 0x0c, 0xf7, 0xf0, 0x21, 0x80, 0xed, 0x7b, 0x93, 0xe6, 0x07, 0xe2, 0xd2, 0x40,
- 0x16, 0x28, 0x4d, 0xc2, 0x8a, 0x97, 0x37, 0xa4, 0x2c, 0xd4, 0x44, 0x97, 0x20, 0x47, 0x2c, 0xf1,
- 0x27, 0x5a, 0x72, 0x17, 0xb0, 0x1a, 0xb2, 0xd5, 0xbf, 0xf2, 0x3d, 0xcb, 0xd6, 0xc3, 0x54, 0x34,
- 0x0b, 0x73, 0x72, 0x86, 0x1d, 0x4f, 0x47, 0x6c, 0x03, 0x23, 0xec, 0xaa, 0xc0, 0x26, 0xe5, 0xe8,
- 0x39, 0x6c, 0x0d, 0xfd, 0x21, 0xcf, 0x6b, 0x62, 0xeb, 0xf9, 0x5e, 0xc0, 0xf3, 0x0a, 0xc6, 0x3c,
- 0x75, 0x6d, 0xe2, 0x07, 0xce, 0x5f, 0x11, 0x3d, 0xe9, 0x0b, 0x78, 0x4e, 0x8e, 0x9e, 0xc1, 0xa6,
- 0xf7, 0x21, 0x0e, 0xcd, 0x72, 0x68, 0x52, 0xcc, 0x90, 0xf2, 0x31, 0x5f, 0x1d, 0xc9, 0x65, 0xc9,
- 0x09, 0x64, 0x42, 0xcc, 0xe2, 0x5d, 0x89, 0x8e, 0xfb, 0x5e, 0xa5, 0xfa, 0xad, 0x84, 0x03, 0x87,
- 0x2f, 0xd4, 0xa1, 0x23, 0xd8, 0x95, 0xf2, 0x4a, 0xf5, 0xa4, 0xef, 0x55, 0x8f, 0x8f, 0xbb, 0xc2,
- 0x28, 0xcf, 0x8d, 0x16, 0x2b, 0x35, 0xab, 0xea, 0xf1, 0xab, 0xbe, 0x77, 0x5c, 0xa9, 0xc8, 0xa9,
- 0xd6, 0x63, 0x56, 0x71, 0x25, 0xcb, 0x2d, 0xa9, 0x38, 0xae, 0x54, 0xfb, 0x5e, 0xe5, 0x65, 0xf5,
- 0x1b, 0x69, 0x56, 0xe0, 0x66, 0xb7, 0x68, 0xd1, 0x09, 0xec, 0x2b, 0x37, 0x5e, 0x56, 0x8f, 0xfa,
- 0x5e, 0xe5, 0xb8, 0x72, 0x22, 0x0d, 0x37, 0xb8, 0xe1, 0x6d, 0x6a, 0xe3, 0x0f, 0x50, 0x14, 0x41,
- 0x79, 0x46, 0x86, 0x2a, 0x6f, 0xbe, 0xac, 0x20, 0xfd, 0x57, 0x0a, 0x4a, 0x49, 0x8a, 0x30, 0x90,
- 0x9f, 0xc0, 0xc6, 0xd0, 0xf3, 0x59, 0xbe, 0x10, 0x3b, 0x3a, 0xaa, 0x0a, 0x38, 0x21, 0x45, 0x65,
- 0x40, 0xa1, 0xe4, 0xd4, 0xb3, 0xc9, 0x0f, 0x9e, 0x6f, 0xab, 0xe0, 0x5e, 0xa0, 0x61, 0x09, 0x72,
- 0x4d, 0x86, 0x3d, 0x32, 0xf4, 0x5c, 0x5b, 0xc5, 0xba, 0x26, 0xe1, 0xb5, 0xdb, 0xa3, 0xd6, 0x28,
- 0xe2, 0x12, 0xc1, 0x9e, 0x90, 0xb2, 0x05, 0x9f, 0xba, 0x92, 0xdf, 0xba, 0x1a, 0x91, 0x08, 0x2f,
- 0x02, 0xfe, 0x16, 0xad, 0x71, 0xae, 0xfa, 0xd6, 0xe8, 0x54, 0x16, 0xdd, 0xee, 0x3e, 0xac, 0x39,
- 0x2e, 0xbd, 0x36, 0xe5, 0xcb, 0xc2, 0x1a, 0xce, 0xb0, 0x61, 0xdb, 0x46, 0xbb, 0x90, 0xf1, 0xdc,
- 0x29, 0x93, 0xa7, 0xb9, 0x7c, 0xd5, 0x73, 0xa7, 0x6d, 0xdb, 0xf8, 0xbb, 0x14, 0x7c, 0xcd, 0x98,
- 0xc6, 0x43, 0x47, 0x95, 0x85, 0x33, 0xdf, 0x1a, 0x93, 0x26, 0x2b, 0x53, 0x36, 0xb1, 0x2f, 0xc7,
- 0x9f, 0xdd, 0xb4, 0xa3, 0xfb, 0x5a, 0xa7, 0xcd, 0x97, 0xae, 0xb5, 0x14, 0xf5, 0xda, 0xec, 0xe5,
- 0xc1, 0x27, 0x01, 0xa1, 0x7c, 0xb5, 0xb2, 0x58, 0x0c, 0xea, 0x1b, 0xb0, 0xee, 0x04, 0xe6, 0xd4,
- 0x75, 0x4c, 0x87, 0x77, 0xe4, 0xa7, 0xb0, 0x75, 0x4e, 0x28, 0x9e, 0xf1, 0x9a, 0xfd, 0x4b, 0x1f,
- 0xea, 0x42, 0x9c, 0x74, 0xa3, 0x24, 0xcf, 0x03, 0x00, 0xd6, 0x23, 0x99, 0x23, 0xeb, 0x8a, 0x8c,
- 0xe4, 0x13, 0xe4, 0x98, 0xe4, 0x82, 0x09, 0x14, 0x5b, 0xe0, 0x72, 0xb6, 0x1c, 0x67, 0xeb, 0xb9,
- 0xc6, 0x7f, 0xac, 0xc3, 0x5e, 0x72, 0xb1, 0x65, 0x78, 0xdd, 0x4b, 0x38, 0xd6, 0x5a, 0x0a, 0x5d,
- 0xdb, 0x8f, 0xbb, 0xd6, 0x4a, 0x49, 0xe7, 0xd0, 0x53, 0xd8, 0x98, 0x78, 0x81, 0xc3, 0x5a, 0x53,
- 0xd3, 0xf6, 0x9d, 0x6b, 0xb1, 0x20, 0x99, 0x56, 0x1a, 0x17, 0x94, 0xbc, 0xc1, 0xc4, 0x0c, 0xe8,
- 0x92, 0x1b, 0x4b, 0x03, 0xae, 0x70, 0xe0, 0x32, 0x2e, 0x28, 0xb9, 0x00, 0x7e, 0x07, 0x25, 0x9b,
- 0x8c, 0x9c, 0xb1, 0x43, 0x89, 0x6f, 0x8e, 0x9d, 0x20, 0x30, 0x6d, 0x42, 0xe5, 0xb1, 0xb3, 0xca,
- 0x4d, 0x56, 0xf0, 0x5e, 0x88, 0x78, 0xe3, 0x04, 0x41, 0x43, 0xe9, 0xd1, 0x23, 0x80, 0x2b, 0x67,
- 0x62, 0x12, 0x56, 0x27, 0x45, 0xe1, 0xcc, 0xb4, 0x56, 0x71, 0xee, 0xca, 0x99, 0xf0, 0xd2, 0x19,
- 0xa0, 0x07, 0xc0, 0x06, 0x6c, 0x87, 0x64, 0xad, 0xcc, 0xb4, 0x32, 0x38, 0x7b, 0xe5, 0x4c, 0x06,
- 0x4c, 0xc2, 0xea, 0xcc, 0x35, 0x19, 0x9a, 0x61, 0x8a, 0x98, 0xc1, 0xc7, 0xf1, 0x95, 0x37, 0x12,
- 0xb5, 0x32, 0xd3, 0x5a, 0xc3, 0xdb, 0xd7, 0x64, 0x78, 0xaa, 0xb4, 0x3d, 0xa1, 0x64, 0xf5, 0x42,
- 0x58, 0xd9, 0xe4, 0x67, 0x16, 0xcf, 0x91, 0x3d, 0xaf, 0x9c, 0x99, 0x56, 0x16, 0xef, 0x72, 0x3b,
- 0xa9, 0x0f, 0x09, 0xd0, 0x1f, 0xe0, 0x30, 0x6e, 0x19, 0x4b, 0x10, 0x5e, 0x48, 0x33, 0xad, 0x1c,
- 0xbe, 0xa7, 0x5b, 0x0f, 0x74, 0x08, 0xfa, 0x1a, 0x0a, 0x31, 0x06, 0x5e, 0x47, 0x33, 0x2d, 0xc0,
- 0xeb, 0xba, 0x0d, 0x7a, 0x09, 0xdb, 0xf1, 0x07, 0x13, 0x2b, 0xb0, 0xce, 0xc1, 0x79, 0xbc, 0xa5,
- 0x3f, 0x96, 0x58, 0x8a, 0x67, 0xb0, 0x39, 0xbb, 0x21, 0x63, 0xf3, 0x3d, 0xf9, 0xa8, 0xd6, 0xb3,
- 0xc0, 0xd1, 0xeb, 0xb8, 0xc0, 0x14, 0xaf, 0xc9, 0xc7, 0x68, 0x4d, 0x39, 0x72, 0xe4, 0x05, 0xa2,
- 0x40, 0x66, 0x5a, 0x05, 0x9c, 0x65, 0xa2, 0x0b, 0x2f, 0xe0, 0x44, 0xfe, 0xcc, 0x9c, 0x8c, 0x3c,
- 0x6b, 0x1c, 0x08, 0xa6, 0xd2, 0x26, 0x07, 0x6d, 0xe0, 0x82, 0x3f, 0xbb, 0xe4, 0x72, 0xf1, 0xea,
- 0xfd, 0x5b, 0x40, 0x11, 0xd2, 0xf5, 0x5c, 0xd3, 0xb1, 0x47, 0xa4, 0x54, 0xe4, 0xe0, 0x4d, 0xbc,
- 0xa9, 0xc0, 0x1d, 0xcf, 0x6d, 0xdb, 0x23, 0x1e, 0xae, 0xfe, 0xcc, 0xf4, 0xc6, 0x43, 0xa7, 0xb4,
- 0xc5, 0x31, 0x45, 0x9c, 0xf1, 0x67, 0x2c, 0xf7, 0x99, 0x8a, 0x4a, 0x15, 0xe2, 0xaa, 0x2d, 0x9c,
- 0xa1, 0x42, 0xf5, 0x1d, 0xdc, 0x93, 0x56, 0xa6, 0xac, 0xe2, 0xe6, 0xd0, 0x1f, 0x4a, 0xc7, 0xb6,
- 0x39, 0x18, 0xe1, 0x5d, 0xc1, 0x23, 0x8f, 0xc4, 0x53, 0x79, 0xf2, 0xa2, 0x43, 0xc8, 0xfa, 0x33,
- 0xf3, 0x8a, 0x57, 0xde, 0x1d, 0x0e, 0xdd, 0x8e, 0x5e, 0x06, 0x1e, 0x01, 0x30, 0xef, 0xe5, 0xe1,
- 0xba, 0xcb, 0xd5, 0x3b, 0x7a, 0xc7, 0x7f, 0x08, 0x59, 0xaa, 0xac, 0xf7, 0xb8, 0x7a, 0x37, 0x7a,
- 0xc9, 0x78, 0x04, 0x40, 0x23, 0xeb, 0x7d, 0xae, 0xde, 0xd3, 0xdf, 0x26, 0x7e, 0x05, 0xeb, 0x57,
- 0xc4, 0x37, 0x7d, 0x22, 0x2f, 0x34, 0x4a, 0x1c, 0xb2, 0x8f, 0xf3, 0x57, 0xac, 0x22, 0xc8, 0x2b,
- 0x8d, 0xaf, 0x20, 0x3f, 0x1a, 0xda, 0x37, 0x6a, 0xc3, 0xee, 0x71, 0x4c, 0x09, 0x03, 0x13, 0xca,
- 0xdd, 0x62, 0x6e, 0xda, 0x8e, 0x42, 0x1c, 0x70, 0xc4, 0x3d, 0x9c, 0xf3, 0x6d, 0x47, 0x02, 0x1e,
- 0x42, 0x8e, 0x3a, 0x63, 0x12, 0x50, 0x6b, 0x3c, 0x29, 0x1d, 0xf2, 0x6c, 0x3f, 0xc0, 0x91, 0xa8,
- 0xbe, 0x0e, 0xe0, 0x04, 0xa6, 0x2c, 0x14, 0xf5, 0x3c, 0xe4, 0x9c, 0xc0, 0x14, 0xb5, 0xa1, 0xbe,
- 0x0d, 0x5b, 0x4e, 0x60, 0xc6, 0xeb, 0x81, 0x14, 0xc6, 0x73, 0xbf, 0xfe, 0x00, 0x0e, 0x1d, 0x96,
- 0xd8, 0x8b, 0xf3, 0xbc, 0xbe, 0x09, 0x05, 0x27, 0x30, 0xa3, 0x54, 0x96, 0x85, 0x35, 0x4c, 0xdd,
- 0xfa, 0x01, 0x94, 0x9c, 0xc0, 0x5c, 0x98, 0xab, 0xf5, 0xfb, 0x70, 0x10, 0xea, 0xe6, 0x32, 0xb2,
- 0xfe, 0x18, 0x1e, 0xce, 0x69, 0x63, 0x59, 0x57, 0x47, 0x50, 0x4c, 0x22, 0xea, 0x25, 0xd8, 0x9b,
- 0x9b, 0x4f, 0x78, 0xb2, 0x03, 0xc8, 0x09, 0xcc, 0x44, 0xaa, 0x48, 0x7f, 0xc3, 0xb4, 0x90, 0xa8,
- 0x44, 0x1e, 0xd4, 0xf7, 0x61, 0x37, 0x26, 0x55, 0x31, 0x2f, 0xd7, 0x58, 0xc6, 0xa9, 0x1c, 0xc9,
- 0x80, 0xae, 0x3f, 0x84, 0xfb, 0x91, 0x6e, 0x3e, 0x86, 0xeb, 0x05, 0xc8, 0x0b, 0x3d, 0x8f, 0x34,
- 0xb9, 0x94, 0x51, 0x64, 0x4a, 0x3d, 0x8d, 0xeb, 0xa3, 0xd8, 0xab, 0x6f, 0xc1, 0x26, 0x5b, 0x6a,
- 0x2d, 0xd6, 0xea, 0x45, 0xd8, 0x70, 0x02, 0x53, 0x8b, 0x2c, 0xc5, 0x1a, 0x06, 0x92, 0x7c, 0xe0,
- 0x30, 0x4a, 0x8c, 0xbf, 0x5d, 0x85, 0xc3, 0x3b, 0x8e, 0x61, 0xf4, 0x08, 0xf2, 0xac, 0x03, 0x37,
- 0x49, 0xd4, 0x94, 0x67, 0xee, 0x68, 0xca, 0x33, 0x61, 0x53, 0xbe, 0x07, 0x99, 0x6b, 0xc6, 0x25,
- 0xfa, 0x94, 0x0c, 0x96, 0x23, 0xf4, 0x6b, 0xad, 0x25, 0x37, 0x25, 0x82, 0x9f, 0x30, 0x78, 0x33,
- 0x94, 0x9f, 0x85, 0xd0, 0xb0, 0xf3, 0x56, 0xd0, 0x55, 0x01, 0x0d, 0xe5, 0x12, 0xfa, 0x1c, 0x50,
- 0xb8, 0xb2, 0xc4, 0x56, 0x60, 0x7e, 0xb0, 0xe0, 0x62, 0xd4, 0x91, 0x47, 0xc4, 0x61, 0xe3, 0xad,
- 0xb0, 0x6b, 0x82, 0x38, 0x94, 0x4b, 0xe8, 0xd3, 0xa8, 0x1f, 0x57, 0x48, 0x7e, 0xc6, 0xe0, 0x0d,
- 0x25, 0x96, 0xc0, 0x67, 0x50, 0x14, 0x7a, 0xf3, 0xd5, 0x91, 0xa9, 0xf5, 0xe3, 0x19, 0xbc, 0x21,
- 0xe4, 0xaf, 0x8e, 0xc2, 0x26, 0x79, 0x5f, 0x21, 0x8f, 0x4d, 0xea, 0x99, 0x95, 0xea, 0xb7, 0xa6,
- 0xd6, 0x91, 0x67, 0xf0, 0xb6, 0x34, 0x10, 0x0d, 0x79, 0x57, 0x35, 0xc9, 0x25, 0x69, 0x55, 0xa9,
- 0x9e, 0x30, 0xb3, 0xea, 0xf1, 0xb1, 0x32, 0xe3, 0x67, 0x09, 0xde, 0x11, 0xfa, 0x44, 0x4b, 0x1e,
- 0xd9, 0x55, 0x8f, 0x5f, 0x31, 0xbb, 0xe3, 0x4a, 0xc5, 0xd4, 0xba, 0xf2, 0xd0, 0x4e, 0x35, 0xe5,
- 0x5d, 0xd5, 0x5c, 0xdf, 0x93, 0x76, 0xc7, 0x95, 0x2a, 0x77, 0xf3, 0x65, 0xf5, 0x1b, 0x53, 0xeb,
- 0xcb, 0x33, 0x78, 0x57, 0x00, 0xc2, 0xb6, 0x5c, 0x5a, 0x7e, 0x07, 0x07, 0xca, 0xd3, 0x97, 0xd5,
- 0x23, 0x6e, 0x7a, 0x5c, 0x39, 0x31, 0xb5, 0xce, 0x3c, 0x83, 0xf7, 0xa4, 0xaf, 0x61, 0x63, 0x2e,
- 0x6c, 0x8d, 0xff, 0x4e, 0xc3, 0x93, 0x4f, 0x35, 0x86, 0xb2, 0x0b, 0xaa, 0x43, 0x76, 0x3a, 0x09,
- 0xa8, 0x4f, 0xac, 0xb1, 0x6c, 0xd9, 0xf5, 0x2b, 0xab, 0xbb, 0x18, 0x42, 0x3b, 0x74, 0x06, 0x60,
- 0x7b, 0x3f, 0xbb, 0x92, 0x25, 0xfd, 0x45, 0x2c, 0x9a, 0x25, 0xfa, 0x9b, 0x14, 0x3c, 0xe1, 0x69,
- 0x4e, 0x24, 0x58, 0xc4, 0x8a, 0x49, 0x24, 0xdc, 0x9c, 0x8c, 0xcd, 0x6b, 0xcf, 0x1f, 0x5b, 0x54,
- 0x5e, 0x99, 0x9e, 0x24, 0xde, 0xc8, 0x3f, 0xfd, 0xbc, 0xe5, 0x33, 0x6e, 0x8f, 0xbf, 0xf2, 0x6e,
- 0xc7, 0x0a, 0x88, 0xf1, 0x12, 0x32, 0xe2, 0x2f, 0x7e, 0xb9, 0xd9, 0x6a, 0xe3, 0xfe, 0x4f, 0x66,
- 0xff, 0x87, 0xae, 0x59, 0x6f, 0xf7, 0xc5, 0x75, 0x6a, 0xaf, 0xfd, 0x63, 0xff, 0x27, 0xf3, 0xac,
- 0x3b, 0xc0, 0x5c, 0x96, 0x32, 0x28, 0xac, 0xc9, 0xa6, 0x55, 0x6b, 0x47, 0x53, 0x5a, 0x3b, 0xca,
- 0xd2, 0x39, 0xa0, 0x16, 0x9d, 0x06, 0xb2, 0x4b, 0x95, 0x23, 0x56, 0x1f, 0xae, 0x2d, 0x67, 0x64,
- 0xfa, 0xc4, 0x0a, 0x3c, 0x97, 0x3f, 0x5d, 0x0e, 0x03, 0x13, 0x61, 0x2e, 0x41, 0xf7, 0xf8, 0x59,
- 0xcc, 0xef, 0x60, 0x78, 0x9e, 0xa7, 0xd8, 0x49, 0xcc, 0xa7, 0x32, 0x88, 0x78, 0x9d, 0xd0, 0x1a,
- 0x66, 0xb9, 0xb5, 0x9f, 0xe8, 0x98, 0x7f, 0xab, 0x51, 0xa6, 0x1f, 0x2f, 0x3f, 0xcb, 0x57, 0x91,
- 0xb6, 0x9c, 0x8a, 0x2c, 0x9c, 0xe6, 0xef, 0xc5, 0x55, 0x68, 0x72, 0x92, 0x2f, 0x6c, 0xef, 0xb5,
- 0x15, 0x58, 0xbe, 0x6b, 0x05, 0x56, 0xee, 0x5c, 0x81, 0xd5, 0xf8, 0x0a, 0xfc, 0x99, 0xb8, 0xea,
- 0x74, 0xa7, 0x2c, 0x00, 0xfa, 0x33, 0x3c, 0xeb, 0x51, 0x8b, 0x86, 0x6f, 0x55, 0x5f, 0xf6, 0x46,
- 0xfa, 0x9f, 0xcb, 0x70, 0xb8, 0x90, 0x4c, 0x3e, 0xef, 0xaf, 0x61, 0xeb, 0xca, 0x0a, 0x08, 0x3b,
- 0x42, 0x2c, 0x5f, 0xd5, 0x32, 0xf9, 0x5e, 0xca, 0x14, 0xfd, 0x59, 0xcd, 0x0f, 0xeb, 0xa3, 0x80,
- 0xfa, 0x33, 0xd3, 0x7a, 0xaf, 0xa0, 0xe9, 0x08, 0x8a, 0x67, 0xb5, 0xf7, 0x12, 0x5a, 0x86, 0x1d,
- 0xc5, 0xea, 0x7a, 0x1a, 0xf1, 0xb2, 0xbc, 0x65, 0xe1, 0xc4, 0x1d, 0x2f, 0xa4, 0x56, 0x78, 0x5f,
- 0xe0, 0xdf, 0xeb, 0x47, 0x80, 0xc4, 0x63, 0x86, 0x7f, 0x1f, 0xd6, 0xdf, 0x22, 0x99, 0xd1, 0xb8,
- 0xd3, 0xe2, 0x25, 0xb5, 0x40, 0x66, 0x54, 0xf3, 0x59, 0x02, 0x63, 0x2e, 0x67, 0x42, 0xa0, 0xe6,
- 0xf1, 0x73, 0xd8, 0x96, 0x8c, 0x31, 0x87, 0xc5, 0x85, 0xcc, 0x26, 0x27, 0xd5, 0xfc, 0x95, 0xe8,
- 0xa4, 0xbb, 0xd9, 0x10, 0x1d, 0xf3, 0xf6, 0x18, 0xf6, 0xe5, 0xf1, 0x6f, 0x0e, 0xc5, 0x5b, 0x9b,
- 0xe9, 0x13, 0xea, 0x3b, 0x44, 0xdd, 0xcd, 0xec, 0x88, 0xee, 0x56, 0xbe, 0xd2, 0x61, 0xa1, 0x43,
- 0xdf, 0x42, 0x29, 0x69, 0xc6, 0x4e, 0x68, 0x6f, 0x1a, 0x5e, 0xd2, 0xec, 0xc6, 0xec, 0xfa, 0x52,
- 0x69, 0xfc, 0x31, 0x03, 0x9b, 0xe7, 0x84, 0xf2, 0x8f, 0x6b, 0x2a, 0x6a, 0x7e, 0x97, 0xf8, 0x5a,
- 0x95, 0xaf, 0x3e, 0x88, 0x17, 0x9b, 0xc4, 0x77, 0x31, 0xf6, 0xba, 0xac, 0x0c, 0xd0, 0xef, 0x60,
- 0x6d, 0x2a, 0xbe, 0xdd, 0xc8, 0x6a, 0xf8, 0xe8, 0xf6, 0x6f, 0x3b, 0xca, 0x5a, 0x59, 0xa0, 0x1a,
- 0xe4, 0x3d, 0x71, 0x6b, 0xcf, 0x09, 0x96, 0x17, 0x4d, 0x9e, 0xb8, 0xd6, 0x6f, 0x2d, 0x61, 0xdd,
- 0x06, 0xb5, 0x61, 0xc3, 0x73, 0xa7, 0xda, 0x05, 0x2f, 0x0f, 0x8c, 0x45, 0x6e, 0xc4, 0xef, 0x81,
- 0x5b, 0x4b, 0x38, 0x61, 0x88, 0x30, 0x14, 0x08, 0x7d, 0x17, 0xdd, 0x36, 0xf2, 0xb0, 0xc9, 0x57,
- 0x7f, 0xf3, 0xf9, 0x77, 0xa1, 0xad, 0x25, 0x1c, 0xa7, 0x40, 0x7f, 0xca, 0x2f, 0x60, 0xa4, 0x9a,
- 0x87, 0x57, 0xbe, 0x7a, 0x38, 0x47, 0x18, 0xdd, 0x08, 0xb5, 0x96, 0xb0, 0x66, 0x80, 0xea, 0x00,
- 0x1e, 0xf7, 0x9c, 0x3f, 0xd9, 0x1a, 0x37, 0x7f, 0x3c, 0x67, 0x9e, 0xb8, 0x5c, 0x61, 0x1c, 0x91,
- 0x15, 0xba, 0x80, 0x35, 0x56, 0x8f, 0x18, 0x41, 0x96, 0x13, 0xbc, 0xfc, 0x82, 0xa3, 0x24, 0xdc,
- 0x32, 0x49, 0x81, 0x4e, 0x40, 0xd5, 0x22, 0x1e, 0xa0, 0xf9, 0xea, 0xfd, 0x38, 0x5b, 0xfc, 0x2a,
- 0x83, 0x59, 0x4a, 0x38, 0x7a, 0x0d, 0xeb, 0x9e, 0x28, 0x35, 0xbc, 0xcc, 0xf0, 0x38, 0xcd, 0x57,
- 0xbf, 0x9e, 0x7b, 0x9a, 0x45, 0x95, 0xad, 0xb5, 0x84, 0x63, 0xc6, 0xa8, 0x06, 0xe0, 0x85, 0xc7,
- 0x00, 0x6f, 0x67, 0xe6, 0xb7, 0x7c, 0x34, 0xef, 0x8c, 0x66, 0x54, 0xcf, 0xc1, 0x9a, 0x2f, 0x14,
- 0xc6, 0xbf, 0xe4, 0xf8, 0xf5, 0x9e, 0xcc, 0x0a, 0x59, 0xfe, 0xbe, 0x0b, 0xcb, 0xb7, 0xb8, 0x13,
- 0x37, 0xe2, 0xf4, 0x31, 0x70, 0xb9, 0xc7, 0x91, 0x61, 0x89, 0x6f, 0x42, 0x8e, 0xf8, 0xbe, 0x28,
- 0xe7, 0xf2, 0xf3, 0xd8, 0xd3, 0xbb, 0xcc, 0x79, 0xb7, 0x29, 0xe0, 0x38, 0xb2, 0x44, 0xbf, 0xd7,
- 0x32, 0x53, 0x24, 0xc7, 0xc3, 0xdb, 0x32, 0x53, 0x10, 0xc5, 0x52, 0xf3, 0xf7, 0x51, 0x6a, 0xae,
- 0xdc, 0x12, 0x39, 0x89, 0xcf, 0xae, 0x7a, 0x6e, 0xbe, 0x86, 0xf5, 0x89, 0xc8, 0x3b, 0xea, 0x12,
- 0x3f, 0x90, 0xc9, 0xf0, 0xf5, 0x9d, 0xc9, 0xa9, 0xf1, 0xc4, 0x8c, 0xd1, 0xf7, 0x73, 0x59, 0x2a,
- 0x52, 0xe1, 0xe9, 0x27, 0xb2, 0x54, 0x23, 0x4c, 0x66, 0xeb, 0x15, 0x6c, 0xc5, 0x52, 0x4d, 0xcb,
- 0x90, 0xea, 0xe7, 0x67, 0xac, 0x36, 0xc1, 0x3c, 0x1d, 0x6a, 0xc6, 0xb2, 0x57, 0x64, 0xcf, 0xaf,
- 0xee, 0xc8, 0x5e, 0x8d, 0x4d, 0xcf, 0xe2, 0xd7, 0xfc, 0xe9, 0x2f, 0x3d, 0x57, 0xad, 0x93, 0x4c,
- 0x9d, 0xaf, 0xee, 0xc8, 0xe4, 0xd8, 0x73, 0x6b, 0xa6, 0x68, 0xc0, 0xef, 0x37, 0x43, 0x26, 0x91,
- 0x45, 0x95, 0x2f, 0xee, 0x0e, 0x79, 0x1d, 0x8d, 0x78, 0xd0, 0x9f, 0x44, 0x79, 0x9d, 0x5f, 0x54,
- 0x86, 0x13, 0xcd, 0x90, 0x9e, 0xd8, 0x17, 0x89, 0xc4, 0x5e, 0x9f, 0xeb, 0x8a, 0xef, 0xe8, 0x32,
- 0xe6, 0x32, 0xbb, 0x1e, 0xcb, 0xec, 0xc2, 0xc2, 0xc0, 0x1d, 0x2d, 0x70, 0x47, 0xb3, 0x32, 0x2a,
- 0x90, 0x11, 0x09, 0x89, 0x76, 0xa0, 0xd8, 0xeb, 0xd7, 0xfa, 0x83, 0x5e, 0xec, 0x33, 0x78, 0x06,
- 0xd2, 0xdd, 0xd7, 0xc5, 0x14, 0xff, 0x61, 0x0b, 0xc6, 0x5d, 0x5c, 0x4c, 0x1b, 0xff, 0x90, 0x82,
- 0xbc, 0x96, 0x85, 0xcc, 0x10, 0x37, 0x6b, 0xbd, 0x6e, 0x27, 0x66, 0xb8, 0x09, 0xf9, 0x41, 0xa7,
- 0x37, 0xb8, 0xbc, 0xec, 0xe2, 0x3e, 0xff, 0x86, 0xbe, 0x0b, 0x5b, 0xed, 0xce, 0xdb, 0xda, 0x45,
- 0xbb, 0x61, 0x36, 0x9a, 0x6f, 0xdb, 0xa7, 0x4d, 0xb3, 0xdd, 0x28, 0xa6, 0x75, 0x31, 0x83, 0x9a,
- 0xfd, 0x9f, 0x2e, 0x9b, 0xc5, 0x65, 0x94, 0x87, 0xb5, 0x7e, 0xfb, 0x4d, 0xb3, 0x3b, 0xe8, 0x17,
- 0x57, 0xd8, 0x0c, 0x0a, 0x83, 0x9b, 0xdf, 0x0b, 0xc8, 0x2a, 0x6b, 0xb6, 0xdb, 0x9d, 0x7e, 0x13,
- 0x77, 0x6a, 0x17, 0xa6, 0xf0, 0x2d, 0x23, 0x64, 0xfa, 0x24, 0xc5, 0xb5, 0x3a, 0x40, 0xd6, 0x97,
- 0x0f, 0x6f, 0xbc, 0x85, 0xcd, 0x5e, 0xe2, 0x4c, 0x4f, 0xfe, 0x14, 0x28, 0xf5, 0xd9, 0x3f, 0x05,
- 0xd2, 0xca, 0xe2, 0xff, 0xa4, 0xa0, 0xd8, 0xfb, 0x92, 0xb2, 0xd8, 0xfb, 0xbf, 0x95, 0xc5, 0xde,
- 0xe7, 0x95, 0xc5, 0x5f, 0xb2, 0xbd, 0x47, 0xbf, 0x64, 0x77, 0x0d, 0x07, 0x76, 0x7b, 0x8e, 0x7b,
- 0x33, 0x22, 0xc9, 0x96, 0xe9, 0x00, 0xb2, 0xd4, 0xf2, 0x6f, 0x08, 0x0d, 0xbf, 0x30, 0x84, 0x63,
- 0x74, 0x14, 0x2e, 0xa0, 0xec, 0x88, 0x0e, 0x16, 0x56, 0x7e, 0x8e, 0xc0, 0xe1, 0x5a, 0x7f, 0x0f,
- 0x7b, 0xc9, 0xa9, 0xe4, 0x82, 0x7f, 0x1b, 0xed, 0xb4, 0xdc, 0xc6, 0xc3, 0x3b, 0x8e, 0x12, 0x1c,
- 0x85, 0x45, 0xe8, 0x7d, 0xef, 0xff, 0xcb, 0xfb, 0xde, 0x27, 0xbd, 0xef, 0x7d, 0x99, 0xf7, 0xbd,
- 0x5b, 0xbd, 0xaf, 0xfe, 0x53, 0x0a, 0x72, 0x4d, 0x05, 0x44, 0x18, 0xf2, 0xe7, 0x84, 0x36, 0x67,
- 0x02, 0x8e, 0xf4, 0x82, 0xb0, 0x70, 0x87, 0x0e, 0xbe, 0xba, 0x03, 0x21, 0x5d, 0xc3, 0x90, 0xef,
- 0xdd, 0xc9, 0xd9, 0xfb, 0x24, 0x67, 0xd2, 0xff, 0x3a, 0x86, 0x07, 0x9e, 0x7f, 0x53, 0xf6, 0x26,
- 0xc4, 0x1d, 0x7a, 0xbe, 0x5d, 0x16, 0x3f, 0xf5, 0x8b, 0xec, 0xfe, 0xbc, 0x72, 0xe3, 0xd0, 0x77,
- 0xd3, 0xab, 0xf2, 0xd0, 0x1b, 0xbf, 0x50, 0xa8, 0x17, 0x02, 0xf5, 0x5b, 0xf9, 0x83, 0xc0, 0x0f,
- 0xc7, 0x2f, 0x6e, 0xbc, 0xe8, 0x17, 0x84, 0x57, 0x19, 0x2e, 0xff, 0xe6, 0x7f, 0x03, 0x00, 0x00,
- 0xff, 0xff, 0x66, 0x2e, 0xdd, 0x3c, 0x63, 0x28, 0x00, 0x00,
+ // 3710 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x5a, 0xcd, 0x73, 0xdb, 0xc8,
+ 0x72, 0x17, 0x29, 0x89, 0x22, 0x9b, 0xa2, 0x44, 0x8d, 0x3e, 0x4c, 0x4b, 0xfe, 0x5a, 0xbc, 0x5a,
+ 0xdb, 0xfb, 0xca, 0x4b, 0x9b, 0x5c, 0xc9, 0xab, 0xb7, 0xef, 0xa5, 0xea, 0x91, 0x22, 0x25, 0x32,
+ 0x96, 0x49, 0xed, 0x90, 0xf4, 0xee, 0x26, 0x95, 0x42, 0x41, 0xc4, 0x48, 0x46, 0x99, 0x04, 0x18,
+ 0x60, 0xe8, 0xa5, 0x53, 0x95, 0x5b, 0x6e, 0x49, 0x4e, 0xef, 0x92, 0x7f, 0x22, 0x95, 0x43, 0x0e,
+ 0xb9, 0xe7, 0x9c, 0x7f, 0x22, 0x55, 0xb9, 0xe4, 0x98, 0x54, 0xce, 0xa9, 0xd4, 0x7c, 0x01, 0x03,
+ 0x90, 0x92, 0xed, 0xcd, 0xbb, 0xd8, 0x9a, 0xee, 0x5f, 0xff, 0xa6, 0x31, 0xd3, 0xdd, 0xd3, 0x18,
+ 0x10, 0x1e, 0xbc, 0xf7, 0x46, 0xf4, 0xad, 0x65, 0x4e, 0x7c, 0x8f, 0x7a, 0xc1, 0x73, 0x32, 0xa3,
+ 0xc4, 0x0d, 0x1c, 0xcf, 0x0d, 0xca, 0x5c, 0x82, 0x72, 0xa1, 0x64, 0x7f, 0x1e, 0x6a, 0x0e, 0x3d,
+ 0xf7, 0xca, 0xb9, 0x16, 0xd0, 0xfd, 0x83, 0x6b, 0xcf, 0xbb, 0x1e, 0x91, 0xe7, 0x7c, 0x74, 0x39,
+ 0xbd, 0x7a, 0x4e, 0xc6, 0x13, 0xfa, 0x41, 0x28, 0x8d, 0xbf, 0x80, 0xec, 0x1b, 0x6b, 0x34, 0x25,
+ 0x3d, 0x42, 0xd1, 0x06, 0xa4, 0x1d, 0xbb, 0x94, 0x7a, 0x94, 0x7a, 0x9a, 0xc3, 0x69, 0xc7, 0x46,
+ 0xc7, 0xb0, 0x6e, 0x8d, 0x2c, 0x7f, 0x2c, 0xe9, 0x4a, 0xe9, 0x47, 0xa9, 0xa7, 0xf9, 0xea, 0x76,
+ 0x59, 0xb2, 0xd7, 0x98, 0xee, 0x84, 0xff, 0xdd, 0x5a, 0xc2, 0x79, 0x2b, 0x1a, 0xd6, 0xd7, 0x60,
+ 0xf5, 0x3d, 0x63, 0x35, 0x9e, 0x41, 0x8e, 0xd3, 0xf7, 0x3f, 0x4c, 0x88, 0xf1, 0x10, 0x56, 0xd8,
+ 0xff, 0x28, 0x07, 0xab, 0xcd, 0xd7, 0x17, 0xfd, 0x9f, 0x8a, 0x4b, 0x68, 0x1d, 0xb2, 0x8d, 0x76,
+ 0xaf, 0x5f, 0xeb, 0x9c, 0x34, 0x8b, 0x29, 0xe3, 0x7b, 0xd8, 0x10, 0xce, 0x4c, 0xc8, 0xd0, 0xb9,
+ 0x72, 0x88, 0x3f, 0xe7, 0xd2, 0x73, 0x49, 0xcc, 0x7d, 0xd9, 0xa8, 0xde, 0x2d, 0x87, 0xcb, 0x50,
+ 0x0e, 0xe7, 0x29, 0xb3, 0x7f, 0xb0, 0x74, 0x80, 0xc2, 0x3a, 0x26, 0x74, 0xea, 0xbb, 0x5c, 0x1d,
+ 0xa0, 0x22, 0x2c, 0xf7, 0x08, 0xe5, 0x8c, 0x05, 0xcc, 0xfe, 0x44, 0x8f, 0x20, 0x3f, 0x70, 0x83,
+ 0xe9, 0x64, 0xe2, 0xf9, 0x94, 0xd8, 0x9c, 0xb8, 0x80, 0x75, 0x11, 0xda, 0x81, 0xd5, 0xa6, 0xef,
+ 0x7b, 0x7e, 0x69, 0x99, 0xeb, 0xc4, 0x00, 0xed, 0x43, 0xb6, 0xe1, 0x04, 0xd4, 0x72, 0x87, 0xa4,
+ 0xb4, 0xc2, 0x15, 0xe1, 0xd8, 0x78, 0x09, 0xe8, 0x8c, 0x50, 0x35, 0xc4, 0xe4, 0x2f, 0xa7, 0x24,
+ 0xe0, 0x33, 0x79, 0xee, 0xb4, 0x41, 0xde, 0x3b, 0x43, 0xd2, 0x56, 0x4f, 0xa5, 0x8b, 0x8c, 0x0a,
+ 0x6c, 0xc7, 0xec, 0x82, 0x89, 0xe7, 0x06, 0x84, 0x4d, 0x65, 0xab, 0xa9, 0x84, 0xe7, 0xe1, 0xd8,
+ 0xa8, 0xc2, 0xce, 0x19, 0xa1, 0x5d, 0x77, 0x3a, 0x70, 0x9d, 0xb6, 0x7b, 0xe5, 0xa9, 0xc9, 0xf6,
+ 0x21, 0x3b, 0x65, 0x12, 0x9b, 0xcc, 0x94, 0x8d, 0x1a, 0x1b, 0xff, 0xbe, 0x02, 0xbb, 0x09, 0x23,
+ 0x39, 0xd3, 0x05, 0x64, 0x2d, 0x7b, 0xdc, 0xa3, 0x16, 0x15, 0x33, 0x6d, 0x54, 0x0f, 0xb5, 0x25,
+ 0x5e, 0x68, 0x53, 0xae, 0xd9, 0x63, 0xc7, 0x75, 0x02, 0xea, 0x5b, 0xd4, 0x79, 0x4f, 0xb8, 0x2d,
+ 0x0e, 0x59, 0x50, 0x17, 0x72, 0xde, 0x84, 0xf8, 0x82, 0x52, 0xec, 0x5a, 0xe5, 0xa3, 0x94, 0xdd,
+ 0x09, 0x61, 0x6c, 0x9e, 0x6b, 0x8d, 0x04, 0x5f, 0xc4, 0xc1, 0x08, 0x45, 0x00, 0xb6, 0x5d, 0x9b,
+ 0xef, 0xc8, 0xa7, 0x10, 0x8a, 0xb8, 0x9c, 0x0a, 0xd2, 0xb6, 0x6b, 0xe3, 0x88, 0xc3, 0xf8, 0xd7,
+ 0x14, 0x14, 0x93, 0x7a, 0x04, 0x90, 0x19, 0x74, 0x5e, 0x75, 0x7f, 0xe8, 0x14, 0x97, 0x10, 0x82,
+ 0x8d, 0x7e, 0xb3, 0x63, 0xd6, 0x6b, 0xbd, 0xa6, 0xd9, 0x37, 0x4f, 0x1b, 0x3f, 0x16, 0x53, 0x68,
+ 0x0f, 0x50, 0x6b, 0xd0, 0x69, 0xe0, 0x66, 0x43, 0x97, 0xa7, 0x51, 0x09, 0x76, 0xce, 0xda, 0x67,
+ 0xb5, 0x7a, 0xbb, 0x6f, 0x36, 0xfb, 0xad, 0x26, 0xee, 0x34, 0x85, 0x66, 0x99, 0x59, 0x30, 0x96,
+ 0xb3, 0xb8, 0x7c, 0x25, 0xc1, 0xde, 0x6a, 0xfc, 0x58, 0x5c, 0x5d, 0xc0, 0xce, 0xe4, 0x99, 0x85,
+ 0xec, 0x4c, 0xb3, 0x66, 0x9c, 0xc1, 0xf6, 0x82, 0x7d, 0x60, 0x44, 0xb5, 0xc6, 0xeb, 0x5e, 0xbf,
+ 0xd6, 0x6f, 0x9a, 0x83, 0x4e, 0xa3, 0x79, 0xda, 0xee, 0x34, 0x1b, 0xc5, 0x25, 0xf6, 0x78, 0xe7,
+ 0xdd, 0x93, 0x57, 0xcd, 0x46, 0x31, 0xc5, 0x72, 0x70, 0xd0, 0x91, 0xa3, 0xb4, 0x71, 0x0a, 0xc5,
+ 0xe4, 0xea, 0xa3, 0x3b, 0xb0, 0xdd, 0xbd, 0x68, 0xe2, 0x79, 0x9a, 0x3c, 0xac, 0x35, 0x3b, 0xb5,
+ 0xfa, 0xb9, 0xe2, 0x69, 0xb4, 0x7b, 0x62, 0x94, 0x36, 0xfe, 0x25, 0xc5, 0x73, 0xa0, 0x3b, 0xa2,
+ 0x17, 0x9e, 0x4f, 0x4f, 0xbc, 0xa9, 0x4b, 0x89, 0x1f, 0xa0, 0x3d, 0xc8, 0xb0, 0xac, 0xea, 0x78,
+ 0x32, 0x28, 0xe5, 0x08, 0xd5, 0x21, 0xcb, 0xfe, 0x62, 0xa9, 0x2b, 0xa3, 0xe4, 0x71, 0x62, 0x53,
+ 0xe3, 0x44, 0xe5, 0x0b, 0x89, 0xc6, 0xa1, 0x9d, 0xd1, 0x84, 0xac, 0x92, 0xa2, 0x22, 0xac, 0xb3,
+ 0xbf, 0xcd, 0x41, 0xe7, 0x55, 0x47, 0xec, 0xe2, 0x2e, 0x6c, 0x71, 0x49, 0xb8, 0x70, 0x9d, 0x4e,
+ 0xbb, 0x98, 0x0a, 0x81, 0x17, 0xdd, 0x8e, 0xd9, 0x3d, 0xef, 0x17, 0xd3, 0xc6, 0xbf, 0x2d, 0xc3,
+ 0xfe, 0xfc, 0x84, 0x61, 0x8a, 0x94, 0x60, 0x8d, 0xce, 0xea, 0x1f, 0x28, 0x09, 0xf8, 0x23, 0xac,
+ 0x60, 0x35, 0x64, 0x1a, 0x5f, 0x6a, 0xd2, 0x42, 0x23, 0x87, 0xe8, 0x1e, 0xe4, 0xe8, 0xec, 0xc2,
+ 0x1a, 0xbe, 0x23, 0x34, 0xe0, 0x31, 0xbb, 0x82, 0x23, 0x01, 0xd3, 0xfa, 0xa1, 0x76, 0x45, 0x68,
+ 0x43, 0x01, 0x7a, 0x0c, 0x1b, 0x74, 0xc6, 0x4b, 0x8e, 0x82, 0xac, 0x72, 0x48, 0x42, 0xca, 0x70,
+ 0x7e, 0x1c, 0x97, 0x11, 0x38, 0x7f, 0x0e, 0x47, 0x67, 0xf5, 0xa1, 0x15, 0x50, 0x85, 0x5b, 0x53,
+ 0x7c, 0xba, 0x54, 0xf0, 0xc5, 0x70, 0x59, 0xc5, 0x97, 0xc4, 0xd1, 0xd9, 0x40, 0xc7, 0xe5, 0x14,
+ 0xdf, 0x60, 0x8e, 0x2f, 0x86, 0x03, 0xc5, 0x37, 0x98, 0xe3, 0x7b, 0xad, 0xe3, 0xf2, 0x8a, 0xef,
+ 0xf5, 0x1c, 0x5f, 0x0c, 0xb7, 0xae, 0xf8, 0x74, 0xa9, 0xd1, 0x50, 0x05, 0xf2, 0xc2, 0x73, 0xbb,
+ 0x13, 0xea, 0x0c, 0xad, 0x11, 0x2b, 0x0d, 0xe8, 0x19, 0xac, 0xf2, 0x83, 0x90, 0xef, 0x62, 0xbe,
+ 0xba, 0x57, 0x16, 0xc7, 0x64, 0x59, 0x1d, 0x93, 0xe5, 0x26, 0xd3, 0x62, 0x01, 0x32, 0xfe, 0x26,
+ 0x0d, 0xf7, 0x16, 0xd1, 0x84, 0x61, 0xf1, 0x6b, 0x28, 0x4e, 0xbc, 0x9f, 0x89, 0x7f, 0x4a, 0x88,
+ 0xfd, 0xc6, 0x1b, 0x51, 0xeb, 0x5a, 0x54, 0xd0, 0x34, 0x9e, 0x93, 0xa3, 0x2a, 0xec, 0xf8, 0x64,
+ 0x48, 0x9c, 0xf7, 0xc4, 0x96, 0x54, 0x17, 0x0c, 0xc2, 0xa3, 0x26, 0x8d, 0x17, 0xea, 0xd0, 0x4b,
+ 0xd8, 0x1b, 0x13, 0x4b, 0x4d, 0x7d, 0x6e, 0x4d, 0xdd, 0xe1, 0x5b, 0x61, 0xb5, 0xcc, 0xad, 0x6e,
+ 0xd0, 0x32, 0xbf, 0x46, 0x56, 0x40, 0xfc, 0xba, 0x63, 0x05, 0x27, 0x53, 0xdf, 0x27, 0x2e, 0xe5,
+ 0x31, 0x96, 0xc6, 0x73, 0x72, 0x76, 0x40, 0x51, 0x32, 0xe6, 0xd9, 0x3f, 0xf5, 0x09, 0x8f, 0xb3,
+ 0x34, 0xd6, 0x45, 0xc6, 0x3f, 0xa5, 0xe0, 0xa1, 0x58, 0x86, 0x26, 0x7d, 0x4b, 0x7c, 0x97, 0xd0,
+ 0xba, 0xef, 0xd8, 0xd7, 0x84, 0x65, 0x4a, 0xcb, 0x09, 0xa8, 0xe7, 0x7f, 0x40, 0x18, 0x72, 0xb6,
+ 0xe3, 0x93, 0x21, 0xab, 0x20, 0x37, 0x1e, 0x22, 0x37, 0x9a, 0x97, 0x1b, 0xca, 0x16, 0x47, 0x34,
+ 0xc6, 0x31, 0xe4, 0x42, 0x39, 0x2a, 0x40, 0x4e, 0x2f, 0x42, 0xac, 0x7e, 0x5d, 0xf4, 0xfa, 0xb8,
+ 0x59, 0x7b, 0x5d, 0x4c, 0xa1, 0x0d, 0x80, 0x46, 0xf7, 0x87, 0x8e, 0x1c, 0xa7, 0x8d, 0x3f, 0xac,
+ 0xc2, 0x93, 0x8f, 0x4c, 0x19, 0xee, 0xe1, 0x03, 0x00, 0xdb, 0xf7, 0x26, 0xcd, 0xf7, 0xc4, 0xa5,
+ 0x81, 0x2c, 0x50, 0x9a, 0x84, 0x15, 0x2f, 0x6f, 0x48, 0x59, 0xa8, 0x89, 0x2e, 0x41, 0x8e, 0x58,
+ 0xe2, 0x4f, 0xb4, 0xe4, 0x2e, 0x60, 0x35, 0x64, 0xab, 0x7f, 0xe9, 0x7b, 0x96, 0xad, 0x87, 0xa9,
+ 0x68, 0x16, 0xe6, 0xe4, 0x0c, 0x3b, 0x9e, 0x8e, 0xd8, 0x06, 0x46, 0xd8, 0x55, 0x81, 0x4d, 0xca,
+ 0xd1, 0x33, 0xd8, 0x1a, 0xfa, 0x43, 0x9e, 0xd7, 0xc4, 0xd6, 0xf3, 0xbd, 0x80, 0xe7, 0x15, 0x8c,
+ 0x79, 0xea, 0xda, 0xc4, 0x0f, 0x9c, 0xbf, 0x22, 0x7a, 0xd2, 0x17, 0xf0, 0x9c, 0x1c, 0x3d, 0x85,
+ 0x4d, 0xef, 0x7d, 0x1c, 0x9a, 0xe5, 0xd0, 0xa4, 0x98, 0x21, 0xe5, 0x63, 0xbe, 0x3c, 0x94, 0xcb,
+ 0x92, 0x13, 0xc8, 0x84, 0x98, 0xc5, 0xbb, 0x12, 0x1d, 0xf5, 0xbd, 0x4a, 0xf5, 0x5b, 0x09, 0x07,
+ 0x0e, 0x5f, 0xa8, 0x43, 0x87, 0xb0, 0x2b, 0xe5, 0x95, 0xea, 0x71, 0xdf, 0xab, 0x1e, 0x1d, 0x75,
+ 0x85, 0x51, 0x9e, 0x1b, 0x2d, 0x56, 0x6a, 0x56, 0xd5, 0xa3, 0x97, 0x7d, 0xef, 0xa8, 0x52, 0x91,
+ 0x53, 0xad, 0xc7, 0xac, 0xe2, 0x4a, 0x96, 0x5b, 0x52, 0x71, 0x54, 0xa9, 0xf6, 0xbd, 0xca, 0x8b,
+ 0xea, 0x37, 0xd2, 0xac, 0xc0, 0xcd, 0x6e, 0xd0, 0xa2, 0x63, 0xb8, 0xa3, 0xdc, 0x78, 0x51, 0x3d,
+ 0xec, 0x7b, 0x95, 0xa3, 0xca, 0xb1, 0x34, 0xdc, 0xe0, 0x86, 0x37, 0xa9, 0x8d, 0xdf, 0x43, 0x51,
+ 0x04, 0xe5, 0x29, 0x19, 0xaa, 0xbc, 0xf9, 0xbc, 0x82, 0xf4, 0xdf, 0x29, 0x28, 0x25, 0x29, 0xc2,
+ 0x40, 0x7e, 0x0c, 0x1b, 0x43, 0xcf, 0x67, 0xf9, 0x42, 0xec, 0xe8, 0xa8, 0x2a, 0xe0, 0x84, 0x14,
+ 0x95, 0x01, 0x85, 0x92, 0x13, 0xcf, 0x26, 0x3f, 0x78, 0xbe, 0xad, 0x82, 0x7b, 0x81, 0x86, 0x25,
+ 0xc8, 0x15, 0x19, 0xf6, 0xc8, 0xd0, 0x73, 0x6d, 0x15, 0xeb, 0x9a, 0x84, 0xd7, 0x6e, 0x8f, 0x5a,
+ 0xa3, 0x88, 0x4b, 0x04, 0x7b, 0x42, 0xca, 0x16, 0x7c, 0xea, 0x4a, 0x7e, 0xeb, 0x72, 0x44, 0x22,
+ 0xbc, 0x08, 0xf8, 0x1b, 0xb4, 0xc6, 0x99, 0xea, 0x5b, 0xa3, 0x53, 0x59, 0x74, 0xbb, 0x77, 0x60,
+ 0xcd, 0x71, 0xe9, 0x95, 0x29, 0x5f, 0x16, 0xd6, 0x70, 0x86, 0x0d, 0xdb, 0x36, 0xda, 0x85, 0x8c,
+ 0xe7, 0x4e, 0x99, 0x3c, 0xcd, 0xe5, 0xab, 0x9e, 0x3b, 0x6d, 0xdb, 0xc6, 0xdf, 0xa7, 0xe0, 0x4b,
+ 0xc6, 0x34, 0x1e, 0x3a, 0xaa, 0x2c, 0x9c, 0xfa, 0xd6, 0x98, 0x34, 0x59, 0x99, 0xb2, 0x89, 0x7d,
+ 0x31, 0xfe, 0xe4, 0xa6, 0x1d, 0xdd, 0xd3, 0x3a, 0x6d, 0xbe, 0x74, 0xad, 0xa5, 0xa8, 0xd7, 0x66,
+ 0x2f, 0x0f, 0x3e, 0x09, 0x08, 0xe5, 0xab, 0x95, 0xc5, 0x62, 0x50, 0xdf, 0x80, 0x75, 0x27, 0x30,
+ 0xa7, 0xae, 0x63, 0x3a, 0xbc, 0x23, 0x3f, 0x81, 0xad, 0x33, 0x42, 0xf1, 0x8c, 0xd7, 0xec, 0x5f,
+ 0xfa, 0x50, 0xe7, 0xe2, 0xa4, 0x1b, 0x25, 0x79, 0xee, 0x03, 0xb0, 0x1e, 0xc9, 0x1c, 0x59, 0x97,
+ 0x64, 0x24, 0x9f, 0x20, 0xc7, 0x24, 0xe7, 0x4c, 0xa0, 0xd8, 0x02, 0x97, 0xb3, 0xe5, 0x38, 0x5b,
+ 0xcf, 0x35, 0xfe, 0x63, 0x1d, 0xf6, 0x92, 0x8b, 0x2d, 0xc3, 0xeb, 0x6e, 0xc2, 0xb1, 0xd6, 0x52,
+ 0xe8, 0xda, 0x9d, 0xb8, 0x6b, 0xad, 0x94, 0x74, 0x0e, 0x3d, 0x81, 0x8d, 0x89, 0x17, 0x38, 0xac,
+ 0x35, 0x35, 0x6d, 0xdf, 0xb9, 0x12, 0x0b, 0x92, 0x69, 0xa5, 0x71, 0x41, 0xc9, 0x1b, 0x4c, 0xcc,
+ 0x80, 0x2e, 0xb9, 0xb6, 0x34, 0xe0, 0x0a, 0x07, 0x2e, 0xe3, 0x82, 0x92, 0x0b, 0xe0, 0x77, 0x50,
+ 0xb2, 0xc9, 0xc8, 0x19, 0x3b, 0x94, 0xf8, 0xe6, 0xd8, 0x09, 0x02, 0xd3, 0x26, 0x54, 0x1e, 0x3b,
+ 0xab, 0xdc, 0x64, 0x05, 0xef, 0x85, 0x88, 0xd7, 0x4e, 0x10, 0x34, 0x94, 0x1e, 0x3d, 0x04, 0xb8,
+ 0x74, 0x26, 0x26, 0x61, 0x75, 0x52, 0x14, 0xce, 0x4c, 0x6b, 0x15, 0xe7, 0x2e, 0x9d, 0x09, 0x2f,
+ 0x9d, 0x01, 0xba, 0x0f, 0x6c, 0xc0, 0x76, 0x48, 0xd6, 0xca, 0x4c, 0x2b, 0x83, 0xb3, 0x97, 0xce,
+ 0x64, 0xc0, 0x24, 0xac, 0xce, 0x5c, 0x91, 0xa1, 0x19, 0xa6, 0x88, 0x19, 0x7c, 0x18, 0x5f, 0x7a,
+ 0x23, 0x51, 0x2b, 0x33, 0xad, 0x35, 0xbc, 0x7d, 0x45, 0x86, 0x27, 0x4a, 0xdb, 0x13, 0x4a, 0x56,
+ 0x2f, 0x84, 0x95, 0x4d, 0x7e, 0x66, 0xf1, 0x1c, 0xd9, 0xf3, 0xca, 0x99, 0x69, 0x65, 0xf1, 0x2e,
+ 0xb7, 0x93, 0xfa, 0x90, 0x00, 0xfd, 0x1e, 0x0e, 0xe2, 0x96, 0xb1, 0x04, 0xe1, 0x85, 0x34, 0xd3,
+ 0xca, 0xe1, 0xbb, 0xba, 0xf5, 0x40, 0x87, 0xa0, 0x2f, 0xa1, 0x10, 0x63, 0xe0, 0x75, 0x34, 0xd3,
+ 0x02, 0xbc, 0xae, 0xdb, 0xa0, 0x17, 0xb0, 0x1d, 0x7f, 0x30, 0xb1, 0x02, 0xeb, 0x1c, 0x9c, 0xc7,
+ 0x5b, 0xfa, 0x63, 0x89, 0xa5, 0x78, 0x0a, 0x9b, 0xb3, 0x6b, 0x32, 0x36, 0xdf, 0x91, 0x0f, 0x6a,
+ 0x3d, 0x0b, 0x1c, 0xbd, 0x8e, 0x0b, 0x4c, 0xf1, 0x8a, 0x7c, 0x88, 0xd6, 0x94, 0x23, 0x47, 0x5e,
+ 0x20, 0x0a, 0x64, 0xa6, 0x55, 0xc0, 0x59, 0x26, 0x3a, 0xf7, 0x02, 0x4e, 0xe4, 0xcf, 0xcc, 0xc9,
+ 0xc8, 0xb3, 0xc6, 0x81, 0x60, 0x2a, 0x6d, 0x72, 0xd0, 0x06, 0x2e, 0xf8, 0xb3, 0x0b, 0x2e, 0x17,
+ 0xaf, 0xde, 0x5f, 0x03, 0x8a, 0x90, 0xae, 0xe7, 0x9a, 0x8e, 0x3d, 0x22, 0xa5, 0x22, 0x07, 0x6f,
+ 0xe2, 0x4d, 0x05, 0xee, 0x78, 0x6e, 0xdb, 0x1e, 0xf1, 0x70, 0xf5, 0x67, 0xa6, 0x37, 0x1e, 0x3a,
+ 0xa5, 0x2d, 0x8e, 0x29, 0xe2, 0x8c, 0x3f, 0x63, 0xb9, 0xcf, 0x54, 0x54, 0xaa, 0x10, 0x57, 0x6d,
+ 0xe1, 0x0c, 0x15, 0xaa, 0xef, 0xe0, 0xae, 0xb4, 0x32, 0x65, 0x15, 0x37, 0x87, 0xfe, 0x50, 0x3a,
+ 0xb6, 0xcd, 0xc1, 0x08, 0xef, 0x0a, 0x1e, 0x79, 0x24, 0x9e, 0xc8, 0x93, 0x17, 0x1d, 0x40, 0xd6,
+ 0x9f, 0x99, 0x97, 0xbc, 0xf2, 0xee, 0x70, 0xe8, 0x76, 0xf4, 0x32, 0xf0, 0x10, 0x80, 0x79, 0x2f,
+ 0x0f, 0xd7, 0x5d, 0xae, 0xde, 0xd1, 0x3b, 0xfe, 0x03, 0xc8, 0x52, 0x65, 0xbd, 0xc7, 0xd5, 0xbb,
+ 0xd1, 0x4b, 0xc6, 0x43, 0x00, 0x1a, 0x59, 0xdf, 0xe1, 0xea, 0x3d, 0xfd, 0x6d, 0xe2, 0x57, 0xb0,
+ 0x7e, 0x49, 0x7c, 0xd3, 0x27, 0xf2, 0x42, 0xa3, 0xc4, 0x21, 0x77, 0x70, 0xfe, 0x92, 0x55, 0x04,
+ 0x79, 0xa5, 0xf1, 0x05, 0xe4, 0x47, 0x43, 0xfb, 0x5a, 0x6d, 0xd8, 0x5d, 0x8e, 0x29, 0x61, 0x60,
+ 0x42, 0xb9, 0x5b, 0xcc, 0x4d, 0xdb, 0x51, 0x88, 0x7d, 0x8e, 0xb8, 0x8b, 0x73, 0xbe, 0xed, 0x48,
+ 0xc0, 0x03, 0xc8, 0x51, 0x67, 0x4c, 0x02, 0x6a, 0x8d, 0x27, 0xa5, 0x03, 0x9e, 0xed, 0xfb, 0x38,
+ 0x12, 0xd5, 0xd7, 0x01, 0x9c, 0xc0, 0x94, 0x85, 0xa2, 0x9e, 0x87, 0x9c, 0x13, 0x98, 0xa2, 0x36,
+ 0xd4, 0xb7, 0x61, 0xcb, 0x09, 0xcc, 0x78, 0x3d, 0x90, 0xc2, 0x78, 0xee, 0xd7, 0xef, 0xc3, 0x81,
+ 0xc3, 0x12, 0x7b, 0x71, 0x9e, 0xd7, 0x37, 0xa1, 0xe0, 0x04, 0x66, 0x94, 0xca, 0xb2, 0xb0, 0x86,
+ 0xa9, 0x5b, 0xdf, 0x87, 0x92, 0x13, 0x98, 0x0b, 0x73, 0xb5, 0x7e, 0x0f, 0xf6, 0x43, 0xdd, 0x5c,
+ 0x46, 0xd6, 0x1f, 0xc1, 0x83, 0x39, 0x6d, 0x2c, 0xeb, 0xea, 0x08, 0x8a, 0x49, 0x44, 0xbd, 0x04,
+ 0x7b, 0x73, 0xf3, 0x09, 0x4f, 0x76, 0x00, 0x39, 0x81, 0x99, 0x48, 0x15, 0xe9, 0x6f, 0x98, 0x16,
+ 0x12, 0x95, 0xc8, 0x83, 0xfa, 0x1d, 0xd8, 0x8d, 0x49, 0x55, 0xcc, 0xcb, 0x35, 0x96, 0x71, 0x2a,
+ 0x47, 0x32, 0xa0, 0xeb, 0x0f, 0xe0, 0x5e, 0xa4, 0x9b, 0x8f, 0xe1, 0x7a, 0x01, 0xf2, 0x42, 0xcf,
+ 0x23, 0x4d, 0x2e, 0x65, 0x14, 0x99, 0x52, 0x4f, 0xe3, 0xfa, 0x28, 0xf6, 0xea, 0x5b, 0xb0, 0xc9,
+ 0x96, 0x5a, 0x8b, 0xb5, 0x7a, 0x11, 0x36, 0x9c, 0xc0, 0xd4, 0x22, 0x4b, 0xb1, 0x86, 0x81, 0x24,
+ 0x1f, 0x38, 0x8c, 0x12, 0xe3, 0xef, 0x56, 0xe1, 0xe0, 0x96, 0x63, 0x18, 0x3d, 0x84, 0x3c, 0xeb,
+ 0xc0, 0x4d, 0x12, 0x35, 0xe5, 0x99, 0x5b, 0x9a, 0xf2, 0x4c, 0xd8, 0x94, 0xef, 0x41, 0xe6, 0x8a,
+ 0x71, 0x89, 0x3e, 0x25, 0x83, 0xe5, 0x08, 0x7d, 0xa5, 0xb5, 0xe4, 0xa6, 0x44, 0xf0, 0x13, 0x06,
+ 0x6f, 0x86, 0xf2, 0xd3, 0x10, 0x1a, 0x76, 0xde, 0x0a, 0xba, 0x2a, 0xa0, 0xa1, 0x5c, 0x42, 0x9f,
+ 0x01, 0x0a, 0x57, 0x96, 0xd8, 0x0a, 0xcc, 0x0f, 0x16, 0x5c, 0x8c, 0x3a, 0xf2, 0x88, 0x38, 0x6c,
+ 0xbc, 0x15, 0x76, 0x4d, 0x10, 0x87, 0x72, 0x09, 0x7d, 0x12, 0xf5, 0xe3, 0x0a, 0xc9, 0xcf, 0x18,
+ 0xbc, 0xa1, 0xc4, 0x12, 0xf8, 0x14, 0x8a, 0x42, 0x6f, 0xbe, 0x3c, 0x34, 0xb5, 0x7e, 0x3c, 0x83,
+ 0x37, 0x84, 0xfc, 0xe5, 0x61, 0xd8, 0x24, 0xdf, 0x51, 0xc8, 0x23, 0x93, 0x7a, 0x66, 0xa5, 0xfa,
+ 0xad, 0xa9, 0x75, 0xe4, 0x19, 0xbc, 0x2d, 0x0d, 0x44, 0x43, 0xde, 0x55, 0x4d, 0x72, 0x49, 0x5a,
+ 0x55, 0xaa, 0xc7, 0xcc, 0xac, 0x7a, 0x74, 0xa4, 0xcc, 0xf8, 0x59, 0x82, 0x77, 0x84, 0x3e, 0xd1,
+ 0x92, 0x47, 0x76, 0xd5, 0xa3, 0x97, 0xcc, 0xee, 0xa8, 0x52, 0x31, 0xb5, 0xae, 0x3c, 0xb4, 0x53,
+ 0x4d, 0x79, 0x57, 0x35, 0xd7, 0x77, 0xa5, 0xdd, 0x51, 0xa5, 0xca, 0xdd, 0x7c, 0x51, 0xfd, 0xc6,
+ 0xd4, 0xfa, 0xf2, 0x0c, 0xde, 0x15, 0x80, 0xb0, 0x2d, 0x97, 0x96, 0xdf, 0xc1, 0xbe, 0xf2, 0xf4,
+ 0x45, 0xf5, 0x90, 0x9b, 0x1e, 0x55, 0x8e, 0x4d, 0xad, 0x33, 0xcf, 0xe0, 0x3d, 0xe9, 0x6b, 0xd8,
+ 0x98, 0x0b, 0x5b, 0xe3, 0x7f, 0xd2, 0xf0, 0xf8, 0x63, 0x8d, 0xa1, 0xec, 0x82, 0xea, 0x90, 0x9d,
+ 0x4e, 0x02, 0xea, 0x13, 0x6b, 0x2c, 0x5b, 0x76, 0xfd, 0xca, 0xea, 0x36, 0x86, 0xd0, 0x0e, 0x9d,
+ 0x02, 0xd8, 0xde, 0xcf, 0xae, 0x64, 0x49, 0x7f, 0x16, 0x8b, 0x66, 0x89, 0xfe, 0x36, 0x05, 0x8f,
+ 0x79, 0x9a, 0x13, 0x09, 0x16, 0xb1, 0x62, 0x12, 0x09, 0x37, 0x27, 0x63, 0xf3, 0xca, 0xf3, 0xc7,
+ 0x16, 0x95, 0x57, 0xa6, 0xc7, 0x89, 0x37, 0xf2, 0x8f, 0x3f, 0x6f, 0xf9, 0x94, 0xdb, 0xe3, 0x2f,
+ 0xbc, 0x9b, 0xb1, 0x02, 0x62, 0xbc, 0x80, 0x8c, 0xf8, 0x8b, 0x5f, 0x6e, 0xb6, 0xda, 0xb8, 0xff,
+ 0x93, 0xd9, 0xff, 0xa1, 0x6b, 0xd6, 0xdb, 0x7d, 0x71, 0x9d, 0xda, 0x6b, 0xff, 0xd8, 0xff, 0xc9,
+ 0x3c, 0xed, 0x0e, 0x30, 0x97, 0xa5, 0x0c, 0x0a, 0x6b, 0xb2, 0x69, 0xd5, 0xda, 0xd1, 0x94, 0xd6,
+ 0x8e, 0xb2, 0x74, 0x0e, 0xa8, 0x45, 0xa7, 0x81, 0xec, 0x52, 0xe5, 0x88, 0xd5, 0x87, 0x2b, 0xcb,
+ 0x19, 0x99, 0x3e, 0xb1, 0x02, 0xcf, 0xe5, 0x4f, 0x97, 0xc3, 0xc0, 0x44, 0x98, 0x4b, 0xd0, 0x5d,
+ 0x7e, 0x16, 0xf3, 0x3b, 0x18, 0x9e, 0xe7, 0x29, 0x76, 0x12, 0xf3, 0xa9, 0x0c, 0x22, 0x5e, 0x27,
+ 0xb4, 0x86, 0x59, 0x6e, 0xed, 0x47, 0x3a, 0xe6, 0xaf, 0x35, 0xca, 0xf4, 0xa3, 0xe5, 0xa7, 0xf9,
+ 0x2a, 0xd2, 0x96, 0x53, 0x91, 0x85, 0xd3, 0xfc, 0x83, 0xb8, 0x0a, 0x4d, 0x4e, 0xf2, 0x99, 0xed,
+ 0xbd, 0xb6, 0x02, 0xcb, 0xb7, 0xad, 0xc0, 0xca, 0xad, 0x2b, 0xb0, 0x1a, 0x5f, 0x81, 0x3f, 0x15,
+ 0x57, 0x9d, 0xee, 0x94, 0x05, 0x40, 0x7f, 0x86, 0x67, 0x3d, 0x6a, 0xd1, 0xf0, 0xad, 0xea, 0xf3,
+ 0xde, 0x48, 0xff, 0x6b, 0x19, 0x0e, 0x16, 0x92, 0xc9, 0xe7, 0xfd, 0x0a, 0xb6, 0x2e, 0xad, 0x80,
+ 0xb0, 0x23, 0xc4, 0xf2, 0x55, 0x2d, 0x93, 0xef, 0xa5, 0x4c, 0xd1, 0x9f, 0xd5, 0xfc, 0xb0, 0x3e,
+ 0x0a, 0xa8, 0x3f, 0x33, 0xad, 0x77, 0x0a, 0x9a, 0x8e, 0xa0, 0x78, 0x56, 0x7b, 0x27, 0xa1, 0x65,
+ 0xd8, 0x51, 0xac, 0xae, 0xa7, 0x11, 0x2f, 0xcb, 0x5b, 0x16, 0x4e, 0xdc, 0xf1, 0x42, 0x6a, 0x85,
+ 0xf7, 0x05, 0xfe, 0x9d, 0x7e, 0x04, 0x48, 0x3c, 0x66, 0xf8, 0x77, 0x61, 0xfd, 0x2d, 0x92, 0x19,
+ 0x8d, 0x3b, 0x2d, 0x5e, 0x52, 0x0b, 0x64, 0x46, 0x35, 0x9f, 0x25, 0x30, 0xe6, 0x72, 0x26, 0x04,
+ 0x6a, 0x1e, 0x3f, 0x83, 0x6d, 0xc9, 0x18, 0x73, 0x58, 0x5c, 0xc8, 0x6c, 0x72, 0x52, 0xcd, 0x5f,
+ 0x89, 0x4e, 0xba, 0x9b, 0x0d, 0xd1, 0x31, 0x6f, 0x8f, 0xe0, 0x8e, 0x3c, 0xfe, 0xcd, 0xa1, 0x78,
+ 0x6b, 0x33, 0x7d, 0x42, 0x7d, 0x87, 0xa8, 0xbb, 0x99, 0x1d, 0xd1, 0xdd, 0xca, 0x57, 0x3a, 0x2c,
+ 0x74, 0xe8, 0x5b, 0x28, 0x25, 0xcd, 0xd8, 0x09, 0xed, 0x4d, 0xc3, 0x4b, 0x9a, 0xdd, 0x98, 0x5d,
+ 0x5f, 0x2a, 0x8d, 0xd7, 0x70, 0x3f, 0xda, 0xf2, 0xda, 0x90, 0x35, 0x6e, 0xfc, 0xb3, 0xe0, 0x2f,
+ 0x0c, 0xa1, 0xbf, 0x86, 0x1c, 0x37, 0x6f, 0x58, 0xd4, 0x62, 0x61, 0x3b, 0x1c, 0x59, 0x41, 0xa0,
+ 0x12, 0xa4, 0x80, 0xd7, 0xf8, 0xb8, 0x6d, 0xb3, 0x90, 0x77, 0x5c, 0xf1, 0x01, 0x4c, 0xa5, 0x49,
+ 0x01, 0x83, 0x12, 0xb5, 0x6d, 0x84, 0x60, 0xc5, 0xb5, 0xc6, 0x44, 0x66, 0x0a, 0xff, 0x9b, 0xbd,
+ 0xc9, 0xdb, 0x24, 0x18, 0xfa, 0xce, 0x84, 0xbf, 0x22, 0x8a, 0x3c, 0xd1, 0x45, 0xc6, 0x9f, 0xc3,
+ 0x83, 0x9b, 0x9e, 0x46, 0xc6, 0xf0, 0x6f, 0xa0, 0x60, 0x71, 0xb9, 0xc9, 0x3f, 0x77, 0xb2, 0xf8,
+ 0x65, 0xe9, 0xbf, 0xa3, 0xa5, 0x7f, 0xf8, 0x00, 0x78, 0xdd, 0xd2, 0x28, 0x8c, 0xff, 0xcc, 0xc0,
+ 0xe6, 0x19, 0xa1, 0xfc, 0x3b, 0xa4, 0x5a, 0x9d, 0xdf, 0x26, 0x3e, 0xec, 0xe5, 0xab, 0xf7, 0xe3,
+ 0x75, 0x39, 0xf1, 0x09, 0xb1, 0xb5, 0x14, 0x7d, 0xf9, 0x43, 0xbf, 0x85, 0xb5, 0xa9, 0xf8, 0xcc,
+ 0x25, 0x0f, 0x8e, 0x87, 0x37, 0x7f, 0x06, 0x53, 0xd6, 0xca, 0x02, 0xd5, 0x20, 0xef, 0x89, 0x0f,
+ 0x1c, 0x9c, 0x60, 0x79, 0xd1, 0xe4, 0x89, 0x2f, 0x20, 0xad, 0x25, 0xac, 0xdb, 0xa0, 0x36, 0x6c,
+ 0x78, 0xee, 0x54, 0xbb, 0x0b, 0xe7, 0x4b, 0xba, 0xc8, 0x8d, 0xf8, 0x95, 0x79, 0x6b, 0x09, 0x27,
+ 0x0c, 0x11, 0x86, 0x02, 0xa1, 0x6f, 0xa3, 0x8b, 0x59, 0x9e, 0x61, 0xf9, 0xea, 0xaf, 0x3f, 0xfd,
+ 0xda, 0xb8, 0xb5, 0x84, 0xe3, 0x14, 0xe8, 0x4f, 0xf8, 0x5d, 0x95, 0x54, 0xf3, 0x4c, 0xcc, 0x57,
+ 0x0f, 0xe6, 0x08, 0xa3, 0xcb, 0xb3, 0xd6, 0x12, 0xd6, 0x0c, 0x50, 0x1d, 0xc0, 0xe3, 0x9e, 0xf3,
+ 0x27, 0x5b, 0xe3, 0xe6, 0x8f, 0xe6, 0xcc, 0x13, 0xf7, 0x50, 0x8c, 0x23, 0xb2, 0x42, 0xe7, 0xb0,
+ 0xc6, 0x4a, 0x37, 0x23, 0xc8, 0x72, 0x82, 0x17, 0x9f, 0x71, 0xea, 0x86, 0x5b, 0x26, 0x29, 0xd0,
+ 0x31, 0xa8, 0xb2, 0xcd, 0x73, 0x39, 0x5f, 0xbd, 0x17, 0x67, 0x8b, 0xdf, 0xfa, 0x30, 0x4b, 0x09,
+ 0x47, 0xaf, 0x60, 0xdd, 0x13, 0x41, 0xcd, 0x2b, 0x32, 0x4f, 0xe9, 0x7c, 0xf5, 0xcb, 0xb9, 0xa7,
+ 0x59, 0x74, 0x08, 0xb4, 0x96, 0x70, 0xcc, 0x18, 0xd5, 0x00, 0xbc, 0xf0, 0xc4, 0xe4, 0x9d, 0xdf,
+ 0xfc, 0x96, 0x8f, 0xe6, 0x9d, 0xd1, 0x8c, 0x50, 0x1f, 0x36, 0x3d, 0x77, 0xaa, 0x27, 0x18, 0xef,
+ 0x04, 0xf3, 0xd5, 0xa7, 0x0b, 0x5d, 0x5a, 0x50, 0x57, 0x5a, 0x4b, 0x38, 0x49, 0x51, 0xcf, 0xc1,
+ 0x9a, 0x2f, 0xb4, 0xc6, 0x1f, 0x80, 0xdf, 0xaf, 0xca, 0x5c, 0x93, 0xb9, 0xfb, 0x5d, 0x78, 0x7e,
+ 0x8a, 0x8f, 0x12, 0x46, 0x7c, 0xb2, 0x18, 0xb8, 0xdc, 0xe3, 0xc8, 0xf0, 0x8c, 0x6d, 0x42, 0x8e,
+ 0xf8, 0xbe, 0x38, 0x4f, 0xe5, 0xf7, 0xc9, 0x27, 0xb7, 0x99, 0xf3, 0x76, 0x5f, 0xc0, 0x71, 0x64,
+ 0x89, 0x7e, 0xa7, 0xe5, 0xbb, 0x48, 0xb9, 0x07, 0x37, 0xe5, 0xbb, 0x20, 0x8a, 0x25, 0xfc, 0xef,
+ 0xa2, 0x84, 0x5f, 0xb9, 0x21, 0x1e, 0x13, 0xdf, 0xbd, 0xf5, 0x8c, 0x7f, 0x05, 0xeb, 0x13, 0x91,
+ 0xcd, 0xd4, 0x25, 0x7e, 0x20, 0x53, 0xec, 0xcb, 0x5b, 0x53, 0x5e, 0xe3, 0x89, 0x19, 0xa3, 0xef,
+ 0xe7, 0x72, 0x5f, 0x24, 0xd8, 0x93, 0x8f, 0xe4, 0xbe, 0x46, 0x98, 0xac, 0x01, 0x97, 0xb0, 0x15,
+ 0x4b, 0x60, 0x2d, 0xef, 0xaa, 0x9f, 0x5e, 0x07, 0xb4, 0x09, 0xe6, 0xe9, 0x50, 0x33, 0x56, 0x13,
+ 0x44, 0x4e, 0xfe, 0xea, 0x96, 0x9a, 0xa0, 0xb1, 0xe9, 0xb5, 0xe1, 0x15, 0x7f, 0xfa, 0x0b, 0xcf,
+ 0x55, 0xeb, 0x24, 0x13, 0xf2, 0x8b, 0x5b, 0xea, 0x43, 0xec, 0xb9, 0x35, 0x53, 0x34, 0xe0, 0x17,
+ 0xcc, 0x21, 0x93, 0xc8, 0xcd, 0xca, 0x67, 0xb7, 0xe7, 0xbc, 0x3a, 0x47, 0x3c, 0xe8, 0x37, 0x51,
+ 0xb5, 0xc8, 0x2f, 0x2a, 0xee, 0x89, 0x6e, 0x54, 0x2f, 0x17, 0xe7, 0x89, 0x72, 0xb1, 0x3e, 0xf7,
+ 0x5a, 0x72, 0x4b, 0x9b, 0x37, 0x57, 0x2f, 0xea, 0xb1, 0x7a, 0x51, 0x58, 0x18, 0xb8, 0xa3, 0x05,
+ 0xee, 0xe8, 0x05, 0x63, 0x30, 0x5f, 0x30, 0x36, 0x38, 0xd1, 0x57, 0x9f, 0x50, 0x30, 0x42, 0xc6,
+ 0x24, 0x87, 0x51, 0x81, 0x8c, 0xc8, 0x73, 0xb4, 0x03, 0xc5, 0x5e, 0xbf, 0xd6, 0x1f, 0xf4, 0x62,
+ 0x3f, 0x6f, 0xc8, 0x40, 0xba, 0xfb, 0xaa, 0x98, 0xe2, 0x3f, 0x58, 0xc2, 0xb8, 0x8b, 0x8b, 0x69,
+ 0xe3, 0x1f, 0x53, 0x90, 0xd7, 0x92, 0x9b, 0x19, 0xe2, 0x66, 0xad, 0xd7, 0xed, 0xc4, 0x0c, 0x37,
+ 0x21, 0x3f, 0xe8, 0xf4, 0x06, 0x17, 0x17, 0x5d, 0xdc, 0xe7, 0xbf, 0x8d, 0xd8, 0x85, 0xad, 0x76,
+ 0xe7, 0x4d, 0xed, 0xbc, 0xdd, 0x30, 0x1b, 0xcd, 0x37, 0xed, 0x93, 0xa6, 0xd9, 0x6e, 0x14, 0xd3,
+ 0xba, 0x98, 0x41, 0xcd, 0xfe, 0x4f, 0x17, 0xcd, 0xe2, 0x32, 0xca, 0xc3, 0x5a, 0xbf, 0xfd, 0xba,
+ 0xd9, 0x1d, 0xf4, 0x8b, 0x2b, 0x6c, 0x06, 0x85, 0xc1, 0xcd, 0xef, 0x05, 0x64, 0x95, 0xbd, 0x44,
+ 0xb5, 0x3b, 0xfd, 0x26, 0xee, 0xd4, 0xce, 0x4d, 0xe1, 0x5b, 0x46, 0xc8, 0xf4, 0x49, 0x8a, 0x6b,
+ 0x75, 0x80, 0xac, 0x2f, 0x57, 0xc0, 0x78, 0x03, 0x9b, 0xbd, 0x44, 0x03, 0x92, 0xfc, 0x89, 0x57,
+ 0xea, 0x93, 0x7f, 0xe2, 0xa5, 0x55, 0xdb, 0xff, 0x4d, 0x41, 0xb1, 0xf7, 0x39, 0xd5, 0xb6, 0xf7,
+ 0xff, 0xab, 0xb6, 0xbd, 0x4f, 0xab, 0xb6, 0xbf, 0x64, 0x7b, 0x0f, 0x7f, 0xc9, 0xee, 0x1a, 0x0e,
+ 0xec, 0xf6, 0x1c, 0xf7, 0x7a, 0x44, 0x92, 0xfd, 0xdd, 0x3e, 0x64, 0xa9, 0xe5, 0x5f, 0x13, 0x1a,
+ 0x7e, 0x39, 0x0a, 0xc7, 0xe8, 0x30, 0x5c, 0x40, 0xd9, 0xbe, 0xed, 0x2f, 0x3c, 0x50, 0x38, 0x02,
+ 0x87, 0x6b, 0xfd, 0x3d, 0xec, 0x25, 0xa7, 0x92, 0x0b, 0xfe, 0x6d, 0xb4, 0xd3, 0x72, 0x1b, 0x0f,
+ 0x6e, 0x39, 0xa1, 0x70, 0x14, 0x16, 0xa1, 0xf7, 0xbd, 0x3f, 0x96, 0xf7, 0xbd, 0x8f, 0x7a, 0xdf,
+ 0xfb, 0x3c, 0xef, 0x7b, 0x37, 0x7a, 0x5f, 0xfd, 0xe7, 0x14, 0xe4, 0x9a, 0x0a, 0x88, 0x30, 0xe4,
+ 0xcf, 0x08, 0x6d, 0xce, 0x04, 0x1c, 0xe9, 0x75, 0x66, 0xe1, 0x0e, 0xed, 0x7f, 0x71, 0x0b, 0x42,
+ 0xba, 0x86, 0x21, 0xdf, 0xbb, 0x95, 0xb3, 0xf7, 0x51, 0xce, 0xa4, 0xff, 0x75, 0x0c, 0xf7, 0x3d,
+ 0xff, 0xba, 0xec, 0x4d, 0x88, 0x3b, 0xf4, 0x7c, 0xbb, 0x2c, 0x7e, 0xc2, 0x19, 0xd9, 0xfd, 0x59,
+ 0xe5, 0xda, 0xa1, 0x6f, 0xa7, 0x97, 0xe5, 0xa1, 0x37, 0x7e, 0xae, 0x50, 0xcf, 0x05, 0xea, 0x6b,
+ 0xf9, 0x43, 0xcf, 0xf7, 0x47, 0xcf, 0xaf, 0xbd, 0xe8, 0x97, 0xa1, 0x97, 0x19, 0x2e, 0xff, 0xe6,
+ 0xff, 0x02, 0x00, 0x00, 0xff, 0xff, 0x1c, 0x44, 0x89, 0x74, 0x3b, 0x2a, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.
diff --git a/vendor/modules.txt b/vendor/modules.txt
index 712bb66..76f02e2 100644
--- a/vendor/modules.txt
+++ b/vendor/modules.txt
@@ -165,7 +165,7 @@
github.com/opencord/voltha-lib-go/v7/pkg/platform
github.com/opencord/voltha-lib-go/v7/pkg/probe
github.com/opencord/voltha-lib-go/v7/pkg/version
-# github.com/opencord/voltha-protos/v5 v5.3.8
+# github.com/opencord/voltha-protos/v5 v5.4.1
## explicit
github.com/opencord/voltha-protos/v5/go/adapter_service
github.com/opencord/voltha-protos/v5/go/common