Constant chirpstack_api::api::DESCRIPTOR

source ·
pub const DESCRIPTOR: &[u8] = b"\n\xd3/\n\x1fgoogle/protobuf/timestamp.proto\x12\x0fgoogle.protobuf\";\n\tTimestamp\x12\x18\n\x07seconds\x18\x01 \x01(\x03R\x07seconds\x12\x14\n\x05nanos\x18\x02 \x01(\x05R\x05nanosB~\n\x13com.google.protobufB\x0eTimestampProtoP\x01Z+github.com/golang/protobuf/ptypes/timestamp\xf8\x01\x01\xa2\x02\x03GPB\xaa\x02\x1eGoogle.Protobuf.WellKnownTypesJ\xd9-\n\x07\x12\x05\x1e\x00\x89\x01\x01\n\xcc\x0c\n\x01\x0c\x12\x03\x1e\x00\x122\xc1\x0c Protocol Buffers - Google\'s data interchange format\n Copyright 2008 Google Inc.  All rights reserved.\n https://developers.google.com/protocol-buffers/\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n\n     * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n     * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n     * Neither the name of Google Inc. nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n\x08\n\x01\x02\x12\x03 \x00\x18\n\x08\n\x01\x08\x12\x03\"\x00;\n\t\n\x02\x08%\x12\x03\"\x00;\n\x08\n\x01\x08\x12\x03#\x00\x1f\n\t\n\x02\x08\x1f\x12\x03#\x00\x1f\n\x08\n\x01\x08\x12\x03$\x00B\n\t\n\x02\x08\x0b\x12\x03$\x00B\n\x08\n\x01\x08\x12\x03%\x00,\n\t\n\x02\x08\x01\x12\x03%\x00,\n\x08\n\x01\x08\x12\x03&\x00/\n\t\n\x02\x08\x08\x12\x03&\x00/\n\x08\n\x01\x08\x12\x03\'\x00\"\n\t\n\x02\x08\n\x12\x03\'\x00\"\n\x08\n\x01\x08\x12\x03(\x00!\n\t\n\x02\x08$\x12\x03(\x00!\n\xf3\x1b\n\x02\x04\x00\x12\x05~\x00\x89\x01\x01\x1a\xe5\x1b A Timestamp represents a point in time independent of any time zone or local\n calendar, encoded as a count of seconds and fractions of seconds at\n nanosecond resolution. The count is relative to an epoch at UTC midnight on\n January 1, 1970, in the proleptic Gregorian calendar which extends the\n Gregorian calendar backwards to year one.\n\n All minutes are 60 seconds long. Leap seconds are \"smeared\" so that no leap\n second table is needed for interpretation, using a [24-hour linear\n smear](https://developers.google.com/time/smear).\n\n The range is from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z. By\n restricting to that range, we ensure that we can convert to and from [RFC\n 3339](https://www.ietf.org/rfc/rfc3339.txt) date strings.\n\n # Examples\n\n Example 1: Compute Timestamp from POSIX `time()`.\n\n     Timestamp timestamp;\n     timestamp.set_seconds(time(NULL));\n     timestamp.set_nanos(0);\n\n Example 2: Compute Timestamp from POSIX `gettimeofday()`.\n\n     struct timeval tv;\n     gettimeofday(&tv, NULL);\n\n     Timestamp timestamp;\n     timestamp.set_seconds(tv.tv_sec);\n     timestamp.set_nanos(tv.tv_usec * 1000);\n\n Example 3: Compute Timestamp from Win32 `GetSystemTimeAsFileTime()`.\n\n     FILETIME ft;\n     GetSystemTimeAsFileTime(&ft);\n     UINT64 ticks = (((UINT64)ft.dwHighDateTime) << 32) | ft.dwLowDateTime;\n\n     // A Windows tick is 100 nanoseconds. Windows epoch 1601-01-01T00:00:00Z\n     // is 11644473600 seconds before Unix epoch 1970-01-01T00:00:00Z.\n     Timestamp timestamp;\n     timestamp.set_seconds((INT64) ((ticks / 10000000) - 11644473600LL));\n     timestamp.set_nanos((INT32) ((ticks % 10000000) * 100));\n\n Example 4: Compute Timestamp from Java `System.currentTimeMillis()`.\n\n     long millis = System.currentTimeMillis();\n\n     Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000)\n         .setNanos((int) ((millis % 1000) * 1000000)).build();\n\n\n Example 5: Compute Timestamp from current time in Python.\n\n     timestamp = Timestamp()\n     timestamp.GetCurrentTime()\n\n # JSON Mapping\n\n In JSON format, the Timestamp type is encoded as a string in the\n [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) format. That is, the\n format is \"{year}-{month}-{day}T{hour}:{min}:{sec}[.{frac_sec}]Z\"\n where {year} is always expressed using four digits while {month}, {day},\n {hour}, {min}, and {sec} are zero-padded to two digits each. The fractional\n seconds, which can go up to 9 digits (i.e. up to 1 nanosecond resolution),\n are optional. The \"Z\" suffix indicates the timezone (\"UTC\"); the timezone\n is required. A proto3 JSON serializer should always use UTC (as indicated by\n \"Z\") when printing the Timestamp type and a proto3 JSON parser should be\n able to accept both UTC and other timezones (as indicated by an offset).\n\n For example, \"2017-01-15T01:30:15.01Z\" encodes 15.01 seconds past\n 01:30 UTC on January 15, 2017.\n\n In JavaScript, one can convert a Date object to this format using the\n standard\n [toISOString()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString)\n method. In Python, a standard `datetime.datetime` object can be converted\n to this format using\n [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) with\n the time format spec \'%Y-%m-%dT%H:%M:%S.%fZ\'. Likewise, in Java, one can use\n the Joda Time\'s [`ISODateTimeFormat.dateTime()`](\n http://www.joda.org/joda-time/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime%2D%2D\n ) to obtain a formatter capable of generating timestamps in this format.\n\n\n\n\n\n\x03\x04\x00\x01\x12\x03~\x08\x11\n\x9d\x01\n\x04\x04\x00\x02\x00\x12\x04\x82\x01\x02\x14\x1a\x8e\x01 Represents seconds of UTC time since Unix epoch\n 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to\n 9999-12-31T23:59:59Z inclusive.\n\n\r\n\x05\x04\x00\x02\x00\x05\x12\x04\x82\x01\x02\x07\n\r\n\x05\x04\x00\x02\x00\x01\x12\x04\x82\x01\x08\x0f\n\r\n\x05\x04\x00\x02\x00\x03\x12\x04\x82\x01\x12\x13\n\xe5\x01\n\x04\x04\x00\x02\x01\x12\x04\x88\x01\x02\x12\x1a\xd6\x01 Non-negative fractions of a second at nanosecond resolution. Negative\n second values with fractions must still have non-negative nanos values\n that count forward in time. Must be from 0 to 999,999,999\n inclusive.\n\n\r\n\x05\x04\x00\x02\x01\x05\x12\x04\x88\x01\x02\x07\n\r\n\x05\x04\x00\x02\x01\x01\x12\x04\x88\x01\x08\r\n\r\n\x05\x04\x00\x02\x01\x03\x12\x04\x88\x01\x10\x11b\x06proto3\n\xb8\x12\n\x1bgoogle/protobuf/empty.proto\x12\x0fgoogle.protobuf\"\x07\n\x05EmptyBv\n\x13com.google.protobufB\nEmptyProtoP\x01Z\'github.com/golang/protobuf/ptypes/empty\xf8\x01\x01\xa2\x02\x03GPB\xaa\x02\x1eGoogle.Protobuf.WellKnownTypesJ\xfe\x10\n\x06\x12\x04\x1e\x003\x10\n\xcc\x0c\n\x01\x0c\x12\x03\x1e\x00\x122\xc1\x0c Protocol Buffers - Google\'s data interchange format\n Copyright 2008 Google Inc.  All rights reserved.\n https://developers.google.com/protocol-buffers/\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n\n     * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n     * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n     * Neither the name of Google Inc. nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n\x08\n\x01\x02\x12\x03 \x00\x18\n\x08\n\x01\x08\x12\x03\"\x00;\n\t\n\x02\x08%\x12\x03\"\x00;\n\x08\n\x01\x08\x12\x03#\x00>\n\t\n\x02\x08\x0b\x12\x03#\x00>\n\x08\n\x01\x08\x12\x03$\x00,\n\t\n\x02\x08\x01\x12\x03$\x00,\n\x08\n\x01\x08\x12\x03%\x00+\n\t\n\x02\x08\x08\x12\x03%\x00+\n\x08\n\x01\x08\x12\x03&\x00\"\n\t\n\x02\x08\n\x12\x03&\x00\"\n\x08\n\x01\x08\x12\x03\'\x00!\n\t\n\x02\x08$\x12\x03\'\x00!\n\x08\n\x01\x08\x12\x03(\x00\x1f\n\t\n\x02\x08\x1f\x12\x03(\x00\x1f\n\xfb\x02\n\x02\x04\x00\x12\x033\x00\x10\x1a\xef\x02 A generic empty message that you can re-use to avoid defining duplicated\n empty messages in your APIs. A typical example is to use it as the request\n or the response type of an API method. For instance:\n\n     service Foo {\n       rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty);\n     }\n\n The JSON representation for `Empty` is empty JSON object `{}`.\n\n\n\n\x03\x04\x00\x01\x12\x033\x08\rb\x06proto3\n\xa20\n\x13common/common.proto\x12\x06common\x1a\x1fgoogle/protobuf/timestamp.proto\"\xac\x01\n\x08Location\x12\x1a\n\x08latitude\x18\x01 \x01(\x01R\x08latitude\x12\x1c\n\tlongitude\x18\x02 \x01(\x01R\tlongitude\x12\x1a\n\x08altitude\x18\x03 \x01(\x01R\x08altitude\x12.\n\x06source\x18\x04 \x01(\x0e2\x16.common.LocationSourceR\x06source\x12\x1a\n\x08accuracy\x18\x05 \x01(\x02R\x08accuracy\"C\n\x0bKeyEnvelope\x12\x1b\n\tkek_label\x18\x01 \x01(\tR\x08kekLabel\x12\x17\n\x07aes_key\x18\x02 \x01(\x0cR\x06aesKey\"\xb3\x01\n\x06Metric\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12:\n\ntimestamps\x18\x02 \x03(\x0b2\x1a.google.protobuf.TimestampR\ntimestamps\x121\n\x08datasets\x18\x03 \x03(\x0b2\x15.common.MetricDatasetR\x08datasets\x12&\n\x04kind\x18\x04 \x01(\x0e2\x12.common.MetricKindR\x04kind\"9\n\rMetricDataset\x12\x14\n\x05label\x18\x01 \x01(\tR\x05label\x12\x12\n\x04data\x18\x02 \x03(\x02R\x04data*,\n\nModulation\x12\x08\n\x04LORA\x10\x00\x12\x07\n\x03FSK\x10\x01\x12\x0b\n\x07LR_FHSS\x10\x02*\xaa\x01\n\x06Region\x12\t\n\x05EU868\x10\x00\x12\t\n\x05US915\x10\x02\x12\t\n\x05CN779\x10\x03\x12\t\n\x05EU433\x10\x04\x12\t\n\x05AU915\x10\x05\x12\t\n\x05CN470\x10\x06\x12\t\n\x05AS923\x10\x07\x12\x0b\n\x07AS923_2\x10\x0c\x12\x0b\n\x07AS923_3\x10\r\x12\x0b\n\x07AS923_4\x10\x0e\x12\t\n\x05KR920\x10\x08\x12\t\n\x05IN865\x10\t\x12\t\n\x05RU864\x10\n\x12\x0b\n\x07ISM2400\x10\x0b*\xb3\x01\n\x05MType\x12\x10\n\x0cJOIN_REQUEST\x10\x00\x12\x0f\n\x0bJOIN_ACCEPT\x10\x01\x12\x17\n\x13UNCONFIRMED_DATA_UP\x10\x02\x12\x19\n\x15UNCONFIRMED_DATA_DOWN\x10\x03\x12\x15\n\x11CONFIRMED_DATA_UP\x10\x04\x12\x17\n\x13CONFIRMED_DATA_DOWN\x10\x05\x12\x12\n\x0eREJOIN_REQUEST\x10\x06\x12\x0f\n\x0bPROPRIETARY\x10\x07*~\n\nMacVersion\x12\x11\n\rLORAWAN_1_0_0\x10\x00\x12\x11\n\rLORAWAN_1_0_1\x10\x01\x12\x11\n\rLORAWAN_1_0_2\x10\x02\x12\x11\n\rLORAWAN_1_0_3\x10\x03\x12\x11\n\rLORAWAN_1_0_4\x10\x04\x12\x11\n\rLORAWAN_1_1_0\x10\x05*e\n\x11RegParamsRevision\x12\x05\n\x01A\x10\x00\x12\x05\n\x01B\x10\x01\x12\x0f\n\x0bRP002_1_0_0\x10\x02\x12\x0f\n\x0bRP002_1_0_1\x10\x03\x12\x0f\n\x0bRP002_1_0_2\x10\x04\x12\x0f\n\x0bRP002_1_0_3\x10\x05*\x8e\x01\n\x0eLocationSource\x12\x0b\n\x07UNKNOWN\x10\x00\x12\x07\n\x03GPS\x10\x01\x12\n\n\x06CONFIG\x10\x02\x12\x15\n\x11GEO_RESOLVER_TDOA\x10\x03\x12\x15\n\x11GEO_RESOLVER_RSSI\x10\x04\x12\x15\n\x11GEO_RESOLVER_GNSS\x10\x05\x12\x15\n\x11GEO_RESOLVER_WIFI\x10\x06*+\n\x0bAggregation\x12\x08\n\x04HOUR\x10\x00\x12\x07\n\x03DAY\x10\x01\x12\t\n\x05MONTH\x10\x02*2\n\nMetricKind\x12\x0b\n\x07COUNTER\x10\x00\x12\x0c\n\x08ABSOLUTE\x10\x01\x12\t\n\x05GAUGE\x10\x02*4\n\x0bDeviceClass\x12\x0b\n\x07CLASS_A\x10\x00\x12\x0b\n\x07CLASS_B\x10\x01\x12\x0b\n\x07CLASS_C\x10\x02Bi\n\x11io.chirpstack.apiB\x0bCommonProtoP\x01Z1github.com/chirpstack/chirpstack/api/go/v4/common\xaa\x02\x11Chirpstack.CommonJ\xe9#\n\x07\x12\x05\x00\x00\xd6\x01\x01\n\x08\n\x01\x0c\x12\x03\x00\x00\x12\n\x08\n\x01\x02\x12\x03\x02\x00\x0f\n\x08\n\x01\x08\x12\x03\x04\x00H\n\t\n\x02\x08\x0b\x12\x03\x04\x00H\n\x08\n\x01\x08\x12\x03\x05\x00*\n\t\n\x02\x08\x01\x12\x03\x05\x00*\n\x08\n\x01\x08\x12\x03\x06\x00\"\n\t\n\x02\x08\n\x12\x03\x06\x00\"\n\x08\n\x01\x08\x12\x03\x07\x00,\n\t\n\x02\x08\x08\x12\x03\x07\x00,\n\x08\n\x01\x08\x12\x03\x08\x00.\n\t\n\x02\x08%\x12\x03\x08\x00.\n\t\n\x02\x03\x00\x12\x03\n\x00)\n\n\n\x02\x05\x00\x12\x04\x0c\x00\x15\x01\n\n\n\x03\x05\x00\x01\x12\x03\x0c\x05\x0f\n\x13\n\x04\x05\x00\x02\x00\x12\x03\x0e\x02\x0b\x1a\x06 LoRa\n\n\x0c\n\x05\x05\x00\x02\x00\x01\x12\x03\x0e\x02\x06\n\x0c\n\x05\x05\x00\x02\x00\x02\x12\x03\x0e\t\n\n\x12\n\x04\x05\x00\x02\x01\x12\x03\x11\x02\n\x1a\x05 FSK\n\n\x0c\n\x05\x05\x00\x02\x01\x01\x12\x03\x11\x02\x05\n\x0c\n\x05\x05\x00\x02\x01\x02\x12\x03\x11\x08\t\n\x16\n\x04\x05\x00\x02\x02\x12\x03\x14\x02\x0e\x1a\t LR-FHSS\n\n\x0c\n\x05\x05\x00\x02\x02\x01\x12\x03\x14\x02\t\n\x0c\n\x05\x05\x00\x02\x02\x02\x12\x03\x14\x0c\r\n\n\n\x02\x05\x01\x12\x04\x17\x00A\x01\n\n\n\x03\x05\x01\x01\x12\x03\x17\x05\x0b\n\x14\n\x04\x05\x01\x02\x00\x12\x03\x19\x02\x0c\x1a\x07 EU868\n\n\x0c\n\x05\x05\x01\x02\x00\x01\x12\x03\x19\x02\x07\n\x0c\n\x05\x05\x01\x02\x00\x02\x12\x03\x19\n\x0b\n\x14\n\x04\x05\x01\x02\x01\x12\x03\x1c\x02\x0c\x1a\x07 US915\n\n\x0c\n\x05\x05\x01\x02\x01\x01\x12\x03\x1c\x02\x07\n\x0c\n\x05\x05\x01\x02\x01\x02\x12\x03\x1c\n\x0b\n\x14\n\x04\x05\x01\x02\x02\x12\x03\x1f\x02\x0c\x1a\x07 CN779\n\n\x0c\n\x05\x05\x01\x02\x02\x01\x12\x03\x1f\x02\x07\n\x0c\n\x05\x05\x01\x02\x02\x02\x12\x03\x1f\n\x0b\n\x14\n\x04\x05\x01\x02\x03\x12\x03\"\x02\x0c\x1a\x07 EU433\n\n\x0c\n\x05\x05\x01\x02\x03\x01\x12\x03\"\x02\x07\n\x0c\n\x05\x05\x01\x02\x03\x02\x12\x03\"\n\x0b\n\x14\n\x04\x05\x01\x02\x04\x12\x03%\x02\x0c\x1a\x07 AU915\n\n\x0c\n\x05\x05\x01\x02\x04\x01\x12\x03%\x02\x07\n\x0c\n\x05\x05\x01\x02\x04\x02\x12\x03%\n\x0b\n\x14\n\x04\x05\x01\x02\x05\x12\x03(\x02\x0c\x1a\x07 CN470\n\n\x0c\n\x05\x05\x01\x02\x05\x01\x12\x03(\x02\x07\n\x0c\n\x05\x05\x01\x02\x05\x02\x12\x03(\n\x0b\n\x14\n\x04\x05\x01\x02\x06\x12\x03+\x02\x0c\x1a\x07 AS923\n\n\x0c\n\x05\x05\x01\x02\x06\x01\x12\x03+\x02\x07\n\x0c\n\x05\x05\x01\x02\x06\x02\x12\x03+\n\x0b\n4\n\x04\x05\x01\x02\x07\x12\x03.\x02\x0f\x1a\' AS923 with -1.80 MHz frequency offset\n\n\x0c\n\x05\x05\x01\x02\x07\x01\x12\x03.\x02\t\n\x0c\n\x05\x05\x01\x02\x07\x02\x12\x03.\x0c\x0e\n4\n\x04\x05\x01\x02\x08\x12\x031\x02\x0f\x1a\' AS923 with -6.60 MHz frequency offset\n\n\x0c\n\x05\x05\x01\x02\x08\x01\x12\x031\x02\t\n\x0c\n\x05\x05\x01\x02\x08\x02\x12\x031\x0c\x0e\n7\n\x04\x05\x01\x02\t\x12\x034\x02\x0f\x1a* (AS923 with -5.90 MHz frequency offset).\n\n\x0c\n\x05\x05\x01\x02\t\x01\x12\x034\x02\t\n\x0c\n\x05\x05\x01\x02\t\x02\x12\x034\x0c\x0e\n\x14\n\x04\x05\x01\x02\n\x12\x037\x02\x0c\x1a\x07 KR920\n\n\x0c\n\x05\x05\x01\x02\n\x01\x12\x037\x02\x07\n\x0c\n\x05\x05\x01\x02\n\x02\x12\x037\n\x0b\n\x14\n\x04\x05\x01\x02\x0b\x12\x03:\x02\x0c\x1a\x07 IN865\n\n\x0c\n\x05\x05\x01\x02\x0b\x01\x12\x03:\x02\x07\n\x0c\n\x05\x05\x01\x02\x0b\x02\x12\x03:\n\x0b\n\x14\n\x04\x05\x01\x02\x0c\x12\x03=\x02\r\x1a\x07 RU864\n\n\x0c\n\x05\x05\x01\x02\x0c\x01\x12\x03=\x02\x07\n\x0c\n\x05\x05\x01\x02\x0c\x02\x12\x03=\n\x0c\n(\n\x04\x05\x01\x02\r\x12\x03@\x02\x0f\x1a\x1b ISM2400 (LoRaWAN 2.4 GHz)\n\n\x0c\n\x05\x05\x01\x02\r\x01\x12\x03@\x02\t\n\x0c\n\x05\x05\x01\x02\r\x02\x12\x03@\x0c\x0e\n\n\n\x02\x05\x02\x12\x04C\x00[\x01\n\n\n\x03\x05\x02\x01\x12\x03C\x05\n\n\x1b\n\x04\x05\x02\x02\x00\x12\x03E\x02\x13\x1a\x0e JoinRequest.\n\n\x0c\n\x05\x05\x02\x02\x00\x01\x12\x03E\x02\x0e\n\x0c\n\x05\x05\x02\x02\x00\x02\x12\x03E\x11\x12\n\x1a\n\x04\x05\x02\x02\x01\x12\x03H\x02\x12\x1a\r JoinAccept.\n\n\x0c\n\x05\x05\x02\x02\x01\x01\x12\x03H\x02\r\n\x0c\n\x05\x05\x02\x02\x01\x02\x12\x03H\x10\x11\n!\n\x04\x05\x02\x02\x02\x12\x03K\x02\x1a\x1a\x14 UnconfirmedDataUp.\n\n\x0c\n\x05\x05\x02\x02\x02\x01\x12\x03K\x02\x15\n\x0c\n\x05\x05\x02\x02\x02\x02\x12\x03K\x18\x19\n#\n\x04\x05\x02\x02\x03\x12\x03N\x02\x1c\x1a\x16 UnconfirmedDataDown.\n\n\x0c\n\x05\x05\x02\x02\x03\x01\x12\x03N\x02\x17\n\x0c\n\x05\x05\x02\x02\x03\x02\x12\x03N\x1a\x1b\n\x1f\n\x04\x05\x02\x02\x04\x12\x03Q\x02\x18\x1a\x12 ConfirmedDataUp.\n\n\x0c\n\x05\x05\x02\x02\x04\x01\x12\x03Q\x02\x13\n\x0c\n\x05\x05\x02\x02\x04\x02\x12\x03Q\x16\x17\n!\n\x04\x05\x02\x02\x05\x12\x03T\x02\x1a\x1a\x14 ConfirmedDataDown.\n\n\x0c\n\x05\x05\x02\x02\x05\x01\x12\x03T\x02\x15\n\x0c\n\x05\x05\x02\x02\x05\x02\x12\x03T\x18\x19\n\x1d\n\x04\x05\x02\x02\x06\x12\x03W\x02\x15\x1a\x10 RejoinRequest.\n\n\x0c\n\x05\x05\x02\x02\x06\x01\x12\x03W\x02\x10\n\x0c\n\x05\x05\x02\x02\x06\x02\x12\x03W\x13\x14\n\x1b\n\x04\x05\x02\x02\x07\x12\x03Z\x02\x12\x1a\x0e Proprietary.\n\n\x0c\n\x05\x05\x02\x02\x07\x01\x12\x03Z\x02\r\n\x0c\n\x05\x05\x02\x02\x07\x02\x12\x03Z\x10\x11\n\n\n\x02\x05\x03\x12\x04]\x00d\x01\n\n\n\x03\x05\x03\x01\x12\x03]\x05\x0f\n\x0b\n\x04\x05\x03\x02\x00\x12\x03^\x02\x14\n\x0c\n\x05\x05\x03\x02\x00\x01\x12\x03^\x02\x0f\n\x0c\n\x05\x05\x03\x02\x00\x02\x12\x03^\x12\x13\n\x0b\n\x04\x05\x03\x02\x01\x12\x03_\x02\x14\n\x0c\n\x05\x05\x03\x02\x01\x01\x12\x03_\x02\x0f\n\x0c\n\x05\x05\x03\x02\x01\x02\x12\x03_\x12\x13\n\x0b\n\x04\x05\x03\x02\x02\x12\x03`\x02\x14\n\x0c\n\x05\x05\x03\x02\x02\x01\x12\x03`\x02\x0f\n\x0c\n\x05\x05\x03\x02\x02\x02\x12\x03`\x12\x13\n\x0b\n\x04\x05\x03\x02\x03\x12\x03a\x02\x14\n\x0c\n\x05\x05\x03\x02\x03\x01\x12\x03a\x02\x0f\n\x0c\n\x05\x05\x03\x02\x03\x02\x12\x03a\x12\x13\n\x0b\n\x04\x05\x03\x02\x04\x12\x03b\x02\x14\n\x0c\n\x05\x05\x03\x02\x04\x01\x12\x03b\x02\x0f\n\x0c\n\x05\x05\x03\x02\x04\x02\x12\x03b\x12\x13\n\x0b\n\x04\x05\x03\x02\x05\x12\x03c\x02\x14\n\x0c\n\x05\x05\x03\x02\x05\x01\x12\x03c\x02\x0f\n\x0c\n\x05\x05\x03\x02\x05\x02\x12\x03c\x12\x13\n\n\n\x02\x05\x04\x12\x04f\x00m\x01\n\n\n\x03\x05\x04\x01\x12\x03f\x05\x16\n\x0b\n\x04\x05\x04\x02\x00\x12\x03g\x02\x08\n\x0c\n\x05\x05\x04\x02\x00\x01\x12\x03g\x02\x03\n\x0c\n\x05\x05\x04\x02\x00\x02\x12\x03g\x06\x07\n\x0b\n\x04\x05\x04\x02\x01\x12\x03h\x02\x08\n\x0c\n\x05\x05\x04\x02\x01\x01\x12\x03h\x02\x03\n\x0c\n\x05\x05\x04\x02\x01\x02\x12\x03h\x06\x07\n\x0b\n\x04\x05\x04\x02\x02\x12\x03i\x02\x12\n\x0c\n\x05\x05\x04\x02\x02\x01\x12\x03i\x02\r\n\x0c\n\x05\x05\x04\x02\x02\x02\x12\x03i\x10\x11\n\x0b\n\x04\x05\x04\x02\x03\x12\x03j\x02\x12\n\x0c\n\x05\x05\x04\x02\x03\x01\x12\x03j\x02\r\n\x0c\n\x05\x05\x04\x02\x03\x02\x12\x03j\x10\x11\n\x0b\n\x04\x05\x04\x02\x04\x12\x03k\x02\x12\n\x0c\n\x05\x05\x04\x02\x04\x01\x12\x03k\x02\r\n\x0c\n\x05\x05\x04\x02\x04\x02\x12\x03k\x10\x11\n\x0b\n\x04\x05\x04\x02\x05\x12\x03l\x02\x12\n\x0c\n\x05\x05\x04\x02\x05\x01\x12\x03l\x02\r\n\x0c\n\x05\x05\x04\x02\x05\x02\x12\x03l\x10\x11\n\x0b\n\x02\x05\x05\x12\x05o\x00\x84\x01\x01\n\n\n\x03\x05\x05\x01\x12\x03o\x05\x13\n\x17\n\x04\x05\x05\x02\x00\x12\x03q\x02\x0e\x1a\n Unknown.\n\n\x0c\n\x05\x05\x05\x02\x00\x01\x12\x03q\x02\t\n\x0c\n\x05\x05\x05\x02\x00\x02\x12\x03q\x0c\r\n\x13\n\x04\x05\x05\x02\x01\x12\x03t\x02\n\x1a\x06 GPS.\n\n\x0c\n\x05\x05\x05\x02\x01\x01\x12\x03t\x02\x05\n\x0c\n\x05\x05\x05\x02\x01\x02\x12\x03t\x08\t\n#\n\x04\x05\x05\x02\x02\x12\x03w\x02\r\x1a\x16 Manually configured.\n\n\x0c\n\x05\x05\x05\x02\x02\x01\x12\x03w\x02\x08\n\x0c\n\x05\x05\x05\x02\x02\x02\x12\x03w\x0b\x0c\n#\n\x04\x05\x05\x02\x03\x12\x03z\x02\x18\x1a\x16 Geo resolver (TDOA).\n\n\x0c\n\x05\x05\x05\x02\x03\x01\x12\x03z\x02\x13\n\x0c\n\x05\x05\x05\x02\x03\x02\x12\x03z\x16\x17\n#\n\x04\x05\x05\x02\x04\x12\x03}\x02\x18\x1a\x16 Geo resolver (RSSI).\n\n\x0c\n\x05\x05\x05\x02\x04\x01\x12\x03}\x02\x13\n\x0c\n\x05\x05\x05\x02\x04\x02\x12\x03}\x16\x17\n$\n\x04\x05\x05\x02\x05\x12\x04\x80\x01\x02\x18\x1a\x16 Geo resolver (GNSS).\n\n\r\n\x05\x05\x05\x02\x05\x01\x12\x04\x80\x01\x02\x13\n\r\n\x05\x05\x05\x02\x05\x02\x12\x04\x80\x01\x16\x17\n$\n\x04\x05\x05\x02\x06\x12\x04\x83\x01\x02\x18\x1a\x16 Geo resolver (WIFI).\n\n\r\n\x05\x05\x05\x02\x06\x01\x12\x04\x83\x01\x02\x13\n\r\n\x05\x05\x05\x02\x06\x02\x12\x04\x83\x01\x16\x17\n\x0c\n\x02\x05\x06\x12\x06\x86\x01\x00\x8f\x01\x01\n\x0b\n\x03\x05\x06\x01\x12\x04\x86\x01\x05\x10\n\x15\n\x04\x05\x06\x02\x00\x12\x04\x88\x01\x02\x0b\x1a\x07 Hour.\n\n\r\n\x05\x05\x06\x02\x00\x01\x12\x04\x88\x01\x02\x06\n\r\n\x05\x05\x06\x02\x00\x02\x12\x04\x88\x01\t\n\n\x14\n\x04\x05\x06\x02\x01\x12\x04\x8b\x01\x02\n\x1a\x06 Day.\n\n\r\n\x05\x05\x06\x02\x01\x01\x12\x04\x8b\x01\x02\x05\n\r\n\x05\x05\x06\x02\x01\x02\x12\x04\x8b\x01\x08\t\n\x16\n\x04\x05\x06\x02\x02\x12\x04\x8e\x01\x02\x0c\x1a\x08 Month.\n\n\r\n\x05\x05\x06\x02\x02\x01\x12\x04\x8e\x01\x02\x07\n\r\n\x05\x05\x06\x02\x02\x02\x12\x04\x8e\x01\n\x0b\n\x0c\n\x02\x05\x07\x12\x06\x91\x01\x00\x9b\x01\x01\n\x0b\n\x03\x05\x07\x01\x12\x04\x91\x01\x05\x0f\na\n\x04\x05\x07\x02\x00\x12\x04\x94\x01\x02\x0e\x1aS Incrementing counters that never decrease (these are not reset on each\n reading).\n\n\r\n\x05\x05\x07\x02\x00\x01\x12\x04\x94\x01\x02\t\n\r\n\x05\x05\x07\x02\x00\x02\x12\x04\x94\x01\x0c\r\n8\n\x04\x05\x07\x02\x01\x12\x04\x97\x01\x02\x0f\x1a* Counters that do get reset upon reading.\n\n\r\n\x05\x05\x07\x02\x01\x01\x12\x04\x97\x01\x02\n\n\r\n\x05\x05\x07\x02\x01\x02\x12\x04\x97\x01\r\x0e\n)\n\x04\x05\x07\x02\x02\x12\x04\x9a\x01\x02\x0c\x1a\x1b E.g. a temperature value.\n\n\r\n\x05\x05\x07\x02\x02\x01\x12\x04\x9a\x01\x02\x07\n\r\n\x05\x05\x07\x02\x02\x02\x12\x04\x9a\x01\n\x0b\n\x0c\n\x02\x04\x00\x12\x06\x9d\x01\x00\xac\x01\x01\n\x0b\n\x03\x04\x00\x01\x12\x04\x9d\x01\x08\x10\n\x19\n\x04\x04\x00\x02\x00\x12\x04\x9f\x01\x02\x16\x1a\x0b Latitude.\n\n\r\n\x05\x04\x00\x02\x00\x05\x12\x04\x9f\x01\x02\x08\n\r\n\x05\x04\x00\x02\x00\x01\x12\x04\x9f\x01\t\x11\n\r\n\x05\x04\x00\x02\x00\x03\x12\x04\x9f\x01\x14\x15\n\x1a\n\x04\x04\x00\x02\x01\x12\x04\xa2\x01\x02\x17\x1a\x0c Longitude.\n\n\r\n\x05\x04\x00\x02\x01\x05\x12\x04\xa2\x01\x02\x08\n\r\n\x05\x04\x00\x02\x01\x01\x12\x04\xa2\x01\t\x12\n\r\n\x05\x04\x00\x02\x01\x03\x12\x04\xa2\x01\x15\x16\n\x19\n\x04\x04\x00\x02\x02\x12\x04\xa5\x01\x02\x16\x1a\x0b Altitude.\n\n\r\n\x05\x04\x00\x02\x02\x05\x12\x04\xa5\x01\x02\x08\n\r\n\x05\x04\x00\x02\x02\x01\x12\x04\xa5\x01\t\x11\n\r\n\x05\x04\x00\x02\x02\x03\x12\x04\xa5\x01\x14\x15\n \n\x04\x04\x00\x02\x03\x12\x04\xa8\x01\x02\x1c\x1a\x12 Location source.\n\n\r\n\x05\x04\x00\x02\x03\x06\x12\x04\xa8\x01\x02\x10\n\r\n\x05\x04\x00\x02\x03\x01\x12\x04\xa8\x01\x11\x17\n\r\n\x05\x04\x00\x02\x03\x03\x12\x04\xa8\x01\x1a\x1b\n\x19\n\x04\x04\x00\x02\x04\x12\x04\xab\x01\x02\x15\x1a\x0b Accuracy.\n\n\r\n\x05\x04\x00\x02\x04\x05\x12\x04\xab\x01\x02\x07\n\r\n\x05\x04\x00\x02\x04\x01\x12\x04\xab\x01\x08\x10\n\r\n\x05\x04\x00\x02\x04\x03\x12\x04\xab\x01\x13\x14\n\x0c\n\x02\x04\x01\x12\x06\xae\x01\x00\xb4\x01\x01\n\x0b\n\x03\x04\x01\x01\x12\x04\xae\x01\x08\x13\n\x1a\n\x04\x04\x01\x02\x00\x12\x04\xb0\x01\x02\x17\x1a\x0c KEK label.\n\n\r\n\x05\x04\x01\x02\x00\x05\x12\x04\xb0\x01\x02\x08\n\r\n\x05\x04\x01\x02\x00\x01\x12\x04\xb0\x01\t\x12\n\r\n\x05\x04\x01\x02\x00\x03\x12\x04\xb0\x01\x15\x16\nX\n\x04\x04\x01\x02\x01\x12\x04\xb3\x01\x02\x14\x1aJ AES key (when the kek_label is set, this value must first be decrypted).\n\n\r\n\x05\x04\x01\x02\x01\x05\x12\x04\xb3\x01\x02\x07\n\r\n\x05\x04\x01\x02\x01\x01\x12\x04\xb3\x01\x08\x0f\n\r\n\x05\x04\x01\x02\x01\x03\x12\x04\xb3\x01\x12\x13\n\x0c\n\x02\x04\x02\x12\x06\xb6\x01\x00\xc2\x01\x01\n\x0b\n\x03\x04\x02\x01\x12\x04\xb6\x01\x08\x0e\n\x15\n\x04\x04\x02\x02\x00\x12\x04\xb8\x01\x02\x12\x1a\x07 Name.\n\n\r\n\x05\x04\x02\x02\x00\x05\x12\x04\xb8\x01\x02\x08\n\r\n\x05\x04\x02\x02\x00\x01\x12\x04\xb8\x01\t\r\n\r\n\x05\x04\x02\x02\x00\x03\x12\x04\xb8\x01\x10\x11\n\x1b\n\x04\x04\x02\x02\x01\x12\x04\xbb\x01\x024\x1a\r Timestamps.\n\n\r\n\x05\x04\x02\x02\x01\x04\x12\x04\xbb\x01\x02\n\n\r\n\x05\x04\x02\x02\x01\x06\x12\x04\xbb\x01\x0b$\n\r\n\x05\x04\x02\x02\x01\x01\x12\x04\xbb\x01%/\n\r\n\x05\x04\x02\x02\x01\x03\x12\x04\xbb\x0123\n\x19\n\x04\x04\x02\x02\x02\x12\x04\xbe\x01\x02&\x1a\x0b Datasets.\n\n\r\n\x05\x04\x02\x02\x02\x04\x12\x04\xbe\x01\x02\n\n\r\n\x05\x04\x02\x02\x02\x06\x12\x04\xbe\x01\x0b\x18\n\r\n\x05\x04\x02\x02\x02\x01\x12\x04\xbe\x01\x19!\n\r\n\x05\x04\x02\x02\x02\x03\x12\x04\xbe\x01$%\n\x15\n\x04\x04\x02\x02\x03\x12\x04\xc1\x01\x02\x16\x1a\x07 Kind.\n\n\r\n\x05\x04\x02\x02\x03\x06\x12\x04\xc1\x01\x02\x0c\n\r\n\x05\x04\x02\x02\x03\x01\x12\x04\xc1\x01\r\x11\n\r\n\x05\x04\x02\x02\x03\x03\x12\x04\xc1\x01\x14\x15\n\x0c\n\x02\x04\x03\x12\x06\xc4\x01\x00\xcb\x01\x01\n\x0b\n\x03\x04\x03\x01\x12\x04\xc4\x01\x08\x15\n\x16\n\x04\x04\x03\x02\x00\x12\x04\xc6\x01\x02\x13\x1a\x08 Label.\n\n\r\n\x05\x04\x03\x02\x00\x05\x12\x04\xc6\x01\x02\x08\n\r\n\x05\x04\x03\x02\x00\x01\x12\x04\xc6\x01\t\x0e\n\r\n\x05\x04\x03\x02\x00\x03\x12\x04\xc6\x01\x11\x12\n`\n\x04\x04\x03\x02\x01\x12\x04\xca\x01\x02\x1a\x1aR Data.\n Each value index corresponds with the same timestamp index of the Metric.\n\n\r\n\x05\x04\x03\x02\x01\x04\x12\x04\xca\x01\x02\n\n\r\n\x05\x04\x03\x02\x01\x05\x12\x04\xca\x01\x0b\x10\n\r\n\x05\x04\x03\x02\x01\x01\x12\x04\xca\x01\x11\x15\n\r\n\x05\x04\x03\x02\x01\x03\x12\x04\xca\x01\x18\x19\n\x0c\n\x02\x05\x08\x12\x06\xcd\x01\x00\xd6\x01\x01\n\x0b\n\x03\x05\x08\x01\x12\x04\xcd\x01\x05\x10\n\x18\n\x04\x05\x08\x02\x00\x12\x04\xcf\x01\x02\x0e\x1a\n Class-A.\n\n\r\n\x05\x05\x08\x02\x00\x01\x12\x04\xcf\x01\x02\t\n\r\n\x05\x05\x08\x02\x00\x02\x12\x04\xcf\x01\x0c\r\n\x18\n\x04\x05\x08\x02\x01\x12\x04\xd2\x01\x02\x0e\x1a\n Class-B.\n\n\r\n\x05\x05\x08\x02\x01\x01\x12\x04\xd2\x01\x02\t\n\r\n\x05\x05\x08\x02\x01\x02\x12\x04\xd2\x01\x0c\r\n\x18\n\x04\x05\x08\x02\x02\x12\x04\xd5\x01\x02\x0e\x1a\n Class-C.\n\n\r\n\x05\x05\x08\x02\x02\x01\x12\x04\xd5\x01\x02\t\n\r\n\x05\x05\x08\x02\x02\x02\x12\x04\xd5\x01\x0c\rb\x06proto3\n\xe1x\n\x15google/api/http.proto\x12\ngoogle.api\"y\n\x04Http\x12*\n\x05rules\x18\x01 \x03(\x0b2\x14.google.api.HttpRuleR\x05rules\x12E\n\x1ffully_decode_reserved_expansion\x18\x02 \x01(\x08R\x1cfullyDecodeReservedExpansion\"\xda\x02\n\x08HttpRule\x12\x1a\n\x08selector\x18\x01 \x01(\tR\x08selector\x12\x12\n\x03get\x18\x02 \x01(\tH\x00R\x03get\x12\x12\n\x03put\x18\x03 \x01(\tH\x00R\x03put\x12\x14\n\x04post\x18\x04 \x01(\tH\x00R\x04post\x12\x18\n\x06delete\x18\x05 \x01(\tH\x00R\x06delete\x12\x16\n\x05patch\x18\x06 \x01(\tH\x00R\x05patch\x127\n\x06custom\x18\x08 \x01(\x0b2\x1d.google.api.CustomHttpPatternH\x00R\x06custom\x12\x12\n\x04body\x18\x07 \x01(\tR\x04body\x12#\n\rresponse_body\x18\x0c \x01(\tR\x0cresponseBody\x12E\n\x13additional_bindings\x18\x0b \x03(\x0b2\x14.google.api.HttpRuleR\x12additionalBindingsB\t\n\x07pattern\";\n\x11CustomHttpPattern\x12\x12\n\x04kind\x18\x01 \x01(\tR\x04kind\x12\x12\n\x04path\x18\x02 \x01(\tR\x04pathBj\n\x0ecom.google.apiB\tHttpProtoP\x01ZAgoogle.golang.org/genproto/googleapis/api/annotations;annotations\xf8\x01\x01\xa2\x02\x04GAPIJ\xb2s\n\x07\x12\x05\x0e\x00\xfa\x02\x01\n\xbc\x04\n\x01\x0c\x12\x03\x0e\x00\x122\xb1\x04 Copyright 2023 Google LLC\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n\n\x08\n\x01\x02\x12\x03\x10\x00\x13\n\x08\n\x01\x08\x12\x03\x12\x00\x1f\n\t\n\x02\x08\x1f\x12\x03\x12\x00\x1f\n\x08\n\x01\x08\x12\x03\x13\x00X\n\t\n\x02\x08\x0b\x12\x03\x13\x00X\n\x08\n\x01\x08\x12\x03\x14\x00\"\n\t\n\x02\x08\n\x12\x03\x14\x00\"\n\x08\n\x01\x08\x12\x03\x15\x00*\n\t\n\x02\x08\x08\x12\x03\x15\x00*\n\x08\n\x01\x08\x12\x03\x16\x00\'\n\t\n\x02\x08\x01\x12\x03\x16\x00\'\n\x08\n\x01\x08\x12\x03\x17\x00\"\n\t\n\x02\x08$\x12\x03\x17\x00\"\n\xcd\x01\n\x02\x04\x00\x12\x04\x1c\x00)\x01\x1a\xc0\x01 Defines the HTTP configuration for an API service. It contains a list of\n [HttpRule][google.api.HttpRule], each specifying the mapping of an RPC method\n to one or more HTTP REST API methods.\n\n\n\n\x03\x04\x00\x01\x12\x03\x1c\x08\x0c\n\xa2\x01\n\x04\x04\x00\x02\x00\x12\x03 \x02\x1e\x1a\x94\x01 A list of HTTP configuration rules that apply to individual API methods.\n\n **NOTE:** All service configuration rules follow \"last one wins\" order.\n\n\x0c\n\x05\x04\x00\x02\x00\x04\x12\x03 \x02\n\n\x0c\n\x05\x04\x00\x02\x00\x06\x12\x03 \x0b\x13\n\x0c\n\x05\x04\x00\x02\x00\x01\x12\x03 \x14\x19\n\x0c\n\x05\x04\x00\x02\x00\x03\x12\x03 \x1c\x1d\n\x94\x02\n\x04\x04\x00\x02\x01\x12\x03(\x02+\x1a\x86\x02 When set to true, URL path parameters will be fully URI-decoded except in\n cases of single segment matches in reserved expansion, where \"%2F\" will be\n left encoded.\n\n The default behavior is to not decode RFC 6570 reserved characters in multi\n segment matches.\n\n\x0c\n\x05\x04\x00\x02\x01\x05\x12\x03(\x02\x06\n\x0c\n\x05\x04\x00\x02\x01\x01\x12\x03(\x07&\n\x0c\n\x05\x04\x00\x02\x01\x03\x12\x03()*\n\xbbS\n\x02\x04\x01\x12\x06\xbb\x02\x00\xf1\x02\x01\x1a\xacS # gRPC Transcoding\n\n gRPC Transcoding is a feature for mapping between a gRPC method and one or\n more HTTP REST endpoints. It allows developers to build a single API service\n that supports both gRPC APIs and REST APIs. Many systems, including [Google\n APIs](https://github.com/googleapis/googleapis),\n [Cloud Endpoints](https://cloud.google.com/endpoints), [gRPC\n Gateway](https://github.com/grpc-ecosystem/grpc-gateway),\n and [Envoy](https://github.com/envoyproxy/envoy) proxy support this feature\n and use it for large scale production services.\n\n `HttpRule` defines the schema of the gRPC/REST mapping. The mapping specifies\n how different portions of the gRPC request message are mapped to the URL\n path, URL query parameters, and HTTP request body. It also controls how the\n gRPC response message is mapped to the HTTP response body. `HttpRule` is\n typically specified as an `google.api.http` annotation on the gRPC method.\n\n Each mapping specifies a URL path template and an HTTP method. The path\n template may refer to one or more fields in the gRPC request message, as long\n as each field is a non-repeated field with a primitive (non-message) type.\n The path template controls how fields of the request message are mapped to\n the URL path.\n\n Example:\n\n     service Messaging {\n       rpc GetMessage(GetMessageRequest) returns (Message) {\n         option (google.api.http) = {\n             get: \"/v1/{name=messages/*}\"\n         };\n       }\n     }\n     message GetMessageRequest {\n       string name = 1; // Mapped to URL path.\n     }\n     message Message {\n       string text = 1; // The resource content.\n     }\n\n This enables an HTTP REST to gRPC mapping as below:\n\n HTTP | gRPC\n -----|-----\n `GET /v1/messages/123456`  | `GetMessage(name: \"messages/123456\")`\n\n Any fields in the request message which are not bound by the path template\n automatically become HTTP query parameters if there is no HTTP request body.\n For example:\n\n     service Messaging {\n       rpc GetMessage(GetMessageRequest) returns (Message) {\n         option (google.api.http) = {\n             get:\"/v1/messages/{message_id}\"\n         };\n       }\n     }\n     message GetMessageRequest {\n       message SubMessage {\n         string subfield = 1;\n       }\n       string message_id = 1; // Mapped to URL path.\n       int64 revision = 2;    // Mapped to URL query parameter `revision`.\n       SubMessage sub = 3;    // Mapped to URL query parameter `sub.subfield`.\n     }\n\n This enables a HTTP JSON to RPC mapping as below:\n\n HTTP | gRPC\n -----|-----\n `GET /v1/messages/123456?revision=2&sub.subfield=foo` |\n `GetMessage(message_id: \"123456\" revision: 2 sub: SubMessage(subfield:\n \"foo\"))`\n\n Note that fields which are mapped to URL query parameters must have a\n primitive type or a repeated primitive type or a non-repeated message type.\n In the case of a repeated type, the parameter can be repeated in the URL\n as `...?param=A&param=B`. In the case of a message type, each field of the\n message is mapped to a separate parameter, such as\n `...?foo.a=A&foo.b=B&foo.c=C`.\n\n For HTTP methods that allow a request body, the `body` field\n specifies the mapping. Consider a REST update method on the\n message resource collection:\n\n     service Messaging {\n       rpc UpdateMessage(UpdateMessageRequest) returns (Message) {\n         option (google.api.http) = {\n           patch: \"/v1/messages/{message_id}\"\n           body: \"message\"\n         };\n       }\n     }\n     message UpdateMessageRequest {\n       string message_id = 1; // mapped to the URL\n       Message message = 2;   // mapped to the body\n     }\n\n The following HTTP JSON to RPC mapping is enabled, where the\n representation of the JSON in the request body is determined by\n protos JSON encoding:\n\n HTTP | gRPC\n -----|-----\n `PATCH /v1/messages/123456 { \"text\": \"Hi!\" }` | `UpdateMessage(message_id:\n \"123456\" message { text: \"Hi!\" })`\n\n The special name `*` can be used in the body mapping to define that\n every field not bound by the path template should be mapped to the\n request body.  This enables the following alternative definition of\n the update method:\n\n     service Messaging {\n       rpc UpdateMessage(Message) returns (Message) {\n         option (google.api.http) = {\n           patch: \"/v1/messages/{message_id}\"\n           body: \"*\"\n         };\n       }\n     }\n     message Message {\n       string message_id = 1;\n       string text = 2;\n     }\n\n\n The following HTTP JSON to RPC mapping is enabled:\n\n HTTP | gRPC\n -----|-----\n `PATCH /v1/messages/123456 { \"text\": \"Hi!\" }` | `UpdateMessage(message_id:\n \"123456\" text: \"Hi!\")`\n\n Note that when using `*` in the body mapping, it is not possible to\n have HTTP parameters, as all fields not bound by the path end in\n the body. This makes this option more rarely used in practice when\n defining REST APIs. The common usage of `*` is in custom methods\n which don\'t use the URL at all for transferring data.\n\n It is possible to define multiple HTTP methods for one RPC by using\n the `additional_bindings` option. Example:\n\n     service Messaging {\n       rpc GetMessage(GetMessageRequest) returns (Message) {\n         option (google.api.http) = {\n           get: \"/v1/messages/{message_id}\"\n           additional_bindings {\n             get: \"/v1/users/{user_id}/messages/{message_id}\"\n           }\n         };\n       }\n     }\n     message GetMessageRequest {\n       string message_id = 1;\n       string user_id = 2;\n     }\n\n This enables the following two alternative HTTP JSON to RPC mappings:\n\n HTTP | gRPC\n -----|-----\n `GET /v1/messages/123456` | `GetMessage(message_id: \"123456\")`\n `GET /v1/users/me/messages/123456` | `GetMessage(user_id: \"me\" message_id:\n \"123456\")`\n\n ## Rules for HTTP mapping\n\n 1. Leaf request fields (recursive expansion nested messages in the request\n    message) are classified into three categories:\n    - Fields referred by the path template. They are passed via the URL path.\n    - Fields referred by the [HttpRule.body][google.api.HttpRule.body]. They\n    are passed via the HTTP\n      request body.\n    - All other fields are passed via the URL query parameters, and the\n      parameter name is the field path in the request message. A repeated\n      field can be represented as multiple query parameters under the same\n      name.\n  2. If [HttpRule.body][google.api.HttpRule.body] is \"*\", there is no URL\n  query parameter, all fields\n     are passed via URL path and HTTP request body.\n  3. If [HttpRule.body][google.api.HttpRule.body] is omitted, there is no HTTP\n  request body, all\n     fields are passed via URL path and URL query parameters.\n\n ### Path template syntax\n\n     Template = \"/\" Segments [ Verb ] ;\n     Segments = Segment { \"/\" Segment } ;\n     Segment  = \"*\" | \"**\" | LITERAL | Variable ;\n     Variable = \"{\" FieldPath [ \"=\" Segments ] \"}\" ;\n     FieldPath = IDENT { \".\" IDENT } ;\n     Verb     = \":\" LITERAL ;\n\n The syntax `*` matches a single URL path segment. The syntax `**` matches\n zero or more URL path segments, which must be the last part of the URL path\n except the `Verb`.\n\n The syntax `Variable` matches part of the URL path as specified by its\n template. A variable template must not contain other variables. If a variable\n matches a single path segment, its template may be omitted, e.g. `{var}`\n is equivalent to `{var=*}`.\n\n The syntax `LITERAL` matches literal text in the URL path. If the `LITERAL`\n contains any reserved character, such characters should be percent-encoded\n before the matching.\n\n If a variable contains exactly one path segment, such as `\"{var}\"` or\n `\"{var=*}\"`, when such a variable is expanded into a URL path on the client\n side, all characters except `[-_.~0-9a-zA-Z]` are percent-encoded. The\n server side does the reverse decoding. Such variables show up in the\n [Discovery\n Document](https://developers.google.com/discovery/v1/reference/apis) as\n `{var}`.\n\n If a variable contains multiple path segments, such as `\"{var=foo/*}\"`\n or `\"{var=**}\"`, when such a variable is expanded into a URL path on the\n client side, all characters except `[-_.~/0-9a-zA-Z]` are percent-encoded.\n The server side does the reverse decoding, except \"%2F\" and \"%2f\" are left\n unchanged. Such variables show up in the\n [Discovery\n Document](https://developers.google.com/discovery/v1/reference/apis) as\n `{+var}`.\n\n ## Using gRPC API Service Configuration\n\n gRPC API Service Configuration (service config) is a configuration language\n for configuring a gRPC service to become a user-facing product. The\n service config is simply the YAML representation of the `google.api.Service`\n proto message.\n\n As an alternative to annotating your proto file, you can configure gRPC\n transcoding in your service config YAML files. You do this by specifying a\n `HttpRule` that maps the gRPC method to a REST endpoint, achieving the same\n effect as the proto annotation. This can be particularly useful if you\n have a proto that is reused in multiple services. Note that any transcoding\n specified in the service config will override any matching transcoding\n configuration in the proto.\n\n Example:\n\n     http:\n       rules:\n         # Selects a gRPC method and applies HttpRule to it.\n         - selector: example.v1.Messaging.GetMessage\n           get: /v1/messages/{message_id}/{sub.subfield}\n\n ## Special notes\n\n When gRPC Transcoding is used to map a gRPC to JSON REST endpoints, the\n proto to JSON conversion must follow the [proto3\n specification](https://developers.google.com/protocol-buffers/docs/proto3#json).\n\n While the single segment variable follows the semantics of\n [RFC 6570](https://tools.ietf.org/html/rfc6570) Section 3.2.2 Simple String\n Expansion, the multi segment variable **does not** follow RFC 6570 Section\n 3.2.3 Reserved Expansion. The reason is that the Reserved Expansion\n does not expand special characters like `?` and `#`, which would lead\n to invalid URLs. As the result, gRPC Transcoding uses a custom encoding\n for multi segment variables.\n\n The path variables **must not** refer to any repeated or mapped field,\n because client libraries are not capable of handling such variable expansion.\n\n The path variables **must not** capture the leading \"/\" character. The reason\n is that the most common use case \"{var}\" does not capture the leading \"/\"\n character. For consistency, all path variables must share the same behavior.\n\n Repeated message fields must not be mapped to URL query parameters, because\n no client library can support such complicated mapping.\n\n If an API needs to use a JSON array for request or response body, it can map\n the request or response body to a repeated field. However, some gRPC\n Transcoding implementations may not support this feature.\n\n\x0b\n\x03\x04\x01\x01\x12\x04\xbb\x02\x08\x10\n\x8f\x01\n\x04\x04\x01\x02\x00\x12\x04\xc0\x02\x02\x16\x1a\x80\x01 Selects a method to which this rule applies.\n\n Refer to [selector][google.api.DocumentationRule.selector] for syntax\n details.\n\n\r\n\x05\x04\x01\x02\x00\x05\x12\x04\xc0\x02\x02\x08\n\r\n\x05\x04\x01\x02\x00\x01\x12\x04\xc0\x02\t\x11\n\r\n\x05\x04\x01\x02\x00\x03\x12\x04\xc0\x02\x14\x15\n\xd0\x01\n\x04\x04\x01\x08\x00\x12\x06\xc5\x02\x02\xdb\x02\x03\x1a\xbf\x01 Determines the URL pattern is matched by this rules. This pattern can be\n used with any of the {get|put|post|delete|patch} methods. A custom method\n can be defined using the \'custom\' field.\n\n\r\n\x05\x04\x01\x08\x00\x01\x12\x04\xc5\x02\x08\x0f\n\\\n\x04\x04\x01\x02\x01\x12\x04\xc8\x02\x04\x13\x1aN Maps to HTTP GET. Used for listing and getting information about\n resources.\n\n\r\n\x05\x04\x01\x02\x01\x05\x12\x04\xc8\x02\x04\n\n\r\n\x05\x04\x01\x02\x01\x01\x12\x04\xc8\x02\x0b\x0e\n\r\n\x05\x04\x01\x02\x01\x03\x12\x04\xc8\x02\x11\x12\n@\n\x04\x04\x01\x02\x02\x12\x04\xcb\x02\x04\x13\x1a2 Maps to HTTP PUT. Used for replacing a resource.\n\n\r\n\x05\x04\x01\x02\x02\x05\x12\x04\xcb\x02\x04\n\n\r\n\x05\x04\x01\x02\x02\x01\x12\x04\xcb\x02\x0b\x0e\n\r\n\x05\x04\x01\x02\x02\x03\x12\x04\xcb\x02\x11\x12\nX\n\x04\x04\x01\x02\x03\x12\x04\xce\x02\x04\x14\x1aJ Maps to HTTP POST. Used for creating a resource or performing an action.\n\n\r\n\x05\x04\x01\x02\x03\x05\x12\x04\xce\x02\x04\n\n\r\n\x05\x04\x01\x02\x03\x01\x12\x04\xce\x02\x0b\x0f\n\r\n\x05\x04\x01\x02\x03\x03\x12\x04\xce\x02\x12\x13\nB\n\x04\x04\x01\x02\x04\x12\x04\xd1\x02\x04\x16\x1a4 Maps to HTTP DELETE. Used for deleting a resource.\n\n\r\n\x05\x04\x01\x02\x04\x05\x12\x04\xd1\x02\x04\n\n\r\n\x05\x04\x01\x02\x04\x01\x12\x04\xd1\x02\x0b\x11\n\r\n\x05\x04\x01\x02\x04\x03\x12\x04\xd1\x02\x14\x15\nA\n\x04\x04\x01\x02\x05\x12\x04\xd4\x02\x04\x15\x1a3 Maps to HTTP PATCH. Used for updating a resource.\n\n\r\n\x05\x04\x01\x02\x05\x05\x12\x04\xd4\x02\x04\n\n\r\n\x05\x04\x01\x02\x05\x01\x12\x04\xd4\x02\x0b\x10\n\r\n\x05\x04\x01\x02\x05\x03\x12\x04\xd4\x02\x13\x14\n\x98\x02\n\x04\x04\x01\x02\x06\x12\x04\xda\x02\x04!\x1a\x89\x02 The custom pattern is used for specifying an HTTP method that is not\n included in the `pattern` field, such as HEAD, or \"*\" to leave the\n HTTP method unspecified for this rule. The wild-card rule is useful\n for services that provide content to Web (HTML) clients.\n\n\r\n\x05\x04\x01\x02\x06\x06\x12\x04\xda\x02\x04\x15\n\r\n\x05\x04\x01\x02\x06\x01\x12\x04\xda\x02\x16\x1c\n\r\n\x05\x04\x01\x02\x06\x03\x12\x04\xda\x02\x1f \n\xc4\x02\n\x04\x04\x01\x02\x07\x12\x04\xe3\x02\x02\x12\x1a\xb5\x02 The name of the request field whose value is mapped to the HTTP request\n body, or `*` for mapping all request fields not captured by the path\n pattern to the HTTP body, or omitted for not having any HTTP request body.\n\n NOTE: the referred field must be present at the top-level of the request\n message type.\n\n\r\n\x05\x04\x01\x02\x07\x05\x12\x04\xe3\x02\x02\x08\n\r\n\x05\x04\x01\x02\x07\x01\x12\x04\xe3\x02\t\r\n\r\n\x05\x04\x01\x02\x07\x03\x12\x04\xe3\x02\x10\x11\n\x99\x02\n\x04\x04\x01\x02\x08\x12\x04\xeb\x02\x02\x1c\x1a\x8a\x02 Optional. The name of the response field whose value is mapped to the HTTP\n response body. When omitted, the entire response message will be used\n as the HTTP response body.\n\n NOTE: The referred field must be present at the top-level of the response\n message type.\n\n\r\n\x05\x04\x01\x02\x08\x05\x12\x04\xeb\x02\x02\x08\n\r\n\x05\x04\x01\x02\x08\x01\x12\x04\xeb\x02\t\x16\n\r\n\x05\x04\x01\x02\x08\x03\x12\x04\xeb\x02\x19\x1b\n\xbb\x01\n\x04\x04\x01\x02\t\x12\x04\xf0\x02\x02-\x1a\xac\x01 Additional HTTP bindings for the selector. Nested bindings must\n not contain an `additional_bindings` field themselves (that is,\n the nesting may only be one level deep).\n\n\r\n\x05\x04\x01\x02\t\x04\x12\x04\xf0\x02\x02\n\n\r\n\x05\x04\x01\x02\t\x06\x12\x04\xf0\x02\x0b\x13\n\r\n\x05\x04\x01\x02\t\x01\x12\x04\xf0\x02\x14\'\n\r\n\x05\x04\x01\x02\t\x03\x12\x04\xf0\x02*,\nG\n\x02\x04\x02\x12\x06\xf4\x02\x00\xfa\x02\x01\x1a9 A custom pattern is used for defining custom HTTP verb.\n\n\x0b\n\x03\x04\x02\x01\x12\x04\xf4\x02\x08\x19\n2\n\x04\x04\x02\x02\x00\x12\x04\xf6\x02\x02\x12\x1a$ The name of this custom HTTP verb.\n\n\r\n\x05\x04\x02\x02\x00\x05\x12\x04\xf6\x02\x02\x08\n\r\n\x05\x04\x02\x02\x00\x01\x12\x04\xf6\x02\t\r\n\r\n\x05\x04\x02\x02\x00\x03\x12\x04\xf6\x02\x10\x11\n5\n\x04\x04\x02\x02\x01\x12\x04\xf9\x02\x02\x12\x1a\' The path matched by this custom verb.\n\n\r\n\x05\x04\x02\x02\x01\x05\x12\x04\xf9\x02\x02\x08\n\r\n\x05\x04\x02\x02\x01\x01\x12\x04\xf9\x02\t\r\n\r\n\x05\x04\x02\x02\x01\x03\x12\x04\xf9\x02\x10\x11b\x06proto3\n\x83\x84\x03\n google/protobuf/descriptor.proto\x12\x0fgoogle.protobuf\"M\n\x11FileDescriptorSet\x128\n\x04file\x18\x01 \x03(\x0b2$.google.protobuf.FileDescriptorProtoR\x04file\"\xe4\x04\n\x13FileDescriptorProto\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x18\n\x07package\x18\x02 \x01(\tR\x07package\x12\x1e\n\ndependency\x18\x03 \x03(\tR\ndependency\x12+\n\x11public_dependency\x18\n \x03(\x05R\x10publicDependency\x12\'\n\x0fweak_dependency\x18\x0b \x03(\x05R\x0eweakDependency\x12C\n\x0cmessage_type\x18\x04 \x03(\x0b2 .google.protobuf.DescriptorProtoR\x0bmessageType\x12A\n\tenum_type\x18\x05 \x03(\x0b2$.google.protobuf.EnumDescriptorProtoR\x08enumType\x12A\n\x07service\x18\x06 \x03(\x0b2\'.google.protobuf.ServiceDescriptorProtoR\x07service\x12C\n\textension\x18\x07 \x03(\x0b2%.google.protobuf.FieldDescriptorProtoR\textension\x126\n\x07options\x18\x08 \x01(\x0b2\x1c.google.protobuf.FileOptionsR\x07options\x12I\n\x10source_code_info\x18\t \x01(\x0b2\x1f.google.protobuf.SourceCodeInfoR\x0esourceCodeInfo\x12\x16\n\x06syntax\x18\x0c \x01(\tR\x06syntax\"\xb9\x06\n\x0fDescriptorProto\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12;\n\x05field\x18\x02 \x03(\x0b2%.google.protobuf.FieldDescriptorProtoR\x05field\x12C\n\textension\x18\x06 \x03(\x0b2%.google.protobuf.FieldDescriptorProtoR\textension\x12A\n\x0bnested_type\x18\x03 \x03(\x0b2 .google.protobuf.DescriptorProtoR\nnestedType\x12A\n\tenum_type\x18\x04 \x03(\x0b2$.google.protobuf.EnumDescriptorProtoR\x08enumType\x12X\n\x0fextension_range\x18\x05 \x03(\x0b2/.google.protobuf.DescriptorProto.ExtensionRangeR\x0eextensionRange\x12D\n\noneof_decl\x18\x08 \x03(\x0b2%.google.protobuf.OneofDescriptorProtoR\toneofDecl\x129\n\x07options\x18\x07 \x01(\x0b2\x1f.google.protobuf.MessageOptionsR\x07options\x12U\n\x0ereserved_range\x18\t \x03(\x0b2..google.protobuf.DescriptorProto.ReservedRangeR\rreservedRange\x12#\n\rreserved_name\x18\n \x03(\tR\x0creservedName\x1az\n\x0eExtensionRange\x12\x14\n\x05start\x18\x01 \x01(\x05R\x05start\x12\x10\n\x03end\x18\x02 \x01(\x05R\x03end\x12@\n\x07options\x18\x03 \x01(\x0b2&.google.protobuf.ExtensionRangeOptionsR\x07options\x1a7\n\rReservedRange\x12\x14\n\x05start\x18\x01 \x01(\x05R\x05start\x12\x10\n\x03end\x18\x02 \x01(\x05R\x03end\"|\n\x15ExtensionRangeOptions\x12X\n\x14uninterpreted_option\x18\xe7\x07 \x03(\x0b2$.google.protobuf.UninterpretedOptionR\x13uninterpretedOption*\t\x08\xe8\x07\x10\x80\x80\x80\x80\x02\"\xc1\x06\n\x14FieldDescriptorProto\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x16\n\x06number\x18\x03 \x01(\x05R\x06number\x12A\n\x05label\x18\x04 \x01(\x0e2+.google.protobuf.FieldDescriptorProto.LabelR\x05label\x12>\n\x04type\x18\x05 \x01(\x0e2*.google.protobuf.FieldDescriptorProto.TypeR\x04type\x12\x1b\n\ttype_name\x18\x06 \x01(\tR\x08typeName\x12\x1a\n\x08extendee\x18\x02 \x01(\tR\x08extendee\x12#\n\rdefault_value\x18\x07 \x01(\tR\x0cdefaultValue\x12\x1f\n\x0boneof_index\x18\t \x01(\x05R\noneofIndex\x12\x1b\n\tjson_name\x18\n \x01(\tR\x08jsonName\x127\n\x07options\x18\x08 \x01(\x0b2\x1d.google.protobuf.FieldOptionsR\x07options\x12\'\n\x0fproto3_optional\x18\x11 \x01(\x08R\x0eproto3Optional\"\xb6\x02\n\x04Type\x12\x0f\n\x0bTYPE_DOUBLE\x10\x01\x12\x0e\n\nTYPE_FLOAT\x10\x02\x12\x0e\n\nTYPE_INT64\x10\x03\x12\x0f\n\x0bTYPE_UINT64\x10\x04\x12\x0e\n\nTYPE_INT32\x10\x05\x12\x10\n\x0cTYPE_FIXED64\x10\x06\x12\x10\n\x0cTYPE_FIXED32\x10\x07\x12\r\n\tTYPE_BOOL\x10\x08\x12\x0f\n\x0bTYPE_STRING\x10\t\x12\x0e\n\nTYPE_GROUP\x10\n\x12\x10\n\x0cTYPE_MESSAGE\x10\x0b\x12\x0e\n\nTYPE_BYTES\x10\x0c\x12\x0f\n\x0bTYPE_UINT32\x10\r\x12\r\n\tTYPE_ENUM\x10\x0e\x12\x11\n\rTYPE_SFIXED32\x10\x0f\x12\x11\n\rTYPE_SFIXED64\x10\x10\x12\x0f\n\x0bTYPE_SINT32\x10\x11\x12\x0f\n\x0bTYPE_SINT64\x10\x12\"C\n\x05Label\x12\x12\n\x0eLABEL_OPTIONAL\x10\x01\x12\x12\n\x0eLABEL_REQUIRED\x10\x02\x12\x12\n\x0eLABEL_REPEATED\x10\x03\"c\n\x14OneofDescriptorProto\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x127\n\x07options\x18\x02 \x01(\x0b2\x1d.google.protobuf.OneofOptionsR\x07options\"\xe3\x02\n\x13EnumDescriptorProto\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12?\n\x05value\x18\x02 \x03(\x0b2).google.protobuf.EnumValueDescriptorProtoR\x05value\x126\n\x07options\x18\x03 \x01(\x0b2\x1c.google.protobuf.EnumOptionsR\x07options\x12]\n\x0ereserved_range\x18\x04 \x03(\x0b26.google.protobuf.EnumDescriptorProto.EnumReservedRangeR\rreservedRange\x12#\n\rreserved_name\x18\x05 \x03(\tR\x0creservedName\x1a;\n\x11EnumReservedRange\x12\x14\n\x05start\x18\x01 \x01(\x05R\x05start\x12\x10\n\x03end\x18\x02 \x01(\x05R\x03end\"\x83\x01\n\x18EnumValueDescriptorProto\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x16\n\x06number\x18\x02 \x01(\x05R\x06number\x12;\n\x07options\x18\x03 \x01(\x0b2!.google.protobuf.EnumValueOptionsR\x07options\"\xa7\x01\n\x16ServiceDescriptorProto\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12>\n\x06method\x18\x02 \x03(\x0b2&.google.protobuf.MethodDescriptorProtoR\x06method\x129\n\x07options\x18\x03 \x01(\x0b2\x1f.google.protobuf.ServiceOptionsR\x07options\"\x89\x02\n\x15MethodDescriptorProto\x12\x12\n\x04name\x18\x01 \x01(\tR\x04name\x12\x1d\n\ninput_type\x18\x02 \x01(\tR\tinputType\x12\x1f\n\x0boutput_type\x18\x03 \x01(\tR\noutputType\x128\n\x07options\x18\x04 \x01(\x0b2\x1e.google.protobuf.MethodOptionsR\x07options\x120\n\x10client_streaming\x18\x05 \x01(\x08:\x05falseR\x0fclientStreaming\x120\n\x10server_streaming\x18\x06 \x01(\x08:\x05falseR\x0fserverStreaming\"\x91\t\n\x0bFileOptions\x12!\n\x0cjava_package\x18\x01 \x01(\tR\x0bjavaPackage\x120\n\x14java_outer_classname\x18\x08 \x01(\tR\x12javaOuterClassname\x125\n\x13java_multiple_files\x18\n \x01(\x08:\x05falseR\x11javaMultipleFiles\x12D\n\x1djava_generate_equals_and_hash\x18\x14 \x01(\x08B\x02\x18\x01R\x19javaGenerateEqualsAndHash\x12:\n\x16java_string_check_utf8\x18\x1b \x01(\x08:\x05falseR\x13javaStringCheckUtf8\x12S\n\x0coptimize_for\x18\t \x01(\x0e2).google.protobuf.FileOptions.OptimizeMode:\x05SPEEDR\x0boptimizeFor\x12\x1d\n\ngo_package\x18\x0b \x01(\tR\tgoPackage\x125\n\x13cc_generic_services\x18\x10 \x01(\x08:\x05falseR\x11ccGenericServices\x129\n\x15java_generic_services\x18\x11 \x01(\x08:\x05falseR\x13javaGenericServices\x125\n\x13py_generic_services\x18\x12 \x01(\x08:\x05falseR\x11pyGenericServices\x127\n\x14php_generic_services\x18* \x01(\x08:\x05falseR\x12phpGenericServices\x12%\n\ndeprecated\x18\x17 \x01(\x08:\x05falseR\ndeprecated\x12.\n\x10cc_enable_arenas\x18\x1f \x01(\x08:\x04trueR\x0eccEnableArenas\x12*\n\x11objc_class_prefix\x18$ \x01(\tR\x0fobjcClassPrefix\x12)\n\x10csharp_namespace\x18% \x01(\tR\x0fcsharpNamespace\x12!\n\x0cswift_prefix\x18\' \x01(\tR\x0bswiftPrefix\x12(\n\x10php_class_prefix\x18( \x01(\tR\x0ephpClassPrefix\x12#\n\rphp_namespace\x18) \x01(\tR\x0cphpNamespace\x124\n\x16php_metadata_namespace\x18, \x01(\tR\x14phpMetadataNamespace\x12!\n\x0cruby_package\x18- \x01(\tR\x0brubyPackage\x12X\n\x14uninterpreted_option\x18\xe7\x07 \x03(\x0b2$.google.protobuf.UninterpretedOptionR\x13uninterpretedOption\":\n\x0cOptimizeMode\x12\t\n\x05SPEED\x10\x01\x12\r\n\tCODE_SIZE\x10\x02\x12\x10\n\x0cLITE_RUNTIME\x10\x03*\t\x08\xe8\x07\x10\x80\x80\x80\x80\x02J\x04\x08&\x10\'\"\xd1\x02\n\x0eMessageOptions\x12<\n\x17message_set_wire_format\x18\x01 \x01(\x08:\x05falseR\x14messageSetWireFormat\x12L\n\x1fno_standard_descriptor_accessor\x18\x02 \x01(\x08:\x05falseR\x1cnoStandardDescriptorAccessor\x12%\n\ndeprecated\x18\x03 \x01(\x08:\x05falseR\ndeprecated\x12\x1b\n\tmap_entry\x18\x07 \x01(\x08R\x08mapEntry\x12X\n\x14uninterpreted_option\x18\xe7\x07 \x03(\x0b2$.google.protobuf.UninterpretedOptionR\x13uninterpretedOption*\t\x08\xe8\x07\x10\x80\x80\x80\x80\x02J\x04\x08\x08\x10\tJ\x04\x08\t\x10\n\"\xe2\x03\n\x0cFieldOptions\x12A\n\x05ctype\x18\x01 \x01(\x0e2#.google.protobuf.FieldOptions.CType:\x06STRINGR\x05ctype\x12\x16\n\x06packed\x18\x02 \x01(\x08R\x06packed\x12G\n\x06jstype\x18\x06 \x01(\x0e2$.google.protobuf.FieldOptions.JSType:\tJS_NORMALR\x06jstype\x12\x19\n\x04lazy\x18\x05 \x01(\x08:\x05falseR\x04lazy\x12%\n\ndeprecated\x18\x03 \x01(\x08:\x05falseR\ndeprecated\x12\x19\n\x04weak\x18\n \x01(\x08:\x05falseR\x04weak\x12X\n\x14uninterpreted_option\x18\xe7\x07 \x03(\x0b2$.google.protobuf.UninterpretedOptionR\x13uninterpretedOption\"/\n\x05CType\x12\n\n\x06STRING\x10\x00\x12\x08\n\x04CORD\x10\x01\x12\x10\n\x0cSTRING_PIECE\x10\x02\"5\n\x06JSType\x12\r\n\tJS_NORMAL\x10\x00\x12\r\n\tJS_STRING\x10\x01\x12\r\n\tJS_NUMBER\x10\x02*\t\x08\xe8\x07\x10\x80\x80\x80\x80\x02J\x04\x08\x04\x10\x05\"s\n\x0cOneofOptions\x12X\n\x14uninterpreted_option\x18\xe7\x07 \x03(\x0b2$.google.protobuf.UninterpretedOptionR\x13uninterpretedOption*\t\x08\xe8\x07\x10\x80\x80\x80\x80\x02\"\xc0\x01\n\x0bEnumOptions\x12\x1f\n\x0ballow_alias\x18\x02 \x01(\x08R\nallowAlias\x12%\n\ndeprecated\x18\x03 \x01(\x08:\x05falseR\ndeprecated\x12X\n\x14uninterpreted_option\x18\xe7\x07 \x03(\x0b2$.google.protobuf.UninterpretedOptionR\x13uninterpretedOption*\t\x08\xe8\x07\x10\x80\x80\x80\x80\x02J\x04\x08\x05\x10\x06\"\x9e\x01\n\x10EnumValueOptions\x12%\n\ndeprecated\x18\x01 \x01(\x08:\x05falseR\ndeprecated\x12X\n\x14uninterpreted_option\x18\xe7\x07 \x03(\x0b2$.google.protobuf.UninterpretedOptionR\x13uninterpretedOption*\t\x08\xe8\x07\x10\x80\x80\x80\x80\x02\"\x9c\x01\n\x0eServiceOptions\x12%\n\ndeprecated\x18! \x01(\x08:\x05falseR\ndeprecated\x12X\n\x14uninterpreted_option\x18\xe7\x07 \x03(\x0b2$.google.protobuf.UninterpretedOptionR\x13uninterpretedOption*\t\x08\xe8\x07\x10\x80\x80\x80\x80\x02\"\xe0\x02\n\rMethodOptions\x12%\n\ndeprecated\x18! \x01(\x08:\x05falseR\ndeprecated\x12q\n\x11idempotency_level\x18\" \x01(\x0e2/.google.protobuf.MethodOptions.IdempotencyLevel:\x13IDEMPOTENCY_UNKNOWNR\x10idempotencyLevel\x12X\n\x14uninterpreted_option\x18\xe7\x07 \x03(\x0b2$.google.protobuf.UninterpretedOptionR\x13uninterpretedOption\"P\n\x10IdempotencyLevel\x12\x17\n\x13IDEMPOTENCY_UNKNOWN\x10\x00\x12\x13\n\x0fNO_SIDE_EFFECTS\x10\x01\x12\x0e\n\nIDEMPOTENT\x10\x02*\t\x08\xe8\x07\x10\x80\x80\x80\x80\x02\"\x9a\x03\n\x13UninterpretedOption\x12A\n\x04name\x18\x02 \x03(\x0b2-.google.protobuf.UninterpretedOption.NamePartR\x04name\x12)\n\x10identifier_value\x18\x03 \x01(\tR\x0fidentifierValue\x12,\n\x12positive_int_value\x18\x04 \x01(\x04R\x10positiveIntValue\x12,\n\x12negative_int_value\x18\x05 \x01(\x03R\x10negativeIntValue\x12!\n\x0cdouble_value\x18\x06 \x01(\x01R\x0bdoubleValue\x12!\n\x0cstring_value\x18\x07 \x01(\x0cR\x0bstringValue\x12\'\n\x0faggregate_value\x18\x08 \x01(\tR\x0eaggregateValue\x1aJ\n\x08NamePart\x12\x1b\n\tname_part\x18\x01 \x02(\tR\x08namePart\x12!\n\x0cis_extension\x18\x02 \x02(\x08R\x0bisExtension\"\xa7\x02\n\x0eSourceCodeInfo\x12D\n\x08location\x18\x01 \x03(\x0b2(.google.protobuf.SourceCodeInfo.LocationR\x08location\x1a\xce\x01\n\x08Location\x12\x16\n\x04path\x18\x01 \x03(\x05B\x02\x10\x01R\x04path\x12\x16\n\x04span\x18\x02 \x03(\x05B\x02\x10\x01R\x04span\x12)\n\x10leading_comments\x18\x03 \x01(\tR\x0fleadingComments\x12+\n\x11trailing_comments\x18\x04 \x01(\tR\x10trailingComments\x12:\n\x19leading_detached_comments\x18\x06 \x03(\tR\x17leadingDetachedComments\"\xd1\x01\n\x11GeneratedCodeInfo\x12M\n\nannotation\x18\x01 \x03(\x0b2-.google.protobuf.GeneratedCodeInfo.AnnotationR\nannotation\x1am\n\nAnnotation\x12\x16\n\x04path\x18\x01 \x03(\x05B\x02\x10\x01R\x04path\x12\x1f\n\x0bsource_file\x18\x02 \x01(\tR\nsourceFile\x12\x14\n\x05begin\x18\x03 \x01(\x05R\x05begin\x12\x10\n\x03end\x18\x04 \x01(\x05R\x03endB\x8f\x01\n\x13com.google.protobufB\x10DescriptorProtosH\x01Z>github.com/golang/protobuf/protoc-gen-go/descriptor;descriptor\xf8\x01\x01\xa2\x02\x03GPB\xaa\x02\x1aGoogle.Protobuf.ReflectionJ\xbc\xc8\x02\n\x07\x12\x05\'\x00\x8c\x07\x01\n\xaa\x0f\n\x01\x0c\x12\x03\'\x00\x122\xc1\x0c Protocol Buffers - Google\'s data interchange format\n Copyright 2008 Google Inc.  All rights reserved.\n https://developers.google.com/protocol-buffers/\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n\n     * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n     * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n     * Neither the name of Google Inc. nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n2\xdb\x02 Author: kenton@google.com (Kenton Varda)\n  Based on original Protocol Buffers design by\n  Sanjay Ghemawat, Jeff Dean, and others.\n\n The messages in this file describe the definitions found in .proto files.\n A valid .proto file can be translated directly to a FileDescriptorProto\n without any other information (e.g. without reading its imports).\n\n\x08\n\x01\x02\x12\x03)\x00\x18\n\x08\n\x01\x08\x12\x03+\x00U\n\t\n\x02\x08\x0b\x12\x03+\x00U\n\x08\n\x01\x08\x12\x03,\x00,\n\t\n\x02\x08\x01\x12\x03,\x00,\n\x08\n\x01\x08\x12\x03-\x001\n\t\n\x02\x08\x08\x12\x03-\x001\n\x08\n\x01\x08\x12\x03.\x007\n\t\n\x02\x08%\x12\x03.\x007\n\x08\n\x01\x08\x12\x03/\x00!\n\t\n\x02\x08$\x12\x03/\x00!\n\x08\n\x01\x08\x12\x030\x00\x1f\n\t\n\x02\x08\x1f\x12\x030\x00\x1f\n\x08\n\x01\x08\x12\x034\x00\x1c\n\x7f\n\x02\x08\t\x12\x034\x00\x1c\x1at descriptor.proto must be optimized for speed because reflection-based\n algorithms don\'t work during bootstrapping.\n\nj\n\x02\x04\x00\x12\x048\x00:\x01\x1a^ The protocol compiler can output a FileDescriptorSet containing the .proto\n files it parses.\n\n\n\n\x03\x04\x00\x01\x12\x038\x08\x19\n\x0b\n\x04\x04\x00\x02\x00\x12\x039\x02(\n\x0c\n\x05\x04\x00\x02\x00\x04\x12\x039\x02\n\n\x0c\n\x05\x04\x00\x02\x00\x06\x12\x039\x0b\x1e\n\x0c\n\x05\x04\x00\x02\x00\x01\x12\x039\x1f#\n\x0c\n\x05\x04\x00\x02\x00\x03\x12\x039&\'\n/\n\x02\x04\x01\x12\x04=\x00Z\x01\x1a# Describes a complete .proto file.\n\n\n\n\x03\x04\x01\x01\x12\x03=\x08\x1b\n9\n\x04\x04\x01\x02\x00\x12\x03>\x02\x1b\", file name, relative to root of source tree\n\n\x0c\n\x05\x04\x01\x02\x00\x04\x12\x03>\x02\n\n\x0c\n\x05\x04\x01\x02\x00\x05\x12\x03>\x0b\x11\n\x0c\n\x05\x04\x01\x02\x00\x01\x12\x03>\x12\x16\n\x0c\n\x05\x04\x01\x02\x00\x03\x12\x03>\x19\x1a\n*\n\x04\x04\x01\x02\x01\x12\x03?\x02\x1e\"\x1d e.g. \"foo\", \"foo.bar\", etc.\n\n\x0c\n\x05\x04\x01\x02\x01\x04\x12\x03?\x02\n\n\x0c\n\x05\x04\x01\x02\x01\x05\x12\x03?\x0b\x11\n\x0c\n\x05\x04\x01\x02\x01\x01\x12\x03?\x12\x19\n\x0c\n\x05\x04\x01\x02\x01\x03\x12\x03?\x1c\x1d\n4\n\x04\x04\x01\x02\x02\x12\x03B\x02!\x1a\' Names of files imported by this file.\n\n\x0c\n\x05\x04\x01\x02\x02\x04\x12\x03B\x02\n\n\x0c\n\x05\x04\x01\x02\x02\x05\x12\x03B\x0b\x11\n\x0c\n\x05\x04\x01\x02\x02\x01\x12\x03B\x12\x1c\n\x0c\n\x05\x04\x01\x02\x02\x03\x12\x03B\x1f \nQ\n\x04\x04\x01\x02\x03\x12\x03D\x02(\x1aD Indexes of the public imported files in the dependency list above.\n\n\x0c\n\x05\x04\x01\x02\x03\x04\x12\x03D\x02\n\n\x0c\n\x05\x04\x01\x02\x03\x05\x12\x03D\x0b\x10\n\x0c\n\x05\x04\x01\x02\x03\x01\x12\x03D\x11\"\n\x0c\n\x05\x04\x01\x02\x03\x03\x12\x03D%\'\nz\n\x04\x04\x01\x02\x04\x12\x03G\x02&\x1am Indexes of the weak imported files in the dependency list.\n For Google-internal migration only. Do not use.\n\n\x0c\n\x05\x04\x01\x02\x04\x04\x12\x03G\x02\n\n\x0c\n\x05\x04\x01\x02\x04\x05\x12\x03G\x0b\x10\n\x0c\n\x05\x04\x01\x02\x04\x01\x12\x03G\x11 \n\x0c\n\x05\x04\x01\x02\x04\x03\x12\x03G#%\n6\n\x04\x04\x01\x02\x05\x12\x03J\x02,\x1a) All top-level definitions in this file.\n\n\x0c\n\x05\x04\x01\x02\x05\x04\x12\x03J\x02\n\n\x0c\n\x05\x04\x01\x02\x05\x06\x12\x03J\x0b\x1a\n\x0c\n\x05\x04\x01\x02\x05\x01\x12\x03J\x1b\'\n\x0c\n\x05\x04\x01\x02\x05\x03\x12\x03J*+\n\x0b\n\x04\x04\x01\x02\x06\x12\x03K\x02-\n\x0c\n\x05\x04\x01\x02\x06\x04\x12\x03K\x02\n\n\x0c\n\x05\x04\x01\x02\x06\x06\x12\x03K\x0b\x1e\n\x0c\n\x05\x04\x01\x02\x06\x01\x12\x03K\x1f(\n\x0c\n\x05\x04\x01\x02\x06\x03\x12\x03K+,\n\x0b\n\x04\x04\x01\x02\x07\x12\x03L\x02.\n\x0c\n\x05\x04\x01\x02\x07\x04\x12\x03L\x02\n\n\x0c\n\x05\x04\x01\x02\x07\x06\x12\x03L\x0b!\n\x0c\n\x05\x04\x01\x02\x07\x01\x12\x03L\")\n\x0c\n\x05\x04\x01\x02\x07\x03\x12\x03L,-\n\x0b\n\x04\x04\x01\x02\x08\x12\x03M\x02.\n\x0c\n\x05\x04\x01\x02\x08\x04\x12\x03M\x02\n\n\x0c\n\x05\x04\x01\x02\x08\x06\x12\x03M\x0b\x1f\n\x0c\n\x05\x04\x01\x02\x08\x01\x12\x03M )\n\x0c\n\x05\x04\x01\x02\x08\x03\x12\x03M,-\n\x0b\n\x04\x04\x01\x02\t\x12\x03O\x02#\n\x0c\n\x05\x04\x01\x02\t\x04\x12\x03O\x02\n\n\x0c\n\x05\x04\x01\x02\t\x06\x12\x03O\x0b\x16\n\x0c\n\x05\x04\x01\x02\t\x01\x12\x03O\x17\x1e\n\x0c\n\x05\x04\x01\x02\t\x03\x12\x03O!\"\n\xf4\x01\n\x04\x04\x01\x02\n\x12\x03U\x02/\x1a\xe6\x01 This field contains optional information about the original source code.\n You may safely remove this entire field without harming runtime\n functionality of the descriptors -- the information is needed only by\n development tools.\n\n\x0c\n\x05\x04\x01\x02\n\x04\x12\x03U\x02\n\n\x0c\n\x05\x04\x01\x02\n\x06\x12\x03U\x0b\x19\n\x0c\n\x05\x04\x01\x02\n\x01\x12\x03U\x1a*\n\x0c\n\x05\x04\x01\x02\n\x03\x12\x03U-.\n]\n\x04\x04\x01\x02\x0b\x12\x03Y\x02\x1e\x1aP The syntax of the proto file.\n The supported values are \"proto2\" and \"proto3\".\n\n\x0c\n\x05\x04\x01\x02\x0b\x04\x12\x03Y\x02\n\n\x0c\n\x05\x04\x01\x02\x0b\x05\x12\x03Y\x0b\x11\n\x0c\n\x05\x04\x01\x02\x0b\x01\x12\x03Y\x12\x18\n\x0c\n\x05\x04\x01\x02\x0b\x03\x12\x03Y\x1b\x1d\n\'\n\x02\x04\x02\x12\x04]\x00}\x01\x1a\x1b Describes a message type.\n\n\n\n\x03\x04\x02\x01\x12\x03]\x08\x17\n\x0b\n\x04\x04\x02\x02\x00\x12\x03^\x02\x1b\n\x0c\n\x05\x04\x02\x02\x00\x04\x12\x03^\x02\n\n\x0c\n\x05\x04\x02\x02\x00\x05\x12\x03^\x0b\x11\n\x0c\n\x05\x04\x02\x02\x00\x01\x12\x03^\x12\x16\n\x0c\n\x05\x04\x02\x02\x00\x03\x12\x03^\x19\x1a\n\x0b\n\x04\x04\x02\x02\x01\x12\x03`\x02*\n\x0c\n\x05\x04\x02\x02\x01\x04\x12\x03`\x02\n\n\x0c\n\x05\x04\x02\x02\x01\x06\x12\x03`\x0b\x1f\n\x0c\n\x05\x04\x02\x02\x01\x01\x12\x03` %\n\x0c\n\x05\x04\x02\x02\x01\x03\x12\x03`()\n\x0b\n\x04\x04\x02\x02\x02\x12\x03a\x02.\n\x0c\n\x05\x04\x02\x02\x02\x04\x12\x03a\x02\n\n\x0c\n\x05\x04\x02\x02\x02\x06\x12\x03a\x0b\x1f\n\x0c\n\x05\x04\x02\x02\x02\x01\x12\x03a )\n\x0c\n\x05\x04\x02\x02\x02\x03\x12\x03a,-\n\x0b\n\x04\x04\x02\x02\x03\x12\x03c\x02+\n\x0c\n\x05\x04\x02\x02\x03\x04\x12\x03c\x02\n\n\x0c\n\x05\x04\x02\x02\x03\x06\x12\x03c\x0b\x1a\n\x0c\n\x05\x04\x02\x02\x03\x01\x12\x03c\x1b&\n\x0c\n\x05\x04\x02\x02\x03\x03\x12\x03c)*\n\x0b\n\x04\x04\x02\x02\x04\x12\x03d\x02-\n\x0c\n\x05\x04\x02\x02\x04\x04\x12\x03d\x02\n\n\x0c\n\x05\x04\x02\x02\x04\x06\x12\x03d\x0b\x1e\n\x0c\n\x05\x04\x02\x02\x04\x01\x12\x03d\x1f(\n\x0c\n\x05\x04\x02\x02\x04\x03\x12\x03d+,\n\x0c\n\x04\x04\x02\x03\x00\x12\x04f\x02k\x03\n\x0c\n\x05\x04\x02\x03\x00\x01\x12\x03f\n\x18\n\x1b\n\x06\x04\x02\x03\x00\x02\x00\x12\x03g\x04\x1d\"\x0c Inclusive.\n\n\x0e\n\x07\x04\x02\x03\x00\x02\x00\x04\x12\x03g\x04\x0c\n\x0e\n\x07\x04\x02\x03\x00\x02\x00\x05\x12\x03g\r\x12\n\x0e\n\x07\x04\x02\x03\x00\x02\x00\x01\x12\x03g\x13\x18\n\x0e\n\x07\x04\x02\x03\x00\x02\x00\x03\x12\x03g\x1b\x1c\n\x1b\n\x06\x04\x02\x03\x00\x02\x01\x12\x03h\x04\x1b\"\x0c Exclusive.\n\n\x0e\n\x07\x04\x02\x03\x00\x02\x01\x04\x12\x03h\x04\x0c\n\x0e\n\x07\x04\x02\x03\x00\x02\x01\x05\x12\x03h\r\x12\n\x0e\n\x07\x04\x02\x03\x00\x02\x01\x01\x12\x03h\x13\x16\n\x0e\n\x07\x04\x02\x03\x00\x02\x01\x03\x12\x03h\x19\x1a\n\r\n\x06\x04\x02\x03\x00\x02\x02\x12\x03j\x04/\n\x0e\n\x07\x04\x02\x03\x00\x02\x02\x04\x12\x03j\x04\x0c\n\x0e\n\x07\x04\x02\x03\x00\x02\x02\x06\x12\x03j\r\"\n\x0e\n\x07\x04\x02\x03\x00\x02\x02\x01\x12\x03j#*\n\x0e\n\x07\x04\x02\x03\x00\x02\x02\x03\x12\x03j-.\n\x0b\n\x04\x04\x02\x02\x05\x12\x03l\x02.\n\x0c\n\x05\x04\x02\x02\x05\x04\x12\x03l\x02\n\n\x0c\n\x05\x04\x02\x02\x05\x06\x12\x03l\x0b\x19\n\x0c\n\x05\x04\x02\x02\x05\x01\x12\x03l\x1a)\n\x0c\n\x05\x04\x02\x02\x05\x03\x12\x03l,-\n\x0b\n\x04\x04\x02\x02\x06\x12\x03n\x02/\n\x0c\n\x05\x04\x02\x02\x06\x04\x12\x03n\x02\n\n\x0c\n\x05\x04\x02\x02\x06\x06\x12\x03n\x0b\x1f\n\x0c\n\x05\x04\x02\x02\x06\x01\x12\x03n *\n\x0c\n\x05\x04\x02\x02\x06\x03\x12\x03n-.\n\x0b\n\x04\x04\x02\x02\x07\x12\x03p\x02&\n\x0c\n\x05\x04\x02\x02\x07\x04\x12\x03p\x02\n\n\x0c\n\x05\x04\x02\x02\x07\x06\x12\x03p\x0b\x19\n\x0c\n\x05\x04\x02\x02\x07\x01\x12\x03p\x1a!\n\x0c\n\x05\x04\x02\x02\x07\x03\x12\x03p$%\n\xaa\x01\n\x04\x04\x02\x03\x01\x12\x04u\x02x\x03\x1a\x9b\x01 Range of reserved tag numbers. Reserved tag numbers may not be used by\n fields or extension ranges in the same message. Reserved ranges may\n not overlap.\n\n\x0c\n\x05\x04\x02\x03\x01\x01\x12\x03u\n\x17\n\x1b\n\x06\x04\x02\x03\x01\x02\x00\x12\x03v\x04\x1d\"\x0c Inclusive.\n\n\x0e\n\x07\x04\x02\x03\x01\x02\x00\x04\x12\x03v\x04\x0c\n\x0e\n\x07\x04\x02\x03\x01\x02\x00\x05\x12\x03v\r\x12\n\x0e\n\x07\x04\x02\x03\x01\x02\x00\x01\x12\x03v\x13\x18\n\x0e\n\x07\x04\x02\x03\x01\x02\x00\x03\x12\x03v\x1b\x1c\n\x1b\n\x06\x04\x02\x03\x01\x02\x01\x12\x03w\x04\x1b\"\x0c Exclusive.\n\n\x0e\n\x07\x04\x02\x03\x01\x02\x01\x04\x12\x03w\x04\x0c\n\x0e\n\x07\x04\x02\x03\x01\x02\x01\x05\x12\x03w\r\x12\n\x0e\n\x07\x04\x02\x03\x01\x02\x01\x01\x12\x03w\x13\x16\n\x0e\n\x07\x04\x02\x03\x01\x02\x01\x03\x12\x03w\x19\x1a\n\x0b\n\x04\x04\x02\x02\x08\x12\x03y\x02,\n\x0c\n\x05\x04\x02\x02\x08\x04\x12\x03y\x02\n\n\x0c\n\x05\x04\x02\x02\x08\x06\x12\x03y\x0b\x18\n\x0c\n\x05\x04\x02\x02\x08\x01\x12\x03y\x19\'\n\x0c\n\x05\x04\x02\x02\x08\x03\x12\x03y*+\n\x82\x01\n\x04\x04\x02\x02\t\x12\x03|\x02%\x1au Reserved field names, which may not be used by fields in the same message.\n A given name may only be reserved once.\n\n\x0c\n\x05\x04\x02\x02\t\x04\x12\x03|\x02\n\n\x0c\n\x05\x04\x02\x02\t\x05\x12\x03|\x0b\x11\n\x0c\n\x05\x04\x02\x02\t\x01\x12\x03|\x12\x1f\n\x0c\n\x05\x04\x02\x02\t\x03\x12\x03|\"$\n\x0b\n\x02\x04\x03\x12\x05\x7f\x00\x86\x01\x01\n\n\n\x03\x04\x03\x01\x12\x03\x7f\x08\x1d\nO\n\x04\x04\x03\x02\x00\x12\x04\x81\x01\x02:\x1aA The parser stores options it doesn\'t recognize here. See above.\n\n\r\n\x05\x04\x03\x02\x00\x04\x12\x04\x81\x01\x02\n\n\r\n\x05\x04\x03\x02\x00\x06\x12\x04\x81\x01\x0b\x1e\n\r\n\x05\x04\x03\x02\x00\x01\x12\x04\x81\x01\x1f3\n\r\n\x05\x04\x03\x02\x00\x03\x12\x04\x81\x0169\nZ\n\x03\x04\x03\x05\x12\x04\x85\x01\x02\x19\x1aM Clients can define custom options in extensions of this message. See above.\n\n\x0c\n\x04\x04\x03\x05\x00\x12\x04\x85\x01\r\x18\n\r\n\x05\x04\x03\x05\x00\x01\x12\x04\x85\x01\r\x11\n\r\n\x05\x04\x03\x05\x00\x02\x12\x04\x85\x01\x15\x18\n3\n\x02\x04\x04\x12\x06\x89\x01\x00\xee\x01\x01\x1a% Describes a field within a message.\n\n\x0b\n\x03\x04\x04\x01\x12\x04\x89\x01\x08\x1c\n\x0e\n\x04\x04\x04\x04\x00\x12\x06\x8a\x01\x02\xa9\x01\x03\n\r\n\x05\x04\x04\x04\x00\x01\x12\x04\x8a\x01\x07\x0b\nS\n\x06\x04\x04\x04\x00\x02\x00\x12\x04\x8d\x01\x04\x14\x1aC 0 is reserved for errors.\n Order is weird for historical reasons.\n\n\x0f\n\x07\x04\x04\x04\x00\x02\x00\x01\x12\x04\x8d\x01\x04\x0f\n\x0f\n\x07\x04\x04\x04\x00\x02\x00\x02\x12\x04\x8d\x01\x12\x13\n\x0e\n\x06\x04\x04\x04\x00\x02\x01\x12\x04\x8e\x01\x04\x13\n\x0f\n\x07\x04\x04\x04\x00\x02\x01\x01\x12\x04\x8e\x01\x04\x0e\n\x0f\n\x07\x04\x04\x04\x00\x02\x01\x02\x12\x04\x8e\x01\x11\x12\nw\n\x06\x04\x04\x04\x00\x02\x02\x12\x04\x91\x01\x04\x13\x1ag Not ZigZag encoded.  Negative numbers take 10 bytes.  Use TYPE_SINT64 if\n negative values are likely.\n\n\x0f\n\x07\x04\x04\x04\x00\x02\x02\x01\x12\x04\x91\x01\x04\x0e\n\x0f\n\x07\x04\x04\x04\x00\x02\x02\x02\x12\x04\x91\x01\x11\x12\n\x0e\n\x06\x04\x04\x04\x00\x02\x03\x12\x04\x92\x01\x04\x14\n\x0f\n\x07\x04\x04\x04\x00\x02\x03\x01\x12\x04\x92\x01\x04\x0f\n\x0f\n\x07\x04\x04\x04\x00\x02\x03\x02\x12\x04\x92\x01\x12\x13\nw\n\x06\x04\x04\x04\x00\x02\x04\x12\x04\x95\x01\x04\x13\x1ag Not ZigZag encoded.  Negative numbers take 10 bytes.  Use TYPE_SINT32 if\n negative values are likely.\n\n\x0f\n\x07\x04\x04\x04\x00\x02\x04\x01\x12\x04\x95\x01\x04\x0e\n\x0f\n\x07\x04\x04\x04\x00\x02\x04\x02\x12\x04\x95\x01\x11\x12\n\x0e\n\x06\x04\x04\x04\x00\x02\x05\x12\x04\x96\x01\x04\x15\n\x0f\n\x07\x04\x04\x04\x00\x02\x05\x01\x12\x04\x96\x01\x04\x10\n\x0f\n\x07\x04\x04\x04\x00\x02\x05\x02\x12\x04\x96\x01\x13\x14\n\x0e\n\x06\x04\x04\x04\x00\x02\x06\x12\x04\x97\x01\x04\x15\n\x0f\n\x07\x04\x04\x04\x00\x02\x06\x01\x12\x04\x97\x01\x04\x10\n\x0f\n\x07\x04\x04\x04\x00\x02\x06\x02\x12\x04\x97\x01\x13\x14\n\x0e\n\x06\x04\x04\x04\x00\x02\x07\x12\x04\x98\x01\x04\x12\n\x0f\n\x07\x04\x04\x04\x00\x02\x07\x01\x12\x04\x98\x01\x04\r\n\x0f\n\x07\x04\x04\x04\x00\x02\x07\x02\x12\x04\x98\x01\x10\x11\n\x0e\n\x06\x04\x04\x04\x00\x02\x08\x12\x04\x99\x01\x04\x14\n\x0f\n\x07\x04\x04\x04\x00\x02\x08\x01\x12\x04\x99\x01\x04\x0f\n\x0f\n\x07\x04\x04\x04\x00\x02\x08\x02\x12\x04\x99\x01\x12\x13\n\xe2\x01\n\x06\x04\x04\x04\x00\x02\t\x12\x04\x9e\x01\x04\x14\x1a\xd1\x01 Tag-delimited aggregate.\n Group type is deprecated and not supported in proto3. However, Proto3\n implementations should still be able to parse the group wire format and\n treat group fields as unknown fields.\n\n\x0f\n\x07\x04\x04\x04\x00\x02\t\x01\x12\x04\x9e\x01\x04\x0e\n\x0f\n\x07\x04\x04\x04\x00\x02\t\x02\x12\x04\x9e\x01\x11\x13\n-\n\x06\x04\x04\x04\x00\x02\n\x12\x04\x9f\x01\x04\x16\"\x1d Length-delimited aggregate.\n\n\x0f\n\x07\x04\x04\x04\x00\x02\n\x01\x12\x04\x9f\x01\x04\x10\n\x0f\n\x07\x04\x04\x04\x00\x02\n\x02\x12\x04\x9f\x01\x13\x15\n#\n\x06\x04\x04\x04\x00\x02\x0b\x12\x04\xa2\x01\x04\x14\x1a\x13 New in version 2.\n\n\x0f\n\x07\x04\x04\x04\x00\x02\x0b\x01\x12\x04\xa2\x01\x04\x0e\n\x0f\n\x07\x04\x04\x04\x00\x02\x0b\x02\x12\x04\xa2\x01\x11\x13\n\x0e\n\x06\x04\x04\x04\x00\x02\x0c\x12\x04\xa3\x01\x04\x15\n\x0f\n\x07\x04\x04\x04\x00\x02\x0c\x01\x12\x04\xa3\x01\x04\x0f\n\x0f\n\x07\x04\x04\x04\x00\x02\x0c\x02\x12\x04\xa3\x01\x12\x14\n\x0e\n\x06\x04\x04\x04\x00\x02\r\x12\x04\xa4\x01\x04\x13\n\x0f\n\x07\x04\x04\x04\x00\x02\r\x01\x12\x04\xa4\x01\x04\r\n\x0f\n\x07\x04\x04\x04\x00\x02\r\x02\x12\x04\xa4\x01\x10\x12\n\x0e\n\x06\x04\x04\x04\x00\x02\x0e\x12\x04\xa5\x01\x04\x17\n\x0f\n\x07\x04\x04\x04\x00\x02\x0e\x01\x12\x04\xa5\x01\x04\x11\n\x0f\n\x07\x04\x04\x04\x00\x02\x0e\x02\x12\x04\xa5\x01\x14\x16\n\x0e\n\x06\x04\x04\x04\x00\x02\x0f\x12\x04\xa6\x01\x04\x17\n\x0f\n\x07\x04\x04\x04\x00\x02\x0f\x01\x12\x04\xa6\x01\x04\x11\n\x0f\n\x07\x04\x04\x04\x00\x02\x0f\x02\x12\x04\xa6\x01\x14\x16\n\'\n\x06\x04\x04\x04\x00\x02\x10\x12\x04\xa7\x01\x04\x15\"\x17 Uses ZigZag encoding.\n\n\x0f\n\x07\x04\x04\x04\x00\x02\x10\x01\x12\x04\xa7\x01\x04\x0f\n\x0f\n\x07\x04\x04\x04\x00\x02\x10\x02\x12\x04\xa7\x01\x12\x14\n\'\n\x06\x04\x04\x04\x00\x02\x11\x12\x04\xa8\x01\x04\x15\"\x17 Uses ZigZag encoding.\n\n\x0f\n\x07\x04\x04\x04\x00\x02\x11\x01\x12\x04\xa8\x01\x04\x0f\n\x0f\n\x07\x04\x04\x04\x00\x02\x11\x02\x12\x04\xa8\x01\x12\x14\n\x0e\n\x04\x04\x04\x04\x01\x12\x06\xab\x01\x02\xb0\x01\x03\n\r\n\x05\x04\x04\x04\x01\x01\x12\x04\xab\x01\x07\x0c\n*\n\x06\x04\x04\x04\x01\x02\x00\x12\x04\xad\x01\x04\x17\x1a\x1a 0 is reserved for errors\n\n\x0f\n\x07\x04\x04\x04\x01\x02\x00\x01\x12\x04\xad\x01\x04\x12\n\x0f\n\x07\x04\x04\x04\x01\x02\x00\x02\x12\x04\xad\x01\x15\x16\n\x0e\n\x06\x04\x04\x04\x01\x02\x01\x12\x04\xae\x01\x04\x17\n\x0f\n\x07\x04\x04\x04\x01\x02\x01\x01\x12\x04\xae\x01\x04\x12\n\x0f\n\x07\x04\x04\x04\x01\x02\x01\x02\x12\x04\xae\x01\x15\x16\n\x0e\n\x06\x04\x04\x04\x01\x02\x02\x12\x04\xaf\x01\x04\x17\n\x0f\n\x07\x04\x04\x04\x01\x02\x02\x01\x12\x04\xaf\x01\x04\x12\n\x0f\n\x07\x04\x04\x04\x01\x02\x02\x02\x12\x04\xaf\x01\x15\x16\n\x0c\n\x04\x04\x04\x02\x00\x12\x04\xb2\x01\x02\x1b\n\r\n\x05\x04\x04\x02\x00\x04\x12\x04\xb2\x01\x02\n\n\r\n\x05\x04\x04\x02\x00\x05\x12\x04\xb2\x01\x0b\x11\n\r\n\x05\x04\x04\x02\x00\x01\x12\x04\xb2\x01\x12\x16\n\r\n\x05\x04\x04\x02\x00\x03\x12\x04\xb2\x01\x19\x1a\n\x0c\n\x04\x04\x04\x02\x01\x12\x04\xb3\x01\x02\x1c\n\r\n\x05\x04\x04\x02\x01\x04\x12\x04\xb3\x01\x02\n\n\r\n\x05\x04\x04\x02\x01\x05\x12\x04\xb3\x01\x0b\x10\n\r\n\x05\x04\x04\x02\x01\x01\x12\x04\xb3\x01\x11\x17\n\r\n\x05\x04\x04\x02\x01\x03\x12\x04\xb3\x01\x1a\x1b\n\x0c\n\x04\x04\x04\x02\x02\x12\x04\xb4\x01\x02\x1b\n\r\n\x05\x04\x04\x02\x02\x04\x12\x04\xb4\x01\x02\n\n\r\n\x05\x04\x04\x02\x02\x06\x12\x04\xb4\x01\x0b\x10\n\r\n\x05\x04\x04\x02\x02\x01\x12\x04\xb4\x01\x11\x16\n\r\n\x05\x04\x04\x02\x02\x03\x12\x04\xb4\x01\x19\x1a\n\x9c\x01\n\x04\x04\x04\x02\x03\x12\x04\xb8\x01\x02\x19\x1a\x8d\x01 If type_name is set, this need not be set.  If both this and type_name\n are set, this must be one of TYPE_ENUM, TYPE_MESSAGE or TYPE_GROUP.\n\n\r\n\x05\x04\x04\x02\x03\x04\x12\x04\xb8\x01\x02\n\n\r\n\x05\x04\x04\x02\x03\x06\x12\x04\xb8\x01\x0b\x0f\n\r\n\x05\x04\x04\x02\x03\x01\x12\x04\xb8\x01\x10\x14\n\r\n\x05\x04\x04\x02\x03\x03\x12\x04\xb8\x01\x17\x18\n\xb7\x02\n\x04\x04\x04\x02\x04\x12\x04\xbf\x01\x02 \x1a\xa8\x02 For message and enum types, this is the name of the type.  If the name\n starts with a \'.\', it is fully-qualified.  Otherwise, C++-like scoping\n rules are used to find the type (i.e. first the nested types within this\n message are searched, then within the parent, on up to the root\n namespace).\n\n\r\n\x05\x04\x04\x02\x04\x04\x12\x04\xbf\x01\x02\n\n\r\n\x05\x04\x04\x02\x04\x05\x12\x04\xbf\x01\x0b\x11\n\r\n\x05\x04\x04\x02\x04\x01\x12\x04\xbf\x01\x12\x1b\n\r\n\x05\x04\x04\x02\x04\x03\x12\x04\xbf\x01\x1e\x1f\n~\n\x04\x04\x04\x02\x05\x12\x04\xc3\x01\x02\x1f\x1ap For extensions, this is the name of the type being extended.  It is\n resolved in the same manner as type_name.\n\n\r\n\x05\x04\x04\x02\x05\x04\x12\x04\xc3\x01\x02\n\n\r\n\x05\x04\x04\x02\x05\x05\x12\x04\xc3\x01\x0b\x11\n\r\n\x05\x04\x04\x02\x05\x01\x12\x04\xc3\x01\x12\x1a\n\r\n\x05\x04\x04\x02\x05\x03\x12\x04\xc3\x01\x1d\x1e\n\xb1\x02\n\x04\x04\x04\x02\x06\x12\x04\xca\x01\x02$\x1a\xa2\x02 For numeric types, contains the original text representation of the value.\n For booleans, \"true\" or \"false\".\n For strings, contains the default text contents (not escaped in any way).\n For bytes, contains the C escaped value.  All bytes >= 128 are escaped.\n TODO(kenton):  Base-64 encode?\n\n\r\n\x05\x04\x04\x02\x06\x04\x12\x04\xca\x01\x02\n\n\r\n\x05\x04\x04\x02\x06\x05\x12\x04\xca\x01\x0b\x11\n\r\n\x05\x04\x04\x02\x06\x01\x12\x04\xca\x01\x12\x1f\n\r\n\x05\x04\x04\x02\x06\x03\x12\x04\xca\x01\"#\n\x84\x01\n\x04\x04\x04\x02\x07\x12\x04\xce\x01\x02!\x1av If set, gives the index of a oneof in the containing type\'s oneof_decl\n list.  This field is a member of that oneof.\n\n\r\n\x05\x04\x04\x02\x07\x04\x12\x04\xce\x01\x02\n\n\r\n\x05\x04\x04\x02\x07\x05\x12\x04\xce\x01\x0b\x10\n\r\n\x05\x04\x04\x02\x07\x01\x12\x04\xce\x01\x11\x1c\n\r\n\x05\x04\x04\x02\x07\x03\x12\x04\xce\x01\x1f \n\xfa\x01\n\x04\x04\x04\x02\x08\x12\x04\xd4\x01\x02!\x1a\xeb\x01 JSON name of this field. The value is set by protocol compiler. If the\n user has set a \"json_name\" option on this field, that option\'s value\n will be used. Otherwise, it\'s deduced from the field\'s name by converting\n it to camelCase.\n\n\r\n\x05\x04\x04\x02\x08\x04\x12\x04\xd4\x01\x02\n\n\r\n\x05\x04\x04\x02\x08\x05\x12\x04\xd4\x01\x0b\x11\n\r\n\x05\x04\x04\x02\x08\x01\x12\x04\xd4\x01\x12\x1b\n\r\n\x05\x04\x04\x02\x08\x03\x12\x04\xd4\x01\x1e \n\x0c\n\x04\x04\x04\x02\t\x12\x04\xd6\x01\x02$\n\r\n\x05\x04\x04\x02\t\x04\x12\x04\xd6\x01\x02\n\n\r\n\x05\x04\x04\x02\t\x06\x12\x04\xd6\x01\x0b\x17\n\r\n\x05\x04\x04\x02\t\x01\x12\x04\xd6\x01\x18\x1f\n\r\n\x05\x04\x04\x02\t\x03\x12\x04\xd6\x01\"#\n\xb3\t\n\x04\x04\x04\x02\n\x12\x04\xed\x01\x02%\x1a\xa4\t If true, this is a proto3 \"optional\". When a proto3 field is optional, it\n tracks presence regardless of field type.\n\n When proto3_optional is true, this field must be belong to a oneof to\n signal to old proto3 clients that presence is tracked for this field. This\n oneof is known as a \"synthetic\" oneof, and this field must be its sole\n member (each proto3 optional field gets its own synthetic oneof). Synthetic\n oneofs exist in the descriptor only, and do not generate any API. Synthetic\n oneofs must be ordered after all \"real\" oneofs.\n\n For message fields, proto3_optional doesn\'t create any semantic change,\n since non-repeated message fields always track presence. However it still\n indicates the semantic detail of whether the user wrote \"optional\" or not.\n This can be useful for round-tripping the .proto file. For consistency we\n give message fields a synthetic oneof also, even though it is not required\n to track presence. This is especially important because the parser can\'t\n tell if a field is a message or an enum, so it must always create a\n synthetic oneof.\n\n Proto2 optional fields do not set this flag, because they already indicate\n optional with `LABEL_OPTIONAL`.\n\n\r\n\x05\x04\x04\x02\n\x04\x12\x04\xed\x01\x02\n\n\r\n\x05\x04\x04\x02\n\x05\x12\x04\xed\x01\x0b\x0f\n\r\n\x05\x04\x04\x02\n\x01\x12\x04\xed\x01\x10\x1f\n\r\n\x05\x04\x04\x02\n\x03\x12\x04\xed\x01\"$\n\"\n\x02\x04\x05\x12\x06\xf1\x01\x00\xf4\x01\x01\x1a\x14 Describes a oneof.\n\n\x0b\n\x03\x04\x05\x01\x12\x04\xf1\x01\x08\x1c\n\x0c\n\x04\x04\x05\x02\x00\x12\x04\xf2\x01\x02\x1b\n\r\n\x05\x04\x05\x02\x00\x04\x12\x04\xf2\x01\x02\n\n\r\n\x05\x04\x05\x02\x00\x05\x12\x04\xf2\x01\x0b\x11\n\r\n\x05\x04\x05\x02\x00\x01\x12\x04\xf2\x01\x12\x16\n\r\n\x05\x04\x05\x02\x00\x03\x12\x04\xf2\x01\x19\x1a\n\x0c\n\x04\x04\x05\x02\x01\x12\x04\xf3\x01\x02$\n\r\n\x05\x04\x05\x02\x01\x04\x12\x04\xf3\x01\x02\n\n\r\n\x05\x04\x05\x02\x01\x06\x12\x04\xf3\x01\x0b\x17\n\r\n\x05\x04\x05\x02\x01\x01\x12\x04\xf3\x01\x18\x1f\n\r\n\x05\x04\x05\x02\x01\x03\x12\x04\xf3\x01\"#\n\'\n\x02\x04\x06\x12\x06\xf7\x01\x00\x91\x02\x01\x1a\x19 Describes an enum type.\n\n\x0b\n\x03\x04\x06\x01\x12\x04\xf7\x01\x08\x1b\n\x0c\n\x04\x04\x06\x02\x00\x12\x04\xf8\x01\x02\x1b\n\r\n\x05\x04\x06\x02\x00\x04\x12\x04\xf8\x01\x02\n\n\r\n\x05\x04\x06\x02\x00\x05\x12\x04\xf8\x01\x0b\x11\n\r\n\x05\x04\x06\x02\x00\x01\x12\x04\xf8\x01\x12\x16\n\r\n\x05\x04\x06\x02\x00\x03\x12\x04\xf8\x01\x19\x1a\n\x0c\n\x04\x04\x06\x02\x01\x12\x04\xfa\x01\x02.\n\r\n\x05\x04\x06\x02\x01\x04\x12\x04\xfa\x01\x02\n\n\r\n\x05\x04\x06\x02\x01\x06\x12\x04\xfa\x01\x0b#\n\r\n\x05\x04\x06\x02\x01\x01\x12\x04\xfa\x01$)\n\r\n\x05\x04\x06\x02\x01\x03\x12\x04\xfa\x01,-\n\x0c\n\x04\x04\x06\x02\x02\x12\x04\xfc\x01\x02#\n\r\n\x05\x04\x06\x02\x02\x04\x12\x04\xfc\x01\x02\n\n\r\n\x05\x04\x06\x02\x02\x06\x12\x04\xfc\x01\x0b\x16\n\r\n\x05\x04\x06\x02\x02\x01\x12\x04\xfc\x01\x17\x1e\n\r\n\x05\x04\x06\x02\x02\x03\x12\x04\xfc\x01!\"\n\xaf\x02\n\x04\x04\x06\x03\x00\x12\x06\x84\x02\x02\x87\x02\x03\x1a\x9e\x02 Range of reserved numeric values. Reserved values may not be used by\n entries in the same enum. Reserved ranges may not overlap.\n\n Note that this is distinct from DescriptorProto.ReservedRange in that it\n is inclusive such that it can appropriately represent the entire int32\n domain.\n\n\r\n\x05\x04\x06\x03\x00\x01\x12\x04\x84\x02\n\x1b\n\x1c\n\x06\x04\x06\x03\x00\x02\x00\x12\x04\x85\x02\x04\x1d\"\x0c Inclusive.\n\n\x0f\n\x07\x04\x06\x03\x00\x02\x00\x04\x12\x04\x85\x02\x04\x0c\n\x0f\n\x07\x04\x06\x03\x00\x02\x00\x05\x12\x04\x85\x02\r\x12\n\x0f\n\x07\x04\x06\x03\x00\x02\x00\x01\x12\x04\x85\x02\x13\x18\n\x0f\n\x07\x04\x06\x03\x00\x02\x00\x03\x12\x04\x85\x02\x1b\x1c\n\x1c\n\x06\x04\x06\x03\x00\x02\x01\x12\x04\x86\x02\x04\x1b\"\x0c Inclusive.\n\n\x0f\n\x07\x04\x06\x03\x00\x02\x01\x04\x12\x04\x86\x02\x04\x0c\n\x0f\n\x07\x04\x06\x03\x00\x02\x01\x05\x12\x04\x86\x02\r\x12\n\x0f\n\x07\x04\x06\x03\x00\x02\x01\x01\x12\x04\x86\x02\x13\x16\n\x0f\n\x07\x04\x06\x03\x00\x02\x01\x03\x12\x04\x86\x02\x19\x1a\n\xaa\x01\n\x04\x04\x06\x02\x03\x12\x04\x8c\x02\x020\x1a\x9b\x01 Range of reserved numeric values. Reserved numeric values may not be used\n by enum values in the same enum declaration. Reserved ranges may not\n overlap.\n\n\r\n\x05\x04\x06\x02\x03\x04\x12\x04\x8c\x02\x02\n\n\r\n\x05\x04\x06\x02\x03\x06\x12\x04\x8c\x02\x0b\x1c\n\r\n\x05\x04\x06\x02\x03\x01\x12\x04\x8c\x02\x1d+\n\r\n\x05\x04\x06\x02\x03\x03\x12\x04\x8c\x02./\nl\n\x04\x04\x06\x02\x04\x12\x04\x90\x02\x02$\x1a^ Reserved enum value names, which may not be reused. A given name may only\n be reserved once.\n\n\r\n\x05\x04\x06\x02\x04\x04\x12\x04\x90\x02\x02\n\n\r\n\x05\x04\x06\x02\x04\x05\x12\x04\x90\x02\x0b\x11\n\r\n\x05\x04\x06\x02\x04\x01\x12\x04\x90\x02\x12\x1f\n\r\n\x05\x04\x06\x02\x04\x03\x12\x04\x90\x02\"#\n1\n\x02\x04\x07\x12\x06\x94\x02\x00\x99\x02\x01\x1a# Describes a value within an enum.\n\n\x0b\n\x03\x04\x07\x01\x12\x04\x94\x02\x08 \n\x0c\n\x04\x04\x07\x02\x00\x12\x04\x95\x02\x02\x1b\n\r\n\x05\x04\x07\x02\x00\x04\x12\x04\x95\x02\x02\n\n\r\n\x05\x04\x07\x02\x00\x05\x12\x04\x95\x02\x0b\x11\n\r\n\x05\x04\x07\x02\x00\x01\x12\x04\x95\x02\x12\x16\n\r\n\x05\x04\x07\x02\x00\x03\x12\x04\x95\x02\x19\x1a\n\x0c\n\x04\x04\x07\x02\x01\x12\x04\x96\x02\x02\x1c\n\r\n\x05\x04\x07\x02\x01\x04\x12\x04\x96\x02\x02\n\n\r\n\x05\x04\x07\x02\x01\x05\x12\x04\x96\x02\x0b\x10\n\r\n\x05\x04\x07\x02\x01\x01\x12\x04\x96\x02\x11\x17\n\r\n\x05\x04\x07\x02\x01\x03\x12\x04\x96\x02\x1a\x1b\n\x0c\n\x04\x04\x07\x02\x02\x12\x04\x98\x02\x02(\n\r\n\x05\x04\x07\x02\x02\x04\x12\x04\x98\x02\x02\n\n\r\n\x05\x04\x07\x02\x02\x06\x12\x04\x98\x02\x0b\x1b\n\r\n\x05\x04\x07\x02\x02\x01\x12\x04\x98\x02\x1c#\n\r\n\x05\x04\x07\x02\x02\x03\x12\x04\x98\x02&\'\n$\n\x02\x04\x08\x12\x06\x9c\x02\x00\xa1\x02\x01\x1a\x16 Describes a service.\n\n\x0b\n\x03\x04\x08\x01\x12\x04\x9c\x02\x08\x1e\n\x0c\n\x04\x04\x08\x02\x00\x12\x04\x9d\x02\x02\x1b\n\r\n\x05\x04\x08\x02\x00\x04\x12\x04\x9d\x02\x02\n\n\r\n\x05\x04\x08\x02\x00\x05\x12\x04\x9d\x02\x0b\x11\n\r\n\x05\x04\x08\x02\x00\x01\x12\x04\x9d\x02\x12\x16\n\r\n\x05\x04\x08\x02\x00\x03\x12\x04\x9d\x02\x19\x1a\n\x0c\n\x04\x04\x08\x02\x01\x12\x04\x9e\x02\x02,\n\r\n\x05\x04\x08\x02\x01\x04\x12\x04\x9e\x02\x02\n\n\r\n\x05\x04\x08\x02\x01\x06\x12\x04\x9e\x02\x0b \n\r\n\x05\x04\x08\x02\x01\x01\x12\x04\x9e\x02!\'\n\r\n\x05\x04\x08\x02\x01\x03\x12\x04\x9e\x02*+\n\x0c\n\x04\x04\x08\x02\x02\x12\x04\xa0\x02\x02&\n\r\n\x05\x04\x08\x02\x02\x04\x12\x04\xa0\x02\x02\n\n\r\n\x05\x04\x08\x02\x02\x06\x12\x04\xa0\x02\x0b\x19\n\r\n\x05\x04\x08\x02\x02\x01\x12\x04\xa0\x02\x1a!\n\r\n\x05\x04\x08\x02\x02\x03\x12\x04\xa0\x02$%\n0\n\x02\x04\t\x12\x06\xa4\x02\x00\xb2\x02\x01\x1a\" Describes a method of a service.\n\n\x0b\n\x03\x04\t\x01\x12\x04\xa4\x02\x08\x1d\n\x0c\n\x04\x04\t\x02\x00\x12\x04\xa5\x02\x02\x1b\n\r\n\x05\x04\t\x02\x00\x04\x12\x04\xa5\x02\x02\n\n\r\n\x05\x04\t\x02\x00\x05\x12\x04\xa5\x02\x0b\x11\n\r\n\x05\x04\t\x02\x00\x01\x12\x04\xa5\x02\x12\x16\n\r\n\x05\x04\t\x02\x00\x03\x12\x04\xa5\x02\x19\x1a\n\x97\x01\n\x04\x04\t\x02\x01\x12\x04\xa9\x02\x02!\x1a\x88\x01 Input and output type names.  These are resolved in the same way as\n FieldDescriptorProto.type_name, but must refer to a message type.\n\n\r\n\x05\x04\t\x02\x01\x04\x12\x04\xa9\x02\x02\n\n\r\n\x05\x04\t\x02\x01\x05\x12\x04\xa9\x02\x0b\x11\n\r\n\x05\x04\t\x02\x01\x01\x12\x04\xa9\x02\x12\x1c\n\r\n\x05\x04\t\x02\x01\x03\x12\x04\xa9\x02\x1f \n\x0c\n\x04\x04\t\x02\x02\x12\x04\xaa\x02\x02\"\n\r\n\x05\x04\t\x02\x02\x04\x12\x04\xaa\x02\x02\n\n\r\n\x05\x04\t\x02\x02\x05\x12\x04\xaa\x02\x0b\x11\n\r\n\x05\x04\t\x02\x02\x01\x12\x04\xaa\x02\x12\x1d\n\r\n\x05\x04\t\x02\x02\x03\x12\x04\xaa\x02 !\n\x0c\n\x04\x04\t\x02\x03\x12\x04\xac\x02\x02%\n\r\n\x05\x04\t\x02\x03\x04\x12\x04\xac\x02\x02\n\n\r\n\x05\x04\t\x02\x03\x06\x12\x04\xac\x02\x0b\x18\n\r\n\x05\x04\t\x02\x03\x01\x12\x04\xac\x02\x19 \n\r\n\x05\x04\t\x02\x03\x03\x12\x04\xac\x02#$\nE\n\x04\x04\t\x02\x04\x12\x04\xaf\x02\x027\x1a7 Identifies if client streams multiple client messages\n\n\r\n\x05\x04\t\x02\x04\x04\x12\x04\xaf\x02\x02\n\n\r\n\x05\x04\t\x02\x04\x05\x12\x04\xaf\x02\x0b\x0f\n\r\n\x05\x04\t\x02\x04\x01\x12\x04\xaf\x02\x10 \n\r\n\x05\x04\t\x02\x04\x03\x12\x04\xaf\x02#$\n\r\n\x05\x04\t\x02\x04\x08\x12\x04\xaf\x02%6\n\r\n\x05\x04\t\x02\x04\x07\x12\x04\xaf\x0205\nE\n\x04\x04\t\x02\x05\x12\x04\xb1\x02\x027\x1a7 Identifies if server streams multiple server messages\n\n\r\n\x05\x04\t\x02\x05\x04\x12\x04\xb1\x02\x02\n\n\r\n\x05\x04\t\x02\x05\x05\x12\x04\xb1\x02\x0b\x0f\n\r\n\x05\x04\t\x02\x05\x01\x12\x04\xb1\x02\x10 \n\r\n\x05\x04\t\x02\x05\x03\x12\x04\xb1\x02#$\n\r\n\x05\x04\t\x02\x05\x08\x12\x04\xb1\x02%6\n\r\n\x05\x04\t\x02\x05\x07\x12\x04\xb1\x0205\n\xaf\x0e\n\x02\x04\n\x12\x06\xd5\x02\x00\xd0\x03\x012N ===================================================================\n Options\n2\xd0\r Each of the definitions above may have \"options\" attached.  These are\n just annotations which may cause code to be generated slightly differently\n or may contain hints for code that manipulates protocol messages.\n\n Clients may define custom options as extensions of the *Options messages.\n These extensions may not yet be known at parsing time, so the parser cannot\n store the values in them.  Instead it stores them in a field in the *Options\n message called uninterpreted_option. This field must have the same name\n across all *Options messages. We then use this field to populate the\n extensions when we build a descriptor, at which point all protos have been\n parsed and so all extensions are known.\n\n Extension numbers for custom options may be chosen as follows:\n * For options which will only be used within a single application or\n   organization, or for experimental options, use field numbers 50000\n   through 99999.  It is up to you to ensure that you do not use the\n   same number for multiple options.\n * For options which will be published and used publicly by multiple\n   independent entities, e-mail protobuf-global-extension-registry@google.com\n   to reserve extension numbers. Simply provide your project name (e.g.\n   Objective-C plugin) and your project website (if available) -- there\'s no\n   need to explain how you intend to use them. Usually you only need one\n   extension number. You can declare multiple options with only one extension\n   number by putting them in a sub-message. See the Custom Options section of\n   the docs for examples:\n   https://developers.google.com/protocol-buffers/docs/proto#options\n   If this turns out to be popular, a web service will be set up\n   to automatically assign option numbers.\n\n\x0b\n\x03\x04\n\x01\x12\x04\xd5\x02\x08\x13\n\xf4\x01\n\x04\x04\n\x02\x00\x12\x04\xdb\x02\x02#\x1a\xe5\x01 Sets the Java package where classes generated from this .proto will be\n placed.  By default, the proto package is used, but this is often\n inappropriate because proto packages do not normally start with backwards\n domain names.\n\n\r\n\x05\x04\n\x02\x00\x04\x12\x04\xdb\x02\x02\n\n\r\n\x05\x04\n\x02\x00\x05\x12\x04\xdb\x02\x0b\x11\n\r\n\x05\x04\n\x02\x00\x01\x12\x04\xdb\x02\x12\x1e\n\r\n\x05\x04\n\x02\x00\x03\x12\x04\xdb\x02!\"\n\xbf\x02\n\x04\x04\n\x02\x01\x12\x04\xe3\x02\x02+\x1a\xb0\x02 If set, all the classes from the .proto file are wrapped in a single\n outer class with the given name.  This applies to both Proto1\n (equivalent to the old \"--one_java_file\" option) and Proto2 (where\n a .proto always translates to a single class, but you may want to\n explicitly choose the class name).\n\n\r\n\x05\x04\n\x02\x01\x04\x12\x04\xe3\x02\x02\n\n\r\n\x05\x04\n\x02\x01\x05\x12\x04\xe3\x02\x0b\x11\n\r\n\x05\x04\n\x02\x01\x01\x12\x04\xe3\x02\x12&\n\r\n\x05\x04\n\x02\x01\x03\x12\x04\xe3\x02)*\n\xa3\x03\n\x04\x04\n\x02\x02\x12\x04\xeb\x02\x02;\x1a\x94\x03 If set true, then the Java code generator will generate a separate .java\n file for each top-level message, enum, and service defined in the .proto\n file.  Thus, these types will *not* be nested inside the outer class\n named by java_outer_classname.  However, the outer class will still be\n generated to contain the file\'s getDescriptor() method as well as any\n top-level extensions defined in the file.\n\n\r\n\x05\x04\n\x02\x02\x04\x12\x04\xeb\x02\x02\n\n\r\n\x05\x04\n\x02\x02\x05\x12\x04\xeb\x02\x0b\x0f\n\r\n\x05\x04\n\x02\x02\x01\x12\x04\xeb\x02\x10#\n\r\n\x05\x04\n\x02\x02\x03\x12\x04\xeb\x02&(\n\r\n\x05\x04\n\x02\x02\x08\x12\x04\xeb\x02):\n\r\n\x05\x04\n\x02\x02\x07\x12\x04\xeb\x0249\n)\n\x04\x04\n\x02\x03\x12\x04\xee\x02\x02E\x1a\x1b This option does nothing.\n\n\r\n\x05\x04\n\x02\x03\x04\x12\x04\xee\x02\x02\n\n\r\n\x05\x04\n\x02\x03\x05\x12\x04\xee\x02\x0b\x0f\n\r\n\x05\x04\n\x02\x03\x01\x12\x04\xee\x02\x10-\n\r\n\x05\x04\n\x02\x03\x03\x12\x04\xee\x0202\n\r\n\x05\x04\n\x02\x03\x08\x12\x04\xee\x023D\n\x0e\n\x06\x04\n\x02\x03\x08\x03\x12\x04\xee\x024C\n\xe6\x02\n\x04\x04\n\x02\x04\x12\x04\xf6\x02\x02>\x1a\xd7\x02 If set true, then the Java2 code generator will generate code that\n throws an exception whenever an attempt is made to assign a non-UTF-8\n byte sequence to a string field.\n Message reflection will do the same.\n However, an extension field still accepts non-UTF-8 byte sequences.\n This option has no effect on when used with the lite runtime.\n\n\r\n\x05\x04\n\x02\x04\x04\x12\x04\xf6\x02\x02\n\n\r\n\x05\x04\n\x02\x04\x05\x12\x04\xf6\x02\x0b\x0f\n\r\n\x05\x04\n\x02\x04\x01\x12\x04\xf6\x02\x10&\n\r\n\x05\x04\n\x02\x04\x03\x12\x04\xf6\x02)+\n\r\n\x05\x04\n\x02\x04\x08\x12\x04\xf6\x02,=\n\r\n\x05\x04\n\x02\x04\x07\x12\x04\xf6\x027<\nL\n\x04\x04\n\x04\x00\x12\x06\xfa\x02\x02\xff\x02\x03\x1a< Generated classes can be optimized for speed or code size.\n\n\r\n\x05\x04\n\x04\x00\x01\x12\x04\xfa\x02\x07\x13\nD\n\x06\x04\n\x04\x00\x02\x00\x12\x04\xfb\x02\x04\x0e\"4 Generate complete code for parsing, serialization,\n\n\x0f\n\x07\x04\n\x04\x00\x02\x00\x01\x12\x04\xfb\x02\x04\t\n\x0f\n\x07\x04\n\x04\x00\x02\x00\x02\x12\x04\xfb\x02\x0c\r\nG\n\x06\x04\n\x04\x00\x02\x01\x12\x04\xfd\x02\x04\x12\x1a\x06 etc.\n\"/ Use ReflectionOps to implement these methods.\n\n\x0f\n\x07\x04\n\x04\x00\x02\x01\x01\x12\x04\xfd\x02\x04\r\n\x0f\n\x07\x04\n\x04\x00\x02\x01\x02\x12\x04\xfd\x02\x10\x11\nG\n\x06\x04\n\x04\x00\x02\x02\x12\x04\xfe\x02\x04\x15\"7 Generate code using MessageLite and the lite runtime.\n\n\x0f\n\x07\x04\n\x04\x00\x02\x02\x01\x12\x04\xfe\x02\x04\x10\n\x0f\n\x07\x04\n\x04\x00\x02\x02\x02\x12\x04\xfe\x02\x13\x14\n\x0c\n\x04\x04\n\x02\x05\x12\x04\x80\x03\x02;\n\r\n\x05\x04\n\x02\x05\x04\x12\x04\x80\x03\x02\n\n\r\n\x05\x04\n\x02\x05\x06\x12\x04\x80\x03\x0b\x17\n\r\n\x05\x04\n\x02\x05\x01\x12\x04\x80\x03\x18$\n\r\n\x05\x04\n\x02\x05\x03\x12\x04\x80\x03\'(\n\r\n\x05\x04\n\x02\x05\x08\x12\x04\x80\x03):\n\r\n\x05\x04\n\x02\x05\x07\x12\x04\x80\x0349\n\xe2\x02\n\x04\x04\n\x02\x06\x12\x04\x87\x03\x02\"\x1a\xd3\x02 Sets the Go package where structs generated from this .proto will be\n placed. If omitted, the Go package will be derived from the following:\n   - The basename of the package import path, if provided.\n   - Otherwise, the package statement in the .proto file, if present.\n   - Otherwise, the basename of the .proto file, without extension.\n\n\r\n\x05\x04\n\x02\x06\x04\x12\x04\x87\x03\x02\n\n\r\n\x05\x04\n\x02\x06\x05\x12\x04\x87\x03\x0b\x11\n\r\n\x05\x04\n\x02\x06\x01\x12\x04\x87\x03\x12\x1c\n\r\n\x05\x04\n\x02\x06\x03\x12\x04\x87\x03\x1f!\n\xd4\x04\n\x04\x04\n\x02\x07\x12\x04\x96\x03\x02;\x1a\xc5\x04 Should generic services be generated in each language?  \"Generic\" services\n are not specific to any particular RPC system.  They are generated by the\n main code generators in each language (without additional plugins).\n Generic services were the only kind of service generation supported by\n early versions of google.protobuf.\n\n Generic services are now considered deprecated in favor of using plugins\n that generate code specific to your particular RPC system.  Therefore,\n these default to false.  Old code which depends on generic services should\n explicitly set them to true.\n\n\r\n\x05\x04\n\x02\x07\x04\x12\x04\x96\x03\x02\n\n\r\n\x05\x04\n\x02\x07\x05\x12\x04\x96\x03\x0b\x0f\n\r\n\x05\x04\n\x02\x07\x01\x12\x04\x96\x03\x10#\n\r\n\x05\x04\n\x02\x07\x03\x12\x04\x96\x03&(\n\r\n\x05\x04\n\x02\x07\x08\x12\x04\x96\x03):\n\r\n\x05\x04\n\x02\x07\x07\x12\x04\x96\x0349\n\x0c\n\x04\x04\n\x02\x08\x12\x04\x97\x03\x02=\n\r\n\x05\x04\n\x02\x08\x04\x12\x04\x97\x03\x02\n\n\r\n\x05\x04\n\x02\x08\x05\x12\x04\x97\x03\x0b\x0f\n\r\n\x05\x04\n\x02\x08\x01\x12\x04\x97\x03\x10%\n\r\n\x05\x04\n\x02\x08\x03\x12\x04\x97\x03(*\n\r\n\x05\x04\n\x02\x08\x08\x12\x04\x97\x03+<\n\r\n\x05\x04\n\x02\x08\x07\x12\x04\x97\x036;\n\x0c\n\x04\x04\n\x02\t\x12\x04\x98\x03\x02;\n\r\n\x05\x04\n\x02\t\x04\x12\x04\x98\x03\x02\n\n\r\n\x05\x04\n\x02\t\x05\x12\x04\x98\x03\x0b\x0f\n\r\n\x05\x04\n\x02\t\x01\x12\x04\x98\x03\x10#\n\r\n\x05\x04\n\x02\t\x03\x12\x04\x98\x03&(\n\r\n\x05\x04\n\x02\t\x08\x12\x04\x98\x03):\n\r\n\x05\x04\n\x02\t\x07\x12\x04\x98\x0349\n\x0c\n\x04\x04\n\x02\n\x12\x04\x99\x03\x02<\n\r\n\x05\x04\n\x02\n\x04\x12\x04\x99\x03\x02\n\n\r\n\x05\x04\n\x02\n\x05\x12\x04\x99\x03\x0b\x0f\n\r\n\x05\x04\n\x02\n\x01\x12\x04\x99\x03\x10$\n\r\n\x05\x04\n\x02\n\x03\x12\x04\x99\x03\')\n\r\n\x05\x04\n\x02\n\x08\x12\x04\x99\x03*;\n\r\n\x05\x04\n\x02\n\x07\x12\x04\x99\x035:\n\xf3\x01\n\x04\x04\n\x02\x0b\x12\x04\x9f\x03\x022\x1a\xe4\x01 Is this file deprecated?\n Depending on the target platform, this can emit Deprecated annotations\n for everything in the file, or it will be completely ignored; in the very\n least, this is a formalization for deprecating files.\n\n\r\n\x05\x04\n\x02\x0b\x04\x12\x04\x9f\x03\x02\n\n\r\n\x05\x04\n\x02\x0b\x05\x12\x04\x9f\x03\x0b\x0f\n\r\n\x05\x04\n\x02\x0b\x01\x12\x04\x9f\x03\x10\x1a\n\r\n\x05\x04\n\x02\x0b\x03\x12\x04\x9f\x03\x1d\x1f\n\r\n\x05\x04\n\x02\x0b\x08\x12\x04\x9f\x03 1\n\r\n\x05\x04\n\x02\x0b\x07\x12\x04\x9f\x03+0\n\x7f\n\x04\x04\n\x02\x0c\x12\x04\xa3\x03\x027\x1aq Enables the use of arenas for the proto messages in this file. This applies\n only to generated classes for C++.\n\n\r\n\x05\x04\n\x02\x0c\x04\x12\x04\xa3\x03\x02\n\n\r\n\x05\x04\n\x02\x0c\x05\x12\x04\xa3\x03\x0b\x0f\n\r\n\x05\x04\n\x02\x0c\x01\x12\x04\xa3\x03\x10 \n\r\n\x05\x04\n\x02\x0c\x03\x12\x04\xa3\x03#%\n\r\n\x05\x04\n\x02\x0c\x08\x12\x04\xa3\x03&6\n\r\n\x05\x04\n\x02\x0c\x07\x12\x04\xa3\x0315\n\x92\x01\n\x04\x04\n\x02\r\x12\x04\xa8\x03\x02)\x1a\x83\x01 Sets the objective c class prefix which is prepended to all objective c\n generated classes from this .proto. There is no default.\n\n\r\n\x05\x04\n\x02\r\x04\x12\x04\xa8\x03\x02\n\n\r\n\x05\x04\n\x02\r\x05\x12\x04\xa8\x03\x0b\x11\n\r\n\x05\x04\n\x02\r\x01\x12\x04\xa8\x03\x12#\n\r\n\x05\x04\n\x02\r\x03\x12\x04\xa8\x03&(\nI\n\x04\x04\n\x02\x0e\x12\x04\xab\x03\x02(\x1a; Namespace for generated classes; defaults to the package.\n\n\r\n\x05\x04\n\x02\x0e\x04\x12\x04\xab\x03\x02\n\n\r\n\x05\x04\n\x02\x0e\x05\x12\x04\xab\x03\x0b\x11\n\r\n\x05\x04\n\x02\x0e\x01\x12\x04\xab\x03\x12\"\n\r\n\x05\x04\n\x02\x0e\x03\x12\x04\xab\x03%\'\n\x91\x02\n\x04\x04\n\x02\x0f\x12\x04\xb1\x03\x02$\x1a\x82\x02 By default Swift generators will take the proto package and CamelCase it\n replacing \'.\' with underscore and use that to prefix the types/symbols\n defined. When this options is provided, they will use this value instead\n to prefix the types/symbols defined.\n\n\r\n\x05\x04\n\x02\x0f\x04\x12\x04\xb1\x03\x02\n\n\r\n\x05\x04\n\x02\x0f\x05\x12\x04\xb1\x03\x0b\x11\n\r\n\x05\x04\n\x02\x0f\x01\x12\x04\xb1\x03\x12\x1e\n\r\n\x05\x04\n\x02\x0f\x03\x12\x04\xb1\x03!#\n~\n\x04\x04\n\x02\x10\x12\x04\xb5\x03\x02(\x1ap Sets the php class prefix which is prepended to all php generated classes\n from this .proto. Default is empty.\n\n\r\n\x05\x04\n\x02\x10\x04\x12\x04\xb5\x03\x02\n\n\r\n\x05\x04\n\x02\x10\x05\x12\x04\xb5\x03\x0b\x11\n\r\n\x05\x04\n\x02\x10\x01\x12\x04\xb5\x03\x12\"\n\r\n\x05\x04\n\x02\x10\x03\x12\x04\xb5\x03%\'\n\xbe\x01\n\x04\x04\n\x02\x11\x12\x04\xba\x03\x02%\x1a\xaf\x01 Use this option to change the namespace of php generated classes. Default\n is empty. When this option is empty, the package name will be used for\n determining the namespace.\n\n\r\n\x05\x04\n\x02\x11\x04\x12\x04\xba\x03\x02\n\n\r\n\x05\x04\n\x02\x11\x05\x12\x04\xba\x03\x0b\x11\n\r\n\x05\x04\n\x02\x11\x01\x12\x04\xba\x03\x12\x1f\n\r\n\x05\x04\n\x02\x11\x03\x12\x04\xba\x03\"$\n\xca\x01\n\x04\x04\n\x02\x12\x12\x04\xbf\x03\x02.\x1a\xbb\x01 Use this option to change the namespace of php generated metadata classes.\n Default is empty. When this option is empty, the proto file name will be\n used for determining the namespace.\n\n\r\n\x05\x04\n\x02\x12\x04\x12\x04\xbf\x03\x02\n\n\r\n\x05\x04\n\x02\x12\x05\x12\x04\xbf\x03\x0b\x11\n\r\n\x05\x04\n\x02\x12\x01\x12\x04\xbf\x03\x12(\n\r\n\x05\x04\n\x02\x12\x03\x12\x04\xbf\x03+-\n\xc2\x01\n\x04\x04\n\x02\x13\x12\x04\xc4\x03\x02$\x1a\xb3\x01 Use this option to change the package of ruby generated classes. Default\n is empty. When this option is not set, the package name will be used for\n determining the ruby package.\n\n\r\n\x05\x04\n\x02\x13\x04\x12\x04\xc4\x03\x02\n\n\r\n\x05\x04\n\x02\x13\x05\x12\x04\xc4\x03\x0b\x11\n\r\n\x05\x04\n\x02\x13\x01\x12\x04\xc4\x03\x12\x1e\n\r\n\x05\x04\n\x02\x13\x03\x12\x04\xc4\x03!#\n|\n\x04\x04\n\x02\x14\x12\x04\xc9\x03\x02:\x1an The parser stores options it doesn\'t recognize here.\n See the documentation for the \"Options\" section above.\n\n\r\n\x05\x04\n\x02\x14\x04\x12\x04\xc9\x03\x02\n\n\r\n\x05\x04\n\x02\x14\x06\x12\x04\xc9\x03\x0b\x1e\n\r\n\x05\x04\n\x02\x14\x01\x12\x04\xc9\x03\x1f3\n\r\n\x05\x04\n\x02\x14\x03\x12\x04\xc9\x0369\n\x87\x01\n\x03\x04\n\x05\x12\x04\xcd\x03\x02\x19\x1az Clients can define custom options in extensions of this message.\n See the documentation for the \"Options\" section above.\n\n\x0c\n\x04\x04\n\x05\x00\x12\x04\xcd\x03\r\x18\n\r\n\x05\x04\n\x05\x00\x01\x12\x04\xcd\x03\r\x11\n\r\n\x05\x04\n\x05\x00\x02\x12\x04\xcd\x03\x15\x18\n\x0b\n\x03\x04\n\t\x12\x04\xcf\x03\x02\x0e\n\x0c\n\x04\x04\n\t\x00\x12\x04\xcf\x03\x0b\r\n\r\n\x05\x04\n\t\x00\x01\x12\x04\xcf\x03\x0b\r\n\r\n\x05\x04\n\t\x00\x02\x12\x04\xcf\x03\x0b\r\n\x0c\n\x02\x04\x0b\x12\x06\xd2\x03\x00\x92\x04\x01\n\x0b\n\x03\x04\x0b\x01\x12\x04\xd2\x03\x08\x16\n\xd8\x05\n\x04\x04\x0b\x02\x00\x12\x04\xe5\x03\x02>\x1a\xc9\x05 Set true to use the old proto1 MessageSet wire format for extensions.\n This is provided for backwards-compatibility with the MessageSet wire\n format.  You should not use this for any other reason:  It\'s less\n efficient, has fewer features, and is more complicated.\n\n The message must be defined exactly as follows:\n   message Foo {\n     option message_set_wire_format = true;\n     extensions 4 to max;\n   }\n Note that the message cannot have any defined fields; MessageSets only\n have extensions.\n\n All extensions of your type must be singular messages; e.g. they cannot\n be int32s, enums, or repeated messages.\n\n Because this is an option, the above two restrictions are not enforced by\n the protocol compiler.\n\n\r\n\x05\x04\x0b\x02\x00\x04\x12\x04\xe5\x03\x02\n\n\r\n\x05\x04\x0b\x02\x00\x05\x12\x04\xe5\x03\x0b\x0f\n\r\n\x05\x04\x0b\x02\x00\x01\x12\x04\xe5\x03\x10\'\n\r\n\x05\x04\x0b\x02\x00\x03\x12\x04\xe5\x03*+\n\r\n\x05\x04\x0b\x02\x00\x08\x12\x04\xe5\x03,=\n\r\n\x05\x04\x0b\x02\x00\x07\x12\x04\xe5\x037<\n\xeb\x01\n\x04\x04\x0b\x02\x01\x12\x04\xea\x03\x02F\x1a\xdc\x01 Disables the generation of the standard \"descriptor()\" accessor, which can\n conflict with a field of the same name.  This is meant to make migration\n from proto1 easier; new code should avoid fields named \"descriptor\".\n\n\r\n\x05\x04\x0b\x02\x01\x04\x12\x04\xea\x03\x02\n\n\r\n\x05\x04\x0b\x02\x01\x05\x12\x04\xea\x03\x0b\x0f\n\r\n\x05\x04\x0b\x02\x01\x01\x12\x04\xea\x03\x10/\n\r\n\x05\x04\x0b\x02\x01\x03\x12\x04\xea\x0323\n\r\n\x05\x04\x0b\x02\x01\x08\x12\x04\xea\x034E\n\r\n\x05\x04\x0b\x02\x01\x07\x12\x04\xea\x03?D\n\xee\x01\n\x04\x04\x0b\x02\x02\x12\x04\xf0\x03\x021\x1a\xdf\x01 Is this message deprecated?\n Depending on the target platform, this can emit Deprecated annotations\n for the message, or it will be completely ignored; in the very least,\n this is a formalization for deprecating messages.\n\n\r\n\x05\x04\x0b\x02\x02\x04\x12\x04\xf0\x03\x02\n\n\r\n\x05\x04\x0b\x02\x02\x05\x12\x04\xf0\x03\x0b\x0f\n\r\n\x05\x04\x0b\x02\x02\x01\x12\x04\xf0\x03\x10\x1a\n\r\n\x05\x04\x0b\x02\x02\x03\x12\x04\xf0\x03\x1d\x1e\n\r\n\x05\x04\x0b\x02\x02\x08\x12\x04\xf0\x03\x1f0\n\r\n\x05\x04\x0b\x02\x02\x07\x12\x04\xf0\x03*/\n\xa0\x06\n\x04\x04\x0b\x02\x03\x12\x04\x87\x04\x02\x1e\x1a\x91\x06 Whether the message is an automatically generated map entry type for the\n maps field.\n\n For maps fields:\n     map<KeyType, ValueType> map_field = 1;\n The parsed descriptor looks like:\n     message MapFieldEntry {\n         option map_entry = true;\n         optional KeyType key = 1;\n         optional ValueType value = 2;\n     }\n     repeated MapFieldEntry map_field = 1;\n\n Implementations may choose not to generate the map_entry=true message, but\n use a native map in the target language to hold the keys and values.\n The reflection APIs in such implementations still need to work as\n if the field is a repeated message field.\n\n NOTE: Do not set the option in .proto files. Always use the maps syntax\n instead. The option should only be implicitly set by the proto compiler\n parser.\n\n\r\n\x05\x04\x0b\x02\x03\x04\x12\x04\x87\x04\x02\n\n\r\n\x05\x04\x0b\x02\x03\x05\x12\x04\x87\x04\x0b\x0f\n\r\n\x05\x04\x0b\x02\x03\x01\x12\x04\x87\x04\x10\x19\n\r\n\x05\x04\x0b\x02\x03\x03\x12\x04\x87\x04\x1c\x1d\n$\n\x03\x04\x0b\t\x12\x04\x89\x04\x02\r\"\x17 javalite_serializable\n\n\x0c\n\x04\x04\x0b\t\x00\x12\x04\x89\x04\x0b\x0c\n\r\n\x05\x04\x0b\t\x00\x01\x12\x04\x89\x04\x0b\x0c\n\r\n\x05\x04\x0b\t\x00\x02\x12\x04\x89\x04\x0b\x0c\n\x1f\n\x03\x04\x0b\t\x12\x04\x8a\x04\x02\r\"\x12 javanano_as_lite\n\n\x0c\n\x04\x04\x0b\t\x01\x12\x04\x8a\x04\x0b\x0c\n\r\n\x05\x04\x0b\t\x01\x01\x12\x04\x8a\x04\x0b\x0c\n\r\n\x05\x04\x0b\t\x01\x02\x12\x04\x8a\x04\x0b\x0c\nO\n\x04\x04\x0b\x02\x04\x12\x04\x8e\x04\x02:\x1aA The parser stores options it doesn\'t recognize here. See above.\n\n\r\n\x05\x04\x0b\x02\x04\x04\x12\x04\x8e\x04\x02\n\n\r\n\x05\x04\x0b\x02\x04\x06\x12\x04\x8e\x04\x0b\x1e\n\r\n\x05\x04\x0b\x02\x04\x01\x12\x04\x8e\x04\x1f3\n\r\n\x05\x04\x0b\x02\x04\x03\x12\x04\x8e\x0469\nZ\n\x03\x04\x0b\x05\x12\x04\x91\x04\x02\x19\x1aM Clients can define custom options in extensions of this message. See above.\n\n\x0c\n\x04\x04\x0b\x05\x00\x12\x04\x91\x04\r\x18\n\r\n\x05\x04\x0b\x05\x00\x01\x12\x04\x91\x04\r\x11\n\r\n\x05\x04\x0b\x05\x00\x02\x12\x04\x91\x04\x15\x18\n\x0c\n\x02\x04\x0c\x12\x06\x94\x04\x00\xef\x04\x01\n\x0b\n\x03\x04\x0c\x01\x12\x04\x94\x04\x08\x14\n\xa3\x02\n\x04\x04\x0c\x02\x00\x12\x04\x99\x04\x02.\x1a\x94\x02 The ctype option instructs the C++ code generator to use a different\n representation of the field than it normally would.  See the specific\n options below.  This option is not yet implemented in the open source\n release -- sorry, we\'ll try to include it in a future version!\n\n\r\n\x05\x04\x0c\x02\x00\x04\x12\x04\x99\x04\x02\n\n\r\n\x05\x04\x0c\x02\x00\x06\x12\x04\x99\x04\x0b\x10\n\r\n\x05\x04\x0c\x02\x00\x01\x12\x04\x99\x04\x11\x16\n\r\n\x05\x04\x0c\x02\x00\x03\x12\x04\x99\x04\x19\x1a\n\r\n\x05\x04\x0c\x02\x00\x08\x12\x04\x99\x04\x1b-\n\r\n\x05\x04\x0c\x02\x00\x07\x12\x04\x99\x04&,\n\x0e\n\x04\x04\x0c\x04\x00\x12\x06\x9a\x04\x02\xa1\x04\x03\n\r\n\x05\x04\x0c\x04\x00\x01\x12\x04\x9a\x04\x07\x0c\n\x1f\n\x06\x04\x0c\x04\x00\x02\x00\x12\x04\x9c\x04\x04\x0f\x1a\x0f Default mode.\n\n\x0f\n\x07\x04\x0c\x04\x00\x02\x00\x01\x12\x04\x9c\x04\x04\n\n\x0f\n\x07\x04\x0c\x04\x00\x02\x00\x02\x12\x04\x9c\x04\r\x0e\n\x0e\n\x06\x04\x0c\x04\x00\x02\x01\x12\x04\x9e\x04\x04\r\n\x0f\n\x07\x04\x0c\x04\x00\x02\x01\x01\x12\x04\x9e\x04\x04\x08\n\x0f\n\x07\x04\x0c\x04\x00\x02\x01\x02\x12\x04\x9e\x04\x0b\x0c\n\x0e\n\x06\x04\x0c\x04\x00\x02\x02\x12\x04\xa0\x04\x04\x15\n\x0f\n\x07\x04\x0c\x04\x00\x02\x02\x01\x12\x04\xa0\x04\x04\x10\n\x0f\n\x07\x04\x0c\x04\x00\x02\x02\x02\x12\x04\xa0\x04\x13\x14\n\xda\x02\n\x04\x04\x0c\x02\x01\x12\x04\xa7\x04\x02\x1b\x1a\xcb\x02 The packed option can be enabled for repeated primitive fields to enable\n a more efficient representation on the wire. Rather than repeatedly\n writing the tag and type for each element, the entire array is encoded as\n a single length-delimited blob. In proto3, only explicit setting it to\n false will avoid using packed encoding.\n\n\r\n\x05\x04\x0c\x02\x01\x04\x12\x04\xa7\x04\x02\n\n\r\n\x05\x04\x0c\x02\x01\x05\x12\x04\xa7\x04\x0b\x0f\n\r\n\x05\x04\x0c\x02\x01\x01\x12\x04\xa7\x04\x10\x16\n\r\n\x05\x04\x0c\x02\x01\x03\x12\x04\xa7\x04\x19\x1a\n\x9a\x05\n\x04\x04\x0c\x02\x02\x12\x04\xb4\x04\x023\x1a\x8b\x05 The jstype option determines the JavaScript type used for values of the\n field.  The option is permitted only for 64 bit integral and fixed types\n (int64, uint64, sint64, fixed64, sfixed64).  A field with jstype JS_STRING\n is represented as JavaScript string, which avoids loss of precision that\n can happen when a large value is converted to a floating point JavaScript.\n Specifying JS_NUMBER for the jstype causes the generated JavaScript code to\n use the JavaScript \"number\" type.  The behavior of the default option\n JS_NORMAL is implementation dependent.\n\n This option is an enum to permit additional types to be added, e.g.\n goog.math.Integer.\n\n\r\n\x05\x04\x0c\x02\x02\x04\x12\x04\xb4\x04\x02\n\n\r\n\x05\x04\x0c\x02\x02\x06\x12\x04\xb4\x04\x0b\x11\n\r\n\x05\x04\x0c\x02\x02\x01\x12\x04\xb4\x04\x12\x18\n\r\n\x05\x04\x0c\x02\x02\x03\x12\x04\xb4\x04\x1b\x1c\n\r\n\x05\x04\x0c\x02\x02\x08\x12\x04\xb4\x04\x1d2\n\r\n\x05\x04\x0c\x02\x02\x07\x12\x04\xb4\x04(1\n\x0e\n\x04\x04\x0c\x04\x01\x12\x06\xb5\x04\x02\xbe\x04\x03\n\r\n\x05\x04\x0c\x04\x01\x01\x12\x04\xb5\x04\x07\r\n\'\n\x06\x04\x0c\x04\x01\x02\x00\x12\x04\xb7\x04\x04\x12\x1a\x17 Use the default type.\n\n\x0f\n\x07\x04\x0c\x04\x01\x02\x00\x01\x12\x04\xb7\x04\x04\r\n\x0f\n\x07\x04\x0c\x04\x01\x02\x00\x02\x12\x04\xb7\x04\x10\x11\n)\n\x06\x04\x0c\x04\x01\x02\x01\x12\x04\xba\x04\x04\x12\x1a\x19 Use JavaScript strings.\n\n\x0f\n\x07\x04\x0c\x04\x01\x02\x01\x01\x12\x04\xba\x04\x04\r\n\x0f\n\x07\x04\x0c\x04\x01\x02\x01\x02\x12\x04\xba\x04\x10\x11\n)\n\x06\x04\x0c\x04\x01\x02\x02\x12\x04\xbd\x04\x04\x12\x1a\x19 Use JavaScript numbers.\n\n\x0f\n\x07\x04\x0c\x04\x01\x02\x02\x01\x12\x04\xbd\x04\x04\r\n\x0f\n\x07\x04\x0c\x04\x01\x02\x02\x02\x12\x04\xbd\x04\x10\x11\n\xef\x0c\n\x04\x04\x0c\x02\x03\x12\x04\xdc\x04\x02+\x1a\xe0\x0c Should this field be parsed lazily?  Lazy applies only to message-type\n fields.  It means that when the outer message is initially parsed, the\n inner message\'s contents will not be parsed but instead stored in encoded\n form.  The inner message will actually be parsed when it is first accessed.\n\n This is only a hint.  Implementations are free to choose whether to use\n eager or lazy parsing regardless of the value of this option.  However,\n setting this option true suggests that the protocol author believes that\n using lazy parsing on this field is worth the additional bookkeeping\n overhead typically needed to implement it.\n\n This option does not affect the public interface of any generated code;\n all method signatures remain the same.  Furthermore, thread-safety of the\n interface is not affected by this option; const methods remain safe to\n call from multiple threads concurrently, while non-const methods continue\n to require exclusive access.\n\n\n Note that implementations may choose not to check required fields within\n a lazy sub-message.  That is, calling IsInitialized() on the outer message\n may return true even if the inner message has missing required fields.\n This is necessary because otherwise the inner message would have to be\n parsed in order to perform the check, defeating the purpose of lazy\n parsing.  An implementation which chooses not to check required fields\n must be consistent about it.  That is, for any particular sub-message, the\n implementation must either *always* check its required fields, or *never*\n check its required fields, regardless of whether or not the message has\n been parsed.\n\n\r\n\x05\x04\x0c\x02\x03\x04\x12\x04\xdc\x04\x02\n\n\r\n\x05\x04\x0c\x02\x03\x05\x12\x04\xdc\x04\x0b\x0f\n\r\n\x05\x04\x0c\x02\x03\x01\x12\x04\xdc\x04\x10\x14\n\r\n\x05\x04\x0c\x02\x03\x03\x12\x04\xdc\x04\x17\x18\n\r\n\x05\x04\x0c\x02\x03\x08\x12\x04\xdc\x04\x19*\n\r\n\x05\x04\x0c\x02\x03\x07\x12\x04\xdc\x04$)\n\xe8\x01\n\x04\x04\x0c\x02\x04\x12\x04\xe2\x04\x021\x1a\xd9\x01 Is this field deprecated?\n Depending on the target platform, this can emit Deprecated annotations\n for accessors, or it will be completely ignored; in the very least, this\n is a formalization for deprecating fields.\n\n\r\n\x05\x04\x0c\x02\x04\x04\x12\x04\xe2\x04\x02\n\n\r\n\x05\x04\x0c\x02\x04\x05\x12\x04\xe2\x04\x0b\x0f\n\r\n\x05\x04\x0c\x02\x04\x01\x12\x04\xe2\x04\x10\x1a\n\r\n\x05\x04\x0c\x02\x04\x03\x12\x04\xe2\x04\x1d\x1e\n\r\n\x05\x04\x0c\x02\x04\x08\x12\x04\xe2\x04\x1f0\n\r\n\x05\x04\x0c\x02\x04\x07\x12\x04\xe2\x04*/\n?\n\x04\x04\x0c\x02\x05\x12\x04\xe5\x04\x02,\x1a1 For Google-internal migration only. Do not use.\n\n\r\n\x05\x04\x0c\x02\x05\x04\x12\x04\xe5\x04\x02\n\n\r\n\x05\x04\x0c\x02\x05\x05\x12\x04\xe5\x04\x0b\x0f\n\r\n\x05\x04\x0c\x02\x05\x01\x12\x04\xe5\x04\x10\x14\n\r\n\x05\x04\x0c\x02\x05\x03\x12\x04\xe5\x04\x17\x19\n\r\n\x05\x04\x0c\x02\x05\x08\x12\x04\xe5\x04\x1a+\n\r\n\x05\x04\x0c\x02\x05\x07\x12\x04\xe5\x04%*\nO\n\x04\x04\x0c\x02\x06\x12\x04\xe9\x04\x02:\x1aA The parser stores options it doesn\'t recognize here. See above.\n\n\r\n\x05\x04\x0c\x02\x06\x04\x12\x04\xe9\x04\x02\n\n\r\n\x05\x04\x0c\x02\x06\x06\x12\x04\xe9\x04\x0b\x1e\n\r\n\x05\x04\x0c\x02\x06\x01\x12\x04\xe9\x04\x1f3\n\r\n\x05\x04\x0c\x02\x06\x03\x12\x04\xe9\x0469\nZ\n\x03\x04\x0c\x05\x12\x04\xec\x04\x02\x19\x1aM Clients can define custom options in extensions of this message. See above.\n\n\x0c\n\x04\x04\x0c\x05\x00\x12\x04\xec\x04\r\x18\n\r\n\x05\x04\x0c\x05\x00\x01\x12\x04\xec\x04\r\x11\n\r\n\x05\x04\x0c\x05\x00\x02\x12\x04\xec\x04\x15\x18\n\x1c\n\x03\x04\x0c\t\x12\x04\xee\x04\x02\r\"\x0f removed jtype\n\n\x0c\n\x04\x04\x0c\t\x00\x12\x04\xee\x04\x0b\x0c\n\r\n\x05\x04\x0c\t\x00\x01\x12\x04\xee\x04\x0b\x0c\n\r\n\x05\x04\x0c\t\x00\x02\x12\x04\xee\x04\x0b\x0c\n\x0c\n\x02\x04\r\x12\x06\xf1\x04\x00\xf7\x04\x01\n\x0b\n\x03\x04\r\x01\x12\x04\xf1\x04\x08\x14\nO\n\x04\x04\r\x02\x00\x12\x04\xf3\x04\x02:\x1aA The parser stores options it doesn\'t recognize here. See above.\n\n\r\n\x05\x04\r\x02\x00\x04\x12\x04\xf3\x04\x02\n\n\r\n\x05\x04\r\x02\x00\x06\x12\x04\xf3\x04\x0b\x1e\n\r\n\x05\x04\r\x02\x00\x01\x12\x04\xf3\x04\x1f3\n\r\n\x05\x04\r\x02\x00\x03\x12\x04\xf3\x0469\nZ\n\x03\x04\r\x05\x12\x04\xf6\x04\x02\x19\x1aM Clients can define custom options in extensions of this message. See above.\n\n\x0c\n\x04\x04\r\x05\x00\x12\x04\xf6\x04\r\x18\n\r\n\x05\x04\r\x05\x00\x01\x12\x04\xf6\x04\r\x11\n\r\n\x05\x04\r\x05\x00\x02\x12\x04\xf6\x04\x15\x18\n\x0c\n\x02\x04\x0e\x12\x06\xf9\x04\x00\x8c\x05\x01\n\x0b\n\x03\x04\x0e\x01\x12\x04\xf9\x04\x08\x13\n`\n\x04\x04\x0e\x02\x00\x12\x04\xfd\x04\x02 \x1aR Set this option to true to allow mapping different tag names to the same\n value.\n\n\r\n\x05\x04\x0e\x02\x00\x04\x12\x04\xfd\x04\x02\n\n\r\n\x05\x04\x0e\x02\x00\x05\x12\x04\xfd\x04\x0b\x0f\n\r\n\x05\x04\x0e\x02\x00\x01\x12\x04\xfd\x04\x10\x1b\n\r\n\x05\x04\x0e\x02\x00\x03\x12\x04\xfd\x04\x1e\x1f\n\xe5\x01\n\x04\x04\x0e\x02\x01\x12\x04\x83\x05\x021\x1a\xd6\x01 Is this enum deprecated?\n Depending on the target platform, this can emit Deprecated annotations\n for the enum, or it will be completely ignored; in the very least, this\n is a formalization for deprecating enums.\n\n\r\n\x05\x04\x0e\x02\x01\x04\x12\x04\x83\x05\x02\n\n\r\n\x05\x04\x0e\x02\x01\x05\x12\x04\x83\x05\x0b\x0f\n\r\n\x05\x04\x0e\x02\x01\x01\x12\x04\x83\x05\x10\x1a\n\r\n\x05\x04\x0e\x02\x01\x03\x12\x04\x83\x05\x1d\x1e\n\r\n\x05\x04\x0e\x02\x01\x08\x12\x04\x83\x05\x1f0\n\r\n\x05\x04\x0e\x02\x01\x07\x12\x04\x83\x05*/\n\x1f\n\x03\x04\x0e\t\x12\x04\x85\x05\x02\r\"\x12 javanano_as_lite\n\n\x0c\n\x04\x04\x0e\t\x00\x12\x04\x85\x05\x0b\x0c\n\r\n\x05\x04\x0e\t\x00\x01\x12\x04\x85\x05\x0b\x0c\n\r\n\x05\x04\x0e\t\x00\x02\x12\x04\x85\x05\x0b\x0c\nO\n\x04\x04\x0e\x02\x02\x12\x04\x88\x05\x02:\x1aA The parser stores options it doesn\'t recognize here. See above.\n\n\r\n\x05\x04\x0e\x02\x02\x04\x12\x04\x88\x05\x02\n\n\r\n\x05\x04\x0e\x02\x02\x06\x12\x04\x88\x05\x0b\x1e\n\r\n\x05\x04\x0e\x02\x02\x01\x12\x04\x88\x05\x1f3\n\r\n\x05\x04\x0e\x02\x02\x03\x12\x04\x88\x0569\nZ\n\x03\x04\x0e\x05\x12\x04\x8b\x05\x02\x19\x1aM Clients can define custom options in extensions of this message. See above.\n\n\x0c\n\x04\x04\x0e\x05\x00\x12\x04\x8b\x05\r\x18\n\r\n\x05\x04\x0e\x05\x00\x01\x12\x04\x8b\x05\r\x11\n\r\n\x05\x04\x0e\x05\x00\x02\x12\x04\x8b\x05\x15\x18\n\x0c\n\x02\x04\x0f\x12\x06\x8e\x05\x00\x9a\x05\x01\n\x0b\n\x03\x04\x0f\x01\x12\x04\x8e\x05\x08\x18\n\xf7\x01\n\x04\x04\x0f\x02\x00\x12\x04\x93\x05\x021\x1a\xe8\x01 Is this enum value deprecated?\n Depending on the target platform, this can emit Deprecated annotations\n for the enum value, or it will be completely ignored; in the very least,\n this is a formalization for deprecating enum values.\n\n\r\n\x05\x04\x0f\x02\x00\x04\x12\x04\x93\x05\x02\n\n\r\n\x05\x04\x0f\x02\x00\x05\x12\x04\x93\x05\x0b\x0f\n\r\n\x05\x04\x0f\x02\x00\x01\x12\x04\x93\x05\x10\x1a\n\r\n\x05\x04\x0f\x02\x00\x03\x12\x04\x93\x05\x1d\x1e\n\r\n\x05\x04\x0f\x02\x00\x08\x12\x04\x93\x05\x1f0\n\r\n\x05\x04\x0f\x02\x00\x07\x12\x04\x93\x05*/\nO\n\x04\x04\x0f\x02\x01\x12\x04\x96\x05\x02:\x1aA The parser stores options it doesn\'t recognize here. See above.\n\n\r\n\x05\x04\x0f\x02\x01\x04\x12\x04\x96\x05\x02\n\n\r\n\x05\x04\x0f\x02\x01\x06\x12\x04\x96\x05\x0b\x1e\n\r\n\x05\x04\x0f\x02\x01\x01\x12\x04\x96\x05\x1f3\n\r\n\x05\x04\x0f\x02\x01\x03\x12\x04\x96\x0569\nZ\n\x03\x04\x0f\x05\x12\x04\x99\x05\x02\x19\x1aM Clients can define custom options in extensions of this message. See above.\n\n\x0c\n\x04\x04\x0f\x05\x00\x12\x04\x99\x05\r\x18\n\r\n\x05\x04\x0f\x05\x00\x01\x12\x04\x99\x05\r\x11\n\r\n\x05\x04\x0f\x05\x00\x02\x12\x04\x99\x05\x15\x18\n\x0c\n\x02\x04\x10\x12\x06\x9c\x05\x00\xae\x05\x01\n\x0b\n\x03\x04\x10\x01\x12\x04\x9c\x05\x08\x16\n\xd9\x03\n\x04\x04\x10\x02\x00\x12\x04\xa7\x05\x022\x1a\xdf\x01 Is this service deprecated?\n Depending on the target platform, this can emit Deprecated annotations\n for the service, or it will be completely ignored; in the very least,\n this is a formalization for deprecating services.\n2\xe8\x01 Note:  Field numbers 1 through 32 are reserved for Google\'s internal RPC\n   framework.  We apologize for hoarding these numbers to ourselves, but\n   we were already using them long before we decided to release Protocol\n   Buffers.\n\n\r\n\x05\x04\x10\x02\x00\x04\x12\x04\xa7\x05\x02\n\n\r\n\x05\x04\x10\x02\x00\x05\x12\x04\xa7\x05\x0b\x0f\n\r\n\x05\x04\x10\x02\x00\x01\x12\x04\xa7\x05\x10\x1a\n\r\n\x05\x04\x10\x02\x00\x03\x12\x04\xa7\x05\x1d\x1f\n\r\n\x05\x04\x10\x02\x00\x08\x12\x04\xa7\x05 1\n\r\n\x05\x04\x10\x02\x00\x07\x12\x04\xa7\x05+0\nO\n\x04\x04\x10\x02\x01\x12\x04\xaa\x05\x02:\x1aA The parser stores options it doesn\'t recognize here. See above.\n\n\r\n\x05\x04\x10\x02\x01\x04\x12\x04\xaa\x05\x02\n\n\r\n\x05\x04\x10\x02\x01\x06\x12\x04\xaa\x05\x0b\x1e\n\r\n\x05\x04\x10\x02\x01\x01\x12\x04\xaa\x05\x1f3\n\r\n\x05\x04\x10\x02\x01\x03\x12\x04\xaa\x0569\nZ\n\x03\x04\x10\x05\x12\x04\xad\x05\x02\x19\x1aM Clients can define custom options in extensions of this message. See above.\n\n\x0c\n\x04\x04\x10\x05\x00\x12\x04\xad\x05\r\x18\n\r\n\x05\x04\x10\x05\x00\x01\x12\x04\xad\x05\r\x11\n\r\n\x05\x04\x10\x05\x00\x02\x12\x04\xad\x05\x15\x18\n\x0c\n\x02\x04\x11\x12\x06\xb0\x05\x00\xcd\x05\x01\n\x0b\n\x03\x04\x11\x01\x12\x04\xb0\x05\x08\x15\n\xd6\x03\n\x04\x04\x11\x02\x00\x12\x04\xbb\x05\x022\x1a\xdc\x01 Is this method deprecated?\n Depending on the target platform, this can emit Deprecated annotations\n for the method, or it will be completely ignored; in the very least,\n this is a formalization for deprecating methods.\n2\xe8\x01 Note:  Field numbers 1 through 32 are reserved for Google\'s internal RPC\n   framework.  We apologize for hoarding these numbers to ourselves, but\n   we were already using them long before we decided to release Protocol\n   Buffers.\n\n\r\n\x05\x04\x11\x02\x00\x04\x12\x04\xbb\x05\x02\n\n\r\n\x05\x04\x11\x02\x00\x05\x12\x04\xbb\x05\x0b\x0f\n\r\n\x05\x04\x11\x02\x00\x01\x12\x04\xbb\x05\x10\x1a\n\r\n\x05\x04\x11\x02\x00\x03\x12\x04\xbb\x05\x1d\x1f\n\r\n\x05\x04\x11\x02\x00\x08\x12\x04\xbb\x05 1\n\r\n\x05\x04\x11\x02\x00\x07\x12\x04\xbb\x05+0\n\xf0\x01\n\x04\x04\x11\x04\x00\x12\x06\xc0\x05\x02\xc4\x05\x03\x1a\xdf\x01 Is this method side-effect-free (or safe in HTTP parlance), or idempotent,\n or neither? HTTP based RPC implementation may choose GET verb for safe\n methods, and PUT verb for idempotent methods instead of the default POST.\n\n\r\n\x05\x04\x11\x04\x00\x01\x12\x04\xc0\x05\x07\x17\n\x0e\n\x06\x04\x11\x04\x00\x02\x00\x12\x04\xc1\x05\x04\x1c\n\x0f\n\x07\x04\x11\x04\x00\x02\x00\x01\x12\x04\xc1\x05\x04\x17\n\x0f\n\x07\x04\x11\x04\x00\x02\x00\x02\x12\x04\xc1\x05\x1a\x1b\n$\n\x06\x04\x11\x04\x00\x02\x01\x12\x04\xc2\x05\x04\x18\"\x14 implies idempotent\n\n\x0f\n\x07\x04\x11\x04\x00\x02\x01\x01\x12\x04\xc2\x05\x04\x13\n\x0f\n\x07\x04\x11\x04\x00\x02\x01\x02\x12\x04\xc2\x05\x16\x17\n7\n\x06\x04\x11\x04\x00\x02\x02\x12\x04\xc3\x05\x04\x13\"\' idempotent, but may have side effects\n\n\x0f\n\x07\x04\x11\x04\x00\x02\x02\x01\x12\x04\xc3\x05\x04\x0e\n\x0f\n\x07\x04\x11\x04\x00\x02\x02\x02\x12\x04\xc3\x05\x11\x12\n\x0e\n\x04\x04\x11\x02\x01\x12\x06\xc5\x05\x02\xc6\x05&\n\r\n\x05\x04\x11\x02\x01\x04\x12\x04\xc5\x05\x02\n\n\r\n\x05\x04\x11\x02\x01\x06\x12\x04\xc5\x05\x0b\x1b\n\r\n\x05\x04\x11\x02\x01\x01\x12\x04\xc5\x05\x1c-\n\r\n\x05\x04\x11\x02\x01\x03\x12\x04\xc5\x0502\n\r\n\x05\x04\x11\x02\x01\x08\x12\x04\xc6\x05\x06%\n\r\n\x05\x04\x11\x02\x01\x07\x12\x04\xc6\x05\x11$\nO\n\x04\x04\x11\x02\x02\x12\x04\xc9\x05\x02:\x1aA The parser stores options it doesn\'t recognize here. See above.\n\n\r\n\x05\x04\x11\x02\x02\x04\x12\x04\xc9\x05\x02\n\n\r\n\x05\x04\x11\x02\x02\x06\x12\x04\xc9\x05\x0b\x1e\n\r\n\x05\x04\x11\x02\x02\x01\x12\x04\xc9\x05\x1f3\n\r\n\x05\x04\x11\x02\x02\x03\x12\x04\xc9\x0569\nZ\n\x03\x04\x11\x05\x12\x04\xcc\x05\x02\x19\x1aM Clients can define custom options in extensions of this message. See above.\n\n\x0c\n\x04\x04\x11\x05\x00\x12\x04\xcc\x05\r\x18\n\r\n\x05\x04\x11\x05\x00\x01\x12\x04\xcc\x05\r\x11\n\r\n\x05\x04\x11\x05\x00\x02\x12\x04\xcc\x05\x15\x18\n\x8b\x03\n\x02\x04\x12\x12\x06\xd6\x05\x00\xea\x05\x01\x1a\xfc\x02 A message representing a option the parser does not recognize. This only\n appears in options protos created by the compiler::Parser class.\n DescriptorPool resolves these when building Descriptor objects. Therefore,\n options protos in descriptor objects (e.g. returned by Descriptor::options(),\n or produced by Descriptor::CopyTo()) will never have UninterpretedOptions\n in them.\n\n\x0b\n\x03\x04\x12\x01\x12\x04\xd6\x05\x08\x1b\n\xcb\x02\n\x04\x04\x12\x03\x00\x12\x06\xdc\x05\x02\xdf\x05\x03\x1a\xba\x02 The name of the uninterpreted option.  Each string represents a segment in\n a dot-separated name.  is_extension is true iff a segment represents an\n extension (denoted with parentheses in options specs in .proto files).\n E.g.,{ [\"foo\", false], [\"bar.baz\", true], [\"qux\", false] } represents\n \"foo.(bar.baz).qux\".\n\n\r\n\x05\x04\x12\x03\x00\x01\x12\x04\xdc\x05\n\x12\n\x0e\n\x06\x04\x12\x03\x00\x02\x00\x12\x04\xdd\x05\x04\"\n\x0f\n\x07\x04\x12\x03\x00\x02\x00\x04\x12\x04\xdd\x05\x04\x0c\n\x0f\n\x07\x04\x12\x03\x00\x02\x00\x05\x12\x04\xdd\x05\r\x13\n\x0f\n\x07\x04\x12\x03\x00\x02\x00\x01\x12\x04\xdd\x05\x14\x1d\n\x0f\n\x07\x04\x12\x03\x00\x02\x00\x03\x12\x04\xdd\x05 !\n\x0e\n\x06\x04\x12\x03\x00\x02\x01\x12\x04\xde\x05\x04#\n\x0f\n\x07\x04\x12\x03\x00\x02\x01\x04\x12\x04\xde\x05\x04\x0c\n\x0f\n\x07\x04\x12\x03\x00\x02\x01\x05\x12\x04\xde\x05\r\x11\n\x0f\n\x07\x04\x12\x03\x00\x02\x01\x01\x12\x04\xde\x05\x12\x1e\n\x0f\n\x07\x04\x12\x03\x00\x02\x01\x03\x12\x04\xde\x05!\"\n\x0c\n\x04\x04\x12\x02\x00\x12\x04\xe0\x05\x02\x1d\n\r\n\x05\x04\x12\x02\x00\x04\x12\x04\xe0\x05\x02\n\n\r\n\x05\x04\x12\x02\x00\x06\x12\x04\xe0\x05\x0b\x13\n\r\n\x05\x04\x12\x02\x00\x01\x12\x04\xe0\x05\x14\x18\n\r\n\x05\x04\x12\x02\x00\x03\x12\x04\xe0\x05\x1b\x1c\n\x9c\x01\n\x04\x04\x12\x02\x01\x12\x04\xe4\x05\x02\'\x1a\x8d\x01 The value of the uninterpreted option, in whatever type the tokenizer\n identified it as during parsing. Exactly one of these should be set.\n\n\r\n\x05\x04\x12\x02\x01\x04\x12\x04\xe4\x05\x02\n\n\r\n\x05\x04\x12\x02\x01\x05\x12\x04\xe4\x05\x0b\x11\n\r\n\x05\x04\x12\x02\x01\x01\x12\x04\xe4\x05\x12\"\n\r\n\x05\x04\x12\x02\x01\x03\x12\x04\xe4\x05%&\n\x0c\n\x04\x04\x12\x02\x02\x12\x04\xe5\x05\x02)\n\r\n\x05\x04\x12\x02\x02\x04\x12\x04\xe5\x05\x02\n\n\r\n\x05\x04\x12\x02\x02\x05\x12\x04\xe5\x05\x0b\x11\n\r\n\x05\x04\x12\x02\x02\x01\x12\x04\xe5\x05\x12$\n\r\n\x05\x04\x12\x02\x02\x03\x12\x04\xe5\x05\'(\n\x0c\n\x04\x04\x12\x02\x03\x12\x04\xe6\x05\x02(\n\r\n\x05\x04\x12\x02\x03\x04\x12\x04\xe6\x05\x02\n\n\r\n\x05\x04\x12\x02\x03\x05\x12\x04\xe6\x05\x0b\x10\n\r\n\x05\x04\x12\x02\x03\x01\x12\x04\xe6\x05\x11#\n\r\n\x05\x04\x12\x02\x03\x03\x12\x04\xe6\x05&\'\n\x0c\n\x04\x04\x12\x02\x04\x12\x04\xe7\x05\x02#\n\r\n\x05\x04\x12\x02\x04\x04\x12\x04\xe7\x05\x02\n\n\r\n\x05\x04\x12\x02\x04\x05\x12\x04\xe7\x05\x0b\x11\n\r\n\x05\x04\x12\x02\x04\x01\x12\x04\xe7\x05\x12\x1e\n\r\n\x05\x04\x12\x02\x04\x03\x12\x04\xe7\x05!\"\n\x0c\n\x04\x04\x12\x02\x05\x12\x04\xe8\x05\x02\"\n\r\n\x05\x04\x12\x02\x05\x04\x12\x04\xe8\x05\x02\n\n\r\n\x05\x04\x12\x02\x05\x05\x12\x04\xe8\x05\x0b\x10\n\r\n\x05\x04\x12\x02\x05\x01\x12\x04\xe8\x05\x11\x1d\n\r\n\x05\x04\x12\x02\x05\x03\x12\x04\xe8\x05 !\n\x0c\n\x04\x04\x12\x02\x06\x12\x04\xe9\x05\x02&\n\r\n\x05\x04\x12\x02\x06\x04\x12\x04\xe9\x05\x02\n\n\r\n\x05\x04\x12\x02\x06\x05\x12\x04\xe9\x05\x0b\x11\n\r\n\x05\x04\x12\x02\x06\x01\x12\x04\xe9\x05\x12!\n\r\n\x05\x04\x12\x02\x06\x03\x12\x04\xe9\x05$%\n\xda\x01\n\x02\x04\x13\x12\x06\xf1\x05\x00\xf2\x06\x01\x1aj Encapsulates information about the original source file from which a\n FileDescriptorProto was generated.\n2` ===================================================================\n Optional source code info\n\n\x0b\n\x03\x04\x13\x01\x12\x04\xf1\x05\x08\x16\n\x82\x11\n\x04\x04\x13\x02\x00\x12\x04\x9d\x06\x02!\x1a\xf3\x10 A Location identifies a piece of source code in a .proto file which\n corresponds to a particular definition.  This information is intended\n to be useful to IDEs, code indexers, documentation generators, and similar\n tools.\n\n For example, say we have a file like:\n   message Foo {\n     optional string foo = 1;\n   }\n Let\'s look at just the field definition:\n   optional string foo = 1;\n   ^       ^^     ^^  ^  ^^^\n   a       bc     de  f  ghi\n We have the following locations:\n   span   path               represents\n   [a,i)  [ 4, 0, 2, 0 ]     The whole field definition.\n   [a,b)  [ 4, 0, 2, 0, 4 ]  The label (optional).\n   [c,d)  [ 4, 0, 2, 0, 5 ]  The type (string).\n   [e,f)  [ 4, 0, 2, 0, 1 ]  The name (foo).\n   [g,h)  [ 4, 0, 2, 0, 3 ]  The number (1).\n\n Notes:\n - A location may refer to a repeated field itself (i.e. not to any\n   particular index within it).  This is used whenever a set of elements are\n   logically enclosed in a single code segment.  For example, an entire\n   extend block (possibly containing multiple extension definitions) will\n   have an outer location whose path refers to the \"extensions\" repeated\n   field without an index.\n - Multiple locations may have the same path.  This happens when a single\n   logical declaration is spread out across multiple places.  The most\n   obvious example is the \"extend\" block again -- there may be multiple\n   extend blocks in the same scope, each of which will have the same path.\n - A location\'s span is not always a subset of its parent\'s span.  For\n   example, the \"extendee\" of an extension declaration appears at the\n   beginning of the \"extend\" block and is shared by all extensions within\n   the block.\n - Just because a location\'s span is a subset of some other location\'s span\n   does not mean that it is a descendant.  For example, a \"group\" defines\n   both a type and a field in a single declaration.  Thus, the locations\n   corresponding to the type and field and their components will overlap.\n - Code which tries to interpret locations should probably be designed to\n   ignore those that it doesn\'t understand, as more types of locations could\n   be recorded in the future.\n\n\r\n\x05\x04\x13\x02\x00\x04\x12\x04\x9d\x06\x02\n\n\r\n\x05\x04\x13\x02\x00\x06\x12\x04\x9d\x06\x0b\x13\n\r\n\x05\x04\x13\x02\x00\x01\x12\x04\x9d\x06\x14\x1c\n\r\n\x05\x04\x13\x02\x00\x03\x12\x04\x9d\x06\x1f \n\x0e\n\x04\x04\x13\x03\x00\x12\x06\x9e\x06\x02\xf1\x06\x03\n\r\n\x05\x04\x13\x03\x00\x01\x12\x04\x9e\x06\n\x12\n\x83\x07\n\x06\x04\x13\x03\x00\x02\x00\x12\x04\xb6\x06\x04,\x1a\xf2\x06 Identifies which part of the FileDescriptorProto was defined at this\n location.\n\n Each element is a field number or an index.  They form a path from\n the root FileDescriptorProto to the place where the definition.  For\n example, this path:\n   [ 4, 3, 2, 7, 1 ]\n refers to:\n   file.message_type(3)  // 4, 3\n       .field(7)         // 2, 7\n       .name()           // 1\n This is because FileDescriptorProto.message_type has field number 4:\n   repeated DescriptorProto message_type = 4;\n and DescriptorProto.field has field number 2:\n   repeated FieldDescriptorProto field = 2;\n and FieldDescriptorProto.name has field number 1:\n   optional string name = 1;\n\n Thus, the above path gives the location of a field name.  If we removed\n the last element:\n   [ 4, 3, 2, 7 ]\n this path refers to the whole field declaration (from the beginning\n of the label to the terminating semicolon).\n\n\x0f\n\x07\x04\x13\x03\x00\x02\x00\x04\x12\x04\xb6\x06\x04\x0c\n\x0f\n\x07\x04\x13\x03\x00\x02\x00\x05\x12\x04\xb6\x06\r\x12\n\x0f\n\x07\x04\x13\x03\x00\x02\x00\x01\x12\x04\xb6\x06\x13\x17\n\x0f\n\x07\x04\x13\x03\x00\x02\x00\x03\x12\x04\xb6\x06\x1a\x1b\n\x0f\n\x07\x04\x13\x03\x00\x02\x00\x08\x12\x04\xb6\x06\x1c+\n\x10\n\x08\x04\x13\x03\x00\x02\x00\x08\x02\x12\x04\xb6\x06\x1d*\n\xd2\x02\n\x06\x04\x13\x03\x00\x02\x01\x12\x04\xbd\x06\x04,\x1a\xc1\x02 Always has exactly three or four elements: start line, start column,\n end line (optional, otherwise assumed same as start line), end column.\n These are packed into a single field for efficiency.  Note that line\n and column numbers are zero-based -- typically you will want to add\n 1 to each before displaying to a user.\n\n\x0f\n\x07\x04\x13\x03\x00\x02\x01\x04\x12\x04\xbd\x06\x04\x0c\n\x0f\n\x07\x04\x13\x03\x00\x02\x01\x05\x12\x04\xbd\x06\r\x12\n\x0f\n\x07\x04\x13\x03\x00\x02\x01\x01\x12\x04\xbd\x06\x13\x17\n\x0f\n\x07\x04\x13\x03\x00\x02\x01\x03\x12\x04\xbd\x06\x1a\x1b\n\x0f\n\x07\x04\x13\x03\x00\x02\x01\x08\x12\x04\xbd\x06\x1c+\n\x10\n\x08\x04\x13\x03\x00\x02\x01\x08\x02\x12\x04\xbd\x06\x1d*\n\xa5\x0c\n\x06\x04\x13\x03\x00\x02\x02\x12\x04\xee\x06\x04)\x1a\x94\x0c If this SourceCodeInfo represents a complete declaration, these are any\n comments appearing before and after the declaration which appear to be\n attached to the declaration.\n\n A series of line comments appearing on consecutive lines, with no other\n tokens appearing on those lines, will be treated as a single comment.\n\n leading_detached_comments will keep paragraphs of comments that appear\n before (but not connected to) the current element. Each paragraph,\n separated by empty lines, will be one comment element in the repeated\n field.\n\n Only the comment content is provided; comment markers (e.g. //) are\n stripped out.  For block comments, leading whitespace and an asterisk\n will be stripped from the beginning of each line other than the first.\n Newlines are included in the output.\n\n Examples:\n\n   optional int32 foo = 1;  // Comment attached to foo.\n   // Comment attached to bar.\n   optional int32 bar = 2;\n\n   optional string baz = 3;\n   // Comment attached to baz.\n   // Another line attached to baz.\n\n   // Comment attached to qux.\n   //\n   // Another line attached to qux.\n   optional double qux = 4;\n\n   // Detached comment for corge. This is not leading or trailing comments\n   // to qux or corge because there are blank lines separating it from\n   // both.\n\n   // Detached comment for corge paragraph 2.\n\n   optional string corge = 5;\n   /* Block comment attached\n    * to corge.  Leading asterisks\n    * will be removed. */\n   /* Block comment attached to\n    * grault. */\n   optional int32 grault = 6;\n\n   // ignored detached comments.\n\n\x0f\n\x07\x04\x13\x03\x00\x02\x02\x04\x12\x04\xee\x06\x04\x0c\n\x0f\n\x07\x04\x13\x03\x00\x02\x02\x05\x12\x04\xee\x06\r\x13\n\x0f\n\x07\x04\x13\x03\x00\x02\x02\x01\x12\x04\xee\x06\x14$\n\x0f\n\x07\x04\x13\x03\x00\x02\x02\x03\x12\x04\xee\x06\'(\n\x0e\n\x06\x04\x13\x03\x00\x02\x03\x12\x04\xef\x06\x04*\n\x0f\n\x07\x04\x13\x03\x00\x02\x03\x04\x12\x04\xef\x06\x04\x0c\n\x0f\n\x07\x04\x13\x03\x00\x02\x03\x05\x12\x04\xef\x06\r\x13\n\x0f\n\x07\x04\x13\x03\x00\x02\x03\x01\x12\x04\xef\x06\x14%\n\x0f\n\x07\x04\x13\x03\x00\x02\x03\x03\x12\x04\xef\x06()\n\x0e\n\x06\x04\x13\x03\x00\x02\x04\x12\x04\xf0\x06\x042\n\x0f\n\x07\x04\x13\x03\x00\x02\x04\x04\x12\x04\xf0\x06\x04\x0c\n\x0f\n\x07\x04\x13\x03\x00\x02\x04\x05\x12\x04\xf0\x06\r\x13\n\x0f\n\x07\x04\x13\x03\x00\x02\x04\x01\x12\x04\xf0\x06\x14-\n\x0f\n\x07\x04\x13\x03\x00\x02\x04\x03\x12\x04\xf0\x0601\n\xee\x01\n\x02\x04\x14\x12\x06\xf7\x06\x00\x8c\x07\x01\x1a\xdf\x01 Describes the relationship between generated code and its original source\n file. A GeneratedCodeInfo message is associated with only one generated\n source file, but may contain references to different source .proto files.\n\n\x0b\n\x03\x04\x14\x01\x12\x04\xf7\x06\x08\x19\nx\n\x04\x04\x14\x02\x00\x12\x04\xfa\x06\x02%\x1aj An Annotation connects some span of text in generated code to an element\n of its generating .proto file.\n\n\r\n\x05\x04\x14\x02\x00\x04\x12\x04\xfa\x06\x02\n\n\r\n\x05\x04\x14\x02\x00\x06\x12\x04\xfa\x06\x0b\x15\n\r\n\x05\x04\x14\x02\x00\x01\x12\x04\xfa\x06\x16 \n\r\n\x05\x04\x14\x02\x00\x03\x12\x04\xfa\x06#$\n\x0e\n\x04\x04\x14\x03\x00\x12\x06\xfb\x06\x02\x8b\x07\x03\n\r\n\x05\x04\x14\x03\x00\x01\x12\x04\xfb\x06\n\x14\n\x8f\x01\n\x06\x04\x14\x03\x00\x02\x00\x12\x04\xfe\x06\x04,\x1a\x7f Identifies the element in the original source .proto file. This field\n is formatted the same as SourceCodeInfo.Location.path.\n\n\x0f\n\x07\x04\x14\x03\x00\x02\x00\x04\x12\x04\xfe\x06\x04\x0c\n\x0f\n\x07\x04\x14\x03\x00\x02\x00\x05\x12\x04\xfe\x06\r\x12\n\x0f\n\x07\x04\x14\x03\x00\x02\x00\x01\x12\x04\xfe\x06\x13\x17\n\x0f\n\x07\x04\x14\x03\x00\x02\x00\x03\x12\x04\xfe\x06\x1a\x1b\n\x0f\n\x07\x04\x14\x03\x00\x02\x00\x08\x12\x04\xfe\x06\x1c+\n\x10\n\x08\x04\x14\x03\x00\x02\x00\x08\x02\x12\x04\xfe\x06\x1d*\nO\n\x06\x04\x14\x03\x00\x02\x01\x12\x04\x81\x07\x04$\x1a? Identifies the filesystem path to the original source .proto.\n\n\x0f\n\x07\x04\x14\x03\x00\x02\x01\x04\x12\x04\x81\x07\x04\x0c\n\x0f\n\x07\x04\x14\x03\x00\x02\x01\x05\x12\x04\x81\x07\r\x13\n\x0f\n\x07\x04\x14\x03\x00\x02\x01\x01\x12\x04\x81\x07\x14\x1f\n\x0f\n\x07\x04\x14\x03\x00\x02\x01\x03\x12\x04\x81\x07\"#\nw\n\x06\x04\x14\x03\x00\x02\x02\x12\x04\x85\x07\x04\x1d\x1ag Identifies the starting offset in bytes in the generated code\n that relates to the identified object.\n\n\x0f\n\x07\x04\x14\x03\x00\x02\x02\x04\x12\x04\x85\x07\x04\x0c\n\x0f\n\x07\x04\x14\x03\x00\x02\x02\x05\x12\x04\x85\x07\r\x12\n\x0f\n\x07\x04\x14\x03\x00\x02\x02\x01\x12\x04\x85\x07\x13\x18\n\x0f\n\x07\x04\x14\x03\x00\x02\x02\x03\x12\x04\x85\x07\x1b\x1c\n\xdb\x01\n\x06\x04\x14\x03\x00\x02\x03\x12\x04\x8a\x07\x04\x1b\x1a\xca\x01 Identifies the ending offset in bytes in the generated code that\n relates to the identified offset. The end offset should be one past\n the last relevant byte (so the length of the text = end - begin).\n\n\x0f\n\x07\x04\x14\x03\x00\x02\x03\x04\x12\x04\x8a\x07\x04\x0c\n\x0f\n\x07\x04\x14\x03\x00\x02\x03\x05\x12\x04\x8a\x07\r\x12\n\x0f\n\x07\x04\x14\x03\x00\x02\x03\x01\x12\x04\x8a\x07\x13\x16\n\x0f\n\x07\x04\x14\x03\x00\x02\x03\x03\x12\x04\x8a\x07\x19\x1a\n\xd4\x08\n\x1cgoogle/api/annotations.proto\x12\ngoogle.api\x1a\x15google/api/http.proto\x1a google/protobuf/descriptor.proto:K\n\x04http\x12\x1e.google.protobuf.MethodOptions\x18\xb0\xca\xbc\" \x01(\x0b2\x14.google.api.HttpRuleR\x04httpBn\n\x0ecom.google.apiB\x10AnnotationsProtoP\x01ZAgoogle.golang.org/genproto/googleapis/api/annotations;annotations\xa2\x02\x04GAPIJ\xa9\x06\n\x06\x12\x04\x0e\x00\x1e\x01\n\xbc\x04\n\x01\x0c\x12\x03\x0e\x00\x122\xb1\x04 Copyright 2015 Google LLC\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n\n\x08\n\x01\x02\x12\x03\x10\x00\x13\n\t\n\x02\x03\x00\x12\x03\x12\x00\x1f\n\t\n\x02\x03\x01\x12\x03\x13\x00*\n\x08\n\x01\x08\x12\x03\x15\x00X\n\t\n\x02\x08\x0b\x12\x03\x15\x00X\n\x08\n\x01\x08\x12\x03\x16\x00\"\n\t\n\x02\x08\n\x12\x03\x16\x00\"\n\x08\n\x01\x08\x12\x03\x17\x001\n\t\n\x02\x08\x08\x12\x03\x17\x001\n\x08\n\x01\x08\x12\x03\x18\x00\'\n\t\n\x02\x08\x01\x12\x03\x18\x00\'\n\x08\n\x01\x08\x12\x03\x19\x00\"\n\t\n\x02\x08$\x12\x03\x19\x00\"\n\t\n\x01\x07\x12\x04\x1b\x00\x1e\x01\n\x1c\n\x02\x07\x00\x12\x03\x1d\x02\x1b\x1a\x11 See `HttpRule`.\n\n\n\n\x03\x07\x00\x02\x12\x03\x1b\x07$\n\n\n\x03\x07\x00\x06\x12\x03\x1d\x02\n\n\n\n\x03\x07\x00\x01\x12\x03\x1d\x0b\x0f\n\n\n\x03\x07\x00\x03\x12\x03\x1d\x12\x1ab\x06proto3\n\xf4/\n\x0eapi/user.proto\x12\x03api\x1a\x1cgoogle/api/annotations.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1bgoogle/protobuf/empty.proto\"x\n\x04User\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x19\n\x08is_admin\x18\x04 \x01(\x08R\x07isAdmin\x12\x1b\n\tis_active\x18\x05 \x01(\x08R\x08isActive\x12\x14\n\x05email\x18\x06 \x01(\tR\x05email\x12\x12\n\x04note\x18\x07 \x01(\tR\x04note\"\xe2\x01\n\x0cUserListItem\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x129\n\ncreated_at\x18\x02 \x01(\x0b2\x1a.google.protobuf.TimestampR\tcreatedAt\x129\n\nupdated_at\x18\x03 \x01(\x0b2\x1a.google.protobuf.TimestampR\tupdatedAt\x12\x14\n\x05email\x18\x04 \x01(\tR\x05email\x12\x19\n\x08is_admin\x18\x05 \x01(\x08R\x07isAdmin\x12\x1b\n\tis_active\x18\x06 \x01(\x08R\x08isActive\"\x96\x01\n\nUserTenant\x12\x1b\n\ttenant_id\x18\x01 \x01(\tR\x08tenantId\x12\x19\n\x08is_admin\x18\x02 \x01(\x08R\x07isAdmin\x12&\n\x0fis_device_admin\x18\x03 \x01(\x08R\risDeviceAdmin\x12(\n\x10is_gateway_admin\x18\x04 \x01(\x08R\x0eisGatewayAdmin\"y\n\x11CreateUserRequest\x12\x1d\n\x04user\x18\x01 \x01(\x0b2\t.api.UserR\x04user\x12\x1a\n\x08password\x18\x02 \x01(\tR\x08password\x12)\n\x07tenants\x18\x03 \x03(\x0b2\x0f.api.UserTenantR\x07tenants\"$\n\x12CreateUserResponse\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\" \n\x0eGetUserRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\"\xa6\x01\n\x0fGetUserResponse\x12\x1d\n\x04user\x18\x01 \x01(\x0b2\t.api.UserR\x04user\x129\n\ncreated_at\x18\x02 \x01(\x0b2\x1a.google.protobuf.TimestampR\tcreatedAt\x129\n\nupdated_at\x18\x03 \x01(\x0b2\x1a.google.protobuf.TimestampR\tupdatedAt\"2\n\x11UpdateUserRequest\x12\x1d\n\x04user\x18\x01 \x01(\x0b2\t.api.UserR\x04user\"#\n\x11DeleteUserRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\"@\n\x10ListUsersRequest\x12\x14\n\x05limit\x18\x01 \x01(\rR\x05limit\x12\x16\n\x06offset\x18\x02 \x01(\rR\x06offset\"_\n\x11ListUsersResponse\x12\x1f\n\x0btotal_count\x18\x01 \x01(\rR\ntotalCount\x12)\n\x06result\x18\x02 \x03(\x0b2\x11.api.UserListItemR\x06result\"P\n\x19UpdateUserPasswordRequest\x12\x17\n\x07user_id\x18\x01 \x01(\tR\x06userId\x12\x1a\n\x08password\x18\x02 \x01(\tR\x08password2\x97\x04\n\x0bUserService\x12P\n\x06Create\x12\x16.api.CreateUserRequest\x1a\x17.api.CreateUserResponse\"\x15\x82\xd3\xe4\x93\x02\x0f\"\n/api/users:\x01*\x12I\n\x03Get\x12\x13.api.GetUserRequest\x1a\x14.api.GetUserResponse\"\x17\x82\xd3\xe4\x93\x02\x11\x12\x0f/api/users/{id}\x12Y\n\x06Update\x12\x16.api.UpdateUserRequest\x1a\x16.google.protobuf.Empty\"\x1f\x82\xd3\xe4\x93\x02\x19\x1a\x14/api/users/{user.id}:\x01*\x12Q\n\x06Delete\x12\x16.api.DeleteUserRequest\x1a\x16.google.protobuf.Empty\"\x17\x82\xd3\xe4\x93\x02\x11*\x0f/api/users/{id}\x12I\n\x04List\x12\x15.api.ListUsersRequest\x1a\x16.api.ListUsersResponse\"\x12\x82\xd3\xe4\x93\x02\x0c\x12\n/api/users\x12r\n\x0eUpdatePassword\x12\x1e.api.UpdateUserPasswordRequest\x1a\x16.google.protobuf.Empty\"(\x82\xd3\xe4\x93\x02\"\"\x1d/api/users/{user_id}/password:\x01*Ba\n\x11io.chirpstack.apiB\tUserProtoP\x01Z.github.com/chirpstack/chirpstack/api/go/v4/api\xaa\x02\x0eChirpstack.ApiJ\xc9 \n\x07\x12\x05\x00\x00\xb5\x01\x01\n\x08\n\x01\x0c\x12\x03\x00\x00\x12\n\x08\n\x01\x02\x12\x03\x02\x00\x0c\n\x08\n\x01\x08\x12\x03\x04\x00E\n\t\n\x02\x08\x0b\x12\x03\x04\x00E\n\x08\n\x01\x08\x12\x03\x05\x00*\n\t\n\x02\x08\x01\x12\x03\x05\x00*\n\x08\n\x01\x08\x12\x03\x06\x00\"\n\t\n\x02\x08\n\x12\x03\x06\x00\"\n\x08\n\x01\x08\x12\x03\x07\x00*\n\t\n\x02\x08\x08\x12\x03\x07\x00*\n\x08\n\x01\x08\x12\x03\x08\x00+\n\t\n\x02\x08%\x12\x03\x08\x00+\n\t\n\x02\x03\x00\x12\x03\n\x00&\n\t\n\x02\x03\x01\x12\x03\x0b\x00)\n\t\n\x02\x03\x02\x12\x03\x0c\x00%\nR\n\x02\x06\x00\x12\x04\x10\x00=\x01\x1aF UserService is the service providing API methods for managing users.\n\n\n\n\x03\x06\x00\x01\x12\x03\x10\x08\x13\n\"\n\x04\x06\x00\x02\x00\x12\x04\x12\x04\x17\x05\x1a\x14 Create a new user.\n\n\x0c\n\x05\x06\x00\x02\x00\x01\x12\x03\x12\x08\x0e\n\x0c\n\x05\x06\x00\x02\x00\x02\x12\x03\x12\x0f \n\x0c\n\x05\x06\x00\x02\x00\x03\x12\x03\x12+=\n\r\n\x05\x06\x00\x02\x00\x04\x12\x04\x13\x08\x16\n\n\x11\n\t\x06\x00\x02\x00\x04\xb0\xca\xbc\"\x12\x04\x13\x08\x16\n\n.\n\x04\x06\x00\x02\x01\x12\x04\x1a\x04\x1e\x05\x1a  Get the user for the given ID.\n\n\x0c\n\x05\x06\x00\x02\x01\x01\x12\x03\x1a\x08\x0b\n\x0c\n\x05\x06\x00\x02\x01\x02\x12\x03\x1a\x0c\x1a\n\x0c\n\x05\x06\x00\x02\x01\x03\x12\x03\x1a%4\n\r\n\x05\x06\x00\x02\x01\x04\x12\x04\x1b\x08\x1d\n\n\x11\n\t\x06\x00\x02\x01\x04\xb0\xca\xbc\"\x12\x04\x1b\x08\x1d\n\n&\n\x04\x06\x00\x02\x02\x12\x04!\x04&\x05\x1a\x18 Update the given user.\n\n\x0c\n\x05\x06\x00\x02\x02\x01\x12\x03!\x08\x0e\n\x0c\n\x05\x06\x00\x02\x02\x02\x12\x03!\x0f \n\x0c\n\x05\x06\x00\x02\x02\x03\x12\x03!+@\n\r\n\x05\x06\x00\x02\x02\x04\x12\x04\"\x08%\n\n\x11\n\t\x06\x00\x02\x02\x04\xb0\xca\xbc\"\x12\x04\"\x08%\n\n2\n\x04\x06\x00\x02\x03\x12\x04)\x04-\x05\x1a$ Delete the user with the given ID.\n\n\x0c\n\x05\x06\x00\x02\x03\x01\x12\x03)\x08\x0e\n\x0c\n\x05\x06\x00\x02\x03\x02\x12\x03)\x0f \n\x0c\n\x05\x06\x00\x02\x03\x03\x12\x03)+@\n\r\n\x05\x06\x00\x02\x03\x04\x12\x04*\x08,\n\n\x11\n\t\x06\x00\x02\x03\x04\xb0\xca\xbc\"\x12\x04*\x08,\n\n&\n\x04\x06\x00\x02\x04\x12\x040\x044\x05\x1a\x18 Get the list of users.\n\n\x0c\n\x05\x06\x00\x02\x04\x01\x12\x030\x08\x0c\n\x0c\n\x05\x06\x00\x02\x04\x02\x12\x030\r\x1d\n\x0c\n\x05\x06\x00\x02\x04\x03\x12\x030(9\n\r\n\x05\x06\x00\x02\x04\x04\x12\x041\x083\n\n\x11\n\t\x06\x00\x02\x04\x04\xb0\xca\xbc\"\x12\x041\x083\n\n7\n\x04\x06\x00\x02\x05\x12\x047\x04<\x05\x1a) Update the password for the given user.\n\n\x0c\n\x05\x06\x00\x02\x05\x01\x12\x037\x08\x16\n\x0c\n\x05\x06\x00\x02\x05\x02\x12\x037\x170\n\x0c\n\x05\x06\x00\x02\x05\x03\x12\x037;P\n\r\n\x05\x06\x00\x02\x05\x04\x12\x048\x08;\n\n\x11\n\t\x06\x00\x02\x05\x04\xb0\xca\xbc\"\x12\x048\x08;\n\n\n\n\x02\x04\x00\x12\x04?\x00O\x01\n\n\n\x03\x04\x00\x01\x12\x03?\x08\x0c\nD\n\x04\x04\x00\x02\x00\x12\x03B\x08\x16\x1a7 User ID (UUID).\n Will be set automatically on create.\n\n\x0c\n\x05\x04\x00\x02\x00\x05\x12\x03B\x08\x0e\n\x0c\n\x05\x04\x00\x02\x00\x01\x12\x03B\x0f\x11\n\x0c\n\x05\x04\x00\x02\x00\x03\x12\x03B\x14\x15\nC\n\x04\x04\x00\x02\x01\x12\x03E\x08\x1a\x1a6 Set to true to make the user a global administrator.\n\n\x0c\n\x05\x04\x00\x02\x01\x05\x12\x03E\x08\x0c\n\x0c\n\x05\x04\x00\x02\x01\x01\x12\x03E\r\x15\n\x0c\n\x05\x04\x00\x02\x01\x03\x12\x03E\x18\x19\n0\n\x04\x04\x00\x02\x02\x12\x03H\x08\x1b\x1a# Set to false to disable the user.\n\n\x0c\n\x05\x04\x00\x02\x02\x05\x12\x03H\x08\x0c\n\x0c\n\x05\x04\x00\x02\x02\x01\x12\x03H\r\x16\n\x0c\n\x05\x04\x00\x02\x02\x03\x12\x03H\x19\x1a\n\"\n\x04\x04\x00\x02\x03\x12\x03K\x08\x19\x1a\x15 E-mail of the user.\n\n\x0c\n\x05\x04\x00\x02\x03\x05\x12\x03K\x08\x0e\n\x0c\n\x05\x04\x00\x02\x03\x01\x12\x03K\x0f\x14\n\x0c\n\x05\x04\x00\x02\x03\x03\x12\x03K\x17\x18\n4\n\x04\x04\x00\x02\x04\x12\x03N\x08\x18\x1a\' Optional note to store with the user.\n\n\x0c\n\x05\x04\x00\x02\x04\x05\x12\x03N\x08\x0e\n\x0c\n\x05\x04\x00\x02\x04\x01\x12\x03N\x0f\x13\n\x0c\n\x05\x04\x00\x02\x04\x03\x12\x03N\x16\x17\n\n\n\x02\x04\x01\x12\x04Q\x00c\x01\n\n\n\x03\x04\x01\x01\x12\x03Q\x08\x14\n\x1e\n\x04\x04\x01\x02\x00\x12\x03S\x04\x12\x1a\x11 User ID (UUID).\n\n\x0c\n\x05\x04\x01\x02\x00\x05\x12\x03S\x04\n\n\x0c\n\x05\x04\x01\x02\x00\x01\x12\x03S\x0b\r\n\x0c\n\x05\x04\x01\x02\x00\x03\x12\x03S\x10\x11\n$\n\x04\x04\x01\x02\x01\x12\x03V\x081\x1a\x17 Created at timestamp.\n\n\x0c\n\x05\x04\x01\x02\x01\x06\x12\x03V\x08!\n\x0c\n\x05\x04\x01\x02\x01\x01\x12\x03V\",\n\x0c\n\x05\x04\x01\x02\x01\x03\x12\x03V/0\n%\n\x04\x04\x01\x02\x02\x12\x03Y\x081\x1a\x18 Last update timestamp.\n\n\x0c\n\x05\x04\x01\x02\x02\x06\x12\x03Y\x08!\n\x0c\n\x05\x04\x01\x02\x02\x01\x12\x03Y\",\n\x0c\n\x05\x04\x01\x02\x02\x03\x12\x03Y/0\n!\n\x04\x04\x01\x02\x03\x12\x03\\\x08\x19\x1a\x14 Email of the user.\n\n\x0c\n\x05\x04\x01\x02\x03\x05\x12\x03\\\x08\x0e\n\x0c\n\x05\x04\x01\x02\x03\x01\x12\x03\\\x0f\x14\n\x0c\n\x05\x04\x01\x02\x03\x03\x12\x03\\\x17\x18\nC\n\x04\x04\x01\x02\x04\x12\x03_\x08\x1a\x1a6 Set to true to make the user a global administrator.\n\n\x0c\n\x05\x04\x01\x02\x04\x05\x12\x03_\x08\x0c\n\x0c\n\x05\x04\x01\x02\x04\x01\x12\x03_\r\x15\n\x0c\n\x05\x04\x01\x02\x04\x03\x12\x03_\x18\x19\n0\n\x04\x04\x01\x02\x05\x12\x03b\x08\x1b\x1a# Set to false to disable the user.\n\n\x0c\n\x05\x04\x01\x02\x05\x05\x12\x03b\x08\x0c\n\x0c\n\x05\x04\x01\x02\x05\x01\x12\x03b\r\x16\n\x0c\n\x05\x04\x01\x02\x05\x03\x12\x03b\x19\x1a\n\n\n\x02\x04\x02\x12\x04e\x00s\x01\n\n\n\x03\x04\x02\x01\x12\x03e\x08\x12\n\x19\n\x04\x04\x02\x02\x00\x12\x03g\x04\x19\x1a\x0c Tenant ID.\n\n\x0c\n\x05\x04\x02\x02\x00\x05\x12\x03g\x04\n\n\x0c\n\x05\x04\x02\x02\x00\x01\x12\x03g\x0b\x14\n\x0c\n\x05\x04\x02\x02\x00\x03\x12\x03g\x17\x18\n\x87\x01\n\x04\x04\x02\x02\x01\x12\x03k\x08\x1a\x1az User is admin within the context of the tenant.\n There is no need to set the is_device_admin and is_gateway_admin flags.\n\n\x0c\n\x05\x04\x02\x02\x01\x05\x12\x03k\x08\x0c\n\x0c\n\x05\x04\x02\x02\x01\x01\x12\x03k\r\x15\n\x0c\n\x05\x04\x02\x02\x01\x03\x12\x03k\x18\x19\n{\n\x04\x04\x02\x02\x02\x12\x03o\x04\x1d\x1an User is able to modify device related resources (applications,\n device-profiles, devices, multicast-groups).\n\n\x0c\n\x05\x04\x02\x02\x02\x05\x12\x03o\x04\x08\n\x0c\n\x05\x04\x02\x02\x02\x01\x12\x03o\t\x18\n\x0c\n\x05\x04\x02\x02\x02\x03\x12\x03o\x1b\x1c\n/\n\x04\x04\x02\x02\x03\x12\x03r\x04\x1e\x1a\" User is able to modify gateways.\n\n\x0c\n\x05\x04\x02\x02\x03\x05\x12\x03r\x04\x08\n\x0c\n\x05\x04\x02\x02\x03\x01\x12\x03r\t\x19\n\x0c\n\x05\x04\x02\x02\x03\x03\x12\x03r\x1c\x1d\n\n\n\x02\x04\x03\x12\x04u\x00~\x01\n\n\n\x03\x04\x03\x01\x12\x03u\x08\x19\n%\n\x04\x04\x03\x02\x00\x12\x03w\x04\x12\x1a\x18 User object to create.\n\n\x0c\n\x05\x04\x03\x02\x00\x06\x12\x03w\x04\x08\n\x0c\n\x05\x04\x03\x02\x00\x01\x12\x03w\t\r\n\x0c\n\x05\x04\x03\x02\x00\x03\x12\x03w\x10\x11\n,\n\x04\x04\x03\x02\x01\x12\x03z\x04\x18\x1a\x1f Password to set for the user.\n\n\x0c\n\x05\x04\x03\x02\x01\x05\x12\x03z\x04\n\n\x0c\n\x05\x04\x03\x02\x01\x01\x12\x03z\x0b\x13\n\x0c\n\x05\x04\x03\x02\x01\x03\x12\x03z\x16\x17\n5\n\x04\x04\x03\x02\x02\x12\x03}\x04$\x1a( Add the user to the following tenants.\n\n\x0c\n\x05\x04\x03\x02\x02\x04\x12\x03}\x04\x0c\n\x0c\n\x05\x04\x03\x02\x02\x06\x12\x03}\r\x17\n\x0c\n\x05\x04\x03\x02\x02\x01\x12\x03}\x18\x1f\n\x0c\n\x05\x04\x03\x02\x02\x03\x12\x03}\"#\n\x0c\n\x02\x04\x04\x12\x06\x80\x01\x00\x83\x01\x01\n\x0b\n\x03\x04\x04\x01\x12\x04\x80\x01\x08\x1a\n\x18\n\x04\x04\x04\x02\x00\x12\x04\x82\x01\x04\x12\x1a\n User ID.\n\n\r\n\x05\x04\x04\x02\x00\x05\x12\x04\x82\x01\x04\n\n\r\n\x05\x04\x04\x02\x00\x01\x12\x04\x82\x01\x0b\r\n\r\n\x05\x04\x04\x02\x00\x03\x12\x04\x82\x01\x10\x11\n\x0c\n\x02\x04\x05\x12\x06\x85\x01\x00\x88\x01\x01\n\x0b\n\x03\x04\x05\x01\x12\x04\x85\x01\x08\x16\n\x18\n\x04\x04\x05\x02\x00\x12\x04\x87\x01\x04\x12\x1a\n User ID.\n\n\r\n\x05\x04\x05\x02\x00\x05\x12\x04\x87\x01\x04\n\n\r\n\x05\x04\x05\x02\x00\x01\x12\x04\x87\x01\x0b\r\n\r\n\x05\x04\x05\x02\x00\x03\x12\x04\x87\x01\x10\x11\n\x0c\n\x02\x04\x06\x12\x06\x8a\x01\x00\x93\x01\x01\n\x0b\n\x03\x04\x06\x01\x12\x04\x8a\x01\x08\x17\n\x1c\n\x04\x04\x06\x02\x00\x12\x04\x8c\x01\x04\x12\x1a\x0e User object.\n\n\r\n\x05\x04\x06\x02\x00\x06\x12\x04\x8c\x01\x04\x08\n\r\n\x05\x04\x06\x02\x00\x01\x12\x04\x8c\x01\t\r\n\r\n\x05\x04\x06\x02\x00\x03\x12\x04\x8c\x01\x10\x11\n%\n\x04\x04\x06\x02\x01\x12\x04\x8f\x01\x081\x1a\x17 Created at timestamp.\n\n\r\n\x05\x04\x06\x02\x01\x06\x12\x04\x8f\x01\x08!\n\r\n\x05\x04\x06\x02\x01\x01\x12\x04\x8f\x01\",\n\r\n\x05\x04\x06\x02\x01\x03\x12\x04\x8f\x01/0\n&\n\x04\x04\x06\x02\x02\x12\x04\x92\x01\x081\x1a\x18 Last update timestamp.\n\n\r\n\x05\x04\x06\x02\x02\x06\x12\x04\x92\x01\x08!\n\r\n\x05\x04\x06\x02\x02\x01\x12\x04\x92\x01\",\n\r\n\x05\x04\x06\x02\x02\x03\x12\x04\x92\x01/0\n\x0c\n\x02\x04\x07\x12\x06\x95\x01\x00\x98\x01\x01\n\x0b\n\x03\x04\x07\x01\x12\x04\x95\x01\x08\x19\n\x1c\n\x04\x04\x07\x02\x00\x12\x04\x97\x01\x04\x12\x1a\x0e User object.\n\n\r\n\x05\x04\x07\x02\x00\x06\x12\x04\x97\x01\x04\x08\n\r\n\x05\x04\x07\x02\x00\x01\x12\x04\x97\x01\t\r\n\r\n\x05\x04\x07\x02\x00\x03\x12\x04\x97\x01\x10\x11\n\x0c\n\x02\x04\x08\x12\x06\x9a\x01\x00\x9d\x01\x01\n\x0b\n\x03\x04\x08\x01\x12\x04\x9a\x01\x08\x19\n\x18\n\x04\x04\x08\x02\x00\x12\x04\x9c\x01\x04\x12\x1a\n User ID.\n\n\r\n\x05\x04\x08\x02\x00\x05\x12\x04\x9c\x01\x04\n\n\r\n\x05\x04\x08\x02\x00\x01\x12\x04\x9c\x01\x0b\r\n\r\n\x05\x04\x08\x02\x00\x03\x12\x04\x9c\x01\x10\x11\n\x0c\n\x02\x04\t\x12\x06\x9f\x01\x00\xa5\x01\x01\n\x0b\n\x03\x04\t\x01\x12\x04\x9f\x01\x08\x18\nB\n\x04\x04\t\x02\x00\x12\x04\xa1\x01\x04\x15\x1a4 Max number of tenants to return in the result-set.\n\n\r\n\x05\x04\t\x02\x00\x05\x12\x04\xa1\x01\x04\n\n\r\n\x05\x04\t\x02\x00\x01\x12\x04\xa1\x01\x0b\x10\n\r\n\x05\x04\t\x02\x00\x03\x12\x04\xa1\x01\x13\x14\n:\n\x04\x04\t\x02\x01\x12\x04\xa4\x01\x04\x16\x1a, Offset in the result-set (for pagination).\n\n\r\n\x05\x04\t\x02\x01\x05\x12\x04\xa4\x01\x04\n\n\r\n\x05\x04\t\x02\x01\x01\x12\x04\xa4\x01\x0b\x11\n\r\n\x05\x04\t\x02\x01\x03\x12\x04\xa4\x01\x14\x15\n\x0c\n\x02\x04\n\x12\x06\xa7\x01\x00\xad\x01\x01\n\x0b\n\x03\x04\n\x01\x12\x04\xa7\x01\x08\x19\n&\n\x04\x04\n\x02\x00\x12\x04\xa9\x01\x04\x1b\x1a\x18 Total number of users.\n\n\r\n\x05\x04\n\x02\x00\x05\x12\x04\xa9\x01\x04\n\n\r\n\x05\x04\n\x02\x00\x01\x12\x04\xa9\x01\x0b\x16\n\r\n\x05\x04\n\x02\x00\x03\x12\x04\xa9\x01\x19\x1a\n\x1b\n\x04\x04\n\x02\x01\x12\x04\xac\x01\x04%\x1a\r Result-set.\n\n\r\n\x05\x04\n\x02\x01\x04\x12\x04\xac\x01\x04\x0c\n\r\n\x05\x04\n\x02\x01\x06\x12\x04\xac\x01\r\x19\n\r\n\x05\x04\n\x02\x01\x01\x12\x04\xac\x01\x1a \n\r\n\x05\x04\n\x02\x01\x03\x12\x04\xac\x01#$\n\x0c\n\x02\x04\x0b\x12\x06\xaf\x01\x00\xb5\x01\x01\n\x0b\n\x03\x04\x0b\x01\x12\x04\xaf\x01\x08!\n\x18\n\x04\x04\x0b\x02\x00\x12\x04\xb1\x01\x04\x17\x1a\n User ID.\n\n\r\n\x05\x04\x0b\x02\x00\x05\x12\x04\xb1\x01\x04\n\n\r\n\x05\x04\x0b\x02\x00\x01\x12\x04\xb1\x01\x0b\x12\n\r\n\x05\x04\x0b\x02\x00\x03\x12\x04\xb1\x01\x15\x16\n \n\x04\x04\x0b\x02\x01\x12\x04\xb4\x01\x04\x18\x1a\x12 Password to set.\n\n\r\n\x05\x04\x0b\x02\x01\x05\x12\x04\xb4\x01\x04\n\n\r\n\x05\x04\x0b\x02\x01\x01\x12\x04\xb4\x01\x0b\x13\n\r\n\x05\x04\x0b\x02\x01\x03\x12\x04\xb4\x01\x16\x17b\x06proto3\n\x9cr\n\x12api/internal.proto\x12\x03api\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a\x13common/common.proto\x1a\x0eapi/user.proto\"d\n\x06ApiKey\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x12\x19\n\x08is_admin\x18\x03 \x01(\x08R\x07isAdmin\x12\x1b\n\ttenant_id\x18\x04 \x01(\tR\x08tenantId\";\n\x13CreateApiKeyRequest\x12$\n\x07api_key\x18\x01 \x01(\x0b2\x0b.api.ApiKeyR\x06apiKey\"<\n\x14CreateApiKeyResponse\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x14\n\x05token\x18\x02 \x01(\tR\x05token\"%\n\x13DeleteApiKeyRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\"z\n\x12ListApiKeysRequest\x12\x14\n\x05limit\x18\x01 \x01(\rR\x05limit\x12\x16\n\x06offset\x18\x02 \x01(\rR\x06offset\x12\x19\n\x08is_admin\x18\x03 \x01(\x08R\x07isAdmin\x12\x1b\n\ttenant_id\x18\x04 \x01(\tR\x08tenantId\"[\n\x13ListApiKeysResponse\x12\x1f\n\x0btotal_count\x18\x01 \x01(\rR\ntotalCount\x12#\n\x06result\x18\x02 \x03(\x0b2\x0b.api.ApiKeyR\x06result\"\x90\x02\n\x0eUserTenantLink\x129\n\ncreated_at\x18\x01 \x01(\x0b2\x1a.google.protobuf.TimestampR\tcreatedAt\x129\n\nupdated_at\x18\x02 \x01(\x0b2\x1a.google.protobuf.TimestampR\tupdatedAt\x12\x1b\n\ttenant_id\x18\x03 \x01(\tR\x08tenantId\x12\x19\n\x08is_admin\x18\x04 \x01(\x08R\x07isAdmin\x12&\n\x0fis_device_admin\x18\x05 \x01(\x08R\risDeviceAdmin\x12(\n\x10is_gateway_admin\x18\x06 \x01(\x08R\x0eisGatewayAdmin\"@\n\x0cLoginRequest\x12\x14\n\x05email\x18\x01 \x01(\tR\x05email\x12\x1a\n\x08password\x18\x02 \x01(\tR\x08password\"!\n\rLoginResponse\x12\x10\n\x03jwt\x18\x01 \x01(\tR\x03jwt\"_\n\x0fProfileResponse\x12\x1d\n\x04user\x18\x01 \x01(\x0b2\t.api.UserR\x04user\x12-\n\x07tenants\x18\x03 \x03(\x0b2\x13.api.UserTenantLinkR\x07tenants\"[\n\x13GlobalSearchRequest\x12\x16\n\x06search\x18\x01 \x01(\tR\x06search\x12\x14\n\x05limit\x18\x02 \x01(\x03R\x05limit\x12\x16\n\x06offset\x18\x03 \x01(\x03R\x06offset\"G\n\x14GlobalSearchResponse\x12/\n\x06result\x18\x01 \x03(\x0b2\x17.api.GlobalSearchResultR\x06result\"\xd7\x02\n\x12GlobalSearchResult\x12\x12\n\x04kind\x18\x01 \x01(\tR\x04kind\x12\x14\n\x05score\x18\x02 \x01(\x02R\x05score\x12\x1b\n\ttenant_id\x18\x03 \x01(\tR\x08tenantId\x12\x1f\n\x0btenant_name\x18\x04 \x01(\tR\ntenantName\x12%\n\x0eapplication_id\x18\x05 \x01(\tR\rapplicationId\x12)\n\x10application_name\x18\x06 \x01(\tR\x0fapplicationName\x12$\n\x0edevice_dev_eui\x18\x07 \x01(\tR\x0cdeviceDevEui\x12\x1f\n\x0bdevice_name\x18\x08 \x01(\tR\ndeviceName\x12\x1d\n\ngateway_id\x18\t \x01(\tR\tgatewayId\x12!\n\x0cgateway_name\x18\n \x01(\tR\x0bgatewayName\"M\n\x10SettingsResponse\x129\n\x0eopenid_connect\x18\x01 \x01(\x0b2\x12.api.OpenIdConnectR\ropenidConnect\"\x86\x01\n\rOpenIdConnect\x12\x18\n\x07enabled\x18\x01 \x01(\x08R\x07enabled\x12\x1b\n\tlogin_url\x18\x02 \x01(\tR\x08loginURL\x12\x1f\n\x0blogin_label\x18\x03 \x01(\tR\nloginLabel\x12\x1d\n\nlogout_url\x18\x04 \x01(\tR\tlogoutURL\"E\n\x19OpenIdConnectLoginRequest\x12\x12\n\x04code\x18\x01 \x01(\tR\x04code\x12\x14\n\x05state\x18\x02 \x01(\tR\x05state\"2\n\x1aOpenIdConnectLoginResponse\x12\x14\n\x05token\x18\x01 \x01(\tR\x05token\"7\n\x18GetDevicesSummaryRequest\x12\x1b\n\ttenant_id\x18\x01 \x01(\tR\x08tenantId\"\x93\x02\n\x19GetDevicesSummaryResponse\x12!\n\x0cactive_count\x18\x01 \x01(\rR\x0bactiveCount\x12%\n\x0einactive_count\x18\x02 \x01(\rR\rinactiveCount\x12F\n\x08dr_count\x18\x03 \x03(\x0b2+.api.GetDevicesSummaryResponse.DrCountEntryR\x07drCount\x12(\n\x10never_seen_count\x18\x04 \x01(\rR\x0eneverSeenCount\x1a:\n\x0cDrCountEntry\x12\x10\n\x03key\x18\x01 \x01(\rR\x03key\x12\x14\n\x05value\x18\x02 \x01(\rR\x05value:\x028\x01\"8\n\x19GetGatewaysSummaryRequest\x12\x1b\n\ttenant_id\x18\x01 \x01(\tR\x08tenantId\"\x8e\x01\n\x1aGetGatewaysSummaryResponse\x12!\n\x0conline_count\x18\x01 \x01(\rR\x0bonlineCount\x12#\n\roffline_count\x18\x02 \x01(\rR\x0cofflineCount\x12(\n\x10never_seen_count\x18\x03 \x01(\rR\x0eneverSeenCount\"\xfc\x01\n\x07LogItem\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12.\n\x04time\x18\x02 \x01(\x0b2\x1a.google.protobuf.TimestampR\x04time\x12 \n\x0bdescription\x18\x03 \x01(\tR\x0bdescription\x12\x12\n\x04body\x18\x04 \x01(\tR\x04body\x12<\n\nproperties\x18\x05 \x03(\x0b2\x1c.api.LogItem.PropertiesEntryR\nproperties\x1a=\n\x0fPropertiesEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x028\x01\";\n\x1aStreamGatewayFramesRequest\x12\x1d\n\ngateway_id\x18\x01 \x01(\tR\tgatewayId\"4\n\x19StreamDeviceFramesRequest\x12\x17\n\x07dev_eui\x18\x01 \x01(\tR\x06devEui\"4\n\x19StreamDeviceEventsRequest\x12\x17\n\x07dev_eui\x18\x01 \x01(\tR\x06devEui\"D\n\x13ListRegionsResponse\x12-\n\x07regions\x18\x01 \x03(\x0b2\x13.api.RegionListItemR\x07regions\"j\n\x0eRegionListItem\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12&\n\x06region\x18\x02 \x01(\x0e2\x0e.common.RegionR\x06region\x12 \n\x0bdescription\x18\x03 \x01(\tR\x0bdescription\"\"\n\x10GetRegionRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\"\xb2\x03\n\x11GetRegionResponse\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12&\n\x06region\x18\x02 \x01(\x0e2\x0e.common.RegionR\x06region\x12\x1b\n\tuser_info\x18\x03 \x01(\tR\x08userInfo\x12;\n\x0fuplink_channels\x18\x04 \x03(\x0b2\x12.api.RegionChannelR\x0euplinkChannels\x12\x1b\n\trx1_delay\x18\x05 \x01(\rR\x08rx1Delay\x12\"\n\rrx1_dr_offset\x18\x06 \x01(\rR\x0brx1DrOffset\x12\x15\n\x06rx2_dr\x18\x07 \x01(\rR\x05rx2Dr\x12#\n\rrx2_frequency\x18\x08 \x01(\rR\x0crx2Frequency\x12.\n\x14class_b_ping_slot_dr\x18\t \x01(\rR\x10classBPingSlotDr\x12<\n\x1bclass_b_ping_slot_frequency\x18\n \x01(\rR\x17classBPingSlotFrequency\x12 \n\x0bdescription\x18\x0b \x01(\tR\x0bdescription\"[\n\rRegionChannel\x12\x1c\n\tfrequency\x18\x01 \x01(\rR\tfrequency\x12\x15\n\x06dr_min\x18\x02 \x01(\rR\x05drMin\x12\x15\n\x06dr_max\x18\x03 \x01(\rR\x05drMax2\xb4\x08\n\x0fInternalService\x120\n\x05Login\x12\x11.api.LoginRequest\x1a\x12.api.LoginResponse\"\x00\x129\n\x07Profile\x12\x16.google.protobuf.Empty\x1a\x14.api.ProfileResponse\"\x00\x12E\n\x0cGlobalSearch\x12\x18.api.GlobalSearchRequest\x1a\x19.api.GlobalSearchResponse\"\x00\x12E\n\x0cCreateApiKey\x12\x18.api.CreateApiKeyRequest\x1a\x19.api.CreateApiKeyResponse\"\x00\x12B\n\x0cDeleteApiKey\x12\x18.api.DeleteApiKeyRequest\x1a\x16.google.protobuf.Empty\"\x00\x12B\n\x0bListApiKeys\x12\x17.api.ListApiKeysRequest\x1a\x18.api.ListApiKeysResponse\"\x00\x12;\n\x08Settings\x12\x16.google.protobuf.Empty\x1a\x15.api.SettingsResponse\"\x00\x12W\n\x12OpenIdConnectLogin\x12\x1e.api.OpenIdConnectLoginRequest\x1a\x1f.api.OpenIdConnectLoginResponse\"\x00\x12T\n\x11GetDevicesSummary\x12\x1d.api.GetDevicesSummaryRequest\x1a\x1e.api.GetDevicesSummaryResponse\"\x00\x12W\n\x12GetGatewaysSummary\x12\x1e.api.GetGatewaysSummaryRequest\x1a\x1f.api.GetGatewaysSummaryResponse\"\x00\x12H\n\x13StreamGatewayFrames\x12\x1f.api.StreamGatewayFramesRequest\x1a\x0c.api.LogItem\"\x000\x01\x12F\n\x12StreamDeviceFrames\x12\x1e.api.StreamDeviceFramesRequest\x1a\x0c.api.LogItem\"\x000\x01\x12F\n\x12StreamDeviceEvents\x12\x1e.api.StreamDeviceEventsRequest\x1a\x0c.api.LogItem\"\x000\x01\x12A\n\x0bListRegions\x12\x16.google.protobuf.Empty\x1a\x18.api.ListRegionsResponse\"\x00\x12<\n\tGetRegion\x12\x15.api.GetRegionRequest\x1a\x16.api.GetRegionResponse\"\x00Be\n\x11io.chirpstack.apiB\rInternalProtoP\x01Z.github.com/chirpstack/chirpstack/api/go/v4/api\xaa\x02\x0eChirpstack.ApiJ\xc0L\n\x07\x12\x05\x00\x00\xf6\x02\x01\n\x08\n\x01\x0c\x12\x03\x00\x00\x12\n\x08\n\x01\x02\x12\x03\x02\x00\x0c\n\x08\n\x01\x08\x12\x03\x04\x00E\n\t\n\x02\x08\x0b\x12\x03\x04\x00E\n\x08\n\x01\x08\x12\x03\x05\x00*\n\t\n\x02\x08\x01\x12\x03\x05\x00*\n\x08\n\x01\x08\x12\x03\x06\x00\"\n\t\n\x02\x08\n\x12\x03\x06\x00\"\n\x08\n\x01\x08\x12\x03\x07\x00.\n\t\n\x02\x08\x08\x12\x03\x07\x00.\n\x08\n\x01\x08\x12\x03\x08\x00+\n\t\n\x02\x08%\x12\x03\x08\x00+\n\t\n\x02\x03\x00\x12\x03\n\x00)\n\t\n\x02\x03\x01\x12\x03\x0b\x00%\n\t\n\x02\x03\x02\x12\x03\x0c\x00\x1d\n\t\n\x02\x03\x03\x12\x03\r\x00\x18\nX\n\x02\x06\x00\x12\x04\x10\x00=\x01\x1aL InternalService is the service providing API endpoints for internal usage.\n\n\n\n\x03\x06\x00\x01\x12\x03\x10\x08\x17\n\x1c\n\x04\x06\x00\x02\x00\x12\x03\x12\x08:\x1a\x0f Log in a user\n\n\x0c\n\x05\x06\x00\x02\x00\x01\x12\x03\x12\x0c\x11\n\x0c\n\x05\x06\x00\x02\x00\x02\x12\x03\x12\x12\x1e\n\x0c\n\x05\x06\x00\x02\x00\x03\x12\x03\x12)6\n-\n\x04\x06\x00\x02\x01\x12\x03\x15\x08G\x1a  Get the current user\'s profile\n\n\x0c\n\x05\x06\x00\x02\x01\x01\x12\x03\x15\x0c\x13\n\x0c\n\x05\x06\x00\x02\x01\x02\x12\x03\x15\x14)\n\x0c\n\x05\x06\x00\x02\x01\x03\x12\x03\x154C\n\'\n\x04\x06\x00\x02\x02\x12\x03\x18\x08O\x1a\x1a Perform a global search.\n\n\x0c\n\x05\x06\x00\x02\x02\x01\x12\x03\x18\x0c\x18\n\x0c\n\x05\x06\x00\x02\x02\x02\x12\x03\x18\x19,\n\x0c\n\x05\x06\x00\x02\x02\x03\x12\x03\x187K\n6\n\x04\x06\x00\x02\x03\x12\x03\x1b\x04K\x1a) CreateApiKey creates the given API key.\n\n\x0c\n\x05\x06\x00\x02\x03\x01\x12\x03\x1b\x08\x14\n\x0c\n\x05\x06\x00\x02\x03\x02\x12\x03\x1b\x15(\n\x0c\n\x05\x06\x00\x02\x03\x03\x12\x03\x1b3G\n0\n\x04\x06\x00\x02\x04\x12\x03\x1e\x04L\x1a# DeleteApiKey deletes the API key.\n\n\x0c\n\x05\x06\x00\x02\x04\x01\x12\x03\x1e\x08\x14\n\x0c\n\x05\x06\x00\x02\x04\x02\x12\x03\x1e\x15(\n\x0c\n\x05\x06\x00\x02\x04\x03\x12\x03\x1e3H\n8\n\x04\x06\x00\x02\x05\x12\x03!\x04H\x1a+ ListApiKeys lists the available API keys.\n\n\x0c\n\x05\x06\x00\x02\x05\x01\x12\x03!\x08\x13\n\x0c\n\x05\x06\x00\x02\x05\x02\x12\x03!\x14&\n\x0c\n\x05\x06\x00\x02\x05\x03\x12\x03!1D\n\'\n\x04\x06\x00\x02\x06\x12\x03$\x04E\x1a\x1a Get the global settings.\n\n\x0c\n\x05\x06\x00\x02\x06\x01\x12\x03$\x08\x10\n\x0c\n\x05\x06\x00\x02\x06\x02\x12\x03$\x11&\n\x0c\n\x05\x06\x00\x02\x06\x03\x12\x03$1A\n$\n\x04\x06\x00\x02\x07\x12\x03\'\x04]\x1a\x17 OpenId Connect login.\n\n\x0c\n\x05\x06\x00\x02\x07\x01\x12\x03\'\x08\x1a\n\x0c\n\x05\x06\x00\x02\x07\x02\x12\x03\'\x1b4\n\x0c\n\x05\x06\x00\x02\x07\x03\x12\x03\'?Y\nN\n\x04\x06\x00\x02\x08\x12\x03*\x04Z\x1aA GetDevicesSummary returns an aggregated summary of the devices.\n\n\x0c\n\x05\x06\x00\x02\x08\x01\x12\x03*\x08\x19\n\x0c\n\x05\x06\x00\x02\x08\x02\x12\x03*\x1a2\n\x0c\n\x05\x06\x00\x02\x08\x03\x12\x03*=V\nP\n\x04\x06\x00\x02\t\x12\x03-\x04]\x1aC GetGatewaysSummary returns an aggregated summary of the gateways.\n\n\x0c\n\x05\x06\x00\x02\t\x01\x12\x03-\x08\x1a\n\x0c\n\x05\x06\x00\x02\t\x02\x12\x03-\x1b4\n\x0c\n\x05\x06\x00\x02\t\x03\x12\x03-?Y\n5\n\x04\x06\x00\x02\n\x12\x030\x04S\x1a( Stream frame for the given Gateway ID.\n\n\x0c\n\x05\x06\x00\x02\n\x01\x12\x030\x08\x1b\n\x0c\n\x05\x06\x00\x02\n\x02\x12\x030\x1c6\n\x0c\n\x05\x06\x00\x02\n\x06\x12\x030AG\n\x0c\n\x05\x06\x00\x02\n\x03\x12\x030HO\n6\n\x04\x06\x00\x02\x0b\x12\x033\x04Q\x1a) Stream frames for the given Device EUI.\n\n\x0c\n\x05\x06\x00\x02\x0b\x01\x12\x033\x08\x1a\n\x0c\n\x05\x06\x00\x02\x0b\x02\x12\x033\x1b4\n\x0c\n\x05\x06\x00\x02\x0b\x06\x12\x033?E\n\x0c\n\x05\x06\x00\x02\x0b\x03\x12\x033FM\n6\n\x04\x06\x00\x02\x0c\x12\x036\x04Q\x1a) Stream events for the given Device EUI.\n\n\x0c\n\x05\x06\x00\x02\x0c\x01\x12\x036\x08\x1a\n\x0c\n\x05\x06\x00\x02\x0c\x02\x12\x036\x1b4\n\x0c\n\x05\x06\x00\x02\x0c\x06\x12\x036?E\n\x0c\n\x05\x06\x00\x02\x0c\x03\x12\x036FM\nD\n\x04\x06\x00\x02\r\x12\x039\x04K\x1a7 ListRegions lists the available (configured) regions.\n\n\x0c\n\x05\x06\x00\x02\r\x01\x12\x039\x08\x13\n\x0c\n\x05\x06\x00\x02\r\x02\x12\x039\x14)\n\x0c\n\x05\x06\x00\x02\r\x03\x12\x0394G\nI\n\x04\x06\x00\x02\x0e\x12\x03<\x04B\x1a< GetRegion returns the region details for the given region.\n\n\x0c\n\x05\x06\x00\x02\x0e\x01\x12\x03<\x08\x11\n\x0c\n\x05\x06\x00\x02\x0e\x02\x12\x03<\x12\"\n\x0c\n\x05\x06\x00\x02\x0e\x03\x12\x03<->\n\n\n\x02\x04\x00\x12\x04?\x00M\x01\n\n\n\x03\x04\x00\x01\x12\x03?\x08\x0e\nQ\n\x04\x04\x00\x02\x00\x12\x03B\x04\x12\x1aD API key ID.\n This value will be automatically generated on create.\n\n\x0c\n\x05\x04\x00\x02\x00\x05\x12\x03B\x04\n\n\x0c\n\x05\x04\x00\x02\x00\x01\x12\x03B\x0b\r\n\x0c\n\x05\x04\x00\x02\x00\x03\x12\x03B\x10\x11\n\x14\n\x04\x04\x00\x02\x01\x12\x03E\x04\x14\x1a\x07 Name.\n\n\x0c\n\x05\x04\x00\x02\x01\x05\x12\x03E\x04\n\n\x0c\n\x05\x04\x00\x02\x01\x01\x12\x03E\x0b\x0f\n\x0c\n\x05\x04\x00\x02\x01\x03\x12\x03E\x12\x13\n#\n\x04\x04\x00\x02\x02\x12\x03H\x04\x16\x1a\x16 Is global admin key.\n\n\x0c\n\x05\x04\x00\x02\x02\x05\x12\x03H\x04\x08\n\x0c\n\x05\x04\x00\x02\x02\x01\x12\x03H\t\x11\n\x0c\n\x05\x04\x00\x02\x02\x03\x12\x03H\x14\x15\ne\n\x04\x04\x00\x02\x03\x12\x03L\x04\x19\x1aX Tenant ID.\n In case the API key is intended to manage resources under a single tenant.\n\n\x0c\n\x05\x04\x00\x02\x03\x05\x12\x03L\x04\n\n\x0c\n\x05\x04\x00\x02\x03\x01\x12\x03L\x0b\x14\n\x0c\n\x05\x04\x00\x02\x03\x03\x12\x03L\x17\x18\n\n\n\x02\x04\x01\x12\x04O\x00R\x01\n\n\n\x03\x04\x01\x01\x12\x03O\x08\x1b\n%\n\x04\x04\x01\x02\x00\x12\x03Q\x04\x17\x1a\x18 The API key to create.\n\n\x0c\n\x05\x04\x01\x02\x00\x06\x12\x03Q\x04\n\n\x0c\n\x05\x04\x01\x02\x00\x01\x12\x03Q\x0b\x12\n\x0c\n\x05\x04\x01\x02\x00\x03\x12\x03Q\x15\x16\n\n\n\x02\x04\x02\x12\x04T\x00Z\x01\n\n\n\x03\x04\x02\x01\x12\x03T\x08\x1c\n\x1a\n\x04\x04\x02\x02\x00\x12\x03V\x04\x12\x1a\r API key ID.\n\n\x0c\n\x05\x04\x02\x02\x00\x05\x12\x03V\x04\n\n\x0c\n\x05\x04\x02\x02\x00\x01\x12\x03V\x0b\r\n\x0c\n\x05\x04\x02\x02\x00\x03\x12\x03V\x10\x11\n9\n\x04\x04\x02\x02\x01\x12\x03Y\x04\x15\x1a, API token for authentication API requests.\n\n\x0c\n\x05\x04\x02\x02\x01\x05\x12\x03Y\x04\n\n\x0c\n\x05\x04\x02\x02\x01\x01\x12\x03Y\x0b\x10\n\x0c\n\x05\x04\x02\x02\x01\x03\x12\x03Y\x13\x14\n\n\n\x02\x04\x03\x12\x04\\\x00_\x01\n\n\n\x03\x04\x03\x01\x12\x03\\\x08\x1b\n\x1a\n\x04\x04\x03\x02\x00\x12\x03^\x04\x12\x1a\r API key ID.\n\n\x0c\n\x05\x04\x03\x02\x00\x05\x12\x03^\x04\n\n\x0c\n\x05\x04\x03\x02\x00\x01\x12\x03^\x0b\r\n\x0c\n\x05\x04\x03\x02\x00\x03\x12\x03^\x10\x11\n\n\n\x02\x04\x04\x12\x04a\x00m\x01\n\n\n\x03\x04\x04\x01\x12\x03a\x08\x1a\n-\n\x04\x04\x04\x02\x00\x12\x03c\x04\x15\x1a  Max number of items to return.\n\n\x0c\n\x05\x04\x04\x02\x00\x05\x12\x03c\x04\n\n\x0c\n\x05\x04\x04\x02\x00\x01\x12\x03c\x0b\x10\n\x0c\n\x05\x04\x04\x02\x00\x03\x12\x03c\x13\x14\n9\n\x04\x04\x04\x02\x01\x12\x03f\x04\x16\x1a, Offset in the result-set (for pagination).\n\n\x0c\n\x05\x04\x04\x02\x01\x05\x12\x03f\x04\n\n\x0c\n\x05\x04\x04\x02\x01\x01\x12\x03f\x0b\x11\n\x0c\n\x05\x04\x04\x02\x01\x03\x12\x03f\x14\x15\n&\n\x04\x04\x04\x02\x02\x12\x03i\x04\x16\x1a\x19 Return only admin keys.\n\n\x0c\n\x05\x04\x04\x02\x02\x05\x12\x03i\x04\x08\n\x0c\n\x05\x04\x04\x02\x02\x01\x12\x03i\t\x11\n\x0c\n\x05\x04\x04\x02\x02\x03\x12\x03i\x14\x15\n#\n\x04\x04\x04\x02\x03\x12\x03l\x04\x19\x1a\x16 Filter on tenant ID.\n\n\x0c\n\x05\x04\x04\x02\x03\x05\x12\x03l\x04\n\n\x0c\n\x05\x04\x04\x02\x03\x01\x12\x03l\x0b\x14\n\x0c\n\x05\x04\x04\x02\x03\x03\x12\x03l\x17\x18\n\n\n\x02\x04\x05\x12\x04o\x00t\x01\n\n\n\x03\x04\x05\x01\x12\x03o\x08\x1b\n(\n\x04\x04\x05\x02\x00\x12\x03q\x04\x1b\x1a\x1b Total number of API keys.\n\n\x0c\n\x05\x04\x05\x02\x00\x05\x12\x03q\x04\n\n\x0c\n\x05\x04\x05\x02\x00\x01\x12\x03q\x0b\x16\n\x0c\n\x05\x04\x05\x02\x00\x03\x12\x03q\x19\x1a\n\x0b\n\x04\x04\x05\x02\x01\x12\x03s\x04\x1f\n\x0c\n\x05\x04\x05\x02\x01\x04\x12\x03s\x04\x0c\n\x0c\n\x05\x04\x05\x02\x01\x06\x12\x03s\r\x13\n\x0c\n\x05\x04\x05\x02\x01\x01\x12\x03s\x14\x1a\n\x0c\n\x05\x04\x05\x02\x01\x03\x12\x03s\x1d\x1e\n@\n\x02\x04\x06\x12\x05w\x00\x8b\x01\x01\x1a3 Defines a tenant to which the user is associated.\n\n\n\n\x03\x04\x06\x01\x12\x03w\x08\x16\n$\n\x04\x04\x06\x02\x00\x12\x03y\x04-\x1a\x17 Created at timestamp.\n\n\x0c\n\x05\x04\x06\x02\x00\x06\x12\x03y\x04\x1d\n\x0c\n\x05\x04\x06\x02\x00\x01\x12\x03y\x1e(\n\x0c\n\x05\x04\x06\x02\x00\x03\x12\x03y+,\n%\n\x04\x04\x06\x02\x01\x12\x03|\x081\x1a\x18 Last update timestamp.\n\n\x0c\n\x05\x04\x06\x02\x01\x06\x12\x03|\x08!\n\x0c\n\x05\x04\x06\x02\x01\x01\x12\x03|\",\n\x0c\n\x05\x04\x06\x02\x01\x03\x12\x03|/0\n\x19\n\x04\x04\x06\x02\x02\x12\x03\x7f\x04\x19\x1a\x0c Tenant ID.\n\n\x0c\n\x05\x04\x06\x02\x02\x05\x12\x03\x7f\x04\n\n\x0c\n\x05\x04\x06\x02\x02\x01\x12\x03\x7f\x0b\x14\n\x0c\n\x05\x04\x06\x02\x02\x03\x12\x03\x7f\x17\x18\n\x89\x01\n\x04\x04\x06\x02\x03\x12\x04\x83\x01\x04\x16\x1a{ User is admin within the context of this tenant.\n There is no need to set the is_device_admin and is_gateway_admin flags.\n\n\r\n\x05\x04\x06\x02\x03\x05\x12\x04\x83\x01\x04\x08\n\r\n\x05\x04\x06\x02\x03\x01\x12\x04\x83\x01\t\x11\n\r\n\x05\x04\x06\x02\x03\x03\x12\x04\x83\x01\x14\x15\n|\n\x04\x04\x06\x02\x04\x12\x04\x87\x01\x04\x1d\x1an User is able to modify device related resources (applications,\n device-profiles, devices, multicast-groups).\n\n\r\n\x05\x04\x06\x02\x04\x05\x12\x04\x87\x01\x04\x08\n\r\n\x05\x04\x06\x02\x04\x01\x12\x04\x87\x01\t\x18\n\r\n\x05\x04\x06\x02\x04\x03\x12\x04\x87\x01\x1b\x1c\n0\n\x04\x04\x06\x02\x05\x12\x04\x8a\x01\x04\x1e\x1a\" User is able to modify gateways.\n\n\r\n\x05\x04\x06\x02\x05\x05\x12\x04\x8a\x01\x04\x08\n\r\n\x05\x04\x06\x02\x05\x01\x12\x04\x8a\x01\t\x19\n\r\n\x05\x04\x06\x02\x05\x03\x12\x04\x8a\x01\x1c\x1d\n\x0c\n\x02\x04\x07\x12\x06\x8d\x01\x00\x93\x01\x01\n\x0b\n\x03\x04\x07\x01\x12\x04\x8d\x01\x08\x14\n\"\n\x04\x04\x07\x02\x00\x12\x04\x8f\x01\x08\x19\x1a\x14 Email of the user.\n\n\r\n\x05\x04\x07\x02\x00\x05\x12\x04\x8f\x01\x08\x0e\n\r\n\x05\x04\x07\x02\x00\x01\x12\x04\x8f\x01\x0f\x14\n\r\n\x05\x04\x07\x02\x00\x03\x12\x04\x8f\x01\x17\x18\n%\n\x04\x04\x07\x02\x01\x12\x04\x92\x01\x08\x1c\x1a\x17 Password of the user.\n\n\r\n\x05\x04\x07\x02\x01\x05\x12\x04\x92\x01\x08\x0e\n\r\n\x05\x04\x07\x02\x01\x01\x12\x04\x92\x01\x0f\x17\n\r\n\x05\x04\x07\x02\x01\x03\x12\x04\x92\x01\x1a\x1b\n\x0c\n\x02\x04\x08\x12\x06\x95\x01\x00\x98\x01\x01\n\x0b\n\x03\x04\x08\x01\x12\x04\x95\x01\x08\x15\nZ\n\x04\x04\x08\x02\x00\x12\x04\x97\x01\x08\x17\x1aL The JWT tag to be used to access chirpstack-application-server interfaces.\n\n\r\n\x05\x04\x08\x02\x00\x05\x12\x04\x97\x01\x08\x0e\n\r\n\x05\x04\x08\x02\x00\x01\x12\x04\x97\x01\x0f\x12\n\r\n\x05\x04\x08\x02\x00\x03\x12\x04\x97\x01\x15\x16\n\x0c\n\x02\x04\t\x12\x06\x9a\x01\x00\xa0\x01\x01\n\x0b\n\x03\x04\t\x01\x12\x04\x9a\x01\x08\x17\n\x1c\n\x04\x04\t\x02\x00\x12\x04\x9c\x01\x04\x12\x1a\x0e User object.\n\n\r\n\x05\x04\t\x02\x00\x06\x12\x04\x9c\x01\x04\x08\n\r\n\x05\x04\t\x02\x00\x01\x12\x04\x9c\x01\t\r\n\r\n\x05\x04\t\x02\x00\x03\x12\x04\x9c\x01\x10\x11\n8\n\x04\x04\t\x02\x01\x12\x04\x9f\x01\x04(\x1a* Tenants to which the user is associated.\n\n\r\n\x05\x04\t\x02\x01\x04\x12\x04\x9f\x01\x04\x0c\n\r\n\x05\x04\t\x02\x01\x06\x12\x04\x9f\x01\r\x1b\n\r\n\x05\x04\t\x02\x01\x01\x12\x04\x9f\x01\x1c#\n\r\n\x05\x04\t\x02\x01\x03\x12\x04\x9f\x01&\'\n\x0c\n\x02\x04\n\x12\x06\xa2\x01\x00\xab\x01\x01\n\x0b\n\x03\x04\n\x01\x12\x04\xa2\x01\x08\x1b\n\x1d\n\x04\x04\n\x02\x00\x12\x04\xa4\x01\x08\x1a\x1a\x0f Search query.\n\n\r\n\x05\x04\n\x02\x00\x05\x12\x04\xa4\x01\x08\x0e\n\r\n\x05\x04\n\x02\x00\x01\x12\x04\xa4\x01\x0f\x15\n\r\n\x05\x04\n\x02\x00\x03\x12\x04\xa4\x01\x18\x19\n0\n\x04\x04\n\x02\x01\x12\x04\xa7\x01\x08\x18\x1a\" Max number of results to return.\n\n\r\n\x05\x04\n\x02\x01\x05\x12\x04\xa7\x01\x08\r\n\r\n\x05\x04\n\x02\x01\x01\x12\x04\xa7\x01\x0e\x13\n\r\n\x05\x04\n\x02\x01\x03\x12\x04\xa7\x01\x16\x17\nA\n\x04\x04\n\x02\x02\x12\x04\xaa\x01\x08\x19\x1a3 Offset offset of the result-set (for pagination).\n\n\r\n\x05\x04\n\x02\x02\x05\x12\x04\xaa\x01\x08\r\n\r\n\x05\x04\n\x02\x02\x01\x12\x04\xaa\x01\x0e\x14\n\r\n\x05\x04\n\x02\x02\x03\x12\x04\xaa\x01\x17\x18\n\x0c\n\x02\x04\x0b\x12\x06\xad\x01\x00\xaf\x01\x01\n\x0b\n\x03\x04\x0b\x01\x12\x04\xad\x01\x08\x1c\n\x0c\n\x04\x04\x0b\x02\x00\x12\x04\xae\x01\x08/\n\r\n\x05\x04\x0b\x02\x00\x04\x12\x04\xae\x01\x08\x10\n\r\n\x05\x04\x0b\x02\x00\x06\x12\x04\xae\x01\x11#\n\r\n\x05\x04\x0b\x02\x00\x01\x12\x04\xae\x01$*\n\r\n\x05\x04\x0b\x02\x00\x03\x12\x04\xae\x01-.\n\x0c\n\x02\x04\x0c\x12\x06\xb1\x01\x00\xcf\x01\x01\n\x0b\n\x03\x04\x0c\x01\x12\x04\xb1\x01\x08\x1a\n\x1c\n\x04\x04\x0c\x02\x00\x12\x04\xb3\x01\x08\x18\x1a\x0e Record kind.\n\n\r\n\x05\x04\x0c\x02\x00\x05\x12\x04\xb3\x01\x08\x0e\n\r\n\x05\x04\x0c\x02\x00\x01\x12\x04\xb3\x01\x0f\x13\n\r\n\x05\x04\x0c\x02\x00\x03\x12\x04\xb3\x01\x16\x17\n\x1d\n\x04\x04\x0c\x02\x01\x12\x04\xb6\x01\x08\x18\x1a\x0f Search score.\n\n\r\n\x05\x04\x0c\x02\x01\x05\x12\x04\xb6\x01\x08\r\n\r\n\x05\x04\x0c\x02\x01\x01\x12\x04\xb6\x01\x0e\x13\n\r\n\x05\x04\x0c\x02\x01\x03\x12\x04\xb6\x01\x16\x17\n \n\x04\x04\x0c\x02\x02\x12\x04\xb9\x01\x08\x1d\x1a\x12 Organization id.\n\n\r\n\x05\x04\x0c\x02\x02\x05\x12\x04\xb9\x01\x08\x0e\n\r\n\x05\x04\x0c\x02\x02\x01\x12\x04\xb9\x01\x0f\x18\n\r\n\x05\x04\x0c\x02\x02\x03\x12\x04\xb9\x01\x1b\x1c\n\"\n\x04\x04\x0c\x02\x03\x12\x04\xbc\x01\x08\x1f\x1a\x14 Organization name.\n\n\r\n\x05\x04\x0c\x02\x03\x05\x12\x04\xbc\x01\x08\x0e\n\r\n\x05\x04\x0c\x02\x03\x01\x12\x04\xbc\x01\x0f\x1a\n\r\n\x05\x04\x0c\x02\x03\x03\x12\x04\xbc\x01\x1d\x1e\n\x1f\n\x04\x04\x0c\x02\x04\x12\x04\xbf\x01\x08\"\x1a\x11 Application id.\n\n\r\n\x05\x04\x0c\x02\x04\x05\x12\x04\xbf\x01\x08\x0e\n\r\n\x05\x04\x0c\x02\x04\x01\x12\x04\xbf\x01\x0f\x1d\n\r\n\x05\x04\x0c\x02\x04\x03\x12\x04\xbf\x01 !\n!\n\x04\x04\x0c\x02\x05\x12\x04\xc2\x01\x08$\x1a\x13 Application name.\n\n\r\n\x05\x04\x0c\x02\x05\x05\x12\x04\xc2\x01\x08\x0e\n\r\n\x05\x04\x0c\x02\x05\x01\x12\x04\xc2\x01\x0f\x1f\n\r\n\x05\x04\x0c\x02\x05\x03\x12\x04\xc2\x01\"#\n,\n\x04\x04\x0c\x02\x06\x12\x04\xc5\x01\x08\"\x1a\x1e Device DevEUI (hex encoded).\n\n\r\n\x05\x04\x0c\x02\x06\x05\x12\x04\xc5\x01\x08\x0e\n\r\n\x05\x04\x0c\x02\x06\x01\x12\x04\xc5\x01\x0f\x1d\n\r\n\x05\x04\x0c\x02\x06\x03\x12\x04\xc5\x01 !\n\x1c\n\x04\x04\x0c\x02\x07\x12\x04\xc8\x01\x08\x1f\x1a\x0e Device name.\n\n\r\n\x05\x04\x0c\x02\x07\x05\x12\x04\xc8\x01\x08\x0e\n\r\n\x05\x04\x0c\x02\x07\x01\x12\x04\xc8\x01\x0f\x1a\n\r\n\x05\x04\x0c\x02\x07\x03\x12\x04\xc8\x01\x1d\x1e\n*\n\x04\x04\x0c\x02\x08\x12\x04\xcb\x01\x08\x1e\x1a\x1c Gateway MAC (hex encoded).\n\n\r\n\x05\x04\x0c\x02\x08\x05\x12\x04\xcb\x01\x08\x0e\n\r\n\x05\x04\x0c\x02\x08\x01\x12\x04\xcb\x01\x0f\x19\n\r\n\x05\x04\x0c\x02\x08\x03\x12\x04\xcb\x01\x1c\x1d\n\x1d\n\x04\x04\x0c\x02\t\x12\x04\xce\x01\x08!\x1a\x0f Gateway name.\n\n\r\n\x05\x04\x0c\x02\t\x05\x12\x04\xce\x01\x08\x0e\n\r\n\x05\x04\x0c\x02\t\x01\x12\x04\xce\x01\x0f\x1b\n\r\n\x05\x04\x0c\x02\t\x03\x12\x04\xce\x01\x1e \n\x0c\n\x02\x04\r\x12\x06\xd1\x01\x00\xd4\x01\x01\n\x0b\n\x03\x04\r\x01\x12\x04\xd1\x01\x08\x18\n(\n\x04\x04\r\x02\x00\x12\x04\xd3\x01\x04%\x1a\x1a OpenId Connect settings.\n\n\r\n\x05\x04\r\x02\x00\x06\x12\x04\xd3\x01\x04\x11\n\r\n\x05\x04\r\x02\x00\x01\x12\x04\xd3\x01\x12 \n\r\n\x05\x04\r\x02\x00\x03\x12\x04\xd3\x01#$\n\x0c\n\x02\x04\x0e\x12\x06\xd6\x01\x00\xe2\x01\x01\n\x0b\n\x03\x04\x0e\x01\x12\x04\xd6\x01\x08\x15\n5\n\x04\x04\x0e\x02\x00\x12\x04\xd8\x01\x04\x15\x1a\' Enable OpenId Connect authentication.\n\n\r\n\x05\x04\x0e\x02\x00\x05\x12\x04\xd8\x01\x04\x08\n\r\n\x05\x04\x0e\x02\x00\x01\x12\x04\xd8\x01\t\x10\n\r\n\x05\x04\x0e\x02\x00\x03\x12\x04\xd8\x01\x13\x14\n\x1a\n\x04\x04\x0e\x02\x01\x12\x04\xdb\x01\x042\x1a\x0c Login url.\n\n\r\n\x05\x04\x0e\x02\x01\x05\x12\x04\xdb\x01\x04\n\n\r\n\x05\x04\x0e\x02\x01\x01\x12\x04\xdb\x01\x0b\x14\n\r\n\x05\x04\x0e\x02\x01\x03\x12\x04\xdb\x01\x17\x18\n\r\n\x05\x04\x0e\x02\x01\x08\x12\x04\xdb\x01\x191\n\r\n\x05\x04\x0e\x02\x01\n\x12\x04\xdb\x01\x1a0\n\r\n\x05\x04\x0e\x02\x01\n\x12\x04\xdb\x01&0\n\x1c\n\x04\x04\x0e\x02\x02\x12\x04\xde\x01\x04\x1b\x1a\x0e Login label.\n\n\r\n\x05\x04\x0e\x02\x02\x05\x12\x04\xde\x01\x04\n\n\r\n\x05\x04\x0e\x02\x02\x01\x12\x04\xde\x01\x0b\x16\n\r\n\x05\x04\x0e\x02\x02\x03\x12\x04\xde\x01\x19\x1a\n\x1b\n\x04\x04\x0e\x02\x03\x12\x04\xe1\x01\x044\x1a\r Logout url.\n\n\r\n\x05\x04\x0e\x02\x03\x05\x12\x04\xe1\x01\x04\n\n\r\n\x05\x04\x0e\x02\x03\x01\x12\x04\xe1\x01\x0b\x15\n\r\n\x05\x04\x0e\x02\x03\x03\x12\x04\xe1\x01\x18\x19\n\r\n\x05\x04\x0e\x02\x03\x08\x12\x04\xe1\x01\x1a3\n\r\n\x05\x04\x0e\x02\x03\n\x12\x04\xe1\x01\x1b2\n\r\n\x05\x04\x0e\x02\x03\n\x12\x04\xe1\x01\'2\n\x0c\n\x02\x04\x0f\x12\x06\xe4\x01\x00\xea\x01\x01\n\x0b\n\x03\x04\x0f\x01\x12\x04\xe4\x01\x08!\n-\n\x04\x04\x0f\x02\x00\x12\x04\xe6\x01\x04\x14\x1a\x1f OpenId Connect callback code.\n\n\r\n\x05\x04\x0f\x02\x00\x05\x12\x04\xe6\x01\x04\n\n\r\n\x05\x04\x0f\x02\x00\x01\x12\x04\xe6\x01\x0b\x0f\n\r\n\x05\x04\x0f\x02\x00\x03\x12\x04\xe6\x01\x12\x13\n.\n\x04\x04\x0f\x02\x01\x12\x04\xe9\x01\x04\x15\x1a  OpenId Connect callback state.\n\n\r\n\x05\x04\x0f\x02\x01\x05\x12\x04\xe9\x01\x04\n\n\r\n\x05\x04\x0f\x02\x01\x01\x12\x04\xe9\x01\x0b\x10\n\r\n\x05\x04\x0f\x02\x01\x03\x12\x04\xe9\x01\x13\x14\n\x0c\n\x02\x04\x10\x12\x06\xec\x01\x00\xef\x01\x01\n\x0b\n\x03\x04\x10\x01\x12\x04\xec\x01\x08\"\n0\n\x04\x04\x10\x02\x00\x12\x04\xee\x01\x04\x15\x1a\" Token to use for authentication.\n\n\r\n\x05\x04\x10\x02\x00\x05\x12\x04\xee\x01\x04\n\n\r\n\x05\x04\x10\x02\x00\x01\x12\x04\xee\x01\x0b\x10\n\r\n\x05\x04\x10\x02\x00\x03\x12\x04\xee\x01\x13\x14\n\x0c\n\x02\x04\x11\x12\x06\xf1\x01\x00\xf4\x01\x01\n\x0b\n\x03\x04\x11\x01\x12\x04\xf1\x01\x08 \n!\n\x04\x04\x11\x02\x00\x12\x04\xf3\x01\x04\x19\x1a\x13 Tenant ID (UUID).\n\n\r\n\x05\x04\x11\x02\x00\x05\x12\x04\xf3\x01\x04\n\n\r\n\x05\x04\x11\x02\x00\x01\x12\x04\xf3\x01\x0b\x14\n\r\n\x05\x04\x11\x02\x00\x03\x12\x04\xf3\x01\x17\x18\n\x0c\n\x02\x04\x12\x12\x06\xf6\x01\x00\x83\x02\x01\n\x0b\n\x03\x04\x12\x01\x12\x04\xf6\x01\x08!\n\x1d\n\x04\x04\x12\x02\x00\x12\x04\xf8\x01\x04\x1c\x1a\x0f Active count.\n\n\r\n\x05\x04\x12\x02\x00\x05\x12\x04\xf8\x01\x04\n\n\r\n\x05\x04\x12\x02\x00\x01\x12\x04\xf8\x01\x0b\x17\n\r\n\x05\x04\x12\x02\x00\x03\x12\x04\xf8\x01\x1a\x1b\n\x1f\n\x04\x04\x12\x02\x01\x12\x04\xfb\x01\x04\x1e\x1a\x11 Inactive count.\n\n\r\n\x05\x04\x12\x02\x01\x05\x12\x04\xfb\x01\x04\n\n\r\n\x05\x04\x12\x02\x01\x01\x12\x04\xfb\x01\x0b\x19\n\r\n\x05\x04\x12\x02\x01\x03\x12\x04\xfb\x01\x1c\x1d\nU\n\x04\x04\x12\x02\x02\x12\x04\xff\x01\x04%\x1aG per data-rate count.\n Devices that have never been seen are excluded.\n\n\r\n\x05\x04\x12\x02\x02\x06\x12\x04\xff\x01\x04\x17\n\r\n\x05\x04\x12\x02\x02\x01\x12\x04\xff\x01\x18 \n\r\n\x05\x04\x12\x02\x02\x03\x12\x04\xff\x01#$\n!\n\x04\x04\x12\x02\x03\x12\x04\x82\x02\x04 \x1a\x13 Never seen count.\n\n\r\n\x05\x04\x12\x02\x03\x05\x12\x04\x82\x02\x04\n\n\r\n\x05\x04\x12\x02\x03\x01\x12\x04\x82\x02\x0b\x1b\n\r\n\x05\x04\x12\x02\x03\x03\x12\x04\x82\x02\x1e\x1f\n\x0c\n\x02\x04\x13\x12\x06\x85\x02\x00\x88\x02\x01\n\x0b\n\x03\x04\x13\x01\x12\x04\x85\x02\x08!\n!\n\x04\x04\x13\x02\x00\x12\x04\x87\x02\x04\x19\x1a\x13 Tenant ID (UUID).\n\n\r\n\x05\x04\x13\x02\x00\x05\x12\x04\x87\x02\x04\n\n\r\n\x05\x04\x13\x02\x00\x01\x12\x04\x87\x02\x0b\x14\n\r\n\x05\x04\x13\x02\x00\x03\x12\x04\x87\x02\x17\x18\n\x0c\n\x02\x04\x14\x12\x06\x8a\x02\x00\x93\x02\x01\n\x0b\n\x03\x04\x14\x01\x12\x04\x8a\x02\x08\"\n\x1d\n\x04\x04\x14\x02\x00\x12\x04\x8c\x02\x04\x1c\x1a\x0f Online count.\n\n\r\n\x05\x04\x14\x02\x00\x05\x12\x04\x8c\x02\x04\n\n\r\n\x05\x04\x14\x02\x00\x01\x12\x04\x8c\x02\x0b\x17\n\r\n\x05\x04\x14\x02\x00\x03\x12\x04\x8c\x02\x1a\x1b\n\x1e\n\x04\x04\x14\x02\x01\x12\x04\x8f\x02\x04\x1d\x1a\x10 Offline count.\n\n\r\n\x05\x04\x14\x02\x01\x05\x12\x04\x8f\x02\x04\n\n\r\n\x05\x04\x14\x02\x01\x01\x12\x04\x8f\x02\x0b\x18\n\r\n\x05\x04\x14\x02\x01\x03\x12\x04\x8f\x02\x1b\x1c\n!\n\x04\x04\x14\x02\x02\x12\x04\x92\x02\x04 \x1a\x13 Never seen count.\n\n\r\n\x05\x04\x14\x02\x02\x05\x12\x04\x92\x02\x04\n\n\r\n\x05\x04\x14\x02\x02\x01\x12\x04\x92\x02\x0b\x1b\n\r\n\x05\x04\x14\x02\x02\x03\x12\x04\x92\x02\x1e\x1f\n\x0c\n\x02\x04\x15\x12\x06\x95\x02\x00\xa4\x02\x01\n\x0b\n\x03\x04\x15\x01\x12\x04\x95\x02\x08\x0f\n\x13\n\x04\x04\x15\x02\x00\x12\x04\x97\x02\x04\x12\x1a\x05 ID.\n\n\r\n\x05\x04\x15\x02\x00\x05\x12\x04\x97\x02\x04\n\n\r\n\x05\x04\x15\x02\x00\x01\x12\x04\x97\x02\x0b\r\n\r\n\x05\x04\x15\x02\x00\x03\x12\x04\x97\x02\x10\x11\n\x1a\n\x04\x04\x15\x02\x01\x12\x04\x9a\x02\x04\'\x1a\x0c Timestamp.\n\n\r\n\x05\x04\x15\x02\x01\x06\x12\x04\x9a\x02\x04\x1d\n\r\n\x05\x04\x15\x02\x01\x01\x12\x04\x9a\x02\x1e\"\n\r\n\x05\x04\x15\x02\x01\x03\x12\x04\x9a\x02%&\n\x18\n\x04\x04\x15\x02\x02\x12\x04\x9d\x02\x04\x1b\x1a\n Message.\n\n\r\n\x05\x04\x15\x02\x02\x05\x12\x04\x9d\x02\x04\n\n\r\n\x05\x04\x15\x02\x02\x01\x12\x04\x9d\x02\x0b\x16\n\r\n\x05\x04\x15\x02\x02\x03\x12\x04\x9d\x02\x19\x1a\n\x15\n\x04\x04\x15\x02\x03\x12\x04\xa0\x02\x04\x14\x1a\x07 Body.\n\n\r\n\x05\x04\x15\x02\x03\x05\x12\x04\xa0\x02\x04\n\n\r\n\x05\x04\x15\x02\x03\x01\x12\x04\xa0\x02\x0b\x0f\n\r\n\x05\x04\x15\x02\x03\x03\x12\x04\xa0\x02\x12\x13\n\x1b\n\x04\x04\x15\x02\x04\x12\x04\xa3\x02\x04\'\x1a\r Properties.\n\n\r\n\x05\x04\x15\x02\x04\x06\x12\x04\xa3\x02\x04\x17\n\r\n\x05\x04\x15\x02\x04\x01\x12\x04\xa3\x02\x18\"\n\r\n\x05\x04\x15\x02\x04\x03\x12\x04\xa3\x02%&\n\x0c\n\x02\x04\x16\x12\x06\xa6\x02\x00\xa9\x02\x01\n\x0b\n\x03\x04\x16\x01\x12\x04\xa6\x02\x08\"\n#\n\x04\x04\x16\x02\x00\x12\x04\xa8\x02\x04\x1a\x1a\x15 Gateway ID (EUI64).\n\n\r\n\x05\x04\x16\x02\x00\x05\x12\x04\xa8\x02\x04\n\n\r\n\x05\x04\x16\x02\x00\x01\x12\x04\xa8\x02\x0b\x15\n\r\n\x05\x04\x16\x02\x00\x03\x12\x04\xa8\x02\x18\x19\n\x0c\n\x02\x04\x17\x12\x06\xab\x02\x00\xae\x02\x01\n\x0b\n\x03\x04\x17\x01\x12\x04\xab\x02\x08!\n\x1b\n\x04\x04\x17\x02\x00\x12\x04\xad\x02\x04\x17\x1a\r Device EUI.\n\n\r\n\x05\x04\x17\x02\x00\x05\x12\x04\xad\x02\x04\n\n\r\n\x05\x04\x17\x02\x00\x01\x12\x04\xad\x02\x0b\x12\n\r\n\x05\x04\x17\x02\x00\x03\x12\x04\xad\x02\x15\x16\n\x0c\n\x02\x04\x18\x12\x06\xb0\x02\x00\xb3\x02\x01\n\x0b\n\x03\x04\x18\x01\x12\x04\xb0\x02\x08!\n\x1b\n\x04\x04\x18\x02\x00\x12\x04\xb2\x02\x04\x17\x1a\r Device EUI.\n\n\r\n\x05\x04\x18\x02\x00\x05\x12\x04\xb2\x02\x04\n\n\r\n\x05\x04\x18\x02\x00\x01\x12\x04\xb2\x02\x0b\x12\n\r\n\x05\x04\x18\x02\x00\x03\x12\x04\xb2\x02\x15\x16\n\x0c\n\x02\x04\x19\x12\x06\xb5\x02\x00\xb8\x02\x01\n\x0b\n\x03\x04\x19\x01\x12\x04\xb5\x02\x08\x1b\n#\n\x04\x04\x19\x02\x00\x12\x04\xb7\x02\x04(\x1a\x15 Configured regions.\n\n\r\n\x05\x04\x19\x02\x00\x04\x12\x04\xb7\x02\x04\x0c\n\r\n\x05\x04\x19\x02\x00\x06\x12\x04\xb7\x02\r\x1b\n\r\n\x05\x04\x19\x02\x00\x01\x12\x04\xb7\x02\x1c#\n\r\n\x05\x04\x19\x02\x00\x03\x12\x04\xb7\x02&\'\n\x0c\n\x02\x04\x1a\x12\x06\xba\x02\x00\xc3\x02\x01\n\x0b\n\x03\x04\x1a\x01\x12\x04\xba\x02\x08\x16\n\x13\n\x04\x04\x1a\x02\x00\x12\x04\xbc\x02\x04\x12\x1a\x05 ID.\n\n\r\n\x05\x04\x1a\x02\x00\x05\x12\x04\xbc\x02\x04\n\n\r\n\x05\x04\x1a\x02\x00\x01\x12\x04\xbc\x02\x0b\r\n\r\n\x05\x04\x1a\x02\x00\x03\x12\x04\xbc\x02\x10\x11\n\x17\n\x04\x04\x1a\x02\x01\x12\x04\xbf\x02\x04\x1d\x1a\t Region.\n\n\r\n\x05\x04\x1a\x02\x01\x06\x12\x04\xbf\x02\x04\x11\n\r\n\x05\x04\x1a\x02\x01\x01\x12\x04\xbf\x02\x12\x18\n\r\n\x05\x04\x1a\x02\x01\x03\x12\x04\xbf\x02\x1b\x1c\n\x1c\n\x04\x04\x1a\x02\x02\x12\x04\xc2\x02\x04\x1b\x1a\x0e Description.\n\n\r\n\x05\x04\x1a\x02\x02\x05\x12\x04\xc2\x02\x04\n\n\r\n\x05\x04\x1a\x02\x02\x01\x12\x04\xc2\x02\x0b\x16\n\r\n\x05\x04\x1a\x02\x02\x03\x12\x04\xc2\x02\x19\x1a\n\x0c\n\x02\x04\x1b\x12\x06\xc5\x02\x00\xc8\x02\x01\n\x0b\n\x03\x04\x1b\x01\x12\x04\xc5\x02\x08\x18\n\x1a\n\x04\x04\x1b\x02\x00\x12\x04\xc7\x02\x04\x12\x1a\x0c Region ID.\n\n\r\n\x05\x04\x1b\x02\x00\x05\x12\x04\xc7\x02\x04\n\n\r\n\x05\x04\x1b\x02\x00\x01\x12\x04\xc7\x02\x0b\r\n\r\n\x05\x04\x1b\x02\x00\x03\x12\x04\xc7\x02\x10\x11\n\x0c\n\x02\x04\x1c\x12\x06\xca\x02\x00\xeb\x02\x01\n\x0b\n\x03\x04\x1c\x01\x12\x04\xca\x02\x08\x19\n\x13\n\x04\x04\x1c\x02\x00\x12\x04\xcc\x02\x04\x12\x1a\x05 ID.\n\n\r\n\x05\x04\x1c\x02\x00\x05\x12\x04\xcc\x02\x04\n\n\r\n\x05\x04\x1c\x02\x00\x01\x12\x04\xcc\x02\x0b\r\n\r\n\x05\x04\x1c\x02\x00\x03\x12\x04\xcc\x02\x10\x11\n\x17\n\x04\x04\x1c\x02\x01\x12\x04\xcf\x02\x04\x1d\x1a\t Region.\n\n\r\n\x05\x04\x1c\x02\x01\x06\x12\x04\xcf\x02\x04\x11\n\r\n\x05\x04\x1c\x02\x01\x01\x12\x04\xcf\x02\x12\x18\n\r\n\x05\x04\x1c\x02\x01\x03\x12\x04\xcf\x02\x1b\x1c\n!\n\x04\x04\x1c\x02\x02\x12\x04\xd2\x02\x04\x19\x1a\x13 User information.\n\n\r\n\x05\x04\x1c\x02\x02\x05\x12\x04\xd2\x02\x04\n\n\r\n\x05\x04\x1c\x02\x02\x01\x12\x04\xd2\x02\x0b\x14\n\r\n\x05\x04\x1c\x02\x02\x03\x12\x04\xd2\x02\x17\x18\n \n\x04\x04\x1c\x02\x03\x12\x04\xd5\x02\x04/\x1a\x12 Uplink channels.\n\n\r\n\x05\x04\x1c\x02\x03\x04\x12\x04\xd5\x02\x04\x0c\n\r\n\x05\x04\x1c\x02\x03\x06\x12\x04\xd5\x02\r\x1a\n\r\n\x05\x04\x1c\x02\x03\x01\x12\x04\xd5\x02\x1b*\n\r\n\x05\x04\x1c\x02\x03\x03\x12\x04\xd5\x02-.\n\x1a\n\x04\x04\x1c\x02\x04\x12\x04\xd8\x02\x04\x19\x1a\x0c RX1 delay.\n\n\r\n\x05\x04\x1c\x02\x04\x05\x12\x04\xd8\x02\x04\n\n\r\n\x05\x04\x1c\x02\x04\x01\x12\x04\xd8\x02\x0b\x14\n\r\n\x05\x04\x1c\x02\x04\x03\x12\x04\xd8\x02\x17\x18\n%\n\x04\x04\x1c\x02\x05\x12\x04\xdb\x02\x04\x1d\x1a\x17 RX1 data-rate offset.\n\n\r\n\x05\x04\x1c\x02\x05\x05\x12\x04\xdb\x02\x04\n\n\r\n\x05\x04\x1c\x02\x05\x01\x12\x04\xdb\x02\x0b\x18\n\r\n\x05\x04\x1c\x02\x05\x03\x12\x04\xdb\x02\x1b\x1c\n\x17\n\x04\x04\x1c\x02\x06\x12\x04\xde\x02\x04\x16\x1a\t RX2 DR.\n\n\r\n\x05\x04\x1c\x02\x06\x05\x12\x04\xde\x02\x04\n\n\r\n\x05\x04\x1c\x02\x06\x01\x12\x04\xde\x02\x0b\x11\n\r\n\x05\x04\x1c\x02\x06\x03\x12\x04\xde\x02\x14\x15\n\x1e\n\x04\x04\x1c\x02\x07\x12\x04\xe1\x02\x04\x1d\x1a\x10 RX2 frequency.\n\n\r\n\x05\x04\x1c\x02\x07\x05\x12\x04\xe1\x02\x04\n\n\r\n\x05\x04\x1c\x02\x07\x01\x12\x04\xe1\x02\x0b\x18\n\r\n\x05\x04\x1c\x02\x07\x03\x12\x04\xe1\x02\x1b\x1c\n%\n\x04\x04\x1c\x02\x08\x12\x04\xe4\x02\x04$\x1a\x17 Class-B ping-slot DR.\n\n\r\n\x05\x04\x1c\x02\x08\x05\x12\x04\xe4\x02\x04\n\n\r\n\x05\x04\x1c\x02\x08\x01\x12\x04\xe4\x02\x0b\x1f\n\r\n\x05\x04\x1c\x02\x08\x03\x12\x04\xe4\x02\"#\n,\n\x04\x04\x1c\x02\t\x12\x04\xe7\x02\x04,\x1a\x1e Class-B ping-slot frequency.\n\n\r\n\x05\x04\x1c\x02\t\x05\x12\x04\xe7\x02\x04\n\n\r\n\x05\x04\x1c\x02\t\x01\x12\x04\xe7\x02\x0b&\n\r\n\x05\x04\x1c\x02\t\x03\x12\x04\xe7\x02)+\n#\n\x04\x04\x1c\x02\n\x12\x04\xea\x02\x04\x1c\x1a\x15 Region description.\n\n\r\n\x05\x04\x1c\x02\n\x05\x12\x04\xea\x02\x04\n\n\r\n\x05\x04\x1c\x02\n\x01\x12\x04\xea\x02\x0b\x16\n\r\n\x05\x04\x1c\x02\n\x03\x12\x04\xea\x02\x19\x1b\n\x0c\n\x02\x04\x1d\x12\x06\xed\x02\x00\xf6\x02\x01\n\x0b\n\x03\x04\x1d\x01\x12\x04\xed\x02\x08\x15\n\x1f\n\x04\x04\x1d\x02\x00\x12\x04\xef\x02\x04\x19\x1a\x11 Frequency (Hz).\n\n\r\n\x05\x04\x1d\x02\x00\x05\x12\x04\xef\x02\x04\n\n\r\n\x05\x04\x1d\x02\x00\x01\x12\x04\xef\x02\x0b\x14\n\r\n\x05\x04\x1d\x02\x00\x03\x12\x04\xef\x02\x17\x18\n\x17\n\x04\x04\x1d\x02\x01\x12\x04\xf2\x02\x04\x16\x1a\t Min DR.\n\n\r\n\x05\x04\x1d\x02\x01\x05\x12\x04\xf2\x02\x04\n\n\r\n\x05\x04\x1d\x02\x01\x01\x12\x04\xf2\x02\x0b\x11\n\r\n\x05\x04\x1d\x02\x01\x03\x12\x04\xf2\x02\x14\x15\n\x17\n\x04\x04\x1d\x02\x02\x12\x04\xf5\x02\x04\x16\x1a\t Max DR.\n\n\r\n\x05\x04\x1d\x02\x02\x05\x12\x04\xf5\x02\x04\n\n\r\n\x05\x04\x1d\x02\x02\x01\x12\x04\xf5\x02\x0b\x11\n\r\n\x05\x04\x1d\x02\x02\x03\x12\x04\xf5\x02\x14\x15b\x06proto3\n\x85^\n\x10api/tenant.proto\x12\x03api\x1a\x1cgoogle/api/annotations.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1bgoogle/protobuf/empty.proto\"\xb4\x02\n\x06Tenant\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x12 \n\x0bdescription\x18\x03 \x01(\tR\x0bdescription\x12*\n\x11can_have_gateways\x18\x04 \x01(\x08R\x0fcanHaveGateways\x12*\n\x11max_gateway_count\x18\x05 \x01(\rR\x0fmaxGatewayCount\x12(\n\x10max_device_count\x18\x06 \x01(\rR\x0emaxDeviceCount\x12.\n\x13private_gateways_up\x18\x07 \x01(\x08R\x11privateGatewaysUp\x122\n\x15private_gateways_down\x18\x08 \x01(\x08R\x13privateGatewaysDown\"\x90\x03\n\x0eTenantListItem\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x129\n\ncreated_at\x18\x02 \x01(\x0b2\x1a.google.protobuf.TimestampR\tcreatedAt\x129\n\nupdated_at\x18\x03 \x01(\x0b2\x1a.google.protobuf.TimestampR\tupdatedAt\x12\x12\n\x04name\x18\x04 \x01(\tR\x04name\x12*\n\x11can_have_gateways\x18\x05 \x01(\x08R\x0fcanHaveGateways\x12.\n\x13private_gateways_up\x18\x06 \x01(\x08R\x11privateGatewaysUp\x122\n\x15private_gateways_down\x18\t \x01(\x08R\x13privateGatewaysDown\x12*\n\x11max_gateway_count\x18\x07 \x01(\rR\x0fmaxGatewayCount\x12(\n\x10max_device_count\x18\x08 \x01(\rR\x0emaxDeviceCount\":\n\x13CreateTenantRequest\x12#\n\x06tenant\x18\x01 \x01(\x0b2\x0b.api.TenantR\x06tenant\"&\n\x14CreateTenantResponse\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\"\"\n\x10GetTenantRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\"\xae\x01\n\x11GetTenantResponse\x12#\n\x06tenant\x18\x01 \x01(\x0b2\x0b.api.TenantR\x06tenant\x129\n\ncreated_at\x18\x02 \x01(\x0b2\x1a.google.protobuf.TimestampR\tcreatedAt\x129\n\nupdated_at\x18\x03 \x01(\x0b2\x1a.google.protobuf.TimestampR\tupdatedAt\":\n\x13UpdateTenantRequest\x12#\n\x06tenant\x18\x01 \x01(\x0b2\x0b.api.TenantR\x06tenant\"%\n\x13DeleteTenantRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\"s\n\x12ListTenantsRequest\x12\x14\n\x05limit\x18\x01 \x01(\rR\x05limit\x12\x16\n\x06offset\x18\x02 \x01(\rR\x06offset\x12\x16\n\x06search\x18\x03 \x01(\tR\x06search\x12\x17\n\x07user_id\x18\x04 \x01(\tR\x06userId\"c\n\x13ListTenantsResponse\x12\x1f\n\x0btotal_count\x18\x01 \x01(\rR\ntotalCount\x12+\n\x06result\x18\x02 \x03(\x0b2\x13.api.TenantListItemR\x06result\"\xc5\x01\n\nTenantUser\x12\x1b\n\ttenant_id\x18\x01 \x01(\tR\x08tenantId\x12\x17\n\x07user_id\x18\x02 \x01(\tR\x06userId\x12\x19\n\x08is_admin\x18\x03 \x01(\x08R\x07isAdmin\x12&\n\x0fis_device_admin\x18\x04 \x01(\x08R\risDeviceAdmin\x12(\n\x10is_gateway_admin\x18\x05 \x01(\x08R\x0eisGatewayAdmin\x12\x14\n\x05email\x18\x06 \x01(\tR\x05email\"\xc3\x02\n\x12TenantUserListItem\x12\x1b\n\ttenant_id\x18\x01 \x01(\tR\x08tenantId\x12\x17\n\x07user_id\x18\x02 \x01(\tR\x06userId\x129\n\ncreated_at\x18\x03 \x01(\x0b2\x1a.google.protobuf.TimestampR\tcreatedAt\x129\n\nupdated_at\x18\x04 \x01(\x0b2\x1a.google.protobuf.TimestampR\tupdatedAt\x12\x14\n\x05email\x18\x05 \x01(\tR\x05email\x12\x19\n\x08is_admin\x18\x06 \x01(\x08R\x07isAdmin\x12&\n\x0fis_device_admin\x18\x07 \x01(\x08R\risDeviceAdmin\x12(\n\x10is_gateway_admin\x18\x08 \x01(\x08R\x0eisGatewayAdmin\"H\n\x14AddTenantUserRequest\x120\n\x0btenant_user\x18\x01 \x01(\x0b2\x0f.api.TenantUserR\ntenantUser\"L\n\x14GetTenantUserRequest\x12\x1b\n\ttenant_id\x18\x01 \x01(\tR\x08tenantId\x12\x17\n\x07user_id\x18\x02 \x01(\tR\x06userId\"\xbf\x01\n\x15GetTenantUserResponse\x120\n\x0btenant_user\x18\x01 \x01(\x0b2\x0f.api.TenantUserR\ntenantUser\x129\n\ncreated_at\x18\x02 \x01(\x0b2\x1a.google.protobuf.TimestampR\tcreatedAt\x129\n\nupdated_at\x18\x03 \x01(\x0b2\x1a.google.protobuf.TimestampR\tupdatedAt\"K\n\x17UpdateTenantUserRequest\x120\n\x0btenant_user\x18\x01 \x01(\x0b2\x0f.api.TenantUserR\ntenantUser\"O\n\x17DeleteTenantUserRequest\x12\x1b\n\ttenant_id\x18\x01 \x01(\tR\x08tenantId\x12\x17\n\x07user_id\x18\x02 \x01(\tR\x06userId\"c\n\x16ListTenantUsersRequest\x12\x1b\n\ttenant_id\x18\x01 \x01(\tR\x08tenantId\x12\x14\n\x05limit\x18\x02 \x01(\rR\x05limit\x12\x16\n\x06offset\x18\x03 \x01(\rR\x06offset\"k\n\x17ListTenantUsersResponse\x12\x1f\n\x0btotal_count\x18\x01 \x01(\rR\ntotalCount\x12/\n\x06result\x18\x02 \x03(\x0b2\x17.api.TenantUserListItemR\x06result2\xa2\x08\n\rTenantService\x12V\n\x06Create\x12\x18.api.CreateTenantRequest\x1a\x19.api.CreateTenantResponse\"\x17\x82\xd3\xe4\x93\x02\x11\"\x0c/api/tenants:\x01*\x12O\n\x03Get\x12\x15.api.GetTenantRequest\x1a\x16.api.GetTenantResponse\"\x19\x82\xd3\xe4\x93\x02\x13\x12\x11/api/tenants/{id}\x12_\n\x06Update\x12\x18.api.UpdateTenantRequest\x1a\x16.google.protobuf.Empty\"#\x82\xd3\xe4\x93\x02\x1d\x1a\x18/api/tenants/{tenant.id}:\x01*\x12U\n\x06Delete\x12\x18.api.DeleteTenantRequest\x1a\x16.google.protobuf.Empty\"\x19\x82\xd3\xe4\x93\x02\x13*\x11/api/tenants/{id}\x12O\n\x04List\x12\x17.api.ListTenantsRequest\x1a\x18.api.ListTenantsResponse\"\x14\x82\xd3\xe4\x93\x02\x0e\x12\x0c/api/tenants\x12s\n\x07AddUser\x12\x19.api.AddTenantUserRequest\x1a\x16.google.protobuf.Empty\"5\x82\xd3\xe4\x93\x02/\"*/api/tenants/{tenant_user.tenant_id}/users:\x01*\x12r\n\x07GetUser\x12\x19.api.GetTenantUserRequest\x1a\x1a.api.GetTenantUserResponse\"0\x82\xd3\xe4\x93\x02*\x12(/api/tenants/{tenant_id}/users/{user_id}\x12\x8f\x01\n\nUpdateUser\x12\x1c.api.UpdateTenantUserRequest\x1a\x16.google.protobuf.Empty\"K\x82\xd3\xe4\x93\x02E\x1a@/api/tenants/{tenant_user.tenant_id}/users/{tenant_user.user_id}:\x01*\x12t\n\nDeleteUser\x12\x1c.api.DeleteTenantUserRequest\x1a\x16.google.protobuf.Empty\"0\x82\xd3\xe4\x93\x02**(/api/tenants/{tenant_id}/users/{user_id}\x12n\n\tListUsers\x12\x1b.api.ListTenantUsersRequest\x1a\x1c.api.ListTenantUsersResponse\"&\x82\xd3\xe4\x93\x02 \x12\x1e/api/tenants/{tenant_id}/usersBc\n\x11io.chirpstack.apiB\x0bTenantProtoP\x01Z.github.com/chirpstack/chirpstack/api/go/v4/api\xaa\x02\x0eChirpstack.ApiJ\xe5?\n\x07\x12\x05\x00\x00\xc0\x02\x01\n\x08\n\x01\x0c\x12\x03\x00\x00\x12\n\x08\n\x01\x02\x12\x03\x02\x00\x0c\n\x08\n\x01\x08\x12\x03\x04\x00E\n\t\n\x02\x08\x0b\x12\x03\x04\x00E\n\x08\n\x01\x08\x12\x03\x05\x00*\n\t\n\x02\x08\x01\x12\x03\x05\x00*\n\x08\n\x01\x08\x12\x03\x06\x00\"\n\t\n\x02\x08\n\x12\x03\x06\x00\"\n\x08\n\x01\x08\x12\x03\x07\x00,\n\t\n\x02\x08\x08\x12\x03\x07\x00,\n\x08\n\x01\x08\x12\x03\x08\x00+\n\t\n\x02\x08%\x12\x03\x08\x00+\n\t\n\x02\x03\x00\x12\x03\n\x00&\n\t\n\x02\x03\x01\x12\x03\x0b\x00)\n\t\n\x02\x03\x02\x12\x03\x0c\x00%\nV\n\x02\x06\x00\x12\x04\x0f\x00Z\x01\x1aJ TenantService is the service providing API methods for managing tenants.\n\n\n\n\x03\x06\x00\x01\x12\x03\x0f\x08\x15\n$\n\x04\x06\x00\x02\x00\x12\x04\x11\x04\x16\x05\x1a\x16 Create a new tenant.\n\n\x0c\n\x05\x06\x00\x02\x00\x01\x12\x03\x11\x08\x0e\n\x0c\n\x05\x06\x00\x02\x00\x02\x12\x03\x11\x0f\"\n\x0c\n\x05\x06\x00\x02\x00\x03\x12\x03\x11-A\n\r\n\x05\x06\x00\x02\x00\x04\x12\x04\x12\x08\x15\n\n\x11\n\t\x06\x00\x02\x00\x04\xb0\xca\xbc\"\x12\x04\x12\x08\x15\n\n0\n\x04\x06\x00\x02\x01\x12\x04\x19\x04\x1d\x05\x1a\" Get the tenant for the given ID.\n\n\x0c\n\x05\x06\x00\x02\x01\x01\x12\x03\x19\x08\x0b\n\x0c\n\x05\x06\x00\x02\x01\x02\x12\x03\x19\x0c\x1c\n\x0c\n\x05\x06\x00\x02\x01\x03\x12\x03\x19\'8\n\r\n\x05\x06\x00\x02\x01\x04\x12\x04\x1a\x08\x1c\n\n\x11\n\t\x06\x00\x02\x01\x04\xb0\xca\xbc\"\x12\x04\x1a\x08\x1c\n\n(\n\x04\x06\x00\x02\x02\x12\x04 \x04%\x05\x1a\x1a Update the given tenant.\n\n\x0c\n\x05\x06\x00\x02\x02\x01\x12\x03 \x08\x0e\n\x0c\n\x05\x06\x00\x02\x02\x02\x12\x03 \x0f\"\n\x0c\n\x05\x06\x00\x02\x02\x03\x12\x03 -B\n\r\n\x05\x06\x00\x02\x02\x04\x12\x04!\x08$\n\n\x11\n\t\x06\x00\x02\x02\x04\xb0\xca\xbc\"\x12\x04!\x08$\n\n4\n\x04\x06\x00\x02\x03\x12\x04(\x04,\x05\x1a& Delete the tenant with the given ID.\n\n\x0c\n\x05\x06\x00\x02\x03\x01\x12\x03(\x08\x0e\n\x0c\n\x05\x06\x00\x02\x03\x02\x12\x03(\x0f\"\n\x0c\n\x05\x06\x00\x02\x03\x03\x12\x03(-B\n\r\n\x05\x06\x00\x02\x03\x04\x12\x04)\x08+\n\n\x11\n\t\x06\x00\x02\x03\x04\xb0\xca\xbc\"\x12\x04)\x08+\n\n(\n\x04\x06\x00\x02\x04\x12\x04/\x043\x05\x1a\x1a Get the list of tenants.\n\n\x0c\n\x05\x06\x00\x02\x04\x01\x12\x03/\x08\x0c\n\x0c\n\x05\x06\x00\x02\x04\x02\x12\x03/\r\x1f\n\x0c\n\x05\x06\x00\x02\x04\x03\x12\x03/*=\n\r\n\x05\x06\x00\x02\x04\x04\x12\x040\x082\n\n\x11\n\t\x06\x00\x02\x04\x04\xb0\xca\xbc\"\x12\x040\x082\n\nN\n\x04\x06\x00\x02\x05\x12\x047\x04<\x05\x1a@ Add an user to the tenant.\n Note: the user must already exist.\n\n\x0c\n\x05\x06\x00\x02\x05\x01\x12\x037\x08\x0f\n\x0c\n\x05\x06\x00\x02\x05\x02\x12\x037\x10$\n\x0c\n\x05\x06\x00\x02\x05\x03\x12\x037/D\n\r\n\x05\x06\x00\x02\x05\x04\x12\x048\x08;\n\n\x11\n\t\x06\x00\x02\x05\x04\xb0\xca\xbc\"\x12\x048\x08;\n\nJ\n\x04\x06\x00\x02\x06\x12\x04?\x04C\x05\x1a< Get the the tenant user for the given tenant and user IDs.\n\n\x0c\n\x05\x06\x00\x02\x06\x01\x12\x03?\x08\x0f\n\x0c\n\x05\x06\x00\x02\x06\x02\x12\x03?\x10$\n\x0c\n\x05\x06\x00\x02\x06\x03\x12\x03?/D\n\r\n\x05\x06\x00\x02\x06\x04\x12\x04@\x08B\n\n\x11\n\t\x06\x00\x02\x06\x04\xb0\xca\xbc\"\x12\x04@\x08B\n\n-\n\x04\x06\x00\x02\x07\x12\x04F\x04K\x05\x1a\x1f Update the given tenant user.\n\n\x0c\n\x05\x06\x00\x02\x07\x01\x12\x03F\x08\x12\n\x0c\n\x05\x06\x00\x02\x07\x02\x12\x03F\x13*\n\x0c\n\x05\x06\x00\x02\x07\x03\x12\x03F5J\n\r\n\x05\x06\x00\x02\x07\x04\x12\x04G\x08J\n\n\x11\n\t\x06\x00\x02\x07\x04\xb0\xca\xbc\"\x12\x04G\x08J\n\n-\n\x04\x06\x00\x02\x08\x12\x04N\x04R\x05\x1a\x1f Delete the given tenant user.\n\n\x0c\n\x05\x06\x00\x02\x08\x01\x12\x03N\x08\x12\n\x0c\n\x05\x06\x00\x02\x08\x02\x12\x03N\x13*\n\x0c\n\x05\x06\x00\x02\x08\x03\x12\x03N5J\n\r\n\x05\x06\x00\x02\x08\x04\x12\x04O\x08Q\n\n\x11\n\t\x06\x00\x02\x08\x04\xb0\xca\xbc\"\x12\x04O\x08Q\n\n-\n\x04\x06\x00\x02\t\x12\x04U\x04Y\x05\x1a\x1f Get the list of tenant users.\n\n\x0c\n\x05\x06\x00\x02\t\x01\x12\x03U\x08\x11\n\x0c\n\x05\x06\x00\x02\t\x02\x12\x03U\x12(\n\x0c\n\x05\x06\x00\x02\t\x03\x12\x03U3J\n\r\n\x05\x06\x00\x02\t\x04\x12\x04V\x08X\n\n\x11\n\t\x06\x00\x02\t\x04\xb0\xca\xbc\"\x12\x04V\x08X\n\n\n\n\x02\x04\x00\x12\x04\\\x00|\x01\n\n\n\x03\x04\x00\x01\x12\x03\\\x08\x0e\n]\n\x04\x04\x00\x02\x00\x12\x03_\x08\x16\x1aP Tenant ID (UUID).\n Note: this value will be automatically generated on create.\n\n\x0c\n\x05\x04\x00\x02\x00\x05\x12\x03_\x08\x0e\n\x0c\n\x05\x04\x00\x02\x00\x01\x12\x03_\x0f\x11\n\x0c\n\x05\x04\x00\x02\x00\x03\x12\x03_\x14\x15\n\x1b\n\x04\x04\x00\x02\x01\x12\x03b\x08\x18\x1a\x0e Tenant name,\n\n\x0c\n\x05\x04\x00\x02\x01\x05\x12\x03b\x08\x0e\n\x0c\n\x05\x04\x00\x02\x01\x01\x12\x03b\x0f\x13\n\x0c\n\x05\x04\x00\x02\x01\x03\x12\x03b\x16\x17\n\"\n\x04\x04\x00\x02\x02\x12\x03e\x04\x1b\x1a\x15 Tenant description.\n\n\x0c\n\x05\x04\x00\x02\x02\x05\x12\x03e\x04\n\n\x0c\n\x05\x04\x00\x02\x02\x01\x12\x03e\x0b\x16\n\x0c\n\x05\x04\x00\x02\x02\x03\x12\x03e\x19\x1a\n8\n\x04\x04\x00\x02\x03\x12\x03h\x08#\x1a+ Can the tenant create and \"own\" Gateways?\n\n\x0c\n\x05\x04\x00\x02\x03\x05\x12\x03h\x08\x0c\n\x0c\n\x05\x04\x00\x02\x03\x01\x12\x03h\r\x1e\n\x0c\n\x05\x04\x00\x02\x03\x03\x12\x03h!\"\ne\n\x04\x04\x00\x02\x04\x12\x03l\x04!\x1aX Max. gateway count for tenant.\n When set to 0, the tenant can have unlimited gateways.\n\n\x0c\n\x05\x04\x00\x02\x04\x05\x12\x03l\x04\n\n\x0c\n\x05\x04\x00\x02\x04\x01\x12\x03l\x0b\x1c\n\x0c\n\x05\x04\x00\x02\x04\x03\x12\x03l\x1f \nc\n\x04\x04\x00\x02\x05\x12\x03p\x04 \x1aV Max. device count for tenant.\n When set to 0, the tenant can have unlimited devices.\n\n\x0c\n\x05\x04\x00\x02\x05\x05\x12\x03p\x04\n\n\x0c\n\x05\x04\x00\x02\x05\x01\x12\x03p\x0b\x1b\n\x0c\n\x05\x04\x00\x02\x05\x03\x12\x03p\x1e\x1f\nr\n\x04\x04\x00\x02\x06\x12\x03t\x04!\x1ae Private gateways (uplink).\n If enabled, then uplink messages will not be shared with other tenants.\n\n\x0c\n\x05\x04\x00\x02\x06\x05\x12\x03t\x04\x08\n\x0c\n\x05\x04\x00\x02\x06\x01\x12\x03t\t\x1c\n\x0c\n\x05\x04\x00\x02\x06\x03\x12\x03t\x1f \n\xc7\x02\n\x04\x04\x00\x02\x07\x12\x03{\x04#\x1a\xb9\x02 Private gateways (downlink).\n If enabled, then other tenants will not be able to schedule downlink\n messages through the gateways of this tenant. For example, in case you\n do want to share uplinks with other tenants (private_gateways_up=false),\n but you want to prevent other tenants from using gateway airtime.\n\n\x0c\n\x05\x04\x00\x02\x07\x05\x12\x03{\x04\x08\n\x0c\n\x05\x04\x00\x02\x07\x01\x12\x03{\t\x1e\n\x0c\n\x05\x04\x00\x02\x07\x03\x12\x03{!\"\n\x0b\n\x02\x04\x01\x12\x05~\x00\x9b\x01\x01\n\n\n\x03\x04\x01\x01\x12\x03~\x08\x16\n!\n\x04\x04\x01\x02\x00\x12\x04\x80\x01\x04\x12\x1a\x13 Tenant ID (UUID).\n\n\r\n\x05\x04\x01\x02\x00\x05\x12\x04\x80\x01\x04\n\n\r\n\x05\x04\x01\x02\x00\x01\x12\x04\x80\x01\x0b\r\n\r\n\x05\x04\x01\x02\x00\x03\x12\x04\x80\x01\x10\x11\n%\n\x04\x04\x01\x02\x01\x12\x04\x83\x01\x081\x1a\x17 Created at timestamp.\n\n\r\n\x05\x04\x01\x02\x01\x06\x12\x04\x83\x01\x08!\n\r\n\x05\x04\x01\x02\x01\x01\x12\x04\x83\x01\",\n\r\n\x05\x04\x01\x02\x01\x03\x12\x04\x83\x01/0\n&\n\x04\x04\x01\x02\x02\x12\x04\x86\x01\x081\x1a\x18 Last update timestamp.\n\n\r\n\x05\x04\x01\x02\x02\x06\x12\x04\x86\x01\x08!\n\r\n\x05\x04\x01\x02\x02\x01\x12\x04\x86\x01\",\n\r\n\x05\x04\x01\x02\x02\x03\x12\x04\x86\x01/0\n\x1c\n\x04\x04\x01\x02\x03\x12\x04\x89\x01\x04\x14\x1a\x0e Tenant name.\n\n\r\n\x05\x04\x01\x02\x03\x05\x12\x04\x89\x01\x04\n\n\r\n\x05\x04\x01\x02\x03\x01\x12\x04\x89\x01\x0b\x0f\n\r\n\x05\x04\x01\x02\x03\x03\x12\x04\x89\x01\x12\x13\n9\n\x04\x04\x01\x02\x04\x12\x04\x8c\x01\x08#\x1a+ Can the tenant create and \"own\" Gateways?\n\n\r\n\x05\x04\x01\x02\x04\x05\x12\x04\x8c\x01\x08\x0c\n\r\n\x05\x04\x01\x02\x04\x01\x12\x04\x8c\x01\r\x1e\n\r\n\x05\x04\x01\x02\x04\x03\x12\x04\x8c\x01!\"\n*\n\x04\x04\x01\x02\x05\x12\x04\x8f\x01\x04!\x1a\x1c Private gateways (uplink).\n\n\r\n\x05\x04\x01\x02\x05\x05\x12\x04\x8f\x01\x04\x08\n\r\n\x05\x04\x01\x02\x05\x01\x12\x04\x8f\x01\t\x1c\n\r\n\x05\x04\x01\x02\x05\x03\x12\x04\x8f\x01\x1f \n,\n\x04\x04\x01\x02\x06\x12\x04\x92\x01\x04#\x1a\x1e Private gateways (downlink).\n\n\r\n\x05\x04\x01\x02\x06\x05\x12\x04\x92\x01\x04\x08\n\r\n\x05\x04\x01\x02\x06\x01\x12\x04\x92\x01\t\x1e\n\r\n\x05\x04\x01\x02\x06\x03\x12\x04\x92\x01!\"\n2\n\x04\x04\x01\x02\x07\x12\x04\x96\x01\x04!\x1a$ Max gateway count.\n 0 = unlimited.\n\n\r\n\x05\x04\x01\x02\x07\x05\x12\x04\x96\x01\x04\n\n\r\n\x05\x04\x01\x02\x07\x01\x12\x04\x96\x01\x0b\x1c\n\r\n\x05\x04\x01\x02\x07\x03\x12\x04\x96\x01\x1f \n1\n\x04\x04\x01\x02\x08\x12\x04\x9a\x01\x04 \x1a# Max device count.\n 0 = unlimited.\n\n\r\n\x05\x04\x01\x02\x08\x05\x12\x04\x9a\x01\x04\n\n\r\n\x05\x04\x01\x02\x08\x01\x12\x04\x9a\x01\x0b\x1b\n\r\n\x05\x04\x01\x02\x08\x03\x12\x04\x9a\x01\x1e\x1f\n\x0c\n\x02\x04\x02\x12\x06\x9d\x01\x00\xa0\x01\x01\n\x0b\n\x03\x04\x02\x01\x12\x04\x9d\x01\x08\x1b\n(\n\x04\x04\x02\x02\x00\x12\x04\x9f\x01\x04\x16\x1a\x1a Tenant object to create.\n\n\r\n\x05\x04\x02\x02\x00\x06\x12\x04\x9f\x01\x04\n\n\r\n\x05\x04\x02\x02\x00\x01\x12\x04\x9f\x01\x0b\x11\n\r\n\x05\x04\x02\x02\x00\x03\x12\x04\x9f\x01\x14\x15\n\x0c\n\x02\x04\x03\x12\x06\xa2\x01\x00\xa5\x01\x01\n\x0b\n\x03\x04\x03\x01\x12\x04\xa2\x01\x08\x1c\n\x1a\n\x04\x04\x03\x02\x00\x12\x04\xa4\x01\x04\x12\x1a\x0c Tenant ID.\n\n\r\n\x05\x04\x03\x02\x00\x05\x12\x04\xa4\x01\x04\n\n\r\n\x05\x04\x03\x02\x00\x01\x12\x04\xa4\x01\x0b\r\n\r\n\x05\x04\x03\x02\x00\x03\x12\x04\xa4\x01\x10\x11\n\x0c\n\x02\x04\x04\x12\x06\xa7\x01\x00\xaa\x01\x01\n\x0b\n\x03\x04\x04\x01\x12\x04\xa7\x01\x08\x18\n\x1a\n\x04\x04\x04\x02\x00\x12\x04\xa9\x01\x04\x12\x1a\x0c Tenant ID.\n\n\r\n\x05\x04\x04\x02\x00\x05\x12\x04\xa9\x01\x04\n\n\r\n\x05\x04\x04\x02\x00\x01\x12\x04\xa9\x01\x0b\r\n\r\n\x05\x04\x04\x02\x00\x03\x12\x04\xa9\x01\x10\x11\n\x0c\n\x02\x04\x05\x12\x06\xac\x01\x00\xb5\x01\x01\n\x0b\n\x03\x04\x05\x01\x12\x04\xac\x01\x08\x19\n\x1e\n\x04\x04\x05\x02\x00\x12\x04\xae\x01\x04\x16\x1a\x10 Tenant object.\n\n\r\n\x05\x04\x05\x02\x00\x06\x12\x04\xae\x01\x04\n\n\r\n\x05\x04\x05\x02\x00\x01\x12\x04\xae\x01\x0b\x11\n\r\n\x05\x04\x05\x02\x00\x03\x12\x04\xae\x01\x14\x15\n%\n\x04\x04\x05\x02\x01\x12\x04\xb1\x01\x081\x1a\x17 Created at timestamp.\n\n\r\n\x05\x04\x05\x02\x01\x06\x12\x04\xb1\x01\x08!\n\r\n\x05\x04\x05\x02\x01\x01\x12\x04\xb1\x01\",\n\r\n\x05\x04\x05\x02\x01\x03\x12\x04\xb1\x01/0\n&\n\x04\x04\x05\x02\x02\x12\x04\xb4\x01\x081\x1a\x18 Last update timestamp.\n\n\r\n\x05\x04\x05\x02\x02\x06\x12\x04\xb4\x01\x08!\n\r\n\x05\x04\x05\x02\x02\x01\x12\x04\xb4\x01\",\n\r\n\x05\x04\x05\x02\x02\x03\x12\x04\xb4\x01/0\n\x0c\n\x02\x04\x06\x12\x06\xb7\x01\x00\xba\x01\x01\n\x0b\n\x03\x04\x06\x01\x12\x04\xb7\x01\x08\x1b\n\x1e\n\x04\x04\x06\x02\x00\x12\x04\xb9\x01\x04\x16\x1a\x10 Tenant object.\n\n\r\n\x05\x04\x06\x02\x00\x06\x12\x04\xb9\x01\x04\n\n\r\n\x05\x04\x06\x02\x00\x01\x12\x04\xb9\x01\x0b\x11\n\r\n\x05\x04\x06\x02\x00\x03\x12\x04\xb9\x01\x14\x15\n\x0c\n\x02\x04\x07\x12\x06\xbc\x01\x00\xbf\x01\x01\n\x0b\n\x03\x04\x07\x01\x12\x04\xbc\x01\x08\x1b\n\x1a\n\x04\x04\x07\x02\x00\x12\x04\xbe\x01\x04\x12\x1a\x0c Tenant ID.\n\n\r\n\x05\x04\x07\x02\x00\x05\x12\x04\xbe\x01\x04\n\n\r\n\x05\x04\x07\x02\x00\x01\x12\x04\xbe\x01\x0b\r\n\r\n\x05\x04\x07\x02\x00\x03\x12\x04\xbe\x01\x10\x11\n\x0c\n\x02\x04\x08\x12\x06\xc1\x01\x00\xce\x01\x01\n\x0b\n\x03\x04\x08\x01\x12\x04\xc1\x01\x08\x1a\nB\n\x04\x04\x08\x02\x00\x12\x04\xc3\x01\x04\x15\x1a4 Max number of tenants to return in the result-set.\n\n\r\n\x05\x04\x08\x02\x00\x05\x12\x04\xc3\x01\x04\n\n\r\n\x05\x04\x08\x02\x00\x01\x12\x04\xc3\x01\x0b\x10\n\r\n\x05\x04\x08\x02\x00\x03\x12\x04\xc3\x01\x13\x14\n:\n\x04\x04\x08\x02\x01\x12\x04\xc6\x01\x04\x16\x1a, Offset in the result-set (for pagination).\n\n\r\n\x05\x04\x08\x02\x01\x05\x12\x04\xc6\x01\x04\n\n\r\n\x05\x04\x08\x02\x01\x01\x12\x04\xc6\x01\x0b\x11\n\r\n\x05\x04\x08\x02\x01\x03\x12\x04\xc6\x01\x14\x15\nH\n\x04\x04\x08\x02\x02\x12\x04\xc9\x01\x04\x16\x1a: If set, the given string will be used to search on name.\n\n\r\n\x05\x04\x08\x02\x02\x05\x12\x04\xc9\x01\x04\n\n\r\n\x05\x04\x08\x02\x02\x01\x12\x04\xc9\x01\x0b\x11\n\r\n\x05\x04\x08\x02\x02\x03\x12\x04\xc9\x01\x14\x15\n\x82\x01\n\x04\x04\x08\x02\x03\x12\x04\xcd\x01\x04\x17\x1at If set, filters the result set to the tenants of the user.\n Only global API keys are able to filter by this field.\n\n\r\n\x05\x04\x08\x02\x03\x05\x12\x04\xcd\x01\x04\n\n\r\n\x05\x04\x08\x02\x03\x01\x12\x04\xcd\x01\x0b\x12\n\r\n\x05\x04\x08\x02\x03\x03\x12\x04\xcd\x01\x15\x16\n\x0c\n\x02\x04\t\x12\x06\xd0\x01\x00\xd6\x01\x01\n\x0b\n\x03\x04\t\x01\x12\x04\xd0\x01\x08\x1b\n(\n\x04\x04\t\x02\x00\x12\x04\xd2\x01\x04\x1b\x1a\x1a Total number of tenants.\n\n\r\n\x05\x04\t\x02\x00\x05\x12\x04\xd2\x01\x04\n\n\r\n\x05\x04\t\x02\x00\x01\x12\x04\xd2\x01\x0b\x16\n\r\n\x05\x04\t\x02\x00\x03\x12\x04\xd2\x01\x19\x1a\n\x1b\n\x04\x04\t\x02\x01\x12\x04\xd5\x01\x04\'\x1a\r Result-set.\n\n\r\n\x05\x04\t\x02\x01\x04\x12\x04\xd5\x01\x04\x0c\n\r\n\x05\x04\t\x02\x01\x06\x12\x04\xd5\x01\r\x1b\n\r\n\x05\x04\t\x02\x01\x01\x12\x04\xd5\x01\x1c\"\n\r\n\x05\x04\t\x02\x01\x03\x12\x04\xd5\x01%&\n\x0c\n\x02\x04\n\x12\x06\xd8\x01\x00\xec\x01\x01\n\x0b\n\x03\x04\n\x01\x12\x04\xd8\x01\x08\x12\n!\n\x04\x04\n\x02\x00\x12\x04\xda\x01\x08\x1d\x1a\x13 Tenant ID (UUID).\n\n\r\n\x05\x04\n\x02\x00\x05\x12\x04\xda\x01\x08\x0e\n\r\n\x05\x04\n\x02\x00\x01\x12\x04\xda\x01\x0f\x18\n\r\n\x05\x04\n\x02\x00\x03\x12\x04\xda\x01\x1b\x1c\n\x1f\n\x04\x04\n\x02\x01\x12\x04\xdd\x01\x08\x1b\x1a\x11 User ID (UUID).\n\n\r\n\x05\x04\n\x02\x01\x05\x12\x04\xdd\x01\x08\x0e\n\r\n\x05\x04\n\x02\x01\x01\x12\x04\xdd\x01\x0f\x16\n\r\n\x05\x04\n\x02\x01\x03\x12\x04\xdd\x01\x19\x1a\n\x88\x01\n\x04\x04\n\x02\x02\x12\x04\xe1\x01\x08\x1a\x1az User is admin within the context of the tenant.\n There is no need to set the is_device_admin and is_gateway_admin flags.\n\n\r\n\x05\x04\n\x02\x02\x05\x12\x04\xe1\x01\x08\x0c\n\r\n\x05\x04\n\x02\x02\x01\x12\x04\xe1\x01\r\x15\n\r\n\x05\x04\n\x02\x02\x03\x12\x04\xe1\x01\x18\x19\n|\n\x04\x04\n\x02\x03\x12\x04\xe5\x01\x04\x1d\x1an User is able to modify device related resources (applications,\n device-profiles, devices, multicast-groups).\n\n\r\n\x05\x04\n\x02\x03\x05\x12\x04\xe5\x01\x04\x08\n\r\n\x05\x04\n\x02\x03\x01\x12\x04\xe5\x01\t\x18\n\r\n\x05\x04\n\x02\x03\x03\x12\x04\xe5\x01\x1b\x1c\n0\n\x04\x04\n\x02\x04\x12\x04\xe8\x01\x04\x1e\x1a\" User is able to modify gateways.\n\n\r\n\x05\x04\n\x02\x04\x05\x12\x04\xe8\x01\x04\x08\n\r\n\x05\x04\n\x02\x04\x01\x12\x04\xe8\x01\t\x19\n\r\n\x05\x04\n\x02\x04\x03\x12\x04\xe8\x01\x1c\x1d\nL\n\x04\x04\n\x02\x05\x12\x04\xeb\x01\x08\x19\x1a> Email (only used on get and when adding a user to a tenant).\n\n\r\n\x05\x04\n\x02\x05\x05\x12\x04\xeb\x01\x08\x0e\n\r\n\x05\x04\n\x02\x05\x01\x12\x04\xeb\x01\x0f\x14\n\r\n\x05\x04\n\x02\x05\x03\x12\x04\xeb\x01\x17\x18\n\x0c\n\x02\x04\x0b\x12\x06\xee\x01\x00\x88\x02\x01\n\x0b\n\x03\x04\x0b\x01\x12\x04\xee\x01\x08\x1a\n!\n\x04\x04\x0b\x02\x00\x12\x04\xf0\x01\x08\x1d\x1a\x13 Tenant ID (UUID).\n\n\r\n\x05\x04\x0b\x02\x00\x05\x12\x04\xf0\x01\x08\x0e\n\r\n\x05\x04\x0b\x02\x00\x01\x12\x04\xf0\x01\x0f\x18\n\r\n\x05\x04\x0b\x02\x00\x03\x12\x04\xf0\x01\x1b\x1c\n\x1f\n\x04\x04\x0b\x02\x01\x12\x04\xf3\x01\x08\x1b\x1a\x11 User ID (UUID).\n\n\r\n\x05\x04\x0b\x02\x01\x05\x12\x04\xf3\x01\x08\x0e\n\r\n\x05\x04\x0b\x02\x01\x01\x12\x04\xf3\x01\x0f\x16\n\r\n\x05\x04\x0b\x02\x01\x03\x12\x04\xf3\x01\x19\x1a\n%\n\x04\x04\x0b\x02\x02\x12\x04\xf6\x01\x081\x1a\x17 Created at timestamp.\n\n\r\n\x05\x04\x0b\x02\x02\x06\x12\x04\xf6\x01\x08!\n\r\n\x05\x04\x0b\x02\x02\x01\x12\x04\xf6\x01\",\n\r\n\x05\x04\x0b\x02\x02\x03\x12\x04\xf6\x01/0\n&\n\x04\x04\x0b\x02\x03\x12\x04\xf9\x01\x081\x1a\x18 Last update timestamp.\n\n\r\n\x05\x04\x0b\x02\x03\x06\x12\x04\xf9\x01\x08!\n\r\n\x05\x04\x0b\x02\x03\x01\x12\x04\xf9\x01\",\n\r\n\x05\x04\x0b\x02\x03\x03\x12\x04\xf9\x01/0\n\x16\n\x04\x04\x0b\x02\x04\x12\x04\xfc\x01\x04\x15\x1a\x08 Email.\n\n\r\n\x05\x04\x0b\x02\x04\x05\x12\x04\xfc\x01\x04\n\n\r\n\x05\x04\x0b\x02\x04\x01\x12\x04\xfc\x01\x0b\x10\n\r\n\x05\x04\x0b\x02\x04\x03\x12\x04\xfc\x01\x13\x14\n\x88\x01\n\x04\x04\x0b\x02\x05\x12\x04\x80\x02\x08\x1a\x1az User is admin within the context of the tenant.\n There is no need to set the is_device_admin and is_gateway_admin flags.\n\n\r\n\x05\x04\x0b\x02\x05\x05\x12\x04\x80\x02\x08\x0c\n\r\n\x05\x04\x0b\x02\x05\x01\x12\x04\x80\x02\r\x15\n\r\n\x05\x04\x0b\x02\x05\x03\x12\x04\x80\x02\x18\x19\n|\n\x04\x04\x0b\x02\x06\x12\x04\x84\x02\x04\x1d\x1an User is able to modify device related resources (applications,\n device-profiles, devices, multicast-groups).\n\n\r\n\x05\x04\x0b\x02\x06\x05\x12\x04\x84\x02\x04\x08\n\r\n\x05\x04\x0b\x02\x06\x01\x12\x04\x84\x02\t\x18\n\r\n\x05\x04\x0b\x02\x06\x03\x12\x04\x84\x02\x1b\x1c\n0\n\x04\x04\x0b\x02\x07\x12\x04\x87\x02\x04\x1e\x1a\" User is able to modify gateways.\n\n\r\n\x05\x04\x0b\x02\x07\x05\x12\x04\x87\x02\x04\x08\n\r\n\x05\x04\x0b\x02\x07\x01\x12\x04\x87\x02\t\x19\n\r\n\x05\x04\x0b\x02\x07\x03\x12\x04\x87\x02\x1c\x1d\n\x0c\n\x02\x04\x0c\x12\x06\x8a\x02\x00\x8d\x02\x01\n\x0b\n\x03\x04\x0c\x01\x12\x04\x8a\x02\x08\x1c\n#\n\x04\x04\x0c\x02\x00\x12\x04\x8c\x02\x04\x1f\x1a\x15 Tenant user object.\n\n\r\n\x05\x04\x0c\x02\x00\x06\x12\x04\x8c\x02\x04\x0e\n\r\n\x05\x04\x0c\x02\x00\x01\x12\x04\x8c\x02\x0f\x1a\n\r\n\x05\x04\x0c\x02\x00\x03\x12\x04\x8c\x02\x1d\x1e\n\x0c\n\x02\x04\r\x12\x06\x8f\x02\x00\x95\x02\x01\n\x0b\n\x03\x04\r\x01\x12\x04\x8f\x02\x08\x1c\n!\n\x04\x04\r\x02\x00\x12\x04\x91\x02\x08\x1d\x1a\x13 Tenant ID (UUID).\n\n\r\n\x05\x04\r\x02\x00\x05\x12\x04\x91\x02\x08\x0e\n\r\n\x05\x04\r\x02\x00\x01\x12\x04\x91\x02\x0f\x18\n\r\n\x05\x04\r\x02\x00\x03\x12\x04\x91\x02\x1b\x1c\n\x1f\n\x04\x04\r\x02\x01\x12\x04\x94\x02\x08\x1b\x1a\x11 User ID (UUID).\n\n\r\n\x05\x04\r\x02\x01\x05\x12\x04\x94\x02\x08\x0e\n\r\n\x05\x04\r\x02\x01\x01\x12\x04\x94\x02\x0f\x16\n\r\n\x05\x04\r\x02\x01\x03\x12\x04\x94\x02\x19\x1a\n\x0c\n\x02\x04\x0e\x12\x06\x97\x02\x00\xa0\x02\x01\n\x0b\n\x03\x04\x0e\x01\x12\x04\x97\x02\x08\x1d\n#\n\x04\x04\x0e\x02\x00\x12\x04\x99\x02\x04\x1f\x1a\x15 Tenant user object.\n\n\r\n\x05\x04\x0e\x02\x00\x06\x12\x04\x99\x02\x04\x0e\n\r\n\x05\x04\x0e\x02\x00\x01\x12\x04\x99\x02\x0f\x1a\n\r\n\x05\x04\x0e\x02\x00\x03\x12\x04\x99\x02\x1d\x1e\n%\n\x04\x04\x0e\x02\x01\x12\x04\x9c\x02\x081\x1a\x17 Created at timestamp.\n\n\r\n\x05\x04\x0e\x02\x01\x06\x12\x04\x9c\x02\x08!\n\r\n\x05\x04\x0e\x02\x01\x01\x12\x04\x9c\x02\",\n\r\n\x05\x04\x0e\x02\x01\x03\x12\x04\x9c\x02/0\n&\n\x04\x04\x0e\x02\x02\x12\x04\x9f\x02\x081\x1a\x18 Last update timestamp.\n\n\r\n\x05\x04\x0e\x02\x02\x06\x12\x04\x9f\x02\x08!\n\r\n\x05\x04\x0e\x02\x02\x01\x12\x04\x9f\x02\",\n\r\n\x05\x04\x0e\x02\x02\x03\x12\x04\x9f\x02/0\n\x0c\n\x02\x04\x0f\x12\x06\xa2\x02\x00\xa5\x02\x01\n\x0b\n\x03\x04\x0f\x01\x12\x04\xa2\x02\x08\x1f\n#\n\x04\x04\x0f\x02\x00\x12\x04\xa4\x02\x04\x1f\x1a\x15 Tenant user object.\n\n\r\n\x05\x04\x0f\x02\x00\x06\x12\x04\xa4\x02\x04\x0e\n\r\n\x05\x04\x0f\x02\x00\x01\x12\x04\xa4\x02\x0f\x1a\n\r\n\x05\x04\x0f\x02\x00\x03\x12\x04\xa4\x02\x1d\x1e\n\x0c\n\x02\x04\x10\x12\x06\xa7\x02\x00\xad\x02\x01\n\x0b\n\x03\x04\x10\x01\x12\x04\xa7\x02\x08\x1f\n!\n\x04\x04\x10\x02\x00\x12\x04\xa9\x02\x08\x1d\x1a\x13 Tenant ID (UUID).\n\n\r\n\x05\x04\x10\x02\x00\x05\x12\x04\xa9\x02\x08\x0e\n\r\n\x05\x04\x10\x02\x00\x01\x12\x04\xa9\x02\x0f\x18\n\r\n\x05\x04\x10\x02\x00\x03\x12\x04\xa9\x02\x1b\x1c\n\x1f\n\x04\x04\x10\x02\x01\x12\x04\xac\x02\x08\x1b\x1a\x11 User ID (UUID).\n\n\r\n\x05\x04\x10\x02\x01\x05\x12\x04\xac\x02\x08\x0e\n\r\n\x05\x04\x10\x02\x01\x01\x12\x04\xac\x02\x0f\x16\n\r\n\x05\x04\x10\x02\x01\x03\x12\x04\xac\x02\x19\x1a\n\x0c\n\x02\x04\x11\x12\x06\xaf\x02\x00\xb8\x02\x01\n\x0b\n\x03\x04\x11\x01\x12\x04\xaf\x02\x08\x1e\n!\n\x04\x04\x11\x02\x00\x12\x04\xb1\x02\x08\x1d\x1a\x13 Tenant ID (UUID).\n\n\r\n\x05\x04\x11\x02\x00\x05\x12\x04\xb1\x02\x08\x0e\n\r\n\x05\x04\x11\x02\x00\x01\x12\x04\xb1\x02\x0f\x18\n\r\n\x05\x04\x11\x02\x00\x03\x12\x04\xb1\x02\x1b\x1c\nB\n\x04\x04\x11\x02\x01\x12\x04\xb4\x02\x04\x15\x1a4 Max number of tenants to return in the result-set.\n\n\r\n\x05\x04\x11\x02\x01\x05\x12\x04\xb4\x02\x04\n\n\r\n\x05\x04\x11\x02\x01\x01\x12\x04\xb4\x02\x0b\x10\n\r\n\x05\x04\x11\x02\x01\x03\x12\x04\xb4\x02\x13\x14\n:\n\x04\x04\x11\x02\x02\x12\x04\xb7\x02\x04\x16\x1a, Offset in the result-set (for pagination).\n\n\r\n\x05\x04\x11\x02\x02\x05\x12\x04\xb7\x02\x04\n\n\r\n\x05\x04\x11\x02\x02\x01\x12\x04\xb7\x02\x0b\x11\n\r\n\x05\x04\x11\x02\x02\x03\x12\x04\xb7\x02\x14\x15\n\x0c\n\x02\x04\x12\x12\x06\xba\x02\x00\xc0\x02\x01\n\x0b\n\x03\x04\x12\x01\x12\x04\xba\x02\x08\x1f\n(\n\x04\x04\x12\x02\x00\x12\x04\xbc\x02\x04\x1b\x1a\x1a Total number of tenants.\n\n\r\n\x05\x04\x12\x02\x00\x05\x12\x04\xbc\x02\x04\n\n\r\n\x05\x04\x12\x02\x00\x01\x12\x04\xbc\x02\x0b\x16\n\r\n\x05\x04\x12\x02\x00\x03\x12\x04\xbc\x02\x19\x1a\n\x1b\n\x04\x04\x12\x02\x01\x12\x04\xbf\x02\x04+\x1a\r Result-set.\n\n\r\n\x05\x04\x12\x02\x01\x04\x12\x04\xbf\x02\x04\x0c\n\r\n\x05\x04\x12\x02\x01\x06\x12\x04\xbf\x02\r\x1f\n\r\n\x05\x04\x12\x02\x01\x01\x12\x04\xbf\x02 &\n\r\n\x05\x04\x12\x02\x01\x03\x12\x04\xbf\x02)*b\x06proto3\n\xf5\xc6\x02\n\x15api/application.proto\x12\x03api\x1a\x1cgoogle/api/annotations.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1bgoogle/protobuf/empty.proto\"p\n\x0bApplication\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x12 \n\x0bdescription\x18\x03 \x01(\tR\x0bdescription\x12\x1b\n\ttenant_id\x18\x04 \x01(\tR\x08tenantId\"\xd1\x01\n\x13ApplicationListItem\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x129\n\ncreated_at\x18\x02 \x01(\x0b2\x1a.google.protobuf.TimestampR\tcreatedAt\x129\n\nupdated_at\x18\x03 \x01(\x0b2\x1a.google.protobuf.TimestampR\tupdatedAt\x12\x12\n\x04name\x18\x04 \x01(\tR\x04name\x12 \n\x0bdescription\x18\x05 \x01(\tR\x0bdescription\"N\n\x18CreateApplicationRequest\x122\n\x0bapplication\x18\x01 \x01(\x0b2\x10.api.ApplicationR\x0bapplication\"+\n\x19CreateApplicationResponse\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\"\'\n\x15GetApplicationRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\"\xed\x01\n\x16GetApplicationResponse\x122\n\x0bapplication\x18\x01 \x01(\x0b2\x10.api.ApplicationR\x0bapplication\x129\n\ncreated_at\x18\x02 \x01(\x0b2\x1a.google.protobuf.TimestampR\tcreatedAt\x129\n\nupdated_at\x18\x03 \x01(\x0b2\x1a.google.protobuf.TimestampR\tupdatedAt\x12)\n\x10measurement_keys\x18\x04 \x03(\tR\x0fmeasurementKeys\"N\n\x18UpdateApplicationRequest\x122\n\x0bapplication\x18\x01 \x01(\x0b2\x10.api.ApplicationR\x0bapplication\"*\n\x18DeleteApplicationRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\"|\n\x17ListApplicationsRequest\x12\x14\n\x05limit\x18\x01 \x01(\rR\x05limit\x12\x16\n\x06offset\x18\x02 \x01(\rR\x06offset\x12\x16\n\x06search\x18\x03 \x01(\tR\x06search\x12\x1b\n\ttenant_id\x18\x04 \x01(\tR\x08tenantId\"m\n\x18ListApplicationsResponse\x12\x1f\n\x0btotal_count\x18\x01 \x01(\rR\ntotalCount\x120\n\x06result\x18\x02 \x03(\x0b2\x18.api.ApplicationListItemR\x06result\"@\n\x17ListIntegrationsRequest\x12%\n\x0eapplication_id\x18\x01 \x01(\tR\rapplicationId\"?\n\x13IntegrationListItem\x12(\n\x04kind\x18\x01 \x01(\x0e2\x14.api.IntegrationKindR\x04kind\"m\n\x18ListIntegrationsResponse\x12\x1f\n\x0btotal_count\x18\x01 \x01(\rR\ntotalCount\x120\n\x06result\x18\x02 \x03(\x0b2\x18.api.IntegrationListItemR\x06result\"\x8a\x02\n\x0fHttpIntegration\x12%\n\x0eapplication_id\x18\x01 \x01(\tR\rapplicationId\x12;\n\x07headers\x18\x02 \x03(\x0b2!.api.HttpIntegration.HeadersEntryR\x07headers\x12)\n\x08encoding\x18\x03 \x01(\x0e2\r.api.EncodingR\x08encoding\x12,\n\x12event_endpoint_url\x18\x04 \x01(\tR\x10eventEndpointUrl\x1a:\n\x0cHeadersEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x028\x01\"V\n\x1cCreateHttpIntegrationRequest\x126\n\x0bintegration\x18\x01 \x01(\x0b2\x14.api.HttpIntegrationR\x0bintegration\"B\n\x19GetHttpIntegrationRequest\x12%\n\x0eapplication_id\x18\x01 \x01(\tR\rapplicationId\"T\n\x1aGetHttpIntegrationResponse\x126\n\x0bintegration\x18\x01 \x01(\x0b2\x14.api.HttpIntegrationR\x0bintegration\"V\n\x1cUpdateHttpIntegrationRequest\x126\n\x0bintegration\x18\x01 \x01(\x0b2\x14.api.HttpIntegrationR\x0bintegration\"E\n\x1cDeleteHttpIntegrationRequest\x12%\n\x0eapplication_id\x18\x01 \x01(\tR\rapplicationId\"\x8c\x03\n\x13InfluxDbIntegration\x12%\n\x0eapplication_id\x18\x01 \x01(\tR\rapplicationId\x12\x1a\n\x08endpoint\x18\x02 \x01(\tR\x08endpoint\x12\x0e\n\x02db\x18\x03 \x01(\tR\x02db\x12\x1a\n\x08username\x18\x04 \x01(\tR\x08username\x12\x1a\n\x08password\x18\x05 \x01(\tR\x08password\x122\n\x15retention_policy_name\x18\x06 \x01(\tR\x13retentionPolicyName\x124\n\tprecision\x18\x07 \x01(\x0e2\x16.api.InfluxDbPrecisionR\tprecision\x12.\n\x07version\x18\x08 \x01(\x0e2\x14.api.InfluxDbVersionR\x07version\x12\x14\n\x05token\x18\t \x01(\tR\x05token\x12\"\n\x0corganization\x18\n \x01(\tR\x0corganization\x12\x16\n\x06bucket\x18\x0b \x01(\tR\x06bucket\"^\n CreateInfluxDbIntegrationRequest\x12:\n\x0bintegration\x18\x01 \x01(\x0b2\x18.api.InfluxDbIntegrationR\x0bintegration\"F\n\x1dGetInfluxDbIntegrationRequest\x12%\n\x0eapplication_id\x18\x01 \x01(\tR\rapplicationId\"\\\n\x1eGetInfluxDbIntegrationResponse\x12:\n\x0bintegration\x18\x01 \x01(\x0b2\x18.api.InfluxDbIntegrationR\x0bintegration\"^\n UpdateInfluxDbIntegrationRequest\x12:\n\x0bintegration\x18\x01 \x01(\x0b2\x18.api.InfluxDbIntegrationR\x0bintegration\"I\n DeleteInfluxDbIntegrationRequest\x12%\n\x0eapplication_id\x18\x01 \x01(\tR\rapplicationId\"W\n\x16ThingsBoardIntegration\x12%\n\x0eapplication_id\x18\x01 \x01(\tR\rapplicationId\x12\x16\n\x06server\x18\x02 \x01(\tR\x06server\"d\n#CreateThingsBoardIntegrationRequest\x12=\n\x0bintegration\x18\x01 \x01(\x0b2\x1b.api.ThingsBoardIntegrationR\x0bintegration\"I\n GetThingsBoardIntegrationRequest\x12%\n\x0eapplication_id\x18\x01 \x01(\tR\rapplicationId\"b\n!GetThingsBoardIntegrationResponse\x12=\n\x0bintegration\x18\x01 \x01(\x0b2\x1b.api.ThingsBoardIntegrationR\x0bintegration\"d\n#UpdateThingsBoardIntegrationRequest\x12=\n\x0bintegration\x18\x01 \x01(\x0b2\x1b.api.ThingsBoardIntegrationR\x0bintegration\"L\n#DeleteThingsBoardIntegrationRequest\x12%\n\x0eapplication_id\x18\x01 \x01(\tR\rapplicationId\"Y\n\x14MyDevicesIntegration\x12%\n\x0eapplication_id\x18\x01 \x01(\tR\rapplicationId\x12\x1a\n\x08endpoint\x18\x02 \x01(\tR\x08endpoint\"`\n!CreateMyDevicesIntegrationRequest\x12;\n\x0bintegration\x18\x01 \x01(\x0b2\x19.api.MyDevicesIntegrationR\x0bintegration\"G\n\x1eGetMyDevicesIntegrationRequest\x12%\n\x0eapplication_id\x18\x01 \x01(\tR\rapplicationId\"^\n\x1fGetMyDevicesIntegrationResponse\x12;\n\x0bintegration\x18\x01 \x01(\x0b2\x19.api.MyDevicesIntegrationR\x0bintegration\"`\n!UpdateMyDevicesIntegrationRequest\x12;\n\x0bintegration\x18\x01 \x01(\x0b2\x19.api.MyDevicesIntegrationR\x0bintegration\"J\n!DeleteMyDevicesIntegrationRequest\x12%\n\x0eapplication_id\x18\x01 \x01(\tR\rapplicationId\"\xa3\x01\n\x14LoraCloudIntegration\x12%\n\x0eapplication_id\x18\x01 \x01(\tR\rapplicationId\x12d\n\x1amodem_geolocation_services\x18\x02 \x01(\x0b2&.api.LoraCloudModemGeolocationServicesR\x18modemGeolocationServices\"\xf2\x05\n!LoraCloudModemGeolocationServices\x12\x14\n\x05token\x18\x01 \x01(\tR\x05token\x12#\n\rmodem_enabled\x18\x02 \x01(\x08R\x0cmodemEnabled\x12&\n\x0fforward_f_ports\x18\x10 \x03(\rR\rforwardFPorts\x12\'\n\x10gnss_use_rx_time\x18\x05 \x01(\x08R\rgnssUseRxTime\x129\n\x19gnss_use_gateway_location\x18\x11 \x01(\x08R\x16gnssUseGatewayLocation\x12\x1b\n\tparse_tlv\x18\x06 \x01(\x08R\x08parseTlv\x124\n\x16geolocation_buffer_ttl\x18\x07 \x01(\rR\x14geolocationBufferTtl\x12=\n\x1bgeolocation_min_buffer_size\x18\x08 \x01(\rR\x18geolocationMinBufferSize\x12)\n\x10geolocation_tdoa\x18\t \x01(\x08R\x0fgeolocationTdoa\x12)\n\x10geolocation_rssi\x18\n \x01(\x08R\x0fgeolocationRssi\x12)\n\x10geolocation_gnss\x18\x0b \x01(\x08R\x0fgeolocationGnss\x12C\n\x1egeolocation_gnss_payload_field\x18\x0c \x01(\tR\x1bgeolocationGnssPayloadField\x12>\n\x1cgeolocation_gnss_use_rx_time\x18\r \x01(\x08R\x18geolocationGnssUseRxTime\x12)\n\x10geolocation_wifi\x18\x0e \x01(\x08R\x0fgeolocationWifi\x12C\n\x1egeolocation_wifi_payload_field\x18\x0f \x01(\tR\x1bgeolocationWifiPayloadField\"`\n!CreateLoraCloudIntegrationRequest\x12;\n\x0bintegration\x18\x01 \x01(\x0b2\x19.api.LoraCloudIntegrationR\x0bintegration\"G\n\x1eGetLoraCloudIntegrationRequest\x12%\n\x0eapplication_id\x18\x01 \x01(\tR\rapplicationId\"^\n\x1fGetLoraCloudIntegrationResponse\x12;\n\x0bintegration\x18\x01 \x01(\x0b2\x19.api.LoraCloudIntegrationR\x0bintegration\"`\n!UpdateLoraCloudIntegrationRequest\x12;\n\x0bintegration\x18\x01 \x01(\x0b2\x19.api.LoraCloudIntegrationR\x0bintegration\"J\n!DeleteLoraCloudIntegrationRequest\x12%\n\x0eapplication_id\x18\x01 \x01(\tR\rapplicationId\"\xd1\x01\n\x14GcpPubSubIntegration\x12%\n\x0eapplication_id\x18\x01 \x01(\tR\rapplicationId\x12)\n\x08encoding\x18\x02 \x01(\x0e2\r.api.EncodingR\x08encoding\x12)\n\x10credentials_file\x18\x03 \x01(\tR\x0fcredentialsFile\x12\x1d\n\nproject_id\x18\x04 \x01(\tR\tprojectId\x12\x1d\n\ntopic_name\x18\x05 \x01(\tR\ttopicName\"`\n!CreateGcpPubSubIntegrationRequest\x12;\n\x0bintegration\x18\x01 \x01(\x0b2\x19.api.GcpPubSubIntegrationR\x0bintegration\"G\n\x1eGetGcpPubSubIntegrationRequest\x12%\n\x0eapplication_id\x18\x01 \x01(\tR\rapplicationId\"^\n\x1fGetGcpPubSubIntegrationResponse\x12;\n\x0bintegration\x18\x01 \x01(\x0b2\x19.api.GcpPubSubIntegrationR\x0bintegration\"`\n!UpdateGcpPubSubIntegrationRequest\x12;\n\x0bintegration\x18\x01 \x01(\x0b2\x19.api.GcpPubSubIntegrationR\x0bintegration\"J\n!DeleteGcpPubSubIntegrationRequest\x12%\n\x0eapplication_id\x18\x01 \x01(\tR\rapplicationId\"\xea\x01\n\x11AwsSnsIntegration\x12%\n\x0eapplication_id\x18\x01 \x01(\tR\rapplicationId\x12)\n\x08encoding\x18\x02 \x01(\x0e2\r.api.EncodingR\x08encoding\x12\x16\n\x06region\x18\x03 \x01(\tR\x06region\x12\"\n\raccess_key_id\x18\x04 \x01(\tR\x0baccessKeyId\x12*\n\x11secret_access_key\x18\x05 \x01(\tR\x0fsecretAccessKey\x12\x1b\n\ttopic_arn\x18\x06 \x01(\tR\x08topicArn\"Z\n\x1eCreateAwsSnsIntegrationRequest\x128\n\x0bintegration\x18\x01 \x01(\x0b2\x16.api.AwsSnsIntegrationR\x0bintegration\"D\n\x1bGetAwsSnsIntegrationRequest\x12%\n\x0eapplication_id\x18\x01 \x01(\tR\rapplicationId\"X\n\x1cGetAwsSnsIntegrationResponse\x128\n\x0bintegration\x18\x01 \x01(\x0b2\x16.api.AwsSnsIntegrationR\x0bintegration\"Z\n\x1eUpdateAwsSnsIntegrationRequest\x128\n\x0bintegration\x18\x01 \x01(\x0b2\x16.api.AwsSnsIntegrationR\x0bintegration\"G\n\x1eDeleteAwsSnsIntegrationRequest\x12%\n\x0eapplication_id\x18\x01 \x01(\tR\rapplicationId\"\xbe\x01\n\x1aAzureServiceBusIntegration\x12%\n\x0eapplication_id\x18\x01 \x01(\tR\rapplicationId\x12)\n\x08encoding\x18\x02 \x01(\x0e2\r.api.EncodingR\x08encoding\x12+\n\x11connection_string\x18\x03 \x01(\tR\x10connectionString\x12!\n\x0cpublish_name\x18\x04 \x01(\tR\x0bpublishName\"l\n\'CreateAzureServiceBusIntegrationRequest\x12A\n\x0bintegration\x18\x01 \x01(\x0b2\x1f.api.AzureServiceBusIntegrationR\x0bintegration\"M\n$GetAzureServiceBusIntegrationRequest\x12%\n\x0eapplication_id\x18\x01 \x01(\tR\rapplicationId\"j\n%GetAzureServiceBusIntegrationResponse\x12A\n\x0bintegration\x18\x01 \x01(\x0b2\x1f.api.AzureServiceBusIntegrationR\x0bintegration\"l\n\'UpdateAzureServiceBusIntegrationRequest\x12A\n\x0bintegration\x18\x01 \x01(\x0b2\x1f.api.AzureServiceBusIntegrationR\x0bintegration\"P\n\'DeleteAzureServiceBusIntegrationRequest\x12%\n\x0eapplication_id\x18\x01 \x01(\tR\rapplicationId\"m\n\x16PilotThingsIntegration\x12%\n\x0eapplication_id\x18\x01 \x01(\tR\rapplicationId\x12\x16\n\x06server\x18\x02 \x01(\tR\x06server\x12\x14\n\x05token\x18\x03 \x01(\tR\x05token\"d\n#CreatePilotThingsIntegrationRequest\x12=\n\x0bintegration\x18\x01 \x01(\x0b2\x1b.api.PilotThingsIntegrationR\x0bintegration\"I\n GetPilotThingsIntegrationRequest\x12%\n\x0eapplication_id\x18\x01 \x01(\tR\rapplicationId\"b\n!GetPilotThingsIntegrationResponse\x12=\n\x0bintegration\x18\x01 \x01(\x0b2\x1b.api.PilotThingsIntegrationR\x0bintegration\"d\n#UpdatePilotThingsIntegrationRequest\x12=\n\x0bintegration\x18\x01 \x01(\x0b2\x1b.api.PilotThingsIntegrationR\x0bintegration\"L\n#DeletePilotThingsIntegrationRequest\x12%\n\x0eapplication_id\x18\x01 \x01(\tR\rapplicationId\"\xba\x01\n\x10IftttIntegration\x12%\n\x0eapplication_id\x18\x01 \x01(\tR\rapplicationId\x12\x10\n\x03key\x18\x02 \x01(\tR\x03key\x12#\n\ruplink_values\x18\x03 \x03(\tR\x0cuplinkValues\x12%\n\x0earbitrary_json\x18\x04 \x01(\x08R\rarbitraryJson\x12!\n\x0cevent_prefix\x18\x05 \x01(\tR\x0beventPrefix\"X\n\x1dCreateIftttIntegrationRequest\x127\n\x0bintegration\x18\x01 \x01(\x0b2\x15.api.IftttIntegrationR\x0bintegration\"C\n\x1aGetIftttIntegrationRequest\x12%\n\x0eapplication_id\x18\x01 \x01(\tR\rapplicationId\"V\n\x1bGetIftttIntegrationResponse\x127\n\x0bintegration\x18\x01 \x01(\x0b2\x15.api.IftttIntegrationR\x0bintegration\"X\n\x1dUpdateIftttIntegrationRequest\x127\n\x0bintegration\x18\x01 \x01(\x0b2\x15.api.IftttIntegrationR\x0bintegration\"F\n\x1dDeleteIftttIntegrationRequest\x12%\n\x0eapplication_id\x18\x01 \x01(\tR\rapplicationId\"X\n/GenerateMqttIntegrationClientCertificateRequest\x12%\n\x0eapplication_id\x18\x01 \x01(\tR\rapplicationId\"\xba\x01\n0GenerateMqttIntegrationClientCertificateResponse\x12\x19\n\x08tls_cert\x18\x01 \x01(\tR\x07tlsCert\x12\x17\n\x07tls_key\x18\x02 \x01(\tR\x06tlsKey\x12\x17\n\x07ca_cert\x18\x03 \x01(\tR\x06caCert\x129\n\nexpires_at\x18\x04 \x01(\x0b2\x1a.google.protobuf.TimestampR\texpiresAt*\"\n\x08Encoding\x12\x08\n\x04JSON\x10\x00\x12\x0c\n\x08PROTOBUF\x10\x01*\xbf\x01\n\x0fIntegrationKind\x12\x08\n\x04HTTP\x10\x00\x12\r\n\tINFLUX_DB\x10\x01\x12\x10\n\x0cTHINGS_BOARD\x10\x02\x12\x0e\n\nMY_DEVICES\x10\x03\x12\x0e\n\nLORA_CLOUD\x10\x04\x12\x0f\n\x0bGCP_PUB_SUB\x10\x05\x12\x0b\n\x07AWS_SNS\x10\x06\x12\x15\n\x11AZURE_SERVICE_BUS\x10\x07\x12\x10\n\x0cPILOT_THINGS\x10\x08\x12\x0f\n\x0bMQTT_GLOBAL\x10\t\x12\t\n\x05IFTTT\x10\n*?\n\x11InfluxDbPrecision\x12\x06\n\x02NS\x10\x00\x12\x05\n\x01U\x10\x01\x12\x06\n\x02MS\x10\x02\x12\x05\n\x01S\x10\x03\x12\x05\n\x01M\x10\x04\x12\x05\n\x01H\x10\x05*1\n\x0fInfluxDbVersion\x12\x0e\n\nINFLUXDB_1\x10\x00\x12\x0e\n\nINFLUXDB_2\x10\x012\xb8<\n\x12ApplicationService\x12e\n\x06Create\x12\x1d.api.CreateApplicationRequest\x1a\x1e.api.CreateApplicationResponse\"\x1c\x82\xd3\xe4\x93\x02\x16\"\x11/api/applications:\x01*\x12^\n\x03Get\x12\x1a.api.GetApplicationRequest\x1a\x1b.api.GetApplicationResponse\"\x1e\x82\xd3\xe4\x93\x02\x18\x12\x16/api/applications/{id}\x12n\n\x06Update\x12\x1d.api.UpdateApplicationRequest\x1a\x16.google.protobuf.Empty\"-\x82\xd3\xe4\x93\x02\'\x1a\"/api/applications/{application.id}:\x01*\x12_\n\x06Delete\x12\x1d.api.DeleteApplicationRequest\x1a\x16.google.protobuf.Empty\"\x1e\x82\xd3\xe4\x93\x02\x18*\x16/api/applications/{id}\x12^\n\x04List\x12\x1c.api.ListApplicationsRequest\x1a\x1d.api.ListApplicationsResponse\"\x19\x82\xd3\xe4\x93\x02\x13\x12\x11/api/applications\x12\x88\x01\n\x10ListIntegrations\x12\x1c.api.ListIntegrationsRequest\x1a\x1d.api.ListIntegrationsResponse\"7\x82\xd3\xe4\x93\x021\x12//api/applications/{application_id}/integrations\x12\x9f\x01\n\x15CreateHttpIntegration\x12!.api.CreateHttpIntegrationRequest\x1a\x16.google.protobuf.Empty\"K\x82\xd3\xe4\x93\x02E\"@/api/applications/{integration.application_id}/integrations/http:\x01*\x12\x93\x01\n\x12GetHttpIntegration\x12\x1e.api.GetHttpIntegrationRequest\x1a\x1f.api.GetHttpIntegrationResponse\"<\x82\xd3\xe4\x93\x026\x124/api/applications/{application_id}/integrations/http\x12\x9f\x01\n\x15UpdateHttpIntegration\x12!.api.UpdateHttpIntegrationRequest\x1a\x16.google.protobuf.Empty\"K\x82\xd3\xe4\x93\x02E\x1a@/api/applications/{integration.application_id}/integrations/http:\x01*\x12\x90\x01\n\x15DeleteHttpIntegration\x12!.api.DeleteHttpIntegrationRequest\x1a\x16.google.protobuf.Empty\"<\x82\xd3\xe4\x93\x026*4/api/applications/{application_id}/integrations/http\x12\xab\x01\n\x19CreateInfluxDbIntegration\x12%.api.CreateInfluxDbIntegrationRequest\x1a\x16.google.protobuf.Empty\"O\x82\xd3\xe4\x93\x02I\"D/api/applications/{integration.application_id}/integrations/influxdb:\x01*\x12\xa3\x01\n\x16GetInfluxDbIntegration\x12\".api.GetInfluxDbIntegrationRequest\x1a#.api.GetInfluxDbIntegrationResponse\"@\x82\xd3\xe4\x93\x02:\x128/api/applications/{application_id}/integrations/influxdb\x12\xab\x01\n\x19UpdateInfluxDbIntegration\x12%.api.UpdateInfluxDbIntegrationRequest\x1a\x16.google.protobuf.Empty\"O\x82\xd3\xe4\x93\x02I\x1aD/api/applications/{integration.application_id}/integrations/influxdb:\x01*\x12\x9c\x01\n\x19DeleteInfluxDbIntegration\x12%.api.DeleteInfluxDbIntegrationRequest\x1a\x16.google.protobuf.Empty\"@\x82\xd3\xe4\x93\x02:*8/api/applications/{application_id}/integrations/influxdb\x12\xb4\x01\n\x1cCreateThingsBoardIntegration\x12(.api.CreateThingsBoardIntegrationRequest\x1a\x16.google.protobuf.Empty\"R\x82\xd3\xe4\x93\x02L\"G/api/applications/{integration.application_id}/integrations/thingsboard:\x01*\x12\xaf\x01\n\x19GetThingsBoardIntegration\x12%.api.GetThingsBoardIntegrationRequest\x1a&.api.GetThingsBoardIntegrationResponse\"C\x82\xd3\xe4\x93\x02=\x12;/api/applications/{application_id}/integrations/thingsboard\x12\xb4\x01\n\x1cUpdateThingsBoardIntegration\x12(.api.UpdateThingsBoardIntegrationRequest\x1a\x16.google.protobuf.Empty\"R\x82\xd3\xe4\x93\x02L\x1aG/api/applications/{integration.application_id}/integrations/thingsboard:\x01*\x12\xa5\x01\n\x1cDeleteThingsBoardIntegration\x12(.api.DeleteThingsBoardIntegrationRequest\x1a\x16.google.protobuf.Empty\"C\x82\xd3\xe4\x93\x02=*;/api/applications/{application_id}/integrations/thingsboard\x12\xae\x01\n\x1aCreateMyDevicesIntegration\x12&.api.CreateMyDevicesIntegrationRequest\x1a\x16.google.protobuf.Empty\"P\x82\xd3\xe4\x93\x02J\"E/api/applications/{integration.application_id}/integrations/mydevices:\x01*\x12\xa7\x01\n\x17GetMyDevicesIntegration\x12#.api.GetMyDevicesIntegrationRequest\x1a$.api.GetMyDevicesIntegrationResponse\"A\x82\xd3\xe4\x93\x02;\x129/api/applications/{application_id}/integrations/mydevices\x12\xae\x01\n\x1aUpdateMyDevicesIntegration\x12&.api.UpdateMyDevicesIntegrationRequest\x1a\x16.google.protobuf.Empty\"P\x82\xd3\xe4\x93\x02J\x1aE/api/applications/{integration.application_id}/integrations/mydevices:\x01*\x12\x9f\x01\n\x1aDeleteMyDevicesIntegration\x12&.api.DeleteMyDevicesIntegrationRequest\x1a\x16.google.protobuf.Empty\"A\x82\xd3\xe4\x93\x02;*9/api/applications/{application_id}/integrations/mydevices\x12\xae\x01\n\x1aCreateLoraCloudIntegration\x12&.api.CreateLoraCloudIntegrationRequest\x1a\x16.google.protobuf.Empty\"P\x82\xd3\xe4\x93\x02J\"E/api/applications/{integration.application_id}/integrations/loracloud:\x01*\x12\xa7\x01\n\x17GetLoraCloudIntegration\x12#.api.GetLoraCloudIntegrationRequest\x1a$.api.GetLoraCloudIntegrationResponse\"A\x82\xd3\xe4\x93\x02;\x129/api/applications/{application_id}/integrations/loracloud\x12\xae\x01\n\x1aUpdateLoraCloudIntegration\x12&.api.UpdateLoraCloudIntegrationRequest\x1a\x16.google.protobuf.Empty\"P\x82\xd3\xe4\x93\x02J\x1aE/api/applications/{integration.application_id}/integrations/loracloud:\x01*\x12\x9f\x01\n\x1aDeleteLoraCloudIntegration\x12&.api.DeleteLoraCloudIntegrationRequest\x1a\x16.google.protobuf.Empty\"A\x82\xd3\xe4\x93\x02;*9/api/applications/{application_id}/integrations/loracloud\x12\xb0\x01\n\x1aCreateGcpPubSubIntegration\x12&.api.CreateGcpPubSubIntegrationRequest\x1a\x16.google.protobuf.Empty\"R\x82\xd3\xe4\x93\x02L\"G/api/applications/{integration.application_id}/integrations/gcp-pub-sub:\x01*\x12\xa9\x01\n\x17GetGcpPubSubIntegration\x12#.api.GetGcpPubSubIntegrationRequest\x1a$.api.GetGcpPubSubIntegrationResponse\"C\x82\xd3\xe4\x93\x02=\x12;/api/applications/{application_id}/integrations/gcp-pub-sub\x12\xb0\x01\n\x1aUpdateGcpPubSubIntegration\x12&.api.UpdateGcpPubSubIntegrationRequest\x1a\x16.google.protobuf.Empty\"R\x82\xd3\xe4\x93\x02L\x1aG/api/applications/{integration.application_id}/integrations/gcp-pub-sub:\x01*\x12\xa1\x01\n\x1aDeleteGcpPubSubIntegration\x12&.api.DeleteGcpPubSubIntegrationRequest\x1a\x16.google.protobuf.Empty\"C\x82\xd3\xe4\x93\x02=*;/api/applications/{application_id}/integrations/gcp-pub-sub\x12\xa6\x01\n\x17CreateAwsSnsIntegration\x12#.api.CreateAwsSnsIntegrationRequest\x1a\x16.google.protobuf.Empty\"N\x82\xd3\xe4\x93\x02H\"C/api/applications/{integration.application_id}/integrations/aws-sns:\x01*\x12\x9c\x01\n\x14GetAwsSnsIntegration\x12 .api.GetAwsSnsIntegrationRequest\x1a!.api.GetAwsSnsIntegrationResponse\"?\x82\xd3\xe4\x93\x029\x127/api/applications/{application_id}/integrations/aws-sns\x12\xa6\x01\n\x17UpdateAwsSnsIntegration\x12#.api.UpdateAwsSnsIntegrationRequest\x1a\x16.google.protobuf.Empty\"N\x82\xd3\xe4\x93\x02H\x1aC/api/applications/{integration.application_id}/integrations/aws-sns:\x01*\x12\x97\x01\n\x17DeleteAwsSnsIntegration\x12#.api.DeleteAwsSnsIntegrationRequest\x1a\x16.google.protobuf.Empty\"?\x82\xd3\xe4\x93\x029*7/api/applications/{application_id}/integrations/aws-sns\x12\xc2\x01\n CreateAzureServiceBusIntegration\x12,.api.CreateAzureServiceBusIntegrationRequest\x1a\x16.google.protobuf.Empty\"X\x82\xd3\xe4\x93\x02R\"M/api/applications/{integration.application_id}/integrations/azure-service-bus:\x01*\x12\xc1\x01\n\x1dGetAzureServiceBusIntegration\x12).api.GetAzureServiceBusIntegrationRequest\x1a*.api.GetAzureServiceBusIntegrationResponse\"I\x82\xd3\xe4\x93\x02C\x12A/api/applications/{application_id}/integrations/azure-service-bus\x12\xc2\x01\n UpdateAzureServiceBusIntegration\x12,.api.UpdateAzureServiceBusIntegrationRequest\x1a\x16.google.protobuf.Empty\"X\x82\xd3\xe4\x93\x02R\x1aM/api/applications/{integration.application_id}/integrations/azure-service-bus:\x01*\x12\xb3\x01\n DeleteAzureServiceBusIntegration\x12,.api.DeleteAzureServiceBusIntegrationRequest\x1a\x16.google.protobuf.Empty\"I\x82\xd3\xe4\x93\x02C*A/api/applications/{application_id}/integrations/azure-service-bus\x12\xb5\x01\n\x1cCreatePilotThingsIntegration\x12(.api.CreatePilotThingsIntegrationRequest\x1a\x16.google.protobuf.Empty\"S\x82\xd3\xe4\x93\x02M\"H/api/applications/{integration.application_id}/integrations/pilot-things:\x01*\x12\xb0\x01\n\x19GetPilotThingsIntegration\x12%.api.GetPilotThingsIntegrationRequest\x1a&.api.GetPilotThingsIntegrationResponse\"D\x82\xd3\xe4\x93\x02>\x12</api/applications/{application_id}/integrations/pilot-things\x12\xb5\x01\n\x1cUpdatePilotThingsIntegration\x12(.api.UpdatePilotThingsIntegrationRequest\x1a\x16.google.protobuf.Empty\"S\x82\xd3\xe4\x93\x02M\x1aH/api/applications/{integration.application_id}/integrations/pilot-things:\x01*\x12\xa6\x01\n\x1cDeletePilotThingsIntegration\x12(.api.DeletePilotThingsIntegrationRequest\x1a\x16.google.protobuf.Empty\"D\x82\xd3\xe4\x93\x02>*</api/applications/{application_id}/integrations/pilot-things\x12\xa2\x01\n\x16CreateIftttIntegration\x12\".api.CreateIftttIntegrationRequest\x1a\x16.google.protobuf.Empty\"L\x82\xd3\xe4\x93\x02F\"A/api/applications/{integration.application_id}/integrations/ifttt:\x01*\x12\x97\x01\n\x13GetIftttIntegration\x12\x1f.api.GetIftttIntegrationRequest\x1a .api.GetIftttIntegrationResponse\"=\x82\xd3\xe4\x93\x027\x125/api/applications/{application_id}/integrations/ifttt\x12\xa2\x01\n\x16UpdateIftttIntegration\x12\".api.UpdateIftttIntegrationRequest\x1a\x16.google.protobuf.Empty\"L\x82\xd3\xe4\x93\x02F\x1aA/api/applications/{integration.application_id}/integrations/ifttt:\x01*\x12\x93\x01\n\x16DeleteIftttIntegration\x12\".api.DeleteIftttIntegrationRequest\x1a\x16.google.protobuf.Empty\"=\x82\xd3\xe4\x93\x027*5/api/applications/{application_id}/integrations/ifttt\x12\xe1\x01\n(GenerateMqttIntegrationClientCertificate\x124.api.GenerateMqttIntegrationClientCertificateRequest\x1a5.api.GenerateMqttIntegrationClientCertificateResponse\"H\x82\xd3\xe4\x93\x02B\"@/api/applications/{application_id}/integrations/mqtt/certificateBh\n\x11io.chirpstack.apiB\x10ApplicationProtoP\x01Z.github.com/chirpstack/chirpstack/api/go/v4/api\xaa\x02\x0eChirpstack.ApiJ\xe9\xc1\x01\n\x07\x12\x05\x00\x00\xc3\x08\x01\n\x08\n\x01\x0c\x12\x03\x00\x00\x12\n\x08\n\x01\x02\x12\x03\x02\x00\x0c\n\x08\n\x01\x08\x12\x03\x04\x00E\n\t\n\x02\x08\x0b\x12\x03\x04\x00E\n\x08\n\x01\x08\x12\x03\x05\x00*\n\t\n\x02\x08\x01\x12\x03\x05\x00*\n\x08\n\x01\x08\x12\x03\x06\x00\"\n\t\n\x02\x08\n\x12\x03\x06\x00\"\n\x08\n\x01\x08\x12\x03\x07\x001\n\t\n\x02\x08\x08\x12\x03\x07\x001\n\x08\n\x01\x08\x12\x03\x08\x00+\n\t\n\x02\x08%\x12\x03\x08\x00+\n\t\n\x02\x03\x00\x12\x03\n\x00&\n\t\n\x02\x03\x01\x12\x03\x0b\x00)\n\t\n\x02\x03\x02\x12\x03\x0c\x00%\nb\n\x02\x06\x00\x12\x05\x10\x00\xab\x03\x01\x1aU ApplicationService is the service providing API methods for managing\n applications.\n\n\n\n\x03\x06\x00\x01\x12\x03\x10\x08\x1a\n5\n\x04\x06\x00\x02\x00\x12\x04\x12\x02\x17\x03\x1a\' Create creates the given application.\n\n\x0c\n\x05\x06\x00\x02\x00\x01\x12\x03\x12\x06\x0c\n\x0c\n\x05\x06\x00\x02\x00\x02\x12\x03\x12\r%\n\x0c\n\x05\x06\x00\x02\x00\x03\x12\x03\x120I\n\r\n\x05\x06\x00\x02\x00\x04\x12\x04\x13\x04\x16\x06\n\x11\n\t\x06\x00\x02\x00\x04\xb0\xca\xbc\"\x12\x04\x13\x04\x16\x06\n5\n\x04\x06\x00\x02\x01\x12\x04\x1a\x02\x1e\x03\x1a\' Get the application for the given ID.\n\n\x0c\n\x05\x06\x00\x02\x01\x01\x12\x03\x1a\x06\t\n\x0c\n\x05\x06\x00\x02\x01\x02\x12\x03\x1a\n\x1f\n\x0c\n\x05\x06\x00\x02\x01\x03\x12\x03\x1a*@\n\r\n\x05\x06\x00\x02\x01\x04\x12\x04\x1b\x04\x1d\x06\n\x11\n\t\x06\x00\x02\x01\x04\xb0\xca\xbc\"\x12\x04\x1b\x04\x1d\x06\n5\n\x04\x06\x00\x02\x02\x12\x04!\x02&\x03\x1a\' Update updates the given application.\n\n\x0c\n\x05\x06\x00\x02\x02\x01\x12\x03!\x06\x0c\n\x0c\n\x05\x06\x00\x02\x02\x02\x12\x03!\r%\n\x0c\n\x05\x06\x00\x02\x02\x03\x12\x03!0E\n\r\n\x05\x06\x00\x02\x02\x04\x12\x04\"\x04%\x06\n\x11\n\t\x06\x00\x02\x02\x04\xb0\xca\xbc\"\x12\x04\"\x04%\x06\n8\n\x04\x06\x00\x02\x03\x12\x04)\x02-\x03\x1a* Delete the application for the given ID.\n\n\x0c\n\x05\x06\x00\x02\x03\x01\x12\x03)\x06\x0c\n\x0c\n\x05\x06\x00\x02\x03\x02\x12\x03)\r%\n\x0c\n\x05\x06\x00\x02\x03\x03\x12\x03)0E\n\r\n\x05\x06\x00\x02\x03\x04\x12\x04*\x04,\x06\n\x11\n\t\x06\x00\x02\x03\x04\xb0\xca\xbc\"\x12\x04*\x04,\x06\n-\n\x04\x06\x00\x02\x04\x12\x040\x024\x03\x1a\x1f Get the list of applications.\n\n\x0c\n\x05\x06\x00\x02\x04\x01\x12\x030\x06\n\n\x0c\n\x05\x06\x00\x02\x04\x02\x12\x030\x0b\"\n\x0c\n\x05\x06\x00\x02\x04\x03\x12\x030-E\n\r\n\x05\x06\x00\x02\x04\x04\x12\x041\x043\x06\n\x11\n\t\x06\x00\x02\x04\x04\xb0\xca\xbc\"\x12\x041\x043\x06\n1\n\x04\x06\x00\x02\x05\x12\x047\x02<\x03\x1a# List all configured integrations.\n\n\x0c\n\x05\x06\x00\x02\x05\x01\x12\x037\x06\x16\n\x0c\n\x05\x06\x00\x02\x05\x02\x12\x037\x17.\n\x0c\n\x05\x06\x00\x02\x05\x03\x12\x038\x0f\'\n\r\n\x05\x06\x00\x02\x05\x04\x12\x049\x04;\x06\n\x11\n\t\x06\x00\x02\x05\x04\xb0\xca\xbc\"\x12\x049\x04;\x06\n(\n\x04\x06\x00\x02\x06\x12\x04?\x02E\x03\x1a\x1a Create HTTP integration.\n\n\x0c\n\x05\x06\x00\x02\x06\x01\x12\x03?\x06\x1b\n\x0c\n\x05\x06\x00\x02\x06\x02\x12\x03?\x1c8\n\x0c\n\x05\x06\x00\x02\x06\x03\x12\x03@\x0f$\n\r\n\x05\x06\x00\x02\x06\x04\x12\x04A\x04D\x06\n\x11\n\t\x06\x00\x02\x06\x04\xb0\xca\xbc\"\x12\x04A\x04D\x06\n4\n\x04\x06\x00\x02\x07\x12\x04H\x02M\x03\x1a& Get the configured HTTP integration.\n\n\x0c\n\x05\x06\x00\x02\x07\x01\x12\x03H\x06\x18\n\x0c\n\x05\x06\x00\x02\x07\x02\x12\x03H\x192\n\x0c\n\x05\x06\x00\x02\x07\x03\x12\x03I\x0f)\n\r\n\x05\x06\x00\x02\x07\x04\x12\x04J\x04L\x06\n\x11\n\t\x06\x00\x02\x07\x04\xb0\xca\xbc\"\x12\x04J\x04L\x06\n,\n\x04\x06\x00\x02\x08\x12\x04P\x02V\x03\x1a\x1e Update the HTTP integration.\n\n\x0c\n\x05\x06\x00\x02\x08\x01\x12\x03P\x06\x1b\n\x0c\n\x05\x06\x00\x02\x08\x02\x12\x03P\x1c8\n\x0c\n\x05\x06\x00\x02\x08\x03\x12\x03Q\x0f$\n\r\n\x05\x06\x00\x02\x08\x04\x12\x04R\x04U\x06\n\x11\n\t\x06\x00\x02\x08\x04\xb0\xca\xbc\"\x12\x04R\x04U\x06\n,\n\x04\x06\x00\x02\t\x12\x04Y\x02^\x03\x1a\x1e Delete the HTTP integration.\n\n\x0c\n\x05\x06\x00\x02\t\x01\x12\x03Y\x06\x1b\n\x0c\n\x05\x06\x00\x02\t\x02\x12\x03Y\x1c8\n\x0c\n\x05\x06\x00\x02\t\x03\x12\x03Z\x0f$\n\r\n\x05\x06\x00\x02\t\x04\x12\x04[\x04]\x06\n\x11\n\t\x06\x00\x02\t\x04\xb0\xca\xbc\"\x12\x04[\x04]\x06\n,\n\x04\x06\x00\x02\n\x12\x04a\x02h\x03\x1a\x1e Create InfluxDb integration.\n\n\x0c\n\x05\x06\x00\x02\n\x01\x12\x03a\x06\x1f\n\x0c\n\x05\x06\x00\x02\n\x02\x12\x03a @\n\x0c\n\x05\x06\x00\x02\n\x03\x12\x03b\x0f$\n\r\n\x05\x06\x00\x02\n\x04\x12\x04c\x04g\x06\n\x11\n\t\x06\x00\x02\n\x04\xb0\xca\xbc\"\x12\x04c\x04g\x06\n)\n\x04\x06\x00\x02\x0b\x12\x04k\x02p\x03\x1a\x1b Get InfluxDb integration.\n\n\x0c\n\x05\x06\x00\x02\x0b\x01\x12\x03k\x06\x1c\n\x0c\n\x05\x06\x00\x02\x0b\x02\x12\x03k\x1d:\n\x0c\n\x05\x06\x00\x02\x0b\x03\x12\x03l\x0f-\n\r\n\x05\x06\x00\x02\x0b\x04\x12\x04m\x04o\x06\n\x11\n\t\x06\x00\x02\x0b\x04\xb0\xca\xbc\"\x12\x04m\x04o\x06\n,\n\x04\x06\x00\x02\x0c\x12\x04s\x02z\x03\x1a\x1e Update InfluxDb integration.\n\n\x0c\n\x05\x06\x00\x02\x0c\x01\x12\x03s\x06\x1f\n\x0c\n\x05\x06\x00\x02\x0c\x02\x12\x03s @\n\x0c\n\x05\x06\x00\x02\x0c\x03\x12\x03t\x0f$\n\r\n\x05\x06\x00\x02\x0c\x04\x12\x04u\x04y\x06\n\x11\n\t\x06\x00\x02\x0c\x04\xb0\xca\xbc\"\x12\x04u\x04y\x06\n-\n\x04\x06\x00\x02\r\x12\x05}\x02\x82\x01\x03\x1a\x1e Delete InfluxDb integration.\n\n\x0c\n\x05\x06\x00\x02\r\x01\x12\x03}\x06\x1f\n\x0c\n\x05\x06\x00\x02\r\x02\x12\x03} @\n\x0c\n\x05\x06\x00\x02\r\x03\x12\x03~\x0f$\n\x0e\n\x05\x06\x00\x02\r\x04\x12\x05\x7f\x04\x81\x01\x06\n\x12\n\t\x06\x00\x02\r\x04\xb0\xca\xbc\"\x12\x05\x7f\x04\x81\x01\x06\n1\n\x04\x06\x00\x02\x0e\x12\x06\x85\x01\x02\x8c\x01\x03\x1a! Create ThingsBoard integration.\n\n\r\n\x05\x06\x00\x02\x0e\x01\x12\x04\x85\x01\x06\"\n\r\n\x05\x06\x00\x02\x0e\x02\x12\x04\x85\x01#F\n\r\n\x05\x06\x00\x02\x0e\x03\x12\x04\x86\x01\x0f$\n\x0f\n\x05\x06\x00\x02\x0e\x04\x12\x06\x87\x01\x04\x8b\x01\x06\n\x13\n\t\x06\x00\x02\x0e\x04\xb0\xca\xbc\"\x12\x06\x87\x01\x04\x8b\x01\x06\n.\n\x04\x06\x00\x02\x0f\x12\x06\x8f\x01\x02\x94\x01\x03\x1a\x1e Get ThingsBoard integration.\n\n\r\n\x05\x06\x00\x02\x0f\x01\x12\x04\x8f\x01\x06\x1f\n\r\n\x05\x06\x00\x02\x0f\x02\x12\x04\x8f\x01 @\n\r\n\x05\x06\x00\x02\x0f\x03\x12\x04\x90\x01\x0f0\n\x0f\n\x05\x06\x00\x02\x0f\x04\x12\x06\x91\x01\x04\x93\x01\x06\n\x13\n\t\x06\x00\x02\x0f\x04\xb0\xca\xbc\"\x12\x06\x91\x01\x04\x93\x01\x06\n1\n\x04\x06\x00\x02\x10\x12\x06\x97\x01\x02\x9e\x01\x03\x1a! Update ThingsBoard integration.\n\n\r\n\x05\x06\x00\x02\x10\x01\x12\x04\x97\x01\x06\"\n\r\n\x05\x06\x00\x02\x10\x02\x12\x04\x97\x01#F\n\r\n\x05\x06\x00\x02\x10\x03\x12\x04\x98\x01\x0f$\n\x0f\n\x05\x06\x00\x02\x10\x04\x12\x06\x99\x01\x04\x9d\x01\x06\n\x13\n\t\x06\x00\x02\x10\x04\xb0\xca\xbc\"\x12\x06\x99\x01\x04\x9d\x01\x06\n1\n\x04\x06\x00\x02\x11\x12\x06\xa1\x01\x02\xa6\x01\x03\x1a! Delete ThingsBoard integration.\n\n\r\n\x05\x06\x00\x02\x11\x01\x12\x04\xa1\x01\x06\"\n\r\n\x05\x06\x00\x02\x11\x02\x12\x04\xa1\x01#F\n\r\n\x05\x06\x00\x02\x11\x03\x12\x04\xa2\x01\x0f$\n\x0f\n\x05\x06\x00\x02\x11\x04\x12\x06\xa3\x01\x04\xa5\x01\x06\n\x13\n\t\x06\x00\x02\x11\x04\xb0\xca\xbc\"\x12\x06\xa3\x01\x04\xa5\x01\x06\n/\n\x04\x06\x00\x02\x12\x12\x06\xa9\x01\x02\xb0\x01\x03\x1a\x1f Create myDevices integration.\n\n\r\n\x05\x06\x00\x02\x12\x01\x12\x04\xa9\x01\x06 \n\r\n\x05\x06\x00\x02\x12\x02\x12\x04\xa9\x01!B\n\r\n\x05\x06\x00\x02\x12\x03\x12\x04\xaa\x01\x0f$\n\x0f\n\x05\x06\x00\x02\x12\x04\x12\x06\xab\x01\x04\xaf\x01\x06\n\x13\n\t\x06\x00\x02\x12\x04\xb0\xca\xbc\"\x12\x06\xab\x01\x04\xaf\x01\x06\n,\n\x04\x06\x00\x02\x13\x12\x06\xb3\x01\x02\xb8\x01\x03\x1a\x1c Get myDevices integration.\n\n\r\n\x05\x06\x00\x02\x13\x01\x12\x04\xb3\x01\x06\x1d\n\r\n\x05\x06\x00\x02\x13\x02\x12\x04\xb3\x01\x1e<\n\r\n\x05\x06\x00\x02\x13\x03\x12\x04\xb4\x01\x0f.\n\x0f\n\x05\x06\x00\x02\x13\x04\x12\x06\xb5\x01\x04\xb7\x01\x06\n\x13\n\t\x06\x00\x02\x13\x04\xb0\xca\xbc\"\x12\x06\xb5\x01\x04\xb7\x01\x06\n/\n\x04\x06\x00\x02\x14\x12\x06\xbb\x01\x02\xc2\x01\x03\x1a\x1f Update myDevices integration.\n\n\r\n\x05\x06\x00\x02\x14\x01\x12\x04\xbb\x01\x06 \n\r\n\x05\x06\x00\x02\x14\x02\x12\x04\xbb\x01!B\n\r\n\x05\x06\x00\x02\x14\x03\x12\x04\xbc\x01\x0f$\n\x0f\n\x05\x06\x00\x02\x14\x04\x12\x06\xbd\x01\x04\xc1\x01\x06\n\x13\n\t\x06\x00\x02\x14\x04\xb0\xca\xbc\"\x12\x06\xbd\x01\x04\xc1\x01\x06\n/\n\x04\x06\x00\x02\x15\x12\x06\xc5\x01\x02\xca\x01\x03\x1a\x1f Delete myDevices integration.\n\n\r\n\x05\x06\x00\x02\x15\x01\x12\x04\xc5\x01\x06 \n\r\n\x05\x06\x00\x02\x15\x02\x12\x04\xc5\x01!B\n\r\n\x05\x06\x00\x02\x15\x03\x12\x04\xc6\x01\x0f$\n\x0f\n\x05\x06\x00\x02\x15\x04\x12\x06\xc7\x01\x04\xc9\x01\x06\n\x13\n\t\x06\x00\x02\x15\x04\xb0\xca\xbc\"\x12\x06\xc7\x01\x04\xc9\x01\x06\n/\n\x04\x06\x00\x02\x16\x12\x06\xcd\x01\x02\xd4\x01\x03\x1a\x1f Create LoRaCloud integration.\n\n\r\n\x05\x06\x00\x02\x16\x01\x12\x04\xcd\x01\x06 \n\r\n\x05\x06\x00\x02\x16\x02\x12\x04\xcd\x01!B\n\r\n\x05\x06\x00\x02\x16\x03\x12\x04\xce\x01\x0f$\n\x0f\n\x05\x06\x00\x02\x16\x04\x12\x06\xcf\x01\x04\xd3\x01\x06\n\x13\n\t\x06\x00\x02\x16\x04\xb0\xca\xbc\"\x12\x06\xcf\x01\x04\xd3\x01\x06\n,\n\x04\x06\x00\x02\x17\x12\x06\xd7\x01\x02\xdc\x01\x03\x1a\x1c Get LoRaCloud integration.\n\n\r\n\x05\x06\x00\x02\x17\x01\x12\x04\xd7\x01\x06\x1d\n\r\n\x05\x06\x00\x02\x17\x02\x12\x04\xd7\x01\x1e<\n\r\n\x05\x06\x00\x02\x17\x03\x12\x04\xd8\x01\x0f.\n\x0f\n\x05\x06\x00\x02\x17\x04\x12\x06\xd9\x01\x04\xdb\x01\x06\n\x13\n\t\x06\x00\x02\x17\x04\xb0\xca\xbc\"\x12\x06\xd9\x01\x04\xdb\x01\x06\n/\n\x04\x06\x00\x02\x18\x12\x06\xdf\x01\x02\xe6\x01\x03\x1a\x1f Update LoRaCloud integration.\n\n\r\n\x05\x06\x00\x02\x18\x01\x12\x04\xdf\x01\x06 \n\r\n\x05\x06\x00\x02\x18\x02\x12\x04\xdf\x01!B\n\r\n\x05\x06\x00\x02\x18\x03\x12\x04\xe0\x01\x0f$\n\x0f\n\x05\x06\x00\x02\x18\x04\x12\x06\xe1\x01\x04\xe5\x01\x06\n\x13\n\t\x06\x00\x02\x18\x04\xb0\xca\xbc\"\x12\x06\xe1\x01\x04\xe5\x01\x06\n/\n\x04\x06\x00\x02\x19\x12\x06\xe9\x01\x02\xee\x01\x03\x1a\x1f Delete LoRaCloud integration.\n\n\r\n\x05\x06\x00\x02\x19\x01\x12\x04\xe9\x01\x06 \n\r\n\x05\x06\x00\x02\x19\x02\x12\x04\xe9\x01!B\n\r\n\x05\x06\x00\x02\x19\x03\x12\x04\xea\x01\x0f$\n\x0f\n\x05\x06\x00\x02\x19\x04\x12\x06\xeb\x01\x04\xed\x01\x06\n\x13\n\t\x06\x00\x02\x19\x04\xb0\xca\xbc\"\x12\x06\xeb\x01\x04\xed\x01\x06\n1\n\x04\x06\x00\x02\x1a\x12\x06\xf1\x01\x02\xf8\x01\x03\x1a! Create GCP Pub/Sub integration.\n\n\r\n\x05\x06\x00\x02\x1a\x01\x12\x04\xf1\x01\x06 \n\r\n\x05\x06\x00\x02\x1a\x02\x12\x04\xf1\x01!B\n\r\n\x05\x06\x00\x02\x1a\x03\x12\x04\xf2\x01\x0f$\n\x0f\n\x05\x06\x00\x02\x1a\x04\x12\x06\xf3\x01\x04\xf7\x01\x06\n\x13\n\t\x06\x00\x02\x1a\x04\xb0\xca\xbc\"\x12\x06\xf3\x01\x04\xf7\x01\x06\n.\n\x04\x06\x00\x02\x1b\x12\x06\xfb\x01\x02\x80\x02\x03\x1a\x1e Get GCP Pub/Sub integration.\n\n\r\n\x05\x06\x00\x02\x1b\x01\x12\x04\xfb\x01\x06\x1d\n\r\n\x05\x06\x00\x02\x1b\x02\x12\x04\xfb\x01\x1e<\n\r\n\x05\x06\x00\x02\x1b\x03\x12\x04\xfc\x01\x0f.\n\x0f\n\x05\x06\x00\x02\x1b\x04\x12\x06\xfd\x01\x04\xff\x01\x06\n\x13\n\t\x06\x00\x02\x1b\x04\xb0\xca\xbc\"\x12\x06\xfd\x01\x04\xff\x01\x06\n1\n\x04\x06\x00\x02\x1c\x12\x06\x83\x02\x02\x8a\x02\x03\x1a! Update GCP Pub/Sub integration.\n\n\r\n\x05\x06\x00\x02\x1c\x01\x12\x04\x83\x02\x06 \n\r\n\x05\x06\x00\x02\x1c\x02\x12\x04\x83\x02!B\n\r\n\x05\x06\x00\x02\x1c\x03\x12\x04\x84\x02\x0f$\n\x0f\n\x05\x06\x00\x02\x1c\x04\x12\x06\x85\x02\x04\x89\x02\x06\n\x13\n\t\x06\x00\x02\x1c\x04\xb0\xca\xbc\"\x12\x06\x85\x02\x04\x89\x02\x06\n1\n\x04\x06\x00\x02\x1d\x12\x06\x8d\x02\x02\x92\x02\x03\x1a! Delete GCP Pub/Sub integration.\n\n\r\n\x05\x06\x00\x02\x1d\x01\x12\x04\x8d\x02\x06 \n\r\n\x05\x06\x00\x02\x1d\x02\x12\x04\x8d\x02!B\n\r\n\x05\x06\x00\x02\x1d\x03\x12\x04\x8e\x02\x0f$\n\x0f\n\x05\x06\x00\x02\x1d\x04\x12\x06\x8f\x02\x04\x91\x02\x06\n\x13\n\t\x06\x00\x02\x1d\x04\xb0\xca\xbc\"\x12\x06\x8f\x02\x04\x91\x02\x06\n-\n\x04\x06\x00\x02\x1e\x12\x06\x95\x02\x02\x9c\x02\x03\x1a\x1d Create AWS SNS integration.\n\n\r\n\x05\x06\x00\x02\x1e\x01\x12\x04\x95\x02\x06\x1d\n\r\n\x05\x06\x00\x02\x1e\x02\x12\x04\x95\x02\x1e<\n\r\n\x05\x06\x00\x02\x1e\x03\x12\x04\x96\x02\x0f$\n\x0f\n\x05\x06\x00\x02\x1e\x04\x12\x06\x97\x02\x04\x9b\x02\x06\n\x13\n\t\x06\x00\x02\x1e\x04\xb0\xca\xbc\"\x12\x06\x97\x02\x04\x9b\x02\x06\n*\n\x04\x06\x00\x02\x1f\x12\x06\x9f\x02\x02\xa4\x02\x03\x1a\x1a Get AWS SNS integration.\n\n\r\n\x05\x06\x00\x02\x1f\x01\x12\x04\x9f\x02\x06\x1a\n\r\n\x05\x06\x00\x02\x1f\x02\x12\x04\x9f\x02\x1b6\n\r\n\x05\x06\x00\x02\x1f\x03\x12\x04\xa0\x02\x0f+\n\x0f\n\x05\x06\x00\x02\x1f\x04\x12\x06\xa1\x02\x04\xa3\x02\x06\n\x13\n\t\x06\x00\x02\x1f\x04\xb0\xca\xbc\"\x12\x06\xa1\x02\x04\xa3\x02\x06\n-\n\x04\x06\x00\x02 \x12\x06\xa7\x02\x02\xae\x02\x03\x1a\x1d Update AWS SNS integration.\n\n\r\n\x05\x06\x00\x02 \x01\x12\x04\xa7\x02\x06\x1d\n\r\n\x05\x06\x00\x02 \x02\x12\x04\xa7\x02\x1e<\n\r\n\x05\x06\x00\x02 \x03\x12\x04\xa8\x02\x0f$\n\x0f\n\x05\x06\x00\x02 \x04\x12\x06\xa9\x02\x04\xad\x02\x06\n\x13\n\t\x06\x00\x02 \x04\xb0\xca\xbc\"\x12\x06\xa9\x02\x04\xad\x02\x06\n-\n\x04\x06\x00\x02!\x12\x06\xb1\x02\x02\xb6\x02\x03\x1a\x1d Delete AWS SNS integration.\n\n\r\n\x05\x06\x00\x02!\x01\x12\x04\xb1\x02\x06\x1d\n\r\n\x05\x06\x00\x02!\x02\x12\x04\xb1\x02\x1e<\n\r\n\x05\x06\x00\x02!\x03\x12\x04\xb2\x02\x0f$\n\x0f\n\x05\x06\x00\x02!\x04\x12\x06\xb3\x02\x04\xb5\x02\x06\n\x13\n\t\x06\x00\x02!\x04\xb0\xca\xbc\"\x12\x06\xb3\x02\x04\xb5\x02\x06\n7\n\x04\x06\x00\x02\"\x12\x06\xb9\x02\x02\xc0\x02\x03\x1a\' Create Azure Service-Bus integration.\n\n\r\n\x05\x06\x00\x02\"\x01\x12\x04\xb9\x02\x06&\n\r\n\x05\x06\x00\x02\"\x02\x12\x04\xb9\x02\'N\n\r\n\x05\x06\x00\x02\"\x03\x12\x04\xba\x02\x0f$\n\x0f\n\x05\x06\x00\x02\"\x04\x12\x06\xbb\x02\x04\xbf\x02\x06\n\x13\n\t\x06\x00\x02\"\x04\xb0\xca\xbc\"\x12\x06\xbb\x02\x04\xbf\x02\x06\n4\n\x04\x06\x00\x02#\x12\x06\xc3\x02\x02\xc8\x02\x03\x1a$ Get Azure Service-Bus integration.\n\n\r\n\x05\x06\x00\x02#\x01\x12\x04\xc3\x02\x06#\n\r\n\x05\x06\x00\x02#\x02\x12\x04\xc3\x02$H\n\r\n\x05\x06\x00\x02#\x03\x12\x04\xc4\x02\x0f4\n\x0f\n\x05\x06\x00\x02#\x04\x12\x06\xc5\x02\x04\xc7\x02\x06\n\x13\n\t\x06\x00\x02#\x04\xb0\xca\xbc\"\x12\x06\xc5\x02\x04\xc7\x02\x06\n7\n\x04\x06\x00\x02$\x12\x06\xcb\x02\x02\xd2\x02\x03\x1a\' Update Azure Service-Bus integration.\n\n\r\n\x05\x06\x00\x02$\x01\x12\x04\xcb\x02\x06&\n\r\n\x05\x06\x00\x02$\x02\x12\x04\xcb\x02\'N\n\r\n\x05\x06\x00\x02$\x03\x12\x04\xcc\x02\x0f$\n\x0f\n\x05\x06\x00\x02$\x04\x12\x06\xcd\x02\x04\xd1\x02\x06\n\x13\n\t\x06\x00\x02$\x04\xb0\xca\xbc\"\x12\x06\xcd\x02\x04\xd1\x02\x06\n7\n\x04\x06\x00\x02%\x12\x06\xd5\x02\x02\xdb\x02\x03\x1a\' Delete Azure Service-Bus integration.\n\n\r\n\x05\x06\x00\x02%\x01\x12\x04\xd5\x02\x06&\n\r\n\x05\x06\x00\x02%\x02\x12\x04\xd5\x02\'N\n\r\n\x05\x06\x00\x02%\x03\x12\x04\xd6\x02\x0f$\n\x0f\n\x05\x06\x00\x02%\x04\x12\x06\xd7\x02\x04\xda\x02\x06\n\x13\n\t\x06\x00\x02%\x04\xb0\xca\xbc\"\x12\x06\xd7\x02\x04\xda\x02\x06\n2\n\x04\x06\x00\x02&\x12\x06\xde\x02\x02\xe5\x02\x03\x1a\" Create Pilot Things integration.\n\n\r\n\x05\x06\x00\x02&\x01\x12\x04\xde\x02\x06\"\n\r\n\x05\x06\x00\x02&\x02\x12\x04\xde\x02#F\n\r\n\x05\x06\x00\x02&\x03\x12\x04\xdf\x02\x0f$\n\x0f\n\x05\x06\x00\x02&\x04\x12\x06\xe0\x02\x04\xe4\x02\x06\n\x13\n\t\x06\x00\x02&\x04\xb0\xca\xbc\"\x12\x06\xe0\x02\x04\xe4\x02\x06\n/\n\x04\x06\x00\x02\'\x12\x06\xe8\x02\x02\xed\x02\x03\x1a\x1f Get Pilot Things integration.\n\n\r\n\x05\x06\x00\x02\'\x01\x12\x04\xe8\x02\x06\x1f\n\r\n\x05\x06\x00\x02\'\x02\x12\x04\xe8\x02 @\n\r\n\x05\x06\x00\x02\'\x03\x12\x04\xe9\x02\x0f0\n\x0f\n\x05\x06\x00\x02\'\x04\x12\x06\xea\x02\x04\xec\x02\x06\n\x13\n\t\x06\x00\x02\'\x04\xb0\xca\xbc\"\x12\x06\xea\x02\x04\xec\x02\x06\n2\n\x04\x06\x00\x02(\x12\x06\xf0\x02\x02\xf7\x02\x03\x1a\" Update Pilot Things integration.\n\n\r\n\x05\x06\x00\x02(\x01\x12\x04\xf0\x02\x06\"\n\r\n\x05\x06\x00\x02(\x02\x12\x04\xf0\x02#F\n\r\n\x05\x06\x00\x02(\x03\x12\x04\xf1\x02\x0f$\n\x0f\n\x05\x06\x00\x02(\x04\x12\x06\xf2\x02\x04\xf6\x02\x06\n\x13\n\t\x06\x00\x02(\x04\xb0\xca\xbc\"\x12\x06\xf2\x02\x04\xf6\x02\x06\n2\n\x04\x06\x00\x02)\x12\x06\xfa\x02\x02\xff\x02\x03\x1a\" Delete Pilot Things integration.\n\n\r\n\x05\x06\x00\x02)\x01\x12\x04\xfa\x02\x06\"\n\r\n\x05\x06\x00\x02)\x02\x12\x04\xfa\x02#F\n\r\n\x05\x06\x00\x02)\x03\x12\x04\xfb\x02\x0f$\n\x0f\n\x05\x06\x00\x02)\x04\x12\x06\xfc\x02\x04\xfe\x02\x06\n\x13\n\t\x06\x00\x02)\x04\xb0\xca\xbc\"\x12\x06\xfc\x02\x04\xfe\x02\x06\n+\n\x04\x06\x00\x02*\x12\x06\x82\x03\x02\x88\x03\x03\x1a\x1b Create IFTTT integration.\n\n\r\n\x05\x06\x00\x02*\x01\x12\x04\x82\x03\x06\x1c\n\r\n\x05\x06\x00\x02*\x02\x12\x04\x82\x03\x1d:\n\r\n\x05\x06\x00\x02*\x03\x12\x04\x83\x03\x0f$\n\x0f\n\x05\x06\x00\x02*\x04\x12\x06\x84\x03\x04\x87\x03\x06\n\x13\n\t\x06\x00\x02*\x04\xb0\xca\xbc\"\x12\x06\x84\x03\x04\x87\x03\x06\n(\n\x04\x06\x00\x02+\x12\x06\x8b\x03\x02\x90\x03\x03\x1a\x18 Get IFTTT integration.\n\n\r\n\x05\x06\x00\x02+\x01\x12\x04\x8b\x03\x06\x19\n\r\n\x05\x06\x00\x02+\x02\x12\x04\x8b\x03\x1a4\n\r\n\x05\x06\x00\x02+\x03\x12\x04\x8c\x03\x0f*\n\x0f\n\x05\x06\x00\x02+\x04\x12\x06\x8d\x03\x04\x8f\x03\x06\n\x13\n\t\x06\x00\x02+\x04\xb0\xca\xbc\"\x12\x06\x8d\x03\x04\x8f\x03\x06\n+\n\x04\x06\x00\x02,\x12\x06\x93\x03\x02\x99\x03\x03\x1a\x1b Update IFTTT integration.\n\n\r\n\x05\x06\x00\x02,\x01\x12\x04\x93\x03\x06\x1c\n\r\n\x05\x06\x00\x02,\x02\x12\x04\x93\x03\x1d:\n\r\n\x05\x06\x00\x02,\x03\x12\x04\x94\x03\x0f$\n\x0f\n\x05\x06\x00\x02,\x04\x12\x06\x95\x03\x04\x98\x03\x06\n\x13\n\t\x06\x00\x02,\x04\xb0\xca\xbc\"\x12\x06\x95\x03\x04\x98\x03\x06\n+\n\x04\x06\x00\x02-\x12\x06\x9c\x03\x02\xa1\x03\x03\x1a\x1b Delete IFTTT integration.\n\n\r\n\x05\x06\x00\x02-\x01\x12\x04\x9c\x03\x06\x1c\n\r\n\x05\x06\x00\x02-\x02\x12\x04\x9c\x03\x1d:\n\r\n\x05\x06\x00\x02-\x03\x12\x04\x9d\x03\x0f$\n\x0f\n\x05\x06\x00\x02-\x04\x12\x06\x9e\x03\x04\xa0\x03\x06\n\x13\n\t\x06\x00\x02-\x04\xb0\xca\xbc\"\x12\x06\x9e\x03\x04\xa0\x03\x06\nG\n\x04\x06\x00\x02.\x12\x06\xa4\x03\x02\xaa\x03\x03\x1a7 Generates application ID specific client-certificate.\n\n\r\n\x05\x06\x00\x02.\x01\x12\x04\xa4\x03\x06.\n\r\n\x05\x06\x00\x02.\x02\x12\x04\xa5\x03\x065\n\r\n\x05\x06\x00\x02.\x03\x12\x04\xa6\x03\x0f?\n\x0f\n\x05\x06\x00\x02.\x04\x12\x06\xa7\x03\x04\xa9\x03\x06\n\x13\n\t\x06\x00\x02.\x04\xb0\xca\xbc\"\x12\x06\xa7\x03\x04\xa9\x03\x06\n\x0c\n\x02\x05\x00\x12\x06\xad\x03\x00\xb0\x03\x01\n\x0b\n\x03\x05\x00\x01\x12\x04\xad\x03\x05\r\n\x0c\n\x04\x05\x00\x02\x00\x12\x04\xae\x03\x02\x0b\n\r\n\x05\x05\x00\x02\x00\x01\x12\x04\xae\x03\x02\x06\n\r\n\x05\x05\x00\x02\x00\x02\x12\x04\xae\x03\t\n\n\x0c\n\x04\x05\x00\x02\x01\x12\x04\xaf\x03\x02\x0f\n\r\n\x05\x05\x00\x02\x01\x01\x12\x04\xaf\x03\x02\n\n\r\n\x05\x05\x00\x02\x01\x02\x12\x04\xaf\x03\r\x0e\n\x0c\n\x02\x05\x01\x12\x06\xb2\x03\x00\xbe\x03\x01\n\x0b\n\x03\x05\x01\x01\x12\x04\xb2\x03\x05\x14\n\x0c\n\x04\x05\x01\x02\x00\x12\x04\xb3\x03\x02\x0b\n\r\n\x05\x05\x01\x02\x00\x01\x12\x04\xb3\x03\x02\x06\n\r\n\x05\x05\x01\x02\x00\x02\x12\x04\xb3\x03\t\n\n\x0c\n\x04\x05\x01\x02\x01\x12\x04\xb4\x03\x02\x10\n\r\n\x05\x05\x01\x02\x01\x01\x12\x04\xb4\x03\x02\x0b\n\r\n\x05\x05\x01\x02\x01\x02\x12\x04\xb4\x03\x0e\x0f\n\x0c\n\x04\x05\x01\x02\x02\x12\x04\xb5\x03\x02\x13\n\r\n\x05\x05\x01\x02\x02\x01\x12\x04\xb5\x03\x02\x0e\n\r\n\x05\x05\x01\x02\x02\x02\x12\x04\xb5\x03\x11\x12\n\x0c\n\x04\x05\x01\x02\x03\x12\x04\xb6\x03\x02\x11\n\r\n\x05\x05\x01\x02\x03\x01\x12\x04\xb6\x03\x02\x0c\n\r\n\x05\x05\x01\x02\x03\x02\x12\x04\xb6\x03\x0f\x10\n\x0c\n\x04\x05\x01\x02\x04\x12\x04\xb7\x03\x02\x11\n\r\n\x05\x05\x01\x02\x04\x01\x12\x04\xb7\x03\x02\x0c\n\r\n\x05\x05\x01\x02\x04\x02\x12\x04\xb7\x03\x0f\x10\n\x0c\n\x04\x05\x01\x02\x05\x12\x04\xb8\x03\x02\x12\n\r\n\x05\x05\x01\x02\x05\x01\x12\x04\xb8\x03\x02\r\n\r\n\x05\x05\x01\x02\x05\x02\x12\x04\xb8\x03\x10\x11\n\x0c\n\x04\x05\x01\x02\x06\x12\x04\xb9\x03\x02\x0e\n\r\n\x05\x05\x01\x02\x06\x01\x12\x04\xb9\x03\x02\t\n\r\n\x05\x05\x01\x02\x06\x02\x12\x04\xb9\x03\x0c\r\n\x0c\n\x04\x05\x01\x02\x07\x12\x04\xba\x03\x02\x18\n\r\n\x05\x05\x01\x02\x07\x01\x12\x04\xba\x03\x02\x13\n\r\n\x05\x05\x01\x02\x07\x02\x12\x04\xba\x03\x16\x17\n\x0c\n\x04\x05\x01\x02\x08\x12\x04\xbb\x03\x02\x13\n\r\n\x05\x05\x01\x02\x08\x01\x12\x04\xbb\x03\x02\x0e\n\r\n\x05\x05\x01\x02\x08\x02\x12\x04\xbb\x03\x11\x12\n\x0c\n\x04\x05\x01\x02\t\x12\x04\xbc\x03\x02\x12\n\r\n\x05\x05\x01\x02\t\x01\x12\x04\xbc\x03\x02\r\n\r\n\x05\x05\x01\x02\t\x02\x12\x04\xbc\x03\x10\x11\n\x0c\n\x04\x05\x01\x02\n\x12\x04\xbd\x03\x02\r\n\r\n\x05\x05\x01\x02\n\x01\x12\x04\xbd\x03\x02\x07\n\r\n\x05\x05\x01\x02\n\x02\x12\x04\xbd\x03\n\x0c\n\x0c\n\x02\x04\x00\x12\x06\xc0\x03\x00\xcd\x03\x01\n\x0b\n\x03\x04\x00\x01\x12\x04\xc0\x03\x08\x13\n]\n\x04\x04\x00\x02\x00\x12\x04\xc3\x03\x02\x10\x1aO Application ID (UUID).\n Note: on create this will be automatically generated.\n\n\r\n\x05\x04\x00\x02\x00\x05\x12\x04\xc3\x03\x02\x08\n\r\n\x05\x04\x00\x02\x00\x01\x12\x04\xc3\x03\t\x0b\n\r\n\x05\x04\x00\x02\x00\x03\x12\x04\xc3\x03\x0e\x0f\n!\n\x04\x04\x00\x02\x01\x12\x04\xc6\x03\x02\x12\x1a\x13 Application name.\n\n\r\n\x05\x04\x00\x02\x01\x05\x12\x04\xc6\x03\x02\x08\n\r\n\x05\x04\x00\x02\x01\x01\x12\x04\xc6\x03\t\r\n\r\n\x05\x04\x00\x02\x01\x03\x12\x04\xc6\x03\x10\x11\n(\n\x04\x04\x00\x02\x02\x12\x04\xc9\x03\x02\x19\x1a\x1a Application description.\n\n\r\n\x05\x04\x00\x02\x02\x05\x12\x04\xc9\x03\x02\x08\n\r\n\x05\x04\x00\x02\x02\x01\x12\x04\xc9\x03\t\x14\n\r\n\x05\x04\x00\x02\x02\x03\x12\x04\xc9\x03\x17\x18\n!\n\x04\x04\x00\x02\x03\x12\x04\xcc\x03\x02\x17\x1a\x13 Tenant ID (UUID).\n\n\r\n\x05\x04\x00\x02\x03\x05\x12\x04\xcc\x03\x02\x08\n\r\n\x05\x04\x00\x02\x03\x01\x12\x04\xcc\x03\t\x12\n\r\n\x05\x04\x00\x02\x03\x03\x12\x04\xcc\x03\x15\x16\n\x0c\n\x02\x04\x01\x12\x06\xcf\x03\x00\xde\x03\x01\n\x0b\n\x03\x04\x01\x01\x12\x04\xcf\x03\x08\x1b\n&\n\x04\x04\x01\x02\x00\x12\x04\xd1\x03\x02\x10\x1a\x18 Application ID (UUID).\n\n\r\n\x05\x04\x01\x02\x00\x05\x12\x04\xd1\x03\x02\x08\n\r\n\x05\x04\x01\x02\x00\x01\x12\x04\xd1\x03\t\x0b\n\r\n\x05\x04\x01\x02\x00\x03\x12\x04\xd1\x03\x0e\x0f\n%\n\x04\x04\x01\x02\x01\x12\x04\xd4\x03\x02+\x1a\x17 Created at timestamp.\n\n\r\n\x05\x04\x01\x02\x01\x06\x12\x04\xd4\x03\x02\x1b\n\r\n\x05\x04\x01\x02\x01\x01\x12\x04\xd4\x03\x1c&\n\r\n\x05\x04\x01\x02\x01\x03\x12\x04\xd4\x03)*\n&\n\x04\x04\x01\x02\x02\x12\x04\xd7\x03\x02+\x1a\x18 Last update timestamp.\n\n\r\n\x05\x04\x01\x02\x02\x06\x12\x04\xd7\x03\x02\x1b\n\r\n\x05\x04\x01\x02\x02\x01\x12\x04\xd7\x03\x1c&\n\r\n\x05\x04\x01\x02\x02\x03\x12\x04\xd7\x03)*\n!\n\x04\x04\x01\x02\x03\x12\x04\xda\x03\x02\x12\x1a\x13 Application name.\n\n\r\n\x05\x04\x01\x02\x03\x05\x12\x04\xda\x03\x02\x08\n\r\n\x05\x04\x01\x02\x03\x01\x12\x04\xda\x03\t\r\n\r\n\x05\x04\x01\x02\x03\x03\x12\x04\xda\x03\x10\x11\n(\n\x04\x04\x01\x02\x04\x12\x04\xdd\x03\x02\x19\x1a\x1a Application description.\n\n\r\n\x05\x04\x01\x02\x04\x05\x12\x04\xdd\x03\x02\x08\n\r\n\x05\x04\x01\x02\x04\x01\x12\x04\xdd\x03\t\x14\n\r\n\x05\x04\x01\x02\x04\x03\x12\x04\xdd\x03\x17\x18\n\x0c\n\x02\x04\x02\x12\x06\xe0\x03\x00\xe3\x03\x01\n\x0b\n\x03\x04\x02\x01\x12\x04\xe0\x03\x08 \n-\n\x04\x04\x02\x02\x00\x12\x04\xe2\x03\x02\x1e\x1a\x1f Application object to create.\n\n\r\n\x05\x04\x02\x02\x00\x06\x12\x04\xe2\x03\x02\r\n\r\n\x05\x04\x02\x02\x00\x01\x12\x04\xe2\x03\x0e\x19\n\r\n\x05\x04\x02\x02\x00\x03\x12\x04\xe2\x03\x1c\x1d\n\x0c\n\x02\x04\x03\x12\x06\xe5\x03\x00\xe8\x03\x01\n\x0b\n\x03\x04\x03\x01\x12\x04\xe5\x03\x08!\n&\n\x04\x04\x03\x02\x00\x12\x04\xe7\x03\x02\x10\x1a\x18 Application ID (UUID).\n\n\r\n\x05\x04\x03\x02\x00\x05\x12\x04\xe7\x03\x02\x08\n\r\n\x05\x04\x03\x02\x00\x01\x12\x04\xe7\x03\t\x0b\n\r\n\x05\x04\x03\x02\x00\x03\x12\x04\xe7\x03\x0e\x0f\n\x0c\n\x02\x04\x04\x12\x06\xea\x03\x00\xed\x03\x01\n\x0b\n\x03\x04\x04\x01\x12\x04\xea\x03\x08\x1d\n&\n\x04\x04\x04\x02\x00\x12\x04\xec\x03\x02\x10\x1a\x18 Application ID (UUID).\n\n\r\n\x05\x04\x04\x02\x00\x05\x12\x04\xec\x03\x02\x08\n\r\n\x05\x04\x04\x02\x00\x01\x12\x04\xec\x03\t\x0b\n\r\n\x05\x04\x04\x02\x00\x03\x12\x04\xec\x03\x0e\x0f\n\x0c\n\x02\x04\x05\x12\x06\xef\x03\x00\xfd\x03\x01\n\x0b\n\x03\x04\x05\x01\x12\x04\xef\x03\x08\x1e\n#\n\x04\x04\x05\x02\x00\x12\x04\xf1\x03\x02\x1e\x1a\x15 Application object.\n\n\r\n\x05\x04\x05\x02\x00\x06\x12\x04\xf1\x03\x02\r\n\r\n\x05\x04\x05\x02\x00\x01\x12\x04\xf1\x03\x0e\x19\n\r\n\x05\x04\x05\x02\x00\x03\x12\x04\xf1\x03\x1c\x1d\n%\n\x04\x04\x05\x02\x01\x12\x04\xf4\x03\x02+\x1a\x17 Created at timestamp.\n\n\r\n\x05\x04\x05\x02\x01\x06\x12\x04\xf4\x03\x02\x1b\n\r\n\x05\x04\x05\x02\x01\x01\x12\x04\xf4\x03\x1c&\n\r\n\x05\x04\x05\x02\x01\x03\x12\x04\xf4\x03)*\n&\n\x04\x04\x05\x02\x02\x12\x04\xf7\x03\x02+\x1a\x18 Last update timestamp.\n\n\r\n\x05\x04\x05\x02\x02\x06\x12\x04\xf7\x03\x02\x1b\n\r\n\x05\x04\x05\x02\x02\x01\x12\x04\xf7\x03\x1c&\n\r\n\x05\x04\x05\x02\x02\x03\x12\x04\xf7\x03)*\n\x99\x01\n\x04\x04\x05\x02\x03\x12\x04\xfc\x03\x02\'\x1a\x8a\x01 Measurement keys.\n This contains the measurement keys from all the device-profiles that\n are used by the devices under this application.\n\n\r\n\x05\x04\x05\x02\x03\x04\x12\x04\xfc\x03\x02\n\n\r\n\x05\x04\x05\x02\x03\x05\x12\x04\xfc\x03\x0b\x11\n\r\n\x05\x04\x05\x02\x03\x01\x12\x04\xfc\x03\x12\"\n\r\n\x05\x04\x05\x02\x03\x03\x12\x04\xfc\x03%&\n\x0c\n\x02\x04\x06\x12\x06\xff\x03\x00\x82\x04\x01\n\x0b\n\x03\x04\x06\x01\x12\x04\xff\x03\x08 \n#\n\x04\x04\x06\x02\x00\x12\x04\x81\x04\x02\x1e\x1a\x15 Application object.\n\n\r\n\x05\x04\x06\x02\x00\x06\x12\x04\x81\x04\x02\r\n\r\n\x05\x04\x06\x02\x00\x01\x12\x04\x81\x04\x0e\x19\n\r\n\x05\x04\x06\x02\x00\x03\x12\x04\x81\x04\x1c\x1d\n\x0c\n\x02\x04\x07\x12\x06\x84\x04\x00\x87\x04\x01\n\x0b\n\x03\x04\x07\x01\x12\x04\x84\x04\x08 \n&\n\x04\x04\x07\x02\x00\x12\x04\x86\x04\x02\x10\x1a\x18 Application ID (UUID).\n\n\r\n\x05\x04\x07\x02\x00\x05\x12\x04\x86\x04\x02\x08\n\r\n\x05\x04\x07\x02\x00\x01\x12\x04\x86\x04\t\x0b\n\r\n\x05\x04\x07\x02\x00\x03\x12\x04\x86\x04\x0e\x0f\n\x0c\n\x02\x04\x08\x12\x06\x89\x04\x00\x95\x04\x01\n\x0b\n\x03\x04\x08\x01\x12\x04\x89\x04\x08\x1f\nG\n\x04\x04\x08\x02\x00\x12\x04\x8b\x04\x02\x13\x1a9 Max number of applications to return in the result-set.\n\n\r\n\x05\x04\x08\x02\x00\x05\x12\x04\x8b\x04\x02\x08\n\r\n\x05\x04\x08\x02\x00\x01\x12\x04\x8b\x04\t\x0e\n\r\n\x05\x04\x08\x02\x00\x03\x12\x04\x8b\x04\x11\x12\n:\n\x04\x04\x08\x02\x01\x12\x04\x8e\x04\x02\x14\x1a, Offset in the result-set (for pagination).\n\n\r\n\x05\x04\x08\x02\x01\x05\x12\x04\x8e\x04\x02\x08\n\r\n\x05\x04\x08\x02\x01\x01\x12\x04\x8e\x04\t\x0f\n\r\n\x05\x04\x08\x02\x01\x03\x12\x04\x8e\x04\x12\x13\nS\n\x04\x04\x08\x02\x02\x12\x04\x91\x04\x02\x14\x1aE If set, the given string will be used to search on name (optional).\n\n\r\n\x05\x04\x08\x02\x02\x05\x12\x04\x91\x04\x02\x08\n\r\n\x05\x04\x08\x02\x02\x01\x12\x04\x91\x04\t\x0f\n\r\n\x05\x04\x08\x02\x02\x03\x12\x04\x91\x04\x12\x13\n7\n\x04\x04\x08\x02\x03\x12\x04\x94\x04\x02\x17\x1a) Tenant ID to list the applications for.\n\n\r\n\x05\x04\x08\x02\x03\x05\x12\x04\x94\x04\x02\x08\n\r\n\x05\x04\x08\x02\x03\x01\x12\x04\x94\x04\t\x12\n\r\n\x05\x04\x08\x02\x03\x03\x12\x04\x94\x04\x15\x16\n\x0c\n\x02\x04\t\x12\x06\x97\x04\x00\x9d\x04\x01\n\x0b\n\x03\x04\t\x01\x12\x04\x97\x04\x08 \n-\n\x04\x04\t\x02\x00\x12\x04\x99\x04\x02\x19\x1a\x1f Total number of applications.\n\n\r\n\x05\x04\t\x02\x00\x05\x12\x04\x99\x04\x02\x08\n\r\n\x05\x04\t\x02\x00\x01\x12\x04\x99\x04\t\x14\n\r\n\x05\x04\t\x02\x00\x03\x12\x04\x99\x04\x17\x18\n\x1b\n\x04\x04\t\x02\x01\x12\x04\x9c\x04\x02*\x1a\r Result-set.\n\n\r\n\x05\x04\t\x02\x01\x04\x12\x04\x9c\x04\x02\n\n\r\n\x05\x04\t\x02\x01\x06\x12\x04\x9c\x04\x0b\x1e\n\r\n\x05\x04\t\x02\x01\x01\x12\x04\x9c\x04\x1f%\n\r\n\x05\x04\t\x02\x01\x03\x12\x04\x9c\x04()\n\x0c\n\x02\x04\n\x12\x06\x9f\x04\x00\xa2\x04\x01\n\x0b\n\x03\x04\n\x01\x12\x04\x9f\x04\x08\x1f\n&\n\x04\x04\n\x02\x00\x12\x04\xa1\x04\x02\x1c\x1a\x18 Application ID (UUID).\n\n\r\n\x05\x04\n\x02\x00\x05\x12\x04\xa1\x04\x02\x08\n\r\n\x05\x04\n\x02\x00\x01\x12\x04\xa1\x04\t\x17\n\r\n\x05\x04\n\x02\x00\x03\x12\x04\xa1\x04\x1a\x1b\n\x0c\n\x02\x04\x0b\x12\x06\xa4\x04\x00\xa7\x04\x01\n\x0b\n\x03\x04\x0b\x01\x12\x04\xa4\x04\x08\x1b\n!\n\x04\x04\x0b\x02\x00\x12\x04\xa6\x04\x02\x1b\x1a\x13 Integration kind.\n\n\r\n\x05\x04\x0b\x02\x00\x06\x12\x04\xa6\x04\x02\x11\n\r\n\x05\x04\x0b\x02\x00\x01\x12\x04\xa6\x04\x12\x16\n\r\n\x05\x04\x0b\x02\x00\x03\x12\x04\xa6\x04\x19\x1a\n\x0c\n\x02\x04\x0c\x12\x06\xa9\x04\x00\xaf\x04\x01\n\x0b\n\x03\x04\x0c\x01\x12\x04\xa9\x04\x08 \nM\n\x04\x04\x0c\x02\x00\x12\x04\xab\x04\x02\x19\x1a? Total number of integrations available within the result-set.\n\n\r\n\x05\x04\x0c\x02\x00\x05\x12\x04\xab\x04\x02\x08\n\r\n\x05\x04\x0c\x02\x00\x01\x12\x04\xab\x04\t\x14\n\r\n\x05\x04\x0c\x02\x00\x03\x12\x04\xab\x04\x17\x18\n/\n\x04\x04\x0c\x02\x01\x12\x04\xae\x04\x02*\x1a! Integrations within result-set.\n\n\r\n\x05\x04\x0c\x02\x01\x04\x12\x04\xae\x04\x02\n\n\r\n\x05\x04\x0c\x02\x01\x06\x12\x04\xae\x04\x0b\x1e\n\r\n\x05\x04\x0c\x02\x01\x01\x12\x04\xae\x04\x1f%\n\r\n\x05\x04\x0c\x02\x01\x03\x12\x04\xae\x04()\n\x0c\n\x02\x04\r\x12\x06\xb1\x04\x00\xc0\x04\x01\n\x0b\n\x03\x04\r\x01\x12\x04\xb1\x04\x08\x17\n&\n\x04\x04\r\x02\x00\x12\x04\xb3\x04\x02\x1c\x1a\x18 Application ID (UUID).\n\n\r\n\x05\x04\r\x02\x00\x05\x12\x04\xb3\x04\x02\x08\n\r\n\x05\x04\r\x02\x00\x01\x12\x04\xb3\x04\t\x17\n\r\n\x05\x04\r\x02\x00\x03\x12\x04\xb3\x04\x1a\x1b\n9\n\x04\x04\r\x02\x01\x12\x04\xb6\x04\x02\"\x1a+ HTTP headers to set when making requests.\n\n\r\n\x05\x04\r\x02\x01\x06\x12\x04\xb6\x04\x02\x15\n\r\n\x05\x04\r\x02\x01\x01\x12\x04\xb6\x04\x16\x1d\n\r\n\x05\x04\r\x02\x01\x03\x12\x04\xb6\x04 !\n!\n\x04\x04\r\x02\x02\x12\x04\xb9\x04\x02\x18\x1a\x13 Payload encoding.\n\n\r\n\x05\x04\r\x02\x02\x06\x12\x04\xb9\x04\x02\n\n\r\n\x05\x04\r\x02\x02\x01\x12\x04\xb9\x04\x0b\x13\n\r\n\x05\x04\r\x02\x02\x03\x12\x04\xb9\x04\x16\x17\n\xb8\x01\n\x04\x04\r\x02\x03\x12\x04\xbf\x04\x02 \x1a\xa9\x01 Event endpoint URL.\n The HTTP integration will POST all events to this enpoint. The request\n will contain a query parameters \"event\" containing the type of the\n event.\n\n\r\n\x05\x04\r\x02\x03\x05\x12\x04\xbf\x04\x02\x08\n\r\n\x05\x04\r\x02\x03\x01\x12\x04\xbf\x04\t\x1b\n\r\n\x05\x04\r\x02\x03\x03\x12\x04\xbf\x04\x1e\x1f\n\x0c\n\x02\x04\x0e\x12\x06\xc2\x04\x00\xc5\x04\x01\n\x0b\n\x03\x04\x0e\x01\x12\x04\xc2\x04\x08$\n-\n\x04\x04\x0e\x02\x00\x12\x04\xc4\x04\x02\"\x1a\x1f Integration object to create.\n\n\r\n\x05\x04\x0e\x02\x00\x06\x12\x04\xc4\x04\x02\x11\n\r\n\x05\x04\x0e\x02\x00\x01\x12\x04\xc4\x04\x12\x1d\n\r\n\x05\x04\x0e\x02\x00\x03\x12\x04\xc4\x04 !\n\x0c\n\x02\x04\x0f\x12\x06\xc7\x04\x00\xca\x04\x01\n\x0b\n\x03\x04\x0f\x01\x12\x04\xc7\x04\x08!\n&\n\x04\x04\x0f\x02\x00\x12\x04\xc9\x04\x02\x1c\x1a\x18 Application ID (UUID).\n\n\r\n\x05\x04\x0f\x02\x00\x05\x12\x04\xc9\x04\x02\x08\n\r\n\x05\x04\x0f\x02\x00\x01\x12\x04\xc9\x04\t\x17\n\r\n\x05\x04\x0f\x02\x00\x03\x12\x04\xc9\x04\x1a\x1b\n\x0c\n\x02\x04\x10\x12\x06\xcc\x04\x00\xcf\x04\x01\n\x0b\n\x03\x04\x10\x01\x12\x04\xcc\x04\x08\"\n#\n\x04\x04\x10\x02\x00\x12\x04\xce\x04\x02\"\x1a\x15 Integration object.\n\n\r\n\x05\x04\x10\x02\x00\x06\x12\x04\xce\x04\x02\x11\n\r\n\x05\x04\x10\x02\x00\x01\x12\x04\xce\x04\x12\x1d\n\r\n\x05\x04\x10\x02\x00\x03\x12\x04\xce\x04 !\n\x0c\n\x02\x04\x11\x12\x06\xd1\x04\x00\xd4\x04\x01\n\x0b\n\x03\x04\x11\x01\x12\x04\xd1\x04\x08$\n-\n\x04\x04\x11\x02\x00\x12\x04\xd3\x04\x02\"\x1a\x1f Integration object to update.\n\n\r\n\x05\x04\x11\x02\x00\x06\x12\x04\xd3\x04\x02\x11\n\r\n\x05\x04\x11\x02\x00\x01\x12\x04\xd3\x04\x12\x1d\n\r\n\x05\x04\x11\x02\x00\x03\x12\x04\xd3\x04 !\n\x0c\n\x02\x04\x12\x12\x06\xd6\x04\x00\xd9\x04\x01\n\x0b\n\x03\x04\x12\x01\x12\x04\xd6\x04\x08$\n&\n\x04\x04\x12\x02\x00\x12\x04\xd8\x04\x02\x1c\x1a\x18 Application ID (UUID).\n\n\r\n\x05\x04\x12\x02\x00\x05\x12\x04\xd8\x04\x02\x08\n\r\n\x05\x04\x12\x02\x00\x01\x12\x04\xd8\x04\t\x17\n\r\n\x05\x04\x12\x02\x00\x03\x12\x04\xd8\x04\x1a\x1b\n\x0c\n\x02\x05\x02\x12\x06\xdb\x04\x00\xe2\x04\x01\n\x0b\n\x03\x05\x02\x01\x12\x04\xdb\x04\x05\x16\n\x0c\n\x04\x05\x02\x02\x00\x12\x04\xdc\x04\x02\t\n\r\n\x05\x05\x02\x02\x00\x01\x12\x04\xdc\x04\x02\x04\n\r\n\x05\x05\x02\x02\x00\x02\x12\x04\xdc\x04\x07\x08\n\x0c\n\x04\x05\x02\x02\x01\x12\x04\xdd\x04\x02\x08\n\r\n\x05\x05\x02\x02\x01\x01\x12\x04\xdd\x04\x02\x03\n\r\n\x05\x05\x02\x02\x01\x02\x12\x04\xdd\x04\x06\x07\n\x0c\n\x04\x05\x02\x02\x02\x12\x04\xde\x04\x02\t\n\r\n\x05\x05\x02\x02\x02\x01\x12\x04\xde\x04\x02\x04\n\r\n\x05\x05\x02\x02\x02\x02\x12\x04\xde\x04\x07\x08\n\x0c\n\x04\x05\x02\x02\x03\x12\x04\xdf\x04\x02\x08\n\r\n\x05\x05\x02\x02\x03\x01\x12\x04\xdf\x04\x02\x03\n\r\n\x05\x05\x02\x02\x03\x02\x12\x04\xdf\x04\x06\x07\n\x0c\n\x04\x05\x02\x02\x04\x12\x04\xe0\x04\x02\x08\n\r\n\x05\x05\x02\x02\x04\x01\x12\x04\xe0\x04\x02\x03\n\r\n\x05\x05\x02\x02\x04\x02\x12\x04\xe0\x04\x06\x07\n\x0c\n\x04\x05\x02\x02\x05\x12\x04\xe1\x04\x02\x08\n\r\n\x05\x05\x02\x02\x05\x01\x12\x04\xe1\x04\x02\x03\n\r\n\x05\x05\x02\x02\x05\x02\x12\x04\xe1\x04\x06\x07\n\x0c\n\x02\x05\x03\x12\x06\xe4\x04\x00\xe7\x04\x01\n\x0b\n\x03\x05\x03\x01\x12\x04\xe4\x04\x05\x14\n\x0c\n\x04\x05\x03\x02\x00\x12\x04\xe5\x04\x02\x11\n\r\n\x05\x05\x03\x02\x00\x01\x12\x04\xe5\x04\x02\x0c\n\r\n\x05\x05\x03\x02\x00\x02\x12\x04\xe5\x04\x0f\x10\n\x0c\n\x04\x05\x03\x02\x01\x12\x04\xe6\x04\x02\x11\n\r\n\x05\x05\x03\x02\x01\x01\x12\x04\xe6\x04\x02\x0c\n\r\n\x05\x05\x03\x02\x01\x02\x12\x04\xe6\x04\x0f\x10\n\x0c\n\x02\x04\x13\x12\x06\xe9\x04\x00\x8a\x05\x01\n\x0b\n\x03\x04\x13\x01\x12\x04\xe9\x04\x08\x1b\n&\n\x04\x04\x13\x02\x00\x12\x04\xeb\x04\x02\x1c\x1a\x18 Application ID (UUID).\n\n\r\n\x05\x04\x13\x02\x00\x05\x12\x04\xeb\x04\x02\x08\n\r\n\x05\x04\x13\x02\x00\x01\x12\x04\xeb\x04\t\x17\n\r\n\x05\x04\x13\x02\x00\x03\x12\x04\xeb\x04\x1a\x1b\nO\n\x04\x04\x13\x02\x01\x12\x04\xee\x04\x02\x16\x1aA InfluxDb API write endpoint (e.g. http://localhost:8086/write).\n\n\r\n\x05\x04\x13\x02\x01\x05\x12\x04\xee\x04\x02\x08\n\r\n\x05\x04\x13\x02\x01\x01\x12\x04\xee\x04\t\x11\n\r\n\x05\x04\x13\x02\x01\x03\x12\x04\xee\x04\x14\x15\n5\n\x04\x04\x13\x02\x02\x12\x04\xf1\x04\x02\x10\x1a\' InfluxDb database name. (InfluxDb v1)\n\n\r\n\x05\x04\x13\x02\x02\x05\x12\x04\xf1\x04\x02\x08\n\r\n\x05\x04\x13\x02\x02\x01\x12\x04\xf1\x04\t\x0b\n\r\n\x05\x04\x13\x02\x02\x03\x12\x04\xf1\x04\x0e\x0f\n0\n\x04\x04\x13\x02\x03\x12\x04\xf4\x04\x02\x16\x1a\" InfluxDb username. (InfluxDb v1)\n\n\r\n\x05\x04\x13\x02\x03\x05\x12\x04\xf4\x04\x02\x08\n\r\n\x05\x04\x13\x02\x03\x01\x12\x04\xf4\x04\t\x11\n\r\n\x05\x04\x13\x02\x03\x03\x12\x04\xf4\x04\x14\x15\n0\n\x04\x04\x13\x02\x04\x12\x04\xf7\x04\x02\x16\x1a\" InfluxDb password. (InfluxDb v1)\n\n\r\n\x05\x04\x13\x02\x04\x05\x12\x04\xf7\x04\x02\x08\n\r\n\x05\x04\x13\x02\x04\x01\x12\x04\xf7\x04\t\x11\n\r\n\x05\x04\x13\x02\x04\x03\x12\x04\xf7\x04\x14\x15\n=\n\x04\x04\x13\x02\x05\x12\x04\xfa\x04\x02#\x1a/ InfluxDb retention policy name. (InfluxDb v1)\n\n\r\n\x05\x04\x13\x02\x05\x05\x12\x04\xfa\x04\x02\x08\n\r\n\x05\x04\x13\x02\x05\x01\x12\x04\xfa\x04\t\x1e\n\r\n\x05\x04\x13\x02\x05\x03\x12\x04\xfa\x04!\"\n;\n\x04\x04\x13\x02\x06\x12\x04\xfd\x04\x02\"\x1a- InfluxDb timestamp precision (InfluxDb v1).\n\n\r\n\x05\x04\x13\x02\x06\x06\x12\x04\xfd\x04\x02\x13\n\r\n\x05\x04\x13\x02\x06\x01\x12\x04\xfd\x04\x14\x1d\n\r\n\x05\x04\x13\x02\x06\x03\x12\x04\xfd\x04 !\n!\n\x04\x04\x13\x02\x07\x12\x04\x80\x05\x02\x1e\x1a\x13 InfluxDb version.\n\n\r\n\x05\x04\x13\x02\x07\x06\x12\x04\x80\x05\x02\x11\n\r\n\x05\x04\x13\x02\x07\x01\x12\x04\x80\x05\x12\x19\n\r\n\x05\x04\x13\x02\x07\x03\x12\x04\x80\x05\x1c\x1d\n$\n\x04\x04\x13\x02\x08\x12\x04\x83\x05\x02\x13\x1a\x16 Token. (InfluxDb v2)\n\n\r\n\x05\x04\x13\x02\x08\x05\x12\x04\x83\x05\x02\x08\n\r\n\x05\x04\x13\x02\x08\x01\x12\x04\x83\x05\t\x0e\n\r\n\x05\x04\x13\x02\x08\x03\x12\x04\x83\x05\x11\x12\n+\n\x04\x04\x13\x02\t\x12\x04\x86\x05\x02\x1b\x1a\x1d Organization. (InfluxDb v2)\n\n\r\n\x05\x04\x13\x02\t\x05\x12\x04\x86\x05\x02\x08\n\r\n\x05\x04\x13\x02\t\x01\x12\x04\x86\x05\t\x15\n\r\n\x05\x04\x13\x02\t\x03\x12\x04\x86\x05\x18\x1a\n%\n\x04\x04\x13\x02\n\x12\x04\x89\x05\x02\x15\x1a\x17 Bucket. (InfluxDb v2)\n\n\r\n\x05\x04\x13\x02\n\x05\x12\x04\x89\x05\x02\x08\n\r\n\x05\x04\x13\x02\n\x01\x12\x04\x89\x05\t\x0f\n\r\n\x05\x04\x13\x02\n\x03\x12\x04\x89\x05\x12\x14\n\x0c\n\x02\x04\x14\x12\x06\x8c\x05\x00\x8f\x05\x01\n\x0b\n\x03\x04\x14\x01\x12\x04\x8c\x05\x08(\n-\n\x04\x04\x14\x02\x00\x12\x04\x8e\x05\x02&\x1a\x1f Integration object to create.\n\n\r\n\x05\x04\x14\x02\x00\x06\x12\x04\x8e\x05\x02\x15\n\r\n\x05\x04\x14\x02\x00\x01\x12\x04\x8e\x05\x16!\n\r\n\x05\x04\x14\x02\x00\x03\x12\x04\x8e\x05$%\n\x0c\n\x02\x04\x15\x12\x06\x91\x05\x00\x94\x05\x01\n\x0b\n\x03\x04\x15\x01\x12\x04\x91\x05\x08%\n&\n\x04\x04\x15\x02\x00\x12\x04\x93\x05\x02\x1c\x1a\x18 Application ID (UUID).\n\n\r\n\x05\x04\x15\x02\x00\x05\x12\x04\x93\x05\x02\x08\n\r\n\x05\x04\x15\x02\x00\x01\x12\x04\x93\x05\t\x17\n\r\n\x05\x04\x15\x02\x00\x03\x12\x04\x93\x05\x1a\x1b\n\x0c\n\x02\x04\x16\x12\x06\x96\x05\x00\x99\x05\x01\n\x0b\n\x03\x04\x16\x01\x12\x04\x96\x05\x08&\n#\n\x04\x04\x16\x02\x00\x12\x04\x98\x05\x02&\x1a\x15 Integration object.\n\n\r\n\x05\x04\x16\x02\x00\x06\x12\x04\x98\x05\x02\x15\n\r\n\x05\x04\x16\x02\x00\x01\x12\x04\x98\x05\x16!\n\r\n\x05\x04\x16\x02\x00\x03\x12\x04\x98\x05$%\n\x0c\n\x02\x04\x17\x12\x06\x9b\x05\x00\x9e\x05\x01\n\x0b\n\x03\x04\x17\x01\x12\x04\x9b\x05\x08(\n-\n\x04\x04\x17\x02\x00\x12\x04\x9d\x05\x02&\x1a\x1f Integration object to update.\n\n\r\n\x05\x04\x17\x02\x00\x06\x12\x04\x9d\x05\x02\x15\n\r\n\x05\x04\x17\x02\x00\x01\x12\x04\x9d\x05\x16!\n\r\n\x05\x04\x17\x02\x00\x03\x12\x04\x9d\x05$%\n\x0c\n\x02\x04\x18\x12\x06\xa0\x05\x00\xa3\x05\x01\n\x0b\n\x03\x04\x18\x01\x12\x04\xa0\x05\x08(\n&\n\x04\x04\x18\x02\x00\x12\x04\xa2\x05\x02\x1c\x1a\x18 Application ID (UUID).\n\n\r\n\x05\x04\x18\x02\x00\x05\x12\x04\xa2\x05\x02\x08\n\r\n\x05\x04\x18\x02\x00\x01\x12\x04\xa2\x05\t\x17\n\r\n\x05\x04\x18\x02\x00\x03\x12\x04\xa2\x05\x1a\x1b\n\x0c\n\x02\x04\x19\x12\x06\xa5\x05\x00\xab\x05\x01\n\x0b\n\x03\x04\x19\x01\x12\x04\xa5\x05\x08\x1e\n&\n\x04\x04\x19\x02\x00\x12\x04\xa7\x05\x02\x1c\x1a\x18 Application ID (UUID).\n\n\r\n\x05\x04\x19\x02\x00\x05\x12\x04\xa7\x05\x02\x08\n\r\n\x05\x04\x19\x02\x00\x01\x12\x04\xa7\x05\t\x17\n\r\n\x05\x04\x19\x02\x00\x03\x12\x04\xa7\x05\x1a\x1b\nE\n\x04\x04\x19\x02\x01\x12\x04\xaa\x05\x02\x14\x1a7 ThingsBoard server endpoint, e.g. https://example.com\n\n\r\n\x05\x04\x19\x02\x01\x05\x12\x04\xaa\x05\x02\x08\n\r\n\x05\x04\x19\x02\x01\x01\x12\x04\xaa\x05\t\x0f\n\r\n\x05\x04\x19\x02\x01\x03\x12\x04\xaa\x05\x12\x13\n\x0c\n\x02\x04\x1a\x12\x06\xad\x05\x00\xb0\x05\x01\n\x0b\n\x03\x04\x1a\x01\x12\x04\xad\x05\x08+\n-\n\x04\x04\x1a\x02\x00\x12\x04\xaf\x05\x02)\x1a\x1f Integration object to create.\n\n\r\n\x05\x04\x1a\x02\x00\x06\x12\x04\xaf\x05\x02\x18\n\r\n\x05\x04\x1a\x02\x00\x01\x12\x04\xaf\x05\x19$\n\r\n\x05\x04\x1a\x02\x00\x03\x12\x04\xaf\x05\'(\n\x0c\n\x02\x04\x1b\x12\x06\xb2\x05\x00\xb5\x05\x01\n\x0b\n\x03\x04\x1b\x01\x12\x04\xb2\x05\x08(\n&\n\x04\x04\x1b\x02\x00\x12\x04\xb4\x05\x02\x1c\x1a\x18 Application ID (UUID).\n\n\r\n\x05\x04\x1b\x02\x00\x05\x12\x04\xb4\x05\x02\x08\n\r\n\x05\x04\x1b\x02\x00\x01\x12\x04\xb4\x05\t\x17\n\r\n\x05\x04\x1b\x02\x00\x03\x12\x04\xb4\x05\x1a\x1b\n\x0c\n\x02\x04\x1c\x12\x06\xb7\x05\x00\xba\x05\x01\n\x0b\n\x03\x04\x1c\x01\x12\x04\xb7\x05\x08)\n#\n\x04\x04\x1c\x02\x00\x12\x04\xb9\x05\x02)\x1a\x15 Integration object.\n\n\r\n\x05\x04\x1c\x02\x00\x06\x12\x04\xb9\x05\x02\x18\n\r\n\x05\x04\x1c\x02\x00\x01\x12\x04\xb9\x05\x19$\n\r\n\x05\x04\x1c\x02\x00\x03\x12\x04\xb9\x05\'(\n\x0c\n\x02\x04\x1d\x12\x06\xbc\x05\x00\xbf\x05\x01\n\x0b\n\x03\x04\x1d\x01\x12\x04\xbc\x05\x08+\n-\n\x04\x04\x1d\x02\x00\x12\x04\xbe\x05\x02)\x1a\x1f Integration object to update.\n\n\r\n\x05\x04\x1d\x02\x00\x06\x12\x04\xbe\x05\x02\x18\n\r\n\x05\x04\x1d\x02\x00\x01\x12\x04\xbe\x05\x19$\n\r\n\x05\x04\x1d\x02\x00\x03\x12\x04\xbe\x05\'(\n\x0c\n\x02\x04\x1e\x12\x06\xc1\x05\x00\xc4\x05\x01\n\x0b\n\x03\x04\x1e\x01\x12\x04\xc1\x05\x08+\n&\n\x04\x04\x1e\x02\x00\x12\x04\xc3\x05\x02\x1c\x1a\x18 Application ID (UUID).\n\n\r\n\x05\x04\x1e\x02\x00\x05\x12\x04\xc3\x05\x02\x08\n\r\n\x05\x04\x1e\x02\x00\x01\x12\x04\xc3\x05\t\x17\n\r\n\x05\x04\x1e\x02\x00\x03\x12\x04\xc3\x05\x1a\x1b\n\x0c\n\x02\x04\x1f\x12\x06\xc6\x05\x00\xcc\x05\x01\n\x0b\n\x03\x04\x1f\x01\x12\x04\xc6\x05\x08\x1c\n&\n\x04\x04\x1f\x02\x00\x12\x04\xc8\x05\x02\x1c\x1a\x18 Application ID (UUID).\n\n\r\n\x05\x04\x1f\x02\x00\x05\x12\x04\xc8\x05\x02\x08\n\r\n\x05\x04\x1f\x02\x00\x01\x12\x04\xc8\x05\t\x17\n\r\n\x05\x04\x1f\x02\x00\x03\x12\x04\xc8\x05\x1a\x1b\n\'\n\x04\x04\x1f\x02\x01\x12\x04\xcb\x05\x02\x16\x1a\x19 myDevices API endpoint.\n\n\r\n\x05\x04\x1f\x02\x01\x05\x12\x04\xcb\x05\x02\x08\n\r\n\x05\x04\x1f\x02\x01\x01\x12\x04\xcb\x05\t\x11\n\r\n\x05\x04\x1f\x02\x01\x03\x12\x04\xcb\x05\x14\x15\n\x0c\n\x02\x04 \x12\x06\xce\x05\x00\xd1\x05\x01\n\x0b\n\x03\x04 \x01\x12\x04\xce\x05\x08)\n-\n\x04\x04 \x02\x00\x12\x04\xd0\x05\x02\'\x1a\x1f Integration object to create.\n\n\r\n\x05\x04 \x02\x00\x06\x12\x04\xd0\x05\x02\x16\n\r\n\x05\x04 \x02\x00\x01\x12\x04\xd0\x05\x17\"\n\r\n\x05\x04 \x02\x00\x03\x12\x04\xd0\x05%&\n\x0c\n\x02\x04!\x12\x06\xd3\x05\x00\xd6\x05\x01\n\x0b\n\x03\x04!\x01\x12\x04\xd3\x05\x08&\n&\n\x04\x04!\x02\x00\x12\x04\xd5\x05\x02\x1c\x1a\x18 Application ID (UUID).\n\n\r\n\x05\x04!\x02\x00\x05\x12\x04\xd5\x05\x02\x08\n\r\n\x05\x04!\x02\x00\x01\x12\x04\xd5\x05\t\x17\n\r\n\x05\x04!\x02\x00\x03\x12\x04\xd5\x05\x1a\x1b\n\x0c\n\x02\x04\"\x12\x06\xd8\x05\x00\xdb\x05\x01\n\x0b\n\x03\x04\"\x01\x12\x04\xd8\x05\x08\'\n#\n\x04\x04\"\x02\x00\x12\x04\xda\x05\x02\'\x1a\x15 Integration object.\n\n\r\n\x05\x04\"\x02\x00\x06\x12\x04\xda\x05\x02\x16\n\r\n\x05\x04\"\x02\x00\x01\x12\x04\xda\x05\x17\"\n\r\n\x05\x04\"\x02\x00\x03\x12\x04\xda\x05%&\n\x0c\n\x02\x04#\x12\x06\xdd\x05\x00\xe0\x05\x01\n\x0b\n\x03\x04#\x01\x12\x04\xdd\x05\x08)\n-\n\x04\x04#\x02\x00\x12\x04\xdf\x05\x02\'\x1a\x1f Integration object to update.\n\n\r\n\x05\x04#\x02\x00\x06\x12\x04\xdf\x05\x02\x16\n\r\n\x05\x04#\x02\x00\x01\x12\x04\xdf\x05\x17\"\n\r\n\x05\x04#\x02\x00\x03\x12\x04\xdf\x05%&\n\x0c\n\x02\x04$\x12\x06\xe2\x05\x00\xe5\x05\x01\n\x0b\n\x03\x04$\x01\x12\x04\xe2\x05\x08)\n&\n\x04\x04$\x02\x00\x12\x04\xe4\x05\x02\x1c\x1a\x18 Application ID (UUID).\n\n\r\n\x05\x04$\x02\x00\x05\x12\x04\xe4\x05\x02\x08\n\r\n\x05\x04$\x02\x00\x01\x12\x04\xe4\x05\t\x17\n\r\n\x05\x04$\x02\x00\x03\x12\x04\xe4\x05\x1a\x1b\n\x0c\n\x02\x04%\x12\x06\xe7\x05\x00\xed\x05\x01\n\x0b\n\x03\x04%\x01\x12\x04\xe7\x05\x08\x1c\n&\n\x04\x04%\x02\x00\x12\x04\xe9\x05\x02\x1c\x1a\x18 Application ID (UUID).\n\n\r\n\x05\x04%\x02\x00\x05\x12\x04\xe9\x05\x02\x08\n\r\n\x05\x04%\x02\x00\x01\x12\x04\xe9\x05\t\x17\n\r\n\x05\x04%\x02\x00\x03\x12\x04\xe9\x05\x1a\x1b\n;\n\x04\x04%\x02\x01\x12\x04\xec\x05\x02C\x1a- Modem & Geolocation Services configuration.\n\n\r\n\x05\x04%\x02\x01\x06\x12\x04\xec\x05\x02#\n\r\n\x05\x04%\x02\x01\x01\x12\x04\xec\x05$>\n\r\n\x05\x04%\x02\x01\x03\x12\x04\xec\x05AB\n\x0c\n\x02\x04&\x12\x06\xef\x05\x00\xb4\x06\x01\n\x0b\n\x03\x04&\x01\x12\x04\xef\x05\x08)\n\x1a\n\x04\x04&\x02\x00\x12\x04\xf1\x05\x02\x13\x1a\x0c API token.\n\n\r\n\x05\x04&\x02\x00\x05\x12\x04\xf1\x05\x02\x08\n\r\n\x05\x04&\x02\x00\x01\x12\x04\xf1\x05\t\x0e\n\r\n\x05\x04&\x02\x00\x03\x12\x04\xf1\x05\x11\x12\n8\n\x04\x04&\x02\x01\x12\x04\xf4\x05\x02\x19\x1a* Device implements Modem / Modem-E stack.\n\n\r\n\x05\x04&\x02\x01\x05\x12\x04\xf4\x05\x02\x06\n\r\n\x05\x04&\x02\x01\x01\x12\x04\xf4\x05\x07\x14\n\r\n\x05\x04&\x02\x01\x03\x12\x04\xf4\x05\x17\x18\n^\n\x04\x04&\x02\x02\x12\x04\xf8\x05\x02\'\x1aP Forward FPorts.\n Forward uplink messages matching the given FPorts to the MGS.\n\n\r\n\x05\x04&\x02\x02\x04\x12\x04\xf8\x05\x02\n\n\r\n\x05\x04&\x02\x02\x05\x12\x04\xf8\x05\x0b\x11\n\r\n\x05\x04&\x02\x02\x01\x12\x04\xf8\x05\x12!\n\r\n\x05\x04&\x02\x02\x03\x12\x04\xf8\x05$&\n\xbd\x01\n\x04\x04&\x02\x03\x12\x04\xfd\x05\x02\x1c\x1a\xae\x01 Use rx time for GNSS resolving.\n In case this is set to true, the MGS resolver will use the RX time of the\n network instead of the timestamp included in the LR1110 payload.\n\n\r\n\x05\x04&\x02\x03\x05\x12\x04\xfd\x05\x02\x06\n\r\n\x05\x04&\x02\x03\x01\x12\x04\xfd\x05\x07\x17\n\r\n\x05\x04&\x02\x03\x03\x12\x04\xfd\x05\x1a\x1b\n\xe5\x02\n\x04\x04&\x02\x04\x12\x04\x85\x06\x02&\x1a\xd6\x02 Use gateway location for GNSS resolving.\n In the case this is set to true, ChirpStack will provide the location of\n one of the gateways to the MGS resolver to aid the resolving process.\n Disable this in case the gateway location is not accurate / incorrectly\n configured as an incorrect location will cause the resolver to return an\n error.\n\n\r\n\x05\x04&\x02\x04\x05\x12\x04\x85\x06\x02\x06\n\r\n\x05\x04&\x02\x04\x01\x12\x04\x85\x06\x07 \n\r\n\x05\x04&\x02\x04\x03\x12\x04\x85\x06#%\n\x86\x02\n\x04\x04&\x02\x05\x12\x04\x8c\x06\x02\x15\x1a\xf7\x01 Parse TLV records.\n If enabled, stream records (expected in TLV format) are scanned for GNSS\n data (0x06 or 0x07). If found, ChirpStack will make an additional\n geolocation call to the MGS API for resolving the location of the detected\n payload.\n\n\r\n\x05\x04&\x02\x05\x05\x12\x04\x8c\x06\x02\x06\n\r\n\x05\x04&\x02\x05\x01\x12\x04\x8c\x06\x07\x10\n\r\n\x05\x04&\x02\x05\x03\x12\x04\x8c\x06\x13\x14\n\xb5\x01\n\x04\x04&\x02\x06\x12\x04\x91\x06\x02$\x1a\xa6\x01 Geolocation buffer TTL (in seconds).\n If > 0, uplink RX meta-data will be stored in a buffer so that\n the meta-data of multiple uplinks can be used for geolocation.\n\n\r\n\x05\x04&\x02\x06\x05\x12\x04\x91\x06\x02\x08\n\r\n\x05\x04&\x02\x06\x01\x12\x04\x91\x06\t\x1f\n\r\n\x05\x04&\x02\x06\x03\x12\x04\x91\x06\"#\n\x8a\x01\n\x04\x04&\x02\x07\x12\x04\x96\x06\x02)\x1a| Geolocation minimum buffer size.\n If > 0, geolocation will only be performed when the buffer has\n at least the given size.\n\n\r\n\x05\x04&\x02\x07\x05\x12\x04\x96\x06\x02\x08\n\r\n\x05\x04&\x02\x07\x01\x12\x04\x96\x06\t$\n\r\n\x05\x04&\x02\x07\x03\x12\x04\x96\x06\'(\n2\n\x04\x04&\x02\x08\x12\x04\x99\x06\x02\x1c\x1a$ TDOA based geolocation is enabled.\n\n\r\n\x05\x04&\x02\x08\x05\x12\x04\x99\x06\x02\x06\n\r\n\x05\x04&\x02\x08\x01\x12\x04\x99\x06\x07\x17\n\r\n\x05\x04&\x02\x08\x03\x12\x04\x99\x06\x1a\x1b\n2\n\x04\x04&\x02\t\x12\x04\x9c\x06\x02\x1d\x1a$ RSSI based geolocation is enabled.\n\n\r\n\x05\x04&\x02\t\x05\x12\x04\x9c\x06\x02\x06\n\r\n\x05\x04&\x02\t\x01\x12\x04\x9c\x06\x07\x17\n\r\n\x05\x04&\x02\t\x03\x12\x04\x9c\x06\x1a\x1c\n;\n\x04\x04&\x02\n\x12\x04\x9f\x06\x02\x1d\x1a- GNSS based geolocation is enabled (LR1110).\n\n\r\n\x05\x04&\x02\n\x05\x12\x04\x9f\x06\x02\x06\n\r\n\x05\x04&\x02\n\x01\x12\x04\x9f\x06\x07\x17\n\r\n\x05\x04&\x02\n\x03\x12\x04\x9f\x06\x1a\x1c\n\x9c\x01\n\x04\x04&\x02\x0b\x12\x04\xa4\x06\x02-\x1a\x8d\x01 GNSS payload field.\n This holds the name of the field in the decoded payload object which\n contains the GNSS payload bytes (as HEX string).\n\n\r\n\x05\x04&\x02\x0b\x05\x12\x04\xa4\x06\x02\x08\n\r\n\x05\x04&\x02\x0b\x01\x12\x04\xa4\x06\t\'\n\r\n\x05\x04&\x02\x0b\x03\x12\x04\xa4\x06*,\n\xab\x01\n\x04\x04&\x02\x0c\x12\x04\xa9\x06\x02)\x1a\x9c\x01 GNSS use RX time.\n In case this is set to true, the resolver will use the RX time of the\n network instead of the timestamp included in the LR1110 payload.\n\n\r\n\x05\x04&\x02\x0c\x05\x12\x04\xa9\x06\x02\x06\n\r\n\x05\x04&\x02\x0c\x01\x12\x04\xa9\x06\x07#\n\r\n\x05\x04&\x02\x0c\x03\x12\x04\xa9\x06&(\n2\n\x04\x04&\x02\r\x12\x04\xac\x06\x02\x1d\x1a$ Wifi based geolocation is enabled.\n\n\r\n\x05\x04&\x02\r\x05\x12\x04\xac\x06\x02\x06\n\r\n\x05\x04&\x02\r\x01\x12\x04\xac\x06\x07\x17\n\r\n\x05\x04&\x02\r\x03\x12\x04\xac\x06\x1a\x1c\n\xf2\x01\n\x04\x04&\x02\x0e\x12\x04\xb3\x06\x02-\x1a\xe3\x01 Wifi payload field.\n This holds the name of the field in the decoded payload object which\n contains an array of objects with the following fields:\n * macAddress - e.g. 01:23:45:67:89:ab\n * signalStrength - e.g. -51 (optional)\n\n\r\n\x05\x04&\x02\x0e\x05\x12\x04\xb3\x06\x02\x08\n\r\n\x05\x04&\x02\x0e\x01\x12\x04\xb3\x06\t\'\n\r\n\x05\x04&\x02\x0e\x03\x12\x04\xb3\x06*,\n\x0c\n\x02\x04\'\x12\x06\xb6\x06\x00\xb9\x06\x01\n\x0b\n\x03\x04\'\x01\x12\x04\xb6\x06\x08)\n-\n\x04\x04\'\x02\x00\x12\x04\xb8\x06\x02\'\x1a\x1f Integration object to create.\n\n\r\n\x05\x04\'\x02\x00\x06\x12\x04\xb8\x06\x02\x16\n\r\n\x05\x04\'\x02\x00\x01\x12\x04\xb8\x06\x17\"\n\r\n\x05\x04\'\x02\x00\x03\x12\x04\xb8\x06%&\n\x0c\n\x02\x04(\x12\x06\xbb\x06\x00\xbe\x06\x01\n\x0b\n\x03\x04(\x01\x12\x04\xbb\x06\x08&\n&\n\x04\x04(\x02\x00\x12\x04\xbd\x06\x02\x1c\x1a\x18 Application ID (UUID).\n\n\r\n\x05\x04(\x02\x00\x05\x12\x04\xbd\x06\x02\x08\n\r\n\x05\x04(\x02\x00\x01\x12\x04\xbd\x06\t\x17\n\r\n\x05\x04(\x02\x00\x03\x12\x04\xbd\x06\x1a\x1b\n\x0c\n\x02\x04)\x12\x06\xc0\x06\x00\xc3\x06\x01\n\x0b\n\x03\x04)\x01\x12\x04\xc0\x06\x08\'\n#\n\x04\x04)\x02\x00\x12\x04\xc2\x06\x02\'\x1a\x15 Integration object.\n\n\r\n\x05\x04)\x02\x00\x06\x12\x04\xc2\x06\x02\x16\n\r\n\x05\x04)\x02\x00\x01\x12\x04\xc2\x06\x17\"\n\r\n\x05\x04)\x02\x00\x03\x12\x04\xc2\x06%&\n\x0c\n\x02\x04*\x12\x06\xc5\x06\x00\xc8\x06\x01\n\x0b\n\x03\x04*\x01\x12\x04\xc5\x06\x08)\n-\n\x04\x04*\x02\x00\x12\x04\xc7\x06\x02\'\x1a\x1f Integration object to update.\n\n\r\n\x05\x04*\x02\x00\x06\x12\x04\xc7\x06\x02\x16\n\r\n\x05\x04*\x02\x00\x01\x12\x04\xc7\x06\x17\"\n\r\n\x05\x04*\x02\x00\x03\x12\x04\xc7\x06%&\n\x0c\n\x02\x04+\x12\x06\xca\x06\x00\xcd\x06\x01\n\x0b\n\x03\x04+\x01\x12\x04\xca\x06\x08)\n&\n\x04\x04+\x02\x00\x12\x04\xcc\x06\x02\x1c\x1a\x18 Application ID (UUID).\n\n\r\n\x05\x04+\x02\x00\x05\x12\x04\xcc\x06\x02\x08\n\r\n\x05\x04+\x02\x00\x01\x12\x04\xcc\x06\t\x17\n\r\n\x05\x04+\x02\x00\x03\x12\x04\xcc\x06\x1a\x1b\n\x0c\n\x02\x04,\x12\x06\xcf\x06\x00\xe2\x06\x01\n\x0b\n\x03\x04,\x01\x12\x04\xcf\x06\x08\x1c\n&\n\x04\x04,\x02\x00\x12\x04\xd1\x06\x02\x1c\x1a\x18 Application ID (UUID).\n\n\r\n\x05\x04,\x02\x00\x05\x12\x04\xd1\x06\x02\x08\n\r\n\x05\x04,\x02\x00\x01\x12\x04\xd1\x06\t\x17\n\r\n\x05\x04,\x02\x00\x03\x12\x04\xd1\x06\x1a\x1b\n\x19\n\x04\x04,\x02\x01\x12\x04\xd4\x06\x02\x18\x1a\x0b Encoding.\n\n\r\n\x05\x04,\x02\x01\x06\x12\x04\xd4\x06\x02\n\n\r\n\x05\x04,\x02\x01\x01\x12\x04\xd4\x06\x0b\x13\n\r\n\x05\x04,\x02\x01\x03\x12\x04\xd4\x06\x16\x17\n\x91\x01\n\x04\x04,\x02\x02\x12\x04\xda\x06\x02\x1e\x1a\x82\x01 Credentials file.\n This IAM service-account credentials file (JSON) must have the following\n Pub/Sub roles:\n * Pub/Sub Publisher\n\n\r\n\x05\x04,\x02\x02\x05\x12\x04\xda\x06\x02\x08\n\r\n\x05\x04,\x02\x02\x01\x12\x04\xda\x06\t\x19\n\r\n\x05\x04,\x02\x02\x03\x12\x04\xda\x06\x1c\x1d\n\x1b\n\x04\x04,\x02\x03\x12\x04\xdd\x06\x02\x18\x1a\r Project ID.\n\n\r\n\x05\x04,\x02\x03\x05\x12\x04\xdd\x06\x02\x08\n\r\n\x05\x04,\x02\x03\x01\x12\x04\xdd\x06\t\x13\n\r\n\x05\x04,\x02\x03\x03\x12\x04\xdd\x06\x16\x17\nC\n\x04\x04,\x02\x04\x12\x04\xe1\x06\x02\x18\x1a5 Topic name.\n This is the name of the Pub/Sub topic.\n\n\r\n\x05\x04,\x02\x04\x05\x12\x04\xe1\x06\x02\x08\n\r\n\x05\x04,\x02\x04\x01\x12\x04\xe1\x06\t\x13\n\r\n\x05\x04,\x02\x04\x03\x12\x04\xe1\x06\x16\x17\n\x0c\n\x02\x04-\x12\x06\xe4\x06\x00\xe7\x06\x01\n\x0b\n\x03\x04-\x01\x12\x04\xe4\x06\x08)\n-\n\x04\x04-\x02\x00\x12\x04\xe6\x06\x02\'\x1a\x1f Integration object to create.\n\n\r\n\x05\x04-\x02\x00\x06\x12\x04\xe6\x06\x02\x16\n\r\n\x05\x04-\x02\x00\x01\x12\x04\xe6\x06\x17\"\n\r\n\x05\x04-\x02\x00\x03\x12\x04\xe6\x06%&\n\x0c\n\x02\x04.\x12\x06\xe9\x06\x00\xec\x06\x01\n\x0b\n\x03\x04.\x01\x12\x04\xe9\x06\x08&\n&\n\x04\x04.\x02\x00\x12\x04\xeb\x06\x02\x1c\x1a\x18 Application ID (UUID).\n\n\r\n\x05\x04.\x02\x00\x05\x12\x04\xeb\x06\x02\x08\n\r\n\x05\x04.\x02\x00\x01\x12\x04\xeb\x06\t\x17\n\r\n\x05\x04.\x02\x00\x03\x12\x04\xeb\x06\x1a\x1b\n\x0c\n\x02\x04/\x12\x06\xee\x06\x00\xf1\x06\x01\n\x0b\n\x03\x04/\x01\x12\x04\xee\x06\x08\'\n#\n\x04\x04/\x02\x00\x12\x04\xf0\x06\x02\'\x1a\x15 Integration object.\n\n\r\n\x05\x04/\x02\x00\x06\x12\x04\xf0\x06\x02\x16\n\r\n\x05\x04/\x02\x00\x01\x12\x04\xf0\x06\x17\"\n\r\n\x05\x04/\x02\x00\x03\x12\x04\xf0\x06%&\n\x0c\n\x02\x040\x12\x06\xf3\x06\x00\xf6\x06\x01\n\x0b\n\x03\x040\x01\x12\x04\xf3\x06\x08)\n-\n\x04\x040\x02\x00\x12\x04\xf5\x06\x02\'\x1a\x1f Integration object to update.\n\n\r\n\x05\x040\x02\x00\x06\x12\x04\xf5\x06\x02\x16\n\r\n\x05\x040\x02\x00\x01\x12\x04\xf5\x06\x17\"\n\r\n\x05\x040\x02\x00\x03\x12\x04\xf5\x06%&\n\x0c\n\x02\x041\x12\x06\xf8\x06\x00\xfb\x06\x01\n\x0b\n\x03\x041\x01\x12\x04\xf8\x06\x08)\n&\n\x04\x041\x02\x00\x12\x04\xfa\x06\x02\x1c\x1a\x18 Application ID (UUID).\n\n\r\n\x05\x041\x02\x00\x05\x12\x04\xfa\x06\x02\x08\n\r\n\x05\x041\x02\x00\x01\x12\x04\xfa\x06\t\x17\n\r\n\x05\x041\x02\x00\x03\x12\x04\xfa\x06\x1a\x1b\n\x0c\n\x02\x042\x12\x06\xfd\x06\x00\x8f\x07\x01\n\x0b\n\x03\x042\x01\x12\x04\xfd\x06\x08\x19\n&\n\x04\x042\x02\x00\x12\x04\xff\x06\x02\x1c\x1a\x18 Application ID (UUID).\n\n\r\n\x05\x042\x02\x00\x05\x12\x04\xff\x06\x02\x08\n\r\n\x05\x042\x02\x00\x01\x12\x04\xff\x06\t\x17\n\r\n\x05\x042\x02\x00\x03\x12\x04\xff\x06\x1a\x1b\n\x19\n\x04\x042\x02\x01\x12\x04\x82\x07\x02\x18\x1a\x0b Encoding.\n\n\r\n\x05\x042\x02\x01\x06\x12\x04\x82\x07\x02\n\n\r\n\x05\x042\x02\x01\x01\x12\x04\x82\x07\x0b\x13\n\r\n\x05\x042\x02\x01\x03\x12\x04\x82\x07\x16\x17\n\x1b\n\x04\x042\x02\x02\x12\x04\x85\x07\x02\x14\x1a\r AWS region.\n\n\r\n\x05\x042\x02\x02\x05\x12\x04\x85\x07\x02\x08\n\r\n\x05\x042\x02\x02\x01\x12\x04\x85\x07\t\x0f\n\r\n\x05\x042\x02\x02\x03\x12\x04\x85\x07\x12\x13\n\"\n\x04\x042\x02\x03\x12\x04\x88\x07\x02\x1b\x1a\x14 AWS Access Key ID.\n\n\r\n\x05\x042\x02\x03\x05\x12\x04\x88\x07\x02\x08\n\r\n\x05\x042\x02\x03\x01\x12\x04\x88\x07\t\x16\n\r\n\x05\x042\x02\x03\x03\x12\x04\x88\x07\x19\x1a\n&\n\x04\x042\x02\x04\x12\x04\x8b\x07\x02\x1f\x1a\x18 AWS Secret Access Key.\n\n\r\n\x05\x042\x02\x04\x05\x12\x04\x8b\x07\x02\x08\n\r\n\x05\x042\x02\x04\x01\x12\x04\x8b\x07\t\x1a\n\r\n\x05\x042\x02\x04\x03\x12\x04\x8b\x07\x1d\x1e\n\x1a\n\x04\x042\x02\x05\x12\x04\x8e\x07\x02\x17\x1a\x0c Topic ARN.\n\n\r\n\x05\x042\x02\x05\x05\x12\x04\x8e\x07\x02\x08\n\r\n\x05\x042\x02\x05\x01\x12\x04\x8e\x07\t\x12\n\r\n\x05\x042\x02\x05\x03\x12\x04\x8e\x07\x15\x16\n\x0c\n\x02\x043\x12\x06\x91\x07\x00\x94\x07\x01\n\x0b\n\x03\x043\x01\x12\x04\x91\x07\x08&\n-\n\x04\x043\x02\x00\x12\x04\x93\x07\x02$\x1a\x1f Integration object to create.\n\n\r\n\x05\x043\x02\x00\x06\x12\x04\x93\x07\x02\x13\n\r\n\x05\x043\x02\x00\x01\x12\x04\x93\x07\x14\x1f\n\r\n\x05\x043\x02\x00\x03\x12\x04\x93\x07\"#\n\x0c\n\x02\x044\x12\x06\x96\x07\x00\x99\x07\x01\n\x0b\n\x03\x044\x01\x12\x04\x96\x07\x08#\n&\n\x04\x044\x02\x00\x12\x04\x98\x07\x02\x1c\x1a\x18 Application ID (UUID).\n\n\r\n\x05\x044\x02\x00\x05\x12\x04\x98\x07\x02\x08\n\r\n\x05\x044\x02\x00\x01\x12\x04\x98\x07\t\x17\n\r\n\x05\x044\x02\x00\x03\x12\x04\x98\x07\x1a\x1b\n\x0c\n\x02\x045\x12\x06\x9b\x07\x00\x9e\x07\x01\n\x0b\n\x03\x045\x01\x12\x04\x9b\x07\x08$\n#\n\x04\x045\x02\x00\x12\x04\x9d\x07\x02$\x1a\x15 Integration object.\n\n\r\n\x05\x045\x02\x00\x06\x12\x04\x9d\x07\x02\x13\n\r\n\x05\x045\x02\x00\x01\x12\x04\x9d\x07\x14\x1f\n\r\n\x05\x045\x02\x00\x03\x12\x04\x9d\x07\"#\n\x0c\n\x02\x046\x12\x06\xa0\x07\x00\xa3\x07\x01\n\x0b\n\x03\x046\x01\x12\x04\xa0\x07\x08&\n-\n\x04\x046\x02\x00\x12\x04\xa2\x07\x02$\x1a\x1f Integration object to update.\n\n\r\n\x05\x046\x02\x00\x06\x12\x04\xa2\x07\x02\x13\n\r\n\x05\x046\x02\x00\x01\x12\x04\xa2\x07\x14\x1f\n\r\n\x05\x046\x02\x00\x03\x12\x04\xa2\x07\"#\n\x0c\n\x02\x047\x12\x06\xa5\x07\x00\xa8\x07\x01\n\x0b\n\x03\x047\x01\x12\x04\xa5\x07\x08&\n&\n\x04\x047\x02\x00\x12\x04\xa7\x07\x02\x1c\x1a\x18 Application ID (UUID).\n\n\r\n\x05\x047\x02\x00\x05\x12\x04\xa7\x07\x02\x08\n\r\n\x05\x047\x02\x00\x01\x12\x04\xa7\x07\t\x17\n\r\n\x05\x047\x02\x00\x03\x12\x04\xa7\x07\x1a\x1b\n\x0c\n\x02\x048\x12\x06\xaa\x07\x00\xb7\x07\x01\n\x0b\n\x03\x048\x01\x12\x04\xaa\x07\x08\"\n&\n\x04\x048\x02\x00\x12\x04\xac\x07\x02\x1c\x1a\x18 Application ID (UUID).\n\n\r\n\x05\x048\x02\x00\x05\x12\x04\xac\x07\x02\x08\n\r\n\x05\x048\x02\x00\x01\x12\x04\xac\x07\t\x17\n\r\n\x05\x048\x02\x00\x03\x12\x04\xac\x07\x1a\x1b\n\x19\n\x04\x048\x02\x01\x12\x04\xaf\x07\x02\x18\x1a\x0b Encoding.\n\n\r\n\x05\x048\x02\x01\x06\x12\x04\xaf\x07\x02\n\n\r\n\x05\x048\x02\x01\x01\x12\x04\xaf\x07\x0b\x13\n\r\n\x05\x048\x02\x01\x03\x12\x04\xaf\x07\x16\x17\n\"\n\x04\x048\x02\x02\x12\x04\xb2\x07\x02\x1f\x1a\x14 Connection string.\n\n\r\n\x05\x048\x02\x02\x05\x12\x04\xb2\x07\x02\x08\n\r\n\x05\x048\x02\x02\x01\x12\x04\xb2\x07\t\x1a\n\r\n\x05\x048\x02\x02\x03\x12\x04\xb2\x07\x1d\x1e\nF\n\x04\x048\x02\x03\x12\x04\xb6\x07\x02\x1a\x1a8 Publish name.\n This is the name of the topic or queue.\n\n\r\n\x05\x048\x02\x03\x05\x12\x04\xb6\x07\x02\x08\n\r\n\x05\x048\x02\x03\x01\x12\x04\xb6\x07\t\x15\n\r\n\x05\x048\x02\x03\x03\x12\x04\xb6\x07\x18\x19\n\x0c\n\x02\x049\x12\x06\xb9\x07\x00\xbc\x07\x01\n\x0b\n\x03\x049\x01\x12\x04\xb9\x07\x08/\n-\n\x04\x049\x02\x00\x12\x04\xbb\x07\x02-\x1a\x1f Integration object to create.\n\n\r\n\x05\x049\x02\x00\x06\x12\x04\xbb\x07\x02\x1c\n\r\n\x05\x049\x02\x00\x01\x12\x04\xbb\x07\x1d(\n\r\n\x05\x049\x02\x00\x03\x12\x04\xbb\x07+,\n\x0c\n\x02\x04:\x12\x06\xbe\x07\x00\xc1\x07\x01\n\x0b\n\x03\x04:\x01\x12\x04\xbe\x07\x08,\n&\n\x04\x04:\x02\x00\x12\x04\xc0\x07\x02\x1c\x1a\x18 Application ID (UUID).\n\n\r\n\x05\x04:\x02\x00\x05\x12\x04\xc0\x07\x02\x08\n\r\n\x05\x04:\x02\x00\x01\x12\x04\xc0\x07\t\x17\n\r\n\x05\x04:\x02\x00\x03\x12\x04\xc0\x07\x1a\x1b\n\x0c\n\x02\x04;\x12\x06\xc3\x07\x00\xc6\x07\x01\n\x0b\n\x03\x04;\x01\x12\x04\xc3\x07\x08-\n#\n\x04\x04;\x02\x00\x12\x04\xc5\x07\x02-\x1a\x15 Integration object.\n\n\r\n\x05\x04;\x02\x00\x06\x12\x04\xc5\x07\x02\x1c\n\r\n\x05\x04;\x02\x00\x01\x12\x04\xc5\x07\x1d(\n\r\n\x05\x04;\x02\x00\x03\x12\x04\xc5\x07+,\n\x0c\n\x02\x04<\x12\x06\xc8\x07\x00\xcb\x07\x01\n\x0b\n\x03\x04<\x01\x12\x04\xc8\x07\x08/\n-\n\x04\x04<\x02\x00\x12\x04\xca\x07\x02-\x1a\x1f Integration object to create.\n\n\r\n\x05\x04<\x02\x00\x06\x12\x04\xca\x07\x02\x1c\n\r\n\x05\x04<\x02\x00\x01\x12\x04\xca\x07\x1d(\n\r\n\x05\x04<\x02\x00\x03\x12\x04\xca\x07+,\n\x0c\n\x02\x04=\x12\x06\xcd\x07\x00\xd0\x07\x01\n\x0b\n\x03\x04=\x01\x12\x04\xcd\x07\x08/\n&\n\x04\x04=\x02\x00\x12\x04\xcf\x07\x02\x1c\x1a\x18 Application ID (UUID).\n\n\r\n\x05\x04=\x02\x00\x05\x12\x04\xcf\x07\x02\x08\n\r\n\x05\x04=\x02\x00\x01\x12\x04\xcf\x07\t\x17\n\r\n\x05\x04=\x02\x00\x03\x12\x04\xcf\x07\x1a\x1b\n\x0c\n\x02\x04>\x12\x06\xd2\x07\x00\xdb\x07\x01\n\x0b\n\x03\x04>\x01\x12\x04\xd2\x07\x08\x1e\n&\n\x04\x04>\x02\x00\x12\x04\xd4\x07\x02\x1c\x1a\x18 Application ID (UUID).\n\n\r\n\x05\x04>\x02\x00\x05\x12\x04\xd4\x07\x02\x08\n\r\n\x05\x04>\x02\x00\x01\x12\x04\xd4\x07\t\x17\n\r\n\x05\x04>\x02\x00\x03\x12\x04\xd4\x07\x1a\x1b\n\x1b\n\x04\x04>\x02\x01\x12\x04\xd7\x07\x02\x14\x1a\r Server URL.\n\n\r\n\x05\x04>\x02\x01\x05\x12\x04\xd7\x07\x02\x08\n\r\n\x05\x04>\x02\x01\x01\x12\x04\xd7\x07\t\x0f\n\r\n\x05\x04>\x02\x01\x03\x12\x04\xd7\x07\x12\x13\n%\n\x04\x04>\x02\x02\x12\x04\xda\x07\x02\x13\x1a\x17 Authentication token.\n\n\r\n\x05\x04>\x02\x02\x05\x12\x04\xda\x07\x02\x08\n\r\n\x05\x04>\x02\x02\x01\x12\x04\xda\x07\t\x0e\n\r\n\x05\x04>\x02\x02\x03\x12\x04\xda\x07\x11\x12\n\x0c\n\x02\x04?\x12\x06\xdd\x07\x00\xe0\x07\x01\n\x0b\n\x03\x04?\x01\x12\x04\xdd\x07\x08+\n-\n\x04\x04?\x02\x00\x12\x04\xdf\x07\x02)\x1a\x1f Integration object to create.\n\n\r\n\x05\x04?\x02\x00\x06\x12\x04\xdf\x07\x02\x18\n\r\n\x05\x04?\x02\x00\x01\x12\x04\xdf\x07\x19$\n\r\n\x05\x04?\x02\x00\x03\x12\x04\xdf\x07\'(\n\x0c\n\x02\x04@\x12\x06\xe2\x07\x00\xe5\x07\x01\n\x0b\n\x03\x04@\x01\x12\x04\xe2\x07\x08(\n&\n\x04\x04@\x02\x00\x12\x04\xe4\x07\x02\x1c\x1a\x18 Application ID (UUID).\n\n\r\n\x05\x04@\x02\x00\x05\x12\x04\xe4\x07\x02\x08\n\r\n\x05\x04@\x02\x00\x01\x12\x04\xe4\x07\t\x17\n\r\n\x05\x04@\x02\x00\x03\x12\x04\xe4\x07\x1a\x1b\n\x0c\n\x02\x04A\x12\x06\xe7\x07\x00\xea\x07\x01\n\x0b\n\x03\x04A\x01\x12\x04\xe7\x07\x08)\n#\n\x04\x04A\x02\x00\x12\x04\xe9\x07\x02)\x1a\x15 Integration object.\n\n\r\n\x05\x04A\x02\x00\x06\x12\x04\xe9\x07\x02\x18\n\r\n\x05\x04A\x02\x00\x01\x12\x04\xe9\x07\x19$\n\r\n\x05\x04A\x02\x00\x03\x12\x04\xe9\x07\'(\n\x0c\n\x02\x04B\x12\x06\xec\x07\x00\xef\x07\x01\n\x0b\n\x03\x04B\x01\x12\x04\xec\x07\x08+\n-\n\x04\x04B\x02\x00\x12\x04\xee\x07\x02)\x1a\x1f Integration object to update.\n\n\r\n\x05\x04B\x02\x00\x06\x12\x04\xee\x07\x02\x18\n\r\n\x05\x04B\x02\x00\x01\x12\x04\xee\x07\x19$\n\r\n\x05\x04B\x02\x00\x03\x12\x04\xee\x07\'(\n\x0c\n\x02\x04C\x12\x06\xf1\x07\x00\xf4\x07\x01\n\x0b\n\x03\x04C\x01\x12\x04\xf1\x07\x08+\n&\n\x04\x04C\x02\x00\x12\x04\xf3\x07\x02\x1c\x1a\x18 Application ID (UUID).\n\n\r\n\x05\x04C\x02\x00\x05\x12\x04\xf3\x07\x02\x08\n\r\n\x05\x04C\x02\x00\x01\x12\x04\xf3\x07\t\x17\n\r\n\x05\x04C\x02\x00\x03\x12\x04\xf3\x07\x1a\x1b\n\x0c\n\x02\x04D\x12\x06\xf6\x07\x00\x97\x08\x01\n\x0b\n\x03\x04D\x01\x12\x04\xf6\x07\x08\x18\n&\n\x04\x04D\x02\x00\x12\x04\xf8\x07\x02\x1c\x1a\x18 Application ID (UUID).\n\n\r\n\x05\x04D\x02\x00\x05\x12\x04\xf8\x07\x02\x08\n\r\n\x05\x04D\x02\x00\x01\x12\x04\xf8\x07\t\x17\n\r\n\x05\x04D\x02\x00\x03\x12\x04\xf8\x07\x1a\x1b\nZ\n\x04\x04D\x02\x01\x12\x04\xfc\x07\x02\x11\x1aL Key.\n This key can be obtained from the IFTTT Webhooks documentation page.\n\n\r\n\x05\x04D\x02\x01\x05\x12\x04\xfc\x07\x02\x08\n\r\n\x05\x04D\x02\x01\x01\x12\x04\xfc\x07\t\x0c\n\r\n\x05\x04D\x02\x01\x03\x12\x04\xfc\x07\x0f\x10\n\x9c\x03\n\x04\x04D\x02\x02\x12\x04\x8a\x08\x02$\x1a\x8d\x03 Values.\n Up to 2 values can be forwarded to IFTTT. These values must map to the\n decoded payload keys. For example:\n {\n   \"batteryLevel\": 75.3,\n   \"buttons\": [{\"pressed\": false}, {\"pressed\": true}]\n }\n You would specify the following fields:\n uplink_values = [\"batteryLevel\", \"buttons_0_pressed\"]\n\n Notes: The first value is always used for the DevEUI.\n Ignored if arbitrary_json is set to true.\n\n\r\n\x05\x04D\x02\x02\x04\x12\x04\x8a\x08\x02\n\n\r\n\x05\x04D\x02\x02\x05\x12\x04\x8a\x08\x0b\x11\n\r\n\x05\x04D\x02\x02\x01\x12\x04\x8a\x08\x12\x1f\n\r\n\x05\x04D\x02\x02\x03\x12\x04\x8a\x08\"#\n\xb4\x01\n\x04\x04D\x02\x03\x12\x04\x8f\x08\x02\x1a\x1a\xa5\x01 Arbitrary JSON.\n If set to true, ChirpStack events will be sent as-is as arbitrary JSON\n payload. If set to false (default), the 3 JSON values format will be used.\n\n\r\n\x05\x04D\x02\x03\x05\x12\x04\x8f\x08\x02\x06\n\r\n\x05\x04D\x02\x03\x01\x12\x04\x8f\x08\x07\x15\n\r\n\x05\x04D\x02\x03\x03\x12\x04\x8f\x08\x18\x19\n\x8f\x02\n\x04\x04D\x02\x04\x12\x04\x96\x08\x02\x1a\x1a\x80\x02 Event prefix.\n If set, the event name will be PREFIX_EVENT. For example if event_prefix\n is set to weatherstation, and uplink event will be sent as\n weatherstation_up to the IFTTT webhook.\n Note: Only characters in the A-Z, a-z and 0-9 range are allowed.\n\n\r\n\x05\x04D\x02\x04\x05\x12\x04\x96\x08\x02\x08\n\r\n\x05\x04D\x02\x04\x01\x12\x04\x96\x08\t\x15\n\r\n\x05\x04D\x02\x04\x03\x12\x04\x96\x08\x18\x19\n\x0c\n\x02\x04E\x12\x06\x99\x08\x00\x9c\x08\x01\n\x0b\n\x03\x04E\x01\x12\x04\x99\x08\x08%\n#\n\x04\x04E\x02\x00\x12\x04\x9b\x08\x02#\x1a\x15 Integration object.\n\n\r\n\x05\x04E\x02\x00\x06\x12\x04\x9b\x08\x02\x12\n\r\n\x05\x04E\x02\x00\x01\x12\x04\x9b\x08\x13\x1e\n\r\n\x05\x04E\x02\x00\x03\x12\x04\x9b\x08!\"\n\x0c\n\x02\x04F\x12\x06\x9e\x08\x00\xa1\x08\x01\n\x0b\n\x03\x04F\x01\x12\x04\x9e\x08\x08\"\n&\n\x04\x04F\x02\x00\x12\x04\xa0\x08\x02\x1c\x1a\x18 Application ID (UUID).\n\n\r\n\x05\x04F\x02\x00\x05\x12\x04\xa0\x08\x02\x08\n\r\n\x05\x04F\x02\x00\x01\x12\x04\xa0\x08\t\x17\n\r\n\x05\x04F\x02\x00\x03\x12\x04\xa0\x08\x1a\x1b\n\x0c\n\x02\x04G\x12\x06\xa3\x08\x00\xa6\x08\x01\n\x0b\n\x03\x04G\x01\x12\x04\xa3\x08\x08#\n#\n\x04\x04G\x02\x00\x12\x04\xa5\x08\x02#\x1a\x15 Integration object.\n\n\r\n\x05\x04G\x02\x00\x06\x12\x04\xa5\x08\x02\x12\n\r\n\x05\x04G\x02\x00\x01\x12\x04\xa5\x08\x13\x1e\n\r\n\x05\x04G\x02\x00\x03\x12\x04\xa5\x08!\"\n\x0c\n\x02\x04H\x12\x06\xa8\x08\x00\xab\x08\x01\n\x0b\n\x03\x04H\x01\x12\x04\xa8\x08\x08%\n-\n\x04\x04H\x02\x00\x12\x04\xaa\x08\x02#\x1a\x1f Integration object to update.\n\n\r\n\x05\x04H\x02\x00\x06\x12\x04\xaa\x08\x02\x12\n\r\n\x05\x04H\x02\x00\x01\x12\x04\xaa\x08\x13\x1e\n\r\n\x05\x04H\x02\x00\x03\x12\x04\xaa\x08!\"\n\x0c\n\x02\x04I\x12\x06\xad\x08\x00\xb0\x08\x01\n\x0b\n\x03\x04I\x01\x12\x04\xad\x08\x08%\n&\n\x04\x04I\x02\x00\x12\x04\xaf\x08\x02\x1c\x1a\x18 Application ID (UUID).\n\n\r\n\x05\x04I\x02\x00\x05\x12\x04\xaf\x08\x02\x08\n\r\n\x05\x04I\x02\x00\x01\x12\x04\xaf\x08\t\x17\n\r\n\x05\x04I\x02\x00\x03\x12\x04\xaf\x08\x1a\x1b\n\x0c\n\x02\x04J\x12\x06\xb2\x08\x00\xb5\x08\x01\n\x0b\n\x03\x04J\x01\x12\x04\xb2\x08\x087\n&\n\x04\x04J\x02\x00\x12\x04\xb4\x08\x02\x1c\x1a\x18 Application ID (UUID).\n\n\r\n\x05\x04J\x02\x00\x05\x12\x04\xb4\x08\x02\x08\n\r\n\x05\x04J\x02\x00\x01\x12\x04\xb4\x08\t\x17\n\r\n\x05\x04J\x02\x00\x03\x12\x04\xb4\x08\x1a\x1b\n\x0c\n\x02\x04K\x12\x06\xb7\x08\x00\xc3\x08\x01\n\x0b\n\x03\x04K\x01\x12\x04\xb7\x08\x088\n \n\x04\x04K\x02\x00\x12\x04\xb9\x08\x02\x16\x1a\x12 TLS certificate.\n\n\r\n\x05\x04K\x02\x00\x05\x12\x04\xb9\x08\x02\x08\n\r\n\x05\x04K\x02\x00\x01\x12\x04\xb9\x08\t\x11\n\r\n\x05\x04K\x02\x00\x03\x12\x04\xb9\x08\x14\x15\n\x18\n\x04\x04K\x02\x01\x12\x04\xbc\x08\x02\x15\x1a\n TLS key.\n\n\r\n\x05\x04K\x02\x01\x05\x12\x04\xbc\x08\x02\x08\n\r\n\x05\x04K\x02\x01\x01\x12\x04\xbc\x08\t\x10\n\r\n\x05\x04K\x02\x01\x03\x12\x04\xbc\x08\x13\x14\n\x1f\n\x04\x04K\x02\x02\x12\x04\xbf\x08\x02\x15\x1a\x11 CA certificate.\n\n\r\n\x05\x04K\x02\x02\x05\x12\x04\xbf\x08\x02\x08\n\r\n\x05\x04K\x02\x02\x01\x12\x04\xbf\x08\t\x10\n\r\n\x05\x04K\x02\x02\x03\x12\x04\xbf\x08\x13\x14\nJ\n\x04\x04K\x02\x03\x12\x04\xc2\x08\x02+\x1a< Expires at defines the expiration date of the certificate.\n\n\r\n\x05\x04K\x02\x03\x06\x12\x04\xc2\x08\x02\x1b\n\r\n\x05\x04K\x02\x03\x01\x12\x04\xc2\x08\x1c&\n\r\n\x05\x04K\x02\x03\x03\x12\x04\xc2\x08)*b\x06proto3\n\x82\x98\x01\n\x18api/device_profile.proto\x12\x03api\x1a\x1cgoogle/api/annotations.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a\x13common/common.proto\"\xae\x16\n\rDeviceProfile\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x1b\n\ttenant_id\x18\x02 \x01(\tR\x08tenantId\x12\x12\n\x04name\x18\x03 \x01(\tR\x04name\x12 \n\x0bdescription\x18\x1a \x01(\tR\x0bdescription\x12&\n\x06region\x18\x04 \x01(\x0e2\x0e.common.RegionR\x06region\x123\n\x0bmac_version\x18\x05 \x01(\x0e2\x12.common.MacVersionR\nmacVersion\x12I\n\x13reg_params_revision\x18\x06 \x01(\x0e2\x19.common.RegParamsRevisionR\x11regParamsRevision\x12(\n\x10adr_algorithm_id\x18\x07 \x01(\tR\x0eadrAlgorithmId\x12E\n\x15payload_codec_runtime\x18\x08 \x01(\x0e2\x11.api.CodecRuntimeR\x13payloadCodecRuntime\x120\n\x14payload_codec_script\x18\t \x01(\tR\x12payloadCodecScript\x125\n\x17flush_queue_on_activate\x18\n \x01(\x08R\x14flushQueueOnActivate\x12\'\n\x0fuplink_interval\x18\x0b \x01(\rR\x0euplinkInterval\x12;\n\x1adevice_status_req_interval\x18\x0c \x01(\rR\x17deviceStatusReqInterval\x12#\n\rsupports_otaa\x18\r \x01(\x08R\x0csupportsOtaa\x12(\n\x10supports_class_b\x18\x0e \x01(\x08R\x0esupportsClassB\x12(\n\x10supports_class_c\x18\x0f \x01(\x08R\x0esupportsClassC\x12&\n\x0fclass_b_timeout\x18\x10 \x01(\rR\rclassBTimeout\x121\n\x16class_b_ping_slot_nb_k\x18\x11 \x01(\rR\x11classBPingSlotNbK\x12.\n\x14class_b_ping_slot_dr\x18\x12 \x01(\rR\x10classBPingSlotDr\x122\n\x16class_b_ping_slot_freq\x18\x13 \x01(\rR\x12classBPingSlotFreq\x12&\n\x0fclass_c_timeout\x18\x14 \x01(\rR\rclassCTimeout\x12\"\n\rabp_rx1_delay\x18\x15 \x01(\rR\x0babpRx1Delay\x12)\n\x11abp_rx1_dr_offset\x18\x16 \x01(\rR\x0eabpRx1DrOffset\x12\x1c\n\nabp_rx2_dr\x18\x17 \x01(\rR\x08abpRx2Dr\x12 \n\x0cabp_rx2_freq\x18\x18 \x01(\rR\nabpRx2Freq\x120\n\x04tags\x18\x19 \x03(\x0b2\x1c.api.DeviceProfile.TagsEntryR\x04tags\x12H\n\x0cmeasurements\x18\x1b \x03(\x0b2$.api.DeviceProfile.MeasurementsEntryR\x0cmeasurements\x128\n\x18auto_detect_measurements\x18\x1c \x01(\x08R\x16autoDetectMeasurements\x12(\n\x10region_config_id\x18\x1d \x01(\tR\x0eregionConfigId\x12\x19\n\x08is_relay\x18\x1e \x01(\x08R\x07isRelay\x12\x1e\n\x0bis_relay_ed\x18\x1f \x01(\x08R\tisRelayEd\x12-\n\x13relay_ed_relay_only\x18  \x01(\x08R\x10relayEdRelayOnly\x12#\n\rrelay_enabled\x18! \x01(\x08R\x0crelayEnabled\x12G\n\x15relay_cad_periodicity\x18\" \x01(\x0e2\x13.api.CadPeriodicityR\x13relayCadPeriodicity\x12=\n\x1brelay_default_channel_index\x18# \x01(\rR\x18relayDefaultChannelIndex\x129\n\x19relay_second_channel_freq\x18$ \x01(\rR\x16relaySecondChannelFreq\x125\n\x17relay_second_channel_dr\x18% \x01(\rR\x14relaySecondChannelDr\x12\\\n\x1frelay_second_channel_ack_offset\x18& \x01(\x0e2\x16.api.SecondChAckOffsetR\x1brelaySecondChannelAckOffset\x12Q\n\x18relay_ed_activation_mode\x18\' \x01(\x0e2\x18.api.RelayModeActivationR\x15relayEdActivationMode\x12<\n\x1brelay_ed_smart_enable_level\x18( \x01(\rR\x17relayEdSmartEnableLevel\x12)\n\x11relay_ed_back_off\x18) \x01(\rR\x0erelayEdBackOff\x12G\n!relay_ed_uplink_limit_bucket_size\x18* \x01(\rR\x1crelayEdUplinkLimitBucketSize\x12G\n!relay_ed_uplink_limit_reload_rate\x18+ \x01(\rR\x1crelayEdUplinkLimitReloadRate\x12E\n relay_join_req_limit_reload_rate\x18, \x01(\rR\x1brelayJoinReqLimitReloadRate\x12B\n\x1erelay_notify_limit_reload_rate\x18- \x01(\rR\x1arelayNotifyLimitReloadRate\x12O\n%relay_global_uplink_limit_reload_rate\x18. \x01(\rR relayGlobalUplinkLimitReloadRate\x12D\n\x1frelay_overall_limit_reload_rate\x18/ \x01(\rR\x1brelayOverallLimitReloadRate\x12E\n relay_join_req_limit_bucket_size\x180 \x01(\rR\x1brelayJoinReqLimitBucketSize\x12B\n\x1erelay_notify_limit_bucket_size\x181 \x01(\rR\x1arelayNotifyLimitBucketSize\x12O\n%relay_global_uplink_limit_bucket_size\x182 \x01(\rR relayGlobalUplinkLimitBucketSize\x12D\n\x1frelay_overall_limit_bucket_size\x183 \x01(\rR\x1brelayOverallLimitBucketSize\x1a7\n\tTagsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x028\x01\x1aQ\n\x11MeasurementsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12&\n\x05value\x18\x02 \x01(\x0b2\x10.api.MeasurementR\x05value:\x028\x01\"K\n\x0bMeasurement\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x12(\n\x04kind\x18\x03 \x01(\x0e2\x14.api.MeasurementKindR\x04kind\"\xd2\x03\n\x15DeviceProfileListItem\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x129\n\ncreated_at\x18\x02 \x01(\x0b2\x1a.google.protobuf.TimestampR\tcreatedAt\x129\n\nupdated_at\x18\x03 \x01(\x0b2\x1a.google.protobuf.TimestampR\tupdatedAt\x12\x12\n\x04name\x18\x04 \x01(\tR\x04name\x12&\n\x06region\x18\x05 \x01(\x0e2\x0e.common.RegionR\x06region\x123\n\x0bmac_version\x18\x06 \x01(\x0e2\x12.common.MacVersionR\nmacVersion\x12I\n\x13reg_params_revision\x18\x07 \x01(\x0e2\x19.common.RegParamsRevisionR\x11regParamsRevision\x12#\n\rsupports_otaa\x18\x08 \x01(\x08R\x0csupportsOtaa\x12(\n\x10supports_class_b\x18\t \x01(\x08R\x0esupportsClassB\x12(\n\x10supports_class_c\x18\n \x01(\x08R\x0esupportsClassC\"W\n\x1aCreateDeviceProfileRequest\x129\n\x0edevice_profile\x18\x01 \x01(\x0b2\x12.api.DeviceProfileR\rdeviceProfile\"-\n\x1bCreateDeviceProfileResponse\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\")\n\x17GetDeviceProfileRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\"\xcb\x01\n\x18GetDeviceProfileResponse\x129\n\x0edevice_profile\x18\x01 \x01(\x0b2\x12.api.DeviceProfileR\rdeviceProfile\x129\n\ncreated_at\x18\x02 \x01(\x0b2\x1a.google.protobuf.TimestampR\tcreatedAt\x129\n\nupdated_at\x18\x03 \x01(\x0b2\x1a.google.protobuf.TimestampR\tupdatedAt\"W\n\x1aUpdateDeviceProfileRequest\x129\n\x0edevice_profile\x18\x01 \x01(\x0b2\x12.api.DeviceProfileR\rdeviceProfile\",\n\x1aDeleteDeviceProfileRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\"~\n\x19ListDeviceProfilesRequest\x12\x14\n\x05limit\x18\x01 \x01(\rR\x05limit\x12\x16\n\x06offset\x18\x02 \x01(\rR\x06offset\x12\x16\n\x06search\x18\x03 \x01(\tR\x06search\x12\x1b\n\ttenant_id\x18\x04 \x01(\tR\x08tenantId\"q\n\x1aListDeviceProfilesResponse\x12\x1f\n\x0btotal_count\x18\x01 \x01(\rR\ntotalCount\x122\n\x06result\x18\x02 \x03(\x0b2\x1a.api.DeviceProfileListItemR\x06result\"|\n&ListDeviceProfileAdrAlgorithmsResponse\x12\x1f\n\x0btotal_count\x18\x01 \x01(\rR\ntotalCount\x121\n\x06result\x18\x02 \x03(\x0b2\x19.api.AdrAlgorithmListItemR\x06result\":\n\x14AdrAlgorithmListItem\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name*1\n\x0cCodecRuntime\x12\x08\n\x04NONE\x10\x00\x12\x0f\n\x0bCAYENNE_LPP\x10\x01\x12\x06\n\x02JS\x10\x02*P\n\x0fMeasurementKind\x12\x0b\n\x07UNKNOWN\x10\x00\x12\x0b\n\x07COUNTER\x10\x01\x12\x0c\n\x08ABSOLUTE\x10\x02\x12\t\n\x05GAUGE\x10\x03\x12\n\n\x06STRING\x10\x04*U\n\x0eCadPeriodicity\x12\t\n\x05SEC_1\x10\x00\x12\n\n\x06MS_500\x10\x01\x12\n\n\x06MS_250\x10\x02\x12\n\n\x06MS_100\x10\x03\x12\t\n\x05MS_50\x10\x04\x12\t\n\x05MS_20\x10\x05*a\n\x11SecondChAckOffset\x12\t\n\x05KHZ_0\x10\x00\x12\x0b\n\x07KHZ_200\x10\x01\x12\x0b\n\x07KHZ_400\x10\x02\x12\x0b\n\x07KHZ_800\x10\x03\x12\x0c\n\x08KHZ_1600\x10\x04\x12\x0c\n\x08KHZ_3200\x10\x05*l\n\x13RelayModeActivation\x12\x16\n\x12DISABLE_RELAY_MODE\x10\x00\x12\x15\n\x11ENABLE_RELAY_MODE\x10\x01\x12\x0b\n\x07DYNAMIC\x10\x02\x12\x19\n\x15END_DEVICE_CONTROLLED\x10\x032\xb8\x05\n\x14DeviceProfileService\x12l\n\x06Create\x12\x1f.api.CreateDeviceProfileRequest\x1a .api.CreateDeviceProfileResponse\"\x1f\x82\xd3\xe4\x93\x02\x19\"\x14/api/device-profiles:\x01*\x12e\n\x03Get\x12\x1c.api.GetDeviceProfileRequest\x1a\x1d.api.GetDeviceProfileResponse\"!\x82\xd3\xe4\x93\x02\x1b\x12\x19/api/device-profiles/{id}\x12v\n\x06Update\x12\x1f.api.UpdateDeviceProfileRequest\x1a\x16.google.protobuf.Empty\"3\x82\xd3\xe4\x93\x02-\x1a(/api/device-profiles/{device_profile.id}:\x01*\x12d\n\x06Delete\x12\x1f.api.DeleteDeviceProfileRequest\x1a\x16.google.protobuf.Empty\"!\x82\xd3\xe4\x93\x02\x1b*\x19/api/device-profiles/{id}\x12e\n\x04List\x12\x1e.api.ListDeviceProfilesRequest\x1a\x1f.api.ListDeviceProfilesResponse\"\x1c\x82\xd3\xe4\x93\x02\x16\x12\x14/api/device-profiles\x12\x85\x01\n\x11ListAdrAlgorithms\x12\x16.google.protobuf.Empty\x1a+.api.ListDeviceProfileAdrAlgorithmsResponse\"+\x82\xd3\xe4\x93\x02%\x12#/api/device-profiles/adr-algorithmsBj\n\x11io.chirpstack.apiB\x12DeviceProfileProtoP\x01Z.github.com/chirpstack/chirpstack/api/go/v4/api\xaa\x02\x0eChirpstack.ApiJ\x8bk\n\x07\x12\x05\x00\x00\x82\x04\x01\n\x08\n\x01\x0c\x12\x03\x00\x00\x12\n\x08\n\x01\x02\x12\x03\x02\x00\x0c\n\x08\n\x01\x08\x12\x03\x04\x00E\n\t\n\x02\x08\x0b\x12\x03\x04\x00E\n\x08\n\x01\x08\x12\x03\x05\x00*\n\t\n\x02\x08\x01\x12\x03\x05\x00*\n\x08\n\x01\x08\x12\x03\x06\x00\"\n\t\n\x02\x08\n\x12\x03\x06\x00\"\n\x08\n\x01\x08\x12\x03\x07\x003\n\t\n\x02\x08\x08\x12\x03\x07\x003\n\x08\n\x01\x08\x12\x03\x08\x00+\n\t\n\x02\x08%\x12\x03\x08\x00+\n\t\n\x02\x03\x00\x12\x03\n\x00&\n\t\n\x02\x03\x01\x12\x03\x0b\x00)\n\t\n\x02\x03\x02\x12\x03\x0c\x00%\n\t\n\x02\x03\x03\x12\x03\r\x00\x1d\n\n\n\x02\x05\x00\x12\x04\x0f\x00\x18\x01\n\n\n\x03\x05\x00\x01\x12\x03\x0f\x05\x11\n\x14\n\x04\x05\x00\x02\x00\x12\x03\x11\x04\r\x1a\x07 None.\n\n\x0c\n\x05\x05\x00\x02\x00\x01\x12\x03\x11\x04\x08\n\x0c\n\x05\x05\x00\x02\x00\x02\x12\x03\x11\x0b\x0c\n\x1b\n\x04\x05\x00\x02\x01\x12\x03\x14\x04\x14\x1a\x0e Cayenne LPP.\n\n\x0c\n\x05\x05\x00\x02\x01\x01\x12\x03\x14\x04\x0f\n\x0c\n\x05\x05\x00\x02\x01\x02\x12\x03\x14\x12\x13\n\x1a\n\x04\x05\x00\x02\x02\x12\x03\x17\x04\x0b\x1a\r JavaScript.\n\n\x0c\n\x05\x05\x00\x02\x02\x01\x12\x03\x17\x04\x06\n\x0c\n\x05\x05\x00\x02\x02\x02\x12\x03\x17\t\n\n\n\n\x02\x05\x01\x12\x04\x1a\x00)\x01\n\n\n\x03\x05\x01\x01\x12\x03\x1a\x05\x14\n9\n\x04\x05\x01\x02\x00\x12\x03\x1c\x04\x10\x1a, Unknown (in which case it is not tracked).\n\n\x0c\n\x05\x05\x01\x02\x00\x01\x12\x03\x1c\x04\x0b\n\x0c\n\x05\x05\x01\x02\x00\x02\x12\x03\x1c\x0e\x0f\n_\n\x04\x05\x01\x02\x01\x12\x03\x1f\x04\x10\x1aR Incrementing counters that never decrease (these are not reset on each reading).\n\n\x0c\n\x05\x05\x01\x02\x01\x01\x12\x03\x1f\x04\x0b\n\x0c\n\x05\x05\x01\x02\x01\x02\x12\x03\x1f\x0e\x0f\n7\n\x04\x05\x01\x02\x02\x12\x03\"\x04\x11\x1a* Counters that do get reset upon reading.\n\n\x0c\n\x05\x05\x01\x02\x02\x01\x12\x03\"\x04\x0c\n\x0c\n\x05\x05\x01\x02\x02\x02\x12\x03\"\x0f\x10\n(\n\x04\x05\x01\x02\x03\x12\x03%\x04\x0e\x1a\x1b E.g. a temperature value.\n\n\x0c\n\x05\x05\x01\x02\x03\x01\x12\x03%\x04\t\n\x0c\n\x05\x05\x01\x02\x03\x02\x12\x03%\x0c\r\n;\n\x04\x05\x01\x02\x04\x12\x03(\x04\x0f\x1a. E.g. a firmware version, true / false value.\n\n\x0c\n\x05\x05\x01\x02\x04\x01\x12\x03(\x04\n\n\x0c\n\x05\x05\x01\x02\x04\x02\x12\x03(\r\x0e\n\n\n\x02\x05\x02\x12\x04+\x00=\x01\n\n\n\x03\x05\x02\x01\x12\x03+\x05\x13\n\x18\n\x04\x05\x02\x02\x00\x12\x03-\x04\x0e\x1a\x0b 1 second.\n\n\x0c\n\x05\x05\x02\x02\x00\x01\x12\x03-\x04\t\n\x0c\n\x05\x05\x02\x02\x00\x02\x12\x03-\x0c\r\n\x1f\n\x04\x05\x02\x02\x01\x12\x030\x04\x0f\x1a\x12 500 milliseconds\n\n\x0c\n\x05\x05\x02\x02\x01\x01\x12\x030\x04\n\n\x0c\n\x05\x05\x02\x02\x01\x02\x12\x030\r\x0e\n\x1f\n\x04\x05\x02\x02\x02\x12\x033\x04\x0f\x1a\x12 250 milliseconds\n\n\x0c\n\x05\x05\x02\x02\x02\x01\x12\x033\x04\n\n\x0c\n\x05\x05\x02\x02\x02\x02\x12\x033\r\x0e\n\x1f\n\x04\x05\x02\x02\x03\x12\x036\x04\x0f\x1a\x12 100 milliseconds\n\n\x0c\n\x05\x05\x02\x02\x03\x01\x12\x036\x04\n\n\x0c\n\x05\x05\x02\x02\x03\x02\x12\x036\r\x0e\n\x1e\n\x04\x05\x02\x02\x04\x12\x039\x04\x0e\x1a\x11 50 milliseconds\n\n\x0c\n\x05\x05\x02\x02\x04\x01\x12\x039\x04\t\n\x0c\n\x05\x05\x02\x02\x04\x02\x12\x039\x0c\r\n\x1e\n\x04\x05\x02\x02\x05\x12\x03<\x04\x0e\x1a\x11 20 milliseconds\n\n\x0c\n\x05\x05\x02\x02\x05\x01\x12\x03<\x04\t\n\x0c\n\x05\x05\x02\x02\x05\x02\x12\x03<\x0c\r\n\n\n\x02\x05\x03\x12\x04?\x00R\x01\n\n\n\x03\x05\x03\x01\x12\x03?\x05\x16\n\x15\n\x04\x05\x03\x02\x00\x12\x03A\x04\x0e\x1a\x08 0 kHz.\n\n\x0c\n\x05\x05\x03\x02\x00\x01\x12\x03A\x04\t\n\x0c\n\x05\x05\x03\x02\x00\x02\x12\x03A\x0c\r\n\x17\n\x04\x05\x03\x02\x01\x12\x03D\x04\x10\x1a\n 200 kHz.\n\n\x0c\n\x05\x05\x03\x02\x01\x01\x12\x03D\x04\x0b\n\x0c\n\x05\x05\x03\x02\x01\x02\x12\x03D\x0e\x0f\n\x17\n\x04\x05\x03\x02\x02\x12\x03G\x04\x10\x1a\n 400 kHz.\n\n\x0c\n\x05\x05\x03\x02\x02\x01\x12\x03G\x04\x0b\n\x0c\n\x05\x05\x03\x02\x02\x02\x12\x03G\x0e\x0f\n\x17\n\x04\x05\x03\x02\x03\x12\x03J\x04\x10\x1a\n 800 kHz.\n\n\x0c\n\x05\x05\x03\x02\x03\x01\x12\x03J\x04\x0b\n\x0c\n\x05\x05\x03\x02\x03\x02\x12\x03J\x0e\x0f\n\x18\n\x04\x05\x03\x02\x04\x12\x03M\x04\x11\x1a\x0b 1600 kHz.\n\n\x0c\n\x05\x05\x03\x02\x04\x01\x12\x03M\x04\x0c\n\x0c\n\x05\x05\x03\x02\x04\x02\x12\x03M\x0f\x10\n\x18\n\x04\x05\x03\x02\x05\x12\x03P\x04\x11\x1a\x0b 3200 kHz.\n\n\x0c\n\x05\x05\x03\x02\x05\x01\x12\x03P\x04\x0c\n\x0c\n\x05\x05\x03\x02\x05\x02\x12\x03P\x0f\x10\n\n\n\x02\x05\x04\x12\x04T\x00`\x01\n\n\n\x03\x05\x04\x01\x12\x03T\x05\x18\n&\n\x04\x05\x04\x02\x00\x12\x03V\x04\x1b\x1a\x19 Disable the relay mode.\n\n\x0c\n\x05\x05\x04\x02\x00\x01\x12\x03V\x04\x16\n\x0c\n\x05\x05\x04\x02\x00\x02\x12\x03V\x19\x1a\n&\n\x04\x05\x04\x02\x01\x12\x03Y\x04\x1a\x1a\x19 Enable the relay model.\n\n\x0c\n\x05\x05\x04\x02\x01\x01\x12\x03Y\x04\x15\n\x0c\n\x05\x05\x04\x02\x01\x02\x12\x03Y\x18\x19\n\x17\n\x04\x05\x04\x02\x02\x12\x03\\\x04\x10\x1a\n Dynamic.\n\n\x0c\n\x05\x05\x04\x02\x02\x01\x12\x03\\\x04\x0b\n\x0c\n\x05\x05\x04\x02\x02\x02\x12\x03\\\x0e\x0f\n%\n\x04\x05\x04\x02\x03\x12\x03_\x04\x1e\x1a\x18 End-device controlled.\n\n\x0c\n\x05\x05\x04\x02\x03\x01\x12\x03_\x04\x19\n\x0c\n\x05\x05\x04\x02\x03\x02\x12\x03_\x1c\x1d\nf\n\x02\x06\x00\x12\x05c\x00\x8f\x01\x01\x1aY DeviceProfileService is the service providing API methods for managing device-profiles.\n\n\n\n\x03\x06\x00\x01\x12\x03c\x08\x1c\n0\n\x04\x06\x00\x02\x00\x12\x04e\x04j\x05\x1a\" Create the given device-profile.\n\n\x0c\n\x05\x06\x00\x02\x00\x01\x12\x03e\x08\x0e\n\x0c\n\x05\x06\x00\x02\x00\x02\x12\x03e\x0f)\n\x0c\n\x05\x06\x00\x02\x00\x03\x12\x03e4O\n\r\n\x05\x06\x00\x02\x00\x04\x12\x04f\x08i\n\n\x11\n\t\x06\x00\x02\x00\x04\xb0\xca\xbc\"\x12\x04f\x08i\n\n8\n\x04\x06\x00\x02\x01\x12\x04m\x04q\x05\x1a* Get the device-profile for the given ID.\n\n\x0c\n\x05\x06\x00\x02\x01\x01\x12\x03m\x08\x0b\n\x0c\n\x05\x06\x00\x02\x01\x02\x12\x03m\x0c#\n\x0c\n\x05\x06\x00\x02\x01\x03\x12\x03m.F\n\r\n\x05\x06\x00\x02\x01\x04\x12\x04n\x08p\n\n\x11\n\t\x06\x00\x02\x01\x04\xb0\xca\xbc\"\x12\x04n\x08p\n\n0\n\x04\x06\x00\x02\x02\x12\x04t\x04y\x05\x1a\" Update the given device-profile.\n\n\x0c\n\x05\x06\x00\x02\x02\x01\x12\x03t\x08\x0e\n\x0c\n\x05\x06\x00\x02\x02\x02\x12\x03t\x0f)\n\x0c\n\x05\x06\x00\x02\x02\x03\x12\x03t4I\n\r\n\x05\x06\x00\x02\x02\x04\x12\x04u\x08x\n\n\x11\n\t\x06\x00\x02\x02\x04\xb0\xca\xbc\"\x12\x04u\x08x\n\n=\n\x04\x06\x00\x02\x03\x12\x05|\x04\x80\x01\x05\x1a. Delete the device-profile with the given ID.\n\n\x0c\n\x05\x06\x00\x02\x03\x01\x12\x03|\x08\x0e\n\x0c\n\x05\x06\x00\x02\x03\x02\x12\x03|\x0f)\n\x0c\n\x05\x06\x00\x02\x03\x03\x12\x03|4I\n\r\n\x05\x06\x00\x02\x03\x04\x12\x04}\x08\x7f\n\n\x11\n\t\x06\x00\x02\x03\x04\xb0\xca\xbc\"\x12\x04}\x08\x7f\n\n5\n\x04\x06\x00\x02\x04\x12\x06\x83\x01\x04\x87\x01\x05\x1a% List the available device-profiles.\n\n\r\n\x05\x06\x00\x02\x04\x01\x12\x04\x83\x01\x08\x0c\n\r\n\x05\x06\x00\x02\x04\x02\x12\x04\x83\x01\r&\n\r\n\x05\x06\x00\x02\x04\x03\x12\x04\x83\x011K\n\x0f\n\x05\x06\x00\x02\x04\x04\x12\x06\x84\x01\x08\x86\x01\n\n\x13\n\t\x06\x00\x02\x04\x04\xb0\xca\xbc\"\x12\x06\x84\x01\x08\x86\x01\n\n0\n\x04\x06\x00\x02\x05\x12\x06\x8a\x01\x04\x8e\x01\x05\x1a  List available ADR algorithms.\n\n\r\n\x05\x06\x00\x02\x05\x01\x12\x04\x8a\x01\x08\x19\n\r\n\x05\x06\x00\x02\x05\x02\x12\x04\x8a\x01\x1a/\n\r\n\x05\x06\x00\x02\x05\x03\x12\x04\x8a\x01:`\n\x0f\n\x05\x06\x00\x02\x05\x04\x12\x06\x8b\x01\x08\x8d\x01\n\n\x13\n\t\x06\x00\x02\x05\x04\xb0\xca\xbc\"\x12\x06\x8b\x01\x08\x8d\x01\n\n\x0c\n\x02\x04\x00\x12\x06\x91\x01\x00\x90\x03\x01\n\x0b\n\x03\x04\x00\x01\x12\x04\x91\x01\x08\x15\n`\n\x04\x04\x00\x02\x00\x12\x04\x94\x01\x04\x12\x1aR Device-profile ID (UUID).\n Note: on create this will be automatically generated.\n\n\r\n\x05\x04\x00\x02\x00\x05\x12\x04\x94\x01\x04\n\n\r\n\x05\x04\x00\x02\x00\x01\x12\x04\x94\x01\x0b\r\n\r\n\x05\x04\x00\x02\x00\x03\x12\x04\x94\x01\x10\x11\n!\n\x04\x04\x00\x02\x01\x12\x04\x97\x01\x04\x19\x1a\x13 Tenant ID (UUID).\n\n\r\n\x05\x04\x00\x02\x01\x05\x12\x04\x97\x01\x04\n\n\r\n\x05\x04\x00\x02\x01\x01\x12\x04\x97\x01\x0b\x14\n\r\n\x05\x04\x00\x02\x01\x03\x12\x04\x97\x01\x17\x18\n\x15\n\x04\x04\x00\x02\x02\x12\x04\x9a\x01\x04\x14\x1a\x07 Name.\n\n\r\n\x05\x04\x00\x02\x02\x05\x12\x04\x9a\x01\x04\n\n\r\n\x05\x04\x00\x02\x02\x01\x12\x04\x9a\x01\x0b\x0f\n\r\n\x05\x04\x00\x02\x02\x03\x12\x04\x9a\x01\x12\x13\n\x1c\n\x04\x04\x00\x02\x03\x12\x04\x9d\x01\x04\x1c\x1a\x0e Description.\n\n\r\n\x05\x04\x00\x02\x03\x05\x12\x04\x9d\x01\x04\n\n\r\n\x05\x04\x00\x02\x03\x01\x12\x04\x9d\x01\x0b\x16\n\r\n\x05\x04\x00\x02\x03\x03\x12\x04\x9d\x01\x19\x1b\n\x17\n\x04\x04\x00\x02\x04\x12\x04\xa0\x01\x04\x1d\x1a\t Region.\n\n\r\n\x05\x04\x00\x02\x04\x06\x12\x04\xa0\x01\x04\x11\n\r\n\x05\x04\x00\x02\x04\x01\x12\x04\xa0\x01\x12\x18\n\r\n\x05\x04\x00\x02\x04\x03\x12\x04\xa0\x01\x1b\x1c\n$\n\x04\x04\x00\x02\x05\x12\x04\xa3\x01\x04&\x1a\x16 LoRaWAN mac-version.\n\n\r\n\x05\x04\x00\x02\x05\x06\x12\x04\xa3\x01\x04\x15\n\r\n\x05\x04\x00\x02\x05\x01\x12\x04\xa3\x01\x16!\n\r\n\x05\x04\x00\x02\x05\x03\x12\x04\xa3\x01$%\n-\n\x04\x04\x00\x02\x06\x12\x04\xa6\x01\x045\x1a\x1f Regional parameters revision.\n\n\r\n\x05\x04\x00\x02\x06\x06\x12\x04\xa6\x01\x04\x1c\n\r\n\x05\x04\x00\x02\x06\x01\x12\x04\xa6\x01\x1d0\n\r\n\x05\x04\x00\x02\x06\x03\x12\x04\xa6\x0134\n!\n\x04\x04\x00\x02\x07\x12\x04\xa9\x01\x04 \x1a\x13 ADR algorithm ID.\n\n\r\n\x05\x04\x00\x02\x07\x05\x12\x04\xa9\x01\x04\n\n\r\n\x05\x04\x00\x02\x07\x01\x12\x04\xa9\x01\x0b\x1b\n\r\n\x05\x04\x00\x02\x07\x03\x12\x04\xa9\x01\x1e\x1f\n&\n\x04\x04\x00\x02\x08\x12\x04\xac\x01\x04+\x1a\x18 Payload codec runtime.\n\n\r\n\x05\x04\x00\x02\x08\x06\x12\x04\xac\x01\x04\x10\n\r\n\x05\x04\x00\x02\x08\x01\x12\x04\xac\x01\x11&\n\r\n\x05\x04\x00\x02\x08\x03\x12\x04\xac\x01)*\n%\n\x04\x04\x00\x02\t\x12\x04\xaf\x01\x04$\x1a\x17 Payload codec script.\n\n\r\n\x05\x04\x00\x02\t\x05\x12\x04\xaf\x01\x04\n\n\r\n\x05\x04\x00\x02\t\x01\x12\x04\xaf\x01\x0b\x1f\n\r\n\x05\x04\x00\x02\t\x03\x12\x04\xaf\x01\"#\n1\n\x04\x04\x00\x02\n\x12\x04\xb2\x01\x04&\x1a# Flush queue on device activation.\n\n\r\n\x05\x04\x00\x02\n\x05\x12\x04\xb2\x01\x04\x08\n\r\n\x05\x04\x00\x02\n\x01\x12\x04\xb2\x01\t \n\r\n\x05\x04\x00\x02\n\x03\x12\x04\xb2\x01#%\n\xe8\x01\n\x04\x04\x00\x02\x0b\x12\x04\xb8\x01\x04 \x1a\xd9\x01 Uplink interval (seconds).\n This defines the expected uplink interval which the device uses for\n communication. If the uplink interval has expired and no uplink has\n been received, the device is considered inactive.\n\n\r\n\x05\x04\x00\x02\x0b\x05\x12\x04\xb8\x01\x04\n\n\r\n\x05\x04\x00\x02\x0b\x01\x12\x04\xb8\x01\x0b\x1a\n\r\n\x05\x04\x00\x02\x0b\x03\x12\x04\xb8\x01\x1d\x1f\n\x9f\x01\n\x04\x04\x00\x02\x0c\x12\x04\xbd\x01\x04+\x1a\x90\x01 Device-status request interval (times / day).\n This defines the times per day that ChirpStack will request the device-status\n from the device.\n\n\r\n\x05\x04\x00\x02\x0c\x05\x12\x04\xbd\x01\x04\n\n\r\n\x05\x04\x00\x02\x0c\x01\x12\x04\xbd\x01\x0b%\n\r\n\x05\x04\x00\x02\x0c\x03\x12\x04\xbd\x01(*\n\x1e\n\x04\x04\x00\x02\r\x12\x04\xc0\x01\x04\x1c\x1a\x10 Supports OTAA.\n\n\r\n\x05\x04\x00\x02\r\x05\x12\x04\xc0\x01\x04\x08\n\r\n\x05\x04\x00\x02\r\x01\x12\x04\xc0\x01\t\x16\n\r\n\x05\x04\x00\x02\r\x03\x12\x04\xc0\x01\x19\x1b\n!\n\x04\x04\x00\x02\x0e\x12\x04\xc3\x01\x04\x1f\x1a\x13 Supports Class B.\n\n\r\n\x05\x04\x00\x02\x0e\x05\x12\x04\xc3\x01\x04\x08\n\r\n\x05\x04\x00\x02\x0e\x01\x12\x04\xc3\x01\t\x19\n\r\n\x05\x04\x00\x02\x0e\x03\x12\x04\xc3\x01\x1c\x1e\n!\n\x04\x04\x00\x02\x0f\x12\x04\xc6\x01\x04\x1f\x1a\x13 Supports Class-C.\n\n\r\n\x05\x04\x00\x02\x0f\x05\x12\x04\xc6\x01\x04\x08\n\r\n\x05\x04\x00\x02\x0f\x01\x12\x04\xc6\x01\t\x19\n\r\n\x05\x04\x00\x02\x0f\x03\x12\x04\xc6\x01\x1c\x1e\n\x98\x01\n\x04\x04\x00\x02\x10\x12\x04\xca\x01\x04 \x1a\x89\x01 Class-B timeout (seconds).\n This is the maximum time ChirpStack will wait to receive an acknowledgement from the device (if requested).\n\n\r\n\x05\x04\x00\x02\x10\x05\x12\x04\xca\x01\x04\n\n\r\n\x05\x04\x00\x02\x10\x01\x12\x04\xca\x01\x0b\x1a\n\r\n\x05\x04\x00\x02\x10\x03\x12\x04\xca\x01\x1d\x1f\n\x94\x01\n\x04\x04\x00\x02\x11\x12\x04\xd0\x01\x04\'\x1a\x85\x01 Class-B ping-slots per beacon period.\n Valid options are: 0 - 7.\n\n The actual number of ping-slots per beacon period equals to 2^k.\n\n\r\n\x05\x04\x00\x02\x11\x05\x12\x04\xd0\x01\x04\n\n\r\n\x05\x04\x00\x02\x11\x01\x12\x04\xd0\x01\x0b!\n\r\n\x05\x04\x00\x02\x11\x03\x12\x04\xd0\x01$&\n%\n\x04\x04\x00\x02\x12\x12\x04\xd3\x01\x04%\x1a\x17 Class-B ping-slot DR.\n\n\r\n\x05\x04\x00\x02\x12\x05\x12\x04\xd3\x01\x04\n\n\r\n\x05\x04\x00\x02\x12\x01\x12\x04\xd3\x01\x0b\x1f\n\r\n\x05\x04\x00\x02\x12\x03\x12\x04\xd3\x01\"$\n,\n\x04\x04\x00\x02\x13\x12\x04\xd6\x01\x04\'\x1a\x1e Class-B ping-slot freq (Hz).\n\n\r\n\x05\x04\x00\x02\x13\x05\x12\x04\xd6\x01\x04\n\n\r\n\x05\x04\x00\x02\x13\x01\x12\x04\xd6\x01\x0b!\n\r\n\x05\x04\x00\x02\x13\x03\x12\x04\xd6\x01$&\n\x98\x01\n\x04\x04\x00\x02\x14\x12\x04\xda\x01\x04 \x1a\x89\x01 Class-C timeout (seconds).\n This is the maximum time ChirpStack will wait to receive an acknowledgement from the device (if requested).\n\n\r\n\x05\x04\x00\x02\x14\x05\x12\x04\xda\x01\x04\n\n\r\n\x05\x04\x00\x02\x14\x01\x12\x04\xda\x01\x0b\x1a\n\r\n\x05\x04\x00\x02\x14\x03\x12\x04\xda\x01\x1d\x1f\n$\n\x04\x04\x00\x02\x15\x12\x04\xdd\x01\x04\x1e\x1a\x16 RX1 delay (for ABP).\n\n\r\n\x05\x04\x00\x02\x15\x05\x12\x04\xdd\x01\x04\n\n\r\n\x05\x04\x00\x02\x15\x01\x12\x04\xdd\x01\x0b\x18\n\r\n\x05\x04\x00\x02\x15\x03\x12\x04\xdd\x01\x1b\x1d\n(\n\x04\x04\x00\x02\x16\x12\x04\xe0\x01\x04\"\x1a\x1a RX1 DR offset (for ABP).\n\n\r\n\x05\x04\x00\x02\x16\x05\x12\x04\xe0\x01\x04\n\n\r\n\x05\x04\x00\x02\x16\x01\x12\x04\xe0\x01\x0b\x1c\n\r\n\x05\x04\x00\x02\x16\x03\x12\x04\xe0\x01\x1f!\n!\n\x04\x04\x00\x02\x17\x12\x04\xe3\x01\x04\x1b\x1a\x13 RX2 DR (for ABP).\n\n\r\n\x05\x04\x00\x02\x17\x05\x12\x04\xe3\x01\x04\n\n\r\n\x05\x04\x00\x02\x17\x01\x12\x04\xe3\x01\x0b\x15\n\r\n\x05\x04\x00\x02\x17\x03\x12\x04\xe3\x01\x18\x1a\n,\n\x04\x04\x00\x02\x18\x12\x04\xe6\x01\x04\x1d\x1a\x1e RX2 frequency (for ABP, Hz).\n\n\r\n\x05\x04\x00\x02\x18\x05\x12\x04\xe6\x01\x04\n\n\r\n\x05\x04\x00\x02\x18\x01\x12\x04\xe6\x01\x0b\x17\n\r\n\x05\x04\x00\x02\x18\x03\x12\x04\xe6\x01\x1a\x1c\n\"\n\x04\x04\x00\x02\x19\x12\x04\xe9\x01\x04\"\x1a\x14 User defined tags.\n\n\r\n\x05\x04\x00\x02\x19\x06\x12\x04\xe9\x01\x04\x17\n\r\n\x05\x04\x00\x02\x19\x01\x12\x04\xe9\x01\x18\x1c\n\r\n\x05\x04\x00\x02\x19\x03\x12\x04\xe9\x01\x1f!\nh\n\x04\x04\x00\x02\x1a\x12\x04\xed\x01\x04/\x1aZ Measurements.\n If defined, ChirpStack will visualize these metrics in the web-interface.\n\n\r\n\x05\x04\x00\x02\x1a\x06\x12\x04\xed\x01\x04\x1c\n\r\n\x05\x04\x00\x02\x1a\x01\x12\x04\xed\x01\x1d)\n\r\n\x05\x04\x00\x02\x1a\x03\x12\x04\xed\x01,.\n\xf4\x01\n\x04\x04\x00\x02\x1b\x12\x04\xf3\x01\x04\'\x1a\xe5\x01 Auto-detect measurements.\n If set to true, measurements will be automatically added based on the\n keys of the decoded payload. In cases where the decoded payload contains\n random keys in the data, you want to set this to false.\n\n\r\n\x05\x04\x00\x02\x1b\x05\x12\x04\xf3\x01\x04\x08\n\r\n\x05\x04\x00\x02\x1b\x01\x12\x04\xf3\x01\t!\n\r\n\x05\x04\x00\x02\x1b\x03\x12\x04\xf3\x01$&\n\xd1\x02\n\x04\x04\x00\x02\x1c\x12\x04\xfb\x01\x04!\x1a\xc2\x02 Region configuration ID.\n If set, devices will only use the associated region. If let blank, then\n devices will use all regions matching the selected common-name. Note\n that multiple region configurations can exist for the same common-name,\n e.g. to provide an 8 channel and 16 channel configuration for the US915\n band.\n\n\r\n\x05\x04\x00\x02\x1c\x05\x12\x04\xfb\x01\x04\n\n\r\n\x05\x04\x00\x02\x1c\x01\x12\x04\xfb\x01\x0b\x1b\n\r\n\x05\x04\x00\x02\x1c\x03\x12\x04\xfb\x01\x1e \n\xe0\x01\n\x04\x04\x00\x02\x1d\x12\x04\x81\x02\x04\x17\x1a\xd1\x01 Device is a Relay device.\n Enable this in case the device is a Relay. A Relay device implements TS011\n and is able to relay data from relay capable devices.\n See for more information the TS011 specification.\n\n\r\n\x05\x04\x00\x02\x1d\x05\x12\x04\x81\x02\x04\x08\n\r\n\x05\x04\x00\x02\x1d\x01\x12\x04\x81\x02\t\x11\n\r\n\x05\x04\x00\x02\x1d\x03\x12\x04\x81\x02\x14\x16\n\xbe\x01\n\x04\x04\x00\x02\x1e\x12\x04\x86\x02\x04\x1a\x1a\xaf\x01 Device is a Relay end-device.\n Enable this in case the device is an end-device that can operate under a\n Relay. Please refer to the TS011 specification for more information.\n\n\r\n\x05\x04\x00\x02\x1e\x05\x12\x04\x86\x02\x04\x08\n\r\n\x05\x04\x00\x02\x1e\x01\x12\x04\x86\x02\t\x14\n\r\n\x05\x04\x00\x02\x1e\x03\x12\x04\x86\x02\x17\x19\n\xe6\x01\n\x04\x04\x00\x02\x1f\x12\x04\x8c\x02\x04\"\x1a\xd7\x01 End-device only accept data through relay.\n Only accept data for this device through a relay. This setting is useful\n for testing as in case of a test-setup, the end-device is usually within\n range of the gateway.\n\n\r\n\x05\x04\x00\x02\x1f\x05\x12\x04\x8c\x02\x04\x08\n\r\n\x05\x04\x00\x02\x1f\x01\x12\x04\x8c\x02\t\x1c\n\r\n\x05\x04\x00\x02\x1f\x03\x12\x04\x8c\x02\x1f!\n&\n\x04\x04\x00\x02 \x12\x04\x8f\x02\x04\x1c\x1a\x18 Relay must be enabled.\n\n\r\n\x05\x04\x00\x02 \x05\x12\x04\x8f\x02\x04\x08\n\r\n\x05\x04\x00\x02 \x01\x12\x04\x8f\x02\t\x16\n\r\n\x05\x04\x00\x02 \x03\x12\x04\x8f\x02\x19\x1b\n&\n\x04\x04\x00\x02!\x12\x04\x92\x02\x04.\x1a\x18 Relay CAD periodicity.\n\n\r\n\x05\x04\x00\x02!\x06\x12\x04\x92\x02\x04\x12\n\r\n\x05\x04\x00\x02!\x01\x12\x04\x92\x02\x13(\n\r\n\x05\x04\x00\x02!\x03\x12\x04\x92\x02+-\n\x92\x01\n\x04\x04\x00\x02\"\x12\x04\x97\x02\x04,\x1a\x83\x01 Relay default channel index.\n Valid values are 0 and 1, please refer to the RP002 specification for\n the meaning of these values.\n\n\r\n\x05\x04\x00\x02\"\x05\x12\x04\x97\x02\x04\n\n\r\n\x05\x04\x00\x02\"\x01\x12\x04\x97\x02\x0b&\n\r\n\x05\x04\x00\x02\"\x03\x12\x04\x97\x02)+\n4\n\x04\x04\x00\x02#\x12\x04\x9a\x02\x04*\x1a& Relay second channel frequency (Hz).\n\n\r\n\x05\x04\x00\x02#\x05\x12\x04\x9a\x02\x04\n\n\r\n\x05\x04\x00\x02#\x01\x12\x04\x9a\x02\x0b$\n\r\n\x05\x04\x00\x02#\x03\x12\x04\x9a\x02\')\n(\n\x04\x04\x00\x02$\x12\x04\x9d\x02\x04(\x1a\x1a Relay second channel DR.\n\n\r\n\x05\x04\x00\x02$\x05\x12\x04\x9d\x02\x04\n\n\r\n\x05\x04\x00\x02$\x01\x12\x04\x9d\x02\x0b\"\n\r\n\x05\x04\x00\x02$\x03\x12\x04\x9d\x02%\'\n0\n\x04\x04\x00\x02%\x12\x04\xa0\x02\x04;\x1a\" Relay second channel ACK offset.\n\n\r\n\x05\x04\x00\x02%\x06\x12\x04\xa0\x02\x04\x15\n\r\n\x05\x04\x00\x02%\x01\x12\x04\xa0\x02\x165\n\r\n\x05\x04\x00\x02%\x03\x12\x04\xa0\x028:\n1\n\x04\x04\x00\x02&\x12\x04\xa3\x02\x046\x1a# Relay end-device activation mode.\n\n\r\n\x05\x04\x00\x02&\x06\x12\x04\xa3\x02\x04\x17\n\r\n\x05\x04\x00\x02&\x01\x12\x04\xa3\x02\x180\n\r\n\x05\x04\x00\x02&\x03\x12\x04\xa3\x0235\n4\n\x04\x04\x00\x02\'\x12\x04\xa6\x02\x04,\x1a& Relay end-device smart-enable level.\n\n\r\n\x05\x04\x00\x02\'\x05\x12\x04\xa6\x02\x04\n\n\r\n\x05\x04\x00\x02\'\x01\x12\x04\xa6\x02\x0b&\n\r\n\x05\x04\x00\x02\'\x03\x12\x04\xa6\x02)+\n\xbd\x01\n\x04\x04\x00\x02(\x12\x04\xab\x02\x04\"\x1a\xae\x01 Relay end-device back-off (in case it does not receive WOR ACK frame).\n 0 = Always send a LoRaWAN uplink\n 1..63 = Send a LoRaWAN uplink after X WOR frames without a WOR ACK\n\n\r\n\x05\x04\x00\x02(\x05\x12\x04\xab\x02\x04\n\n\r\n\x05\x04\x00\x02(\x01\x12\x04\xab\x02\x0b\x1c\n\r\n\x05\x04\x00\x02(\x03\x12\x04\xab\x02\x1f!\n\x90\x02\n\x04\x04\x00\x02)\x12\x04\xb8\x02\x042\x1a\x81\x02 Relay end-device uplink limit bucket size.\n\n This field indicates the multiplier to determine the bucket size\n according to the following formula:\n BucketSize TOKEN = _reload_rate x _bucket_size\n\n Valid values (0 - 3):\n   0 = 1\n   1 = 2\n   2 = 4\n   3 = 12\n\n\r\n\x05\x04\x00\x02)\x05\x12\x04\xb8\x02\x04\n\n\r\n\x05\x04\x00\x02)\x01\x12\x04\xb8\x02\x0b,\n\r\n\x05\x04\x00\x02)\x03\x12\x04\xb8\x02/1\n\x88\x01\n\x04\x04\x00\x02*\x12\x04\xbf\x02\x042\x1az Relay end-device uplink limit reload rate.\n\n Valid values:\n   * 0 - 62 = X tokens every hour\n   * 63     = no limitation\n\n\r\n\x05\x04\x00\x02*\x05\x12\x04\xbf\x02\x04\n\n\r\n\x05\x04\x00\x02*\x01\x12\x04\xbf\x02\x0b,\n\r\n\x05\x04\x00\x02*\x03\x12\x04\xbf\x02/1\n\x85\x01\n\x04\x04\x00\x02+\x12\x04\xc6\x02\x041\x1aw Relay join-request limit reload rate.\n\n Valid values:\n   * 0 - 126 = X tokens every hour\n   * 127     = no limitation\n\n\r\n\x05\x04\x00\x02+\x05\x12\x04\xc6\x02\x04\n\n\r\n\x05\x04\x00\x02+\x01\x12\x04\xc6\x02\x0b+\n\r\n\x05\x04\x00\x02+\x03\x12\x04\xc6\x02.0\n\x7f\n\x04\x04\x00\x02,\x12\x04\xcd\x02\x04/\x1aq Relay notify limit reload rate.\n\n Valid values:\n   * 0 - 126 = X tokens every hour\n   * 127     = no limitation\n\n\r\n\x05\x04\x00\x02,\x05\x12\x04\xcd\x02\x04\n\n\r\n\x05\x04\x00\x02,\x01\x12\x04\xcd\x02\x0b)\n\r\n\x05\x04\x00\x02,\x03\x12\x04\xcd\x02,.\n\x86\x01\n\x04\x04\x00\x02-\x12\x04\xd4\x02\x046\x1ax Relay global uplink limit reload rate.\n\n Valid values:\n   * 0 - 126 = X tokens every hour\n   * 127     = no limitation\n\n\r\n\x05\x04\x00\x02-\x05\x12\x04\xd4\x02\x04\n\n\r\n\x05\x04\x00\x02-\x01\x12\x04\xd4\x02\x0b0\n\r\n\x05\x04\x00\x02-\x03\x12\x04\xd4\x0235\n\x80\x01\n\x04\x04\x00\x02.\x12\x04\xdb\x02\x040\x1ar Relay overall limit reload rate.\n\n Valid values:\n   * 0 - 126 = X tokens every hour\n   * 127     = no limitation\n\n\r\n\x05\x04\x00\x02.\x05\x12\x04\xdb\x02\x04\n\n\r\n\x05\x04\x00\x02.\x01\x12\x04\xdb\x02\x0b*\n\r\n\x05\x04\x00\x02.\x03\x12\x04\xdb\x02-/\n\x8b\x02\n\x04\x04\x00\x02/\x12\x04\xe8\x02\x041\x1a\xfc\x01 Relay join-request limit bucket size.\n\n This field indicates the multiplier to determine the bucket size\n according to the following formula:\n BucketSize TOKEN = _reload_rate x _bucket_size\n\n Valid values (0 - 3):\n   0 = 1\n   1 = 2\n   2 = 4\n   3 = 12\n\n\r\n\x05\x04\x00\x02/\x05\x12\x04\xe8\x02\x04\n\n\r\n\x05\x04\x00\x02/\x01\x12\x04\xe8\x02\x0b+\n\r\n\x05\x04\x00\x02/\x03\x12\x04\xe8\x02.0\n\x85\x02\n\x04\x04\x00\x020\x12\x04\xf5\x02\x04/\x1a\xf6\x01 Relay notify limit bucket size.\n\n This field indicates the multiplier to determine the bucket size\n according to the following formula:\n BucketSize TOKEN = _reload_rate x _bucket_size\n\n Valid values (0 - 3):\n   0 = 1\n   1 = 2\n   2 = 4\n   3 = 12\n\n\r\n\x05\x04\x00\x020\x05\x12\x04\xf5\x02\x04\n\n\r\n\x05\x04\x00\x020\x01\x12\x04\xf5\x02\x0b)\n\r\n\x05\x04\x00\x020\x03\x12\x04\xf5\x02,.\n\x8c\x02\n\x04\x04\x00\x021\x12\x04\x82\x03\x046\x1a\xfd\x01 Relay globak uplink limit bucket size.\n\n This field indicates the multiplier to determine the bucket size\n according to the following formula:\n BucketSize TOKEN = _reload_rate x _bucket_size\n\n Valid values (0 - 3):\n   0 = 1\n   1 = 2\n   2 = 4\n   3 = 12\n\n\r\n\x05\x04\x00\x021\x05\x12\x04\x82\x03\x04\n\n\r\n\x05\x04\x00\x021\x01\x12\x04\x82\x03\x0b0\n\r\n\x05\x04\x00\x021\x03\x12\x04\x82\x0335\n\x86\x02\n\x04\x04\x00\x022\x12\x04\x8f\x03\x040\x1a\xf7\x01 Relay overall limit bucket size.\n\n This field indicates the multiplier to determine the bucket size\n according to the following formula:\n BucketSize TOKEN = _reload_rate x _bucket_size\n\n Valid values (0 - 3):\n   0 = 1\n   1 = 2\n   2 = 4\n   3 = 12\n\n\r\n\x05\x04\x00\x022\x05\x12\x04\x8f\x03\x04\n\n\r\n\x05\x04\x00\x022\x01\x12\x04\x8f\x03\x0b*\n\r\n\x05\x04\x00\x022\x03\x12\x04\x8f\x03-/\n\x0c\n\x02\x04\x01\x12\x06\x92\x03\x00\x98\x03\x01\n\x0b\n\x03\x04\x01\x01\x12\x04\x92\x03\x08\x13\n$\n\x04\x04\x01\x02\x00\x12\x04\x94\x03\x04\x14\x1a\x16 Name (user defined).\n\n\r\n\x05\x04\x01\x02\x00\x05\x12\x04\x94\x03\x04\n\n\r\n\x05\x04\x01\x02\x00\x01\x12\x04\x94\x03\x0b\x0f\n\r\n\x05\x04\x01\x02\x00\x03\x12\x04\x94\x03\x12\x13\n\x15\n\x04\x04\x01\x02\x01\x12\x04\x97\x03\x04\x1d\x1a\x07 Kind.\n\n\r\n\x05\x04\x01\x02\x01\x06\x12\x04\x97\x03\x04\x13\n\r\n\x05\x04\x01\x02\x01\x01\x12\x04\x97\x03\x14\x18\n\r\n\x05\x04\x01\x02\x01\x03\x12\x04\x97\x03\x1b\x1c\n\x0c\n\x02\x04\x02\x12\x06\x9a\x03\x00\xb8\x03\x01\n\x0b\n\x03\x04\x02\x01\x12\x04\x9a\x03\x08\x1d\n)\n\x04\x04\x02\x02\x00\x12\x04\x9c\x03\x04\x12\x1a\x1b Device-profile ID (UUID).\n\n\r\n\x05\x04\x02\x02\x00\x05\x12\x04\x9c\x03\x04\n\n\r\n\x05\x04\x02\x02\x00\x01\x12\x04\x9c\x03\x0b\r\n\r\n\x05\x04\x02\x02\x00\x03\x12\x04\x9c\x03\x10\x11\n%\n\x04\x04\x02\x02\x01\x12\x04\x9f\x03\x081\x1a\x17 Created at timestamp.\n\n\r\n\x05\x04\x02\x02\x01\x06\x12\x04\x9f\x03\x08!\n\r\n\x05\x04\x02\x02\x01\x01\x12\x04\x9f\x03\",\n\r\n\x05\x04\x02\x02\x01\x03\x12\x04\x9f\x03/0\n&\n\x04\x04\x02\x02\x02\x12\x04\xa2\x03\x081\x1a\x18 Last update timestamp.\n\n\r\n\x05\x04\x02\x02\x02\x06\x12\x04\xa2\x03\x08!\n\r\n\x05\x04\x02\x02\x02\x01\x12\x04\xa2\x03\",\n\r\n\x05\x04\x02\x02\x02\x03\x12\x04\xa2\x03/0\n\x15\n\x04\x04\x02\x02\x03\x12\x04\xa5\x03\x04\x14\x1a\x07 Name.\n\n\r\n\x05\x04\x02\x02\x03\x05\x12\x04\xa5\x03\x04\n\n\r\n\x05\x04\x02\x02\x03\x01\x12\x04\xa5\x03\x0b\x0f\n\r\n\x05\x04\x02\x02\x03\x03\x12\x04\xa5\x03\x12\x13\n\x17\n\x04\x04\x02\x02\x04\x12\x04\xa8\x03\x04\x1d\x1a\t Region.\n\n\r\n\x05\x04\x02\x02\x04\x06\x12\x04\xa8\x03\x04\x11\n\r\n\x05\x04\x02\x02\x04\x01\x12\x04\xa8\x03\x12\x18\n\r\n\x05\x04\x02\x02\x04\x03\x12\x04\xa8\x03\x1b\x1c\n$\n\x04\x04\x02\x02\x05\x12\x04\xab\x03\x04&\x1a\x16 LoRaWAN mac-version.\n\n\r\n\x05\x04\x02\x02\x05\x06\x12\x04\xab\x03\x04\x15\n\r\n\x05\x04\x02\x02\x05\x01\x12\x04\xab\x03\x16!\n\r\n\x05\x04\x02\x02\x05\x03\x12\x04\xab\x03$%\n-\n\x04\x04\x02\x02\x06\x12\x04\xae\x03\x045\x1a\x1f Regional parameters revision.\n\n\r\n\x05\x04\x02\x02\x06\x06\x12\x04\xae\x03\x04\x1c\n\r\n\x05\x04\x02\x02\x06\x01\x12\x04\xae\x03\x1d0\n\r\n\x05\x04\x02\x02\x06\x03\x12\x04\xae\x0334\n\x1e\n\x04\x04\x02\x02\x07\x12\x04\xb1\x03\x04\x1b\x1a\x10 Supports OTAA.\n\n\r\n\x05\x04\x02\x02\x07\x05\x12\x04\xb1\x03\x04\x08\n\r\n\x05\x04\x02\x02\x07\x01\x12\x04\xb1\x03\t\x16\n\r\n\x05\x04\x02\x02\x07\x03\x12\x04\xb1\x03\x19\x1a\n!\n\x04\x04\x02\x02\x08\x12\x04\xb4\x03\x04\x1e\x1a\x13 Supports Class-B.\n\n\r\n\x05\x04\x02\x02\x08\x05\x12\x04\xb4\x03\x04\x08\n\r\n\x05\x04\x02\x02\x08\x01\x12\x04\xb4\x03\t\x19\n\r\n\x05\x04\x02\x02\x08\x03\x12\x04\xb4\x03\x1c\x1d\n!\n\x04\x04\x02\x02\t\x12\x04\xb7\x03\x04\x1f\x1a\x13 Supports Class-C.\n\n\r\n\x05\x04\x02\x02\t\x05\x12\x04\xb7\x03\x04\x08\n\r\n\x05\x04\x02\x02\t\x01\x12\x04\xb7\x03\t\x19\n\r\n\x05\x04\x02\x02\t\x03\x12\x04\xb7\x03\x1c\x1e\n\x0c\n\x02\x04\x03\x12\x06\xba\x03\x00\xbd\x03\x01\n\x0b\n\x03\x04\x03\x01\x12\x04\xba\x03\x08\"\n!\n\x04\x04\x03\x02\x00\x12\x04\xbc\x03\x04%\x1a\x13 Object to create.\n\n\r\n\x05\x04\x03\x02\x00\x06\x12\x04\xbc\x03\x04\x11\n\r\n\x05\x04\x03\x02\x00\x01\x12\x04\xbc\x03\x12 \n\r\n\x05\x04\x03\x02\x00\x03\x12\x04\xbc\x03#$\n\x0c\n\x02\x04\x04\x12\x06\xbf\x03\x00\xc2\x03\x01\n\x0b\n\x03\x04\x04\x01\x12\x04\xbf\x03\x08#\n\x1a\n\x04\x04\x04\x02\x00\x12\x04\xc1\x03\x04\x12\x1a\x0c ID (UUID).\n\n\r\n\x05\x04\x04\x02\x00\x05\x12\x04\xc1\x03\x04\n\n\r\n\x05\x04\x04\x02\x00\x01\x12\x04\xc1\x03\x0b\r\n\r\n\x05\x04\x04\x02\x00\x03\x12\x04\xc1\x03\x10\x11\n\x0c\n\x02\x04\x05\x12\x06\xc4\x03\x00\xc7\x03\x01\n\x0b\n\x03\x04\x05\x01\x12\x04\xc4\x03\x08\x1f\n\x1a\n\x04\x04\x05\x02\x00\x12\x04\xc6\x03\x04\x12\x1a\x0c ID (UUID).\n\n\r\n\x05\x04\x05\x02\x00\x05\x12\x04\xc6\x03\x04\n\n\r\n\x05\x04\x05\x02\x00\x01\x12\x04\xc6\x03\x0b\r\n\r\n\x05\x04\x05\x02\x00\x03\x12\x04\xc6\x03\x10\x11\n\x0c\n\x02\x04\x06\x12\x06\xc9\x03\x00\xd2\x03\x01\n\x0b\n\x03\x04\x06\x01\x12\x04\xc9\x03\x08 \n&\n\x04\x04\x06\x02\x00\x12\x04\xcb\x03\x04%\x1a\x18 Device-profile object.\n\n\r\n\x05\x04\x06\x02\x00\x06\x12\x04\xcb\x03\x04\x11\n\r\n\x05\x04\x06\x02\x00\x01\x12\x04\xcb\x03\x12 \n\r\n\x05\x04\x06\x02\x00\x03\x12\x04\xcb\x03#$\n%\n\x04\x04\x06\x02\x01\x12\x04\xce\x03\x081\x1a\x17 Created at timestamp.\n\n\r\n\x05\x04\x06\x02\x01\x06\x12\x04\xce\x03\x08!\n\r\n\x05\x04\x06\x02\x01\x01\x12\x04\xce\x03\",\n\r\n\x05\x04\x06\x02\x01\x03\x12\x04\xce\x03/0\n&\n\x04\x04\x06\x02\x02\x12\x04\xd1\x03\x081\x1a\x18 Last update timestamp.\n\n\r\n\x05\x04\x06\x02\x02\x06\x12\x04\xd1\x03\x08!\n\r\n\x05\x04\x06\x02\x02\x01\x12\x04\xd1\x03\",\n\r\n\x05\x04\x06\x02\x02\x03\x12\x04\xd1\x03/0\n\x0c\n\x02\x04\x07\x12\x06\xd4\x03\x00\xd7\x03\x01\n\x0b\n\x03\x04\x07\x01\x12\x04\xd4\x03\x08\"\n&\n\x04\x04\x07\x02\x00\x12\x04\xd6\x03\x04%\x1a\x18 Device-profile object.\n\n\r\n\x05\x04\x07\x02\x00\x06\x12\x04\xd6\x03\x04\x11\n\r\n\x05\x04\x07\x02\x00\x01\x12\x04\xd6\x03\x12 \n\r\n\x05\x04\x07\x02\x00\x03\x12\x04\xd6\x03#$\n\x0c\n\x02\x04\x08\x12\x06\xd9\x03\x00\xdc\x03\x01\n\x0b\n\x03\x04\x08\x01\x12\x04\xd9\x03\x08\"\n\x1a\n\x04\x04\x08\x02\x00\x12\x04\xdb\x03\x04\x12\x1a\x0c ID (UUID).\n\n\r\n\x05\x04\x08\x02\x00\x05\x12\x04\xdb\x03\x04\n\n\r\n\x05\x04\x08\x02\x00\x01\x12\x04\xdb\x03\x0b\r\n\r\n\x05\x04\x08\x02\x00\x03\x12\x04\xdb\x03\x10\x11\n\x0c\n\x02\x04\t\x12\x06\xde\x03\x00\xea\x03\x01\n\x0b\n\x03\x04\t\x01\x12\x04\xde\x03\x08!\nJ\n\x04\x04\t\x02\x00\x12\x04\xe0\x03\x04\x15\x1a< Max number of device-profiles to return in the result-set.\n\n\r\n\x05\x04\t\x02\x00\x05\x12\x04\xe0\x03\x04\n\n\r\n\x05\x04\t\x02\x00\x01\x12\x04\xe0\x03\x0b\x10\n\r\n\x05\x04\t\x02\x00\x03\x12\x04\xe0\x03\x13\x14\n:\n\x04\x04\t\x02\x01\x12\x04\xe3\x03\x04\x16\x1a, Offset in the result-set (for pagination).\n\n\r\n\x05\x04\t\x02\x01\x05\x12\x04\xe3\x03\x04\n\n\r\n\x05\x04\t\x02\x01\x01\x12\x04\xe3\x03\x0b\x11\n\r\n\x05\x04\t\x02\x01\x03\x12\x04\xe3\x03\x14\x15\nH\n\x04\x04\t\x02\x02\x12\x04\xe6\x03\x04\x16\x1a: If set, the given string will be used to search on name.\n\n\r\n\x05\x04\t\x02\x02\x05\x12\x04\xe6\x03\x04\n\n\r\n\x05\x04\t\x02\x02\x01\x12\x04\xe6\x03\x0b\x11\n\r\n\x05\x04\t\x02\x02\x03\x12\x04\xe6\x03\x14\x15\n:\n\x04\x04\t\x02\x03\x12\x04\xe9\x03\x04\x19\x1a, Tenant ID to list the device-profiles for.\n\n\r\n\x05\x04\t\x02\x03\x05\x12\x04\xe9\x03\x04\n\n\r\n\x05\x04\t\x02\x03\x01\x12\x04\xe9\x03\x0b\x14\n\r\n\x05\x04\t\x02\x03\x03\x12\x04\xe9\x03\x17\x18\n\x0c\n\x02\x04\n\x12\x06\xec\x03\x00\xf2\x03\x01\n\x0b\n\x03\x04\n\x01\x12\x04\xec\x03\x08\"\n0\n\x04\x04\n\x02\x00\x12\x04\xee\x03\x04\x1b\x1a\" Total number of device-profiles.\n\n\r\n\x05\x04\n\x02\x00\x05\x12\x04\xee\x03\x04\n\n\r\n\x05\x04\n\x02\x00\x01\x12\x04\xee\x03\x0b\x16\n\r\n\x05\x04\n\x02\x00\x03\x12\x04\xee\x03\x19\x1a\n\x1b\n\x04\x04\n\x02\x01\x12\x04\xf1\x03\x04.\x1a\r Result-set.\n\n\r\n\x05\x04\n\x02\x01\x04\x12\x04\xf1\x03\x04\x0c\n\r\n\x05\x04\n\x02\x01\x06\x12\x04\xf1\x03\r\"\n\r\n\x05\x04\n\x02\x01\x01\x12\x04\xf1\x03#)\n\r\n\x05\x04\n\x02\x01\x03\x12\x04\xf1\x03,-\n\x0c\n\x02\x04\x0b\x12\x06\xf4\x03\x00\xfa\x03\x01\n\x0b\n\x03\x04\x0b\x01\x12\x04\xf4\x03\x08.\n+\n\x04\x04\x0b\x02\x00\x12\x04\xf6\x03\x04\x1b\x1a\x1d Total number of algorithms.\n\n\r\n\x05\x04\x0b\x02\x00\x05\x12\x04\xf6\x03\x04\n\n\r\n\x05\x04\x0b\x02\x00\x01\x12\x04\xf6\x03\x0b\x16\n\r\n\x05\x04\x0b\x02\x00\x03\x12\x04\xf6\x03\x19\x1a\n\x1b\n\x04\x04\x0b\x02\x01\x12\x04\xf9\x03\x04-\x1a\r Result-set.\n\n\r\n\x05\x04\x0b\x02\x01\x04\x12\x04\xf9\x03\x04\x0c\n\r\n\x05\x04\x0b\x02\x01\x06\x12\x04\xf9\x03\r!\n\r\n\x05\x04\x0b\x02\x01\x01\x12\x04\xf9\x03\"(\n\r\n\x05\x04\x0b\x02\x01\x03\x12\x04\xf9\x03+,\n\x0c\n\x02\x04\x0c\x12\x06\xfc\x03\x00\x82\x04\x01\n\x0b\n\x03\x04\x0c\x01\x12\x04\xfc\x03\x08\x1c\n\x1d\n\x04\x04\x0c\x02\x00\x12\x04\xfe\x03\x04\x12\x1a\x0f Algorithm ID.\n\n\r\n\x05\x04\x0c\x02\x00\x05\x12\x04\xfe\x03\x04\n\n\r\n\x05\x04\x0c\x02\x00\x01\x12\x04\xfe\x03\x0b\r\n\r\n\x05\x04\x0c\x02\x00\x03\x12\x04\xfe\x03\x10\x11\n\x1f\n\x04\x04\x0c\x02\x01\x12\x04\x81\x04\x04\x14\x1a\x11 Algorithm name.\n\n\r\n\x05\x04\x0c\x02\x01\x05\x12\x04\x81\x04\x04\n\n\r\n\x05\x04\x0c\x02\x01\x01\x12\x04\x81\x04\x0b\x0f\n\r\n\x05\x04\x0c\x02\x01\x03\x12\x04\x81\x04\x12\x13b\x06proto3\n\xe8O\n!api/device_profile_template.proto\x12\x03api\x1a\x1cgoogle/api/annotations.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a\x13common/common.proto\x1a\x18api/device_profile.proto\"\xba\x0b\n\x15DeviceProfileTemplate\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x12 \n\x0bdescription\x18\x03 \x01(\tR\x0bdescription\x12\x16\n\x06vendor\x18\x04 \x01(\tR\x06vendor\x12\x1a\n\x08firmware\x18\x05 \x01(\tR\x08firmware\x12&\n\x06region\x18\x06 \x01(\x0e2\x0e.common.RegionR\x06region\x123\n\x0bmac_version\x18\x07 \x01(\x0e2\x12.common.MacVersionR\nmacVersion\x12I\n\x13reg_params_revision\x18\x08 \x01(\x0e2\x19.common.RegParamsRevisionR\x11regParamsRevision\x12(\n\x10adr_algorithm_id\x18\t \x01(\tR\x0eadrAlgorithmId\x12E\n\x15payload_codec_runtime\x18\n \x01(\x0e2\x11.api.CodecRuntimeR\x13payloadCodecRuntime\x120\n\x14payload_codec_script\x18\x0b \x01(\tR\x12payloadCodecScript\x125\n\x17flush_queue_on_activate\x18\x0c \x01(\x08R\x14flushQueueOnActivate\x12\'\n\x0fuplink_interval\x18\r \x01(\rR\x0euplinkInterval\x12;\n\x1adevice_status_req_interval\x18\x0e \x01(\rR\x17deviceStatusReqInterval\x12#\n\rsupports_otaa\x18\x0f \x01(\x08R\x0csupportsOtaa\x12(\n\x10supports_class_b\x18\x10 \x01(\x08R\x0esupportsClassB\x12(\n\x10supports_class_c\x18\x11 \x01(\x08R\x0esupportsClassC\x12&\n\x0fclass_b_timeout\x18\x12 \x01(\rR\rclassBTimeout\x121\n\x16class_b_ping_slot_nb_k\x18\x13 \x01(\rR\x11classBPingSlotNbK\x12.\n\x14class_b_ping_slot_dr\x18\x14 \x01(\rR\x10classBPingSlotDr\x122\n\x16class_b_ping_slot_freq\x18\x15 \x01(\rR\x12classBPingSlotFreq\x12&\n\x0fclass_c_timeout\x18\x16 \x01(\rR\rclassCTimeout\x12\"\n\rabp_rx1_delay\x18\x17 \x01(\rR\x0babpRx1Delay\x12)\n\x11abp_rx1_dr_offset\x18\x18 \x01(\rR\x0eabpRx1DrOffset\x12\x1c\n\nabp_rx2_dr\x18\x19 \x01(\rR\x08abpRx2Dr\x12 \n\x0cabp_rx2_freq\x18\x1a \x01(\rR\nabpRx2Freq\x128\n\x04tags\x18\x1b \x03(\x0b2$.api.DeviceProfileTemplate.TagsEntryR\x04tags\x12P\n\x0cmeasurements\x18\x1c \x03(\x0b2,.api.DeviceProfileTemplate.MeasurementsEntryR\x0cmeasurements\x128\n\x18auto_detect_measurements\x18\x1d \x01(\x08R\x16autoDetectMeasurements\x1a7\n\tTagsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x028\x01\x1aQ\n\x11MeasurementsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12&\n\x05value\x18\x02 \x01(\x0b2\x10.api.MeasurementR\x05value:\x028\x01\"\x8e\x04\n\x1dDeviceProfileTemplateListItem\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x129\n\ncreated_at\x18\x02 \x01(\x0b2\x1a.google.protobuf.TimestampR\tcreatedAt\x129\n\nupdated_at\x18\x03 \x01(\x0b2\x1a.google.protobuf.TimestampR\tupdatedAt\x12\x12\n\x04name\x18\x04 \x01(\tR\x04name\x12\x16\n\x06vendor\x18\x05 \x01(\tR\x06vendor\x12\x1a\n\x08firmware\x18\x06 \x01(\tR\x08firmware\x12&\n\x06region\x18\x07 \x01(\x0e2\x0e.common.RegionR\x06region\x123\n\x0bmac_version\x18\x08 \x01(\x0e2\x12.common.MacVersionR\nmacVersion\x12I\n\x13reg_params_revision\x18\t \x01(\x0e2\x19.common.RegParamsRevisionR\x11regParamsRevision\x12#\n\rsupports_otaa\x18\n \x01(\x08R\x0csupportsOtaa\x12(\n\x10supports_class_b\x18\x0b \x01(\x08R\x0esupportsClassB\x12(\n\x10supports_class_c\x18\x0c \x01(\x08R\x0esupportsClassC\"x\n\"CreateDeviceProfileTemplateRequest\x12R\n\x17device_profile_template\x18\x01 \x01(\x0b2\x1a.api.DeviceProfileTemplateR\x15deviceProfileTemplate\"1\n\x1fGetDeviceProfileTemplateRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\"\xec\x01\n GetDeviceProfileTemplateResponse\x12R\n\x17device_profile_template\x18\x01 \x01(\x0b2\x1a.api.DeviceProfileTemplateR\x15deviceProfileTemplate\x129\n\ncreated_at\x18\x02 \x01(\x0b2\x1a.google.protobuf.TimestampR\tcreatedAt\x129\n\nupdated_at\x18\x03 \x01(\x0b2\x1a.google.protobuf.TimestampR\tupdatedAt\"x\n\"UpdateDeviceProfileTemplateRequest\x12R\n\x17device_profile_template\x18\x01 \x01(\x0b2\x1a.api.DeviceProfileTemplateR\x15deviceProfileTemplate\"4\n\"DeleteDeviceProfileTemplateRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\"Q\n!ListDeviceProfileTemplatesRequest\x12\x14\n\x05limit\x18\x01 \x01(\rR\x05limit\x12\x16\n\x06offset\x18\x02 \x01(\rR\x06offset\"\x81\x01\n\"ListDeviceProfileTemplatesResponse\x12\x1f\n\x0btotal_count\x18\x01 \x01(\rR\ntotalCount\x12:\n\x06result\x18\x02 \x03(\x0b2\".api.DeviceProfileTemplateListItemR\x06result2\x9d\x05\n\x1cDeviceProfileTemplateService\x12s\n\x06Create\x12\'.api.CreateDeviceProfileTemplateRequest\x1a\x16.google.protobuf.Empty\"(\x82\xd3\xe4\x93\x02\"\"\x1d/api/device-profile-templates:\x01*\x12~\n\x03Get\x12$.api.GetDeviceProfileTemplateRequest\x1a%.api.GetDeviceProfileTemplateResponse\"*\x82\xd3\xe4\x93\x02$\x12\"/api/device-profile-templates/{id}\x12\x90\x01\n\x06Update\x12\'.api.UpdateDeviceProfileTemplateRequest\x1a\x16.google.protobuf.Empty\"E\x82\xd3\xe4\x93\x02?\x1a:/api/device-profile-templates/{device_profile_template.id}:\x01*\x12u\n\x06Delete\x12\'.api.DeleteDeviceProfileTemplateRequest\x1a\x16.google.protobuf.Empty\"*\x82\xd3\xe4\x93\x02$*\"/api/device-profile-templates/{id}\x12~\n\x04List\x12&.api.ListDeviceProfileTemplatesRequest\x1a\'.api.ListDeviceProfileTemplatesResponse\"%\x82\xd3\xe4\x93\x02\x1f\x12\x1d/api/device-profile-templatesBr\n\x11io.chirpstack.apiB\x1aDeviceProfileTemplateProtoP\x01Z.github.com/chirpstack/chirpstack/api/go/v4/api\xaa\x02\x0eChirpstack.ApiJ\xa52\n\x07\x12\x05\x00\x00\xf3\x01\x01\n\x08\n\x01\x0c\x12\x03\x00\x00\x12\n\x08\n\x01\x02\x12\x03\x02\x00\x0c\n\x08\n\x01\x08\x12\x03\x04\x00E\n\t\n\x02\x08\x0b\x12\x03\x04\x00E\n\x08\n\x01\x08\x12\x03\x05\x00*\n\t\n\x02\x08\x01\x12\x03\x05\x00*\n\x08\n\x01\x08\x12\x03\x06\x00\"\n\t\n\x02\x08\n\x12\x03\x06\x00\"\n\x08\n\x01\x08\x12\x03\x07\x00;\n\t\n\x02\x08\x08\x12\x03\x07\x00;\n\x08\n\x01\x08\x12\x03\x08\x00+\n\t\n\x02\x08%\x12\x03\x08\x00+\n\t\n\x02\x03\x00\x12\x03\n\x00&\n\t\n\x02\x03\x01\x12\x03\x0b\x00)\n\t\n\x02\x03\x02\x12\x03\x0c\x00%\n\t\n\x02\x03\x03\x12\x03\r\x00\x1d\n\t\n\x02\x03\x04\x12\x03\x0e\x00\"\nv\n\x02\x06\x00\x12\x04\x11\x006\x01\x1aj DeviceProfileTemplateService is the service providing API methods for managing device-profile templates.\n\n\n\n\x03\x06\x00\x01\x12\x03\x11\x08$\n9\n\x04\x06\x00\x02\x00\x12\x04\x13\x04\x18\x05\x1a+ Create the given device-profile template.\n\n\x0c\n\x05\x06\x00\x02\x00\x01\x12\x03\x13\x08\x0e\n\x0c\n\x05\x06\x00\x02\x00\x02\x12\x03\x13\x0f1\n\x0c\n\x05\x06\x00\x02\x00\x03\x12\x03\x13<Q\n\r\n\x05\x06\x00\x02\x00\x04\x12\x04\x14\x08\x17\n\n\x11\n\t\x06\x00\x02\x00\x04\xb0\xca\xbc\"\x12\x04\x14\x08\x17\n\nA\n\x04\x06\x00\x02\x01\x12\x04\x1b\x04\x1f\x05\x1a3 Get the device-profile template for the given ID.\n\n\x0c\n\x05\x06\x00\x02\x01\x01\x12\x03\x1b\x08\x0b\n\x0c\n\x05\x06\x00\x02\x01\x02\x12\x03\x1b\x0c+\n\x0c\n\x05\x06\x00\x02\x01\x03\x12\x03\x1b6V\n\r\n\x05\x06\x00\x02\x01\x04\x12\x04\x1c\x08\x1e\n\n\x11\n\t\x06\x00\x02\x01\x04\xb0\xca\xbc\"\x12\x04\x1c\x08\x1e\n\n9\n\x04\x06\x00\x02\x02\x12\x04\"\x04\'\x05\x1a+ Update the given device-profile template.\n\n\x0c\n\x05\x06\x00\x02\x02\x01\x12\x03\"\x08\x0e\n\x0c\n\x05\x06\x00\x02\x02\x02\x12\x03\"\x0f1\n\x0c\n\x05\x06\x00\x02\x02\x03\x12\x03\"<Q\n\r\n\x05\x06\x00\x02\x02\x04\x12\x04#\x08&\n\n\x11\n\t\x06\x00\x02\x02\x04\xb0\xca\xbc\"\x12\x04#\x08&\n\nE\n\x04\x06\x00\x02\x03\x12\x04*\x04.\x05\x1a7 Delete the device-profile template with the given ID.\n\n\x0c\n\x05\x06\x00\x02\x03\x01\x12\x03*\x08\x0e\n\x0c\n\x05\x06\x00\x02\x03\x02\x12\x03*\x0f1\n\x0c\n\x05\x06\x00\x02\x03\x03\x12\x03*<Q\n\r\n\x05\x06\x00\x02\x03\x04\x12\x04+\x08-\n\n\x11\n\t\x06\x00\x02\x03\x04\xb0\xca\xbc\"\x12\x04+\x08-\n\n<\n\x04\x06\x00\x02\x04\x12\x041\x045\x05\x1a. List the available device-profile templates.\n\n\x0c\n\x05\x06\x00\x02\x04\x01\x12\x031\x08\x0c\n\x0c\n\x05\x06\x00\x02\x04\x02\x12\x031\r.\n\x0c\n\x05\x06\x00\x02\x04\x03\x12\x0319[\n\r\n\x05\x06\x00\x02\x04\x04\x12\x042\x084\n\n\x11\n\t\x06\x00\x02\x04\x04\xb0\xca\xbc\"\x12\x042\x084\n\n\x0b\n\x02\x04\x00\x12\x058\x00\x9d\x01\x01\n\n\n\x03\x04\x00\x01\x12\x038\x08\x1d\n*\n\x04\x04\x00\x02\x00\x12\x03:\x04\x12\x1a\x1d Device-profile template ID.\n\n\x0c\n\x05\x04\x00\x02\x00\x05\x12\x03:\x04\n\n\x0c\n\x05\x04\x00\x02\x00\x01\x12\x03:\x0b\r\n\x0c\n\x05\x04\x00\x02\x00\x03\x12\x03:\x10\x11\n\x14\n\x04\x04\x00\x02\x01\x12\x03=\x04\x14\x1a\x07 Name.\n\n\x0c\n\x05\x04\x00\x02\x01\x05\x12\x03=\x04\n\n\x0c\n\x05\x04\x00\x02\x01\x01\x12\x03=\x0b\x0f\n\x0c\n\x05\x04\x00\x02\x01\x03\x12\x03=\x12\x13\n\x1b\n\x04\x04\x00\x02\x02\x12\x03@\x04\x1b\x1a\x0e Description.\n\n\x0c\n\x05\x04\x00\x02\x02\x05\x12\x03@\x04\n\n\x0c\n\x05\x04\x00\x02\x02\x01\x12\x03@\x0b\x16\n\x0c\n\x05\x04\x00\x02\x02\x03\x12\x03@\x19\x1a\n\x16\n\x04\x04\x00\x02\x03\x12\x03C\x04\x16\x1a\t Vendor.\n\n\x0c\n\x05\x04\x00\x02\x03\x05\x12\x03C\x04\n\n\x0c\n\x05\x04\x00\x02\x03\x01\x12\x03C\x0b\x11\n\x0c\n\x05\x04\x00\x02\x03\x03\x12\x03C\x14\x15\n\x18\n\x04\x04\x00\x02\x04\x12\x03F\x04\x18\x1a\x0b Firmware.\n\n\x0c\n\x05\x04\x00\x02\x04\x05\x12\x03F\x04\n\n\x0c\n\x05\x04\x00\x02\x04\x01\x12\x03F\x0b\x13\n\x0c\n\x05\x04\x00\x02\x04\x03\x12\x03F\x16\x17\n\x16\n\x04\x04\x00\x02\x05\x12\x03I\x04\x1d\x1a\t Region.\n\n\x0c\n\x05\x04\x00\x02\x05\x06\x12\x03I\x04\x11\n\x0c\n\x05\x04\x00\x02\x05\x01\x12\x03I\x12\x18\n\x0c\n\x05\x04\x00\x02\x05\x03\x12\x03I\x1b\x1c\n#\n\x04\x04\x00\x02\x06\x12\x03L\x04&\x1a\x16 LoRaWAN mac-version.\n\n\x0c\n\x05\x04\x00\x02\x06\x06\x12\x03L\x04\x15\n\x0c\n\x05\x04\x00\x02\x06\x01\x12\x03L\x16!\n\x0c\n\x05\x04\x00\x02\x06\x03\x12\x03L$%\n,\n\x04\x04\x00\x02\x07\x12\x03O\x045\x1a\x1f Regional parameters revision.\n\n\x0c\n\x05\x04\x00\x02\x07\x06\x12\x03O\x04\x1c\n\x0c\n\x05\x04\x00\x02\x07\x01\x12\x03O\x1d0\n\x0c\n\x05\x04\x00\x02\x07\x03\x12\x03O34\n \n\x04\x04\x00\x02\x08\x12\x03R\x04 \x1a\x13 ADR algorithm ID.\n\n\x0c\n\x05\x04\x00\x02\x08\x05\x12\x03R\x04\n\n\x0c\n\x05\x04\x00\x02\x08\x01\x12\x03R\x0b\x1b\n\x0c\n\x05\x04\x00\x02\x08\x03\x12\x03R\x1e\x1f\n%\n\x04\x04\x00\x02\t\x12\x03U\x04,\x1a\x18 Payload codec runtime.\n\n\x0c\n\x05\x04\x00\x02\t\x06\x12\x03U\x04\x10\n\x0c\n\x05\x04\x00\x02\t\x01\x12\x03U\x11&\n\x0c\n\x05\x04\x00\x02\t\x03\x12\x03U)+\n$\n\x04\x04\x00\x02\n\x12\x03X\x04%\x1a\x17 Payload codec script.\n\n\x0c\n\x05\x04\x00\x02\n\x05\x12\x03X\x04\n\n\x0c\n\x05\x04\x00\x02\n\x01\x12\x03X\x0b\x1f\n\x0c\n\x05\x04\x00\x02\n\x03\x12\x03X\"$\n0\n\x04\x04\x00\x02\x0b\x12\x03[\x04&\x1a# Flush queue on device activation.\n\n\x0c\n\x05\x04\x00\x02\x0b\x05\x12\x03[\x04\x08\n\x0c\n\x05\x04\x00\x02\x0b\x01\x12\x03[\t \n\x0c\n\x05\x04\x00\x02\x0b\x03\x12\x03[#%\n\xe9\x01\n\x04\x04\x00\x02\x0c\x12\x03a\x04 \x1a\xdb\x01 Uplink interval (seconds).\n This defines the expected uplink interval which the device uses for\n communication. When the uplink interval has expired and no uplink has\n been received, the device is considered inactive.\n\n\x0c\n\x05\x04\x00\x02\x0c\x05\x12\x03a\x04\n\n\x0c\n\x05\x04\x00\x02\x0c\x01\x12\x03a\x0b\x1a\n\x0c\n\x05\x04\x00\x02\x0c\x03\x12\x03a\x1d\x1f\n\x9e\x01\n\x04\x04\x00\x02\r\x12\x03f\x04+\x1a\x90\x01 Device-status request interval (times / day).\n This defines the times per day that ChirpStack will request the device-status\n from the device.\n\n\x0c\n\x05\x04\x00\x02\r\x05\x12\x03f\x04\n\n\x0c\n\x05\x04\x00\x02\r\x01\x12\x03f\x0b%\n\x0c\n\x05\x04\x00\x02\r\x03\x12\x03f(*\n\x1d\n\x04\x04\x00\x02\x0e\x12\x03i\x04\x1c\x1a\x10 Supports OTAA.\n\n\x0c\n\x05\x04\x00\x02\x0e\x05\x12\x03i\x04\x08\n\x0c\n\x05\x04\x00\x02\x0e\x01\x12\x03i\t\x16\n\x0c\n\x05\x04\x00\x02\x0e\x03\x12\x03i\x19\x1b\n \n\x04\x04\x00\x02\x0f\x12\x03l\x04\x1f\x1a\x13 Supports Class B.\n\n\x0c\n\x05\x04\x00\x02\x0f\x05\x12\x03l\x04\x08\n\x0c\n\x05\x04\x00\x02\x0f\x01\x12\x03l\t\x19\n\x0c\n\x05\x04\x00\x02\x0f\x03\x12\x03l\x1c\x1e\n \n\x04\x04\x00\x02\x10\x12\x03o\x04\x1f\x1a\x13 Supports Class-C.\n\n\x0c\n\x05\x04\x00\x02\x10\x05\x12\x03o\x04\x08\n\x0c\n\x05\x04\x00\x02\x10\x01\x12\x03o\t\x19\n\x0c\n\x05\x04\x00\x02\x10\x03\x12\x03o\x1c\x1e\n\x97\x01\n\x04\x04\x00\x02\x11\x12\x03s\x04 \x1a\x89\x01 Class-B timeout (seconds).\n This is the maximum time ChirpStack will wait to receive an acknowledgement from the device (if requested).\n\n\x0c\n\x05\x04\x00\x02\x11\x05\x12\x03s\x04\n\n\x0c\n\x05\x04\x00\x02\x11\x01\x12\x03s\x0b\x1a\n\x0c\n\x05\x04\x00\x02\x11\x03\x12\x03s\x1d\x1f\n\x93\x01\n\x04\x04\x00\x02\x12\x12\x03y\x04\'\x1a\x85\x01 Class-B ping-slots per beacon period.\n Valid options are: 0 - 7.\n\n The actual number of ping-slots per beacon period equals to 2^k.\n\n\x0c\n\x05\x04\x00\x02\x12\x05\x12\x03y\x04\n\n\x0c\n\x05\x04\x00\x02\x12\x01\x12\x03y\x0b!\n\x0c\n\x05\x04\x00\x02\x12\x03\x12\x03y$&\n$\n\x04\x04\x00\x02\x13\x12\x03|\x04%\x1a\x17 Class-B ping-slot DR.\n\n\x0c\n\x05\x04\x00\x02\x13\x05\x12\x03|\x04\n\n\x0c\n\x05\x04\x00\x02\x13\x01\x12\x03|\x0b\x1f\n\x0c\n\x05\x04\x00\x02\x13\x03\x12\x03|\"$\n+\n\x04\x04\x00\x02\x14\x12\x03\x7f\x04\'\x1a\x1e Class-B ping-slot freq (Hz).\n\n\x0c\n\x05\x04\x00\x02\x14\x05\x12\x03\x7f\x04\n\n\x0c\n\x05\x04\x00\x02\x14\x01\x12\x03\x7f\x0b!\n\x0c\n\x05\x04\x00\x02\x14\x03\x12\x03\x7f$&\n\x98\x01\n\x04\x04\x00\x02\x15\x12\x04\x83\x01\x04 \x1a\x89\x01 Class-C timeout (seconds).\n This is the maximum time ChirpStack will wait to receive an acknowledgement from the device (if requested).\n\n\r\n\x05\x04\x00\x02\x15\x05\x12\x04\x83\x01\x04\n\n\r\n\x05\x04\x00\x02\x15\x01\x12\x04\x83\x01\x0b\x1a\n\r\n\x05\x04\x00\x02\x15\x03\x12\x04\x83\x01\x1d\x1f\n$\n\x04\x04\x00\x02\x16\x12\x04\x86\x01\x04\x1e\x1a\x16 RX1 delay (for ABP).\n\n\r\n\x05\x04\x00\x02\x16\x05\x12\x04\x86\x01\x04\n\n\r\n\x05\x04\x00\x02\x16\x01\x12\x04\x86\x01\x0b\x18\n\r\n\x05\x04\x00\x02\x16\x03\x12\x04\x86\x01\x1b\x1d\n(\n\x04\x04\x00\x02\x17\x12\x04\x89\x01\x04\"\x1a\x1a RX1 DR offset (for ABP).\n\n\r\n\x05\x04\x00\x02\x17\x05\x12\x04\x89\x01\x04\n\n\r\n\x05\x04\x00\x02\x17\x01\x12\x04\x89\x01\x0b\x1c\n\r\n\x05\x04\x00\x02\x17\x03\x12\x04\x89\x01\x1f!\n!\n\x04\x04\x00\x02\x18\x12\x04\x8c\x01\x04\x1b\x1a\x13 RX2 DR (for ABP).\n\n\r\n\x05\x04\x00\x02\x18\x05\x12\x04\x8c\x01\x04\n\n\r\n\x05\x04\x00\x02\x18\x01\x12\x04\x8c\x01\x0b\x15\n\r\n\x05\x04\x00\x02\x18\x03\x12\x04\x8c\x01\x18\x1a\n,\n\x04\x04\x00\x02\x19\x12\x04\x8f\x01\x04\x1d\x1a\x1e RX2 frequency (for ABP, Hz).\n\n\r\n\x05\x04\x00\x02\x19\x05\x12\x04\x8f\x01\x04\n\n\r\n\x05\x04\x00\x02\x19\x01\x12\x04\x8f\x01\x0b\x17\n\r\n\x05\x04\x00\x02\x19\x03\x12\x04\x8f\x01\x1a\x1c\n\"\n\x04\x04\x00\x02\x1a\x12\x04\x92\x01\x04\"\x1a\x14 User defined tags.\n\n\r\n\x05\x04\x00\x02\x1a\x06\x12\x04\x92\x01\x04\x17\n\r\n\x05\x04\x00\x02\x1a\x01\x12\x04\x92\x01\x18\x1c\n\r\n\x05\x04\x00\x02\x1a\x03\x12\x04\x92\x01\x1f!\nh\n\x04\x04\x00\x02\x1b\x12\x04\x96\x01\x04/\x1aZ Measurements.\n If defined, ChirpStack will visualize these metrics in the web-interface.\n\n\r\n\x05\x04\x00\x02\x1b\x06\x12\x04\x96\x01\x04\x1c\n\r\n\x05\x04\x00\x02\x1b\x01\x12\x04\x96\x01\x1d)\n\r\n\x05\x04\x00\x02\x1b\x03\x12\x04\x96\x01,.\n\xf4\x01\n\x04\x04\x00\x02\x1c\x12\x04\x9c\x01\x04\'\x1a\xe5\x01 Auto-detect measurements.\n If set to true, measurements will be automatically added based on the\n keys of the decoded payload. In cases where the decoded payload contains\n random keys in the data, you want to set this to false.\n\n\r\n\x05\x04\x00\x02\x1c\x05\x12\x04\x9c\x01\x04\x08\n\r\n\x05\x04\x00\x02\x1c\x01\x12\x04\x9c\x01\t!\n\r\n\x05\x04\x00\x02\x1c\x03\x12\x04\x9c\x01$&\n\x0c\n\x02\x04\x01\x12\x06\x9f\x01\x00\xc4\x01\x01\n\x0b\n\x03\x04\x01\x01\x12\x04\x9f\x01\x08%\n+\n\x04\x04\x01\x02\x00\x12\x04\xa1\x01\x04\x12\x1a\x1d Device-profile template ID.\n\n\r\n\x05\x04\x01\x02\x00\x05\x12\x04\xa1\x01\x04\n\n\r\n\x05\x04\x01\x02\x00\x01\x12\x04\xa1\x01\x0b\r\n\r\n\x05\x04\x01\x02\x00\x03\x12\x04\xa1\x01\x10\x11\n%\n\x04\x04\x01\x02\x01\x12\x04\xa4\x01\x04-\x1a\x17 Created at timestamp.\n\n\r\n\x05\x04\x01\x02\x01\x06\x12\x04\xa4\x01\x04\x1d\n\r\n\x05\x04\x01\x02\x01\x01\x12\x04\xa4\x01\x1e(\n\r\n\x05\x04\x01\x02\x01\x03\x12\x04\xa4\x01+,\n&\n\x04\x04\x01\x02\x02\x12\x04\xa7\x01\x04-\x1a\x18 Last update timestamp.\n\n\r\n\x05\x04\x01\x02\x02\x06\x12\x04\xa7\x01\x04\x1d\n\r\n\x05\x04\x01\x02\x02\x01\x12\x04\xa7\x01\x1e(\n\r\n\x05\x04\x01\x02\x02\x03\x12\x04\xa7\x01+,\n\x15\n\x04\x04\x01\x02\x03\x12\x04\xaa\x01\x04\x14\x1a\x07 Name.\n\n\r\n\x05\x04\x01\x02\x03\x05\x12\x04\xaa\x01\x04\n\n\r\n\x05\x04\x01\x02\x03\x01\x12\x04\xaa\x01\x0b\x0f\n\r\n\x05\x04\x01\x02\x03\x03\x12\x04\xaa\x01\x12\x13\n\x17\n\x04\x04\x01\x02\x04\x12\x04\xad\x01\x04\x16\x1a\t Vendor.\n\n\r\n\x05\x04\x01\x02\x04\x05\x12\x04\xad\x01\x04\n\n\r\n\x05\x04\x01\x02\x04\x01\x12\x04\xad\x01\x0b\x11\n\r\n\x05\x04\x01\x02\x04\x03\x12\x04\xad\x01\x14\x15\n\x19\n\x04\x04\x01\x02\x05\x12\x04\xb0\x01\x04\x18\x1a\x0b Firmware.\n\n\r\n\x05\x04\x01\x02\x05\x05\x12\x04\xb0\x01\x04\n\n\r\n\x05\x04\x01\x02\x05\x01\x12\x04\xb0\x01\x0b\x13\n\r\n\x05\x04\x01\x02\x05\x03\x12\x04\xb0\x01\x16\x17\n\x17\n\x04\x04\x01\x02\x06\x12\x04\xb3\x01\x04\x1d\x1a\t Region.\n\n\r\n\x05\x04\x01\x02\x06\x06\x12\x04\xb3\x01\x04\x11\n\r\n\x05\x04\x01\x02\x06\x01\x12\x04\xb3\x01\x12\x18\n\r\n\x05\x04\x01\x02\x06\x03\x12\x04\xb3\x01\x1b\x1c\n$\n\x04\x04\x01\x02\x07\x12\x04\xb6\x01\x04&\x1a\x16 LoRaWAN mac-version.\n\n\r\n\x05\x04\x01\x02\x07\x06\x12\x04\xb6\x01\x04\x15\n\r\n\x05\x04\x01\x02\x07\x01\x12\x04\xb6\x01\x16!\n\r\n\x05\x04\x01\x02\x07\x03\x12\x04\xb6\x01$%\n-\n\x04\x04\x01\x02\x08\x12\x04\xb9\x01\x045\x1a\x1f Regional parameters revision.\n\n\r\n\x05\x04\x01\x02\x08\x06\x12\x04\xb9\x01\x04\x1c\n\r\n\x05\x04\x01\x02\x08\x01\x12\x04\xb9\x01\x1d0\n\r\n\x05\x04\x01\x02\x08\x03\x12\x04\xb9\x0134\n\x1e\n\x04\x04\x01\x02\t\x12\x04\xbc\x01\x04\x1c\x1a\x10 Supports OTAA.\n\n\r\n\x05\x04\x01\x02\t\x05\x12\x04\xbc\x01\x04\x08\n\r\n\x05\x04\x01\x02\t\x01\x12\x04\xbc\x01\t\x16\n\r\n\x05\x04\x01\x02\t\x03\x12\x04\xbc\x01\x19\x1b\n!\n\x04\x04\x01\x02\n\x12\x04\xbf\x01\x04\x1f\x1a\x13 Supports Class-B.\n\n\r\n\x05\x04\x01\x02\n\x05\x12\x04\xbf\x01\x04\x08\n\r\n\x05\x04\x01\x02\n\x01\x12\x04\xbf\x01\t\x19\n\r\n\x05\x04\x01\x02\n\x03\x12\x04\xbf\x01\x1c\x1e\n!\n\x04\x04\x01\x02\x0b\x12\x04\xc2\x01\x04\x1f\x1a\x13 Supports Class-C.\n\n\r\n\x05\x04\x01\x02\x0b\x05\x12\x04\xc2\x01\x04\x08\n\r\n\x05\x04\x01\x02\x0b\x01\x12\x04\xc2\x01\t\x19\n\r\n\x05\x04\x01\x02\x0b\x03\x12\x04\xc2\x01\x1c\x1e\n\x0c\n\x02\x04\x02\x12\x06\xc6\x01\x00\xc9\x01\x01\n\x0b\n\x03\x04\x02\x01\x12\x04\xc6\x01\x08*\n!\n\x04\x04\x02\x02\x00\x12\x04\xc8\x01\x046\x1a\x13 Object to create.\n\n\r\n\x05\x04\x02\x02\x00\x06\x12\x04\xc8\x01\x04\x19\n\r\n\x05\x04\x02\x02\x00\x01\x12\x04\xc8\x01\x1a1\n\r\n\x05\x04\x02\x02\x00\x03\x12\x04\xc8\x0145\n\x0c\n\x02\x04\x03\x12\x06\xcb\x01\x00\xce\x01\x01\n\x0b\n\x03\x04\x03\x01\x12\x04\xcb\x01\x08\'\n\x13\n\x04\x04\x03\x02\x00\x12\x04\xcd\x01\x04\x12\x1a\x05 ID.\n\n\r\n\x05\x04\x03\x02\x00\x05\x12\x04\xcd\x01\x04\n\n\r\n\x05\x04\x03\x02\x00\x01\x12\x04\xcd\x01\x0b\r\n\r\n\x05\x04\x03\x02\x00\x03\x12\x04\xcd\x01\x10\x11\n\x0c\n\x02\x04\x04\x12\x06\xd0\x01\x00\xd9\x01\x01\n\x0b\n\x03\x04\x04\x01\x12\x04\xd0\x01\x08(\n/\n\x04\x04\x04\x02\x00\x12\x04\xd2\x01\x046\x1a! Device-profile template object.\n\n\r\n\x05\x04\x04\x02\x00\x06\x12\x04\xd2\x01\x04\x19\n\r\n\x05\x04\x04\x02\x00\x01\x12\x04\xd2\x01\x1a1\n\r\n\x05\x04\x04\x02\x00\x03\x12\x04\xd2\x0145\n%\n\x04\x04\x04\x02\x01\x12\x04\xd5\x01\x04-\x1a\x17 Created at timestamp.\n\n\r\n\x05\x04\x04\x02\x01\x06\x12\x04\xd5\x01\x04\x1d\n\r\n\x05\x04\x04\x02\x01\x01\x12\x04\xd5\x01\x1e(\n\r\n\x05\x04\x04\x02\x01\x03\x12\x04\xd5\x01+,\n&\n\x04\x04\x04\x02\x02\x12\x04\xd8\x01\x04-\x1a\x18 Last update timestamp.\n\n\r\n\x05\x04\x04\x02\x02\x06\x12\x04\xd8\x01\x04\x1d\n\r\n\x05\x04\x04\x02\x02\x01\x12\x04\xd8\x01\x1e(\n\r\n\x05\x04\x04\x02\x02\x03\x12\x04\xd8\x01+,\n\x0c\n\x02\x04\x05\x12\x06\xdb\x01\x00\xde\x01\x01\n\x0b\n\x03\x04\x05\x01\x12\x04\xdb\x01\x08*\n!\n\x04\x04\x05\x02\x00\x12\x04\xdd\x01\x046\x1a\x13 Object to update.\n\n\r\n\x05\x04\x05\x02\x00\x06\x12\x04\xdd\x01\x04\x19\n\r\n\x05\x04\x05\x02\x00\x01\x12\x04\xdd\x01\x1a1\n\r\n\x05\x04\x05\x02\x00\x03\x12\x04\xdd\x0145\n\x0c\n\x02\x04\x06\x12\x06\xe0\x01\x00\xe3\x01\x01\n\x0b\n\x03\x04\x06\x01\x12\x04\xe0\x01\x08*\n\x13\n\x04\x04\x06\x02\x00\x12\x04\xe2\x01\x04\x12\x1a\x05 ID.\n\n\r\n\x05\x04\x06\x02\x00\x05\x12\x04\xe2\x01\x04\n\n\r\n\x05\x04\x06\x02\x00\x01\x12\x04\xe2\x01\x0b\r\n\r\n\x05\x04\x06\x02\x00\x03\x12\x04\xe2\x01\x10\x11\n\x0c\n\x02\x04\x07\x12\x06\xe5\x01\x00\xeb\x01\x01\n\x0b\n\x03\x04\x07\x01\x12\x04\xe5\x01\x08)\nS\n\x04\x04\x07\x02\x00\x12\x04\xe7\x01\x04\x15\x1aE Max number of device-profile templates to return in the result-set.\n\n\r\n\x05\x04\x07\x02\x00\x05\x12\x04\xe7\x01\x04\n\n\r\n\x05\x04\x07\x02\x00\x01\x12\x04\xe7\x01\x0b\x10\n\r\n\x05\x04\x07\x02\x00\x03\x12\x04\xe7\x01\x13\x14\n:\n\x04\x04\x07\x02\x01\x12\x04\xea\x01\x04\x16\x1a, Offset in the result-set (for pagination).\n\n\r\n\x05\x04\x07\x02\x01\x05\x12\x04\xea\x01\x04\n\n\r\n\x05\x04\x07\x02\x01\x01\x12\x04\xea\x01\x0b\x11\n\r\n\x05\x04\x07\x02\x01\x03\x12\x04\xea\x01\x14\x15\n\x0c\n\x02\x04\x08\x12\x06\xed\x01\x00\xf3\x01\x01\n\x0b\n\x03\x04\x08\x01\x12\x04\xed\x01\x08*\n9\n\x04\x04\x08\x02\x00\x12\x04\xef\x01\x04\x1b\x1a+ Total number of device-profile templates.\n\n\r\n\x05\x04\x08\x02\x00\x05\x12\x04\xef\x01\x04\n\n\r\n\x05\x04\x08\x02\x00\x01\x12\x04\xef\x01\x0b\x16\n\r\n\x05\x04\x08\x02\x00\x03\x12\x04\xef\x01\x19\x1a\n\x1b\n\x04\x04\x08\x02\x01\x12\x04\xf2\x01\x046\x1a\r Result-set.\n\n\r\n\x05\x04\x08\x02\x01\x04\x12\x04\xf2\x01\x04\x0c\n\r\n\x05\x04\x08\x02\x01\x06\x12\x04\xf2\x01\r*\n\r\n\x05\x04\x08\x02\x01\x01\x12\x04\xf2\x01+1\n\r\n\x05\x04\x08\x02\x01\x03\x12\x04\xf2\x0145b\x06proto3\n\x81#\n\x1cgoogle/protobuf/struct.proto\x12\x0fgoogle.protobuf\"\x98\x01\n\x06Struct\x12;\n\x06fields\x18\x01 \x03(\x0b2#.google.protobuf.Struct.FieldsEntryR\x06fields\x1aQ\n\x0bFieldsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12,\n\x05value\x18\x02 \x01(\x0b2\x16.google.protobuf.ValueR\x05value:\x028\x01\"\xb2\x02\n\x05Value\x12;\n\nnull_value\x18\x01 \x01(\x0e2\x1a.google.protobuf.NullValueH\x00R\tnullValue\x12#\n\x0cnumber_value\x18\x02 \x01(\x01H\x00R\x0bnumberValue\x12#\n\x0cstring_value\x18\x03 \x01(\tH\x00R\x0bstringValue\x12\x1f\n\nbool_value\x18\x04 \x01(\x08H\x00R\tboolValue\x12<\n\x0cstruct_value\x18\x05 \x01(\x0b2\x17.google.protobuf.StructH\x00R\x0bstructValue\x12;\n\nlist_value\x18\x06 \x01(\x0b2\x1a.google.protobuf.ListValueH\x00R\tlistValueB\x06\n\x04kind\";\n\tListValue\x12.\n\x06values\x18\x01 \x03(\x0b2\x16.google.protobuf.ValueR\x06values*\x1b\n\tNullValue\x12\x0e\n\nNULL_VALUE\x10\x00B\x81\x01\n\x13com.google.protobufB\x0bStructProtoP\x01Z1github.com/golang/protobuf/ptypes/struct;structpb\xf8\x01\x01\xa2\x02\x03GPB\xaa\x02\x1eGoogle.Protobuf.WellKnownTypesJ\x99\x1d\n\x06\x12\x04\x1e\x00^\x01\n\xcc\x0c\n\x01\x0c\x12\x03\x1e\x00\x122\xc1\x0c Protocol Buffers - Google\'s data interchange format\n Copyright 2008 Google Inc.  All rights reserved.\n https://developers.google.com/protocol-buffers/\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n\n     * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n     * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n     * Neither the name of Google Inc. nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n\x08\n\x01\x02\x12\x03 \x00\x18\n\x08\n\x01\x08\x12\x03\"\x00;\n\t\n\x02\x08%\x12\x03\"\x00;\n\x08\n\x01\x08\x12\x03#\x00\x1f\n\t\n\x02\x08\x1f\x12\x03#\x00\x1f\n\x08\n\x01\x08\x12\x03$\x00H\n\t\n\x02\x08\x0b\x12\x03$\x00H\n\x08\n\x01\x08\x12\x03%\x00,\n\t\n\x02\x08\x01\x12\x03%\x00,\n\x08\n\x01\x08\x12\x03&\x00,\n\t\n\x02\x08\x08\x12\x03&\x00,\n\x08\n\x01\x08\x12\x03\'\x00\"\n\t\n\x02\x08\n\x12\x03\'\x00\"\n\x08\n\x01\x08\x12\x03(\x00!\n\t\n\x02\x08$\x12\x03(\x00!\n\xb3\x03\n\x02\x04\x00\x12\x042\x005\x01\x1a\xa6\x03 `Struct` represents a structured data value, consisting of fields\n which map to dynamically typed values. In some languages, `Struct`\n might be supported by a native representation. For example, in\n scripting languages like JS a struct is represented as an\n object. The details of that representation are described together\n with the proto support for the language.\n\n The JSON representation for `Struct` is JSON object.\n\n\n\n\x03\x04\x00\x01\x12\x032\x08\x0e\n9\n\x04\x04\x00\x02\x00\x12\x034\x02 \x1a, Unordered map of dynamically typed values.\n\n\x0c\n\x05\x04\x00\x02\x00\x06\x12\x034\x02\x14\n\x0c\n\x05\x04\x00\x02\x00\x01\x12\x034\x15\x1b\n\x0c\n\x05\x04\x00\x02\x00\x03\x12\x034\x1e\x1f\n\xc3\x02\n\x02\x04\x01\x12\x04=\x00M\x01\x1a\xb6\x02 `Value` represents a dynamically typed value which can be either\n null, a number, a string, a boolean, a recursive struct value, or a\n list of values. A producer of value is expected to set one of that\n variants, absence of any variant indicates an error.\n\n The JSON representation for `Value` is JSON value.\n\n\n\n\x03\x04\x01\x01\x12\x03=\x08\r\n\"\n\x04\x04\x01\x08\x00\x12\x04?\x02L\x03\x1a\x14 The kind of value.\n\n\x0c\n\x05\x04\x01\x08\x00\x01\x12\x03?\x08\x0c\n\'\n\x04\x04\x01\x02\x00\x12\x03A\x04\x1d\x1a\x1a Represents a null value.\n\n\x0c\n\x05\x04\x01\x02\x00\x06\x12\x03A\x04\r\n\x0c\n\x05\x04\x01\x02\x00\x01\x12\x03A\x0e\x18\n\x0c\n\x05\x04\x01\x02\x00\x03\x12\x03A\x1b\x1c\n)\n\x04\x04\x01\x02\x01\x12\x03C\x04\x1c\x1a\x1c Represents a double value.\n\n\x0c\n\x05\x04\x01\x02\x01\x05\x12\x03C\x04\n\n\x0c\n\x05\x04\x01\x02\x01\x01\x12\x03C\x0b\x17\n\x0c\n\x05\x04\x01\x02\x01\x03\x12\x03C\x1a\x1b\n)\n\x04\x04\x01\x02\x02\x12\x03E\x04\x1c\x1a\x1c Represents a string value.\n\n\x0c\n\x05\x04\x01\x02\x02\x05\x12\x03E\x04\n\n\x0c\n\x05\x04\x01\x02\x02\x01\x12\x03E\x0b\x17\n\x0c\n\x05\x04\x01\x02\x02\x03\x12\x03E\x1a\x1b\n*\n\x04\x04\x01\x02\x03\x12\x03G\x04\x18\x1a\x1d Represents a boolean value.\n\n\x0c\n\x05\x04\x01\x02\x03\x05\x12\x03G\x04\x08\n\x0c\n\x05\x04\x01\x02\x03\x01\x12\x03G\t\x13\n\x0c\n\x05\x04\x01\x02\x03\x03\x12\x03G\x16\x17\n-\n\x04\x04\x01\x02\x04\x12\x03I\x04\x1c\x1a  Represents a structured value.\n\n\x0c\n\x05\x04\x01\x02\x04\x06\x12\x03I\x04\n\n\x0c\n\x05\x04\x01\x02\x04\x01\x12\x03I\x0b\x17\n\x0c\n\x05\x04\x01\x02\x04\x03\x12\x03I\x1a\x1b\n-\n\x04\x04\x01\x02\x05\x12\x03K\x04\x1d\x1a  Represents a repeated `Value`.\n\n\x0c\n\x05\x04\x01\x02\x05\x06\x12\x03K\x04\r\n\x0c\n\x05\x04\x01\x02\x05\x01\x12\x03K\x0e\x18\n\x0c\n\x05\x04\x01\x02\x05\x03\x12\x03K\x1b\x1c\n\xa9\x01\n\x02\x05\x00\x12\x04S\x00V\x01\x1a\x9c\x01 `NullValue` is a singleton enumeration to represent the null value for the\n `Value` type union.\n\n  The JSON representation for `NullValue` is JSON `null`.\n\n\n\n\x03\x05\x00\x01\x12\x03S\x05\x0e\n\x1a\n\x04\x05\x00\x02\x00\x12\x03U\x02\x11\x1a\r Null value.\n\n\x0c\n\x05\x05\x00\x02\x00\x01\x12\x03U\x02\x0c\n\x0c\n\x05\x05\x00\x02\x00\x02\x12\x03U\x0f\x10\n\x82\x01\n\x02\x04\x02\x12\x04[\x00^\x01\x1av `ListValue` is a wrapper around a repeated field of values.\n\n The JSON representation for `ListValue` is JSON array.\n\n\n\n\x03\x04\x02\x01\x12\x03[\x08\x11\n:\n\x04\x04\x02\x02\x00\x12\x03]\x02\x1c\x1a- Repeated field of dynamically typed values.\n\n\x0c\n\x05\x04\x02\x02\x00\x04\x12\x03]\x02\n\n\x0c\n\x05\x04\x02\x02\x00\x06\x12\x03]\x0b\x10\n\x0c\n\x05\x04\x02\x02\x00\x01\x12\x03]\x11\x17\n\x0c\n\x05\x04\x02\x02\x00\x03\x12\x03]\x1a\x1bb\x06proto3\n\x90\xa3\x01\n\x10api/device.proto\x12\x03api\x1a\x13common/common.proto\x1a\x1cgoogle/api/annotations.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1cgoogle/protobuf/struct.proto\x1a\x1bgoogle/protobuf/empty.proto\"\xea\x03\n\x06Device\x12\x17\n\x07dev_eui\x18\x01 \x01(\tR\x06devEui\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x12 \n\x0bdescription\x18\x03 \x01(\tR\x0bdescription\x12%\n\x0eapplication_id\x18\x04 \x01(\tR\rapplicationId\x12*\n\x11device_profile_id\x18\x05 \x01(\tR\x0fdeviceProfileId\x12&\n\x0fskip_fcnt_check\x18\x06 \x01(\x08R\rskipFcntCheck\x12\x1f\n\x0bis_disabled\x18\x07 \x01(\x08R\nisDisabled\x128\n\tvariables\x18\x08 \x03(\x0b2\x1a.api.Device.VariablesEntryR\tvariables\x12)\n\x04tags\x18\t \x03(\x0b2\x15.api.Device.TagsEntryR\x04tags\x12\x19\n\x08join_eui\x18\n \x01(\tR\x07joinEui\x1a<\n\x0eVariablesEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x028\x01\x1a7\n\tTagsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x028\x01\"\x7f\n\x0cDeviceStatus\x12\x16\n\x06margin\x18\x01 \x01(\x05R\x06margin\x122\n\x15external_power_source\x18\x02 \x01(\x08R\x13externalPowerSource\x12#\n\rbattery_level\x18\x03 \x01(\x02R\x0cbatteryLevel\"\xa7\x03\n\x0eDeviceListItem\x12\x17\n\x07dev_eui\x18\x01 \x01(\tR\x06devEui\x129\n\ncreated_at\x18\x02 \x01(\x0b2\x1a.google.protobuf.TimestampR\tcreatedAt\x129\n\nupdated_at\x18\x03 \x01(\x0b2\x1a.google.protobuf.TimestampR\tupdatedAt\x12<\n\x0clast_seen_at\x18\x04 \x01(\x0b2\x1a.google.protobuf.TimestampR\nlastSeenAt\x12\x12\n\x04name\x18\x05 \x01(\tR\x04name\x12 \n\x0bdescription\x18\x06 \x01(\tR\x0bdescription\x12*\n\x11device_profile_id\x18\x07 \x01(\tR\x0fdeviceProfileId\x12.\n\x13device_profile_name\x18\x08 \x01(\tR\x11deviceProfileName\x126\n\rdevice_status\x18\t \x01(\x0b2\x11.api.DeviceStatusR\x0cdeviceStatus\"W\n\nDeviceKeys\x12\x17\n\x07dev_eui\x18\x01 \x01(\tR\x06devEui\x12\x17\n\x07nwk_key\x18\x02 \x01(\tR\x06nwkKey\x12\x17\n\x07app_key\x18\x03 \x01(\tR\x06appKey\":\n\x13CreateDeviceRequest\x12#\n\x06device\x18\x01 \x01(\x0b2\x0b.api.DeviceR\x06device\"+\n\x10GetDeviceRequest\x12\x17\n\x07dev_eui\x18\x01 \x01(\tR\x06devEui\"\xde\x02\n\x11GetDeviceResponse\x12#\n\x06device\x18\x01 \x01(\x0b2\x0b.api.DeviceR\x06device\x129\n\ncreated_at\x18\x02 \x01(\x0b2\x1a.google.protobuf.TimestampR\tcreatedAt\x129\n\nupdated_at\x18\x03 \x01(\x0b2\x1a.google.protobuf.TimestampR\tupdatedAt\x12<\n\x0clast_seen_at\x18\x04 \x01(\x0b2\x1a.google.protobuf.TimestampR\nlastSeenAt\x126\n\rdevice_status\x18\x05 \x01(\x0b2\x11.api.DeviceStatusR\x0cdeviceStatus\x128\n\rclass_enabled\x18\x06 \x01(\x0e2\x13.common.DeviceClassR\x0cclassEnabled\":\n\x13UpdateDeviceRequest\x12#\n\x06device\x18\x01 \x01(\x0b2\x0b.api.DeviceR\x06device\".\n\x13DeleteDeviceRequest\x12\x17\n\x07dev_eui\x18\x01 \x01(\tR\x06devEui\"\xaf\x01\n\x12ListDevicesRequest\x12\x14\n\x05limit\x18\x01 \x01(\rR\x05limit\x12\x16\n\x06offset\x18\x02 \x01(\rR\x06offset\x12\x16\n\x06search\x18\x03 \x01(\tR\x06search\x12%\n\x0eapplication_id\x18\x04 \x01(\tR\rapplicationId\x12,\n\x12multicast_group_id\x18\x05 \x01(\tR\x10multicastGroupId\"c\n\x13ListDevicesResponse\x12\x1f\n\x0btotal_count\x18\x01 \x01(\rR\ntotalCount\x12+\n\x06result\x18\x02 \x03(\x0b2\x13.api.DeviceListItemR\x06result\"K\n\x17CreateDeviceKeysRequest\x120\n\x0bdevice_keys\x18\x01 \x01(\x0b2\x0f.api.DeviceKeysR\ndeviceKeys\"/\n\x14GetDeviceKeysRequest\x12\x17\n\x07dev_eui\x18\x01 \x01(\tR\x06devEui\"\xbf\x01\n\x15GetDeviceKeysResponse\x120\n\x0bdevice_keys\x18\x01 \x01(\x0b2\x0f.api.DeviceKeysR\ndeviceKeys\x129\n\ncreated_at\x18\x02 \x01(\x0b2\x1a.google.protobuf.TimestampR\tcreatedAt\x129\n\nupdated_at\x18\x03 \x01(\x0b2\x1a.google.protobuf.TimestampR\tupdatedAt\"K\n\x17UpdateDeviceKeysRequest\x120\n\x0bdevice_keys\x18\x01 \x01(\x0b2\x0f.api.DeviceKeysR\ndeviceKeys\"2\n\x17DeleteDeviceKeysRequest\x12\x17\n\x07dev_eui\x18\x01 \x01(\tR\x06devEui\"\xad\x02\n\x10DeviceActivation\x12\x17\n\x07dev_eui\x18\x01 \x01(\tR\x06devEui\x12\x19\n\x08dev_addr\x18\x02 \x01(\tR\x07devAddr\x12\x1a\n\tapp_s_key\x18\x03 \x01(\tR\x07appSKey\x12!\n\rnwk_s_enc_key\x18\x04 \x01(\tR\nnwkSEncKey\x12$\n\x0fs_nwk_s_int_key\x18\x08 \x01(\tR\x0bsNwkSIntKey\x12$\n\x0ff_nwk_s_int_key\x18\t \x01(\tR\x0bfNwkSIntKey\x12\x18\n\x08f_cnt_up\x18\x05 \x01(\rR\x06fCntUp\x12\x1f\n\x0cn_f_cnt_down\x18\x06 \x01(\rR\tnFCntDown\x12\x1f\n\x0ca_f_cnt_down\x18\n \x01(\rR\taFCntDown\"[\n\x15ActivateDeviceRequest\x12B\n\x11device_activation\x18\x01 \x01(\x0b2\x15.api.DeviceActivationR\x10deviceActivation\"2\n\x17DeactivateDeviceRequest\x12\x17\n\x07dev_eui\x18\x01 \x01(\tR\x06devEui\"5\n\x1aGetDeviceActivationRequest\x12\x17\n\x07dev_eui\x18\x01 \x01(\tR\x06devEui\"a\n\x1bGetDeviceActivationResponse\x12B\n\x11device_activation\x18\x01 \x01(\x0b2\x15.api.DeviceActivationR\x10deviceActivation\"2\n\x17GetRandomDevAddrRequest\x12\x17\n\x07dev_eui\x18\x01 \x01(\tR\x06devEui\"5\n\x18GetRandomDevAddrResponse\x12\x19\n\x08dev_addr\x18\x01 \x01(\tR\x07devAddr\"\xc9\x01\n\x17GetDeviceMetricsRequest\x12\x17\n\x07dev_eui\x18\x01 \x01(\tR\x06devEui\x120\n\x05start\x18\x02 \x01(\x0b2\x1a.google.protobuf.TimestampR\x05start\x12,\n\x03end\x18\x03 \x01(\x0b2\x1a.google.protobuf.TimestampR\x03end\x125\n\x0baggregation\x18\x04 \x01(\x0e2\x13.common.AggregationR\x0baggregation\"\xbc\x02\n\x18GetDeviceMetricsResponse\x12D\n\x07metrics\x18\x01 \x03(\x0b2*.api.GetDeviceMetricsResponse.MetricsEntryR\x07metrics\x12A\n\x06states\x18\x02 \x03(\x0b2).api.GetDeviceMetricsResponse.StatesEntryR\x06states\x1aJ\n\x0cMetricsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12$\n\x05value\x18\x02 \x01(\x0b2\x0e.common.MetricR\x05value:\x028\x01\x1aK\n\x0bStatesEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12&\n\x05value\x18\x02 \x01(\x0b2\x10.api.DeviceStateR\x05value:\x028\x01\"7\n\x0bDeviceState\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x12\x14\n\x05value\x18\x03 \x01(\tR\x05value\"\xcd\x01\n\x1bGetDeviceLinkMetricsRequest\x12\x17\n\x07dev_eui\x18\x01 \x01(\tR\x06devEui\x120\n\x05start\x18\x02 \x01(\x0b2\x1a.google.protobuf.TimestampR\x05start\x12,\n\x03end\x18\x03 \x01(\x0b2\x1a.google.protobuf.TimestampR\x03end\x125\n\x0baggregation\x18\x04 \x01(\x0e2\x13.common.AggregationR\x0baggregation\"\xbf\x02\n\x1cGetDeviceLinkMetricsResponse\x12-\n\nrx_packets\x18\x01 \x01(\x0b2\x0e.common.MetricR\trxPackets\x12\'\n\x07gw_rssi\x18\x02 \x01(\x0b2\x0e.common.MetricR\x06gwRssi\x12%\n\x06gw_snr\x18\x03 \x01(\x0b2\x0e.common.MetricR\x05gwSnr\x12=\n\x13rx_packets_per_freq\x18\x04 \x01(\x0b2\x0e.common.MetricR\x10rxPacketsPerFreq\x129\n\x11rx_packets_per_dr\x18\x05 \x01(\x0b2\x0e.common.MetricR\x0erxPacketsPerDr\x12&\n\x06errors\x18\x06 \x01(\x0b2\x0e.common.MetricR\x06errors\"\xf1\x01\n\x0fDeviceQueueItem\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x17\n\x07dev_eui\x18\x02 \x01(\tR\x06devEui\x12\x1c\n\tconfirmed\x18\x03 \x01(\x08R\tconfirmed\x12\x15\n\x06f_port\x18\x04 \x01(\rR\x05fPort\x12\x12\n\x04data\x18\x05 \x01(\x0cR\x04data\x12/\n\x06object\x18\x06 \x01(\x0b2\x17.google.protobuf.StructR\x06object\x12\x1d\n\nis_pending\x18\x07 \x01(\x08R\tisPending\x12\x1c\n\nf_cnt_down\x18\x08 \x01(\rR\x08fCntDown\"T\n\x1dEnqueueDeviceQueueItemRequest\x123\n\nqueue_item\x18\x01 \x01(\x0b2\x14.api.DeviceQueueItemR\tqueueItem\"0\n\x1eEnqueueDeviceQueueItemResponse\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\"2\n\x17FlushDeviceQueueRequest\x12\x17\n\x07dev_eui\x18\x01 \x01(\tR\x06devEui\"T\n\x1aGetDeviceQueueItemsRequest\x12\x17\n\x07dev_eui\x18\x01 \x01(\tR\x06devEui\x12\x1d\n\ncount_only\x18\x02 \x01(\x08R\tcountOnly\"l\n\x1bGetDeviceQueueItemsResponse\x12\x1f\n\x0btotal_count\x18\x01 \x01(\rR\ntotalCount\x12,\n\x06result\x18\x02 \x03(\x0b2\x14.api.DeviceQueueItemR\x06result\"0\n\x15FlushDevNoncesRequest\x12\x17\n\x07dev_eui\x18\x01 \x01(\tR\x06devEui2\xd0\x10\n\rDeviceService\x12S\n\x06Create\x12\x18.api.CreateDeviceRequest\x1a\x16.google.protobuf.Empty\"\x17\x82\xd3\xe4\x93\x02\x11\"\x0c/api/devices:\x01*\x12T\n\x03Get\x12\x15.api.GetDeviceRequest\x1a\x16.api.GetDeviceResponse\"\x1e\x82\xd3\xe4\x93\x02\x18\x12\x16/api/devices/{dev_eui}\x12d\n\x06Update\x12\x18.api.UpdateDeviceRequest\x1a\x16.google.protobuf.Empty\"(\x82\xd3\xe4\x93\x02\"\x1a\x1d/api/devices/{device.dev_eui}:\x01*\x12Z\n\x06Delete\x12\x18.api.DeleteDeviceRequest\x1a\x16.google.protobuf.Empty\"\x1e\x82\xd3\xe4\x93\x02\x18*\x16/api/devices/{dev_eui}\x12O\n\x04List\x12\x17.api.ListDevicesRequest\x1a\x18.api.ListDevicesResponse\"\x14\x82\xd3\xe4\x93\x02\x0e\x12\x0c/api/devices\x12v\n\nCreateKeys\x12\x1c.api.CreateDeviceKeysRequest\x1a\x16.google.protobuf.Empty\"2\x82\xd3\xe4\x93\x02,\"\'/api/devices/{device_keys.dev_eui}/keys:\x01*\x12e\n\x07GetKeys\x12\x19.api.GetDeviceKeysRequest\x1a\x1a.api.GetDeviceKeysResponse\"#\x82\xd3\xe4\x93\x02\x1d\x12\x1b/api/devices/{dev_eui}/keys\x12v\n\nUpdateKeys\x12\x1c.api.UpdateDeviceKeysRequest\x1a\x16.google.protobuf.Empty\"2\x82\xd3\xe4\x93\x02,\x1a\'/api/devices/{device_keys.dev_eui}/keys:\x01*\x12g\n\nDeleteKeys\x12\x1c.api.DeleteDeviceKeysRequest\x1a\x16.google.protobuf.Empty\"#\x82\xd3\xe4\x93\x02\x1d*\x1b/api/devices/{dev_eui}/keys\x12o\n\x0eFlushDevNonces\x12\x1a.api.FlushDevNoncesRequest\x1a\x16.google.protobuf.Empty\")\x82\xd3\xe4\x93\x02#*!/api/devices/{dev_eui}/dev-nonces\x12|\n\x08Activate\x12\x1a.api.ActivateDeviceRequest\x1a\x16.google.protobuf.Empty\"<\x82\xd3\xe4\x93\x026\"1/api/devices/{device_activation.dev_eui}/activate:\x01*\x12m\n\nDeactivate\x12\x1c.api.DeactivateDeviceRequest\x1a\x16.google.protobuf.Empty\")\x82\xd3\xe4\x93\x02#*!/api/devices/{dev_eui}/activation\x12}\n\rGetActivation\x12\x1f.api.GetDeviceActivationRequest\x1a .api.GetDeviceActivationResponse\")\x82\xd3\xe4\x93\x02#\x12!/api/devices/{dev_eui}/activation\x12\x83\x01\n\x10GetRandomDevAddr\x12\x1c.api.GetRandomDevAddrRequest\x1a\x1d.api.GetRandomDevAddrResponse\"2\x82\xd3\xe4\x93\x02,\"*/api/devices/{dev_eui}/get-random-dev-addr\x12q\n\nGetMetrics\x12\x1c.api.GetDeviceMetricsRequest\x1a\x1d.api.GetDeviceMetricsResponse\"&\x82\xd3\xe4\x93\x02 \x12\x1e/api/devices/{dev_eui}/metrics\x12\x82\x01\n\x0eGetLinkMetrics\x12 .api.GetDeviceLinkMetricsRequest\x1a!.api.GetDeviceLinkMetricsResponse\"+\x82\xd3\xe4\x93\x02%\x12#/api/devices/{dev_eui}/link-metrics\x12\x86\x01\n\x07Enqueue\x12\".api.EnqueueDeviceQueueItemRequest\x1a#.api.EnqueueDeviceQueueItemResponse\"2\x82\xd3\xe4\x93\x02,\"\'/api/devices/{queue_item.dev_eui}/queue:\x01*\x12h\n\nFlushQueue\x12\x1c.api.FlushDeviceQueueRequest\x1a\x16.google.protobuf.Empty\"$\x82\xd3\xe4\x93\x02\x1e*\x1c/api/devices/{dev_eui}/queue\x12s\n\x08GetQueue\x12\x1f.api.GetDeviceQueueItemsRequest\x1a .api.GetDeviceQueueItemsResponse\"$\x82\xd3\xe4\x93\x02\x1e\x12\x1c/api/devices/{dev_eui}/queueBc\n\x11io.chirpstack.apiB\x0bDeviceProtoP\x01Z.github.com/chirpstack/chirpstack/api/go/v4/api\xaa\x02\x0eChirpstack.ApiJ\xe6i\n\x07\x12\x05\x00\x00\xa1\x04\x01\n\x08\n\x01\x0c\x12\x03\x00\x00\x12\n\x08\n\x01\x02\x12\x03\x02\x00\x0c\n\x08\n\x01\x08\x12\x03\x04\x00E\n\t\n\x02\x08\x0b\x12\x03\x04\x00E\n\x08\n\x01\x08\x12\x03\x05\x00*\n\t\n\x02\x08\x01\x12\x03\x05\x00*\n\x08\n\x01\x08\x12\x03\x06\x00\"\n\t\n\x02\x08\n\x12\x03\x06\x00\"\n\x08\n\x01\x08\x12\x03\x07\x00,\n\t\n\x02\x08\x08\x12\x03\x07\x00,\n\x08\n\x01\x08\x12\x03\x08\x00+\n\t\n\x02\x08%\x12\x03\x08\x00+\n\t\n\x02\x03\x00\x12\x03\n\x00\x1d\n\t\n\x02\x03\x01\x12\x03\x0b\x00&\n\t\n\x02\x03\x02\x12\x03\x0c\x00)\n\t\n\x02\x03\x03\x12\x03\r\x00&\n\t\n\x02\x03\x04\x12\x03\x0e\x00%\nW\n\x02\x06\x00\x12\x05\x11\x00\xa7\x01\x01\x1aJ DeviceService is the service providing API methods for managing devices.\n\n\n\n\x03\x06\x00\x01\x12\x03\x11\x08\x15\n(\n\x04\x06\x00\x02\x00\x12\x04\x13\x02\x18\x03\x1a\x1a Create the given device.\n\n\x0c\n\x05\x06\x00\x02\x00\x01\x12\x03\x13\x06\x0c\n\x0c\n\x05\x06\x00\x02\x00\x02\x12\x03\x13\r \n\x0c\n\x05\x06\x00\x02\x00\x03\x12\x03\x13+@\n\r\n\x05\x06\x00\x02\x00\x04\x12\x04\x14\x04\x17\x06\n\x11\n\t\x06\x00\x02\x00\x04\xb0\xca\xbc\"\x12\x04\x14\x04\x17\x06\n<\n\x04\x06\x00\x02\x01\x12\x04\x1b\x02\x1f\x03\x1a. Get returns the device for the given DevEUI.\n\n\x0c\n\x05\x06\x00\x02\x01\x01\x12\x03\x1b\x06\t\n\x0c\n\x05\x06\x00\x02\x01\x02\x12\x03\x1b\n\x1a\n\x0c\n\x05\x06\x00\x02\x01\x03\x12\x03\x1b%6\n\r\n\x05\x06\x00\x02\x01\x04\x12\x04\x1c\x04\x1e\x06\n\x11\n\t\x06\x00\x02\x01\x04\xb0\xca\xbc\"\x12\x04\x1c\x04\x1e\x06\n(\n\x04\x06\x00\x02\x02\x12\x04\"\x02\'\x03\x1a\x1a Update the given device.\n\n\x0c\n\x05\x06\x00\x02\x02\x01\x12\x03\"\x06\x0c\n\x0c\n\x05\x06\x00\x02\x02\x02\x12\x03\"\r \n\x0c\n\x05\x06\x00\x02\x02\x03\x12\x03\"+@\n\r\n\x05\x06\x00\x02\x02\x04\x12\x04#\x04&\x06\n\x11\n\t\x06\x00\x02\x02\x04\xb0\xca\xbc\"\x12\x04#\x04&\x06\n8\n\x04\x06\x00\x02\x03\x12\x04*\x02.\x03\x1a* Delete the device with the given DevEUI.\n\n\x0c\n\x05\x06\x00\x02\x03\x01\x12\x03*\x06\x0c\n\x0c\n\x05\x06\x00\x02\x03\x02\x12\x03*\r \n\x0c\n\x05\x06\x00\x02\x03\x03\x12\x03*+@\n\r\n\x05\x06\x00\x02\x03\x04\x12\x04+\x04-\x06\n\x11\n\t\x06\x00\x02\x03\x04\xb0\xca\xbc\"\x12\x04+\x04-\x06\n(\n\x04\x06\x00\x02\x04\x12\x041\x025\x03\x1a\x1a Get the list of devices.\n\n\x0c\n\x05\x06\x00\x02\x04\x01\x12\x031\x06\n\n\x0c\n\x05\x06\x00\x02\x04\x02\x12\x031\x0b\x1d\n\x0c\n\x05\x06\x00\x02\x04\x03\x12\x031(;\n\r\n\x05\x06\x00\x02\x04\x04\x12\x042\x044\x06\n\x11\n\t\x06\x00\x02\x04\x04\xb0\xca\xbc\"\x12\x042\x044\x06\n-\n\x04\x06\x00\x02\x05\x12\x048\x02=\x03\x1a\x1f Create the given device-keys.\n\n\x0c\n\x05\x06\x00\x02\x05\x01\x12\x038\x06\x10\n\x0c\n\x05\x06\x00\x02\x05\x02\x12\x038\x11(\n\x0c\n\x05\x06\x00\x02\x05\x03\x12\x0383H\n\r\n\x05\x06\x00\x02\x05\x04\x12\x049\x04<\x06\n\x11\n\t\x06\x00\x02\x05\x04\xb0\xca\xbc\"\x12\x049\x04<\x06\n9\n\x04\x06\x00\x02\x06\x12\x04@\x02D\x03\x1a+ Get the device-keys for the given DevEUI.\n\n\x0c\n\x05\x06\x00\x02\x06\x01\x12\x03@\x06\r\n\x0c\n\x05\x06\x00\x02\x06\x02\x12\x03@\x0e\"\n\x0c\n\x05\x06\x00\x02\x06\x03\x12\x03@-B\n\r\n\x05\x06\x00\x02\x06\x04\x12\x04A\x04C\x06\n\x11\n\t\x06\x00\x02\x06\x04\xb0\xca\xbc\"\x12\x04A\x04C\x06\n-\n\x04\x06\x00\x02\x07\x12\x04G\x02L\x03\x1a\x1f Update the given device-keys.\n\n\x0c\n\x05\x06\x00\x02\x07\x01\x12\x03G\x06\x10\n\x0c\n\x05\x06\x00\x02\x07\x02\x12\x03G\x11(\n\x0c\n\x05\x06\x00\x02\x07\x03\x12\x03G3H\n\r\n\x05\x06\x00\x02\x07\x04\x12\x04H\x04K\x06\n\x11\n\t\x06\x00\x02\x07\x04\xb0\xca\xbc\"\x12\x04H\x04K\x06\n<\n\x04\x06\x00\x02\x08\x12\x04O\x02S\x03\x1a. Delete the device-keys for the given DevEUI.\n\n\x0c\n\x05\x06\x00\x02\x08\x01\x12\x03O\x06\x10\n\x0c\n\x05\x06\x00\x02\x08\x02\x12\x03O\x11(\n\x0c\n\x05\x06\x00\x02\x08\x03\x12\x03O3H\n\r\n\x05\x06\x00\x02\x08\x04\x12\x04P\x04R\x06\n\x11\n\t\x06\x00\x02\x08\x04\xb0\xca\xbc\"\x12\x04P\x04R\x06\n>\n\x04\x06\x00\x02\t\x12\x04V\x02Z\x03\x1a0 FlushDevNonces flushes the OTAA device nonces.\n\n\x0c\n\x05\x06\x00\x02\t\x01\x12\x03V\x06\x14\n\x0c\n\x05\x06\x00\x02\t\x02\x12\x03V\x15*\n\x0c\n\x05\x06\x00\x02\t\x03\x12\x03V5J\n\r\n\x05\x06\x00\x02\t\x04\x12\x04W\x04Y\x06\n\x11\n\t\x06\x00\x02\t\x04\xb0\xca\xbc\"\x12\x04W\x04Y\x06\ny\n\x04\x06\x00\x02\n\x12\x04^\x02c\x03\x1ak Activate (re)activates the device with the given parameters (for ABP or for\n importing OTAA activations).\n\n\x0c\n\x05\x06\x00\x02\n\x01\x12\x03^\x06\x0e\n\x0c\n\x05\x06\x00\x02\n\x02\x12\x03^\x0f$\n\x0c\n\x05\x06\x00\x02\n\x03\x12\x03^/D\n\r\n\x05\x06\x00\x02\n\x04\x12\x04_\x04b\x06\n\x11\n\t\x06\x00\x02\n\x04\xb0\xca\xbc\"\x12\x04_\x04b\x06\n3\n\x04\x06\x00\x02\x0b\x12\x04f\x02j\x03\x1a% Deactivate de-activates the device.\n\n\x0c\n\x05\x06\x00\x02\x0b\x01\x12\x03f\x06\x10\n\x0c\n\x05\x06\x00\x02\x0b\x02\x12\x03f\x11(\n\x0c\n\x05\x06\x00\x02\x0b\x03\x12\x03f3H\n\r\n\x05\x06\x00\x02\x0b\x04\x12\x04g\x04i\x06\n\x11\n\t\x06\x00\x02\x0b\x04\xb0\xca\xbc\"\x12\x04g\x04i\x06\nb\n\x04\x06\x00\x02\x0c\x12\x04n\x02s\x03\x1aT GetActivation returns the current activation details of the device (OTAA or\n ABP).\n\n\x0c\n\x05\x06\x00\x02\x0c\x01\x12\x03n\x06\x13\n\x0c\n\x05\x06\x00\x02\x0c\x02\x12\x03n\x14.\n\x0c\n\x05\x06\x00\x02\x0c\x03\x12\x03o\x0f*\n\r\n\x05\x06\x00\x02\x0c\x04\x12\x04p\x04r\x06\n\x11\n\t\x06\x00\x02\x0c\x04\xb0\xca\xbc\"\x12\x04p\x04r\x06\n`\n\x04\x06\x00\x02\r\x12\x04w\x02|\x03\x1aR GetRandomDevAddr returns a random DevAddr taking the NwkID prefix into\n account.\n\n\x0c\n\x05\x06\x00\x02\r\x01\x12\x03w\x06\x16\n\x0c\n\x05\x06\x00\x02\r\x02\x12\x03w\x17.\n\x0c\n\x05\x06\x00\x02\r\x03\x12\x03x\x0f\'\n\r\n\x05\x06\x00\x02\r\x04\x12\x04y\x04{\x06\n\x11\n\t\x06\x00\x02\r\x04\xb0\xca\xbc\"\x12\x04y\x04{\x06\n\x8b\x01\n\x04\x06\x00\x02\x0e\x12\x06\x81\x01\x02\x85\x01\x03\x1a{ GetMetrics returns the device metrics.\n Note that this requires a device-profile with codec and measurements\n configured.\n\n\r\n\x05\x06\x00\x02\x0e\x01\x12\x04\x81\x01\x06\x10\n\r\n\x05\x06\x00\x02\x0e\x02\x12\x04\x81\x01\x11(\n\r\n\x05\x06\x00\x02\x0e\x03\x12\x04\x81\x013K\n\x0f\n\x05\x06\x00\x02\x0e\x04\x12\x06\x82\x01\x04\x84\x01\x06\n\x13\n\t\x06\x00\x02\x0e\x04\xb0\xca\xbc\"\x12\x06\x82\x01\x04\x84\x01\x06\nv\n\x04\x06\x00\x02\x0f\x12\x06\x89\x01\x02\x8e\x01\x03\x1af GetLinkMetrics returns the device link metrics.\n This includes uplinks, downlinks, RSSI, SNR, etc...\n\n\r\n\x05\x06\x00\x02\x0f\x01\x12\x04\x89\x01\x06\x14\n\r\n\x05\x06\x00\x02\x0f\x02\x12\x04\x89\x01\x150\n\r\n\x05\x06\x00\x02\x0f\x03\x12\x04\x8a\x01\x0f+\n\x0f\n\x05\x06\x00\x02\x0f\x04\x12\x06\x8b\x01\x04\x8d\x01\x06\n\x13\n\t\x06\x00\x02\x0f\x04\xb0\xca\xbc\"\x12\x06\x8b\x01\x04\x8d\x01\x06\nD\n\x04\x06\x00\x02\x10\x12\x06\x91\x01\x02\x97\x01\x03\x1a4 Enqueue adds the given item to the downlink queue.\n\n\r\n\x05\x06\x00\x02\x10\x01\x12\x04\x91\x01\x06\r\n\r\n\x05\x06\x00\x02\x10\x02\x12\x04\x91\x01\x0e+\n\r\n\x05\x06\x00\x02\x10\x03\x12\x04\x92\x01\x0f-\n\x0f\n\x05\x06\x00\x02\x10\x04\x12\x06\x93\x01\x04\x96\x01\x06\n\x13\n\t\x06\x00\x02\x10\x04\xb0\xca\xbc\"\x12\x06\x93\x01\x04\x96\x01\x06\n?\n\x04\x06\x00\x02\x11\x12\x06\x9a\x01\x02\x9e\x01\x03\x1a/ FlushQueue flushes the downlink device-queue.\n\n\r\n\x05\x06\x00\x02\x11\x01\x12\x04\x9a\x01\x06\x10\n\r\n\x05\x06\x00\x02\x11\x02\x12\x04\x9a\x01\x11(\n\r\n\x05\x06\x00\x02\x11\x03\x12\x04\x9a\x013H\n\x0f\n\x05\x06\x00\x02\x11\x04\x12\x06\x9b\x01\x04\x9d\x01\x06\n\x13\n\t\x06\x00\x02\x11\x04\xb0\xca\xbc\"\x12\x06\x9b\x01\x04\x9d\x01\x06\n=\n\x04\x06\x00\x02\x12\x12\x06\xa1\x01\x02\xa6\x01\x03\x1a- GetQueue returns the downlink device-queue.\n\n\r\n\x05\x06\x00\x02\x12\x01\x12\x04\xa1\x01\x06\x0e\n\r\n\x05\x06\x00\x02\x12\x02\x12\x04\xa1\x01\x0f)\n\r\n\x05\x06\x00\x02\x12\x03\x12\x04\xa2\x01\x0f*\n\x0f\n\x05\x06\x00\x02\x12\x04\x12\x06\xa3\x01\x04\xa5\x01\x06\n\x13\n\t\x06\x00\x02\x12\x04\xb0\xca\xbc\"\x12\x06\xa3\x01\x04\xa5\x01\x06\n\x0c\n\x02\x04\x00\x12\x06\xa9\x01\x00\xd1\x01\x01\n\x0b\n\x03\x04\x00\x01\x12\x04\xa9\x01\x08\x0e\n\x1f\n\x04\x04\x00\x02\x00\x12\x04\xab\x01\x02\x15\x1a\x11 DevEUI (EUI64).\n\n\r\n\x05\x04\x00\x02\x00\x05\x12\x04\xab\x01\x02\x08\n\r\n\x05\x04\x00\x02\x00\x01\x12\x04\xab\x01\t\x10\n\r\n\x05\x04\x00\x02\x00\x03\x12\x04\xab\x01\x13\x14\n\x15\n\x04\x04\x00\x02\x01\x12\x04\xae\x01\x02\x12\x1a\x07 Name.\n\n\r\n\x05\x04\x00\x02\x01\x05\x12\x04\xae\x01\x02\x08\n\r\n\x05\x04\x00\x02\x01\x01\x12\x04\xae\x01\t\r\n\r\n\x05\x04\x00\x02\x01\x03\x12\x04\xae\x01\x10\x11\n\x1c\n\x04\x04\x00\x02\x02\x12\x04\xb1\x01\x02\x19\x1a\x0e Description.\n\n\r\n\x05\x04\x00\x02\x02\x05\x12\x04\xb1\x01\x02\x08\n\r\n\x05\x04\x00\x02\x02\x01\x12\x04\xb1\x01\t\x14\n\r\n\x05\x04\x00\x02\x02\x03\x12\x04\xb1\x01\x17\x18\n&\n\x04\x04\x00\x02\x03\x12\x04\xb4\x01\x02\x1c\x1a\x18 Application ID (UUID).\n\n\r\n\x05\x04\x00\x02\x03\x05\x12\x04\xb4\x01\x02\x08\n\r\n\x05\x04\x00\x02\x03\x01\x12\x04\xb4\x01\t\x17\n\r\n\x05\x04\x00\x02\x03\x03\x12\x04\xb4\x01\x1a\x1b\n)\n\x04\x04\x00\x02\x04\x12\x04\xb7\x01\x02\x1f\x1a\x1b Device-profile ID (UUID).\n\n\r\n\x05\x04\x00\x02\x04\x05\x12\x04\xb7\x01\x02\x08\n\r\n\x05\x04\x00\x02\x04\x01\x12\x04\xb7\x01\t\x1a\n\r\n\x05\x04\x00\x02\x04\x03\x12\x04\xb7\x01\x1d\x1e\nb\n\x04\x04\x00\x02\x05\x12\x04\xbb\x01\x02\x1b\x1aT Skip frame-counter checks (this is insecure, but could be helpful for\n debugging).\n\n\r\n\x05\x04\x00\x02\x05\x05\x12\x04\xbb\x01\x02\x06\n\r\n\x05\x04\x00\x02\x05\x01\x12\x04\xbb\x01\x07\x16\n\r\n\x05\x04\x00\x02\x05\x03\x12\x04\xbb\x01\x19\x1a\n#\n\x04\x04\x00\x02\x06\x12\x04\xbe\x01\x02\x17\x1a\x15 Device is disabled.\n\n\r\n\x05\x04\x00\x02\x06\x05\x12\x04\xbe\x01\x02\x06\n\r\n\x05\x04\x00\x02\x06\x01\x12\x04\xbe\x01\x07\x12\n\r\n\x05\x04\x00\x02\x06\x03\x12\x04\xbe\x01\x15\x16\n\xd9\x01\n\x04\x04\x00\x02\x07\x12\x04\xc4\x01\x02$\x1a\xca\x01 Variables (user defined).\n These variables can be used together with integrations to store tokens /\n secrets that must be configured per device. These variables are not\n exposed in the event payloads.\n\n\r\n\x05\x04\x00\x02\x07\x06\x12\x04\xc4\x01\x02\x15\n\r\n\x05\x04\x00\x02\x07\x01\x12\x04\xc4\x01\x16\x1f\n\r\n\x05\x04\x00\x02\x07\x03\x12\x04\xc4\x01\"#\n\x98\x01\n\x04\x04\x00\x02\x08\x12\x04\xc9\x01\x02\x1f\x1a\x89\x01 Tags (user defined).\n These tags are exposed in the event payloads or to integration. Tags are\n intended for aggregation and filtering.\n\n\r\n\x05\x04\x00\x02\x08\x06\x12\x04\xc9\x01\x02\x15\n\r\n\x05\x04\x00\x02\x08\x01\x12\x04\xc9\x01\x16\x1a\n\r\n\x05\x04\x00\x02\x08\x03\x12\x04\xc9\x01\x1d\x1e\n\xbf\x02\n\x04\x04\x00\x02\t\x12\x04\xd0\x01\x02\x17\x1a\xb0\x02 JoinEUI (optional, EUI64).\n This field will be automatically set / updated on OTAA. However, in some\n cases it must be pre-configured. For example to allow OTAA using a Relay.\n In this case the Relay needs to know the JoinEUI + DevEUI combinations\n of the devices for which it needs to forward uplinks.\n\n\r\n\x05\x04\x00\x02\t\x05\x12\x04\xd0\x01\x02\x08\n\r\n\x05\x04\x00\x02\t\x01\x12\x04\xd0\x01\t\x11\n\r\n\x05\x04\x00\x02\t\x03\x12\x04\xd0\x01\x14\x16\n\x0c\n\x02\x04\x01\x12\x06\xd3\x01\x00\xde\x01\x01\n\x0b\n\x03\x04\x01\x01\x12\x04\xd3\x01\x08\x14\nT\n\x04\x04\x01\x02\x00\x12\x04\xd6\x01\x02\x13\x1aF The device margin status\n -32..32: The demodulation SNR ration in dB\n\n\r\n\x05\x04\x01\x02\x00\x05\x12\x04\xd6\x01\x02\x07\n\r\n\x05\x04\x01\x02\x00\x01\x12\x04\xd6\x01\x08\x0e\n\r\n\x05\x04\x01\x02\x00\x03\x12\x04\xd6\x01\x11\x12\n@\n\x04\x04\x01\x02\x01\x12\x04\xd9\x01\x02!\x1a2 Device is connected to an external power source.\n\n\r\n\x05\x04\x01\x02\x01\x05\x12\x04\xd9\x01\x02\x06\n\r\n\x05\x04\x01\x02\x01\x01\x12\x04\xd9\x01\x07\x1c\n\r\n\x05\x04\x01\x02\x01\x03\x12\x04\xd9\x01\x1f \nb\n\x04\x04\x01\x02\x02\x12\x04\xdd\x01\x02\x1a\x1aT Device battery level as a percentage.\n -1 when the battery level is not available.\n\n\r\n\x05\x04\x01\x02\x02\x05\x12\x04\xdd\x01\x02\x07\n\r\n\x05\x04\x01\x02\x02\x01\x12\x04\xdd\x01\x08\x15\n\r\n\x05\x04\x01\x02\x02\x03\x12\x04\xdd\x01\x18\x19\n\x0c\n\x02\x04\x02\x12\x06\xe0\x01\x00\xfb\x01\x01\n\x0b\n\x03\x04\x02\x01\x12\x04\xe0\x01\x08\x16\n\x1f\n\x04\x04\x02\x02\x00\x12\x04\xe2\x01\x02\x15\x1a\x11 DevEUI (EUI64).\n\n\r\n\x05\x04\x02\x02\x00\x05\x12\x04\xe2\x01\x02\x08\n\r\n\x05\x04\x02\x02\x00\x01\x12\x04\xe2\x01\t\x10\n\r\n\x05\x04\x02\x02\x00\x03\x12\x04\xe2\x01\x13\x14\n%\n\x04\x04\x02\x02\x01\x12\x04\xe5\x01\x02+\x1a\x17 Created at timestamp.\n\n\r\n\x05\x04\x02\x02\x01\x06\x12\x04\xe5\x01\x02\x1b\n\r\n\x05\x04\x02\x02\x01\x01\x12\x04\xe5\x01\x1c&\n\r\n\x05\x04\x02\x02\x01\x03\x12\x04\xe5\x01)*\n&\n\x04\x04\x02\x02\x02\x12\x04\xe8\x01\x02+\x1a\x18 Last update timestamp.\n\n\r\n\x05\x04\x02\x02\x02\x06\x12\x04\xe8\x01\x02\x1b\n\r\n\x05\x04\x02\x02\x02\x01\x12\x04\xe8\x01\x1c&\n\r\n\x05\x04\x02\x02\x02\x03\x12\x04\xe8\x01)*\n\'\n\x04\x04\x02\x02\x03\x12\x04\xeb\x01\x02-\x1a\x19 Last seen at timestamp.\n\n\r\n\x05\x04\x02\x02\x03\x06\x12\x04\xeb\x01\x02\x1b\n\r\n\x05\x04\x02\x02\x03\x01\x12\x04\xeb\x01\x1c(\n\r\n\x05\x04\x02\x02\x03\x03\x12\x04\xeb\x01+,\n\x15\n\x04\x04\x02\x02\x04\x12\x04\xee\x01\x02\x12\x1a\x07 Name.\n\n\r\n\x05\x04\x02\x02\x04\x05\x12\x04\xee\x01\x02\x08\n\r\n\x05\x04\x02\x02\x04\x01\x12\x04\xee\x01\t\r\n\r\n\x05\x04\x02\x02\x04\x03\x12\x04\xee\x01\x10\x11\n\x1c\n\x04\x04\x02\x02\x05\x12\x04\xf1\x01\x02\x19\x1a\x0e Description.\n\n\r\n\x05\x04\x02\x02\x05\x05\x12\x04\xf1\x01\x02\x08\n\r\n\x05\x04\x02\x02\x05\x01\x12\x04\xf1\x01\t\x14\n\r\n\x05\x04\x02\x02\x05\x03\x12\x04\xf1\x01\x17\x18\n)\n\x04\x04\x02\x02\x06\x12\x04\xf4\x01\x02\x1f\x1a\x1b Device-profile ID (UUID).\n\n\r\n\x05\x04\x02\x02\x06\x05\x12\x04\xf4\x01\x02\x08\n\r\n\x05\x04\x02\x02\x06\x01\x12\x04\xf4\x01\t\x1a\n\r\n\x05\x04\x02\x02\x06\x03\x12\x04\xf4\x01\x1d\x1e\n$\n\x04\x04\x02\x02\x07\x12\x04\xf7\x01\x02!\x1a\x16 Device-profile name.\n\n\r\n\x05\x04\x02\x02\x07\x05\x12\x04\xf7\x01\x02\x08\n\r\n\x05\x04\x02\x02\x07\x01\x12\x04\xf7\x01\t\x1c\n\r\n\x05\x04\x02\x02\x07\x03\x12\x04\xf7\x01\x1f \n\x1e\n\x04\x04\x02\x02\x08\x12\x04\xfa\x01\x02!\x1a\x10 Device status.\n\n\r\n\x05\x04\x02\x02\x08\x06\x12\x04\xfa\x01\x02\x0e\n\r\n\x05\x04\x02\x02\x08\x01\x12\x04\xfa\x01\x0f\x1c\n\r\n\x05\x04\x02\x02\x08\x03\x12\x04\xfa\x01\x1f \n\x0c\n\x02\x04\x03\x12\x06\xfd\x01\x00\x88\x02\x01\n\x0b\n\x03\x04\x03\x01\x12\x04\xfd\x01\x08\x12\n\x1f\n\x04\x04\x03\x02\x00\x12\x04\xff\x01\x02\x15\x1a\x11 DevEUI (EUI64).\n\n\r\n\x05\x04\x03\x02\x00\x05\x12\x04\xff\x01\x02\x08\n\r\n\x05\x04\x03\x02\x00\x01\x12\x04\xff\x01\t\x10\n\r\n\x05\x04\x03\x02\x00\x03\x12\x04\xff\x01\x13\x14\nt\n\x04\x04\x03\x02\x01\x12\x04\x83\x02\x02\x15\x1af Network root key (128 bit).\n Note: For LoRaWAN 1.0.x, use this field for the LoRaWAN 1.0.x \'AppKey`!\n\n\r\n\x05\x04\x03\x02\x01\x05\x12\x04\x83\x02\x02\x08\n\r\n\x05\x04\x03\x02\x01\x01\x12\x04\x83\x02\t\x10\n\r\n\x05\x04\x03\x02\x01\x03\x12\x04\x83\x02\x13\x14\nq\n\x04\x04\x03\x02\x02\x12\x04\x87\x02\x02\x15\x1ac Application root key (128 bit).\n Note: This field only needs to be set for LoRaWAN 1.1.x devices!\n\n\r\n\x05\x04\x03\x02\x02\x05\x12\x04\x87\x02\x02\x08\n\r\n\x05\x04\x03\x02\x02\x01\x12\x04\x87\x02\t\x10\n\r\n\x05\x04\x03\x02\x02\x03\x12\x04\x87\x02\x13\x14\n\x0c\n\x02\x04\x04\x12\x06\x8a\x02\x00\x8d\x02\x01\n\x0b\n\x03\x04\x04\x01\x12\x04\x8a\x02\x08\x1b\n\x1e\n\x04\x04\x04\x02\x00\x12\x04\x8c\x02\x02\x14\x1a\x10 Device object.\n\n\r\n\x05\x04\x04\x02\x00\x06\x12\x04\x8c\x02\x02\x08\n\r\n\x05\x04\x04\x02\x00\x01\x12\x04\x8c\x02\t\x0f\n\r\n\x05\x04\x04\x02\x00\x03\x12\x04\x8c\x02\x12\x13\n\x0c\n\x02\x04\x05\x12\x06\x8f\x02\x00\x92\x02\x01\n\x0b\n\x03\x04\x05\x01\x12\x04\x8f\x02\x08\x18\n\x1f\n\x04\x04\x05\x02\x00\x12\x04\x91\x02\x02\x15\x1a\x11 DevEUI (EUI64).\n\n\r\n\x05\x04\x05\x02\x00\x05\x12\x04\x91\x02\x02\x08\n\r\n\x05\x04\x05\x02\x00\x01\x12\x04\x91\x02\t\x10\n\r\n\x05\x04\x05\x02\x00\x03\x12\x04\x91\x02\x13\x14\n\x0c\n\x02\x04\x06\x12\x06\x94\x02\x00\xa6\x02\x01\n\x0b\n\x03\x04\x06\x01\x12\x04\x94\x02\x08\x19\n\x1e\n\x04\x04\x06\x02\x00\x12\x04\x96\x02\x02\x14\x1a\x10 Device object.\n\n\r\n\x05\x04\x06\x02\x00\x06\x12\x04\x96\x02\x02\x08\n\r\n\x05\x04\x06\x02\x00\x01\x12\x04\x96\x02\t\x0f\n\r\n\x05\x04\x06\x02\x00\x03\x12\x04\x96\x02\x12\x13\n%\n\x04\x04\x06\x02\x01\x12\x04\x99\x02\x02+\x1a\x17 Created at timestamp.\n\n\r\n\x05\x04\x06\x02\x01\x06\x12\x04\x99\x02\x02\x1b\n\r\n\x05\x04\x06\x02\x01\x01\x12\x04\x99\x02\x1c&\n\r\n\x05\x04\x06\x02\x01\x03\x12\x04\x99\x02)*\n&\n\x04\x04\x06\x02\x02\x12\x04\x9c\x02\x02+\x1a\x18 Last update timestamp.\n\n\r\n\x05\x04\x06\x02\x02\x06\x12\x04\x9c\x02\x02\x1b\n\r\n\x05\x04\x06\x02\x02\x01\x12\x04\x9c\x02\x1c&\n\r\n\x05\x04\x06\x02\x02\x03\x12\x04\x9c\x02)*\n\'\n\x04\x04\x06\x02\x03\x12\x04\x9f\x02\x02-\x1a\x19 Last seen at timestamp.\n\n\r\n\x05\x04\x06\x02\x03\x06\x12\x04\x9f\x02\x02\x1b\n\r\n\x05\x04\x06\x02\x03\x01\x12\x04\x9f\x02\x1c(\n\r\n\x05\x04\x06\x02\x03\x03\x12\x04\x9f\x02+,\n\x1e\n\x04\x04\x06\x02\x04\x12\x04\xa2\x02\x02!\x1a\x10 Device status.\n\n\r\n\x05\x04\x06\x02\x04\x06\x12\x04\xa2\x02\x02\x0e\n\r\n\x05\x04\x06\x02\x04\x01\x12\x04\xa2\x02\x0f\x1c\n\r\n\x05\x04\x06\x02\x04\x03\x12\x04\xa2\x02\x1f \n%\n\x04\x04\x06\x02\x05\x12\x04\xa5\x02\x02\'\x1a\x17 Enabled device class.\n\n\r\n\x05\x04\x06\x02\x05\x06\x12\x04\xa5\x02\x02\x14\n\r\n\x05\x04\x06\x02\x05\x01\x12\x04\xa5\x02\x15\"\n\r\n\x05\x04\x06\x02\x05\x03\x12\x04\xa5\x02%&\n\x0c\n\x02\x04\x07\x12\x06\xa8\x02\x00\xab\x02\x01\n\x0b\n\x03\x04\x07\x01\x12\x04\xa8\x02\x08\x1b\n\x1e\n\x04\x04\x07\x02\x00\x12\x04\xaa\x02\x02\x14\x1a\x10 Device object.\n\n\r\n\x05\x04\x07\x02\x00\x06\x12\x04\xaa\x02\x02\x08\n\r\n\x05\x04\x07\x02\x00\x01\x12\x04\xaa\x02\t\x0f\n\r\n\x05\x04\x07\x02\x00\x03\x12\x04\xaa\x02\x12\x13\n\x0c\n\x02\x04\x08\x12\x06\xad\x02\x00\xb0\x02\x01\n\x0b\n\x03\x04\x08\x01\x12\x04\xad\x02\x08\x1b\n\x1f\n\x04\x04\x08\x02\x00\x12\x04\xaf\x02\x02\x15\x1a\x11 DevEUI (EUI64).\n\n\r\n\x05\x04\x08\x02\x00\x05\x12\x04\xaf\x02\x02\x08\n\r\n\x05\x04\x08\x02\x00\x01\x12\x04\xaf\x02\t\x10\n\r\n\x05\x04\x08\x02\x00\x03\x12\x04\xaf\x02\x13\x14\n\x0c\n\x02\x04\t\x12\x06\xb2\x02\x00\xc1\x02\x01\n\x0b\n\x03\x04\t\x01\x12\x04\xb2\x02\x08\x1a\nB\n\x04\x04\t\x02\x00\x12\x04\xb4\x02\x02\x13\x1a4 Max number of devices to return in the result-set.\n\n\r\n\x05\x04\t\x02\x00\x05\x12\x04\xb4\x02\x02\x08\n\r\n\x05\x04\t\x02\x00\x01\x12\x04\xb4\x02\t\x0e\n\r\n\x05\x04\t\x02\x00\x03\x12\x04\xb4\x02\x11\x12\n:\n\x04\x04\t\x02\x01\x12\x04\xb7\x02\x02\x14\x1a, Offset in the result-set (for pagination).\n\n\r\n\x05\x04\t\x02\x01\x05\x12\x04\xb7\x02\x02\x08\n\r\n\x05\x04\t\x02\x01\x01\x12\x04\xb7\x02\t\x0f\n\r\n\x05\x04\t\x02\x01\x03\x12\x04\xb7\x02\x12\x13\nS\n\x04\x04\t\x02\x02\x12\x04\xba\x02\x02\x14\x1aE If set, the given string will be used to search on name (optional).\n\n\r\n\x05\x04\t\x02\x02\x05\x12\x04\xba\x02\x02\x08\n\r\n\x05\x04\t\x02\x02\x01\x12\x04\xba\x02\t\x0f\n\r\n\x05\x04\t\x02\x02\x03\x12\x04\xba\x02\x12\x13\n;\n\x04\x04\t\x02\x03\x12\x04\xbd\x02\x02\x1c\x1a- Application ID (UUID) to filter devices on.\n\n\r\n\x05\x04\t\x02\x03\x05\x12\x04\xbd\x02\x02\x08\n\r\n\x05\x04\t\x02\x03\x01\x12\x04\xbd\x02\t\x17\n\r\n\x05\x04\t\x02\x03\x03\x12\x04\xbd\x02\x1a\x1b\n>\n\x04\x04\t\x02\x04\x12\x04\xc0\x02\x02 \x1a0 Multicst-group ID (UUID) to filter devices on.\n\n\r\n\x05\x04\t\x02\x04\x05\x12\x04\xc0\x02\x02\x08\n\r\n\x05\x04\t\x02\x04\x01\x12\x04\xc0\x02\t\x1b\n\r\n\x05\x04\t\x02\x04\x03\x12\x04\xc0\x02\x1e\x1f\n\x0c\n\x02\x04\n\x12\x06\xc3\x02\x00\xc9\x02\x01\n\x0b\n\x03\x04\n\x01\x12\x04\xc3\x02\x08\x1b\n(\n\x04\x04\n\x02\x00\x12\x04\xc5\x02\x02\x19\x1a\x1a Total number of devices.\n\n\r\n\x05\x04\n\x02\x00\x05\x12\x04\xc5\x02\x02\x08\n\r\n\x05\x04\n\x02\x00\x01\x12\x04\xc5\x02\t\x14\n\r\n\x05\x04\n\x02\x00\x03\x12\x04\xc5\x02\x17\x18\n\x1b\n\x04\x04\n\x02\x01\x12\x04\xc8\x02\x02%\x1a\r Result-set.\n\n\r\n\x05\x04\n\x02\x01\x04\x12\x04\xc8\x02\x02\n\n\r\n\x05\x04\n\x02\x01\x06\x12\x04\xc8\x02\x0b\x19\n\r\n\x05\x04\n\x02\x01\x01\x12\x04\xc8\x02\x1a \n\r\n\x05\x04\n\x02\x01\x03\x12\x04\xc8\x02#$\n\x0c\n\x02\x04\x0b\x12\x06\xcb\x02\x00\xce\x02\x01\n\x0b\n\x03\x04\x0b\x01\x12\x04\xcb\x02\x08\x1f\n#\n\x04\x04\x0b\x02\x00\x12\x04\xcd\x02\x02\x1d\x1a\x15 Device-keys object.\n\n\r\n\x05\x04\x0b\x02\x00\x06\x12\x04\xcd\x02\x02\x0c\n\r\n\x05\x04\x0b\x02\x00\x01\x12\x04\xcd\x02\r\x18\n\r\n\x05\x04\x0b\x02\x00\x03\x12\x04\xcd\x02\x1b\x1c\n\x0c\n\x02\x04\x0c\x12\x06\xd0\x02\x00\xd3\x02\x01\n\x0b\n\x03\x04\x0c\x01\x12\x04\xd0\x02\x08\x1c\n\x1f\n\x04\x04\x0c\x02\x00\x12\x04\xd2\x02\x02\x15\x1a\x11 DevEUI (EUI64).\n\n\r\n\x05\x04\x0c\x02\x00\x05\x12\x04\xd2\x02\x02\x08\n\r\n\x05\x04\x0c\x02\x00\x01\x12\x04\xd2\x02\t\x10\n\r\n\x05\x04\x0c\x02\x00\x03\x12\x04\xd2\x02\x13\x14\n\x0c\n\x02\x04\r\x12\x06\xd5\x02\x00\xde\x02\x01\n\x0b\n\x03\x04\r\x01\x12\x04\xd5\x02\x08\x1d\n#\n\x04\x04\r\x02\x00\x12\x04\xd7\x02\x02\x1d\x1a\x15 Device-keys object.\n\n\r\n\x05\x04\r\x02\x00\x06\x12\x04\xd7\x02\x02\x0c\n\r\n\x05\x04\r\x02\x00\x01\x12\x04\xd7\x02\r\x18\n\r\n\x05\x04\r\x02\x00\x03\x12\x04\xd7\x02\x1b\x1c\n%\n\x04\x04\r\x02\x01\x12\x04\xda\x02\x02+\x1a\x17 Created at timestamp.\n\n\r\n\x05\x04\r\x02\x01\x06\x12\x04\xda\x02\x02\x1b\n\r\n\x05\x04\r\x02\x01\x01\x12\x04\xda\x02\x1c&\n\r\n\x05\x04\r\x02\x01\x03\x12\x04\xda\x02)*\n&\n\x04\x04\r\x02\x02\x12\x04\xdd\x02\x02+\x1a\x18 Last update timestamp.\n\n\r\n\x05\x04\r\x02\x02\x06\x12\x04\xdd\x02\x02\x1b\n\r\n\x05\x04\r\x02\x02\x01\x12\x04\xdd\x02\x1c&\n\r\n\x05\x04\r\x02\x02\x03\x12\x04\xdd\x02)*\n\x0c\n\x02\x04\x0e\x12\x06\xe0\x02\x00\xe3\x02\x01\n\x0b\n\x03\x04\x0e\x01\x12\x04\xe0\x02\x08\x1f\n#\n\x04\x04\x0e\x02\x00\x12\x04\xe2\x02\x02\x1d\x1a\x15 Device-keys object.\n\n\r\n\x05\x04\x0e\x02\x00\x06\x12\x04\xe2\x02\x02\x0c\n\r\n\x05\x04\x0e\x02\x00\x01\x12\x04\xe2\x02\r\x18\n\r\n\x05\x04\x0e\x02\x00\x03\x12\x04\xe2\x02\x1b\x1c\n\x0c\n\x02\x04\x0f\x12\x06\xe5\x02\x00\xe8\x02\x01\n\x0b\n\x03\x04\x0f\x01\x12\x04\xe5\x02\x08\x1f\n\x1f\n\x04\x04\x0f\x02\x00\x12\x04\xe7\x02\x02\x15\x1a\x11 DevEUI (EUI64).\n\n\r\n\x05\x04\x0f\x02\x00\x05\x12\x04\xe7\x02\x02\x08\n\r\n\x05\x04\x0f\x02\x00\x01\x12\x04\xe7\x02\t\x10\n\r\n\x05\x04\x0f\x02\x00\x03\x12\x04\xe7\x02\x13\x14\n\x0c\n\x02\x04\x10\x12\x06\xea\x02\x00\x85\x03\x01\n\x0b\n\x03\x04\x10\x01\x12\x04\xea\x02\x08\x18\n#\n\x04\x04\x10\x02\x00\x12\x04\xec\x02\x02\x15\x1a\x15 Device EUI (EUI64).\n\n\r\n\x05\x04\x10\x02\x00\x05\x12\x04\xec\x02\x02\x08\n\r\n\x05\x04\x10\x02\x00\x01\x12\x04\xec\x02\t\x10\n\r\n\x05\x04\x10\x02\x00\x03\x12\x04\xec\x02\x13\x14\n-\n\x04\x04\x10\x02\x01\x12\x04\xef\x02\x02\x16\x1a\x1f Device address (HEX encoded).\n\n\r\n\x05\x04\x10\x02\x01\x05\x12\x04\xef\x02\x02\x08\n\r\n\x05\x04\x10\x02\x01\x01\x12\x04\xef\x02\t\x11\n\r\n\x05\x04\x10\x02\x01\x03\x12\x04\xef\x02\x14\x15\n6\n\x04\x04\x10\x02\x02\x12\x04\xf2\x02\x02\x17\x1a( Application session key (HEX encoded).\n\n\r\n\x05\x04\x10\x02\x02\x05\x12\x04\xf2\x02\x02\x08\n\r\n\x05\x04\x10\x02\x02\x01\x12\x04\xf2\x02\t\x12\n\r\n\x05\x04\x10\x02\x02\x03\x12\x04\xf2\x02\x15\x16\n=\n\x04\x04\x10\x02\x03\x12\x04\xf5\x02\x02\x1b\x1a/ Network session encryption key (HEX encoded).\n\n\r\n\x05\x04\x10\x02\x03\x05\x12\x04\xf5\x02\x02\x08\n\r\n\x05\x04\x10\x02\x03\x01\x12\x04\xf5\x02\t\x16\n\r\n\x05\x04\x10\x02\x03\x03\x12\x04\xf5\x02\x19\x1a\nD\n\x04\x04\x10\x02\x04\x12\x04\xf8\x02\x02\x1d\x1a6 Serving network session integrity key (HEX encoded).\n\n\r\n\x05\x04\x10\x02\x04\x05\x12\x04\xf8\x02\x02\x08\n\r\n\x05\x04\x10\x02\x04\x01\x12\x04\xf8\x02\t\x18\n\r\n\x05\x04\x10\x02\x04\x03\x12\x04\xf8\x02\x1b\x1c\nG\n\x04\x04\x10\x02\x05\x12\x04\xfb\x02\x02\x1d\x1a9 Forwarding network session integrity key (HEX encoded).\n\n\r\n\x05\x04\x10\x02\x05\x05\x12\x04\xfb\x02\x02\x08\n\r\n\x05\x04\x10\x02\x05\x01\x12\x04\xfb\x02\t\x18\n\r\n\x05\x04\x10\x02\x05\x03\x12\x04\xfb\x02\x1b\x1c\n%\n\x04\x04\x10\x02\x06\x12\x04\xfe\x02\x02\x16\x1a\x17 Uplink frame-counter.\n\n\r\n\x05\x04\x10\x02\x06\x05\x12\x04\xfe\x02\x02\x08\n\r\n\x05\x04\x10\x02\x06\x01\x12\x04\xfe\x02\t\x11\n\r\n\x05\x04\x10\x02\x06\x03\x12\x04\xfe\x02\x14\x15\n/\n\x04\x04\x10\x02\x07\x12\x04\x81\x03\x02\x1a\x1a! Downlink network frame-counter.\n\n\r\n\x05\x04\x10\x02\x07\x05\x12\x04\x81\x03\x02\x08\n\r\n\x05\x04\x10\x02\x07\x01\x12\x04\x81\x03\t\x15\n\r\n\x05\x04\x10\x02\x07\x03\x12\x04\x81\x03\x18\x19\n3\n\x04\x04\x10\x02\x08\x12\x04\x84\x03\x02\x1b\x1a% Downlink application frame-counter.\n\n\r\n\x05\x04\x10\x02\x08\x05\x12\x04\x84\x03\x02\x08\n\r\n\x05\x04\x10\x02\x08\x01\x12\x04\x84\x03\t\x15\n\r\n\x05\x04\x10\x02\x08\x03\x12\x04\x84\x03\x18\x1a\n\x0c\n\x02\x04\x11\x12\x06\x87\x03\x00\x8a\x03\x01\n\x0b\n\x03\x04\x11\x01\x12\x04\x87\x03\x08\x1d\n)\n\x04\x04\x11\x02\x00\x12\x04\x89\x03\x02)\x1a\x1b Device activation object.\n\n\r\n\x05\x04\x11\x02\x00\x06\x12\x04\x89\x03\x02\x12\n\r\n\x05\x04\x11\x02\x00\x01\x12\x04\x89\x03\x13$\n\r\n\x05\x04\x11\x02\x00\x03\x12\x04\x89\x03\'(\n\x0c\n\x02\x04\x12\x12\x06\x8c\x03\x00\x8f\x03\x01\n\x0b\n\x03\x04\x12\x01\x12\x04\x8c\x03\x08\x1f\n\x1f\n\x04\x04\x12\x02\x00\x12\x04\x8e\x03\x02\x15\x1a\x11 DevEUI (EUI64).\n\n\r\n\x05\x04\x12\x02\x00\x05\x12\x04\x8e\x03\x02\x08\n\r\n\x05\x04\x12\x02\x00\x01\x12\x04\x8e\x03\t\x10\n\r\n\x05\x04\x12\x02\x00\x03\x12\x04\x8e\x03\x13\x14\n\x0c\n\x02\x04\x13\x12\x06\x91\x03\x00\x94\x03\x01\n\x0b\n\x03\x04\x13\x01\x12\x04\x91\x03\x08\"\n\x1f\n\x04\x04\x13\x02\x00\x12\x04\x93\x03\x02\x15\x1a\x11 DevEUI (EUI64).\n\n\r\n\x05\x04\x13\x02\x00\x05\x12\x04\x93\x03\x02\x08\n\r\n\x05\x04\x13\x02\x00\x01\x12\x04\x93\x03\t\x10\n\r\n\x05\x04\x13\x02\x00\x03\x12\x04\x93\x03\x13\x14\n\x0c\n\x02\x04\x14\x12\x06\x96\x03\x00\x99\x03\x01\n\x0b\n\x03\x04\x14\x01\x12\x04\x96\x03\x08#\n)\n\x04\x04\x14\x02\x00\x12\x04\x98\x03\x02)\x1a\x1b Device activation object.\n\n\r\n\x05\x04\x14\x02\x00\x06\x12\x04\x98\x03\x02\x12\n\r\n\x05\x04\x14\x02\x00\x01\x12\x04\x98\x03\x13$\n\r\n\x05\x04\x14\x02\x00\x03\x12\x04\x98\x03\'(\n\x0c\n\x02\x04\x15\x12\x06\x9b\x03\x00\x9e\x03\x01\n\x0b\n\x03\x04\x15\x01\x12\x04\x9b\x03\x08\x1f\n\x1f\n\x04\x04\x15\x02\x00\x12\x04\x9d\x03\x02\x15\x1a\x11 DevEUI (EUI64).\n\n\r\n\x05\x04\x15\x02\x00\x05\x12\x04\x9d\x03\x02\x08\n\r\n\x05\x04\x15\x02\x00\x01\x12\x04\x9d\x03\t\x10\n\r\n\x05\x04\x15\x02\x00\x03\x12\x04\x9d\x03\x13\x14\n\x0c\n\x02\x04\x16\x12\x06\xa0\x03\x00\xa3\x03\x01\n\x0b\n\x03\x04\x16\x01\x12\x04\xa0\x03\x08 \n\x18\n\x04\x04\x16\x02\x00\x12\x04\xa2\x03\x02\x16\x1a\n DevAddr.\n\n\r\n\x05\x04\x16\x02\x00\x05\x12\x04\xa2\x03\x02\x08\n\r\n\x05\x04\x16\x02\x00\x01\x12\x04\xa2\x03\t\x11\n\r\n\x05\x04\x16\x02\x00\x03\x12\x04\xa2\x03\x14\x15\n\x0c\n\x02\x04\x17\x12\x06\xa5\x03\x00\xb1\x03\x01\n\x0b\n\x03\x04\x17\x01\x12\x04\xa5\x03\x08\x1f\n\x1f\n\x04\x04\x17\x02\x00\x12\x04\xa7\x03\x02\x15\x1a\x11 DevEUI (EUI64).\n\n\r\n\x05\x04\x17\x02\x00\x05\x12\x04\xa7\x03\x02\x08\n\r\n\x05\x04\x17\x02\x00\x01\x12\x04\xa7\x03\t\x10\n\r\n\x05\x04\x17\x02\x00\x03\x12\x04\xa7\x03\x13\x14\n)\n\x04\x04\x17\x02\x01\x12\x04\xaa\x03\x02&\x1a\x1b Interval start timestamp.\n\n\r\n\x05\x04\x17\x02\x01\x06\x12\x04\xaa\x03\x02\x1b\n\r\n\x05\x04\x17\x02\x01\x01\x12\x04\xaa\x03\x1c!\n\r\n\x05\x04\x17\x02\x01\x03\x12\x04\xaa\x03$%\n\'\n\x04\x04\x17\x02\x02\x12\x04\xad\x03\x02$\x1a\x19 Interval end timestamp.\n\n\r\n\x05\x04\x17\x02\x02\x06\x12\x04\xad\x03\x02\x1b\n\r\n\x05\x04\x17\x02\x02\x01\x12\x04\xad\x03\x1c\x1f\n\r\n\x05\x04\x17\x02\x02\x03\x12\x04\xad\x03\"#\n\x1c\n\x04\x04\x17\x02\x03\x12\x04\xb0\x03\x02%\x1a\x0e Aggregation.\n\n\r\n\x05\x04\x17\x02\x03\x06\x12\x04\xb0\x03\x02\x14\n\r\n\x05\x04\x17\x02\x03\x01\x12\x04\xb0\x03\x15 \n\r\n\x05\x04\x17\x02\x03\x03\x12\x04\xb0\x03#$\n\x0c\n\x02\x04\x18\x12\x06\xb3\x03\x00\xb7\x03\x01\n\x0b\n\x03\x04\x18\x01\x12\x04\xb3\x03\x08 \n\x0c\n\x04\x04\x18\x02\x00\x12\x04\xb4\x03\x02)\n\r\n\x05\x04\x18\x02\x00\x06\x12\x04\xb4\x03\x02\x1c\n\r\n\x05\x04\x18\x02\x00\x01\x12\x04\xb4\x03\x1d$\n\r\n\x05\x04\x18\x02\x00\x03\x12\x04\xb4\x03\'(\n\x0c\n\x04\x04\x18\x02\x01\x12\x04\xb6\x03\x02&\n\r\n\x05\x04\x18\x02\x01\x06\x12\x04\xb6\x03\x02\x1a\n\r\n\x05\x04\x18\x02\x01\x01\x12\x04\xb6\x03\x1b!\n\r\n\x05\x04\x18\x02\x01\x03\x12\x04\xb6\x03$%\n\x0c\n\x02\x04\x19\x12\x06\xb9\x03\x00\xbf\x03\x01\n\x0b\n\x03\x04\x19\x01\x12\x04\xb9\x03\x08\x13\n\x15\n\x04\x04\x19\x02\x00\x12\x04\xbb\x03\x02\x12\x1a\x07 Name.\n\n\r\n\x05\x04\x19\x02\x00\x05\x12\x04\xbb\x03\x02\x08\n\r\n\x05\x04\x19\x02\x00\x01\x12\x04\xbb\x03\t\r\n\r\n\x05\x04\x19\x02\x00\x03\x12\x04\xbb\x03\x10\x11\n\x16\n\x04\x04\x19\x02\x01\x12\x04\xbe\x03\x02\x13\x1a\x08 Value.\n\n\r\n\x05\x04\x19\x02\x01\x05\x12\x04\xbe\x03\x02\x08\n\r\n\x05\x04\x19\x02\x01\x01\x12\x04\xbe\x03\t\x0e\n\r\n\x05\x04\x19\x02\x01\x03\x12\x04\xbe\x03\x11\x12\n\x0c\n\x02\x04\x1a\x12\x06\xc1\x03\x00\xcd\x03\x01\n\x0b\n\x03\x04\x1a\x01\x12\x04\xc1\x03\x08#\n\x1f\n\x04\x04\x1a\x02\x00\x12\x04\xc3\x03\x02\x15\x1a\x11 DevEUI (EUI64).\n\n\r\n\x05\x04\x1a\x02\x00\x05\x12\x04\xc3\x03\x02\x08\n\r\n\x05\x04\x1a\x02\x00\x01\x12\x04\xc3\x03\t\x10\n\r\n\x05\x04\x1a\x02\x00\x03\x12\x04\xc3\x03\x13\x14\n)\n\x04\x04\x1a\x02\x01\x12\x04\xc6\x03\x02&\x1a\x1b Interval start timestamp.\n\n\r\n\x05\x04\x1a\x02\x01\x06\x12\x04\xc6\x03\x02\x1b\n\r\n\x05\x04\x1a\x02\x01\x01\x12\x04\xc6\x03\x1c!\n\r\n\x05\x04\x1a\x02\x01\x03\x12\x04\xc6\x03$%\n\'\n\x04\x04\x1a\x02\x02\x12\x04\xc9\x03\x02$\x1a\x19 Interval end timestamp.\n\n\r\n\x05\x04\x1a\x02\x02\x06\x12\x04\xc9\x03\x02\x1b\n\r\n\x05\x04\x1a\x02\x02\x01\x12\x04\xc9\x03\x1c\x1f\n\r\n\x05\x04\x1a\x02\x02\x03\x12\x04\xc9\x03\"#\n\x1c\n\x04\x04\x1a\x02\x03\x12\x04\xcc\x03\x02%\x1a\x0e Aggregation.\n\n\r\n\x05\x04\x1a\x02\x03\x06\x12\x04\xcc\x03\x02\x14\n\r\n\x05\x04\x1a\x02\x03\x01\x12\x04\xcc\x03\x15 \n\r\n\x05\x04\x1a\x02\x03\x03\x12\x04\xcc\x03#$\n\x0c\n\x02\x04\x1b\x12\x06\xcf\x03\x00\xe1\x03\x01\n\x0b\n\x03\x04\x1b\x01\x12\x04\xcf\x03\x08$\n1\n\x04\x04\x1b\x02\x00\x12\x04\xd1\x03\x02\x1f\x1a# Packets received from the device.\n\n\r\n\x05\x04\x1b\x02\x00\x06\x12\x04\xd1\x03\x02\x0f\n\r\n\x05\x04\x1b\x02\x00\x01\x12\x04\xd1\x03\x10\x1a\n\r\n\x05\x04\x1b\x02\x00\x03\x12\x04\xd1\x03\x1d\x1e\n5\n\x04\x04\x1b\x02\x01\x12\x04\xd4\x03\x02\x1c\x1a\' RSSI (as reported by the gateway(s)).\n\n\r\n\x05\x04\x1b\x02\x01\x06\x12\x04\xd4\x03\x02\x0f\n\r\n\x05\x04\x1b\x02\x01\x01\x12\x04\xd4\x03\x10\x17\n\r\n\x05\x04\x1b\x02\x01\x03\x12\x04\xd4\x03\x1a\x1b\n4\n\x04\x04\x1b\x02\x02\x12\x04\xd7\x03\x02\x1b\x1a& SNR (as reported by the gateway(s)).\n\n\r\n\x05\x04\x1b\x02\x02\x06\x12\x04\xd7\x03\x02\x0f\n\r\n\x05\x04\x1b\x02\x02\x01\x12\x04\xd7\x03\x10\x16\n\r\n\x05\x04\x1b\x02\x02\x03\x12\x04\xd7\x03\x19\x1a\n.\n\x04\x04\x1b\x02\x03\x12\x04\xda\x03\x02(\x1a  Packets received by frequency.\n\n\r\n\x05\x04\x1b\x02\x03\x06\x12\x04\xda\x03\x02\x0f\n\r\n\x05\x04\x1b\x02\x03\x01\x12\x04\xda\x03\x10#\n\r\n\x05\x04\x1b\x02\x03\x03\x12\x04\xda\x03&\'\n\'\n\x04\x04\x1b\x02\x04\x12\x04\xdd\x03\x02&\x1a\x19 Packets received by DR.\n\n\r\n\x05\x04\x1b\x02\x04\x06\x12\x04\xdd\x03\x02\x0f\n\r\n\x05\x04\x1b\x02\x04\x01\x12\x04\xdd\x03\x10!\n\r\n\x05\x04\x1b\x02\x04\x03\x12\x04\xdd\x03$%\n\x17\n\x04\x04\x1b\x02\x05\x12\x04\xe0\x03\x02\x1b\x1a\t Errors.\n\n\r\n\x05\x04\x1b\x02\x05\x06\x12\x04\xe0\x03\x02\x0f\n\r\n\x05\x04\x1b\x02\x05\x01\x12\x04\xe0\x03\x10\x16\n\r\n\x05\x04\x1b\x02\x05\x03\x12\x04\xe0\x03\x19\x1a\n\x0c\n\x02\x04\x1c\x12\x06\xe3\x03\x00\x80\x04\x01\n\x0b\n\x03\x04\x1c\x01\x12\x04\xe3\x03\x08\x17\nG\n\x04\x04\x1c\x02\x00\x12\x04\xe6\x03\x02\x10\x1a9 ID (UUID).\n This is automatically generated on enqueue.\n\n\r\n\x05\x04\x1c\x02\x00\x05\x12\x04\xe6\x03\x02\x08\n\r\n\x05\x04\x1c\x02\x00\x01\x12\x04\xe6\x03\t\x0b\n\r\n\x05\x04\x1c\x02\x00\x03\x12\x04\xe6\x03\x0e\x0f\n#\n\x04\x04\x1c\x02\x01\x12\x04\xe9\x03\x02\x15\x1a\x15 Device EUI (EUI64).\n\n\r\n\x05\x04\x1c\x02\x01\x05\x12\x04\xe9\x03\x02\x08\n\r\n\x05\x04\x1c\x02\x01\x01\x12\x04\xe9\x03\t\x10\n\r\n\x05\x04\x1c\x02\x01\x03\x12\x04\xe9\x03\x13\x14\n\x1a\n\x04\x04\x1c\x02\x02\x12\x04\xec\x03\x02\x15\x1a\x0c Confirmed.\n\n\r\n\x05\x04\x1c\x02\x02\x05\x12\x04\xec\x03\x02\x06\n\r\n\x05\x04\x1c\x02\x02\x01\x12\x04\xec\x03\x07\x10\n\r\n\x05\x04\x1c\x02\x02\x03\x12\x04\xec\x03\x13\x14\n$\n\x04\x04\x1c\x02\x03\x12\x04\xef\x03\x02\x14\x1a\x16 FPort (must be > 0).\n\n\r\n\x05\x04\x1c\x02\x03\x05\x12\x04\xef\x03\x02\x08\n\r\n\x05\x04\x1c\x02\x03\x01\x12\x04\xef\x03\t\x0f\n\r\n\x05\x04\x1c\x02\x03\x03\x12\x04\xef\x03\x12\x13\nU\n\x04\x04\x1c\x02\x04\x12\x04\xf3\x03\x02\x11\x1aG Data.\n Or use the json_object field when a codec has been configured.\n\n\r\n\x05\x04\x1c\x02\x04\x05\x12\x04\xf3\x03\x02\x07\n\r\n\x05\x04\x1c\x02\x04\x01\x12\x04\xf3\x03\x08\x0c\n\r\n\x05\x04\x1c\x02\x04\x03\x12\x04\xf3\x03\x0f\x10\ne\n\x04\x04\x1c\x02\x05\x12\x04\xf7\x03\x02$\x1aW Only use this when a codec has been configured that can encode this\n object to bytes.\n\n\r\n\x05\x04\x1c\x02\x05\x06\x12\x04\xf7\x03\x02\x18\n\r\n\x05\x04\x1c\x02\x05\x01\x12\x04\xf7\x03\x19\x1f\n\r\n\x05\x04\x1c\x02\x05\x03\x12\x04\xf7\x03\"#\nN\n\x04\x04\x1c\x02\x06\x12\x04\xfb\x03\x02\x16\x1a@ Is pending.\n This is set to true when the downlink is pending.\n\n\r\n\x05\x04\x1c\x02\x06\x05\x12\x04\xfb\x03\x02\x06\n\r\n\x05\x04\x1c\x02\x06\x01\x12\x04\xfb\x03\x07\x11\n\r\n\x05\x04\x1c\x02\x06\x03\x12\x04\xfb\x03\x14\x15\n`\n\x04\x04\x1c\x02\x07\x12\x04\xff\x03\x02\x18\x1aR Downlink frame-counter.\n This is set when the payload has been sent as downlink.\n\n\r\n\x05\x04\x1c\x02\x07\x05\x12\x04\xff\x03\x02\x08\n\r\n\x05\x04\x1c\x02\x07\x01\x12\x04\xff\x03\t\x13\n\r\n\x05\x04\x1c\x02\x07\x03\x12\x04\xff\x03\x16\x17\n\n\n\x02\x04\x1d\x12\x04\x82\x04\x00I\n\x0b\n\x03\x04\x1d\x01\x12\x04\x82\x04\x08%\n\x0c\n\x04\x04\x1d\x02\x00\x12\x04\x82\x04(G\n\r\n\x05\x04\x1d\x02\x00\x06\x12\x04\x82\x04(7\n\r\n\x05\x04\x1d\x02\x00\x01\x12\x04\x82\x048B\n\r\n\x05\x04\x1d\x02\x00\x03\x12\x04\x82\x04EF\n\x0c\n\x02\x04\x1e\x12\x06\x84\x04\x00\x87\x04\x01\n\x0b\n\x03\x04\x1e\x01\x12\x04\x84\x04\x08&\n\x1a\n\x04\x04\x1e\x02\x00\x12\x04\x86\x04\x02\x10\x1a\x0c ID (UUID).\n\n\r\n\x05\x04\x1e\x02\x00\x05\x12\x04\x86\x04\x02\x08\n\r\n\x05\x04\x1e\x02\x00\x01\x12\x04\x86\x04\t\x0b\n\r\n\x05\x04\x1e\x02\x00\x03\x12\x04\x86\x04\x0e\x0f\n\x0c\n\x02\x04\x1f\x12\x06\x89\x04\x00\x8c\x04\x01\n\x0b\n\x03\x04\x1f\x01\x12\x04\x89\x04\x08\x1f\n#\n\x04\x04\x1f\x02\x00\x12\x04\x8b\x04\x02\x15\x1a\x15 Device EUI (EUI64).\n\n\r\n\x05\x04\x1f\x02\x00\x05\x12\x04\x8b\x04\x02\x08\n\r\n\x05\x04\x1f\x02\x00\x01\x12\x04\x8b\x04\t\x10\n\r\n\x05\x04\x1f\x02\x00\x03\x12\x04\x8b\x04\x13\x14\n\x0c\n\x02\x04 \x12\x06\x8e\x04\x00\x94\x04\x01\n\x0b\n\x03\x04 \x01\x12\x04\x8e\x04\x08\"\n#\n\x04\x04 \x02\x00\x12\x04\x90\x04\x02\x15\x1a\x15 Device EUI (EUI64).\n\n\r\n\x05\x04 \x02\x00\x05\x12\x04\x90\x04\x02\x08\n\r\n\x05\x04 \x02\x00\x01\x12\x04\x90\x04\t\x10\n\r\n\x05\x04 \x02\x00\x03\x12\x04\x90\x04\x13\x14\n:\n\x04\x04 \x02\x01\x12\x04\x93\x04\x02\x16\x1a, Return only the count, not the result-set.\n\n\r\n\x05\x04 \x02\x01\x05\x12\x04\x93\x04\x02\x06\n\r\n\x05\x04 \x02\x01\x01\x12\x04\x93\x04\x07\x11\n\r\n\x05\x04 \x02\x01\x03\x12\x04\x93\x04\x14\x15\n\x0c\n\x02\x04!\x12\x06\x96\x04\x00\x9c\x04\x01\n\x0b\n\x03\x04!\x01\x12\x04\x96\x04\x08#\n,\n\x04\x04!\x02\x00\x12\x04\x98\x04\x02\x19\x1a\x1e Total number of queue items.\n\n\r\n\x05\x04!\x02\x00\x05\x12\x04\x98\x04\x02\x08\n\r\n\x05\x04!\x02\x00\x01\x12\x04\x98\x04\t\x14\n\r\n\x05\x04!\x02\x00\x03\x12\x04\x98\x04\x17\x18\n\x1b\n\x04\x04!\x02\x01\x12\x04\x9b\x04\x02&\x1a\r Result-set.\n\n\r\n\x05\x04!\x02\x01\x04\x12\x04\x9b\x04\x02\n\n\r\n\x05\x04!\x02\x01\x06\x12\x04\x9b\x04\x0b\x1a\n\r\n\x05\x04!\x02\x01\x01\x12\x04\x9b\x04\x1b!\n\r\n\x05\x04!\x02\x01\x03\x12\x04\x9b\x04$%\n\x0c\n\x02\x04\"\x12\x06\x9e\x04\x00\xa1\x04\x01\n\x0b\n\x03\x04\"\x01\x12\x04\x9e\x04\x08\x1d\n#\n\x04\x04\"\x02\x00\x12\x04\xa0\x04\x02\x15\x1a\x15 Device EUI (EUI64).\n\n\r\n\x05\x04\"\x02\x00\x05\x12\x04\xa0\x04\x02\x08\n\r\n\x05\x04\"\x02\x00\x01\x12\x04\xa0\x04\t\x10\n\r\n\x05\x04\"\x02\x00\x03\x12\x04\xa0\x04\x13\x14b\x06proto3\n\xe8L\n\x11api/gateway.proto\x12\x03api\x1a\x1cgoogle/api/annotations.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a\x13common/common.proto\"\xaa\x03\n\x07Gateway\x12\x1d\n\ngateway_id\x18\x01 \x01(\tR\tgatewayId\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x12 \n\x0bdescription\x18\x03 \x01(\tR\x0bdescription\x12,\n\x08location\x18\x04 \x01(\x0b2\x10.common.LocationR\x08location\x12\x1b\n\ttenant_id\x18\x05 \x01(\tR\x08tenantId\x12*\n\x04tags\x18\x06 \x03(\x0b2\x16.api.Gateway.TagsEntryR\x04tags\x126\n\x08metadata\x18\x07 \x03(\x0b2\x1a.api.Gateway.MetadataEntryR\x08metadata\x12%\n\x0estats_interval\x18\x08 \x01(\rR\rstatsInterval\x1a7\n\tTagsEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x028\x01\x1a;\n\rMetadataEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x028\x01\"\x93\x04\n\x0fGatewayListItem\x12\x1b\n\ttenant_id\x18\x01 \x01(\tR\x08tenantId\x12\x1d\n\ngateway_id\x18\x02 \x01(\tR\tgatewayId\x12\x12\n\x04name\x18\x03 \x01(\tR\x04name\x12 \n\x0bdescription\x18\x04 \x01(\tR\x0bdescription\x12,\n\x08location\x18\x05 \x01(\x0b2\x10.common.LocationR\x08location\x12D\n\nproperties\x18\x06 \x03(\x0b2$.api.GatewayListItem.PropertiesEntryR\nproperties\x129\n\ncreated_at\x18\x07 \x01(\x0b2\x1a.google.protobuf.TimestampR\tcreatedAt\x129\n\nupdated_at\x18\x08 \x01(\x0b2\x1a.google.protobuf.TimestampR\tupdatedAt\x12<\n\x0clast_seen_at\x18\t \x01(\x0b2\x1a.google.protobuf.TimestampR\nlastSeenAt\x12\'\n\x05state\x18\n \x01(\x0e2\x11.api.GatewayStateR\x05state\x1a=\n\x0fPropertiesEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x028\x01\">\n\x14CreateGatewayRequest\x12&\n\x07gateway\x18\x01 \x01(\x0b2\x0c.api.GatewayR\x07gateway\"2\n\x11GetGatewayRequest\x12\x1d\n\ngateway_id\x18\x01 \x01(\tR\tgatewayId\"\xf0\x01\n\x12GetGatewayResponse\x12&\n\x07gateway\x18\x01 \x01(\x0b2\x0c.api.GatewayR\x07gateway\x129\n\ncreated_at\x18\x02 \x01(\x0b2\x1a.google.protobuf.TimestampR\tcreatedAt\x129\n\nupdated_at\x18\x03 \x01(\x0b2\x1a.google.protobuf.TimestampR\tupdatedAt\x12<\n\x0clast_seen_at\x18\x04 \x01(\x0b2\x1a.google.protobuf.TimestampR\nlastSeenAt\">\n\x14UpdateGatewayRequest\x12&\n\x07gateway\x18\x01 \x01(\x0b2\x0c.api.GatewayR\x07gateway\"5\n\x14DeleteGatewayRequest\x12\x1d\n\ngateway_id\x18\x01 \x01(\tR\tgatewayId\"\xa6\x01\n\x13ListGatewaysRequest\x12\x14\n\x05limit\x18\x01 \x01(\rR\x05limit\x12\x16\n\x06offset\x18\x02 \x01(\rR\x06offset\x12\x16\n\x06search\x18\x03 \x01(\tR\x06search\x12\x1b\n\ttenant_id\x18\x04 \x01(\tR\x08tenantId\x12,\n\x12multicast_group_id\x18\x05 \x01(\tR\x10multicastGroupId\"e\n\x14ListGatewaysResponse\x12\x1f\n\x0btotal_count\x18\x01 \x01(\rR\ntotalCount\x12,\n\x06result\x18\x02 \x03(\x0b2\x14.api.GatewayListItemR\x06result\"H\n\'GenerateGatewayClientCertificateRequest\x12\x1d\n\ngateway_id\x18\x01 \x01(\tR\tgatewayId\"\xb2\x01\n(GenerateGatewayClientCertificateResponse\x12\x19\n\x08tls_cert\x18\x01 \x01(\tR\x07tlsCert\x12\x17\n\x07tls_key\x18\x02 \x01(\tR\x06tlsKey\x12\x17\n\x07ca_cert\x18\x03 \x01(\tR\x06caCert\x129\n\nexpires_at\x18\x04 \x01(\x0b2\x1a.google.protobuf.TimestampR\texpiresAt\"\xd0\x01\n\x18GetGatewayMetricsRequest\x12\x1d\n\ngateway_id\x18\x01 \x01(\tR\tgatewayId\x120\n\x05start\x18\x02 \x01(\x0b2\x1a.google.protobuf.TimestampR\x05start\x12,\n\x03end\x18\x03 \x01(\x0b2\x1a.google.protobuf.TimestampR\x03end\x125\n\x0baggregation\x18\x04 \x01(\x0e2\x13.common.AggregationR\x0baggregation\"\xb0\x03\n\x19GetGatewayMetricsResponse\x12-\n\nrx_packets\x18\x01 \x01(\x0b2\x0e.common.MetricR\trxPackets\x12-\n\ntx_packets\x18\x02 \x01(\x0b2\x0e.common.MetricR\ttxPackets\x12=\n\x13tx_packets_per_freq\x18\x03 \x01(\x0b2\x0e.common.MetricR\x10txPacketsPerFreq\x12=\n\x13rx_packets_per_freq\x18\x04 \x01(\x0b2\x0e.common.MetricR\x10rxPacketsPerFreq\x129\n\x11tx_packets_per_dr\x18\x05 \x01(\x0b2\x0e.common.MetricR\x0etxPacketsPerDr\x129\n\x11rx_packets_per_dr\x18\x06 \x01(\x0b2\x0e.common.MetricR\x0erxPacketsPerDr\x12A\n\x15tx_packets_per_status\x18\x07 \x01(\x0b2\x0e.common.MetricR\x12txPacketsPerStatus*7\n\x0cGatewayState\x12\x0e\n\nNEVER_SEEN\x10\x00\x12\n\n\x06ONLINE\x10\x01\x12\x0b\n\x07OFFLINE\x10\x022\x91\x06\n\x0eGatewayService\x12U\n\x06Create\x12\x19.api.CreateGatewayRequest\x1a\x16.google.protobuf.Empty\"\x18\x82\xd3\xe4\x93\x02\x12\"\r/api/gateways:\x01*\x12Z\n\x03Get\x12\x16.api.GetGatewayRequest\x1a\x17.api.GetGatewayResponse\"\"\x82\xd3\xe4\x93\x02\x1c\x12\x1a/api/gateways/{gateway_id}\x12j\n\x06Update\x12\x19.api.UpdateGatewayRequest\x1a\x16.google.protobuf.Empty\"-\x82\xd3\xe4\x93\x02\'\x1a\"/api/gateways/{gateway.gateway_id}:\x01*\x12_\n\x06Delete\x12\x19.api.DeleteGatewayRequest\x1a\x16.google.protobuf.Empty\"\"\x82\xd3\xe4\x93\x02\x1c*\x1a/api/gateways/{gateway_id}\x12R\n\x04List\x12\x18.api.ListGatewaysRequest\x1a\x19.api.ListGatewaysResponse\"\x15\x82\xd3\xe4\x93\x02\x0f\x12\r/api/gateways\x12\xb1\x01\n\x19GenerateClientCertificate\x12,.api.GenerateGatewayClientCertificateRequest\x1a-.api.GenerateGatewayClientCertificateResponse\"7\x82\xd3\xe4\x93\x021\"//api/gateways/{gateway_id}/generate-certificate\x12w\n\nGetMetrics\x12\x1d.api.GetGatewayMetricsRequest\x1a\x1e.api.GetGatewayMetricsResponse\"*\x82\xd3\xe4\x93\x02$\x12\"/api/gateways/{gateway_id}/metricsBd\n\x11io.chirpstack.apiB\x0cGatewayProtoP\x01Z.github.com/chirpstack/chirpstack/api/go/v4/api\xaa\x02\x0eChirpstack.ApiJ\xeb/\n\x07\x12\x05\x00\x00\x80\x02\x01\n\x08\n\x01\x0c\x12\x03\x00\x00\x12\n\x08\n\x01\x02\x12\x03\x02\x00\x0c\n\x08\n\x01\x08\x12\x03\x04\x00E\n\t\n\x02\x08\x0b\x12\x03\x04\x00E\n\x08\n\x01\x08\x12\x03\x05\x00*\n\t\n\x02\x08\x01\x12\x03\x05\x00*\n\x08\n\x01\x08\x12\x03\x06\x00\"\n\t\n\x02\x08\n\x12\x03\x06\x00\"\n\x08\n\x01\x08\x12\x03\x07\x00-\n\t\n\x02\x08\x08\x12\x03\x07\x00-\n\x08\n\x01\x08\x12\x03\x08\x00+\n\t\n\x02\x08%\x12\x03\x08\x00+\n\t\n\x02\x03\x00\x12\x03\n\x00&\n\t\n\x02\x03\x01\x12\x03\x0b\x00)\n\t\n\x02\x03\x02\x12\x03\x0c\x00%\n\t\n\x02\x03\x03\x12\x03\r\x00\x1d\nX\n\x02\x06\x00\x12\x04\x10\x00C\x01\x1aL GatewayService is the service providing API methods for managing gateways.\n\n\n\n\x03\x06\x00\x01\x12\x03\x10\x08\x16\n1\n\x04\x06\x00\x02\x00\x12\x04\x12\x04\x17\x05\x1a# Create creates the given gateway.\n\n\x0c\n\x05\x06\x00\x02\x00\x01\x12\x03\x12\x08\x0e\n\x0c\n\x05\x06\x00\x02\x00\x02\x12\x03\x12\x0f#\n\x0c\n\x05\x06\x00\x02\x00\x03\x12\x03\x12.C\n\r\n\x05\x06\x00\x02\x00\x04\x12\x04\x13\x08\x16\n\n\x11\n\t\x06\x00\x02\x00\x04\xb0\xca\xbc\"\x12\x04\x13\x08\x16\n\nA\n\x04\x06\x00\x02\x01\x12\x04\x1a\x04\x1e\x05\x1a3 Get returns the gateway for the given Gateway ID.\n\n\x0c\n\x05\x06\x00\x02\x01\x01\x12\x03\x1a\x08\x0b\n\x0c\n\x05\x06\x00\x02\x01\x02\x12\x03\x1a\x0c\x1d\n\x0c\n\x05\x06\x00\x02\x01\x03\x12\x03\x1a(:\n\r\n\x05\x06\x00\x02\x01\x04\x12\x04\x1b\x08\x1d\n\n\x11\n\t\x06\x00\x02\x01\x04\xb0\xca\xbc\"\x12\x04\x1b\x08\x1d\n\n1\n\x04\x06\x00\x02\x02\x12\x04!\x04&\x05\x1a# Update updates the given gateway.\n\n\x0c\n\x05\x06\x00\x02\x02\x01\x12\x03!\x08\x0e\n\x0c\n\x05\x06\x00\x02\x02\x02\x12\x03!\x0f#\n\x0c\n\x05\x06\x00\x02\x02\x03\x12\x03!.C\n\r\n\x05\x06\x00\x02\x02\x04\x12\x04\"\x08%\n\n\x11\n\t\x06\x00\x02\x02\x04\xb0\xca\xbc\"\x12\x04\"\x08%\n\nI\n\x04\x06\x00\x02\x03\x12\x04)\x04-\x05\x1a; Delete deletes the gateway matching the given Gateway ID.\n\n\x0c\n\x05\x06\x00\x02\x03\x01\x12\x03)\x08\x0e\n\x0c\n\x05\x06\x00\x02\x03\x02\x12\x03)\x0f#\n\x0c\n\x05\x06\x00\x02\x03\x03\x12\x03).C\n\r\n\x05\x06\x00\x02\x03\x04\x12\x04*\x08,\n\n\x11\n\t\x06\x00\x02\x03\x04\xb0\xca\xbc\"\x12\x04*\x08,\n\n)\n\x04\x06\x00\x02\x04\x12\x040\x044\x05\x1a\x1b Get the list of gateways.\n\n\x0c\n\x05\x06\x00\x02\x04\x01\x12\x030\x08\x0c\n\x0c\n\x05\x06\x00\x02\x04\x02\x12\x030\r \n\x0c\n\x05\x06\x00\x02\x04\x03\x12\x030+?\n\r\n\x05\x06\x00\x02\x04\x04\x12\x041\x083\n\n\x11\n\t\x06\x00\x02\x04\x04\xb0\xca\xbc\"\x12\x041\x083\n\n<\n\x04\x06\x00\x02\x05\x12\x047\x04;\x05\x1a. Generate client-certificate for the gateway.\n\n\x0c\n\x05\x06\x00\x02\x05\x01\x12\x037\x08!\n\x0c\n\x05\x06\x00\x02\x05\x02\x12\x037\"I\n\x0c\n\x05\x06\x00\x02\x05\x03\x12\x037T|\n\r\n\x05\x06\x00\x02\x05\x04\x12\x048\x08:\n\n\x11\n\t\x06\x00\x02\x05\x04\xb0\xca\xbc\"\x12\x048\x08:\n\n7\n\x04\x06\x00\x02\x06\x12\x04>\x04B\x05\x1a) GetMetrics returns the gateway metrics.\n\n\x0c\n\x05\x06\x00\x02\x06\x01\x12\x03>\x08\x12\n\x0c\n\x05\x06\x00\x02\x06\x02\x12\x03>\x13+\n\x0c\n\x05\x06\x00\x02\x06\x03\x12\x03>6O\n\r\n\x05\x06\x00\x02\x06\x04\x12\x04?\x08A\n\n\x11\n\t\x06\x00\x02\x06\x04\xb0\xca\xbc\"\x12\x04?\x08A\n\n\n\n\x02\x05\x00\x12\x04E\x00N\x01\n\n\n\x03\x05\x00\x01\x12\x03E\x05\x11\n4\n\x04\x05\x00\x02\x00\x12\x03G\x04\x13\x1a\' The gateway has never sent any stats.\n\n\x0c\n\x05\x05\x00\x02\x00\x01\x12\x03G\x04\x0e\n\x0c\n\x05\x05\x00\x02\x00\x02\x12\x03G\x11\x12\n\x16\n\x04\x05\x00\x02\x01\x12\x03J\x04\x0f\x1a\t Online.\n\n\x0c\n\x05\x05\x00\x02\x01\x01\x12\x03J\x04\n\n\x0c\n\x05\x05\x00\x02\x01\x02\x12\x03J\r\x0e\n\x17\n\x04\x05\x00\x02\x02\x12\x03M\x04\x10\x1a\n Offline.\n\n\x0c\n\x05\x05\x00\x02\x02\x01\x12\x03M\x04\x0b\n\x0c\n\x05\x05\x00\x02\x02\x02\x12\x03M\x0e\x0f\n\n\n\x02\x04\x00\x12\x04P\x00j\x01\n\n\n\x03\x04\x00\x01\x12\x03P\x08\x0f\n\"\n\x04\x04\x00\x02\x00\x12\x03R\x04\x1a\x1a\x15 Gateway ID (EUI64).\n\n\x0c\n\x05\x04\x00\x02\x00\x05\x12\x03R\x04\n\n\x0c\n\x05\x04\x00\x02\x00\x01\x12\x03R\x0b\x15\n\x0c\n\x05\x04\x00\x02\x00\x03\x12\x03R\x18\x19\n\x14\n\x04\x04\x00\x02\x01\x12\x03U\x04\x14\x1a\x07 Name.\n\n\x0c\n\x05\x04\x00\x02\x01\x05\x12\x03U\x04\n\n\x0c\n\x05\x04\x00\x02\x01\x01\x12\x03U\x0b\x0f\n\x0c\n\x05\x04\x00\x02\x01\x03\x12\x03U\x12\x13\n\x1b\n\x04\x04\x00\x02\x02\x12\x03X\x04\x1b\x1a\x0e Description.\n\n\x0c\n\x05\x04\x00\x02\x02\x05\x12\x03X\x04\n\n\x0c\n\x05\x04\x00\x02\x02\x01\x12\x03X\x0b\x16\n\x0c\n\x05\x04\x00\x02\x02\x03\x12\x03X\x19\x1a\n \n\x04\x04\x00\x02\x03\x12\x03[\x04!\x1a\x13 Gateway location.\n\n\x0c\n\x05\x04\x00\x02\x03\x06\x12\x03[\x04\x13\n\x0c\n\x05\x04\x00\x02\x03\x01\x12\x03[\x14\x1c\n\x0c\n\x05\x04\x00\x02\x03\x03\x12\x03[\x1f \n \n\x04\x04\x00\x02\x04\x12\x03^\x04\x19\x1a\x13 Tenant ID (UUID).\n\n\x0c\n\x05\x04\x00\x02\x04\x05\x12\x03^\x04\n\n\x0c\n\x05\x04\x00\x02\x04\x01\x12\x03^\x0b\x14\n\x0c\n\x05\x04\x00\x02\x04\x03\x12\x03^\x17\x18\n\x14\n\x04\x04\x00\x02\x05\x12\x03a\x04!\x1a\x07 Tags.\n\n\x0c\n\x05\x04\x00\x02\x05\x06\x12\x03a\x04\x17\n\x0c\n\x05\x04\x00\x02\x05\x01\x12\x03a\x18\x1c\n\x0c\n\x05\x04\x00\x02\x05\x03\x12\x03a\x1f \n2\n\x04\x04\x00\x02\x06\x12\x03d\x04%\x1a% Metadata (provided by the gateway).\n\n\x0c\n\x05\x04\x00\x02\x06\x06\x12\x03d\x04\x17\n\x0c\n\x05\x04\x00\x02\x06\x01\x12\x03d\x18 \n\x0c\n\x05\x04\x00\x02\x06\x03\x12\x03d#$\nx\n\x04\x04\x00\x02\x07\x12\x03i\x04\x1e\x1ak Stats interval (seconds).\n This defines the expected interval in which the gateway sends its\n statistics.\n\n\x0c\n\x05\x04\x00\x02\x07\x05\x12\x03i\x04\n\n\x0c\n\x05\x04\x00\x02\x07\x01\x12\x03i\x0b\x19\n\x0c\n\x05\x04\x00\x02\x07\x03\x12\x03i\x1c\x1d\n\x0b\n\x02\x04\x01\x12\x05l\x00\x8c\x01\x01\n\n\n\x03\x04\x01\x01\x12\x03l\x08\x17\n\x19\n\x04\x04\x01\x02\x00\x12\x03n\x04\x19\x1a\x0c Tenant ID.\n\n\x0c\n\x05\x04\x01\x02\x00\x05\x12\x03n\x04\n\n\x0c\n\x05\x04\x01\x02\x00\x01\x12\x03n\x0b\x14\n\x0c\n\x05\x04\x01\x02\x00\x03\x12\x03n\x17\x18\n\"\n\x04\x04\x01\x02\x01\x12\x03q\x04\x1a\x1a\x15 Gateway ID (EUI64).\n\n\x0c\n\x05\x04\x01\x02\x01\x05\x12\x03q\x04\n\n\x0c\n\x05\x04\x01\x02\x01\x01\x12\x03q\x0b\x15\n\x0c\n\x05\x04\x01\x02\x01\x03\x12\x03q\x18\x19\n\x14\n\x04\x04\x01\x02\x02\x12\x03t\x04\x14\x1a\x07 Name.\n\n\x0c\n\x05\x04\x01\x02\x02\x05\x12\x03t\x04\n\n\x0c\n\x05\x04\x01\x02\x02\x01\x12\x03t\x0b\x0f\n\x0c\n\x05\x04\x01\x02\x02\x03\x12\x03t\x12\x13\n\x1b\n\x04\x04\x01\x02\x03\x12\x03w\x04\x1b\x1a\x0e Description.\n\n\x0c\n\x05\x04\x01\x02\x03\x05\x12\x03w\x04\n\n\x0c\n\x05\x04\x01\x02\x03\x01\x12\x03w\x0b\x16\n\x0c\n\x05\x04\x01\x02\x03\x03\x12\x03w\x19\x1a\n\x18\n\x04\x04\x01\x02\x04\x12\x03z\x04!\x1a\x0b Location.\n\n\x0c\n\x05\x04\x01\x02\x04\x06\x12\x03z\x04\x13\n\x0c\n\x05\x04\x01\x02\x04\x01\x12\x03z\x14\x1c\n\x0c\n\x05\x04\x01\x02\x04\x03\x12\x03z\x1f \n\"\n\x04\x04\x01\x02\x05\x12\x03}\x04\'\x1a\x15 Gateway properties.\n\n\x0c\n\x05\x04\x01\x02\x05\x06\x12\x03}\x04\x17\n\x0c\n\x05\x04\x01\x02\x05\x01\x12\x03}\x18\"\n\x0c\n\x05\x04\x01\x02\x05\x03\x12\x03}%&\n%\n\x04\x04\x01\x02\x06\x12\x04\x80\x01\x081\x1a\x17 Created at timestamp.\n\n\r\n\x05\x04\x01\x02\x06\x06\x12\x04\x80\x01\x08!\n\r\n\x05\x04\x01\x02\x06\x01\x12\x04\x80\x01\",\n\r\n\x05\x04\x01\x02\x06\x03\x12\x04\x80\x01/0\n&\n\x04\x04\x01\x02\x07\x12\x04\x83\x01\x081\x1a\x18 Last update timestamp.\n\n\r\n\x05\x04\x01\x02\x07\x06\x12\x04\x83\x01\x08!\n\r\n\x05\x04\x01\x02\x07\x01\x12\x04\x83\x01\",\n\r\n\x05\x04\x01\x02\x07\x03\x12\x04\x83\x01/0\n\'\n\x04\x04\x01\x02\x08\x12\x04\x86\x01\x04/\x1a\x19 Last seen at timestamp.\n\n\r\n\x05\x04\x01\x02\x08\x06\x12\x04\x86\x01\x04\x1d\n\r\n\x05\x04\x01\x02\x08\x01\x12\x04\x86\x01\x1e*\n\r\n\x05\x04\x01\x02\x08\x03\x12\x04\x86\x01-.\n\x88\x01\n\x04\x04\x01\x02\t\x12\x04\x8b\x01\x04\x1c\x1az Gateway state.\n Please note that the state of the gateway is driven by the stats\n packages that are sent by the gateway.\n\n\r\n\x05\x04\x01\x02\t\x06\x12\x04\x8b\x01\x04\x10\n\r\n\x05\x04\x01\x02\t\x01\x12\x04\x8b\x01\x11\x16\n\r\n\x05\x04\x01\x02\t\x03\x12\x04\x8b\x01\x19\x1b\n\x0c\n\x02\x04\x02\x12\x06\x8e\x01\x00\x91\x01\x01\n\x0b\n\x03\x04\x02\x01\x12\x04\x8e\x01\x08\x1c\n\x1f\n\x04\x04\x02\x02\x00\x12\x04\x90\x01\x04\x18\x1a\x11 Gateway object.\n\n\r\n\x05\x04\x02\x02\x00\x06\x12\x04\x90\x01\x04\x0b\n\r\n\x05\x04\x02\x02\x00\x01\x12\x04\x90\x01\x0c\x13\n\r\n\x05\x04\x02\x02\x00\x03\x12\x04\x90\x01\x16\x17\n\x0c\n\x02\x04\x03\x12\x06\x93\x01\x00\x96\x01\x01\n\x0b\n\x03\x04\x03\x01\x12\x04\x93\x01\x08\x19\n#\n\x04\x04\x03\x02\x00\x12\x04\x95\x01\x04\x1a\x1a\x15 Gateway ID (EUI64).\n\n\r\n\x05\x04\x03\x02\x00\x05\x12\x04\x95\x01\x04\n\n\r\n\x05\x04\x03\x02\x00\x01\x12\x04\x95\x01\x0b\x15\n\r\n\x05\x04\x03\x02\x00\x03\x12\x04\x95\x01\x18\x19\n\x0c\n\x02\x04\x04\x12\x06\x98\x01\x00\xa4\x01\x01\n\x0b\n\x03\x04\x04\x01\x12\x04\x98\x01\x08\x1a\n\x1f\n\x04\x04\x04\x02\x00\x12\x04\x9a\x01\x04\x18\x1a\x11 Gateway object.\n\n\r\n\x05\x04\x04\x02\x00\x06\x12\x04\x9a\x01\x04\x0b\n\r\n\x05\x04\x04\x02\x00\x01\x12\x04\x9a\x01\x0c\x13\n\r\n\x05\x04\x04\x02\x00\x03\x12\x04\x9a\x01\x16\x17\n%\n\x04\x04\x04\x02\x01\x12\x04\x9d\x01\x081\x1a\x17 Created at timestamp.\n\n\r\n\x05\x04\x04\x02\x01\x06\x12\x04\x9d\x01\x08!\n\r\n\x05\x04\x04\x02\x01\x01\x12\x04\x9d\x01\",\n\r\n\x05\x04\x04\x02\x01\x03\x12\x04\x9d\x01/0\n&\n\x04\x04\x04\x02\x02\x12\x04\xa0\x01\x081\x1a\x18 Last update timestamp.\n\n\r\n\x05\x04\x04\x02\x02\x06\x12\x04\xa0\x01\x08!\n\r\n\x05\x04\x04\x02\x02\x01\x12\x04\xa0\x01\",\n\r\n\x05\x04\x04\x02\x02\x03\x12\x04\xa0\x01/0\n\'\n\x04\x04\x04\x02\x03\x12\x04\xa3\x01\x04/\x1a\x19 Last seen at timestamp.\n\n\r\n\x05\x04\x04\x02\x03\x06\x12\x04\xa3\x01\x04\x1d\n\r\n\x05\x04\x04\x02\x03\x01\x12\x04\xa3\x01\x1e*\n\r\n\x05\x04\x04\x02\x03\x03\x12\x04\xa3\x01-.\n\x0c\n\x02\x04\x05\x12\x06\xa6\x01\x00\xa9\x01\x01\n\x0b\n\x03\x04\x05\x01\x12\x04\xa6\x01\x08\x1c\n\x1f\n\x04\x04\x05\x02\x00\x12\x04\xa8\x01\x04\x18\x1a\x11 Gateway object.\n\n\r\n\x05\x04\x05\x02\x00\x06\x12\x04\xa8\x01\x04\x0b\n\r\n\x05\x04\x05\x02\x00\x01\x12\x04\xa8\x01\x0c\x13\n\r\n\x05\x04\x05\x02\x00\x03\x12\x04\xa8\x01\x16\x17\n\x0c\n\x02\x04\x06\x12\x06\xab\x01\x00\xae\x01\x01\n\x0b\n\x03\x04\x06\x01\x12\x04\xab\x01\x08\x1c\n#\n\x04\x04\x06\x02\x00\x12\x04\xad\x01\x04\x1a\x1a\x15 Gateway ID (EUI64).\n\n\r\n\x05\x04\x06\x02\x00\x05\x12\x04\xad\x01\x04\n\n\r\n\x05\x04\x06\x02\x00\x01\x12\x04\xad\x01\x0b\x15\n\r\n\x05\x04\x06\x02\x00\x03\x12\x04\xad\x01\x18\x19\n\x0c\n\x02\x04\x07\x12\x06\xb0\x01\x00\xc0\x01\x01\n\x0b\n\x03\x04\x07\x01\x12\x04\xb0\x01\x08\x1b\nC\n\x04\x04\x07\x02\x00\x12\x04\xb2\x01\x04\x15\x1a5 Max number of gateways to return in the result-set.\n\n\r\n\x05\x04\x07\x02\x00\x05\x12\x04\xb2\x01\x04\n\n\r\n\x05\x04\x07\x02\x00\x01\x12\x04\xb2\x01\x0b\x10\n\r\n\x05\x04\x07\x02\x00\x03\x12\x04\xb2\x01\x13\x14\n:\n\x04\x04\x07\x02\x01\x12\x04\xb5\x01\x04\x16\x1a, Offset in the result-set (for pagination).\n\n\r\n\x05\x04\x07\x02\x01\x05\x12\x04\xb5\x01\x04\n\n\r\n\x05\x04\x07\x02\x01\x01\x12\x04\xb5\x01\x0b\x11\n\r\n\x05\x04\x07\x02\x01\x03\x12\x04\xb5\x01\x14\x15\nS\n\x04\x04\x07\x02\x02\x12\x04\xb8\x01\x04\x16\x1aE If set, the given string will be used to search on name (optional).\n\n\r\n\x05\x04\x07\x02\x02\x05\x12\x04\xb8\x01\x04\n\n\r\n\x05\x04\x07\x02\x02\x01\x12\x04\xb8\x01\x0b\x11\n\r\n\x05\x04\x07\x02\x02\x03\x12\x04\xb8\x01\x14\x15\n\x83\x01\n\x04\x04\x07\x02\x03\x12\x04\xbc\x01\x04\x19\x1au Tenant ID (UUID) to filter gateways on.\n To list all gateways as a global admin user, this field can be left blank.\n\n\r\n\x05\x04\x07\x02\x03\x05\x12\x04\xbc\x01\x04\n\n\r\n\x05\x04\x07\x02\x03\x01\x12\x04\xbc\x01\x0b\x14\n\r\n\x05\x04\x07\x02\x03\x03\x12\x04\xbc\x01\x17\x18\n@\n\x04\x04\x07\x02\x04\x12\x04\xbf\x01\x04\"\x1a2 Multicast-group ID (UUID) to filter gateways on.\n\n\r\n\x05\x04\x07\x02\x04\x05\x12\x04\xbf\x01\x04\n\n\r\n\x05\x04\x07\x02\x04\x01\x12\x04\xbf\x01\x0b\x1d\n\r\n\x05\x04\x07\x02\x04\x03\x12\x04\xbf\x01 !\n\x0c\n\x02\x04\x08\x12\x06\xc2\x01\x00\xc8\x01\x01\n\x0b\n\x03\x04\x08\x01\x12\x04\xc2\x01\x08\x1c\n)\n\x04\x04\x08\x02\x00\x12\x04\xc4\x01\x04\x1b\x1a\x1b Total number of gateways.\n\n\r\n\x05\x04\x08\x02\x00\x05\x12\x04\xc4\x01\x04\n\n\r\n\x05\x04\x08\x02\x00\x01\x12\x04\xc4\x01\x0b\x16\n\r\n\x05\x04\x08\x02\x00\x03\x12\x04\xc4\x01\x19\x1a\n\x1b\n\x04\x04\x08\x02\x01\x12\x04\xc7\x01\x04(\x1a\r Result-set.\n\n\r\n\x05\x04\x08\x02\x01\x04\x12\x04\xc7\x01\x04\x0c\n\r\n\x05\x04\x08\x02\x01\x06\x12\x04\xc7\x01\r\x1c\n\r\n\x05\x04\x08\x02\x01\x01\x12\x04\xc7\x01\x1d#\n\r\n\x05\x04\x08\x02\x01\x03\x12\x04\xc7\x01&\'\n\x0c\n\x02\x04\t\x12\x06\xca\x01\x00\xcd\x01\x01\n\x0b\n\x03\x04\t\x01\x12\x04\xca\x01\x08/\n#\n\x04\x04\t\x02\x00\x12\x04\xcc\x01\x04\x1a\x1a\x15 Gateway ID (EUI64).\n\n\r\n\x05\x04\t\x02\x00\x05\x12\x04\xcc\x01\x04\n\n\r\n\x05\x04\t\x02\x00\x01\x12\x04\xcc\x01\x0b\x15\n\r\n\x05\x04\t\x02\x00\x03\x12\x04\xcc\x01\x18\x19\n\x0c\n\x02\x04\n\x12\x06\xcf\x01\x00\xdb\x01\x01\n\x0b\n\x03\x04\n\x01\x12\x04\xcf\x01\x080\n \n\x04\x04\n\x02\x00\x12\x04\xd1\x01\x04\x18\x1a\x12 TLS certificate.\n\n\r\n\x05\x04\n\x02\x00\x05\x12\x04\xd1\x01\x04\n\n\r\n\x05\x04\n\x02\x00\x01\x12\x04\xd1\x01\x0b\x13\n\r\n\x05\x04\n\x02\x00\x03\x12\x04\xd1\x01\x16\x17\n\x18\n\x04\x04\n\x02\x01\x12\x04\xd4\x01\x04\x17\x1a\n TLS key.\n\n\r\n\x05\x04\n\x02\x01\x05\x12\x04\xd4\x01\x04\n\n\r\n\x05\x04\n\x02\x01\x01\x12\x04\xd4\x01\x0b\x12\n\r\n\x05\x04\n\x02\x01\x03\x12\x04\xd4\x01\x15\x16\n\x1f\n\x04\x04\n\x02\x02\x12\x04\xd7\x01\x04\x17\x1a\x11 CA certificate.\n\n\r\n\x05\x04\n\x02\x02\x05\x12\x04\xd7\x01\x04\n\n\r\n\x05\x04\n\x02\x02\x01\x12\x04\xd7\x01\x0b\x12\n\r\n\x05\x04\n\x02\x02\x03\x12\x04\xd7\x01\x15\x16\nJ\n\x04\x04\n\x02\x03\x12\x04\xda\x01\x04-\x1a< Expires at defines the expiration date of the certificate.\n\n\r\n\x05\x04\n\x02\x03\x06\x12\x04\xda\x01\x04\x1d\n\r\n\x05\x04\n\x02\x03\x01\x12\x04\xda\x01\x1e(\n\r\n\x05\x04\n\x02\x03\x03\x12\x04\xda\x01+,\n\x0c\n\x02\x04\x0b\x12\x06\xdd\x01\x00\xe9\x01\x01\n\x0b\n\x03\x04\x0b\x01\x12\x04\xdd\x01\x08 \n#\n\x04\x04\x0b\x02\x00\x12\x04\xdf\x01\x04\x1a\x1a\x15 Gateway ID (EUI64).\n\n\r\n\x05\x04\x0b\x02\x00\x05\x12\x04\xdf\x01\x04\n\n\r\n\x05\x04\x0b\x02\x00\x01\x12\x04\xdf\x01\x0b\x15\n\r\n\x05\x04\x0b\x02\x00\x03\x12\x04\xdf\x01\x18\x19\n)\n\x04\x04\x0b\x02\x01\x12\x04\xe2\x01\x04(\x1a\x1b Interval start timestamp.\n\n\r\n\x05\x04\x0b\x02\x01\x06\x12\x04\xe2\x01\x04\x1d\n\r\n\x05\x04\x0b\x02\x01\x01\x12\x04\xe2\x01\x1e#\n\r\n\x05\x04\x0b\x02\x01\x03\x12\x04\xe2\x01&\'\n\'\n\x04\x04\x0b\x02\x02\x12\x04\xe5\x01\x04&\x1a\x19 Interval end timestamp.\n\n\r\n\x05\x04\x0b\x02\x02\x06\x12\x04\xe5\x01\x04\x1d\n\r\n\x05\x04\x0b\x02\x02\x01\x12\x04\xe5\x01\x1e!\n\r\n\x05\x04\x0b\x02\x02\x03\x12\x04\xe5\x01$%\n\x1c\n\x04\x04\x0b\x02\x03\x12\x04\xe8\x01\x04\'\x1a\x0e Aggregation.\n\n\r\n\x05\x04\x0b\x02\x03\x06\x12\x04\xe8\x01\x04\x16\n\r\n\x05\x04\x0b\x02\x03\x01\x12\x04\xe8\x01\x17\"\n\r\n\x05\x04\x0b\x02\x03\x03\x12\x04\xe8\x01%&\n\x0c\n\x02\x04\x0c\x12\x06\xeb\x01\x00\x80\x02\x01\n\x0b\n\x03\x04\x0c\x01\x12\x04\xeb\x01\x08!\n\x1b\n\x04\x04\x0c\x02\x00\x12\x04\xed\x01\x04!\x1a\r RX packets.\n\n\r\n\x05\x04\x0c\x02\x00\x06\x12\x04\xed\x01\x04\x11\n\r\n\x05\x04\x0c\x02\x00\x01\x12\x04\xed\x01\x12\x1c\n\r\n\x05\x04\x0c\x02\x00\x03\x12\x04\xed\x01\x1f \n\x1b\n\x04\x04\x0c\x02\x01\x12\x04\xf0\x01\x04!\x1a\r TX packets.\n\n\r\n\x05\x04\x0c\x02\x01\x06\x12\x04\xf0\x01\x04\x11\n\r\n\x05\x04\x0c\x02\x01\x01\x12\x04\xf0\x01\x12\x1c\n\r\n\x05\x04\x0c\x02\x01\x03\x12\x04\xf0\x01\x1f \n\'\n\x04\x04\x0c\x02\x02\x12\x04\xf3\x01\x04*\x1a\x19 TX packets / frequency.\n\n\r\n\x05\x04\x0c\x02\x02\x06\x12\x04\xf3\x01\x04\x11\n\r\n\x05\x04\x0c\x02\x02\x01\x12\x04\xf3\x01\x12%\n\r\n\x05\x04\x0c\x02\x02\x03\x12\x04\xf3\x01()\n\'\n\x04\x04\x0c\x02\x03\x12\x04\xf6\x01\x04*\x1a\x19 RX packets / frequency.\n\n\r\n\x05\x04\x0c\x02\x03\x06\x12\x04\xf6\x01\x04\x11\n\r\n\x05\x04\x0c\x02\x03\x01\x12\x04\xf6\x01\x12%\n\r\n\x05\x04\x0c\x02\x03\x03\x12\x04\xf6\x01()\n \n\x04\x04\x0c\x02\x04\x12\x04\xf9\x01\x04(\x1a\x12 TX packets / DR.\n\n\r\n\x05\x04\x0c\x02\x04\x06\x12\x04\xf9\x01\x04\x11\n\r\n\x05\x04\x0c\x02\x04\x01\x12\x04\xf9\x01\x12#\n\r\n\x05\x04\x0c\x02\x04\x03\x12\x04\xf9\x01&\'\n \n\x04\x04\x0c\x02\x05\x12\x04\xfc\x01\x04(\x1a\x12 RX packets / DR.\n\n\r\n\x05\x04\x0c\x02\x05\x06\x12\x04\xfc\x01\x04\x11\n\r\n\x05\x04\x0c\x02\x05\x01\x12\x04\xfc\x01\x12#\n\r\n\x05\x04\x0c\x02\x05\x03\x12\x04\xfc\x01&\'\n&\n\x04\x04\x0c\x02\x06\x12\x04\xff\x01\x04,\x1a\x18 TX packets per status.\n\n\r\n\x05\x04\x0c\x02\x06\x06\x12\x04\xff\x01\x04\x11\n\r\n\x05\x04\x0c\x02\x06\x01\x12\x04\xff\x01\x12\'\n\r\n\x05\x04\x0c\x02\x06\x03\x12\x04\xff\x01*+b\x06proto3\n\xd0%\n\x1egoogle/protobuf/duration.proto\x12\x0fgoogle.protobuf\":\n\x08Duration\x12\x18\n\x07seconds\x18\x01 \x01(\x03R\x07seconds\x12\x14\n\x05nanos\x18\x02 \x01(\x05R\x05nanosB|\n\x13com.google.protobufB\rDurationProtoP\x01Z*github.com/golang/protobuf/ptypes/duration\xf8\x01\x01\xa2\x02\x03GPB\xaa\x02\x1eGoogle.Protobuf.WellKnownTypesJ\xda#\n\x06\x12\x04\x1e\x00s\x01\n\xcc\x0c\n\x01\x0c\x12\x03\x1e\x00\x122\xc1\x0c Protocol Buffers - Google\'s data interchange format\n Copyright 2008 Google Inc.  All rights reserved.\n https://developers.google.com/protocol-buffers/\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are\n met:\n\n     * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n     * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following disclaimer\n in the documentation and/or other materials provided with the\n distribution.\n     * Neither the name of Google Inc. nor the names of its\n contributors may be used to endorse or promote products derived from\n this software without specific prior written permission.\n\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n\x08\n\x01\x02\x12\x03 \x00\x18\n\x08\n\x01\x08\x12\x03\"\x00;\n\t\n\x02\x08%\x12\x03\"\x00;\n\x08\n\x01\x08\x12\x03#\x00\x1f\n\t\n\x02\x08\x1f\x12\x03#\x00\x1f\n\x08\n\x01\x08\x12\x03$\x00A\n\t\n\x02\x08\x0b\x12\x03$\x00A\n\x08\n\x01\x08\x12\x03%\x00,\n\t\n\x02\x08\x01\x12\x03%\x00,\n\x08\n\x01\x08\x12\x03&\x00.\n\t\n\x02\x08\x08\x12\x03&\x00.\n\x08\n\x01\x08\x12\x03\'\x00\"\n\t\n\x02\x08\n\x12\x03\'\x00\"\n\x08\n\x01\x08\x12\x03(\x00!\n\t\n\x02\x08$\x12\x03(\x00!\n\x9e\x10\n\x02\x04\x00\x12\x04f\x00s\x01\x1a\x91\x10 A Duration represents a signed, fixed-length span of time represented\n as a count of seconds and fractions of seconds at nanosecond\n resolution. It is independent of any calendar and concepts like \"day\"\n or \"month\". It is related to Timestamp in that the difference between\n two Timestamp values is a Duration and it can be added or subtracted\n from a Timestamp. Range is approximately +-10,000 years.\n\n # Examples\n\n Example 1: Compute Duration from two Timestamps in pseudo code.\n\n     Timestamp start = ...;\n     Timestamp end = ...;\n     Duration duration = ...;\n\n     duration.seconds = end.seconds - start.seconds;\n     duration.nanos = end.nanos - start.nanos;\n\n     if (duration.seconds < 0 && duration.nanos > 0) {\n       duration.seconds += 1;\n       duration.nanos -= 1000000000;\n     } else if (duration.seconds > 0 && duration.nanos < 0) {\n       duration.seconds -= 1;\n       duration.nanos += 1000000000;\n     }\n\n Example 2: Compute Timestamp from Timestamp + Duration in pseudo code.\n\n     Timestamp start = ...;\n     Duration duration = ...;\n     Timestamp end = ...;\n\n     end.seconds = start.seconds + duration.seconds;\n     end.nanos = start.nanos + duration.nanos;\n\n     if (end.nanos < 0) {\n       end.seconds -= 1;\n       end.nanos += 1000000000;\n     } else if (end.nanos >= 1000000000) {\n       end.seconds += 1;\n       end.nanos -= 1000000000;\n     }\n\n Example 3: Compute Duration from datetime.timedelta in Python.\n\n     td = datetime.timedelta(days=3, minutes=10)\n     duration = Duration()\n     duration.FromTimedelta(td)\n\n # JSON Mapping\n\n In JSON format, the Duration type is encoded as a string rather than an\n object, where the string ends in the suffix \"s\" (indicating seconds) and\n is preceded by the number of seconds, with nanoseconds expressed as\n fractional seconds. For example, 3 seconds with 0 nanoseconds should be\n encoded in JSON format as \"3s\", while 3 seconds and 1 nanosecond should\n be expressed in JSON format as \"3.000000001s\", and 3 seconds and 1\n microsecond should be expressed in JSON format as \"3.000001s\".\n\n\n\n\n\n\x03\x04\x00\x01\x12\x03f\x08\x10\n\xdc\x01\n\x04\x04\x00\x02\x00\x12\x03j\x02\x14\x1a\xce\x01 Signed seconds of the span of time. Must be from -315,576,000,000\n to +315,576,000,000 inclusive. Note: these bounds are computed from:\n 60 sec/min * 60 min/hr * 24 hr/day * 365.25 days/year * 10000 years\n\n\x0c\n\x05\x04\x00\x02\x00\x05\x12\x03j\x02\x07\n\x0c\n\x05\x04\x00\x02\x00\x01\x12\x03j\x08\x0f\n\x0c\n\x05\x04\x00\x02\x00\x03\x12\x03j\x12\x13\n\x83\x03\n\x04\x04\x00\x02\x01\x12\x03r\x02\x12\x1a\xf5\x02 Signed fractions of a second at nanosecond resolution of the span\n of time. Durations less than one second are represented with a 0\n `seconds` field and a positive or negative `nanos` field. For durations\n of one second or more, a non-zero value for the `nanos` field must be\n of the same sign as the `seconds` field. Must be from -999,999,999\n to +999,999,999 inclusive.\n\n\x0c\n\x05\x04\x00\x02\x01\x05\x12\x03r\x02\x07\n\x0c\n\x05\x04\x00\x02\x01\x01\x12\x03r\x08\r\n\x0c\n\x05\x04\x00\x02\x01\x03\x12\x03r\x10\x11b\x06proto3\n\xf7\xdd\x01\n\x0bgw/gw.proto\x12\x02gw\x1a\x13common/common.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1egoogle/protobuf/duration.proto\x1a\x1cgoogle/protobuf/struct.proto\"\xa8\x01\n\nModulation\x12,\n\x04lora\x18\x03 \x01(\x0b2\x16.gw.LoraModulationInfoH\x00R\x04lora\x12)\n\x03fsk\x18\x04 \x01(\x0b2\x15.gw.FskModulationInfoH\x00R\x03fsk\x123\n\x07lr_fhss\x18\x05 \x01(\x0b2\x18.gw.LrFhssModulationInfoH\x00R\x06lrFhssB\x0c\n\nparameters\"\xe1\x02\n\x12UplinkTxInfoLegacy\x12\x1c\n\tfrequency\x18\x01 \x01(\rR\tfrequency\x122\n\nmodulation\x18\x02 \x01(\x0e2\x12.common.ModulationR\nmodulation\x12J\n\x14lora_modulation_info\x18\x03 \x01(\x0b2\x16.gw.LoraModulationInfoH\x00R\x12loraModulationInfo\x12G\n\x13fsk_modulation_info\x18\x04 \x01(\x0b2\x15.gw.FskModulationInfoH\x00R\x11fskModulationInfo\x12Q\n\x17lr_fhss_modulation_info\x18\x05 \x01(\x0b2\x18.gw.LrFhssModulationInfoH\x00R\x14lrFhssModulationInfoB\x11\n\x0fmodulation_info\"\\\n\x0cUplinkTxInfo\x12\x1c\n\tfrequency\x18\x01 \x01(\rR\tfrequency\x12.\n\nmodulation\x18\x02 \x01(\x0b2\x0e.gw.ModulationR\nmodulation\"\xe9\x01\n\x12LoraModulationInfo\x12\x1c\n\tbandwidth\x18\x01 \x01(\rR\tbandwidth\x12)\n\x10spreading_factor\x18\x02 \x01(\rR\x0fspreadingFactor\x12(\n\x10code_rate_legacy\x18\x03 \x01(\tR\x0ecodeRateLegacy\x12)\n\tcode_rate\x18\x05 \x01(\x0e2\x0c.gw.CodeRateR\x08codeRate\x125\n\x16polarization_inversion\x18\x04 \x01(\x08R\x15polarizationInversion\"`\n\x11FskModulationInfo\x12/\n\x13frequency_deviation\x18\x01 \x01(\rR\x12frequencyDeviation\x12\x1a\n\x08datarate\x18\x02 \x01(\rR\x08datarate\"\xc2\x01\n\x14LrFhssModulationInfo\x126\n\x17operating_channel_width\x18\x01 \x01(\rR\x15operatingChannelWidth\x12(\n\x10code_rate_legacy\x18\x02 \x01(\tR\x0ecodeRateLegacy\x12)\n\tcode_rate\x18\x04 \x01(\x0e2\x0c.gw.CodeRateR\x08codeRate\x12\x1d\n\ngrid_steps\x18\x03 \x01(\rR\tgridSteps\"x\n\x16EncryptedFineTimestamp\x12\"\n\raes_key_index\x18\x01 \x01(\rR\x0baesKeyIndex\x12!\n\x0cencrypted_ns\x18\x02 \x01(\x0cR\x0bencryptedNs\x12\x17\n\x07fpga_id\x18\x03 \x01(\x0cR\x06fpgaId\"D\n\x12PlainFineTimestamp\x12.\n\x04time\x18\x01 \x01(\x0b2\x1a.google.protobuf.TimestampR\x04time\"\xc4\t\n\x0cGatewayStats\x12*\n\x11gateway_id_legacy\x18\x01 \x01(\x0cR\x0fgatewayIdLegacy\x12\x1d\n\ngateway_id\x18\x11 \x01(\tR\tgatewayId\x12.\n\x04time\x18\x02 \x01(\x0b2\x1a.google.protobuf.TimestampR\x04time\x12,\n\x08location\x18\x03 \x01(\x0b2\x10.common.LocationR\x08location\x12%\n\x0econfig_version\x18\x04 \x01(\tR\rconfigVersion\x12.\n\x13rx_packets_received\x18\x05 \x01(\rR\x11rxPacketsReceived\x123\n\x16rx_packets_received_ok\x18\x06 \x01(\rR\x13rxPacketsReceivedOk\x12.\n\x13tx_packets_received\x18\x07 \x01(\rR\x11txPacketsReceived\x12,\n\x12tx_packets_emitted\x18\x08 \x01(\rR\x10txPacketsEmitted\x12:\n\x08metadata\x18\n \x03(\x0b2\x1e.gw.GatewayStats.MetadataEntryR\x08metadata\x12d\n\x18tx_packets_per_frequency\x18\x0c \x03(\x0b2+.gw.GatewayStats.TxPacketsPerFrequencyEntryR\x15txPacketsPerFrequency\x12d\n\x18rx_packets_per_frequency\x18\r \x03(\x0b2+.gw.GatewayStats.RxPacketsPerFrequencyEntryR\x15rxPacketsPerFrequency\x12Q\n\x19tx_packets_per_modulation\x18\x0e \x03(\x0b2\x16.gw.PerModulationCountR\x16txPacketsPerModulation\x12Q\n\x19rx_packets_per_modulation\x18\x0f \x03(\x0b2\x16.gw.PerModulationCountR\x16rxPacketsPerModulation\x12[\n\x15tx_packets_per_status\x18\x10 \x03(\x0b2(.gw.GatewayStats.TxPacketsPerStatusEntryR\x12txPacketsPerStatus\x1a;\n\rMetadataEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x028\x01\x1aH\n\x1aTxPacketsPerFrequencyEntry\x12\x10\n\x03key\x18\x01 \x01(\rR\x03key\x12\x14\n\x05value\x18\x02 \x01(\rR\x05value:\x028\x01\x1aH\n\x1aRxPacketsPerFrequencyEntry\x12\x10\n\x03key\x18\x01 \x01(\rR\x03key\x12\x14\n\x05value\x18\x02 \x01(\rR\x05value:\x028\x01\x1aE\n\x17TxPacketsPerStatusEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\rR\x05value:\x028\x01\"Z\n\x12PerModulationCount\x12.\n\nmodulation\x18\x01 \x01(\x0b2\x0e.gw.ModulationR\nmodulation\x12\x14\n\x05count\x18\x02 \x01(\rR\x05count\"\xd2\x06\n\x12UplinkRxInfoLegacy\x12\x1d\n\ngateway_id\x18\x01 \x01(\x0cR\tgatewayId\x12.\n\x04time\x18\x02 \x01(\x0b2\x1a.google.protobuf.TimestampR\x04time\x12J\n\x14time_since_gps_epoch\x18\x03 \x01(\x0b2\x19.google.protobuf.DurationR\x11timeSinceGpsEpoch\x12\x12\n\x04rssi\x18\x05 \x01(\x05R\x04rssi\x12\x19\n\x08lora_snr\x18\x06 \x01(\x01R\x07loraSnr\x12\x18\n\x07channel\x18\x07 \x01(\rR\x07channel\x12\x19\n\x08rf_chain\x18\x08 \x01(\rR\x07rfChain\x12\x14\n\x05board\x18\t \x01(\rR\x05board\x12\x18\n\x07antenna\x18\n \x01(\rR\x07antenna\x12,\n\x08location\x18\x0b \x01(\x0b2\x10.common.LocationR\x08location\x12E\n\x13fine_timestamp_type\x18\x0c \x01(\x0e2\x15.gw.FineTimestampTypeR\x11fineTimestampType\x12V\n\x18encrypted_fine_timestamp\x18\r \x01(\x0b2\x1a.gw.EncryptedFineTimestampH\x00R\x16encryptedFineTimestamp\x12J\n\x14plain_fine_timestamp\x18\x0e \x01(\x0b2\x16.gw.PlainFineTimestampH\x00R\x12plainFineTimestamp\x12\x18\n\x07context\x18\x0f \x01(\x0cR\x07context\x12\x1b\n\tuplink_id\x18\x10 \x01(\x0cR\x08uplinkId\x12,\n\ncrc_status\x18\x11 \x01(\x0e2\r.gw.CRCStatusR\tcrcStatus\x12@\n\x08metadata\x18\x12 \x03(\x0b2$.gw.UplinkRxInfoLegacy.MetadataEntryR\x08metadata\x1a;\n\rMetadataEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x028\x01B\x10\n\x0efine_timestamp\"\x95\x05\n\x0cUplinkRxInfo\x12\x1d\n\ngateway_id\x18\x01 \x01(\tR\tgatewayId\x12\x1b\n\tuplink_id\x18\x02 \x01(\rR\x08uplinkId\x12.\n\x04time\x18\x03 \x01(\x0b2\x1a.google.protobuf.TimestampR\x04time\x12J\n\x14time_since_gps_epoch\x18\x04 \x01(\x0b2\x19.google.protobuf.DurationR\x11timeSinceGpsEpoch\x12S\n\x19fine_time_since_gps_epoch\x18\x05 \x01(\x0b2\x19.google.protobuf.DurationR\x15fineTimeSinceGpsEpoch\x12\x12\n\x04rssi\x18\x06 \x01(\x05R\x04rssi\x12\x10\n\x03snr\x18\x07 \x01(\x02R\x03snr\x12\x18\n\x07channel\x18\x08 \x01(\rR\x07channel\x12\x19\n\x08rf_chain\x18\t \x01(\rR\x07rfChain\x12\x14\n\x05board\x18\n \x01(\rR\x05board\x12\x18\n\x07antenna\x18\x0b \x01(\rR\x07antenna\x12,\n\x08location\x18\x0c \x01(\x0b2\x10.common.LocationR\x08location\x12\x18\n\x07context\x18\r \x01(\x0cR\x07context\x12:\n\x08metadata\x18\x0f \x03(\x0b2\x1e.gw.UplinkRxInfo.MetadataEntryR\x08metadata\x12,\n\ncrc_status\x18\x10 \x01(\x0e2\r.gw.CRCStatusR\tcrcStatus\x1a;\n\rMetadataEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x028\x01\"\xaf\x05\n\x14DownlinkTxInfoLegacy\x12\x1d\n\ngateway_id\x18\x01 \x01(\x0cR\tgatewayId\x12\x1c\n\tfrequency\x18\x05 \x01(\rR\tfrequency\x12\x14\n\x05power\x18\x06 \x01(\x05R\x05power\x122\n\nmodulation\x18\x07 \x01(\x0e2\x12.common.ModulationR\nmodulation\x12J\n\x14lora_modulation_info\x18\x08 \x01(\x0b2\x16.gw.LoraModulationInfoH\x00R\x12loraModulationInfo\x12G\n\x13fsk_modulation_info\x18\t \x01(\x0b2\x15.gw.FskModulationInfoH\x00R\x11fskModulationInfo\x12\x14\n\x05board\x18\n \x01(\rR\x05board\x12\x18\n\x07antenna\x18\x0b \x01(\rR\x07antenna\x12*\n\x06timing\x18\x0c \x01(\x0e2\x12.gw.DownlinkTimingR\x06timing\x12S\n\x17immediately_timing_info\x18\r \x01(\x0b2\x19.gw.ImmediatelyTimingInfoH\x01R\x15immediatelyTimingInfo\x12A\n\x11delay_timing_info\x18\x0e \x01(\x0b2\x13.gw.DelayTimingInfoH\x01R\x0fdelayTimingInfo\x12K\n\x15gps_epoch_timing_info\x18\x0f \x01(\x0b2\x16.gw.GPSEpochTimingInfoH\x01R\x12gpsEpochTimingInfo\x12\x18\n\x07context\x18\x10 \x01(\x0cR\x07contextB\x11\n\x0fmodulation_infoB\r\n\x0btiming_info\"\xe2\x01\n\x0eDownlinkTxInfo\x12\x1c\n\tfrequency\x18\x01 \x01(\rR\tfrequency\x12\x14\n\x05power\x18\x02 \x01(\x05R\x05power\x12.\n\nmodulation\x18\x03 \x01(\x0b2\x0e.gw.ModulationR\nmodulation\x12\x14\n\x05board\x18\x04 \x01(\rR\x05board\x12\x18\n\x07antenna\x18\x05 \x01(\rR\x07antenna\x12\"\n\x06timing\x18\x06 \x01(\x0b2\n.gw.TimingR\x06timing\x12\x18\n\x07context\x18\x07 \x01(\x0cR\x07context\"\xb9\x01\n\x06Timing\x12=\n\x0bimmediately\x18\x01 \x01(\x0b2\x19.gw.ImmediatelyTimingInfoH\x00R\x0bimmediately\x12+\n\x05delay\x18\x02 \x01(\x0b2\x13.gw.DelayTimingInfoH\x00R\x05delay\x125\n\tgps_epoch\x18\x03 \x01(\x0b2\x16.gw.GPSEpochTimingInfoH\x00R\x08gpsEpochB\x0c\n\nparameters\"\x17\n\x15ImmediatelyTimingInfo\"B\n\x0fDelayTimingInfo\x12/\n\x05delay\x18\x01 \x01(\x0b2\x19.google.protobuf.DurationR\x05delay\"`\n\x12GPSEpochTimingInfo\x12J\n\x14time_since_gps_epoch\x18\x01 \x01(\x0b2\x19.google.protobuf.DurationR\x11timeSinceGpsEpoch\"\x80\x02\n\x0bUplinkFrame\x12\x1f\n\x0bphy_payload\x18\x01 \x01(\x0cR\nphyPayload\x12<\n\x0etx_info_legacy\x18\x02 \x01(\x0b2\x16.gw.UplinkTxInfoLegacyR\x0ctxInfoLegacy\x12<\n\x0erx_info_legacy\x18\x03 \x01(\x0b2\x16.gw.UplinkRxInfoLegacyR\x0crxInfoLegacy\x12)\n\x07tx_info\x18\x04 \x01(\x0b2\x10.gw.UplinkTxInfoR\x06txInfo\x12)\n\x07rx_info\x18\x05 \x01(\x0b2\x10.gw.UplinkRxInfoR\x06rxInfo\"\x87\x01\n\x0eUplinkFrameSet\x12\x1f\n\x0bphy_payload\x18\x01 \x01(\x0cR\nphyPayload\x12)\n\x07tx_info\x18\x02 \x01(\x0b2\x10.gw.UplinkTxInfoR\x06txInfo\x12)\n\x07rx_info\x18\x03 \x03(\x0b2\x10.gw.UplinkRxInfoR\x06rxInfo\"\xd6\x01\n\rDownlinkFrame\x12\x1f\n\x0bdownlink_id\x18\x03 \x01(\rR\ndownlinkId\x12,\n\x12downlink_id_legacy\x18\x04 \x01(\x0cR\x10downlinkIdLegacy\x12+\n\x05items\x18\x05 \x03(\x0b2\x15.gw.DownlinkFrameItemR\x05items\x12*\n\x11gateway_id_legacy\x18\x06 \x01(\x0cR\x0fgatewayIdLegacy\x12\x1d\n\ngateway_id\x18\x07 \x01(\tR\tgatewayId\"\xa1\x01\n\x11DownlinkFrameItem\x12\x1f\n\x0bphy_payload\x18\x01 \x01(\x0cR\nphyPayload\x12>\n\x0etx_info_legacy\x18\x02 \x01(\x0b2\x18.gw.DownlinkTxInfoLegacyR\x0ctxInfoLegacy\x12+\n\x07tx_info\x18\x03 \x01(\x0b2\x12.gw.DownlinkTxInfoR\x06txInfo\"\xd6\x01\n\rDownlinkTxAck\x12*\n\x11gateway_id_legacy\x18\x01 \x01(\x0cR\x0fgatewayIdLegacy\x12\x1d\n\ngateway_id\x18\x06 \x01(\tR\tgatewayId\x12\x1f\n\x0bdownlink_id\x18\x02 \x01(\rR\ndownlinkId\x12,\n\x12downlink_id_legacy\x18\x04 \x01(\x0cR\x10downlinkIdLegacy\x12+\n\x05items\x18\x05 \x03(\x0b2\x15.gw.DownlinkTxAckItemR\x05items\"<\n\x11DownlinkTxAckItem\x12\'\n\x06status\x18\x01 \x01(\x0e2\x0f.gw.TxAckStatusR\x06status\"\xf3\x01\n\x14GatewayConfiguration\x12*\n\x11gateway_id_legacy\x18\x01 \x01(\x0cR\x0fgatewayIdLegacy\x12\x1d\n\ngateway_id\x18\x05 \x01(\tR\tgatewayId\x12\x18\n\x07version\x18\x02 \x01(\tR\x07version\x124\n\x08channels\x18\x03 \x03(\x0b2\x18.gw.ChannelConfigurationR\x08channels\x12@\n\x0estats_interval\x18\x04 \x01(\x0b2\x19.google.protobuf.DurationR\rstatsInterval\"\xe3\x02\n\x14ChannelConfiguration\x12\x1c\n\tfrequency\x18\x01 \x01(\rR\tfrequency\x12?\n\x11modulation_legacy\x18\x02 \x01(\x0e2\x12.common.ModulationR\x10modulationLegacy\x12P\n\x16lora_modulation_config\x18\x03 \x01(\x0b2\x18.gw.LoraModulationConfigH\x00R\x14loraModulationConfig\x12M\n\x15fsk_modulation_config\x18\x04 \x01(\x0b2\x17.gw.FskModulationConfigH\x00R\x13fskModulationConfig\x12\x14\n\x05board\x18\x05 \x01(\rR\x05board\x12 \n\x0bdemodulator\x18\x06 \x01(\rR\x0bdemodulatorB\x13\n\x11modulation_config\"\x8c\x01\n\x14LoraModulationConfig\x12)\n\x10bandwidth_legacy\x18\x01 \x01(\rR\x0fbandwidthLegacy\x12\x1c\n\tbandwidth\x18\x03 \x01(\rR\tbandwidth\x12+\n\x11spreading_factors\x18\x02 \x03(\rR\x10spreadingFactors\"x\n\x13FskModulationConfig\x12)\n\x10bandwidth_legacy\x18\x01 \x01(\rR\x0fbandwidthLegacy\x12\x1c\n\tbandwidth\x18\x03 \x01(\rR\tbandwidth\x12\x18\n\x07bitrate\x18\x02 \x01(\rR\x07bitrate\"\xc1\x02\n\x19GatewayCommandExecRequest\x12*\n\x11gateway_id_legacy\x18\x01 \x01(\x0cR\x0fgatewayIdLegacy\x12\x1d\n\ngateway_id\x18\x06 \x01(\tR\tgatewayId\x12\x18\n\x07command\x18\x02 \x01(\tR\x07command\x12\x17\n\x07exec_id\x18\x07 \x01(\rR\x06execId\x12\x14\n\x05stdin\x18\x04 \x01(\x0cR\x05stdin\x12P\n\x0benvironment\x18\x05 \x03(\x0b2..gw.GatewayCommandExecRequest.EnvironmentEntryR\x0benvironment\x1a>\n\x10EnvironmentEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x028\x01\"\xc6\x01\n\x1aGatewayCommandExecResponse\x12*\n\x11gateway_id_legacy\x18\x01 \x01(\x0cR\x0fgatewayIdLegacy\x12\x1d\n\ngateway_id\x18\x06 \x01(\tR\tgatewayId\x12\x17\n\x07exec_id\x18\x07 \x01(\rR\x06execId\x12\x16\n\x06stdout\x18\x03 \x01(\x0cR\x06stdout\x12\x16\n\x06stderr\x18\x04 \x01(\x0cR\x06stderr\x12\x14\n\x05error\x18\x05 \x01(\tR\x05error\"~\n\x17RawPacketForwarderEvent\x12*\n\x11gateway_id_legacy\x18\x01 \x01(\x0cR\x0fgatewayIdLegacy\x12\x1d\n\ngateway_id\x18\x04 \x01(\tR\tgatewayId\x12\x18\n\x07payload\x18\x03 \x01(\x0cR\x07payload\"\x80\x01\n\x19RawPacketForwarderCommand\x12*\n\x11gateway_id_legacy\x18\x01 \x01(\x0cR\x0fgatewayIdLegacy\x12\x1d\n\ngateway_id\x18\x04 \x01(\tR\tgatewayId\x12\x18\n\x07payload\x18\x03 \x01(\x0cR\x07payload\"\xa3\x01\n\tConnState\x12*\n\x11gateway_id_legacy\x18\x01 \x01(\x0cR\x0fgatewayIdLegacy\x12\x1d\n\ngateway_id\x18\x03 \x01(\tR\tgatewayId\x12)\n\x05state\x18\x02 \x01(\x0e2\x13.gw.ConnState.StateR\x05state\" \n\x05State\x12\x0b\n\x07OFFLINE\x10\x00\x12\n\n\x06ONLINE\x10\x01*\xb5\x01\n\x08CodeRate\x12\x10\n\x0cCR_UNDEFINED\x10\x00\x12\n\n\x06CR_4_5\x10\x01\x12\n\n\x06CR_4_6\x10\x02\x12\n\n\x06CR_4_7\x10\x03\x12\n\n\x06CR_4_8\x10\x04\x12\n\n\x06CR_3_8\x10\x05\x12\n\n\x06CR_2_6\x10\x06\x12\n\n\x06CR_1_4\x10\x07\x12\n\n\x06CR_1_6\x10\x08\x12\n\n\x06CR_5_6\x10\t\x12\r\n\tCR_LI_4_5\x10\n\x12\r\n\tCR_LI_4_6\x10\x0b\x12\r\n\tCR_LI_4_8\x10\x0c*;\n\x0eDownlinkTiming\x12\x0f\n\x0bIMMEDIATELY\x10\x00\x12\t\n\x05DELAY\x10\x01\x12\r\n\tGPS_EPOCH\x10\x02*7\n\x11FineTimestampType\x12\x08\n\x04NONE\x10\x00\x12\r\n\tENCRYPTED\x10\x01\x12\t\n\x05PLAIN\x10\x02*0\n\tCRCStatus\x12\n\n\x06NO_CRC\x10\x00\x12\x0b\n\x07BAD_CRC\x10\x01\x12\n\n\x06CRC_OK\x10\x02*\xbc\x01\n\x0bTxAckStatus\x12\x0b\n\x07IGNORED\x10\x00\x12\x06\n\x02OK\x10\x01\x12\x0c\n\x08TOO_LATE\x10\x02\x12\r\n\tTOO_EARLY\x10\x03\x12\x14\n\x10COLLISION_PACKET\x10\x04\x12\x14\n\x10COLLISION_BEACON\x10\x05\x12\x0b\n\x07TX_FREQ\x10\x06\x12\x0c\n\x08TX_POWER\x10\x07\x12\x10\n\x0cGPS_UNLOCKED\x10\x08\x12\x0e\n\nQUEUE_FULL\x10\t\x12\x12\n\x0eINTERNAL_ERROR\x10\nBj\n\x14io.chirpstack.api.gwB\x0cGatewayProtoP\x01Z-github.com/chirpstack/chirpstack/api/go/v4/gw\xaa\x02\x12Chirpstack.GatewayJ\xbd\x96\x01\n\x07\x12\x05\x00\x00\xc0\x05\x01\n\x08\n\x01\x0c\x12\x03\x00\x00\x12\n\x08\n\x01\x02\x12\x03\x02\x00\x0b\n\x08\n\x01\x08\x12\x03\x04\x00D\n\t\n\x02\x08\x0b\x12\x03\x04\x00D\n\x08\n\x01\x08\x12\x03\x05\x00-\n\t\n\x02\x08\x01\x12\x03\x05\x00-\n\x08\n\x01\x08\x12\x03\x06\x00\"\n\t\n\x02\x08\n\x12\x03\x06\x00\"\n\x08\n\x01\x08\x12\x03\x07\x00-\n\t\n\x02\x08\x08\x12\x03\x07\x00-\n\x08\n\x01\x08\x12\x03\x08\x00/\n\t\n\x02\x08%\x12\x03\x08\x00/\n\t\n\x02\x03\x00\x12\x03\n\x00\x1d\n\t\n\x02\x03\x01\x12\x03\x0b\x00)\n\t\n\x02\x03\x02\x12\x03\x0c\x00(\n\t\n\x02\x03\x03\x12\x03\r\x00&\n\n\n\x02\x05\x00\x12\x04\x0f\x00\x1d\x01\n\n\n\x03\x05\x00\x01\x12\x03\x0f\x05\r\n\x0b\n\x04\x05\x00\x02\x00\x12\x03\x10\x02\x13\n\x0c\n\x05\x05\x00\x02\x00\x01\x12\x03\x10\x02\x0e\n\x0c\n\x05\x05\x00\x02\x00\x02\x12\x03\x10\x11\x12\n\x13\n\x04\x05\x00\x02\x01\x12\x03\x11\x02\r\"\x06 LoRa\n\n\x0c\n\x05\x05\x00\x02\x01\x01\x12\x03\x11\x02\x08\n\x0c\n\x05\x05\x00\x02\x01\x02\x12\x03\x11\x0b\x0c\n\x0b\n\x04\x05\x00\x02\x02\x12\x03\x12\x02\r\n\x0c\n\x05\x05\x00\x02\x02\x01\x12\x03\x12\x02\x08\n\x0c\n\x05\x05\x00\x02\x02\x02\x12\x03\x12\x0b\x0c\n\x0b\n\x04\x05\x00\x02\x03\x12\x03\x13\x02\r\n\x0c\n\x05\x05\x00\x02\x03\x01\x12\x03\x13\x02\x08\n\x0c\n\x05\x05\x00\x02\x03\x02\x12\x03\x13\x0b\x0c\n\x0b\n\x04\x05\x00\x02\x04\x12\x03\x14\x02\r\n\x0c\n\x05\x05\x00\x02\x04\x01\x12\x03\x14\x02\x08\n\x0c\n\x05\x05\x00\x02\x04\x02\x12\x03\x14\x0b\x0c\n\x16\n\x04\x05\x00\x02\x05\x12\x03\x15\x02\r\"\t LR-FHSS\n\n\x0c\n\x05\x05\x00\x02\x05\x01\x12\x03\x15\x02\x08\n\x0c\n\x05\x05\x00\x02\x05\x02\x12\x03\x15\x0b\x0c\n\x0b\n\x04\x05\x00\x02\x06\x12\x03\x16\x02\r\n\x0c\n\x05\x05\x00\x02\x06\x01\x12\x03\x16\x02\x08\n\x0c\n\x05\x05\x00\x02\x06\x02\x12\x03\x16\x0b\x0c\n\x0b\n\x04\x05\x00\x02\x07\x12\x03\x17\x02\r\n\x0c\n\x05\x05\x00\x02\x07\x01\x12\x03\x17\x02\x08\n\x0c\n\x05\x05\x00\x02\x07\x02\x12\x03\x17\x0b\x0c\n\x0b\n\x04\x05\x00\x02\x08\x12\x03\x18\x02\r\n\x0c\n\x05\x05\x00\x02\x08\x01\x12\x03\x18\x02\x08\n\x0c\n\x05\x05\x00\x02\x08\x02\x12\x03\x18\x0b\x0c\n\x0b\n\x04\x05\x00\x02\t\x12\x03\x19\x02\r\n\x0c\n\x05\x05\x00\x02\t\x01\x12\x03\x19\x02\x08\n\x0c\n\x05\x05\x00\x02\t\x02\x12\x03\x19\x0b\x0c\n\x1b\n\x04\x05\x00\x02\n\x12\x03\x1a\x02\x11\"\x0e LoRa 2.4 gHz\n\n\x0c\n\x05\x05\x00\x02\n\x01\x12\x03\x1a\x02\x0b\n\x0c\n\x05\x05\x00\x02\n\x02\x12\x03\x1a\x0e\x10\n\x0b\n\x04\x05\x00\x02\x0b\x12\x03\x1b\x02\x11\n\x0c\n\x05\x05\x00\x02\x0b\x01\x12\x03\x1b\x02\x0b\n\x0c\n\x05\x05\x00\x02\x0b\x02\x12\x03\x1b\x0e\x10\n\x0b\n\x04\x05\x00\x02\x0c\x12\x03\x1c\x02\x11\n\x0c\n\x05\x05\x00\x02\x0c\x01\x12\x03\x1c\x02\x0b\n\x0c\n\x05\x05\x00\x02\x0c\x02\x12\x03\x1c\x0e\x10\n\n\n\x02\x05\x01\x12\x04\x1f\x00(\x01\n\n\n\x03\x05\x01\x01\x12\x03\x1f\x05\x13\n-\n\x04\x05\x01\x02\x00\x12\x03!\x02\x12\x1a  Send the downlink immediately.\n\n\x0c\n\x05\x05\x01\x02\x00\x01\x12\x03!\x02\r\n\x0c\n\x05\x05\x01\x02\x00\x02\x12\x03!\x10\x11\nL\n\x04\x05\x01\x02\x01\x12\x03$\x02\x0c\x1a? Send downlink at the given delay (based on provided context).\n\n\x0c\n\x05\x05\x01\x02\x01\x01\x12\x03$\x02\x07\n\x0c\n\x05\x05\x01\x02\x01\x02\x12\x03$\n\x0b\n-\n\x04\x05\x01\x02\x02\x12\x03\'\x02\x10\x1a  Send at given GPS epoch value.\n\n\x0c\n\x05\x05\x01\x02\x02\x01\x12\x03\'\x02\x0b\n\x0c\n\x05\x05\x01\x02\x02\x02\x12\x03\'\x0e\x0f\n\n\n\x02\x05\x02\x12\x04*\x003\x01\n\n\n\x03\x05\x02\x01\x12\x03*\x05\x16\n+\n\x04\x05\x02\x02\x00\x12\x03,\x02\x0b\x1a\x1e No fine-timestamp available.\n\n\x0c\n\x05\x05\x02\x02\x00\x01\x12\x03,\x02\x06\n\x0c\n\x05\x05\x02\x02\x00\x02\x12\x03,\t\n\n(\n\x04\x05\x02\x02\x01\x12\x03/\x02\x10\x1a\x1b Encrypted fine-timestamp.\n\n\x0c\n\x05\x05\x02\x02\x01\x01\x12\x03/\x02\x0b\n\x0c\n\x05\x05\x02\x02\x01\x02\x12\x03/\x0e\x0f\n$\n\x04\x05\x02\x02\x02\x12\x032\x02\x0c\x1a\x17 Plain fine-timestamp.\n\n\x0c\n\x05\x05\x02\x02\x02\x01\x12\x032\x02\x07\n\x0c\n\x05\x05\x02\x02\x02\x02\x12\x032\n\x0b\n\n\n\x02\x05\x03\x12\x045\x00>\x01\n\n\n\x03\x05\x03\x01\x12\x035\x05\x0e\n\x16\n\x04\x05\x03\x02\x00\x12\x037\x02\r\x1a\t No CRC.\n\n\x0c\n\x05\x05\x03\x02\x00\x01\x12\x037\x02\x08\n\x0c\n\x05\x05\x03\x02\x00\x02\x12\x037\x0b\x0c\n\x17\n\x04\x05\x03\x02\x01\x12\x03:\x02\x0e\x1a\n Bad CRC.\n\n\x0c\n\x05\x05\x03\x02\x01\x01\x12\x03:\x02\t\n\x0c\n\x05\x05\x03\x02\x01\x02\x12\x03:\x0c\r\n\x16\n\x04\x05\x03\x02\x02\x12\x03=\x02\r\x1a\t CRC OK.\n\n\x0c\n\x05\x05\x03\x02\x02\x01\x12\x03=\x02\x08\n\x0c\n\x05\x05\x03\x02\x02\x02\x12\x03=\x0b\x0c\n\n\n\x02\x05\x04\x12\x04@\x00c\x01\n\n\n\x03\x05\x04\x01\x12\x03@\x05\x10\nB\n\x04\x05\x04\x02\x00\x12\x03B\x02\x0e\x1a5 Ignored (when a previous item was already emitted).\n\n\x0c\n\x05\x05\x04\x02\x00\x01\x12\x03B\x02\t\n\x0c\n\x05\x05\x04\x02\x00\x02\x12\x03B\x0c\r\n7\n\x04\x05\x04\x02\x01\x12\x03E\x02\t\x1a* Packet has been programmed for downlink.\n\n\x0c\n\x05\x05\x04\x02\x01\x01\x12\x03E\x02\x04\n\x0c\n\x05\x05\x04\x02\x01\x02\x12\x03E\x07\x08\n]\n\x04\x05\x04\x02\x02\x12\x03I\x02\x0f\x1aP Rejected because it was already too late to program this packet for\n downlink.\n\n\x0c\n\x05\x05\x04\x02\x02\x01\x12\x03I\x02\n\n\x0c\n\x05\x05\x04\x02\x02\x02\x12\x03I\r\x0e\nQ\n\x04\x05\x04\x02\x03\x12\x03L\x02\x10\x1aD Rejected because downlink packet timestamp is too much in advance.\n\n\x0c\n\x05\x05\x04\x02\x03\x01\x12\x03L\x02\x0b\n\x0c\n\x05\x05\x04\x02\x03\x02\x12\x03L\x0e\x0f\n^\n\x04\x05\x04\x02\x04\x12\x03P\x02\x17\x1aQ Rejected because there was already a packet programmed in requested\n timeframe.\n\n\x0c\n\x05\x05\x04\x02\x04\x01\x12\x03P\x02\x12\n\x0c\n\x05\x05\x04\x02\x04\x02\x12\x03P\x15\x16\nZ\n\x04\x05\x04\x02\x05\x12\x03S\x02\x17\x1aM Rejected because there was already a beacon planned in requested timeframe.\n\n\x0c\n\x05\x05\x04\x02\x05\x01\x12\x03S\x02\x12\n\x0c\n\x05\x05\x04\x02\x05\x02\x12\x03S\x15\x16\nT\n\x04\x05\x04\x02\x06\x12\x03V\x02\x0e\x1aG Rejected because requested frequency is not supported by TX RF chain.\n\n\x0c\n\x05\x05\x04\x02\x06\x01\x12\x03V\x02\t\n\x0c\n\x05\x05\x04\x02\x06\x02\x12\x03V\x0c\r\nL\n\x04\x05\x04\x02\x07\x12\x03Y\x02\x0f\x1a? Rejected because requested power is not supported by gateway.\n\n\x0c\n\x05\x05\x04\x02\x07\x01\x12\x03Y\x02\n\n\x0c\n\x05\x05\x04\x02\x07\x02\x12\x03Y\r\x0e\nQ\n\x04\x05\x04\x02\x08\x12\x03\\\x02\x13\x1aD Rejected because GPS is unlocked, so GPS timestamp cannot be used.\n\n\x0c\n\x05\x05\x04\x02\x08\x01\x12\x03\\\x02\x0e\n\x0c\n\x05\x05\x04\x02\x08\x02\x12\x03\\\x11\x12\n&\n\x04\x05\x04\x02\t\x12\x03_\x02\x11\x1a\x19 Downlink queue is full.\n\n\x0c\n\x05\x05\x04\x02\t\x01\x12\x03_\x02\x0c\n\x0c\n\x05\x05\x04\x02\t\x02\x12\x03_\x0f\x10\n\x1e\n\x04\x05\x04\x02\n\x12\x03b\x02\x16\x1a\x11 Internal error.\n\n\x0c\n\x05\x05\x04\x02\n\x01\x12\x03b\x02\x10\n\x0c\n\x05\x05\x04\x02\n\x02\x12\x03b\x13\x15\n\n\n\x02\x04\x00\x12\x04e\x00p\x01\n\n\n\x03\x04\x00\x01\x12\x03e\x08\x12\n\x0c\n\x04\x04\x00\x08\x00\x12\x04f\x02o\x03\n\x0c\n\x05\x04\x00\x08\x00\x01\x12\x03f\x08\x12\n+\n\x04\x04\x00\x02\x00\x12\x03h\x04 \x1a\x1e LoRa modulation information.\n\n\x0c\n\x05\x04\x00\x02\x00\x06\x12\x03h\x04\x16\n\x0c\n\x05\x04\x00\x02\x00\x01\x12\x03h\x17\x1b\n\x0c\n\x05\x04\x00\x02\x00\x03\x12\x03h\x1e\x1f\n*\n\x04\x04\x00\x02\x01\x12\x03k\x04\x1e\x1a\x1d FSK modulation information.\n\n\x0c\n\x05\x04\x00\x02\x01\x06\x12\x03k\x04\x15\n\x0c\n\x05\x04\x00\x02\x01\x01\x12\x03k\x16\x19\n\x0c\n\x05\x04\x00\x02\x01\x03\x12\x03k\x1c\x1d\n.\n\x04\x04\x00\x02\x02\x12\x03n\x04%\x1a! LR-FHSS modulation information.\n\n\x0c\n\x05\x04\x00\x02\x02\x06\x12\x03n\x04\x18\n\x0c\n\x05\x04\x00\x02\x02\x01\x12\x03n\x19 \n\x0c\n\x05\x04\x00\x02\x02\x03\x12\x03n#$\n\x0b\n\x02\x04\x01\x12\x05r\x00\x83\x01\x01\n\n\n\x03\x04\x01\x01\x12\x03r\x08\x1a\n\x1e\n\x04\x04\x01\x02\x00\x12\x03t\x02\x17\x1a\x11 Frequency (Hz).\n\n\x0c\n\x05\x04\x01\x02\x00\x05\x12\x03t\x02\x08\n\x0c\n\x05\x04\x01\x02\x00\x01\x12\x03t\t\x12\n\x0c\n\x05\x04\x01\x02\x00\x03\x12\x03t\x15\x16\n\x1a\n\x04\x04\x01\x02\x01\x12\x03w\x02#\x1a\r Modulation.\n\n\x0c\n\x05\x04\x01\x02\x01\x06\x12\x03w\x02\x13\n\x0c\n\x05\x04\x01\x02\x01\x01\x12\x03w\x14\x1e\n\x0c\n\x05\x04\x01\x02\x01\x03\x12\x03w!\"\n\r\n\x04\x04\x01\x08\x00\x12\x05y\x02\x82\x01\x03\n\x0c\n\x05\x04\x01\x08\x00\x01\x12\x03y\x08\x17\n+\n\x04\x04\x01\x02\x02\x12\x03{\x040\x1a\x1e LoRa modulation information.\n\n\x0c\n\x05\x04\x01\x02\x02\x06\x12\x03{\x04\x16\n\x0c\n\x05\x04\x01\x02\x02\x01\x12\x03{\x17+\n\x0c\n\x05\x04\x01\x02\x02\x03\x12\x03{./\n*\n\x04\x04\x01\x02\x03\x12\x03~\x04.\x1a\x1d FSK modulation information.\n\n\x0c\n\x05\x04\x01\x02\x03\x06\x12\x03~\x04\x15\n\x0c\n\x05\x04\x01\x02\x03\x01\x12\x03~\x16)\n\x0c\n\x05\x04\x01\x02\x03\x03\x12\x03~,-\n/\n\x04\x04\x01\x02\x04\x12\x04\x81\x01\x045\x1a! LR-FHSS modulation information.\n\n\r\n\x05\x04\x01\x02\x04\x06\x12\x04\x81\x01\x04\x18\n\r\n\x05\x04\x01\x02\x04\x01\x12\x04\x81\x01\x190\n\r\n\x05\x04\x01\x02\x04\x03\x12\x04\x81\x0134\n\x0c\n\x02\x04\x02\x12\x06\x85\x01\x00\x8b\x01\x01\n\x0b\n\x03\x04\x02\x01\x12\x04\x85\x01\x08\x14\n\x1f\n\x04\x04\x02\x02\x00\x12\x04\x87\x01\x02\x17\x1a\x11 Frequency (Hz).\n\n\r\n\x05\x04\x02\x02\x00\x05\x12\x04\x87\x01\x02\x08\n\r\n\x05\x04\x02\x02\x00\x01\x12\x04\x87\x01\t\x12\n\r\n\x05\x04\x02\x02\x00\x03\x12\x04\x87\x01\x15\x16\n\x1b\n\x04\x04\x02\x02\x01\x12\x04\x8a\x01\x02\x1c\x1a\r Modulation.\n\n\r\n\x05\x04\x02\x02\x01\x06\x12\x04\x8a\x01\x02\x0c\n\r\n\x05\x04\x02\x02\x01\x01\x12\x04\x8a\x01\r\x17\n\r\n\x05\x04\x02\x02\x01\x03\x12\x04\x8a\x01\x1a\x1b\n\x0c\n\x02\x04\x03\x12\x06\x8d\x01\x00\x9c\x01\x01\n\x0b\n\x03\x04\x03\x01\x12\x04\x8d\x01\x08\x1a\n\x1a\n\x04\x04\x03\x02\x00\x12\x04\x8f\x01\x02\x17\x1a\x0c Bandwidth.\n\n\r\n\x05\x04\x03\x02\x00\x05\x12\x04\x8f\x01\x02\x08\n\r\n\x05\x04\x03\x02\x00\x01\x12\x04\x8f\x01\t\x12\n\r\n\x05\x04\x03\x02\x00\x03\x12\x04\x8f\x01\x15\x16\n \n\x04\x04\x03\x02\x01\x12\x04\x92\x01\x02\x1e\x1a\x12 Speading-factor.\n\n\r\n\x05\x04\x03\x02\x01\x05\x12\x04\x92\x01\x02\x08\n\r\n\x05\x04\x03\x02\x01\x01\x12\x04\x92\x01\t\x19\n\r\n\x05\x04\x03\x02\x01\x03\x12\x04\x92\x01\x1c\x1d\n\x1a\n\x04\x04\x03\x02\x02\x12\x04\x95\x01\x02\x1e\x1a\x0c Code-rate.\n\n\r\n\x05\x04\x03\x02\x02\x05\x12\x04\x95\x01\x02\x08\n\r\n\x05\x04\x03\x02\x02\x01\x12\x04\x95\x01\t\x19\n\r\n\x05\x04\x03\x02\x02\x03\x12\x04\x95\x01\x1c\x1d\n\x1a\n\x04\x04\x03\x02\x03\x12\x04\x98\x01\x02\x19\x1a\x0c Code-rate.\n\n\r\n\x05\x04\x03\x02\x03\x06\x12\x04\x98\x01\x02\n\n\r\n\x05\x04\x03\x02\x03\x01\x12\x04\x98\x01\x0b\x14\n\r\n\x05\x04\x03\x02\x03\x03\x12\x04\x98\x01\x17\x18\n\'\n\x04\x04\x03\x02\x04\x12\x04\x9b\x01\x02\"\x1a\x19 Polarization inversion.\n\n\r\n\x05\x04\x03\x02\x04\x05\x12\x04\x9b\x01\x02\x06\n\r\n\x05\x04\x03\x02\x04\x01\x12\x04\x9b\x01\x07\x1d\n\r\n\x05\x04\x03\x02\x04\x03\x12\x04\x9b\x01 !\n\x0c\n\x02\x04\x04\x12\x06\x9e\x01\x00\xa4\x01\x01\n\x0b\n\x03\x04\x04\x01\x12\x04\x9e\x01\x08\x19\n$\n\x04\x04\x04\x02\x00\x12\x04\xa0\x01\x02!\x1a\x16 Frequency deviation.\n\n\r\n\x05\x04\x04\x02\x00\x05\x12\x04\xa0\x01\x02\x08\n\r\n\x05\x04\x04\x02\x00\x01\x12\x04\xa0\x01\t\x1c\n\r\n\x05\x04\x04\x02\x00\x03\x12\x04\xa0\x01\x1f \n*\n\x04\x04\x04\x02\x01\x12\x04\xa3\x01\x02\x16\x1a\x1c FSK datarate (bits / sec).\n\n\r\n\x05\x04\x04\x02\x01\x05\x12\x04\xa3\x01\x02\x08\n\r\n\x05\x04\x04\x02\x01\x01\x12\x04\xa3\x01\t\x11\n\r\n\x05\x04\x04\x02\x01\x03\x12\x04\xa3\x01\x14\x15\n\x0c\n\x02\x04\x05\x12\x06\xa6\x01\x00\xb3\x01\x01\n\x0b\n\x03\x04\x05\x01\x12\x04\xa6\x01\x08\x1c\n4\n\x04\x04\x05\x02\x00\x12\x04\xa8\x01\x02%\x1a& Operating channel width (OCW) in Hz.\n\n\r\n\x05\x04\x05\x02\x00\x05\x12\x04\xa8\x01\x02\x08\n\r\n\x05\x04\x05\x02\x00\x01\x12\x04\xa8\x01\t \n\r\n\x05\x04\x05\x02\x00\x03\x12\x04\xa8\x01#$\n6\n\x04\x04\x05\x02\x01\x12\x04\xac\x01\x02\x1e\x1a( Code-rate.\n Deprecated: use code_rate.\n\n\r\n\x05\x04\x05\x02\x01\x05\x12\x04\xac\x01\x02\x08\n\r\n\x05\x04\x05\x02\x01\x01\x12\x04\xac\x01\t\x19\n\r\n\x05\x04\x05\x02\x01\x03\x12\x04\xac\x01\x1c\x1d\n\x1a\n\x04\x04\x05\x02\x02\x12\x04\xaf\x01\x02\x19\x1a\x0c Code-rate.\n\n\r\n\x05\x04\x05\x02\x02\x06\x12\x04\xaf\x01\x02\n\n\r\n\x05\x04\x05\x02\x02\x01\x12\x04\xaf\x01\x0b\x14\n\r\n\x05\x04\x05\x02\x02\x03\x12\x04\xaf\x01\x17\x18\n-\n\x04\x04\x05\x02\x03\x12\x04\xb2\x01\x02\x18\x1a\x1f Hopping grid number of steps.\n\n\r\n\x05\x04\x05\x02\x03\x05\x12\x04\xb2\x01\x02\x08\n\r\n\x05\x04\x05\x02\x03\x01\x12\x04\xb2\x01\t\x13\n\r\n\x05\x04\x05\x02\x03\x03\x12\x04\xb2\x01\x16\x17\n\x0c\n\x02\x04\x06\x12\x06\xb5\x01\x00\xbe\x01\x01\n\x0b\n\x03\x04\x06\x01\x12\x04\xb5\x01\x08\x1e\nE\n\x04\x04\x06\x02\x00\x12\x04\xb7\x01\x02\x1b\x1a7 AES key index used for encrypting the fine timestamp.\n\n\r\n\x05\x04\x06\x02\x00\x05\x12\x04\xb7\x01\x02\x08\n\r\n\x05\x04\x06\x02\x00\x01\x12\x04\xb7\x01\t\x16\n\r\n\x05\x04\x06\x02\x00\x03\x12\x04\xb7\x01\x19\x1a\nU\n\x04\x04\x06\x02\x01\x12\x04\xba\x01\x02\x19\x1aG Encrypted \'main\' fine-timestamp (ns precision part of the timestamp).\n\n\r\n\x05\x04\x06\x02\x01\x05\x12\x04\xba\x01\x02\x07\n\r\n\x05\x04\x06\x02\x01\x01\x12\x04\xba\x01\x08\x14\n\r\n\x05\x04\x06\x02\x01\x03\x12\x04\xba\x01\x17\x18\n\x18\n\x04\x04\x06\x02\x02\x12\x04\xbd\x01\x02\x14\x1a\n FPGA ID.\n\n\r\n\x05\x04\x06\x02\x02\x05\x12\x04\xbd\x01\x02\x07\n\r\n\x05\x04\x06\x02\x02\x01\x12\x04\xbd\x01\x08\x0f\n\r\n\x05\x04\x06\x02\x02\x03\x12\x04\xbd\x01\x12\x13\n\x0c\n\x02\x04\x07\x12\x06\xc0\x01\x00\xc3\x01\x01\n\x0b\n\x03\x04\x07\x01\x12\x04\xc0\x01\x08\x1a\n\x1f\n\x04\x04\x07\x02\x00\x12\x04\xc2\x01\x02%\x1a\x11 Full timestamp.\n\n\r\n\x05\x04\x07\x02\x00\x06\x12\x04\xc2\x01\x02\x1b\n\r\n\x05\x04\x07\x02\x00\x01\x12\x04\xc2\x01\x1c \n\r\n\x05\x04\x07\x02\x00\x03\x12\x04\xc2\x01#$\n\x0c\n\x02\x04\x08\x12\x06\xc5\x01\x00\xf4\x01\x01\n\x0b\n\x03\x04\x08\x01\x12\x04\xc5\x01\x08\x14\n8\n\x04\x04\x08\x02\x00\x12\x04\xc8\x01\x02\x1e\x1a* Gateway ID.\n Deprecated: use gateway_id.\n\n\r\n\x05\x04\x08\x02\x00\x05\x12\x04\xc8\x01\x02\x07\n\r\n\x05\x04\x08\x02\x00\x01\x12\x04\xc8\x01\x08\x19\n\r\n\x05\x04\x08\x02\x00\x03\x12\x04\xc8\x01\x1c\x1d\n\x1b\n\x04\x04\x08\x02\x01\x12\x04\xcb\x01\x02\x19\x1a\r Gateway ID.\n\n\r\n\x05\x04\x08\x02\x01\x05\x12\x04\xcb\x01\x02\x08\n\r\n\x05\x04\x08\x02\x01\x01\x12\x04\xcb\x01\t\x13\n\r\n\x05\x04\x08\x02\x01\x03\x12\x04\xcb\x01\x16\x18\n\x1d\n\x04\x04\x08\x02\x02\x12\x04\xce\x01\x02%\x1a\x0f Gateway time.\n\n\r\n\x05\x04\x08\x02\x02\x06\x12\x04\xce\x01\x02\x1b\n\r\n\x05\x04\x08\x02\x02\x01\x12\x04\xce\x01\x1c \n\r\n\x05\x04\x08\x02\x02\x03\x12\x04\xce\x01#$\n!\n\x04\x04\x08\x02\x03\x12\x04\xd1\x01\x02\x1f\x1a\x13 Gateway location.\n\n\r\n\x05\x04\x08\x02\x03\x06\x12\x04\xd1\x01\x02\x11\n\r\n\x05\x04\x08\x02\x03\x01\x12\x04\xd1\x01\x12\x1a\n\r\n\x05\x04\x08\x02\x03\x03\x12\x04\xd1\x01\x1d\x1e\ns\n\x04\x04\x08\x02\x04\x12\x04\xd5\x01\x02\x1c\x1ae Gateway configuration version (this maps to the config_version sent\n by ChirpStack to the gateway).\n\n\r\n\x05\x04\x08\x02\x04\x05\x12\x04\xd5\x01\x02\x08\n\r\n\x05\x04\x08\x02\x04\x01\x12\x04\xd5\x01\t\x17\n\r\n\x05\x04\x08\x02\x04\x03\x12\x04\xd5\x01\x1a\x1b\n1\n\x04\x04\x08\x02\x05\x12\x04\xd8\x01\x02!\x1a# Number of radio packets received.\n\n\r\n\x05\x04\x08\x02\x05\x05\x12\x04\xd8\x01\x02\x08\n\r\n\x05\x04\x08\x02\x05\x01\x12\x04\xd8\x01\t\x1c\n\r\n\x05\x04\x08\x02\x05\x03\x12\x04\xd8\x01\x1f \nD\n\x04\x04\x08\x02\x06\x12\x04\xdb\x01\x02$\x1a6 Number of radio packets received with valid PHY CRC.\n\n\r\n\x05\x04\x08\x02\x06\x05\x12\x04\xdb\x01\x02\x08\n\r\n\x05\x04\x08\x02\x06\x01\x12\x04\xdb\x01\t\x1f\n\r\n\x05\x04\x08\x02\x06\x03\x12\x04\xdb\x01\"#\nE\n\x04\x04\x08\x02\x07\x12\x04\xde\x01\x02!\x1a7 Number of downlink packets received for transmission.\n\n\r\n\x05\x04\x08\x02\x07\x05\x12\x04\xde\x01\x02\x08\n\r\n\x05\x04\x08\x02\x07\x01\x12\x04\xde\x01\t\x1c\n\r\n\x05\x04\x08\x02\x07\x03\x12\x04\xde\x01\x1f \n3\n\x04\x04\x08\x02\x08\x12\x04\xe1\x01\x02 \x1a% Number of downlink packets emitted.\n\n\r\n\x05\x04\x08\x02\x08\x05\x12\x04\xe1\x01\x02\x08\n\r\n\x05\x04\x08\x02\x08\x01\x12\x04\xe1\x01\t\x1b\n\r\n\x05\x04\x08\x02\x08\x03\x12\x04\xe1\x01\x1e\x1f\n-\n\x04\x04\x08\x02\t\x12\x04\xe4\x01\x02$\x1a\x1f Additional gateway meta-data.\n\n\r\n\x05\x04\x08\x02\t\x06\x12\x04\xe4\x01\x02\x15\n\r\n\x05\x04\x08\x02\t\x01\x12\x04\xe4\x01\x16\x1e\n\r\n\x05\x04\x08\x02\t\x03\x12\x04\xe4\x01!#\n)\n\x04\x04\x08\x02\n\x12\x04\xe7\x01\x024\x1a\x1b Tx packets per frequency.\n\n\r\n\x05\x04\x08\x02\n\x06\x12\x04\xe7\x01\x02\x15\n\r\n\x05\x04\x08\x02\n\x01\x12\x04\xe7\x01\x16.\n\r\n\x05\x04\x08\x02\n\x03\x12\x04\xe7\x0113\n)\n\x04\x04\x08\x02\x0b\x12\x04\xea\x01\x024\x1a\x1b Rx packets per frequency.\n\n\r\n\x05\x04\x08\x02\x0b\x06\x12\x04\xea\x01\x02\x15\n\r\n\x05\x04\x08\x02\x0b\x01\x12\x04\xea\x01\x16.\n\r\n\x05\x04\x08\x02\x0b\x03\x12\x04\xea\x0113\n5\n\x04\x04\x08\x02\x0c\x12\x04\xed\x01\x02=\x1a\' Tx packets per modulation parameters.\n\n\r\n\x05\x04\x08\x02\x0c\x04\x12\x04\xed\x01\x02\n\n\r\n\x05\x04\x08\x02\x0c\x06\x12\x04\xed\x01\x0b\x1d\n\r\n\x05\x04\x08\x02\x0c\x01\x12\x04\xed\x01\x1e7\n\r\n\x05\x04\x08\x02\x0c\x03\x12\x04\xed\x01:<\n5\n\x04\x04\x08\x02\r\x12\x04\xf0\x01\x02=\x1a\' Rx packets per modulation parameters.\n\n\r\n\x05\x04\x08\x02\r\x04\x12\x04\xf0\x01\x02\n\n\r\n\x05\x04\x08\x02\r\x06\x12\x04\xf0\x01\x0b\x1d\n\r\n\x05\x04\x08\x02\r\x01\x12\x04\xf0\x01\x1e7\n\r\n\x05\x04\x08\x02\r\x03\x12\x04\xf0\x01:<\n&\n\x04\x04\x08\x02\x0e\x12\x04\xf3\x01\x021\x1a\x18 Tx packets per status.\n\n\r\n\x05\x04\x08\x02\x0e\x06\x12\x04\xf3\x01\x02\x15\n\r\n\x05\x04\x08\x02\x0e\x01\x12\x04\xf3\x01\x16+\n\r\n\x05\x04\x08\x02\x0e\x03\x12\x04\xf3\x01.0\n\x0c\n\x02\x04\t\x12\x06\xf6\x01\x00\xfc\x01\x01\n\x0b\n\x03\x04\t\x01\x12\x04\xf6\x01\x08\x1a\n\x1b\n\x04\x04\t\x02\x00\x12\x04\xf8\x01\x02\x1c\x1a\r Modulation.\n\n\r\n\x05\x04\t\x02\x00\x06\x12\x04\xf8\x01\x02\x0c\n\r\n\x05\x04\t\x02\x00\x01\x12\x04\xf8\x01\r\x17\n\r\n\x05\x04\t\x02\x00\x03\x12\x04\xf8\x01\x1a\x1b\n\x16\n\x04\x04\t\x02\x01\x12\x04\xfb\x01\x02\x13\x1a\x08 Count.\n\n\r\n\x05\x04\t\x02\x01\x05\x12\x04\xfb\x01\x02\x08\n\r\n\x05\x04\t\x02\x01\x01\x12\x04\xfb\x01\t\x0e\n\r\n\x05\x04\t\x02\x01\x03\x12\x04\xfb\x01\x11\x12\n\x0c\n\x02\x04\n\x12\x06\xfe\x01\x00\xb6\x02\x01\n\x0b\n\x03\x04\n\x01\x12\x04\xfe\x01\x08\x1a\n\x1b\n\x04\x04\n\x02\x00\x12\x04\x80\x02\x02\x17\x1a\r Gateway ID.\n\n\r\n\x05\x04\n\x02\x00\x05\x12\x04\x80\x02\x02\x07\n\r\n\x05\x04\n\x02\x00\x01\x12\x04\x80\x02\x08\x12\n\r\n\x05\x04\n\x02\x00\x03\x12\x04\x80\x02\x15\x16\nE\n\x04\x04\n\x02\x01\x12\x04\x83\x02\x02%\x1a7 RX time (only set when the gateway has a GPS module).\n\n\r\n\x05\x04\n\x02\x01\x06\x12\x04\x83\x02\x02\x1b\n\r\n\x05\x04\n\x02\x01\x01\x12\x04\x83\x02\x1c \n\r\n\x05\x04\n\x02\x01\x03\x12\x04\x83\x02#$\nU\n\x04\x04\n\x02\x02\x12\x04\x86\x02\x024\x1aG RX time since GPS epoch (only set when the gateway has a GPS module).\n\n\r\n\x05\x04\n\x02\x02\x06\x12\x04\x86\x02\x02\x1a\n\r\n\x05\x04\n\x02\x02\x01\x12\x04\x86\x02\x1b/\n\r\n\x05\x04\n\x02\x02\x03\x12\x04\x86\x0223\n\x15\n\x04\x04\n\x02\x03\x12\x04\x89\x02\x02\x11\x1a\x07 RSSI.\n\n\r\n\x05\x04\n\x02\x03\x05\x12\x04\x89\x02\x02\x07\n\r\n\x05\x04\n\x02\x03\x01\x12\x04\x89\x02\x08\x0c\n\r\n\x05\x04\n\x02\x03\x03\x12\x04\x89\x02\x0f\x10\n\x19\n\x04\x04\n\x02\x04\x12\x04\x8c\x02\x02\x16\x1a\x0b LoRa SNR.\n\n\r\n\x05\x04\n\x02\x04\x05\x12\x04\x8c\x02\x02\x08\n\r\n\x05\x04\n\x02\x04\x01\x12\x04\x8c\x02\t\x11\n\r\n\x05\x04\n\x02\x04\x03\x12\x04\x8c\x02\x14\x15\n\x18\n\x04\x04\n\x02\x05\x12\x04\x8f\x02\x02\x15\x1a\n Channel.\n\n\r\n\x05\x04\n\x02\x05\x05\x12\x04\x8f\x02\x02\x08\n\r\n\x05\x04\n\x02\x05\x01\x12\x04\x8f\x02\t\x10\n\r\n\x05\x04\n\x02\x05\x03\x12\x04\x8f\x02\x13\x14\n\x19\n\x04\x04\n\x02\x06\x12\x04\x92\x02\x02\x16\x1a\x0b RF Chain.\n\n\r\n\x05\x04\n\x02\x06\x05\x12\x04\x92\x02\x02\x08\n\r\n\x05\x04\n\x02\x06\x01\x12\x04\x92\x02\t\x11\n\r\n\x05\x04\n\x02\x06\x03\x12\x04\x92\x02\x14\x15\n\x16\n\x04\x04\n\x02\x07\x12\x04\x95\x02\x02\x13\x1a\x08 Board.\n\n\r\n\x05\x04\n\x02\x07\x05\x12\x04\x95\x02\x02\x08\n\r\n\x05\x04\n\x02\x07\x01\x12\x04\x95\x02\t\x0e\n\r\n\x05\x04\n\x02\x07\x03\x12\x04\x95\x02\x11\x12\n\x18\n\x04\x04\n\x02\x08\x12\x04\x98\x02\x02\x16\x1a\n Antenna.\n\n\r\n\x05\x04\n\x02\x08\x05\x12\x04\x98\x02\x02\x08\n\r\n\x05\x04\n\x02\x08\x01\x12\x04\x98\x02\t\x10\n\r\n\x05\x04\n\x02\x08\x03\x12\x04\x98\x02\x13\x15\n\x19\n\x04\x04\n\x02\t\x12\x04\x9b\x02\x02 \x1a\x0b Location.\n\n\r\n\x05\x04\n\x02\t\x06\x12\x04\x9b\x02\x02\x11\n\r\n\x05\x04\n\x02\t\x01\x12\x04\x9b\x02\x12\x1a\n\r\n\x05\x04\n\x02\t\x03\x12\x04\x9b\x02\x1d\x1f\n$\n\x04\x04\n\x02\n\x12\x04\x9e\x02\x02-\x1a\x16 Fine-timestamp type.\n\n\r\n\x05\x04\n\x02\n\x06\x12\x04\x9e\x02\x02\x13\n\r\n\x05\x04\n\x02\n\x01\x12\x04\x9e\x02\x14\'\n\r\n\x05\x04\n\x02\n\x03\x12\x04\x9e\x02*,\n&\n\x04\x04\n\x08\x00\x12\x06\xa1\x02\x02\xa7\x02\x03\x1a\x16 Fine-timestamp data.\n\n\r\n\x05\x04\n\x08\x00\x01\x12\x04\xa1\x02\x08\x16\n.\n\x04\x04\n\x02\x0b\x12\x04\xa3\x02\x049\x1a  Encrypted fine-timestamp data.\n\n\r\n\x05\x04\n\x02\x0b\x06\x12\x04\xa3\x02\x04\x1a\n\r\n\x05\x04\n\x02\x0b\x01\x12\x04\xa3\x02\x1b3\n\r\n\x05\x04\n\x02\x0b\x03\x12\x04\xa3\x0268\n*\n\x04\x04\n\x02\x0c\x12\x04\xa6\x02\x041\x1a\x1c Plain fine-timestamp data.\n\n\r\n\x05\x04\n\x02\x0c\x06\x12\x04\xa6\x02\x04\x16\n\r\n\x05\x04\n\x02\x0c\x01\x12\x04\xa6\x02\x17+\n\r\n\x05\x04\n\x02\x0c\x03\x12\x04\xa6\x02.0\n)\n\x04\x04\n\x02\r\x12\x04\xaa\x02\x02\x15\x1a\x1b Gateway specific context.\n\n\r\n\x05\x04\n\x02\r\x05\x12\x04\xaa\x02\x02\x07\n\r\n\x05\x04\n\x02\r\x01\x12\x04\xaa\x02\x08\x0f\n\r\n\x05\x04\n\x02\r\x03\x12\x04\xaa\x02\x12\x14\n~\n\x04\x04\n\x02\x0e\x12\x04\xaf\x02\x02\x17\x1ap Uplink ID (UUID bytes).\n Unique and random ID which can be used to correlate the uplink across\n multiple logs.\n\n\r\n\x05\x04\n\x02\x0e\x05\x12\x04\xaf\x02\x02\x07\n\r\n\x05\x04\n\x02\x0e\x01\x12\x04\xaf\x02\x08\x11\n\r\n\x05\x04\n\x02\x0e\x03\x12\x04\xaf\x02\x14\x16\n\x1b\n\x04\x04\n\x02\x0f\x12\x04\xb2\x02\x02\x1c\x1a\r CRC status.\n\n\r\n\x05\x04\n\x02\x0f\x06\x12\x04\xb2\x02\x02\x0b\n\r\n\x05\x04\n\x02\x0f\x01\x12\x04\xb2\x02\x0c\x16\n\r\n\x05\x04\n\x02\x0f\x03\x12\x04\xb2\x02\x19\x1b\n\'\n\x04\x04\n\x02\x10\x12\x04\xb5\x02\x02$\x1a\x19 Optional meta-data map.\n\n\r\n\x05\x04\n\x02\x10\x06\x12\x04\xb5\x02\x02\x15\n\r\n\x05\x04\n\x02\x10\x01\x12\x04\xb5\x02\x16\x1e\n\r\n\x05\x04\n\x02\x10\x03\x12\x04\xb5\x02!#\n\x0c\n\x02\x04\x0b\x12\x06\xb8\x02\x00\xe8\x02\x01\n\x0b\n\x03\x04\x0b\x01\x12\x04\xb8\x02\x08\x14\n\x1b\n\x04\x04\x0b\x02\x00\x12\x04\xba\x02\x02\x18\x1a\r Gateway ID.\n\n\r\n\x05\x04\x0b\x02\x00\x05\x12\x04\xba\x02\x02\x08\n\r\n\x05\x04\x0b\x02\x00\x01\x12\x04\xba\x02\t\x13\n\r\n\x05\x04\x0b\x02\x00\x03\x12\x04\xba\x02\x16\x17\n\x1a\n\x04\x04\x0b\x02\x01\x12\x04\xbd\x02\x02\x17\x1a\x0c Uplink ID.\n\n\r\n\x05\x04\x0b\x02\x01\x05\x12\x04\xbd\x02\x02\x08\n\r\n\x05\x04\x0b\x02\x01\x01\x12\x04\xbd\x02\t\x12\n\r\n\x05\x04\x0b\x02\x01\x03\x12\x04\xbd\x02\x15\x16\nE\n\x04\x04\x0b\x02\x02\x12\x04\xc0\x02\x02%\x1a7 RX time (only set when the gateway has a GPS module).\n\n\r\n\x05\x04\x0b\x02\x02\x06\x12\x04\xc0\x02\x02\x1b\n\r\n\x05\x04\x0b\x02\x02\x01\x12\x04\xc0\x02\x1c \n\r\n\x05\x04\x0b\x02\x02\x03\x12\x04\xc0\x02#$\nU\n\x04\x04\x0b\x02\x03\x12\x04\xc3\x02\x024\x1aG RX time since GPS epoch (only set when the gateway has a GPS module).\n\n\r\n\x05\x04\x0b\x02\x03\x06\x12\x04\xc3\x02\x02\x1a\n\r\n\x05\x04\x0b\x02\x03\x01\x12\x04\xc3\x02\x1b/\n\r\n\x05\x04\x0b\x02\x03\x03\x12\x04\xc3\x0223\nW\n\x04\x04\x0b\x02\x04\x12\x04\xc7\x02\x029\x1aI Fine-timestamp.\n This timestamp can be used for TDOA based geolocation.\n\n\r\n\x05\x04\x0b\x02\x04\x06\x12\x04\xc7\x02\x02\x1a\n\r\n\x05\x04\x0b\x02\x04\x01\x12\x04\xc7\x02\x1b4\n\r\n\x05\x04\x0b\x02\x04\x03\x12\x04\xc7\x0278\n\x15\n\x04\x04\x0b\x02\x05\x12\x04\xca\x02\x02\x11\x1a\x07 RSSI.\n\n\r\n\x05\x04\x0b\x02\x05\x05\x12\x04\xca\x02\x02\x07\n\r\n\x05\x04\x0b\x02\x05\x01\x12\x04\xca\x02\x08\x0c\n\r\n\x05\x04\x0b\x02\x05\x03\x12\x04\xca\x02\x0f\x10\n?\n\x04\x04\x0b\x02\x06\x12\x04\xce\x02\x02\x10\x1a1 SNR.\n Note: only available for LoRa modulation.\n\n\r\n\x05\x04\x0b\x02\x06\x05\x12\x04\xce\x02\x02\x07\n\r\n\x05\x04\x0b\x02\x06\x01\x12\x04\xce\x02\x08\x0b\n\r\n\x05\x04\x0b\x02\x06\x03\x12\x04\xce\x02\x0e\x0f\n\x18\n\x04\x04\x0b\x02\x07\x12\x04\xd1\x02\x02\x15\x1a\n Channel.\n\n\r\n\x05\x04\x0b\x02\x07\x05\x12\x04\xd1\x02\x02\x08\n\r\n\x05\x04\x0b\x02\x07\x01\x12\x04\xd1\x02\t\x10\n\r\n\x05\x04\x0b\x02\x07\x03\x12\x04\xd1\x02\x13\x14\n\x19\n\x04\x04\x0b\x02\x08\x12\x04\xd4\x02\x02\x16\x1a\x0b RF chain.\n\n\r\n\x05\x04\x0b\x02\x08\x05\x12\x04\xd4\x02\x02\x08\n\r\n\x05\x04\x0b\x02\x08\x01\x12\x04\xd4\x02\t\x11\n\r\n\x05\x04\x0b\x02\x08\x03\x12\x04\xd4\x02\x14\x15\n\x16\n\x04\x04\x0b\x02\t\x12\x04\xd7\x02\x02\x14\x1a\x08 Board.\n\n\r\n\x05\x04\x0b\x02\t\x05\x12\x04\xd7\x02\x02\x08\n\r\n\x05\x04\x0b\x02\t\x01\x12\x04\xd7\x02\t\x0e\n\r\n\x05\x04\x0b\x02\t\x03\x12\x04\xd7\x02\x11\x13\n\x18\n\x04\x04\x0b\x02\n\x12\x04\xda\x02\x02\x16\x1a\n Antenna.\n\n\r\n\x05\x04\x0b\x02\n\x05\x12\x04\xda\x02\x02\x08\n\r\n\x05\x04\x0b\x02\n\x01\x12\x04\xda\x02\t\x10\n\r\n\x05\x04\x0b\x02\n\x03\x12\x04\xda\x02\x13\x15\n\x19\n\x04\x04\x0b\x02\x0b\x12\x04\xdd\x02\x02 \x1a\x0b Location.\n\n\r\n\x05\x04\x0b\x02\x0b\x06\x12\x04\xdd\x02\x02\x11\n\r\n\x05\x04\x0b\x02\x0b\x01\x12\x04\xdd\x02\x12\x1a\n\r\n\x05\x04\x0b\x02\x0b\x03\x12\x04\xdd\x02\x1d\x1f\nl\n\x04\x04\x0b\x02\x0c\x12\x04\xe1\x02\x02\x15\x1a^ Gateway specific context.\n This value must be returned to the gateway on (Class-A) downlink.\n\n\r\n\x05\x04\x0b\x02\x0c\x05\x12\x04\xe1\x02\x02\x07\n\r\n\x05\x04\x0b\x02\x0c\x01\x12\x04\xe1\x02\x08\x0f\n\r\n\x05\x04\x0b\x02\x0c\x03\x12\x04\xe1\x02\x12\x14\n-\n\x04\x04\x0b\x02\r\x12\x04\xe4\x02\x02$\x1a\x1f Additional gateway meta-data.\n\n\r\n\x05\x04\x0b\x02\r\x06\x12\x04\xe4\x02\x02\x15\n\r\n\x05\x04\x0b\x02\r\x01\x12\x04\xe4\x02\x16\x1e\n\r\n\x05\x04\x0b\x02\r\x03\x12\x04\xe4\x02!#\n\x1b\n\x04\x04\x0b\x02\x0e\x12\x04\xe7\x02\x02\x1c\x1a\r CRC status.\n\n\r\n\x05\x04\x0b\x02\x0e\x06\x12\x04\xe7\x02\x02\x0b\n\r\n\x05\x04\x0b\x02\x0e\x01\x12\x04\xe7\x02\x0c\x16\n\r\n\x05\x04\x0b\x02\x0e\x03\x12\x04\xe7\x02\x19\x1b\n\x0c\n\x02\x04\x0c\x12\x06\xea\x02\x00\x97\x03\x01\n\x0b\n\x03\x04\x0c\x01\x12\x04\xea\x02\x08\x1c\nQ\n\x04\x04\x0c\x02\x00\x12\x04\xed\x02\x02\x17\x1aC Gateway ID.\n Deprecated: replaced by gateway_id in DownlinkFrame.\n\n\r\n\x05\x04\x0c\x02\x00\x05\x12\x04\xed\x02\x02\x07\n\r\n\x05\x04\x0c\x02\x00\x01\x12\x04\xed\x02\x08\x12\n\r\n\x05\x04\x0c\x02\x00\x03\x12\x04\xed\x02\x15\x16\n%\n\x04\x04\x0c\x02\x01\x12\x04\xf0\x02\x02\x17\x1a\x17 TX frequency (in Hz).\n\n\r\n\x05\x04\x0c\x02\x01\x05\x12\x04\xf0\x02\x02\x08\n\r\n\x05\x04\x0c\x02\x01\x01\x12\x04\xf0\x02\t\x12\n\r\n\x05\x04\x0c\x02\x01\x03\x12\x04\xf0\x02\x15\x16\n\"\n\x04\x04\x0c\x02\x02\x12\x04\xf3\x02\x02\x12\x1a\x14 TX power (in dBm).\n\n\r\n\x05\x04\x0c\x02\x02\x05\x12\x04\xf3\x02\x02\x07\n\r\n\x05\x04\x0c\x02\x02\x01\x12\x04\xf3\x02\x08\r\n\r\n\x05\x04\x0c\x02\x02\x03\x12\x04\xf3\x02\x10\x11\n\x1b\n\x04\x04\x0c\x02\x03\x12\x04\xf6\x02\x02#\x1a\r Modulation.\n\n\r\n\x05\x04\x0c\x02\x03\x06\x12\x04\xf6\x02\x02\x13\n\r\n\x05\x04\x0c\x02\x03\x01\x12\x04\xf6\x02\x14\x1e\n\r\n\x05\x04\x0c\x02\x03\x03\x12\x04\xf6\x02!\"\n\x0e\n\x04\x04\x0c\x08\x00\x12\x06\xf8\x02\x02\xfe\x02\x03\n\r\n\x05\x04\x0c\x08\x00\x01\x12\x04\xf8\x02\x08\x17\n,\n\x04\x04\x0c\x02\x04\x12\x04\xfa\x02\x040\x1a\x1e LoRa modulation information.\n\n\r\n\x05\x04\x0c\x02\x04\x06\x12\x04\xfa\x02\x04\x16\n\r\n\x05\x04\x0c\x02\x04\x01\x12\x04\xfa\x02\x17+\n\r\n\x05\x04\x0c\x02\x04\x03\x12\x04\xfa\x02./\n+\n\x04\x04\x0c\x02\x05\x12\x04\xfd\x02\x04.\x1a\x1d FSK modulation information.\n\n\r\n\x05\x04\x0c\x02\x05\x06\x12\x04\xfd\x02\x04\x15\n\r\n\x05\x04\x0c\x02\x05\x01\x12\x04\xfd\x02\x16)\n\r\n\x05\x04\x0c\x02\x05\x03\x12\x04\xfd\x02,-\n<\n\x04\x04\x0c\x02\x06\x12\x04\x81\x03\x02\x14\x1a. The board identifier for emitting the frame.\n\n\r\n\x05\x04\x0c\x02\x06\x05\x12\x04\x81\x03\x02\x08\n\r\n\x05\x04\x0c\x02\x06\x01\x12\x04\x81\x03\t\x0e\n\r\n\x05\x04\x0c\x02\x06\x03\x12\x04\x81\x03\x11\x13\n>\n\x04\x04\x0c\x02\x07\x12\x04\x84\x03\x02\x16\x1a0 The antenna identifier for emitting the frame.\n\n\r\n\x05\x04\x0c\x02\x07\x05\x12\x04\x84\x03\x02\x08\n\r\n\x05\x04\x0c\x02\x07\x01\x12\x04\x84\x03\t\x10\n\r\n\x05\x04\x0c\x02\x07\x03\x12\x04\x84\x03\x13\x15\n:\n\x04\x04\x0c\x02\x08\x12\x04\x87\x03\x02\x1d\x1a, Timing defines the downlink timing to use.\n\n\r\n\x05\x04\x0c\x02\x08\x06\x12\x04\x87\x03\x02\x10\n\r\n\x05\x04\x0c\x02\x08\x01\x12\x04\x87\x03\x11\x17\n\r\n\x05\x04\x0c\x02\x08\x03\x12\x04\x87\x03\x1a\x1c\n\x0e\n\x04\x04\x0c\x08\x01\x12\x06\x89\x03\x02\x92\x03\x03\n\r\n\x05\x04\x0c\x08\x01\x01\x12\x04\x89\x03\x08\x13\n/\n\x04\x04\x0c\x02\t\x12\x04\x8b\x03\x047\x1a! Immediately timing information.\n\n\r\n\x05\x04\x0c\x02\t\x06\x12\x04\x8b\x03\x04\x19\n\r\n\x05\x04\x0c\x02\t\x01\x12\x04\x8b\x03\x1a1\n\r\n\x05\x04\x0c\x02\t\x03\x12\x04\x8b\x0346\n7\n\x04\x04\x0c\x02\n\x12\x04\x8e\x03\x04+\x1a) Context based delay timing information.\n\n\r\n\x05\x04\x0c\x02\n\x06\x12\x04\x8e\x03\x04\x13\n\r\n\x05\x04\x0c\x02\n\x01\x12\x04\x8e\x03\x14%\n\r\n\x05\x04\x0c\x02\n\x03\x12\x04\x8e\x03(*\n-\n\x04\x04\x0c\x02\x0b\x12\x04\x91\x03\x042\x1a\x1f GPS Epoch timing information.\n\n\r\n\x05\x04\x0c\x02\x0b\x06\x12\x04\x91\x03\x04\x16\n\r\n\x05\x04\x0c\x02\x0b\x01\x12\x04\x91\x03\x17,\n\r\n\x05\x04\x0c\x02\x0b\x03\x12\x04\x91\x03/1\nu\n\x04\x04\x0c\x02\x0c\x12\x04\x96\x03\x02\x15\x1ag Gateway specific context.\n In case of a Class-A downlink, this contains a copy of the uplink context.\n\n\r\n\x05\x04\x0c\x02\x0c\x05\x12\x04\x96\x03\x02\x07\n\r\n\x05\x04\x0c\x02\x0c\x01\x12\x04\x96\x03\x08\x0f\n\r\n\x05\x04\x0c\x02\x0c\x03\x12\x04\x96\x03\x12\x14\n\x0c\n\x02\x04\r\x12\x06\x99\x03\x00\xaf\x03\x01\n\x0b\n\x03\x04\r\x01\x12\x04\x99\x03\x08\x16\n%\n\x04\x04\r\x02\x00\x12\x04\x9b\x03\x02\x17\x1a\x17 TX frequency (in Hz).\n\n\r\n\x05\x04\r\x02\x00\x05\x12\x04\x9b\x03\x02\x08\n\r\n\x05\x04\r\x02\x00\x01\x12\x04\x9b\x03\t\x12\n\r\n\x05\x04\r\x02\x00\x03\x12\x04\x9b\x03\x15\x16\n\"\n\x04\x04\r\x02\x01\x12\x04\x9e\x03\x02\x12\x1a\x14 TX power (in dBm).\n\n\r\n\x05\x04\r\x02\x01\x05\x12\x04\x9e\x03\x02\x07\n\r\n\x05\x04\r\x02\x01\x01\x12\x04\x9e\x03\x08\r\n\r\n\x05\x04\r\x02\x01\x03\x12\x04\x9e\x03\x10\x11\n\x1b\n\x04\x04\r\x02\x02\x12\x04\xa1\x03\x02\x1c\x1a\r Modulation.\n\n\r\n\x05\x04\r\x02\x02\x06\x12\x04\xa1\x03\x02\x0c\n\r\n\x05\x04\r\x02\x02\x01\x12\x04\xa1\x03\r\x17\n\r\n\x05\x04\r\x02\x02\x03\x12\x04\xa1\x03\x1a\x1b\n<\n\x04\x04\r\x02\x03\x12\x04\xa4\x03\x02\x13\x1a. The board identifier for emitting the frame.\n\n\r\n\x05\x04\r\x02\x03\x05\x12\x04\xa4\x03\x02\x08\n\r\n\x05\x04\r\x02\x03\x01\x12\x04\xa4\x03\t\x0e\n\r\n\x05\x04\r\x02\x03\x03\x12\x04\xa4\x03\x11\x12\n>\n\x04\x04\r\x02\x04\x12\x04\xa7\x03\x02\x15\x1a0 The antenna identifier for emitting the frame.\n\n\r\n\x05\x04\r\x02\x04\x05\x12\x04\xa7\x03\x02\x08\n\r\n\x05\x04\r\x02\x04\x01\x12\x04\xa7\x03\t\x10\n\r\n\x05\x04\r\x02\x04\x03\x12\x04\xa7\x03\x13\x14\n\x17\n\x04\x04\r\x02\x05\x12\x04\xaa\x03\x02\x14\x1a\t Timing.\n\n\r\n\x05\x04\r\x02\x05\x06\x12\x04\xaa\x03\x02\x08\n\r\n\x05\x04\r\x02\x05\x01\x12\x04\xaa\x03\t\x0f\n\r\n\x05\x04\r\x02\x05\x03\x12\x04\xaa\x03\x12\x13\nu\n\x04\x04\r\x02\x06\x12\x04\xae\x03\x02\x14\x1ag Gateway specific context.\n In case of a Class-A downlink, this contains a copy of the uplink context.\n\n\r\n\x05\x04\r\x02\x06\x05\x12\x04\xae\x03\x02\x07\n\r\n\x05\x04\r\x02\x06\x01\x12\x04\xae\x03\x08\x0f\n\r\n\x05\x04\r\x02\x06\x03\x12\x04\xae\x03\x12\x13\n\x0c\n\x02\x04\x0e\x12\x06\xb1\x03\x00\xbc\x03\x01\n\x0b\n\x03\x04\x0e\x01\x12\x04\xb1\x03\x08\x0e\n\x0e\n\x04\x04\x0e\x08\x00\x12\x06\xb2\x03\x02\xbb\x03\x03\n\r\n\x05\x04\x0e\x08\x00\x01\x12\x04\xb2\x03\x08\x12\n/\n\x04\x04\x0e\x02\x00\x12\x04\xb4\x03\x04*\x1a! Immediately timing information.\n\n\r\n\x05\x04\x0e\x02\x00\x06\x12\x04\xb4\x03\x04\x19\n\r\n\x05\x04\x0e\x02\x00\x01\x12\x04\xb4\x03\x1a%\n\r\n\x05\x04\x0e\x02\x00\x03\x12\x04\xb4\x03()\n7\n\x04\x04\x0e\x02\x01\x12\x04\xb7\x03\x04\x1e\x1a) Context based delay timing information.\n\n\r\n\x05\x04\x0e\x02\x01\x06\x12\x04\xb7\x03\x04\x13\n\r\n\x05\x04\x0e\x02\x01\x01\x12\x04\xb7\x03\x14\x19\n\r\n\x05\x04\x0e\x02\x01\x03\x12\x04\xb7\x03\x1c\x1d\n-\n\x04\x04\x0e\x02\x02\x12\x04\xba\x03\x04%\x1a\x1f GPS Epoch timing information.\n\n\r\n\x05\x04\x0e\x02\x02\x06\x12\x04\xba\x03\x04\x16\n\r\n\x05\x04\x0e\x02\x02\x01\x12\x04\xba\x03\x17 \n\r\n\x05\x04\x0e\x02\x02\x03\x12\x04\xba\x03#$\n$\n\x02\x04\x0f\x12\x06\xbe\x03\x00\xc0\x03\x01\"\x16 Not implemented yet.\n\n\x0b\n\x03\x04\x0f\x01\x12\x04\xbe\x03\x08\x1d\n\x0c\n\x02\x04\x10\x12\x06\xc2\x03\x00\xc7\x03\x01\n\x0b\n\x03\x04\x10\x01\x12\x04\xc2\x03\x08\x17\n{\n\x04\x04\x10\x02\x00\x12\x04\xc6\x03\x02%\x1am Delay (duration).\n The delay will be added to the gateway internal timing, provided by the\n context object.\n\n\r\n\x05\x04\x10\x02\x00\x06\x12\x04\xc6\x03\x02\x1a\n\r\n\x05\x04\x10\x02\x00\x01\x12\x04\xc6\x03\x1b \n\r\n\x05\x04\x10\x02\x00\x03\x12\x04\xc6\x03#$\n\x0c\n\x02\x04\x11\x12\x06\xc9\x03\x00\xcc\x03\x01\n\x0b\n\x03\x04\x11\x01\x12\x04\xc9\x03\x08\x1a\n)\n\x04\x04\x11\x02\x00\x12\x04\xcb\x03\x024\x1a\x1b Duration since GPS Epoch.\n\n\r\n\x05\x04\x11\x02\x00\x06\x12\x04\xcb\x03\x02\x1a\n\r\n\x05\x04\x11\x02\x00\x01\x12\x04\xcb\x03\x1b/\n\r\n\x05\x04\x11\x02\x00\x03\x12\x04\xcb\x0323\n\x0c\n\x02\x04\x12\x12\x06\xce\x03\x00\xdd\x03\x01\n\x0b\n\x03\x04\x12\x01\x12\x04\xce\x03\x08\x13\n\x1b\n\x04\x04\x12\x02\x00\x12\x04\xd0\x03\x02\x18\x1a\r PHYPayload.\n\n\r\n\x05\x04\x12\x02\x00\x05\x12\x04\xd0\x03\x02\x07\n\r\n\x05\x04\x12\x02\x00\x01\x12\x04\xd0\x03\x08\x13\n\r\n\x05\x04\x12\x02\x00\x03\x12\x04\xd0\x03\x16\x17\n*\n\x04\x04\x12\x02\x01\x12\x04\xd3\x03\x02(\x1a\x1c TX meta-data (deprecated).\n\n\r\n\x05\x04\x12\x02\x01\x06\x12\x04\xd3\x03\x02\x14\n\r\n\x05\x04\x12\x02\x01\x01\x12\x04\xd3\x03\x15#\n\r\n\x05\x04\x12\x02\x01\x03\x12\x04\xd3\x03&\'\n*\n\x04\x04\x12\x02\x02\x12\x04\xd6\x03\x02(\x1a\x1c RX meta-data (deprecated).\n\n\r\n\x05\x04\x12\x02\x02\x06\x12\x04\xd6\x03\x02\x14\n\r\n\x05\x04\x12\x02\x02\x01\x12\x04\xd6\x03\x15#\n\r\n\x05\x04\x12\x02\x02\x03\x12\x04\xd6\x03&\'\n\x1d\n\x04\x04\x12\x02\x03\x12\x04\xd9\x03\x02\x1b\x1a\x0f Tx meta-data.\n\n\r\n\x05\x04\x12\x02\x03\x06\x12\x04\xd9\x03\x02\x0e\n\r\n\x05\x04\x12\x02\x03\x01\x12\x04\xd9\x03\x0f\x16\n\r\n\x05\x04\x12\x02\x03\x03\x12\x04\xd9\x03\x19\x1a\n\x1d\n\x04\x04\x12\x02\x04\x12\x04\xdc\x03\x02\x1b\x1a\x0f Rx meta-data.\n\n\r\n\x05\x04\x12\x02\x04\x06\x12\x04\xdc\x03\x02\x0e\n\r\n\x05\x04\x12\x02\x04\x01\x12\x04\xdc\x03\x0f\x16\n\r\n\x05\x04\x12\x02\x04\x03\x12\x04\xdc\x03\x19\x1a\n\x0c\n\x02\x04\x13\x12\x06\xdf\x03\x00\xe8\x03\x01\n\x0b\n\x03\x04\x13\x01\x12\x04\xdf\x03\x08\x16\n\x1b\n\x04\x04\x13\x02\x00\x12\x04\xe1\x03\x02\x18\x1a\r PHYPayload.\n\n\r\n\x05\x04\x13\x02\x00\x05\x12\x04\xe1\x03\x02\x07\n\r\n\x05\x04\x13\x02\x00\x01\x12\x04\xe1\x03\x08\x13\n\r\n\x05\x04\x13\x02\x00\x03\x12\x04\xe1\x03\x16\x17\n\x1d\n\x04\x04\x13\x02\x01\x12\x04\xe4\x03\x02\x1b\x1a\x0f TX meta-data.\n\n\r\n\x05\x04\x13\x02\x01\x06\x12\x04\xe4\x03\x02\x0e\n\r\n\x05\x04\x13\x02\x01\x01\x12\x04\xe4\x03\x0f\x16\n\r\n\x05\x04\x13\x02\x01\x03\x12\x04\xe4\x03\x19\x1a\n!\n\x04\x04\x13\x02\x02\x12\x04\xe7\x03\x02$\x1a\x13 RX meta-data set.\n\n\r\n\x05\x04\x13\x02\x02\x04\x12\x04\xe7\x03\x02\n\n\r\n\x05\x04\x13\x02\x02\x06\x12\x04\xe7\x03\x0b\x17\n\r\n\x05\x04\x13\x02\x02\x01\x12\x04\xe7\x03\x18\x1f\n\r\n\x05\x04\x13\x02\x02\x03\x12\x04\xe7\x03\"#\n\x0c\n\x02\x04\x14\x12\x06\xea\x03\x00\xff\x03\x01\n\x0b\n\x03\x04\x14\x01\x12\x04\xea\x03\x08\x15\n\x1c\n\x04\x04\x14\x02\x00\x12\x04\xec\x03\x02\x19\x1a\x0e Downlink ID.\n\n\r\n\x05\x04\x14\x02\x00\x05\x12\x04\xec\x03\x02\x08\n\r\n\x05\x04\x14\x02\x00\x01\x12\x04\xec\x03\t\x14\n\r\n\x05\x04\x14\x02\x00\x03\x12\x04\xec\x03\x17\x18\nA\n\x04\x04\x14\x02\x01\x12\x04\xf0\x03\x02\x1f\x1a3 Downlink ID (UUID).\n Deprecated: use downlink_id.\n\n\r\n\x05\x04\x14\x02\x01\x05\x12\x04\xf0\x03\x02\x07\n\r\n\x05\x04\x14\x02\x01\x01\x12\x04\xf0\x03\x08\x1a\n\r\n\x05\x04\x14\x02\x01\x03\x12\x04\xf0\x03\x1d\x1e\n\x85\x02\n\x04\x04\x14\x02\x02\x12\x04\xf7\x03\x02\'\x1a\xf6\x01 Downlink frame items.\n This makes it possible to send multiple downlink opportunities to the\n gateway at once (e.g. RX1 and RX2 in LoRaWAN). The first item has the\n highest priority, the last the lowest. The gateway will emit at most\n one item.\n\n\r\n\x05\x04\x14\x02\x02\x04\x12\x04\xf7\x03\x02\n\n\r\n\x05\x04\x14\x02\x02\x06\x12\x04\xf7\x03\x0b\x1c\n\r\n\x05\x04\x14\x02\x02\x01\x12\x04\xf7\x03\x1d\"\n\r\n\x05\x04\x14\x02\x02\x03\x12\x04\xf7\x03%&\n7\n\x04\x04\x14\x02\x03\x12\x04\xfb\x03\x02\x1e\x1a) Gateway ID.\n Deprecated: use gateway_id\n\n\r\n\x05\x04\x14\x02\x03\x05\x12\x04\xfb\x03\x02\x07\n\r\n\x05\x04\x14\x02\x03\x01\x12\x04\xfb\x03\x08\x19\n\r\n\x05\x04\x14\x02\x03\x03\x12\x04\xfb\x03\x1c\x1d\n\x1b\n\x04\x04\x14\x02\x04\x12\x04\xfe\x03\x02\x18\x1a\r Gateway ID.\n\n\r\n\x05\x04\x14\x02\x04\x05\x12\x04\xfe\x03\x02\x08\n\r\n\x05\x04\x14\x02\x04\x01\x12\x04\xfe\x03\t\x13\n\r\n\x05\x04\x14\x02\x04\x03\x12\x04\xfe\x03\x16\x17\n\x0c\n\x02\x04\x15\x12\x06\x81\x04\x00\x8a\x04\x01\n\x0b\n\x03\x04\x15\x01\x12\x04\x81\x04\x08\x19\n\x1b\n\x04\x04\x15\x02\x00\x12\x04\x83\x04\x02\x18\x1a\r PHYPayload.\n\n\r\n\x05\x04\x15\x02\x00\x05\x12\x04\x83\x04\x02\x07\n\r\n\x05\x04\x15\x02\x00\x01\x12\x04\x83\x04\x08\x13\n\r\n\x05\x04\x15\x02\x00\x03\x12\x04\x83\x04\x16\x17\n*\n\x04\x04\x15\x02\x01\x12\x04\x86\x04\x02*\x1a\x1c TX meta-data (deprecated).\n\n\r\n\x05\x04\x15\x02\x01\x06\x12\x04\x86\x04\x02\x16\n\r\n\x05\x04\x15\x02\x01\x01\x12\x04\x86\x04\x17%\n\r\n\x05\x04\x15\x02\x01\x03\x12\x04\x86\x04()\n\x1d\n\x04\x04\x15\x02\x02\x12\x04\x89\x04\x02\x1d\x1a\x0f Tx meta-data.\n\n\r\n\x05\x04\x15\x02\x02\x06\x12\x04\x89\x04\x02\x10\n\r\n\x05\x04\x15\x02\x02\x01\x12\x04\x89\x04\x11\x18\n\r\n\x05\x04\x15\x02\x02\x03\x12\x04\x89\x04\x1b\x1c\n\x0c\n\x02\x04\x16\x12\x06\x8c\x04\x00\x9e\x04\x01\n\x0b\n\x03\x04\x16\x01\x12\x04\x8c\x04\x08\x15\n(\n\x04\x04\x16\x02\x00\x12\x04\x8e\x04\x02\x1e\x1a\x1a Gateway ID (deprecated).\n\n\r\n\x05\x04\x16\x02\x00\x05\x12\x04\x8e\x04\x02\x07\n\r\n\x05\x04\x16\x02\x00\x01\x12\x04\x8e\x04\x08\x19\n\r\n\x05\x04\x16\x02\x00\x03\x12\x04\x8e\x04\x1c\x1d\n\x1b\n\x04\x04\x16\x02\x01\x12\x04\x91\x04\x02\x18\x1a\r Gateway ID.\n\n\r\n\x05\x04\x16\x02\x01\x05\x12\x04\x91\x04\x02\x08\n\r\n\x05\x04\x16\x02\x01\x01\x12\x04\x91\x04\t\x13\n\r\n\x05\x04\x16\x02\x01\x03\x12\x04\x91\x04\x16\x17\n\x1c\n\x04\x04\x16\x02\x02\x12\x04\x94\x04\x02\x19\x1a\x0e Downlink ID.\n\n\r\n\x05\x04\x16\x02\x02\x05\x12\x04\x94\x04\x02\x08\n\r\n\x05\x04\x16\x02\x02\x01\x12\x04\x94\x04\t\x14\n\r\n\x05\x04\x16\x02\x02\x03\x12\x04\x94\x04\x17\x18\n)\n\x04\x04\x16\x02\x03\x12\x04\x97\x04\x02\x1f\x1a\x1b Downlink ID (deprecated).\n\n\r\n\x05\x04\x16\x02\x03\x05\x12\x04\x97\x04\x02\x07\n\r\n\x05\x04\x16\x02\x03\x01\x12\x04\x97\x04\x08\x1a\n\r\n\x05\x04\x16\x02\x03\x03\x12\x04\x97\x04\x1d\x1e\n\xef\x01\n\x04\x04\x16\x02\x04\x12\x04\x9d\x04\x02\'\x1a\xe0\x01 Downlink frame items.\n This list has the same length as the request and indicates which\n downlink frame has been emitted of the requested list (or why it failed).\n Note that at most one item has a positive acknowledgement.\n\n\r\n\x05\x04\x16\x02\x04\x04\x12\x04\x9d\x04\x02\n\n\r\n\x05\x04\x16\x02\x04\x06\x12\x04\x9d\x04\x0b\x1c\n\r\n\x05\x04\x16\x02\x04\x01\x12\x04\x9d\x04\x1d\"\n\r\n\x05\x04\x16\x02\x04\x03\x12\x04\x9d\x04%&\n\x0c\n\x02\x04\x17\x12\x06\xa0\x04\x00\xa3\x04\x01\n\x0b\n\x03\x04\x17\x01\x12\x04\xa0\x04\x08\x19\n,\n\x04\x04\x17\x02\x00\x12\x04\xa2\x04\x02\x19\x1a\x1e The Ack status of this item.\n\n\r\n\x05\x04\x17\x02\x00\x06\x12\x04\xa2\x04\x02\r\n\r\n\x05\x04\x17\x02\x00\x01\x12\x04\xa2\x04\x0e\x14\n\r\n\x05\x04\x17\x02\x00\x03\x12\x04\xa2\x04\x17\x18\n\x0c\n\x02\x04\x18\x12\x06\xa5\x04\x00\xb5\x04\x01\n\x0b\n\x03\x04\x18\x01\x12\x04\xa5\x04\x08\x1c\n8\n\x04\x04\x18\x02\x00\x12\x04\xa8\x04\x02\x1e\x1a* Gateway ID.\n Deprecated: use gateway_id.\n\n\r\n\x05\x04\x18\x02\x00\x05\x12\x04\xa8\x04\x02\x07\n\r\n\x05\x04\x18\x02\x00\x01\x12\x04\xa8\x04\x08\x19\n\r\n\x05\x04\x18\x02\x00\x03\x12\x04\xa8\x04\x1c\x1d\n\x1b\n\x04\x04\x18\x02\x01\x12\x04\xab\x04\x02\x18\x1a\r Gateway ID.\n\n\r\n\x05\x04\x18\x02\x01\x05\x12\x04\xab\x04\x02\x08\n\r\n\x05\x04\x18\x02\x01\x01\x12\x04\xab\x04\t\x13\n\r\n\x05\x04\x18\x02\x01\x03\x12\x04\xab\x04\x16\x17\n&\n\x04\x04\x18\x02\x02\x12\x04\xae\x04\x02\x15\x1a\x18 Configuration version.\n\n\r\n\x05\x04\x18\x02\x02\x05\x12\x04\xae\x04\x02\x08\n\r\n\x05\x04\x18\x02\x02\x01\x12\x04\xae\x04\t\x10\n\r\n\x05\x04\x18\x02\x02\x03\x12\x04\xae\x04\x13\x14\n\x19\n\x04\x04\x18\x02\x03\x12\x04\xb1\x04\x02-\x1a\x0b Channels.\n\n\r\n\x05\x04\x18\x02\x03\x04\x12\x04\xb1\x04\x02\n\n\r\n\x05\x04\x18\x02\x03\x06\x12\x04\xb1\x04\x0b\x1f\n\r\n\x05\x04\x18\x02\x03\x01\x12\x04\xb1\x04 (\n\r\n\x05\x04\x18\x02\x03\x03\x12\x04\xb1\x04+,\n\x1f\n\x04\x04\x18\x02\x04\x12\x04\xb4\x04\x02.\x1a\x11 Stats interval.\n\n\r\n\x05\x04\x18\x02\x04\x06\x12\x04\xb4\x04\x02\x1a\n\r\n\x05\x04\x18\x02\x04\x01\x12\x04\xb4\x04\x1b)\n\r\n\x05\x04\x18\x02\x04\x03\x12\x04\xb4\x04,-\n\x0c\n\x02\x04\x19\x12\x06\xb7\x04\x00\xcb\x04\x01\n\x0b\n\x03\x04\x19\x01\x12\x04\xb7\x04\x08\x1c\n\x1f\n\x04\x04\x19\x02\x00\x12\x04\xb9\x04\x02\x17\x1a\x11 Frequency (Hz).\n\n\r\n\x05\x04\x19\x02\x00\x05\x12\x04\xb9\x04\x02\x08\n\r\n\x05\x04\x19\x02\x00\x01\x12\x04\xb9\x04\t\x12\n\r\n\x05\x04\x19\x02\x00\x03\x12\x04\xb9\x04\x15\x16\n(\n\x04\x04\x19\x02\x01\x12\x04\xbc\x04\x02*\x1a\x1a Modulation (deprecated).\n\n\r\n\x05\x04\x19\x02\x01\x06\x12\x04\xbc\x04\x02\x13\n\r\n\x05\x04\x19\x02\x01\x01\x12\x04\xbc\x04\x14%\n\r\n\x05\x04\x19\x02\x01\x03\x12\x04\xbc\x04()\n\x0e\n\x04\x04\x19\x08\x00\x12\x06\xbe\x04\x02\xc4\x04\x03\n\r\n\x05\x04\x19\x08\x00\x01\x12\x04\xbe\x04\x08\x19\n\'\n\x04\x04\x19\x02\x02\x12\x04\xc0\x04\x044\x1a\x19 LoRa modulation config.\n\n\r\n\x05\x04\x19\x02\x02\x06\x12\x04\xc0\x04\x04\x18\n\r\n\x05\x04\x19\x02\x02\x01\x12\x04\xc0\x04\x19/\n\r\n\x05\x04\x19\x02\x02\x03\x12\x04\xc0\x0423\n&\n\x04\x04\x19\x02\x03\x12\x04\xc3\x04\x042\x1a\x18 FSK modulation config.\n\n\r\n\x05\x04\x19\x02\x03\x06\x12\x04\xc3\x04\x04\x17\n\r\n\x05\x04\x19\x02\x03\x01\x12\x04\xc3\x04\x18-\n\r\n\x05\x04\x19\x02\x03\x03\x12\x04\xc3\x0401\n\x1c\n\x04\x04\x19\x02\x04\x12\x04\xc7\x04\x02\x13\x1a\x0e Board index.\n\n\r\n\x05\x04\x19\x02\x04\x05\x12\x04\xc7\x04\x02\x08\n\r\n\x05\x04\x19\x02\x04\x01\x12\x04\xc7\x04\t\x0e\n\r\n\x05\x04\x19\x02\x04\x03\x12\x04\xc7\x04\x11\x12\n7\n\x04\x04\x19\x02\x05\x12\x04\xca\x04\x02\x19\x1a) Demodulator index (of the given board).\n\n\r\n\x05\x04\x19\x02\x05\x05\x12\x04\xca\x04\x02\x08\n\r\n\x05\x04\x19\x02\x05\x01\x12\x04\xca\x04\t\x14\n\r\n\x05\x04\x19\x02\x05\x03\x12\x04\xca\x04\x17\x18\n\x0c\n\x02\x04\x1a\x12\x06\xcd\x04\x00\xd7\x04\x01\n\x0b\n\x03\x04\x1a\x01\x12\x04\xcd\x04\x08\x1c\n<\n\x04\x04\x1a\x02\x00\x12\x04\xd0\x04\x02\x1e\x1a. Bandwidth (kHz).\n Deprecated: use bandwidth.\n\n\r\n\x05\x04\x1a\x02\x00\x05\x12\x04\xd0\x04\x02\x08\n\r\n\x05\x04\x1a\x02\x00\x01\x12\x04\xd0\x04\t\x19\n\r\n\x05\x04\x1a\x02\x00\x03\x12\x04\xd0\x04\x1c\x1d\n\x1f\n\x04\x04\x1a\x02\x01\x12\x04\xd3\x04\x02\x17\x1a\x11 Bandwidth (Hz).\n\n\r\n\x05\x04\x1a\x02\x01\x05\x12\x04\xd3\x04\x02\x08\n\r\n\x05\x04\x1a\x02\x01\x01\x12\x04\xd3\x04\t\x12\n\r\n\x05\x04\x1a\x02\x01\x03\x12\x04\xd3\x04\x15\x16\n\"\n\x04\x04\x1a\x02\x02\x12\x04\xd6\x04\x02(\x1a\x14 Spreading-factors.\n\n\r\n\x05\x04\x1a\x02\x02\x04\x12\x04\xd6\x04\x02\n\n\r\n\x05\x04\x1a\x02\x02\x05\x12\x04\xd6\x04\x0b\x11\n\r\n\x05\x04\x1a\x02\x02\x01\x12\x04\xd6\x04\x12#\n\r\n\x05\x04\x1a\x02\x02\x03\x12\x04\xd6\x04&\'\n\x0c\n\x02\x04\x1b\x12\x06\xd9\x04\x00\xe3\x04\x01\n\x0b\n\x03\x04\x1b\x01\x12\x04\xd9\x04\x08\x1b\n<\n\x04\x04\x1b\x02\x00\x12\x04\xdc\x04\x02\x1e\x1a. Bandwidth (kHz).\n Deprecated: use bandwidth.\n\n\r\n\x05\x04\x1b\x02\x00\x05\x12\x04\xdc\x04\x02\x08\n\r\n\x05\x04\x1b\x02\x00\x01\x12\x04\xdc\x04\t\x19\n\r\n\x05\x04\x1b\x02\x00\x03\x12\x04\xdc\x04\x1c\x1d\n\x1f\n\x04\x04\x1b\x02\x01\x12\x04\xdf\x04\x02\x17\x1a\x11 Bandwidth (Hz).\n\n\r\n\x05\x04\x1b\x02\x01\x05\x12\x04\xdf\x04\x02\x08\n\r\n\x05\x04\x1b\x02\x01\x01\x12\x04\xdf\x04\t\x12\n\r\n\x05\x04\x1b\x02\x01\x03\x12\x04\xdf\x04\x15\x16\n\x18\n\x04\x04\x1b\x02\x02\x12\x04\xe2\x04\x02\x15\x1a\n Bitrate.\n\n\r\n\x05\x04\x1b\x02\x02\x05\x12\x04\xe2\x04\x02\x08\n\r\n\x05\x04\x1b\x02\x02\x01\x12\x04\xe2\x04\t\x10\n\r\n\x05\x04\x1b\x02\x02\x03\x12\x04\xe2\x04\x13\x14\n\x0c\n\x02\x04\x1c\x12\x06\xe5\x04\x00\xfc\x04\x01\n\x0b\n\x03\x04\x1c\x01\x12\x04\xe5\x04\x08!\n8\n\x04\x04\x1c\x02\x00\x12\x04\xe8\x04\x02\x1e\x1a* Gateway ID.\n Deprecated: use gateway_id.\n\n\r\n\x05\x04\x1c\x02\x00\x05\x12\x04\xe8\x04\x02\x07\n\r\n\x05\x04\x1c\x02\x00\x01\x12\x04\xe8\x04\x08\x19\n\r\n\x05\x04\x1c\x02\x00\x03\x12\x04\xe8\x04\x1c\x1d\n\x1b\n\x04\x04\x1c\x02\x01\x12\x04\xeb\x04\x02\x18\x1a\r Gateway ID.\n\n\r\n\x05\x04\x1c\x02\x01\x05\x12\x04\xeb\x04\x02\x08\n\r\n\x05\x04\x1c\x02\x01\x01\x12\x04\xeb\x04\t\x13\n\r\n\x05\x04\x1c\x02\x01\x03\x12\x04\xeb\x04\x16\x17\ns\n\x04\x04\x1c\x02\x02\x12\x04\xf0\x04\x02\x15\x1ae Command to execute.\n This command must be pre-configured in the LoRa Gateway Bridge\n configuration.\n\n\r\n\x05\x04\x1c\x02\x02\x05\x12\x04\xf0\x04\x02\x08\n\r\n\x05\x04\x1c\x02\x02\x01\x12\x04\xf0\x04\t\x10\n\r\n\x05\x04\x1c\x02\x02\x03\x12\x04\xf0\x04\x13\x14\nr\n\x04\x04\x1c\x02\x03\x12\x04\xf5\x04\x02\x15\x1ad Execution request ID.\n The same will be returned when the execution of the command has\n completed.\n\n\r\n\x05\x04\x1c\x02\x03\x05\x12\x04\xf5\x04\x02\x08\n\r\n\x05\x04\x1c\x02\x03\x01\x12\x04\xf5\x04\t\x10\n\r\n\x05\x04\x1c\x02\x03\x03\x12\x04\xf5\x04\x13\x14\n\x1f\n\x04\x04\x1c\x02\x04\x12\x04\xf8\x04\x02\x12\x1a\x11 Standard input.\n\n\r\n\x05\x04\x1c\x02\x04\x05\x12\x04\xf8\x04\x02\x07\n\r\n\x05\x04\x1c\x02\x04\x01\x12\x04\xf8\x04\x08\r\n\r\n\x05\x04\x1c\x02\x04\x03\x12\x04\xf8\x04\x10\x11\n&\n\x04\x04\x1c\x02\x05\x12\x04\xfb\x04\x02&\x1a\x18 Environment variables.\n\n\r\n\x05\x04\x1c\x02\x05\x06\x12\x04\xfb\x04\x02\x15\n\r\n\x05\x04\x1c\x02\x05\x01\x12\x04\xfb\x04\x16!\n\r\n\x05\x04\x1c\x02\x05\x03\x12\x04\xfb\x04$%\n\x0c\n\x02\x04\x1d\x12\x06\xfe\x04\x00\x91\x05\x01\n\x0b\n\x03\x04\x1d\x01\x12\x04\xfe\x04\x08\"\n8\n\x04\x04\x1d\x02\x00\x12\x04\x81\x05\x02\x1e\x1a* Gateway ID.\n Deprecated: use gateway_id.\n\n\r\n\x05\x04\x1d\x02\x00\x05\x12\x04\x81\x05\x02\x07\n\r\n\x05\x04\x1d\x02\x00\x01\x12\x04\x81\x05\x08\x19\n\r\n\x05\x04\x1d\x02\x00\x03\x12\x04\x81\x05\x1c\x1d\n\x1b\n\x04\x04\x1d\x02\x01\x12\x04\x84\x05\x02\x18\x1a\r Gateway ID.\n\n\r\n\x05\x04\x1d\x02\x01\x05\x12\x04\x84\x05\x02\x08\n\r\n\x05\x04\x1d\x02\x01\x01\x12\x04\x84\x05\t\x13\n\r\n\x05\x04\x1d\x02\x01\x03\x12\x04\x84\x05\x16\x17\n%\n\x04\x04\x1d\x02\x02\x12\x04\x87\x05\x02\x15\x1a\x17 Execution request ID.\n\n\r\n\x05\x04\x1d\x02\x02\x05\x12\x04\x87\x05\x02\x08\n\r\n\x05\x04\x1d\x02\x02\x01\x12\x04\x87\x05\t\x10\n\r\n\x05\x04\x1d\x02\x02\x03\x12\x04\x87\x05\x13\x14\n \n\x04\x04\x1d\x02\x03\x12\x04\x8a\x05\x02\x13\x1a\x12 Standard output.\n\n\r\n\x05\x04\x1d\x02\x03\x05\x12\x04\x8a\x05\x02\x07\n\r\n\x05\x04\x1d\x02\x03\x01\x12\x04\x8a\x05\x08\x0e\n\r\n\x05\x04\x1d\x02\x03\x03\x12\x04\x8a\x05\x11\x12\n\x1f\n\x04\x04\x1d\x02\x04\x12\x04\x8d\x05\x02\x13\x1a\x11 Standard error.\n\n\r\n\x05\x04\x1d\x02\x04\x05\x12\x04\x8d\x05\x02\x07\n\r\n\x05\x04\x1d\x02\x04\x01\x12\x04\x8d\x05\x08\x0e\n\r\n\x05\x04\x1d\x02\x04\x03\x12\x04\x8d\x05\x11\x12\n\x1e\n\x04\x04\x1d\x02\x05\x12\x04\x90\x05\x02\x13\x1a\x10 Error message.\n\n\r\n\x05\x04\x1d\x02\x05\x05\x12\x04\x90\x05\x02\x08\n\r\n\x05\x04\x1d\x02\x05\x01\x12\x04\x90\x05\t\x0e\n\r\n\x05\x04\x1d\x02\x05\x03\x12\x04\x90\x05\x11\x12\n\xc8\x01\n\x02\x04\x1e\x12\x06\x96\x05\x00\xa0\x05\x01\x1a\xb9\x01 RawPacketForwarderEvent contains a raw packet-forwarder event.\n It can be used to access packet-forwarder features that are not (fully)\n integrated with the ChirpStack Gateway Bridge.\n\n\x0b\n\x03\x04\x1e\x01\x12\x04\x96\x05\x08\x1f\n8\n\x04\x04\x1e\x02\x00\x12\x04\x99\x05\x02\x1e\x1a* Gateway ID.\n Deprecated: use gateway_id.\n\n\r\n\x05\x04\x1e\x02\x00\x05\x12\x04\x99\x05\x02\x07\n\r\n\x05\x04\x1e\x02\x00\x01\x12\x04\x99\x05\x08\x19\n\r\n\x05\x04\x1e\x02\x00\x03\x12\x04\x99\x05\x1c\x1d\n\x1b\n\x04\x04\x1e\x02\x01\x12\x04\x9c\x05\x02\x18\x1a\r Gateway ID.\n\n\r\n\x05\x04\x1e\x02\x01\x05\x12\x04\x9c\x05\x02\x08\n\r\n\x05\x04\x1e\x02\x01\x01\x12\x04\x9c\x05\t\x13\n\r\n\x05\x04\x1e\x02\x01\x03\x12\x04\x9c\x05\x16\x17\n1\n\x04\x04\x1e\x02\x02\x12\x04\x9f\x05\x02\x14\x1a# Payload contains the raw payload.\n\n\r\n\x05\x04\x1e\x02\x02\x05\x12\x04\x9f\x05\x02\x07\n\r\n\x05\x04\x1e\x02\x02\x01\x12\x04\x9f\x05\x08\x0f\n\r\n\x05\x04\x1e\x02\x02\x03\x12\x04\x9f\x05\x12\x13\n\xca\x01\n\x02\x04\x1f\x12\x06\xa5\x05\x00\xaf\x05\x01\x1a\xbb\x01 RawPacketForwarderEvent contains a raw packet-forwarder command.\n It can be used to access packet-forwarder features that are not (fully)\n integrated with the ChirpStack Gateway Bridge.\n\n\x0b\n\x03\x04\x1f\x01\x12\x04\xa5\x05\x08!\n8\n\x04\x04\x1f\x02\x00\x12\x04\xa8\x05\x02\x1e\x1a* Gateway ID.\n Deprecated: use gateway_id.\n\n\r\n\x05\x04\x1f\x02\x00\x05\x12\x04\xa8\x05\x02\x07\n\r\n\x05\x04\x1f\x02\x00\x01\x12\x04\xa8\x05\x08\x19\n\r\n\x05\x04\x1f\x02\x00\x03\x12\x04\xa8\x05\x1c\x1d\n\x1b\n\x04\x04\x1f\x02\x01\x12\x04\xab\x05\x02\x18\x1a\r Gateway ID.\n\n\r\n\x05\x04\x1f\x02\x01\x05\x12\x04\xab\x05\x02\x08\n\r\n\x05\x04\x1f\x02\x01\x01\x12\x04\xab\x05\t\x13\n\r\n\x05\x04\x1f\x02\x01\x03\x12\x04\xab\x05\x16\x17\n1\n\x04\x04\x1f\x02\x02\x12\x04\xae\x05\x02\x14\x1a# Payload contains the raw payload.\n\n\r\n\x05\x04\x1f\x02\x02\x05\x12\x04\xae\x05\x02\x07\n\r\n\x05\x04\x1f\x02\x02\x01\x12\x04\xae\x05\x08\x0f\n\r\n\x05\x04\x1f\x02\x02\x03\x12\x04\xae\x05\x12\x13\nE\n\x02\x04 \x12\x06\xb2\x05\x00\xc0\x05\x01\x1a7 ConnState contains the connection state of a gateway.\n\n\x0b\n\x03\x04 \x01\x12\x04\xb2\x05\x08\x11\n8\n\x04\x04 \x02\x00\x12\x04\xb5\x05\x02\x1e\x1a* Gateway ID.\n Deprecated: use gateway_id.\n\n\r\n\x05\x04 \x02\x00\x05\x12\x04\xb5\x05\x02\x07\n\r\n\x05\x04 \x02\x00\x01\x12\x04\xb5\x05\x08\x19\n\r\n\x05\x04 \x02\x00\x03\x12\x04\xb5\x05\x1c\x1d\n\x1b\n\x04\x04 \x02\x01\x12\x04\xb8\x05\x02\x18\x1a\r Gateway ID.\n\n\r\n\x05\x04 \x02\x01\x05\x12\x04\xb8\x05\x02\x08\n\r\n\x05\x04 \x02\x01\x01\x12\x04\xb8\x05\t\x13\n\r\n\x05\x04 \x02\x01\x03\x12\x04\xb8\x05\x16\x17\n\x0e\n\x04\x04 \x04\x00\x12\x06\xba\x05\x02\xbd\x05\x03\n\r\n\x05\x04 \x04\x00\x01\x12\x04\xba\x05\x07\x0c\n\x0e\n\x06\x04 \x04\x00\x02\x00\x12\x04\xbb\x05\x04\x10\n\x0f\n\x07\x04 \x04\x00\x02\x00\x01\x12\x04\xbb\x05\x04\x0b\n\x0f\n\x07\x04 \x04\x00\x02\x00\x02\x12\x04\xbb\x05\x0e\x0f\n\x0e\n\x06\x04 \x04\x00\x02\x01\x12\x04\xbc\x05\x04\x0f\n\x0f\n\x07\x04 \x04\x00\x02\x01\x01\x12\x04\xbc\x05\x04\n\n\x0f\n\x07\x04 \x04\x00\x02\x01\x02\x12\x04\xbc\x05\r\x0e\n\x0c\n\x04\x04 \x02\x02\x12\x04\xbf\x05\x02\x12\n\r\n\x05\x04 \x02\x02\x06\x12\x04\xbf\x05\x02\x07\n\r\n\x05\x04 \x02\x02\x01\x12\x04\xbf\x05\x08\r\n\r\n\x05\x04 \x02\x02\x03\x12\x04\xbf\x05\x10\x11b\x06proto3\n\xd9\x14\n\x13api/frame_log.proto\x12\x03api\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x13common/common.proto\x1a\x0bgw/gw.proto\"\xef\x02\n\x0eUplinkFrameLog\x12\x1f\n\x0bphy_payload\x18\x01 \x01(\x0cR\nphyPayload\x12)\n\x07tx_info\x18\x02 \x01(\x0b2\x10.gw.UplinkTxInfoR\x06txInfo\x12)\n\x07rx_info\x18\x03 \x03(\x0b2\x10.gw.UplinkRxInfoR\x06rxInfo\x12$\n\x06m_type\x18\x04 \x01(\x0e2\r.common.MTypeR\x05mType\x12\x19\n\x08dev_addr\x18\x05 \x01(\tR\x07devAddr\x12\x17\n\x07dev_eui\x18\x06 \x01(\tR\x06devEui\x12.\n\x04time\x18\x07 \x01(\x0b2\x1a.google.protobuf.TimestampR\x04time\x12(\n\x10plaintext_f_opts\x18\x08 \x01(\x08R\x0eplaintextFOpts\x122\n\x15plaintext_frm_payload\x18\t \x01(\x08R\x13plaintextFrmPayload\"\x88\x03\n\x10DownlinkFrameLog\x12.\n\x04time\x18\x01 \x01(\x0b2\x1a.google.protobuf.TimestampR\x04time\x12\x1f\n\x0bphy_payload\x18\x02 \x01(\x0cR\nphyPayload\x12+\n\x07tx_info\x18\x03 \x01(\x0b2\x12.gw.DownlinkTxInfoR\x06txInfo\x12\x1f\n\x0bdownlink_id\x18\x04 \x01(\rR\ndownlinkId\x12\x1d\n\ngateway_id\x18\x05 \x01(\tR\tgatewayId\x12$\n\x06m_type\x18\x06 \x01(\x0e2\r.common.MTypeR\x05mType\x12\x19\n\x08dev_addr\x18\x07 \x01(\tR\x07devAddr\x12\x17\n\x07dev_eui\x18\x08 \x01(\tR\x06devEui\x12(\n\x10plaintext_f_opts\x18\t \x01(\x08R\x0eplaintextFOpts\x122\n\x15plaintext_frm_payload\x18\n \x01(\x08R\x13plaintextFrmPayloadBe\n\x11io.chirpstack.apiB\rFrameLogProtoP\x01Z.github.com/chirpstack/chirpstack/api/go/v4/api\xaa\x02\x0eChirpstack.ApiJ\x8d\r\n\x06\x12\x04\x00\x00I\x01\n\x08\n\x01\x0c\x12\x03\x00\x00\x12\n\x08\n\x01\x02\x12\x03\x02\x00\x0c\n\x08\n\x01\x08\x12\x03\x04\x00E\n\t\n\x02\x08\x0b\x12\x03\x04\x00E\n\x08\n\x01\x08\x12\x03\x05\x00*\n\t\n\x02\x08\x01\x12\x03\x05\x00*\n\x08\n\x01\x08\x12\x03\x06\x00\"\n\t\n\x02\x08\n\x12\x03\x06\x00\"\n\x08\n\x01\x08\x12\x03\x07\x00.\n\t\n\x02\x08\x08\x12\x03\x07\x00.\n\x08\n\x01\x08\x12\x03\x08\x00+\n\t\n\x02\x08%\x12\x03\x08\x00+\n\t\n\x02\x03\x00\x12\x03\n\x00)\n\t\n\x02\x03\x01\x12\x03\x0b\x00\x1d\n\t\n\x02\x03\x02\x12\x03\x0c\x00\x15\n\n\n\x02\x04\x00\x12\x04\x0e\x00)\x01\n\n\n\x03\x04\x00\x01\x12\x03\x0e\x08\x16\n\x1a\n\x04\x04\x00\x02\x00\x12\x03\x10\x04\x1a\x1a\r PHYPayload.\n\n\x0c\n\x05\x04\x00\x02\x00\x05\x12\x03\x10\x04\t\n\x0c\n\x05\x04\x00\x02\x00\x01\x12\x03\x10\n\x15\n\x0c\n\x05\x04\x00\x02\x00\x03\x12\x03\x10\x18\x19\n\x1c\n\x04\x04\x00\x02\x01\x12\x03\x13\x04 \x1a\x0f TX meta-data.\n\n\x0c\n\x05\x04\x00\x02\x01\x06\x12\x03\x13\x04\x13\n\x0c\n\x05\x04\x00\x02\x01\x01\x12\x03\x13\x14\x1b\n\x0c\n\x05\x04\x00\x02\x01\x03\x12\x03\x13\x1e\x1f\n\x1c\n\x04\x04\x00\x02\x02\x12\x03\x16\x04)\x1a\x0f RX meta-data.\n\n\x0c\n\x05\x04\x00\x02\x02\x04\x12\x03\x16\x04\x0c\n\x0c\n\x05\x04\x00\x02\x02\x06\x12\x03\x16\r\x1c\n\x0c\n\x05\x04\x00\x02\x02\x01\x12\x03\x16\x1d$\n\x0c\n\x05\x04\x00\x02\x02\x03\x12\x03\x16\'(\n\x1c\n\x04\x04\x00\x02\x03\x12\x03\x19\x04\x1c\x1a\x0f Message type.\n\n\x0c\n\x05\x04\x00\x02\x03\x06\x12\x03\x19\x04\x10\n\x0c\n\x05\x04\x00\x02\x03\x01\x12\x03\x19\x11\x17\n\x0c\n\x05\x04\x00\x02\x03\x03\x12\x03\x19\x1a\x1b\n)\n\x04\x04\x00\x02\x04\x12\x03\x1c\x04\x18\x1a\x1c Device address (optional).\n\n\x0c\n\x05\x04\x00\x02\x04\x05\x12\x03\x1c\x04\n\n\x0c\n\x05\x04\x00\x02\x04\x01\x12\x03\x1c\x0b\x13\n\x0c\n\x05\x04\x00\x02\x04\x03\x12\x03\x1c\x16\x17\n%\n\x04\x04\x00\x02\x05\x12\x03\x1f\x04\x17\x1a\x18 Device EUI (optional).\n\n\x0c\n\x05\x04\x00\x02\x05\x05\x12\x03\x1f\x04\n\n\x0c\n\x05\x04\x00\x02\x05\x01\x12\x03\x1f\x0b\x12\n\x0c\n\x05\x04\x00\x02\x05\x03\x12\x03\x1f\x15\x16\n\x14\n\x04\x04\x00\x02\x06\x12\x03\"\x04\'\x1a\x07 Time.\n\n\x0c\n\x05\x04\x00\x02\x06\x06\x12\x03\"\x04\x1d\n\x0c\n\x05\x04\x00\x02\x06\x01\x12\x03\"\x1e\"\n\x0c\n\x05\x04\x00\x02\x06\x03\x12\x03\"%&\n-\n\x04\x04\x00\x02\x07\x12\x03%\x04\x1e\x1a  Plaintext f_opts mac-commands.\n\n\x0c\n\x05\x04\x00\x02\x07\x05\x12\x03%\x04\x08\n\x0c\n\x05\x04\x00\x02\x07\x01\x12\x03%\t\x19\n\x0c\n\x05\x04\x00\x02\x07\x03\x12\x03%\x1c\x1d\n%\n\x04\x04\x00\x02\x08\x12\x03(\x04#\x1a\x18 Plaintext frm_payload.\n\n\x0c\n\x05\x04\x00\x02\x08\x05\x12\x03(\x04\x08\n\x0c\n\x05\x04\x00\x02\x08\x01\x12\x03(\t\x1e\n\x0c\n\x05\x04\x00\x02\x08\x03\x12\x03(!\"\n\n\n\x02\x04\x01\x12\x04+\x00I\x01\n\n\n\x03\x04\x01\x01\x12\x03+\x08\x18\n\x14\n\x04\x04\x01\x02\x00\x12\x03-\x04\'\x1a\x07 Time.\n\n\x0c\n\x05\x04\x01\x02\x00\x06\x12\x03-\x04\x1d\n\x0c\n\x05\x04\x01\x02\x00\x01\x12\x03-\x1e\"\n\x0c\n\x05\x04\x01\x02\x00\x03\x12\x03-%&\n\x1a\n\x04\x04\x01\x02\x01\x12\x030\x04\x1a\x1a\r PHYPayload.\n\n\x0c\n\x05\x04\x01\x02\x01\x05\x12\x030\x04\t\n\x0c\n\x05\x04\x01\x02\x01\x01\x12\x030\n\x15\n\x0c\n\x05\x04\x01\x02\x01\x03\x12\x030\x18\x19\n\x1c\n\x04\x04\x01\x02\x02\x12\x033\x04\"\x1a\x0f TX meta-data.\n\n\x0c\n\x05\x04\x01\x02\x02\x06\x12\x033\x04\x15\n\x0c\n\x05\x04\x01\x02\x02\x01\x12\x033\x16\x1d\n\x0c\n\x05\x04\x01\x02\x02\x03\x12\x033 !\n\x1b\n\x04\x04\x01\x02\x03\x12\x036\x04\x1b\x1a\x0e Downlink ID.\n\n\x0c\n\x05\x04\x01\x02\x03\x05\x12\x036\x04\n\n\x0c\n\x05\x04\x01\x02\x03\x01\x12\x036\x0b\x16\n\x0c\n\x05\x04\x01\x02\x03\x03\x12\x036\x19\x1a\n\"\n\x04\x04\x01\x02\x04\x12\x039\x04\x1a\x1a\x15 Gateway ID (EUI64).\n\n\x0c\n\x05\x04\x01\x02\x04\x05\x12\x039\x04\n\n\x0c\n\x05\x04\x01\x02\x04\x01\x12\x039\x0b\x15\n\x0c\n\x05\x04\x01\x02\x04\x03\x12\x039\x18\x19\n\x1c\n\x04\x04\x01\x02\x05\x12\x03<\x04\x1c\x1a\x0f Message type.\n\n\x0c\n\x05\x04\x01\x02\x05\x06\x12\x03<\x04\x10\n\x0c\n\x05\x04\x01\x02\x05\x01\x12\x03<\x11\x17\n\x0c\n\x05\x04\x01\x02\x05\x03\x12\x03<\x1a\x1b\n)\n\x04\x04\x01\x02\x06\x12\x03?\x04\x18\x1a\x1c Device address (optional).\n\n\x0c\n\x05\x04\x01\x02\x06\x05\x12\x03?\x04\n\n\x0c\n\x05\x04\x01\x02\x06\x01\x12\x03?\x0b\x13\n\x0c\n\x05\x04\x01\x02\x06\x03\x12\x03?\x16\x17\n%\n\x04\x04\x01\x02\x07\x12\x03B\x04\x17\x1a\x18 Device EUI (optional).\n\n\x0c\n\x05\x04\x01\x02\x07\x05\x12\x03B\x04\n\n\x0c\n\x05\x04\x01\x02\x07\x01\x12\x03B\x0b\x12\n\x0c\n\x05\x04\x01\x02\x07\x03\x12\x03B\x15\x16\n-\n\x04\x04\x01\x02\x08\x12\x03E\x04\x1e\x1a  Plaintext f_opts mac-commands.\n\n\x0c\n\x05\x04\x01\x02\x08\x05\x12\x03E\x04\x08\n\x0c\n\x05\x04\x01\x02\x08\x01\x12\x03E\t\x19\n\x0c\n\x05\x04\x01\x02\x08\x03\x12\x03E\x1c\x1d\n%\n\x04\x04\x01\x02\t\x12\x03H\x04$\x1a\x18 Plaintext frm_payload.\n\n\x0c\n\x05\x04\x01\x02\t\x05\x12\x03H\x04\x08\n\x0c\n\x05\x04\x01\x02\t\x01\x12\x03H\t\x1e\n\x0c\n\x05\x04\x01\x02\t\x03\x12\x03H!#b\x06proto3\n\xcb^\n\x19api/multicast_group.proto\x12\x03api\x1a\x1cgoogle/api/annotations.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a\x13common/common.proto\"\xeb\x03\n\x0eMulticastGroup\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\x12%\n\x0eapplication_id\x18\x03 \x01(\tR\rapplicationId\x12&\n\x06region\x18\x04 \x01(\x0e2\x0e.common.RegionR\x06region\x12\x17\n\x07mc_addr\x18\x05 \x01(\tR\x06mcAddr\x12\x1f\n\x0cmc_nwk_s_key\x18\x06 \x01(\tR\tmcNwkSKey\x12\x1f\n\x0cmc_app_s_key\x18\x07 \x01(\tR\tmcAppSKey\x12\x13\n\x05f_cnt\x18\x08 \x01(\rR\x04fCnt\x126\n\ngroup_type\x18\t \x01(\x0e2\x17.api.MulticastGroupTypeR\tgroupType\x12\x0e\n\x02dr\x18\n \x01(\rR\x02dr\x12\x1c\n\tfrequency\x18\x0b \x01(\rR\tfrequency\x126\n\x18class_b_ping_slot_period\x18\x0c \x01(\rR\x14classBPingSlotPeriod\x12X\n\x17class_c_scheduling_type\x18\r \x01(\x0e2!.api.MulticastGroupSchedulingTypeR\x14classCSchedulingType\"\x92\x02\n\x16MulticastGroupListItem\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x129\n\ncreated_at\x18\x02 \x01(\x0b2\x1a.google.protobuf.TimestampR\tcreatedAt\x129\n\nupdated_at\x18\x03 \x01(\x0b2\x1a.google.protobuf.TimestampR\tupdatedAt\x12\x12\n\x04name\x18\x04 \x01(\tR\x04name\x12&\n\x06region\x18\x05 \x01(\x0e2\x0e.common.RegionR\x06region\x126\n\ngroup_type\x18\x06 \x01(\x0e2\x17.api.MulticastGroupTypeR\tgroupType\"[\n\x1bCreateMulticastGroupRequest\x12<\n\x0fmulticast_group\x18\x01 \x01(\x0b2\x13.api.MulticastGroupR\x0emulticastGroup\".\n\x1cCreateMulticastGroupResponse\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\"*\n\x18GetMulticastGroupRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\"\xcf\x01\n\x19GetMulticastGroupResponse\x12<\n\x0fmulticast_group\x18\x01 \x01(\x0b2\x13.api.MulticastGroupR\x0emulticastGroup\x129\n\ncreated_at\x18\x02 \x01(\x0b2\x1a.google.protobuf.TimestampR\tcreatedAt\x129\n\nupdated_at\x18\x03 \x01(\x0b2\x1a.google.protobuf.TimestampR\tupdatedAt\"[\n\x1bUpdateMulticastGroupRequest\x12<\n\x0fmulticast_group\x18\x01 \x01(\x0b2\x13.api.MulticastGroupR\x0emulticastGroup\"-\n\x1bDeleteMulticastGroupRequest\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\"\x89\x01\n\x1aListMulticastGroupsRequest\x12\x14\n\x05limit\x18\x01 \x01(\rR\x05limit\x12\x16\n\x06offset\x18\x02 \x01(\rR\x06offset\x12\x16\n\x06search\x18\x03 \x01(\tR\x06search\x12%\n\x0eapplication_id\x18\x04 \x01(\tR\rapplicationId\"s\n\x1bListMulticastGroupsResponse\x12\x1f\n\x0btotal_count\x18\x01 \x01(\rR\ntotalCount\x123\n\x06result\x18\x02 \x03(\x0b2\x1b.api.MulticastGroupListItemR\x06result\"i\n AddDeviceToMulticastGroupRequest\x12,\n\x12multicast_group_id\x18\x01 \x01(\tR\x10multicastGroupId\x12\x17\n\x07dev_eui\x18\x02 \x01(\tR\x06devEui\"n\n%RemoveDeviceFromMulticastGroupRequest\x12,\n\x12multicast_group_id\x18\x01 \x01(\tR\x10multicastGroupId\x12\x17\n\x07dev_eui\x18\x02 \x01(\tR\x06devEui\"p\n!AddGatewayToMulticastGroupRequest\x12,\n\x12multicast_group_id\x18\x01 \x01(\tR\x10multicastGroupId\x12\x1d\n\ngateway_id\x18\x02 \x01(\tR\tgatewayId\"u\n&RemoveGatewayFromMulticastGroupRequest\x12,\n\x12multicast_group_id\x18\x01 \x01(\tR\x10multicastGroupId\x12\x1d\n\ngateway_id\x18\x02 \x01(\tR\tgatewayId\"\x87\x01\n\x17MulticastGroupQueueItem\x12,\n\x12multicast_group_id\x18\x01 \x01(\tR\x10multicastGroupId\x12\x13\n\x05f_cnt\x18\x02 \x01(\rR\x04fCnt\x12\x15\n\x06f_port\x18\x03 \x01(\rR\x05fPort\x12\x12\n\x04data\x18\x04 \x01(\x0cR\x04data\"d\n%EnqueueMulticastGroupQueueItemRequest\x12;\n\nqueue_item\x18\x01 \x01(\x0b2\x1c.api.MulticastGroupQueueItemR\tqueueItem\"=\n&EnqueueMulticastGroupQueueItemResponse\x12\x13\n\x05f_cnt\x18\x01 \x01(\rR\x04fCnt\"O\n\x1fFlushMulticastGroupQueueRequest\x12,\n\x12multicast_group_id\x18\x01 \x01(\tR\x10multicastGroupId\"N\n\x1eListMulticastGroupQueueRequest\x12,\n\x12multicast_group_id\x18\x01 \x01(\tR\x10multicastGroupId\"U\n\x1fListMulticastGroupQueueResponse\x122\n\x05items\x18\x01 \x03(\x0b2\x1c.api.MulticastGroupQueueItemR\x05items*.\n\x12MulticastGroupType\x12\x0b\n\x07CLASS_C\x10\x00\x12\x0b\n\x07CLASS_B\x10\x01*7\n\x1cMulticastGroupSchedulingType\x12\t\n\x05DELAY\x10\x00\x12\x0c\n\x08GPS_TIME\x10\x012\xdd\x0c\n\x15MulticastGroupService\x12o\n\x06Create\x12 .api.CreateMulticastGroupRequest\x1a!.api.CreateMulticastGroupResponse\" \x82\xd3\xe4\x93\x02\x1a\"\x15/api/multicast-groups:\x01*\x12h\n\x03Get\x12\x1d.api.GetMulticastGroupRequest\x1a\x1e.api.GetMulticastGroupResponse\"\"\x82\xd3\xe4\x93\x02\x1c\x12\x1a/api/multicast-groups/{id}\x12y\n\x06Update\x12 .api.UpdateMulticastGroupRequest\x1a\x16.google.protobuf.Empty\"5\x82\xd3\xe4\x93\x02/\x1a*/api/multicast-groups/{multicast_group.id}:\x01*\x12f\n\x06Delete\x12 .api.DeleteMulticastGroupRequest\x1a\x16.google.protobuf.Empty\"\"\x82\xd3\xe4\x93\x02\x1c*\x1a/api/multicast-groups/{id}\x12h\n\x04List\x12\x1f.api.ListMulticastGroupsRequest\x1a .api.ListMulticastGroupsResponse\"\x1d\x82\xd3\xe4\x93\x02\x17\x12\x15/api/multicast-groups\x12\x89\x01\n\tAddDevice\x12%.api.AddDeviceToMulticastGroupRequest\x1a\x16.google.protobuf.Empty\"=\x82\xd3\xe4\x93\x027\"2/api/multicast-groups/{multicast_group_id}/devices:\x01*\x12\x98\x01\n\x0cRemoveDevice\x12*.api.RemoveDeviceFromMulticastGroupRequest\x1a\x16.google.protobuf.Empty\"D\x82\xd3\xe4\x93\x02>*</api/multicast-groups/{multicast_group_id}/devices/{dev_eui}\x12\x8c\x01\n\nAddGateway\x12&.api.AddGatewayToMulticastGroupRequest\x1a\x16.google.protobuf.Empty\">\x82\xd3\xe4\x93\x028\"3/api/multicast-groups/{multicast_group_id}/gateways:\x01*\x12\x9e\x01\n\rRemoveGateway\x12+.api.RemoveGatewayFromMulticastGroupRequest\x1a\x16.google.protobuf.Empty\"H\x82\xd3\xe4\x93\x02B*@/api/multicast-groups/{multicast_group_id}/gateways/{gateway_id}\x12\xaa\x01\n\x07Enqueue\x12*.api.EnqueueMulticastGroupQueueItemRequest\x1a+.api.EnqueueMulticastGroupQueueItemResponse\"F\x82\xd3\xe4\x93\x02@\";/api/multicast-groups/{queue_item.multicast_group_id}/queue:\x01*\x12\x84\x01\n\nFlushQueue\x12$.api.FlushMulticastGroupQueueRequest\x1a\x16.google.protobuf.Empty\"8\x82\xd3\xe4\x93\x022*0/api/multicast-groups/{multicast_group_id}/queue\x12\x90\x01\n\tListQueue\x12#.api.ListMulticastGroupQueueRequest\x1a$.api.ListMulticastGroupQueueResponse\"8\x82\xd3\xe4\x93\x022\x120/api/multicast-groups/{multicast_group_id}/queueBk\n\x11io.chirpstack.apiB\x13MulticastGroupProtoP\x01Z.github.com/chirpstack/chirpstack/api/go/v4/api\xaa\x02\x0eChirpstack.ApiJ\xf3:\n\x07\x12\x05\x00\x00\xbf\x02\x01\n\x08\n\x01\x0c\x12\x03\x00\x00\x12\n\x08\n\x01\x02\x12\x03\x02\x00\x0c\n\x08\n\x01\x08\x12\x03\x04\x00E\n\t\n\x02\x08\x0b\x12\x03\x04\x00E\n\x08\n\x01\x08\x12\x03\x05\x00*\n\t\n\x02\x08\x01\x12\x03\x05\x00*\n\x08\n\x01\x08\x12\x03\x06\x00\"\n\t\n\x02\x08\n\x12\x03\x06\x00\"\n\x08\n\x01\x08\x12\x03\x07\x004\n\t\n\x02\x08\x08\x12\x03\x07\x004\n\x08\n\x01\x08\x12\x03\x08\x00+\n\t\n\x02\x08%\x12\x03\x08\x00+\n\t\n\x02\x03\x00\x12\x03\n\x00&\n\t\n\x02\x03\x01\x12\x03\x0b\x00)\n\t\n\x02\x03\x02\x12\x03\x0c\x00%\n\t\n\x02\x03\x03\x12\x03\r\x00\x1d\nM\n\x02\x06\x00\x12\x04\x11\x00j\x01\x1aA MulticastGroupService is the service managing multicast-groups.\n\n\n\n\x03\x06\x00\x01\x12\x03\x11\x08\x1d\n1\n\x04\x06\x00\x02\x00\x12\x04\x13\x04\x18\x05\x1a# Create the given multicast group.\n\n\x0c\n\x05\x06\x00\x02\x00\x01\x12\x03\x13\x08\x0e\n\x0c\n\x05\x06\x00\x02\x00\x02\x12\x03\x13\x0f*\n\x0c\n\x05\x06\x00\x02\x00\x03\x12\x03\x135Q\n\r\n\x05\x06\x00\x02\x00\x04\x12\x04\x14\x08\x17\n\n\x11\n\t\x06\x00\x02\x00\x04\xb0\xca\xbc\"\x12\x04\x14\x08\x17\n\nA\n\x04\x06\x00\x02\x01\x12\x04\x1b\x04\x1f\x05\x1a3 Get returns the multicast group for the given ID.\n\n\x0c\n\x05\x06\x00\x02\x01\x01\x12\x03\x1b\x08\x0b\n\x0c\n\x05\x06\x00\x02\x01\x02\x12\x03\x1b\x0c$\n\x0c\n\x05\x06\x00\x02\x01\x03\x12\x03\x1b/H\n\r\n\x05\x06\x00\x02\x01\x04\x12\x04\x1c\x08\x1e\n\n\x11\n\t\x06\x00\x02\x01\x04\xb0\xca\xbc\"\x12\x04\x1c\x08\x1e\n\n1\n\x04\x06\x00\x02\x02\x12\x04\"\x04\'\x05\x1a# Update the given multicast group.\n\n\x0c\n\x05\x06\x00\x02\x02\x01\x12\x03\"\x08\x0e\n\x0c\n\x05\x06\x00\x02\x02\x02\x12\x03\"\x0f*\n\x0c\n\x05\x06\x00\x02\x02\x03\x12\x03\"5J\n\r\n\x05\x06\x00\x02\x02\x04\x12\x04#\x08&\n\n\x11\n\t\x06\x00\x02\x02\x04\xb0\xca\xbc\"\x12\x04#\x08&\n\n=\n\x04\x06\x00\x02\x03\x12\x04*\x04.\x05\x1a/ Delete the multicast-group with the given ID.\n\n\x0c\n\x05\x06\x00\x02\x03\x01\x12\x03*\x08\x0e\n\x0c\n\x05\x06\x00\x02\x03\x02\x12\x03*\x0f*\n\x0c\n\x05\x06\x00\x02\x03\x03\x12\x03*5J\n\r\n\x05\x06\x00\x02\x03\x04\x12\x04+\x08-\n\n\x11\n\t\x06\x00\x02\x03\x04\xb0\xca\xbc\"\x12\x04+\x08-\n\n4\n\x04\x06\x00\x02\x04\x12\x041\x045\x05\x1a& List the available multicast groups.\n\n\x0c\n\x05\x06\x00\x02\x04\x01\x12\x031\x08\x0c\n\x0c\n\x05\x06\x00\x02\x04\x02\x12\x031\r\'\n\x0c\n\x05\x06\x00\x02\x04\x03\x12\x0312M\n\r\n\x05\x06\x00\x02\x04\x04\x12\x042\x084\n\n\x11\n\t\x06\x00\x02\x04\x04\xb0\xca\xbc\"\x12\x042\x084\n\n4\n\x04\x06\x00\x02\x05\x12\x048\x04=\x05\x1a& Add a device to the multicast group.\n\n\x0c\n\x05\x06\x00\x02\x05\x01\x12\x038\x08\x11\n\x0c\n\x05\x06\x00\x02\x05\x02\x12\x038\x122\n\x0c\n\x05\x06\x00\x02\x05\x03\x12\x038=R\n\r\n\x05\x06\x00\x02\x05\x04\x12\x049\x08<\n\n\x11\n\t\x06\x00\x02\x05\x04\xb0\xca\xbc\"\x12\x049\x08<\n\n9\n\x04\x06\x00\x02\x06\x12\x04@\x04D\x05\x1a+ Remove a device from the multicast group.\n\n\x0c\n\x05\x06\x00\x02\x06\x01\x12\x03@\x08\x14\n\x0c\n\x05\x06\x00\x02\x06\x02\x12\x03@\x15:\n\x0c\n\x05\x06\x00\x02\x06\x03\x12\x03@EZ\n\r\n\x05\x06\x00\x02\x06\x04\x12\x04A\x08C\n\n\x11\n\t\x06\x00\x02\x06\x04\xb0\xca\xbc\"\x12\x04A\x08C\n\n5\n\x04\x06\x00\x02\x07\x12\x04G\x04L\x05\x1a\' Add a gateway to the multicast group.\n\n\x0c\n\x05\x06\x00\x02\x07\x01\x12\x03G\x08\x12\n\x0c\n\x05\x06\x00\x02\x07\x02\x12\x03G\x134\n\x0c\n\x05\x06\x00\x02\x07\x03\x12\x03G?T\n\r\n\x05\x06\x00\x02\x07\x04\x12\x04H\x08K\n\n\x11\n\t\x06\x00\x02\x07\x04\xb0\xca\xbc\"\x12\x04H\x08K\n\n:\n\x04\x06\x00\x02\x08\x12\x04O\x04S\x05\x1a, Remove a gateway from the multicast group.\n\n\x0c\n\x05\x06\x00\x02\x08\x01\x12\x03O\x08\x15\n\x0c\n\x05\x06\x00\x02\x08\x02\x12\x03O\x16<\n\x0c\n\x05\x06\x00\x02\x08\x03\x12\x03OG\\\n\r\n\x05\x06\x00\x02\x08\x04\x12\x04P\x08R\n\n\x11\n\t\x06\x00\x02\x08\x04\xb0\xca\xbc\"\x12\x04P\x08R\n\n@\n\x04\x06\x00\x02\t\x12\x04V\x04[\x05\x1a2 Add the given item to the multicast group queue.\n\n\x0c\n\x05\x06\x00\x02\t\x01\x12\x03V\x08\x0f\n\x0c\n\x05\x06\x00\x02\t\x02\x12\x03V\x105\n\x0c\n\x05\x06\x00\x02\t\x03\x12\x03V@f\n\r\n\x05\x06\x00\x02\t\x04\x12\x04W\x08Z\n\n\x11\n\t\x06\x00\x02\t\x04\xb0\xca\xbc\"\x12\x04W\x08Z\n\n>\n\x04\x06\x00\x02\n\x12\x04^\x04b\x05\x1a0 Flush the queue for the given multicast group.\n\n\x0c\n\x05\x06\x00\x02\n\x01\x12\x03^\x08\x12\n\x0c\n\x05\x06\x00\x02\n\x02\x12\x03^\x132\n\x0c\n\x05\x06\x00\x02\n\x03\x12\x03^=R\n\r\n\x05\x06\x00\x02\n\x04\x12\x04_\x08a\n\n\x11\n\t\x06\x00\x02\n\x04\xb0\xca\xbc\"\x12\x04_\x08a\n\n<\n\x04\x06\x00\x02\x0b\x12\x04e\x04i\x05\x1a. List the items in the multicast group queue.\n\n\x0c\n\x05\x06\x00\x02\x0b\x01\x12\x03e\x08\x11\n\x0c\n\x05\x06\x00\x02\x0b\x02\x12\x03e\x120\n\x0c\n\x05\x06\x00\x02\x0b\x03\x12\x03e;Z\n\r\n\x05\x06\x00\x02\x0b\x04\x12\x04f\x08h\n\n\x11\n\t\x06\x00\x02\x0b\x04\xb0\xca\xbc\"\x12\x04f\x08h\n\n\n\n\x02\x05\x00\x12\x04l\x00r\x01\n\n\n\x03\x05\x00\x01\x12\x03l\x05\x17\n\x17\n\x04\x05\x00\x02\x00\x12\x03n\x04\x10\x1a\n Class C.\n\n\x0c\n\x05\x05\x00\x02\x00\x01\x12\x03n\x04\x0b\n\x0c\n\x05\x05\x00\x02\x00\x02\x12\x03n\x0e\x0f\n\x17\n\x04\x05\x00\x02\x01\x12\x03q\x04\x10\x1a\n Class-B.\n\n\x0c\n\x05\x05\x00\x02\x01\x01\x12\x03q\x04\x0b\n\x0c\n\x05\x05\x00\x02\x01\x02\x12\x03q\x0e\x0f\n\n\n\x02\x05\x01\x12\x04t\x00\x7f\x01\n\n\n\x03\x05\x01\x01\x12\x03t\x05!\n\x9d\x01\n\x04\x05\x01\x02\x00\x12\x03x\x04\x0e\x1a\x8f\x01 Delay.\n If multicast downlinks must be sent through multiple gateways, then\n these will be sent one by one with a delay between each gateway.\n\n\x0c\n\x05\x05\x01\x02\x00\x01\x12\x03x\x04\t\n\x0c\n\x05\x05\x01\x02\x00\x02\x12\x03x\x0c\r\n\xdf\x01\n\x04\x05\x01\x02\x01\x12\x03~\x04\x11\x1a\xd1\x01 Time.\n If multicast downlinks must be sent through multiple gateways, then\n these will be sent simultaneously using GPS time synchronization.\n Note that this does require GPS time-synchronized LoRa gateways.\n\n\x0c\n\x05\x05\x01\x02\x01\x01\x12\x03~\x04\x0c\n\x0c\n\x05\x05\x01\x02\x01\x02\x12\x03~\x0f\x10\n\x0c\n\x02\x04\x00\x12\x06\x81\x01\x00\xaa\x01\x01\n\x0b\n\x03\x04\x00\x01\x12\x04\x81\x01\x08\x16\nK\n\x04\x04\x00\x02\x00\x12\x04\x84\x01\x04\x12\x1a= ID (UUID).\n This will be generated automatically on create.\n\n\r\n\x05\x04\x00\x02\x00\x05\x12\x04\x84\x01\x04\n\n\r\n\x05\x04\x00\x02\x00\x01\x12\x04\x84\x01\x0b\r\n\r\n\x05\x04\x00\x02\x00\x03\x12\x04\x84\x01\x10\x11\n\x15\n\x04\x04\x00\x02\x01\x12\x04\x87\x01\x04\x14\x1a\x07 Name.\n\n\r\n\x05\x04\x00\x02\x01\x05\x12\x04\x87\x01\x04\n\n\r\n\x05\x04\x00\x02\x01\x01\x12\x04\x87\x01\x0b\x0f\n\r\n\x05\x04\x00\x02\x01\x03\x12\x04\x87\x01\x12\x13\nI\n\x04\x04\x00\x02\x02\x12\x04\x8b\x01\x04\x1e\x1a; Application ID.\n After creation, this can not be updated.\n\n\r\n\x05\x04\x00\x02\x02\x05\x12\x04\x8b\x01\x04\n\n\r\n\x05\x04\x00\x02\x02\x01\x12\x04\x8b\x01\x0b\x19\n\r\n\x05\x04\x00\x02\x02\x03\x12\x04\x8b\x01\x1c\x1d\n\x17\n\x04\x04\x00\x02\x03\x12\x04\x8e\x01\x04\x1d\x1a\t Region.\n\n\r\n\x05\x04\x00\x02\x03\x06\x12\x04\x8e\x01\x04\x11\n\r\n\x05\x04\x00\x02\x03\x01\x12\x04\x8e\x01\x12\x18\n\r\n\x05\x04\x00\x02\x03\x03\x12\x04\x8e\x01\x1b\x1c\n8\n\x04\x04\x00\x02\x04\x12\x04\x91\x01\x04\x17\x1a* Multicast address (HEX encoded DevAddr).\n\n\r\n\x05\x04\x00\x02\x04\x05\x12\x04\x91\x01\x04\n\n\r\n\x05\x04\x00\x02\x04\x01\x12\x04\x91\x01\x0b\x12\n\r\n\x05\x04\x00\x02\x04\x03\x12\x04\x91\x01\x15\x16\nG\n\x04\x04\x00\x02\x05\x12\x04\x94\x01\x04\x1c\x1a9 Multicast network session key (HEX encoded AES128 key).\n\n\r\n\x05\x04\x00\x02\x05\x05\x12\x04\x94\x01\x04\n\n\r\n\x05\x04\x00\x02\x05\x01\x12\x04\x94\x01\x0b\x17\n\r\n\x05\x04\x00\x02\x05\x03\x12\x04\x94\x01\x1a\x1b\nK\n\x04\x04\x00\x02\x06\x12\x04\x97\x01\x04\x1c\x1a= Multicast application session key (HEX encoded AES128 key).\n\n\r\n\x05\x04\x00\x02\x06\x05\x12\x04\x97\x01\x04\n\n\r\n\x05\x04\x00\x02\x06\x01\x12\x04\x97\x01\x0b\x17\n\r\n\x05\x04\x00\x02\x06\x03\x12\x04\x97\x01\x1a\x1b\n\x1e\n\x04\x04\x00\x02\x07\x12\x04\x9a\x01\x04\x15\x1a\x10 Frame-counter.\n\n\r\n\x05\x04\x00\x02\x07\x05\x12\x04\x9a\x01\x04\n\n\r\n\x05\x04\x00\x02\x07\x01\x12\x04\x9a\x01\x0b\x10\n\r\n\x05\x04\x00\x02\x07\x03\x12\x04\x9a\x01\x13\x14\n%\n\x04\x04\x00\x02\x08\x12\x04\x9d\x01\x04&\x1a\x17 Multicast group type.\n\n\r\n\x05\x04\x00\x02\x08\x06\x12\x04\x9d\x01\x04\x16\n\r\n\x05\x04\x00\x02\x08\x01\x12\x04\x9d\x01\x17!\n\r\n\x05\x04\x00\x02\x08\x03\x12\x04\x9d\x01$%\n\x1a\n\x04\x04\x00\x02\t\x12\x04\xa0\x01\x04\x13\x1a\x0c Data-rate.\n\n\r\n\x05\x04\x00\x02\t\x05\x12\x04\xa0\x01\x04\n\n\r\n\x05\x04\x00\x02\t\x01\x12\x04\xa0\x01\x0b\r\n\r\n\x05\x04\x00\x02\t\x03\x12\x04\xa0\x01\x10\x12\n\x1f\n\x04\x04\x00\x02\n\x12\x04\xa3\x01\x04\x1a\x1a\x11 Frequency (Hz).\n\n\r\n\x05\x04\x00\x02\n\x05\x12\x04\xa3\x01\x04\n\n\r\n\x05\x04\x00\x02\n\x01\x12\x04\xa3\x01\x0b\x14\n\r\n\x05\x04\x00\x02\n\x03\x12\x04\xa3\x01\x17\x19\n4\n\x04\x04\x00\x02\x0b\x12\x04\xa6\x01\x04)\x1a& Ping-slot period (only for Class-B).\n\n\r\n\x05\x04\x00\x02\x0b\x05\x12\x04\xa6\x01\x04\n\n\r\n\x05\x04\x00\x02\x0b\x01\x12\x04\xa6\x01\x0b#\n\r\n\x05\x04\x00\x02\x0b\x03\x12\x04\xa6\x01&(\n3\n\x04\x04\x00\x02\x0c\x12\x04\xa9\x01\x04>\x1a% Scheduling type (only for Class-C).\n\n\r\n\x05\x04\x00\x02\x0c\x06\x12\x04\xa9\x01\x04 \n\r\n\x05\x04\x00\x02\x0c\x01\x12\x04\xa9\x01!8\n\r\n\x05\x04\x00\x02\x0c\x03\x12\x04\xa9\x01;=\n\x0c\n\x02\x04\x01\x12\x06\xac\x01\x00\xbe\x01\x01\n\x0b\n\x03\x04\x01\x01\x12\x04\xac\x01\x08\x1e\n\x13\n\x04\x04\x01\x02\x00\x12\x04\xae\x01\x04\x12\x1a\x05 ID.\n\n\r\n\x05\x04\x01\x02\x00\x05\x12\x04\xae\x01\x04\n\n\r\n\x05\x04\x01\x02\x00\x01\x12\x04\xae\x01\x0b\r\n\r\n\x05\x04\x01\x02\x00\x03\x12\x04\xae\x01\x10\x11\n%\n\x04\x04\x01\x02\x01\x12\x04\xb1\x01\x081\x1a\x17 Created at timestamp.\n\n\r\n\x05\x04\x01\x02\x01\x06\x12\x04\xb1\x01\x08!\n\r\n\x05\x04\x01\x02\x01\x01\x12\x04\xb1\x01\",\n\r\n\x05\x04\x01\x02\x01\x03\x12\x04\xb1\x01/0\n&\n\x04\x04\x01\x02\x02\x12\x04\xb4\x01\x081\x1a\x18 Last update timestamp.\n\n\r\n\x05\x04\x01\x02\x02\x06\x12\x04\xb4\x01\x08!\n\r\n\x05\x04\x01\x02\x02\x01\x12\x04\xb4\x01\",\n\r\n\x05\x04\x01\x02\x02\x03\x12\x04\xb4\x01/0\n\x15\n\x04\x04\x01\x02\x03\x12\x04\xb7\x01\x04\x14\x1a\x07 Name.\n\n\r\n\x05\x04\x01\x02\x03\x05\x12\x04\xb7\x01\x04\n\n\r\n\x05\x04\x01\x02\x03\x01\x12\x04\xb7\x01\x0b\x0f\n\r\n\x05\x04\x01\x02\x03\x03\x12\x04\xb7\x01\x12\x13\n\x17\n\x04\x04\x01\x02\x04\x12\x04\xba\x01\x04\x1d\x1a\t Region.\n\n\r\n\x05\x04\x01\x02\x04\x06\x12\x04\xba\x01\x04\x11\n\r\n\x05\x04\x01\x02\x04\x01\x12\x04\xba\x01\x12\x18\n\r\n\x05\x04\x01\x02\x04\x03\x12\x04\xba\x01\x1b\x1c\n%\n\x04\x04\x01\x02\x05\x12\x04\xbd\x01\x04&\x1a\x17 Multicast group type.\n\n\r\n\x05\x04\x01\x02\x05\x06\x12\x04\xbd\x01\x04\x16\n\r\n\x05\x04\x01\x02\x05\x01\x12\x04\xbd\x01\x17!\n\r\n\x05\x04\x01\x02\x05\x03\x12\x04\xbd\x01$%\n\x0c\n\x02\x04\x02\x12\x06\xc0\x01\x00\xc3\x01\x01\n\x0b\n\x03\x04\x02\x01\x12\x04\xc0\x01\x08#\n*\n\x04\x04\x02\x02\x00\x12\x04\xc2\x01\x04\'\x1a\x1c Multicast group to create.\n\n\r\n\x05\x04\x02\x02\x00\x06\x12\x04\xc2\x01\x04\x12\n\r\n\x05\x04\x02\x02\x00\x01\x12\x04\xc2\x01\x13\"\n\r\n\x05\x04\x02\x02\x00\x03\x12\x04\xc2\x01%&\n\x0c\n\x02\x04\x03\x12\x06\xc5\x01\x00\xc8\x01\x01\n\x0b\n\x03\x04\x03\x01\x12\x04\xc5\x01\x08$\n5\n\x04\x04\x03\x02\x00\x12\x04\xc7\x01\x04\x12\x1a\' ID of created multicast group (UUID).\n\n\r\n\x05\x04\x03\x02\x00\x05\x12\x04\xc7\x01\x04\n\n\r\n\x05\x04\x03\x02\x00\x01\x12\x04\xc7\x01\x0b\r\n\r\n\x05\x04\x03\x02\x00\x03\x12\x04\xc7\x01\x10\x11\n\x0c\n\x02\x04\x04\x12\x06\xca\x01\x00\xcd\x01\x01\n\x0b\n\x03\x04\x04\x01\x12\x04\xca\x01\x08 \n#\n\x04\x04\x04\x02\x00\x12\x04\xcc\x01\x04\x12\x1a\x15 Multicast group ID.\n\n\r\n\x05\x04\x04\x02\x00\x05\x12\x04\xcc\x01\x04\n\n\r\n\x05\x04\x04\x02\x00\x01\x12\x04\xcc\x01\x0b\r\n\r\n\x05\x04\x04\x02\x00\x03\x12\x04\xcc\x01\x10\x11\n\x0c\n\x02\x04\x05\x12\x06\xcf\x01\x00\xd8\x01\x01\n\x0b\n\x03\x04\x05\x01\x12\x04\xcf\x01\x08!\n\'\n\x04\x04\x05\x02\x00\x12\x04\xd1\x01\x04\'\x1a\x19 Multicast group object.\n\n\r\n\x05\x04\x05\x02\x00\x06\x12\x04\xd1\x01\x04\x12\n\r\n\x05\x04\x05\x02\x00\x01\x12\x04\xd1\x01\x13\"\n\r\n\x05\x04\x05\x02\x00\x03\x12\x04\xd1\x01%&\n%\n\x04\x04\x05\x02\x01\x12\x04\xd4\x01\x081\x1a\x17 Created at timestamp.\n\n\r\n\x05\x04\x05\x02\x01\x06\x12\x04\xd4\x01\x08!\n\r\n\x05\x04\x05\x02\x01\x01\x12\x04\xd4\x01\",\n\r\n\x05\x04\x05\x02\x01\x03\x12\x04\xd4\x01/0\n&\n\x04\x04\x05\x02\x02\x12\x04\xd7\x01\x081\x1a\x18 Last update timestamp.\n\n\r\n\x05\x04\x05\x02\x02\x06\x12\x04\xd7\x01\x08!\n\r\n\x05\x04\x05\x02\x02\x01\x12\x04\xd7\x01\",\n\r\n\x05\x04\x05\x02\x02\x03\x12\x04\xd7\x01/0\n\x0c\n\x02\x04\x06\x12\x06\xda\x01\x00\xdd\x01\x01\n\x0b\n\x03\x04\x06\x01\x12\x04\xda\x01\x08#\n1\n\x04\x04\x06\x02\x00\x12\x04\xdc\x01\x04\'\x1a# Multicast group object to update.\n\n\r\n\x05\x04\x06\x02\x00\x06\x12\x04\xdc\x01\x04\x12\n\r\n\x05\x04\x06\x02\x00\x01\x12\x04\xdc\x01\x13\"\n\r\n\x05\x04\x06\x02\x00\x03\x12\x04\xdc\x01%&\n\x0c\n\x02\x04\x07\x12\x06\xdf\x01\x00\xe2\x01\x01\n\x0b\n\x03\x04\x07\x01\x12\x04\xdf\x01\x08#\n#\n\x04\x04\x07\x02\x00\x12\x04\xe1\x01\x04\x12\x1a\x15 Multicast group iD.\n\n\r\n\x05\x04\x07\x02\x00\x05\x12\x04\xe1\x01\x04\n\n\r\n\x05\x04\x07\x02\x00\x01\x12\x04\xe1\x01\x0b\r\n\r\n\x05\x04\x07\x02\x00\x03\x12\x04\xe1\x01\x10\x11\n\x0c\n\x02\x04\x08\x12\x06\xe4\x01\x00\xf0\x01\x01\n\x0b\n\x03\x04\x08\x01\x12\x04\xe4\x01\x08\"\nK\n\x04\x04\x08\x02\x00\x12\x04\xe6\x01\x04\x15\x1a= Max number of multicast groups to return in the result-set.\n\n\r\n\x05\x04\x08\x02\x00\x05\x12\x04\xe6\x01\x04\n\n\r\n\x05\x04\x08\x02\x00\x01\x12\x04\xe6\x01\x0b\x10\n\r\n\x05\x04\x08\x02\x00\x03\x12\x04\xe6\x01\x13\x14\n:\n\x04\x04\x08\x02\x01\x12\x04\xe9\x01\x04\x16\x1a, Offset in the result-set (for pagination).\n\n\r\n\x05\x04\x08\x02\x01\x05\x12\x04\xe9\x01\x04\n\n\r\n\x05\x04\x08\x02\x01\x01\x12\x04\xe9\x01\x0b\x11\n\r\n\x05\x04\x08\x02\x01\x03\x12\x04\xe9\x01\x14\x15\nH\n\x04\x04\x08\x02\x02\x12\x04\xec\x01\x04\x16\x1a: If set, the given string will be used to search on name.\n\n\r\n\x05\x04\x08\x02\x02\x05\x12\x04\xec\x01\x04\n\n\r\n\x05\x04\x08\x02\x02\x01\x12\x04\xec\x01\x0b\x11\n\r\n\x05\x04\x08\x02\x02\x03\x12\x04\xec\x01\x14\x15\n@\n\x04\x04\x08\x02\x03\x12\x04\xef\x01\x04\x1e\x1a2 Application ID to list the multicast groups for.\n\n\r\n\x05\x04\x08\x02\x03\x05\x12\x04\xef\x01\x04\n\n\r\n\x05\x04\x08\x02\x03\x01\x12\x04\xef\x01\x0b\x19\n\r\n\x05\x04\x08\x02\x03\x03\x12\x04\xef\x01\x1c\x1d\n\x0c\n\x02\x04\t\x12\x06\xf2\x01\x00\xf8\x01\x01\n\x0b\n\x03\x04\t\x01\x12\x04\xf2\x01\x08#\n1\n\x04\x04\t\x02\x00\x12\x04\xf4\x01\x04\x1b\x1a# Total number of multicast groups.\n\n\r\n\x05\x04\t\x02\x00\x05\x12\x04\xf4\x01\x04\n\n\r\n\x05\x04\t\x02\x00\x01\x12\x04\xf4\x01\x0b\x16\n\r\n\x05\x04\t\x02\x00\x03\x12\x04\xf4\x01\x19\x1a\n\x1c\n\x04\x04\t\x02\x01\x12\x04\xf7\x01\x04/\x1a\x0e Result-test.\n\n\r\n\x05\x04\t\x02\x01\x04\x12\x04\xf7\x01\x04\x0c\n\r\n\x05\x04\t\x02\x01\x06\x12\x04\xf7\x01\r#\n\r\n\x05\x04\t\x02\x01\x01\x12\x04\xf7\x01$*\n\r\n\x05\x04\t\x02\x01\x03\x12\x04\xf7\x01-.\n\x0c\n\x02\x04\n\x12\x06\xfa\x01\x00\x80\x02\x01\n\x0b\n\x03\x04\n\x01\x12\x04\xfa\x01\x08(\n#\n\x04\x04\n\x02\x00\x12\x04\xfc\x01\x04\"\x1a\x15 Multicast group ID.\n\n\r\n\x05\x04\n\x02\x00\x05\x12\x04\xfc\x01\x04\n\n\r\n\x05\x04\n\x02\x00\x01\x12\x04\xfc\x01\x0b\x1d\n\r\n\x05\x04\n\x02\x00\x03\x12\x04\xfc\x01 !\n)\n\x04\x04\n\x02\x01\x12\x04\xff\x01\x04\x17\x1a\x1b Device EUI (HEX encoded).\n\n\r\n\x05\x04\n\x02\x01\x05\x12\x04\xff\x01\x04\n\n\r\n\x05\x04\n\x02\x01\x01\x12\x04\xff\x01\x0b\x12\n\r\n\x05\x04\n\x02\x01\x03\x12\x04\xff\x01\x15\x16\n\x0c\n\x02\x04\x0b\x12\x06\x82\x02\x00\x88\x02\x01\n\x0b\n\x03\x04\x0b\x01\x12\x04\x82\x02\x08-\n#\n\x04\x04\x0b\x02\x00\x12\x04\x84\x02\x04\"\x1a\x15 Multicast group ID.\n\n\r\n\x05\x04\x0b\x02\x00\x05\x12\x04\x84\x02\x04\n\n\r\n\x05\x04\x0b\x02\x00\x01\x12\x04\x84\x02\x0b\x1d\n\r\n\x05\x04\x0b\x02\x00\x03\x12\x04\x84\x02 !\n)\n\x04\x04\x0b\x02\x01\x12\x04\x87\x02\x04\x17\x1a\x1b Device EUI (HEX encoded).\n\n\r\n\x05\x04\x0b\x02\x01\x05\x12\x04\x87\x02\x04\n\n\r\n\x05\x04\x0b\x02\x01\x01\x12\x04\x87\x02\x0b\x12\n\r\n\x05\x04\x0b\x02\x01\x03\x12\x04\x87\x02\x15\x16\n\x0c\n\x02\x04\x0c\x12\x06\x8a\x02\x00\x90\x02\x01\n\x0b\n\x03\x04\x0c\x01\x12\x04\x8a\x02\x08)\n#\n\x04\x04\x0c\x02\x00\x12\x04\x8c\x02\x04\"\x1a\x15 Multicast group ID.\n\n\r\n\x05\x04\x0c\x02\x00\x05\x12\x04\x8c\x02\x04\n\n\r\n\x05\x04\x0c\x02\x00\x01\x12\x04\x8c\x02\x0b\x1d\n\r\n\x05\x04\x0c\x02\x00\x03\x12\x04\x8c\x02 !\n)\n\x04\x04\x0c\x02\x01\x12\x04\x8f\x02\x04\x1a\x1a\x1b Gateway ID (HEX encoded).\n\n\r\n\x05\x04\x0c\x02\x01\x05\x12\x04\x8f\x02\x04\n\n\r\n\x05\x04\x0c\x02\x01\x01\x12\x04\x8f\x02\x0b\x15\n\r\n\x05\x04\x0c\x02\x01\x03\x12\x04\x8f\x02\x18\x19\n\x0c\n\x02\x04\r\x12\x06\x92\x02\x00\x98\x02\x01\n\x0b\n\x03\x04\r\x01\x12\x04\x92\x02\x08.\n#\n\x04\x04\r\x02\x00\x12\x04\x94\x02\x04\"\x1a\x15 Multicast group ID.\n\n\r\n\x05\x04\r\x02\x00\x05\x12\x04\x94\x02\x04\n\n\r\n\x05\x04\r\x02\x00\x01\x12\x04\x94\x02\x0b\x1d\n\r\n\x05\x04\r\x02\x00\x03\x12\x04\x94\x02 !\n)\n\x04\x04\r\x02\x01\x12\x04\x97\x02\x04\x1a\x1a\x1b Gateway ID (HEX encoded).\n\n\r\n\x05\x04\r\x02\x01\x05\x12\x04\x97\x02\x04\n\n\r\n\x05\x04\r\x02\x01\x01\x12\x04\x97\x02\x0b\x15\n\r\n\x05\x04\r\x02\x01\x03\x12\x04\x97\x02\x18\x19\n\x0c\n\x02\x04\x0e\x12\x06\x9a\x02\x00\xa7\x02\x01\n\x0b\n\x03\x04\x0e\x01\x12\x04\x9a\x02\x08\x1f\n#\n\x04\x04\x0e\x02\x00\x12\x04\x9c\x02\x04\"\x1a\x15 Multicast group ID.\n\n\r\n\x05\x04\x0e\x02\x00\x05\x12\x04\x9c\x02\x04\n\n\r\n\x05\x04\x0e\x02\x00\x01\x12\x04\x9c\x02\x0b\x1d\n\r\n\x05\x04\x0e\x02\x00\x03\x12\x04\x9c\x02 !\nS\n\x04\x04\x0e\x02\x01\x12\x04\xa0\x02\x04\x15\x1aE Downlink frame-counter.\n This will be automatically set on enqueue.\n\n\r\n\x05\x04\x0e\x02\x01\x05\x12\x04\xa0\x02\x04\n\n\r\n\x05\x04\x0e\x02\x01\x01\x12\x04\xa0\x02\x0b\x10\n\r\n\x05\x04\x0e\x02\x01\x03\x12\x04\xa0\x02\x13\x14\n$\n\x04\x04\x0e\x02\x02\x12\x04\xa3\x02\x04\x16\x1a\x16 FPort (must be > 0).\n\n\r\n\x05\x04\x0e\x02\x02\x05\x12\x04\xa3\x02\x04\n\n\r\n\x05\x04\x0e\x02\x02\x01\x12\x04\xa3\x02\x0b\x11\n\r\n\x05\x04\x0e\x02\x02\x03\x12\x04\xa3\x02\x14\x15\n\x18\n\x04\x04\x0e\x02\x03\x12\x04\xa6\x02\x04\x13\x1a\n Payload.\n\n\r\n\x05\x04\x0e\x02\x03\x05\x12\x04\xa6\x02\x04\t\n\r\n\x05\x04\x0e\x02\x03\x01\x12\x04\xa6\x02\n\x0e\n\r\n\x05\x04\x0e\x02\x03\x03\x12\x04\xa6\x02\x11\x12\n\x0c\n\x02\x04\x0f\x12\x06\xa9\x02\x00\xac\x02\x01\n\x0b\n\x03\x04\x0f\x01\x12\x04\xa9\x02\x08-\n0\n\x04\x04\x0f\x02\x00\x12\x04\xab\x02\x04+\x1a\" Multicast queue-item to enqueue.\n\n\r\n\x05\x04\x0f\x02\x00\x06\x12\x04\xab\x02\x04\x1b\n\r\n\x05\x04\x0f\x02\x00\x01\x12\x04\xab\x02\x1c&\n\r\n\x05\x04\x0f\x02\x00\x03\x12\x04\xab\x02)*\n\x0c\n\x02\x04\x10\x12\x06\xae\x02\x00\xb1\x02\x01\n\x0b\n\x03\x04\x10\x01\x12\x04\xae\x02\x08.\n6\n\x04\x04\x10\x02\x00\x12\x04\xb0\x02\x04\x15\x1a( Frame-counter of the enqueued payload.\n\n\r\n\x05\x04\x10\x02\x00\x05\x12\x04\xb0\x02\x04\n\n\r\n\x05\x04\x10\x02\x00\x01\x12\x04\xb0\x02\x0b\x10\n\r\n\x05\x04\x10\x02\x00\x03\x12\x04\xb0\x02\x13\x14\n\x0c\n\x02\x04\x11\x12\x06\xb3\x02\x00\xb6\x02\x01\n\x0b\n\x03\x04\x11\x01\x12\x04\xb3\x02\x08\'\n#\n\x04\x04\x11\x02\x00\x12\x04\xb5\x02\x04\"\x1a\x15 Multicast group ID.\n\n\r\n\x05\x04\x11\x02\x00\x05\x12\x04\xb5\x02\x04\n\n\r\n\x05\x04\x11\x02\x00\x01\x12\x04\xb5\x02\x0b\x1d\n\r\n\x05\x04\x11\x02\x00\x03\x12\x04\xb5\x02 !\n\x0c\n\x02\x04\x12\x12\x06\xb8\x02\x00\xbb\x02\x01\n\x0b\n\x03\x04\x12\x01\x12\x04\xb8\x02\x08&\n#\n\x04\x04\x12\x02\x00\x12\x04\xba\x02\x04\"\x1a\x15 Multicast group ID.\n\n\r\n\x05\x04\x12\x02\x00\x05\x12\x04\xba\x02\x04\n\n\r\n\x05\x04\x12\x02\x00\x01\x12\x04\xba\x02\x0b\x1d\n\r\n\x05\x04\x12\x02\x00\x03\x12\x04\xba\x02 !\n\x0c\n\x02\x04\x13\x12\x06\xbd\x02\x00\xbf\x02\x01\n\x0b\n\x03\x04\x13\x01\x12\x04\xbd\x02\x08\'\n\x0c\n\x04\x04\x13\x02\x00\x12\x04\xbe\x02\x04/\n\r\n\x05\x04\x13\x02\x00\x04\x12\x04\xbe\x02\x04\x0c\n\r\n\x05\x04\x13\x02\x00\x06\x12\x04\xbe\x02\r$\n\r\n\x05\x04\x13\x02\x00\x01\x12\x04\xbe\x02%*\n\r\n\x05\x04\x13\x02\x00\x03\x12\x04\xbe\x02-.b\x06proto3\n\xa5\x06\n\x15api/request_log.proto\x12\x03api\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x13common/common.proto\x1a\x0bgw/gw.proto\"\xb6\x01\n\nRequestLog\x12\x18\n\x07service\x18\x01 \x01(\tR\x07service\x12\x16\n\x06method\x18\x02 \x01(\tR\x06method\x129\n\x08metadata\x18\x03 \x03(\x0b2\x1d.api.RequestLog.MetadataEntryR\x08metadata\x1a;\n\rMetadataEntry\x12\x10\n\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n\x05value\x18\x02 \x01(\tR\x05value:\x028\x01Bg\n\x11io.chirpstack.apiB\x0fRequestLogProtoP\x01Z.github.com/chirpstack/chirpstack/api/go/v4/api\xaa\x02\x0eChirpstack.ApiJ\x99\x03\n\x06\x12\x04\x00\x00\x17\x01\n\x08\n\x01\x0c\x12\x03\x00\x00\x12\n\x08\n\x01\x02\x12\x03\x02\x00\x0c\n\x08\n\x01\x08\x12\x03\x04\x00E\n\t\n\x02\x08\x0b\x12\x03\x04\x00E\n\x08\n\x01\x08\x12\x03\x05\x00*\n\t\n\x02\x08\x01\x12\x03\x05\x00*\n\x08\n\x01\x08\x12\x03\x06\x00\"\n\t\n\x02\x08\n\x12\x03\x06\x00\"\n\x08\n\x01\x08\x12\x03\x07\x000\n\t\n\x02\x08\x08\x12\x03\x07\x000\n\x08\n\x01\x08\x12\x03\x08\x00+\n\t\n\x02\x08%\x12\x03\x08\x00+\n\t\n\x02\x03\x00\x12\x03\n\x00)\n\t\n\x02\x03\x01\x12\x03\x0b\x00\x1d\n\t\n\x02\x03\x02\x12\x03\x0c\x00\x15\n\n\n\x02\x04\x00\x12\x04\x0e\x00\x17\x01\n\n\n\x03\x04\x00\x01\x12\x03\x0e\x08\x12\n \n\x04\x04\x00\x02\x00\x12\x03\x10\x04\x17\x1a\x13 API service name.\n\n\x0c\n\x05\x04\x00\x02\x00\x05\x12\x03\x10\x04\n\n\x0c\n\x05\x04\x00\x02\x00\x01\x12\x03\x10\x0b\x12\n\x0c\n\x05\x04\x00\x02\x00\x03\x12\x03\x10\x15\x16\n\x1f\n\x04\x04\x00\x02\x01\x12\x03\x13\x04\x16\x1a\x12 API method name.\n\n\x0c\n\x05\x04\x00\x02\x01\x05\x12\x03\x13\x04\n\n\x0c\n\x05\x04\x00\x02\x01\x01\x12\x03\x13\x0b\x11\n\x0c\n\x05\x04\x00\x02\x01\x03\x12\x03\x13\x14\x15\n\x18\n\x04\x04\x00\x02\x02\x12\x03\x16\x04%\x1a\x0b Metadata.\n\n\x0c\n\x05\x04\x00\x02\x02\x06\x12\x03\x16\x04\x17\n\x0c\n\x05\x04\x00\x02\x02\x01\x12\x03\x16\x18 \n\x0c\n\x05\x04\x00\x02\x02\x03\x12\x03\x16#$b\x06proto3\n\xa5 \n\x0fapi/relay.proto\x12\x03api\x1a\x1cgoogle/api/annotations.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1bgoogle/protobuf/empty.proto\"<\n\rRelayListItem\x12\x17\n\x07dev_eui\x18\x01 \x01(\tR\x06devEui\x12\x12\n\x04name\x18\x02 \x01(\tR\x04name\"h\n\x11ListRelaysRequest\x12\x14\n\x05limit\x18\x01 \x01(\rR\x05limit\x12\x16\n\x06offset\x18\x02 \x01(\rR\x06offset\x12%\n\x0eapplication_id\x18\x03 \x01(\tR\rapplicationId\"a\n\x12ListRelaysResponse\x12\x1f\n\x0btotal_count\x18\x01 \x01(\rR\ntotalCount\x12*\n\x06result\x18\x02 \x03(\x0b2\x12.api.RelayListItemR\x06result\"a\n\x15AddRelayDeviceRequest\x12\"\n\rrelay_dev_eui\x18\x01 \x01(\tR\x0brelayDevEui\x12$\n\x0edevice_dev_eui\x18\x02 \x01(\tR\x0cdeviceDevEui\"d\n\x18RemoveRelayDeviceRequest\x12\"\n\rrelay_dev_eui\x18\x01 \x01(\tR\x0brelayDevEui\x12$\n\x0edevice_dev_eui\x18\x02 \x01(\tR\x0cdeviceDevEui\"k\n\x17ListRelayDevicesRequest\x12\x14\n\x05limit\x18\x01 \x01(\rR\x05limit\x12\x16\n\x06offset\x18\x02 \x01(\rR\x06offset\x12\"\n\rrelay_dev_eui\x18\x03 \x01(\tR\x0brelayDevEui\"}\n\x13RelayDeviceListItem\x12\x17\n\x07dev_eui\x18\x01 \x01(\tR\x06devEui\x129\n\ncreated_at\x18\x02 \x01(\x0b2\x1a.google.protobuf.TimestampR\tcreatedAt\x12\x12\n\x04name\x18\x03 \x01(\tR\x04name\"m\n\x18ListRelayDevicesResponse\x12\x1f\n\x0btotal_count\x18\x01 \x01(\rR\ntotalCount\x120\n\x06result\x18\x02 \x03(\x0b2\x18.api.RelayDeviceListItemR\x06result2\xc4\x03\n\x0cRelayService\x12L\n\x04List\x12\x16.api.ListRelaysRequest\x1a\x17.api.ListRelaysResponse\"\x13\x82\xd3\xe4\x93\x02\r\x12\x0b/api/relays\x12o\n\tAddDevice\x12\x1a.api.AddRelayDeviceRequest\x1a\x16.google.protobuf.Empty\".\x82\xd3\xe4\x93\x02(\"#/api/relays/{relay_dev_eui}/devices:\x01*\x12|\n\x0cRemoveDevice\x12\x1d.api.RemoveRelayDeviceRequest\x1a\x16.google.protobuf.Empty\"5\x82\xd3\xe4\x93\x02/*-/api/relays/{relay_dev_eui}/devices/{dev_eui}\x12w\n\x0bListDevices\x12\x1c.api.ListRelayDevicesRequest\x1a\x1d.api.ListRelayDevicesResponse\"+\x82\xd3\xe4\x93\x02%\x12#/api/relays/{relay_dev_eui}/devicesBb\n\x11io.chirpstack.apiB\nRelayProtoP\x01Z.github.com/chirpstack/chirpstack/api/go/v4/api\xaa\x02\x0eChirpstack.ApiJ\xce\x14\n\x06\x12\x04\x00\x00v\x01\n\x08\n\x01\x0c\x12\x03\x00\x00\x12\n\x08\n\x01\x02\x12\x03\x02\x00\x0c\n\x08\n\x01\x08\x12\x03\x04\x00E\n\t\n\x02\x08\x0b\x12\x03\x04\x00E\n\x08\n\x01\x08\x12\x03\x05\x00*\n\t\n\x02\x08\x01\x12\x03\x05\x00*\n\x08\n\x01\x08\x12\x03\x06\x00\"\n\t\n\x02\x08\n\x12\x03\x06\x00\"\n\x08\n\x01\x08\x12\x03\x07\x00+\n\t\n\x02\x08\x08\x12\x03\x07\x00+\n\x08\n\x01\x08\x12\x03\x08\x00+\n\t\n\x02\x08%\x12\x03\x08\x00+\n\t\n\x02\x03\x00\x12\x03\n\x00&\n\t\n\x02\x03\x01\x12\x03\x0b\x00)\n\t\n\x02\x03\x02\x12\x03\x0c\x00%\nS\n\x02\x06\x00\x12\x04\x0f\x00,\x01\x1aG RelayService is the service providing API methos for managing relays.\n\n\n\n\x03\x06\x00\x01\x12\x03\x0f\x08\x14\nC\n\x04\x06\x00\x02\x00\x12\x04\x11\x04\x15\x05\x1a5 List lists the relays for the given application id.\n\n\x0c\n\x05\x06\x00\x02\x00\x01\x12\x03\x11\x08\x0c\n\x0c\n\x05\x06\x00\x02\x00\x02\x12\x03\x11\r\x1e\n\x0c\n\x05\x06\x00\x02\x00\x03\x12\x03\x11);\n\r\n\x05\x06\x00\x02\x00\x04\x12\x04\x12\x08\x14\n\n\x11\n\t\x06\x00\x02\x00\x04\xb0\xca\xbc\"\x12\x04\x12\x08\x14\n\n=\n\x04\x06\x00\x02\x01\x12\x04\x18\x04\x1d\x05\x1a/ AddDevice adds the given device to the relay.\n\n\x0c\n\x05\x06\x00\x02\x01\x01\x12\x03\x18\x08\x11\n\x0c\n\x05\x06\x00\x02\x01\x02\x12\x03\x18\x12\'\n\x0c\n\x05\x06\x00\x02\x01\x03\x12\x03\x182G\n\r\n\x05\x06\x00\x02\x01\x04\x12\x04\x19\x08\x1c\n\n\x11\n\t\x06\x00\x02\x01\x04\xb0\xca\xbc\"\x12\x04\x19\x08\x1c\n\nE\n\x04\x06\x00\x02\x02\x12\x04 \x04$\x05\x1a7 RemoveDevice removes the given device from the relay.\n\n\x0c\n\x05\x06\x00\x02\x02\x01\x12\x03 \x08\x14\n\x0c\n\x05\x06\x00\x02\x02\x02\x12\x03 \x15-\n\x0c\n\x05\x06\x00\x02\x02\x03\x12\x03 8M\n\r\n\x05\x06\x00\x02\x02\x04\x12\x04!\x08#\n\n\x11\n\t\x06\x00\x02\x02\x04\xb0\xca\xbc\"\x12\x04!\x08#\n\nB\n\x04\x06\x00\x02\x03\x12\x04\'\x04+\x05\x1a4 ListDevices lists the devices for the given relay.\n\n\x0c\n\x05\x06\x00\x02\x03\x01\x12\x03\'\x08\x13\n\x0c\n\x05\x06\x00\x02\x03\x02\x12\x03\'\x14+\n\x0c\n\x05\x06\x00\x02\x03\x03\x12\x03\'6N\n\r\n\x05\x06\x00\x02\x03\x04\x12\x04(\x08*\n\n\x11\n\t\x06\x00\x02\x03\x04\xb0\xca\xbc\"\x12\x04(\x08*\n\n\n\n\x02\x04\x00\x12\x04.\x004\x01\n\n\n\x03\x04\x00\x01\x12\x03.\x08\x15\n\x1e\n\x04\x04\x00\x02\x00\x12\x030\x04\x17\x1a\x11 DevEUI (EUI64).\n\n\x0c\n\x05\x04\x00\x02\x00\x05\x12\x030\x04\n\n\x0c\n\x05\x04\x00\x02\x00\x01\x12\x030\x0b\x12\n\x0c\n\x05\x04\x00\x02\x00\x03\x12\x030\x15\x16\n\x14\n\x04\x04\x00\x02\x01\x12\x033\x04\x14\x1a\x07 Name.\n\n\x0c\n\x05\x04\x00\x02\x01\x05\x12\x033\x04\n\n\x0c\n\x05\x04\x00\x02\x01\x01\x12\x033\x0b\x0f\n\x0c\n\x05\x04\x00\x02\x01\x03\x12\x033\x12\x13\n\n\n\x02\x04\x01\x12\x046\x00?\x01\n\n\n\x03\x04\x01\x01\x12\x036\x08\x19\nA\n\x04\x04\x01\x02\x00\x12\x038\x04\x15\x1a4 Max number of devices to return in the result-set.\n\n\x0c\n\x05\x04\x01\x02\x00\x05\x12\x038\x04\n\n\x0c\n\x05\x04\x01\x02\x00\x01\x12\x038\x0b\x10\n\x0c\n\x05\x04\x01\x02\x00\x03\x12\x038\x13\x14\n9\n\x04\x04\x01\x02\x01\x12\x03;\x04\x16\x1a, Offset in the result-set (for pagination).\n\n\x0c\n\x05\x04\x01\x02\x01\x05\x12\x03;\x04\n\n\x0c\n\x05\x04\x01\x02\x01\x01\x12\x03;\x0b\x11\n\x0c\n\x05\x04\x01\x02\x01\x03\x12\x03;\x14\x15\n%\n\x04\x04\x01\x02\x02\x12\x03>\x04\x1e\x1a\x18 Application ID (UUID).\n\n\x0c\n\x05\x04\x01\x02\x02\x05\x12\x03>\x04\n\n\x0c\n\x05\x04\x01\x02\x02\x01\x12\x03>\x0b\x19\n\x0c\n\x05\x04\x01\x02\x02\x03\x12\x03>\x1c\x1d\n\n\n\x02\x04\x02\x12\x04A\x00G\x01\n\n\n\x03\x04\x02\x01\x12\x03A\x08\x1a\n&\n\x04\x04\x02\x02\x00\x12\x03C\x04\x1b\x1a\x19 Total number of relays.\n\n\x0c\n\x05\x04\x02\x02\x00\x05\x12\x03C\x04\n\n\x0c\n\x05\x04\x02\x02\x00\x01\x12\x03C\x0b\x16\n\x0c\n\x05\x04\x02\x02\x00\x03\x12\x03C\x19\x1a\n\x1a\n\x04\x04\x02\x02\x01\x12\x03F\x04&\x1a\r Result-set.\n\n\x0c\n\x05\x04\x02\x02\x01\x04\x12\x03F\x04\x0c\n\x0c\n\x05\x04\x02\x02\x01\x06\x12\x03F\r\x1a\n\x0c\n\x05\x04\x02\x02\x01\x01\x12\x03F\x1b!\n\x0c\n\x05\x04\x02\x02\x01\x03\x12\x03F$%\n\n\n\x02\x04\x03\x12\x04I\x00P\x01\n\n\n\x03\x04\x03\x01\x12\x03I\x08\x1d\n$\n\x04\x04\x03\x02\x00\x12\x03K\x04\x1d\x1a\x17 Relay DevEUI (EUI64).\n\n\x0c\n\x05\x04\x03\x02\x00\x05\x12\x03K\x04\n\n\x0c\n\x05\x04\x03\x02\x00\x01\x12\x03K\x0b\x18\n\x0c\n\x05\x04\x03\x02\x00\x03\x12\x03K\x1b\x1c\n%\n\x04\x04\x03\x02\x01\x12\x03N\x04\x1e\x1a\x18 Device DevEUI (EUI64).\n\n\x0c\n\x05\x04\x03\x02\x01\x05\x12\x03N\x04\n\n\x0c\n\x05\x04\x03\x02\x01\x01\x12\x03N\x0b\x19\n\x0c\n\x05\x04\x03\x02\x01\x03\x12\x03N\x1c\x1d\n\n\n\x02\x04\x04\x12\x04R\x00X\x01\n\n\n\x03\x04\x04\x01\x12\x03R\x08 \n$\n\x04\x04\x04\x02\x00\x12\x03T\x04\x1d\x1a\x17 Relay DevEUI (EUI64).\n\n\x0c\n\x05\x04\x04\x02\x00\x05\x12\x03T\x04\n\n\x0c\n\x05\x04\x04\x02\x00\x01\x12\x03T\x0b\x18\n\x0c\n\x05\x04\x04\x02\x00\x03\x12\x03T\x1b\x1c\n%\n\x04\x04\x04\x02\x01\x12\x03W\x04\x1e\x1a\x18 Device DevEUI (EUI64).\n\n\x0c\n\x05\x04\x04\x02\x01\x05\x12\x03W\x04\n\n\x0c\n\x05\x04\x04\x02\x01\x01\x12\x03W\x0b\x19\n\x0c\n\x05\x04\x04\x02\x01\x03\x12\x03W\x1c\x1d\n\n\n\x02\x04\x05\x12\x04Z\x00c\x01\n\n\n\x03\x04\x05\x01\x12\x03Z\x08\x1f\nJ\n\x04\x04\x05\x02\x00\x12\x03\\\x04\x15\x1a= Max number of multicast groups to return in the result-set.\n\n\x0c\n\x05\x04\x05\x02\x00\x05\x12\x03\\\x04\n\n\x0c\n\x05\x04\x05\x02\x00\x01\x12\x03\\\x0b\x10\n\x0c\n\x05\x04\x05\x02\x00\x03\x12\x03\\\x13\x14\n9\n\x04\x04\x05\x02\x01\x12\x03_\x04\x16\x1a, Offset in the result-set (for pagination).\n\n\x0c\n\x05\x04\x05\x02\x01\x05\x12\x03_\x04\n\n\x0c\n\x05\x04\x05\x02\x01\x01\x12\x03_\x0b\x11\n\x0c\n\x05\x04\x05\x02\x01\x03\x12\x03_\x14\x15\n$\n\x04\x04\x05\x02\x02\x12\x03b\x04\x1d\x1a\x17 Relay DevEUI (EUI64).\n\n\x0c\n\x05\x04\x05\x02\x02\x05\x12\x03b\x04\n\n\x0c\n\x05\x04\x05\x02\x02\x01\x12\x03b\x0b\x18\n\x0c\n\x05\x04\x05\x02\x02\x03\x12\x03b\x1b\x1c\n\n\n\x02\x04\x06\x12\x04e\x00n\x01\n\n\n\x03\x04\x06\x01\x12\x03e\x08\x1b\n\x1e\n\x04\x04\x06\x02\x00\x12\x03g\x04\x17\x1a\x11 DevEUI (EUI64).\n\n\x0c\n\x05\x04\x06\x02\x00\x05\x12\x03g\x04\n\n\x0c\n\x05\x04\x06\x02\x00\x01\x12\x03g\x0b\x12\n\x0c\n\x05\x04\x06\x02\x00\x03\x12\x03g\x15\x16\n$\n\x04\x04\x06\x02\x01\x12\x03j\x04-\x1a\x17 Created at timestamp.\n\n\x0c\n\x05\x04\x06\x02\x01\x06\x12\x03j\x04\x1d\n\x0c\n\x05\x04\x06\x02\x01\x01\x12\x03j\x1e(\n\x0c\n\x05\x04\x06\x02\x01\x03\x12\x03j+,\n\x1b\n\x04\x04\x06\x02\x02\x12\x03m\x04\x14\x1a\x0e Device name.\n\n\x0c\n\x05\x04\x06\x02\x02\x05\x12\x03m\x04\n\n\x0c\n\x05\x04\x06\x02\x02\x01\x12\x03m\x0b\x0f\n\x0c\n\x05\x04\x06\x02\x02\x03\x12\x03m\x12\x13\n\n\n\x02\x04\x07\x12\x04p\x00v\x01\n\n\n\x03\x04\x07\x01\x12\x03p\x08 \n\'\n\x04\x04\x07\x02\x00\x12\x03r\x04\x1b\x1a\x1a Total number of devices.\n\n\x0c\n\x05\x04\x07\x02\x00\x05\x12\x03r\x04\n\n\x0c\n\x05\x04\x07\x02\x00\x01\x12\x03r\x0b\x16\n\x0c\n\x05\x04\x07\x02\x00\x03\x12\x03r\x19\x1a\n\x1a\n\x04\x04\x07\x02\x01\x12\x03u\x04,\x1a\r Result-set.\n\n\x0c\n\x05\x04\x07\x02\x01\x04\x12\x03u\x04\x0c\n\x0c\n\x05\x04\x07\x02\x01\x06\x12\x03u\r \n\x0c\n\x05\x04\x07\x02\x01\x01\x12\x03u!\'\n\x0c\n\x05\x04\x07\x02\x01\x03\x12\x03u*+b\x06proto3";