@lansweeper/multitenant-api-grpc 0.4.52 → 0.4.53
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [0.4.53](https://github.com/Lansweeper/lansweeperapis/compare/@lansweeper/multitenant-api-grpc@0.4.52...@lansweeper/multitenant-api-grpc@0.4.53) (2024-04-03)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @lansweeper/multitenant-api-grpc
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [0.4.52](https://github.com/Lansweeper/lansweeperapis/compare/@lansweeper/multitenant-api-grpc@0.4.51...@lansweeper/multitenant-api-grpc@0.4.52) (2024-04-02)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @lansweeper/multitenant-api-grpc
|
package/gen-proto/image.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"file":[{"name":"google/protobuf/timestamp.proto","package":"google.protobuf","messageType":[{"name":"Timestamp","field":[{"name":"seconds","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"seconds"},{"name":"nanos","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"nanos"}]}],"options":{"javaPackage":"com.google.protobuf","javaOuterClassname":"TimestampProto","javaMultipleFiles":true,"goPackage":"google.golang.org/protobuf/types/known/timestamppb","ccEnableArenas":true,"objcClassPrefix":"GPB","csharpNamespace":"Google.Protobuf.WellKnownTypes"},"sourceCodeInfo":{"location":[{"span":[30,0,146,1]},{"path":[12],"span":[30,0,18],"leadingDetachedComments":[" 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"]},{"path":[2],"span":[32,0,24]},{"path":[8],"span":[34,0,59]},{"path":[8,37],"span":[34,0,59]},{"path":[8],"span":[35,0,31]},{"path":[8,31],"span":[35,0,31]},{"path":[8],"span":[36,0,73]},{"path":[8,11],"span":[36,0,73]},{"path":[8],"span":[37,0,44]},{"path":[8,1],"span":[37,0,44]},{"path":[8],"span":[38,0,47]},{"path":[8,8],"span":[38,0,47]},{"path":[8],"span":[39,0,34]},{"path":[8,10],"span":[39,0,34]},{"path":[8],"span":[40,0,33]},{"path":[8,36],"span":[40,0,33]},{"path":[4,0],"span":[135,0,146,1],"leadingComments":" 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 Java `Instant.now()`.\n\n Instant now = Instant.now();\n\n Timestamp timestamp =\n Timestamp.newBuilder().setSeconds(now.getEpochSecond())\n .setNanos(now.getNano()).build();\n\n\n Example 6: 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"},{"path":[4,0,1],"span":[135,8,17]},{"path":[4,0,2,0],"span":[139,2,20],"leadingComments":" 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"},{"path":[4,0,2,0,5],"span":[139,2,7]},{"path":[4,0,2,0,1],"span":[139,8,15]},{"path":[4,0,2,0,3],"span":[139,18,19]},{"path":[4,0,2,1],"span":[145,2,18],"leadingComments":" 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"},{"path":[4,0,2,1,5],"span":[145,2,7]},{"path":[4,0,2,1,1],"span":[145,8,13]},{"path":[4,0,2,1,3],"span":[145,16,17]}]},"syntax":"proto3","bufExtension":{"isImport":true,"isSyntaxUnspecified":false}},{"name":"limits/limits.proto","package":"lansweeper.shared.limits.v1","dependency":["google/protobuf/timestamp.proto"],"messageType":[{"name":"CalculateRiskInsights","field":[{"name":"from_year","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"fromYear","proto3Optional":true},{"name":"from_severity","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.shared.limits.v1.RiskInsightsSeverity","oneofIndex":1,"jsonName":"fromSeverity","proto3Optional":true},{"name":"max","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":2,"jsonName":"max","proto3Optional":true}],"oneofDecl":[{"name":"_from_year"},{"name":"_from_severity"},{"name":"_max"}]},{"name":"ExpirableAllowedEntities","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"expires_at","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":0,"jsonName":"expiresAt","proto3Optional":true}],"oneofDecl":[{"name":"_expires_at"}]},{"name":"BaseLimit","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"value"},{"name":"allowed_entities","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.shared.limits.v1.ExpirableAllowedEntities","jsonName":"allowedEntities"}],"reservedRange":[{"start":2,"end":3}]},{"name":"RiskInsights","field":[{"name":"view_assets","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.shared.limits.v1.BaseLimit","jsonName":"viewAssets"}]},{"name":"Assets","field":[{"name":"view_risk_insights","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.shared.limits.v1.BaseLimit","jsonName":"viewRiskInsights"},{"name":"view_lifecycle","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.shared.limits.v1.BaseLimit","jsonName":"viewLifecycle"}]},{"name":"Scopes","field":[{"name":"create_max","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"createMax"}]},{"name":"SiteLimits","field":[{"name":"tier","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.shared.limits.v1.SiteLimitsTiers","jsonName":"tier"},{"name":"risk_insights","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.shared.limits.v1.RiskInsights","oneofIndex":0,"jsonName":"riskInsights","proto3Optional":true},{"name":"assets","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.shared.limits.v1.Assets","oneofIndex":1,"jsonName":"assets","proto3Optional":true},{"name":"scopes","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.shared.limits.v1.Scopes","jsonName":"scopes"}],"oneofDecl":[{"name":"_risk_insights"},{"name":"_assets"}],"reservedRange":[{"start":2,"end":3}]}],"enumType":[{"name":"SiteLimitsTiers","value":[{"name":"SUBSCRIPTION_TYPE_VALUE_STARTER","number":0},{"name":"SUBSCRIPTION_TYPE_VALUE_PRO","number":1},{"name":"SUBSCRIPTION_TYPE_VALUE_ENTERPRISE","number":2}]},{"name":"RiskInsightsSeverity","value":[{"name":"RISK_INSIGHT_SEVERITY_LOW","number":0},{"name":"RISK_INSIGHT_SEVERITY_MEDIUM","number":1},{"name":"RISK_INSIGHT_SEVERITY_HIGH","number":2},{"name":"RISK_INSIGHT_SEVERITY_CRITICAL","number":3}]}],"options":{"goPackage":"github.com/Lansweeper/lansweeperapis/packages/shared/generated-go;limits"},"sourceCodeInfo":{"location":[{"span":[0,0,56,1]},{"path":[12],"span":[0,0,18]},{"path":[2],"span":[2,0,36]},{"path":[8],"span":[3,0,95]},{"path":[8,11],"span":[3,0,95]},{"path":[3,0],"span":[4,0,41]},{"path":[5,0],"span":[7,0,11,1]},{"path":[5,0,1],"span":[7,5,20]},{"path":[5,0,2,0],"span":[8,2,38]},{"path":[5,0,2,0,1],"span":[8,2,33]},{"path":[5,0,2,0,2],"span":[8,36,37]},{"path":[5,0,2,1],"span":[9,2,34]},{"path":[5,0,2,1,1],"span":[9,2,29]},{"path":[5,0,2,1,2],"span":[9,32,33]},{"path":[5,0,2,2],"span":[10,2,41]},{"path":[5,0,2,2,1],"span":[10,2,36]},{"path":[5,0,2,2,2],"span":[10,39,40]},{"path":[5,1],"span":[13,0,18,1]},{"path":[5,1,1],"span":[13,5,25]},{"path":[5,1,2,0],"span":[14,2,32]},{"path":[5,1,2,0,1],"span":[14,2,27]},{"path":[5,1,2,0,2],"span":[14,30,31]},{"path":[5,1,2,1],"span":[15,2,35]},{"path":[5,1,2,1,1],"span":[15,2,30]},{"path":[5,1,2,1,2],"span":[15,33,34]},{"path":[5,1,2,2],"span":[16,2,33]},{"path":[5,1,2,2,1],"span":[16,2,28]},{"path":[5,1,2,2,2],"span":[16,31,32]},{"path":[5,1,2,3],"span":[17,2,37]},{"path":[5,1,2,3,1],"span":[17,2,32]},{"path":[5,1,2,3,2],"span":[17,35,36]},{"path":[4,0],"span":[20,0,24,1]},{"path":[4,0,1],"span":[20,8,29]},{"path":[4,0,2,0],"span":[21,2,32]},{"path":[4,0,2,0,4],"span":[21,2,10]},{"path":[4,0,2,0,5],"span":[21,11,17]},{"path":[4,0,2,0,1],"span":[21,18,27]},{"path":[4,0,2,0,3],"span":[21,30,31]},{"path":[4,0,2,1],"span":[22,2,50]},{"path":[4,0,2,1,4],"span":[22,2,10]},{"path":[4,0,2,1,6],"span":[22,11,31]},{"path":[4,0,2,1,1],"span":[22,32,45]},{"path":[4,0,2,1,3],"span":[22,48,49]},{"path":[4,0,2,2],"span":[23,2,25]},{"path":[4,0,2,2,4],"span":[23,2,10]},{"path":[4,0,2,2,5],"span":[23,11,16]},{"path":[4,0,2,2,1],"span":[23,17,20]},{"path":[4,0,2,2,3],"span":[23,23,24]},{"path":[4,1],"span":[26,0,29,1]},{"path":[4,1,1],"span":[26,8,32]},{"path":[4,1,2,0],"span":[27,2,17]},{"path":[4,1,2,0,5],"span":[27,2,8]},{"path":[4,1,2,0,1],"span":[27,9,12]},{"path":[4,1,2,0,3],"span":[27,15,16]},{"path":[4,1,2,1],"span":[28,2,52]},{"path":[4,1,2,1,4],"span":[28,2,10]},{"path":[4,1,2,1,6],"span":[28,11,36]},{"path":[4,1,2,1,1],"span":[28,37,47]},{"path":[4,1,2,1,3],"span":[28,50,51]},{"path":[4,2],"span":[31,0,35,1]},{"path":[4,2,1],"span":[31,8,17]},{"path":[4,2,9],"span":[32,2,13]},{"path":[4,2,9,0],"span":[32,11,12]},{"path":[4,2,9,0,1],"span":[32,11,12]},{"path":[4,2,2,0],"span":[33,2,17]},{"path":[4,2,2,0,5],"span":[33,2,6]},{"path":[4,2,2,0,1],"span":[33,7,12]},{"path":[4,2,2,0,3],"span":[33,15,16]},{"path":[4,2,2,1],"span":[34,2,57]},{"path":[4,2,2,1,4],"span":[34,2,10]},{"path":[4,2,2,1,6],"span":[34,11,35]},{"path":[4,2,2,1,1],"span":[34,36,52]},{"path":[4,2,2,1,3],"span":[34,55,56]},{"path":[4,3],"span":[37,0,39,1]},{"path":[4,3,1],"span":[37,8,20]},{"path":[4,3,2,0],"span":[38,2,28]},{"path":[4,3,2,0,6],"span":[38,2,11]},{"path":[4,3,2,0,1],"span":[38,12,23]},{"path":[4,3,2,0,3],"span":[38,26,27]},{"path":[4,4],"span":[41,0,44,1]},{"path":[4,4,1],"span":[41,8,14]},{"path":[4,4,2,0],"span":[42,2,35]},{"path":[4,4,2,0,6],"span":[42,2,11]},{"path":[4,4,2,0,1],"span":[42,12,30]},{"path":[4,4,2,0,3],"span":[42,33,34]},{"path":[4,4,2,1],"span":[43,2,31]},{"path":[4,4,2,1,6],"span":[43,2,11]},{"path":[4,4,2,1,1],"span":[43,12,26]},{"path":[4,4,2,1,3],"span":[43,29,30]},{"path":[4,5],"span":[46,0,48,1]},{"path":[4,5,1],"span":[46,8,14]},{"path":[4,5,2,0],"span":[47,2,23]},{"path":[4,5,2,0,5],"span":[47,2,7]},{"path":[4,5,2,0,1],"span":[47,8,18]},{"path":[4,5,2,0,3],"span":[47,21,22]},{"path":[4,6],"span":[50,0,56,1]},{"path":[4,6,1],"span":[50,8,18]},{"path":[4,6,9],"span":[51,2,13]},{"path":[4,6,9,0],"span":[51,11,12]},{"path":[4,6,9,0,1],"span":[51,11,12]},{"path":[4,6,2,0],"span":[52,2,27]},{"path":[4,6,2,0,6],"span":[52,2,17]},{"path":[4,6,2,0,1],"span":[52,18,22]},{"path":[4,6,2,0,3],"span":[52,25,26]},{"path":[4,6,2,1],"span":[53,2,42]},{"path":[4,6,2,1,4],"span":[53,2,10]},{"path":[4,6,2,1,6],"span":[53,11,23]},{"path":[4,6,2,1,1],"span":[53,24,37]},{"path":[4,6,2,1,3],"span":[53,40,41]},{"path":[4,6,2,2],"span":[54,2,29]},{"path":[4,6,2,2,4],"span":[54,2,10]},{"path":[4,6,2,2,6],"span":[54,11,17]},{"path":[4,6,2,2,1],"span":[54,18,24]},{"path":[4,6,2,2,3],"span":[54,27,28]},{"path":[4,6,2,3],"span":[55,2,20]},{"path":[4,6,2,3,6],"span":[55,2,8]},{"path":[4,6,2,3,1],"span":[55,9,15]},{"path":[4,6,2,3,3],"span":[55,18,19]}]},"syntax":"proto3","bufExtension":{"isImport":true,"isSyntaxUnspecified":false}},{"name":"proto/multitenant.proto","package":"lansweeper.multitenant.v1","dependency":["limits/limits.proto"],"messageType":[{"name":"PreviewAccount","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"username","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"username"},{"name":"name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"surname","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"surname"},{"name":"email","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"email"},{"name":"image_url","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"imageUrl"}]},{"name":"GetPreviewAccountByIdRequest","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"}]},{"name":"GetPreviewAccountByIdResponse","field":[{"name":"account","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.PreviewAccount","jsonName":"account"}]},{"name":"SearchPreviewAccountsBySiteIdsRequest","field":[{"name":"site_ids","number":1,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"siteIds"},{"name":"search","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"search"}]},{"name":"SearchPreviewAccountsBySiteIdsResponse","field":[{"name":"accounts","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.PreviewAccount","jsonName":"accounts"}]},{"name":"GetPreviewAccountsByAccountIdsRequest","field":[{"name":"account_ids","number":1,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"accountIds"}]},{"name":"GetPreviewAccountsByAccountIdsResponse","field":[{"name":"accounts","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.PreviewAccount","jsonName":"accounts"}]},{"name":"PreviewSite","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"company_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"companyName"},{"name":"logo_url","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"logoUrl"},{"name":"mode","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.SiteMode","jsonName":"mode"},{"name":"created_by","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.PreviewAccount","jsonName":"createdBy"}]},{"name":"PatchSiteModeRequest","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"mode","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.SiteMode","jsonName":"mode"}]},{"name":"PatchSiteModeResponse","field":[{"name":"success","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"success"}]},{"name":"Profile","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"site_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"site","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.PreviewSite","jsonName":"site"},{"name":"is_owner","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isOwner"}]},{"name":"ListProfilesByAccountIdRequest","field":[{"name":"account_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"accountId"},{"name":"include_blocks","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"includeBlocks"},{"name":"being_owner_or_administrator","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"beingOwnerOrAdministrator"}]},{"name":"ListProfilesByAccountIdResponse","field":[{"name":"profile","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Profile","jsonName":"profile"}]},{"name":"ListAuthorizedLinkProfilesRequest","field":[{"name":"account_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"accountId"},{"name":"include_blocks","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"includeBlocks","options":{"deprecated":true}}]},{"name":"ListAuthorizedLinkProfilesResponse","field":[{"name":"profile","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Profile","jsonName":"profile"}]},{"name":"CheckAccessToSiteByAccountIdRequest","field":[{"name":"account_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"accountId"},{"name":"site_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"only_owner","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"onlyOwner"},{"name":"user_info","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdRequest.UserInfo","jsonName":"userInfo"}],"nestedType":[{"name":"UserInfo","field":[{"name":"has_mfa","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"hasMfa"},{"name":"is_sso_login","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isSsoLogin"}]}]},{"name":"CheckAccessToSiteByAccountIdResponse","field":[{"name":"access","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"access"}]},{"name":"CheckAccessToSiteByClientIdRequest","field":[{"name":"client_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"},{"name":"site_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"}]},{"name":"CheckAccessToSiteByClientIdResponse","field":[{"name":"access","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"access"}]},{"name":"Install","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"site_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"display_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"displayName"},{"name":"description","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"description"},{"name":"status","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"status"},{"name":"fqdn","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"fqdn"},{"name":"created_by_id","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"createdById"},{"name":"global_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"globalId"},{"name":"state","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install.InstallState","jsonName":"state"},{"name":"created_at","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"createdAt"},{"name":"license","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"license"},{"name":"type","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"type","options":{"deprecated":true}},{"name":"install_type","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.InstallType","jsonName":"installType"}],"nestedType":[{"name":"InstallState","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.InstallStateValue","jsonName":"value"}]}]},{"name":"InstallCredentials","field":[{"name":"client_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"},{"name":"client_secret","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientSecret"}]},{"name":"GetInstallsCountBySiteRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"}]},{"name":"GetInstallsCountResponse","field":[{"name":"count","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"count"}]},{"name":"GetInstallsByIdRequest","field":[{"name":"install_ids","number":1,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"installIds"}]},{"name":"GetInstallsByIdResponse","field":[{"name":"install","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"install"}]},{"name":"NullableInstallType","field":[{"name":"data","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.InstallType","oneofIndex":0,"jsonName":"data"}],"oneofDecl":[{"name":"kind"}]},{"name":"GetInstallsBySiteRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"filter","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.GetInstallsBySiteRequest.Filter","jsonName":"filter"}],"nestedType":[{"name":"Filter","field":[{"name":"state","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.InstallStateValue","jsonName":"state"},{"name":"type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.InstallType","jsonName":"type","options":{"deprecated":true}},{"name":"install_type","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.NullableInstallType","jsonName":"installType"}]}]},{"name":"GetInstallsBySiteResponse","field":[{"name":"install","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"install"}]},{"name":"GetInstallsForMultipleSitesRequest","field":[{"name":"site_ids","number":1,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"siteIds"}]},{"name":"GetInstallsForMultipleSitesResponse","field":[{"name":"installs","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"installs"}]},{"name":"GetInstallbyClientIdRequest","field":[{"name":"client_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"}]},{"name":"GetInstallbyClientIdResponse","field":[{"name":"install","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"install"}]},{"name":"CreateInstallRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"display_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"displayName"},{"name":"description","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"description"},{"name":"status","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"status"},{"name":"fqdn","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"fqdn"},{"name":"created_by_id","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"createdById"},{"name":"global_id","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"globalId"},{"name":"type","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.InstallType","jsonName":"type"},{"name":"client_id","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"}],"reservedRange":[{"start":2,"end":3},{"start":8,"end":9}]},{"name":"CreateInstallResponse","field":[{"name":"install","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"install"},{"name":"credentials","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.InstallCredentials","jsonName":"credentials"}]},{"name":"CreateAndLinkInstallRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"display_name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"displayName"},{"name":"description","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"description"},{"name":"global_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"globalId"},{"name":"type","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.InstallType","jsonName":"type"},{"name":"created_by_id","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"createdById"},{"name":"client_id","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"},{"name":"external_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"externalId"}]},{"name":"CreateAndLinkInstallResponse","field":[{"name":"install","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"install"},{"name":"credentials","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.InstallCredentials","jsonName":"credentials"},{"name":"license","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"license"}]},{"name":"UpdateInstallByClientIdRequest","field":[{"name":"client_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"},{"name":"display_name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"displayName"},{"name":"description","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"description"},{"name":"status","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"status"},{"name":"fqdn","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"fqdn"},{"name":"syncer_settings","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.UpdateInstallByClientIdRequest.SyncerSettings","jsonName":"syncerSettings"}],"nestedType":[{"name":"SyncerSettings","field":[{"name":"send_changed_data_timeout","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"sendChangedDataTimeout"},{"name":"send_fast_changing_data_timeout","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"sendFastChangingDataTimeout"},{"name":"send_non_changed_data_timeout","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"sendNonChangedDataTimeout"},{"name":"sync_interval_in_seconds","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"syncIntervalInSeconds"}]}]},{"name":"UpdateInstallByClientIdResponse","field":[{"name":"install","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"install"}]},{"name":"RotateInstallByClientIdRequest","field":[{"name":"client_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"},{"name":"track_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"trackId"}]},{"name":"RotateInstallByClientIdResponse","field":[{"name":"success","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"success"},{"name":"site_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"old_install_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"oldInstallId"},{"name":"new_install_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"newInstallId"}]},{"name":"UnlinkInstallByClientIdRequest","field":[{"name":"client_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"},{"name":"track_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"trackId"},{"name":"remove_data","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"removeData"},{"name":"from_onprem","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"fromOnprem"}]},{"name":"UnlinkInstallByClientIdResponse","field":[{"name":"success","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"success"}]},{"name":"LinkTrialInstallByClientIdRequest","field":[{"name":"client_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"},{"name":"display_name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"displayName"},{"name":"description","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"description"},{"name":"global_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"globalId"},{"name":"type","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.InstallType","jsonName":"type"}]},{"name":"LinkTrialInstallByClientIdResponse","field":[{"name":"install","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"install"},{"name":"credentials","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.InstallCredentials","jsonName":"credentials"},{"name":"site","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.PreviewSite","jsonName":"site"},{"name":"license","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"license"}]},{"name":"RemoveInstallDataBySiteIdRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"install_ids","number":2,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"installIds"},{"name":"user_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"userId"}]},{"name":"RemoveInstallDataBySiteIdResponse","field":[{"name":"result","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.RemoveInstallDataBySiteIdResponse.Result","jsonName":"result"}],"nestedType":[{"name":"Result","field":[{"name":"install_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"installId"},{"name":"queued","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"queued"}]}]},{"name":"GetDuplicatedInstallsByGlobalIdRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"global_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"globalId"}]},{"name":"GetDuplicatedInstallsByGlobalIdResponse","field":[{"name":"install","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"install"}]},{"name":"GetUserPermissionsRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"account_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"accountId"}]},{"name":"GetUserPermissionsResponse","field":[{"name":"roles","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.GetUserPermissionsResponse.Role","jsonName":"roles"}],"nestedType":[{"name":"AuthorizationAction","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"derived_permissions","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BYTES","jsonName":"derivedPermissions"}]},{"name":"Scope","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"}]},{"name":"Role","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"actions","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.GetUserPermissionsResponse.AuthorizationAction","jsonName":"actions"},{"name":"installations","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"installations"},{"name":"scopes","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.GetUserPermissionsResponse.Scope","jsonName":"scopes"}]}]},{"name":"ValidateApplicationPersonalAccessTokenRequest","field":[{"name":"personal_access_token","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"personalAccessToken"}]},{"name":"ValidateApplicationPersonalAccessTokenResponse","field":[{"name":"user_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"userId"},{"name":"application_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"applicationId"}]},{"name":"DisableWebhookEmailRequest","field":[{"name":"application_name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"applicationName"},{"name":"email","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"email","options":{"deprecated":true}},{"name":"errors","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.DisableWebhookEmailRequest.WebhookError","jsonName":"errors"},{"name":"payload_url","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"payloadUrl"},{"name":"webhook_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"webhookName"},{"name":"webhook_url","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"webhookUrl","options":{"deprecated":true}},{"name":"webhook_id","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"webhookId"},{"name":"application_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"applicationId"}],"nestedType":[{"name":"WebhookError","field":[{"name":"code","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"code"},{"name":"messsage","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"messsage","options":{"deprecated":true}},{"name":"timestamp","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"timestamp"},{"name":"message","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"message"}]}]},{"name":"DisableWebhookEmailResponse","field":[{"name":"mail_sent","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"mailSent"}]},{"name":"Site","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"}]},{"name":"AuthorizedSitesRequest","field":[{"name":"application_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"applicationId"},{"name":"trace_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"traceId"}]},{"name":"AuthorizedSitesResponse","field":[{"name":"site","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Site","jsonName":"site"}]},{"name":"GetAccountIdsBySiteIdRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"}]},{"name":"GetAccountIdsBySiteIdResponse","field":[{"name":"account_ids","number":1,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"accountIds"}]},{"name":"CheckManagerInApplicationRequest","field":[{"name":"application_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"applicationId"},{"name":"manager_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"managerId"}]},{"name":"CheckManagerInApplicationResponse","field":[{"name":"is_manager","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isManager"}]},{"name":"Subscription","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"site_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"type","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.SubscriptionType","jsonName":"type"},{"name":"assets_limit","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"assetsLimit"},{"name":"expiration_date","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"expirationDate"},{"name":"created_at","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"createdAt"},{"name":"created_by","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"createdBy"}]},{"name":"UpdateSiteSubscriptionRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.SubscriptionType","jsonName":"type"},{"name":"assets_limit","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"assetsLimit"},{"name":"expiration_date","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"expirationDate"},{"name":"updated_by","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"updatedBy"}]},{"name":"UpdateSiteSubscriptionResponse","field":[{"name":"subscription","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Subscription","jsonName":"subscription"}]},{"name":"CreateTrialSiteAndInstallerRequest","field":[{"name":"user_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"userId"}]},{"name":"CreateTrialSiteAndInstallerResponse","field":[{"name":"installer_credentials","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"installerCredentials"}]},{"name":"GetInstallationLicenseByClientIdRequest","field":[{"name":"client_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"}]},{"name":"GetInstallationLicenseByClientIdResponse","field":[{"name":"license","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"license"}]},{"name":"AllProfileExistsRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"emails","number":2,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"emails"}],"options":{"deprecated":true}},{"name":"AllProfileExistsResponse","field":[{"name":"all","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"all"}],"options":{"deprecated":true}},{"name":"AllProfilesExistRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"emails","number":2,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"emails"}]},{"name":"AllProfilesExistResponse","field":[{"name":"all","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"all"},{"name":"profiles","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Profile","jsonName":"profiles"},{"name":"createdBy","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.PreviewAccount","jsonName":"createdBy"}]},{"name":"SendInviteLocalUsersMailRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"}]},{"name":"SendInviteLocalUsersMailResponse","field":[{"name":"sent","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"sent"}]},{"name":"GetSiteSubscriptionRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"}]},{"name":"GetSiteSubscriptionResponse","field":[{"name":"type","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.SubscriptionType","jsonName":"type"}]},{"name":"CreateLinkingCodeRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"account_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"accountId"}]},{"name":"CreateLinkingCodeResponse","field":[{"name":"code","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"code"}]},{"name":"GetSiteIdsWithIntegrationData","field":[{"name":"site_ids","number":1,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"siteIds"}]},{"name":"CheckStandardizedSoftwareEnabledRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"}]},{"name":"CheckStandardizedSoftwareEnabledResponse","field":[{"name":"is_enabled","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isEnabled"}]},{"name":"UpdateSiteMetadataRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"key","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"value"}]},{"name":"UpdateSiteMetadataResponse","field":[{"name":"success","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"success"}]},{"name":"GetSiteLimitsRequest","field":[{"name":"site_ids","number":1,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"siteIds"}]},{"name":"GetSiteLimitsResponse","field":[{"name":"site_limits","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.GetSiteLimitsResponse.SiteLimitsEntry","jsonName":"siteLimits"}],"nestedType":[{"name":"SiteLimitsEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.shared.limits.v1.SiteLimits","jsonName":"value"}],"options":{"mapEntry":true}}]},{"name":"MsmpPagination","field":[{"name":"offset","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"offset"},{"name":"limit","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"limit"}]},{"name":"MsmpPaginationInfo","field":[{"name":"total","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"total"},{"name":"offset","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"offset"},{"name":"limit","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"limit"},{"name":"has_next_page","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"hasNextPage"}]},{"name":"GetMsmpOrganizationListRequest","field":[{"name":"user_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"userId"},{"name":"msmp_pagination","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.GetMsmpOrganizationListRequest.MsmpPaginationRequest","jsonName":"msmpPagination"},{"name":"trace_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"traceId"}],"nestedType":[{"name":"MsmpPaginationRequest","field":[{"name":"offset","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"offset"},{"name":"limit","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"limit"}]}]},{"name":"GetMsmpOrganizationListResponse","field":[{"name":"organizations","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.GetMsmpOrganizationListResponse.MsmpOrganization","jsonName":"organizations"},{"name":"msmp_page_info","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.GetMsmpOrganizationListResponse.MsmpPageInfo","jsonName":"msmpPageInfo"}],"nestedType":[{"name":"MsmpOrganization","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"}]},{"name":"MsmpPageInfo","field":[{"name":"total","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"total"},{"name":"offset","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"offset"},{"name":"limit","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"limit"},{"name":"has_next_page","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"hasNextPage"}]}]},{"name":"GetMsmpOrganizationAccountRequest","field":[{"name":"user_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"userId"},{"name":"msmp_organization_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"msmpOrganizationId"},{"name":"trace_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"traceId"}]},{"name":"GetMsmpOrganizationAccountResponse","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"role","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"role"},{"name":"is_pending","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isPending"},{"name":"has_accessed_multi_site_management_portal","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"hasAccessedMultiSiteManagementPortal"}]},{"name":"GetSitesByMsmpOrganizationIdRequest","field":[{"name":"user_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"userId"},{"name":"msmp_organization_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"msmpOrganizationId"},{"name":"msmp_pagination","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.MsmpPagination","jsonName":"msmpPagination"},{"name":"trace_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"traceId"}]},{"name":"GetSitesByMsmpOrganizationIdResponse","field":[{"name":"sites","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.PreviewSite","jsonName":"sites"},{"name":"msmp_pagination_info","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.MsmpPaginationInfo","jsonName":"msmpPaginationInfo"}]}],"enumType":[{"name":"SiteMode","value":[{"name":"UNESPECIFIED","number":0},{"name":"CLOUD_NATIVE","number":1},{"name":"DEMO","number":2},{"name":"HYBRID","number":3},{"name":"DUAL","number":4}]},{"name":"InstallStateValue","value":[{"name":"INSTALL_STATE_VALUE_UNESPECIFIED","number":0},{"name":"INSTALL_STATE_VALUE_SYNC","number":1},{"name":"INSTALL_STATE_VALUE_UNSYNC","number":2}]},{"name":"InstallType","value":[{"name":"IT","number":0},{"name":"OT","number":1},{"name":"IT_AGENT","number":2},{"name":"CLOUD","number":3},{"name":"NETWORK_DISCOVERY","number":4}]},{"name":"SubscriptionType","value":[{"name":"SUBSCRIPTION_TYPE_VALUE_UNESPECIFIED","number":0},{"name":"SUBSCRIPTION_TYPE_VALUE_TRIAL","number":1},{"name":"SUBSCRIPTION_TYPE_VALUE_FREEWARE","number":2},{"name":"SUBSCRIPTION_TYPE_VALUE_STARTER","number":3},{"name":"SUBSCRIPTION_TYPE_VALUE_PRO","number":4},{"name":"SUBSCRIPTION_TYPE_VALUE_ENTERPRISE","number":5}]}],"service":[{"name":"Multitenant","method":[{"name":"CheckAccessToSiteByAccountId","inputType":".lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdRequest","outputType":".lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdResponse","options":{}},{"name":"CheckAccessToSiteByClientId","inputType":".lansweeper.multitenant.v1.CheckAccessToSiteByClientIdRequest","outputType":".lansweeper.multitenant.v1.CheckAccessToSiteByClientIdResponse","options":{}},{"name":"GetPreviewAccountById","inputType":".lansweeper.multitenant.v1.GetPreviewAccountByIdRequest","outputType":".lansweeper.multitenant.v1.GetPreviewAccountByIdResponse","options":{}},{"name":"SearchPreviewAccountsBySiteIds","inputType":".lansweeper.multitenant.v1.SearchPreviewAccountsBySiteIdsRequest","outputType":".lansweeper.multitenant.v1.SearchPreviewAccountsBySiteIdsResponse","options":{}},{"name":"GetPreviewAccountsByAccountIds","inputType":".lansweeper.multitenant.v1.GetPreviewAccountsByAccountIdsRequest","outputType":".lansweeper.multitenant.v1.GetPreviewAccountsByAccountIdsResponse","options":{}},{"name":"ListProfilesByAccountId","inputType":".lansweeper.multitenant.v1.ListProfilesByAccountIdRequest","outputType":".lansweeper.multitenant.v1.ListProfilesByAccountIdResponse","options":{}},{"name":"ListAuthorizedLinkProfiles","inputType":".lansweeper.multitenant.v1.ListAuthorizedLinkProfilesRequest","outputType":".lansweeper.multitenant.v1.ListAuthorizedLinkProfilesResponse","options":{}},{"name":"PatchSiteMode","inputType":".lansweeper.multitenant.v1.PatchSiteModeRequest","outputType":".lansweeper.multitenant.v1.PatchSiteModeResponse","options":{}},{"name":"CreateInstall","inputType":".lansweeper.multitenant.v1.CreateInstallRequest","outputType":".lansweeper.multitenant.v1.CreateInstallResponse","options":{}},{"name":"CreateAndLinkInstall","inputType":".lansweeper.multitenant.v1.CreateAndLinkInstallRequest","outputType":".lansweeper.multitenant.v1.CreateAndLinkInstallResponse","options":{}},{"name":"GetInstallsBySite","inputType":".lansweeper.multitenant.v1.GetInstallsBySiteRequest","outputType":".lansweeper.multitenant.v1.GetInstallsBySiteResponse","options":{}},{"name":"GetInstallsforMultipleSites","inputType":".lansweeper.multitenant.v1.GetInstallsForMultipleSitesRequest","outputType":".lansweeper.multitenant.v1.GetInstallsForMultipleSitesResponse","options":{}},{"name":"GetInstallsById","inputType":".lansweeper.multitenant.v1.GetInstallsByIdRequest","outputType":".lansweeper.multitenant.v1.GetInstallsByIdResponse","options":{}},{"name":"GetInstallsCountBySite","inputType":".lansweeper.multitenant.v1.GetInstallsCountBySiteRequest","outputType":".lansweeper.multitenant.v1.GetInstallsCountResponse","options":{}},{"name":"GetInstallbyClientId","inputType":".lansweeper.multitenant.v1.GetInstallbyClientIdRequest","outputType":".lansweeper.multitenant.v1.GetInstallbyClientIdResponse","options":{}},{"name":"UpdateInstallByClientId","inputType":".lansweeper.multitenant.v1.UpdateInstallByClientIdRequest","outputType":".lansweeper.multitenant.v1.UpdateInstallByClientIdResponse","options":{}},{"name":"RotateInstallByClientId","inputType":".lansweeper.multitenant.v1.RotateInstallByClientIdRequest","outputType":".lansweeper.multitenant.v1.RotateInstallByClientIdResponse","options":{}},{"name":"LinkTrialInstallByClientId","inputType":".lansweeper.multitenant.v1.LinkTrialInstallByClientIdRequest","outputType":".lansweeper.multitenant.v1.LinkTrialInstallByClientIdResponse","options":{}},{"name":"UnlinkInstallByClientId","inputType":".lansweeper.multitenant.v1.UnlinkInstallByClientIdRequest","outputType":".lansweeper.multitenant.v1.UnlinkInstallByClientIdResponse","options":{}},{"name":"RemoveInstallDataBySiteId","inputType":".lansweeper.multitenant.v1.RemoveInstallDataBySiteIdRequest","outputType":".lansweeper.multitenant.v1.RemoveInstallDataBySiteIdResponse","options":{}},{"name":"GetDuplicatedInstallsByGlobalId","inputType":".lansweeper.multitenant.v1.GetDuplicatedInstallsByGlobalIdRequest","outputType":".lansweeper.multitenant.v1.GetDuplicatedInstallsByGlobalIdResponse","options":{}},{"name":"GetUserPermissions","inputType":".lansweeper.multitenant.v1.GetUserPermissionsRequest","outputType":".lansweeper.multitenant.v1.GetUserPermissionsResponse","options":{}},{"name":"ValidateApplicationPersonalAccessToken","inputType":".lansweeper.multitenant.v1.ValidateApplicationPersonalAccessTokenRequest","outputType":".lansweeper.multitenant.v1.ValidateApplicationPersonalAccessTokenResponse","options":{}},{"name":"SendDisabledWebhookEmail","inputType":".lansweeper.multitenant.v1.DisableWebhookEmailRequest","outputType":".lansweeper.multitenant.v1.DisableWebhookEmailResponse","options":{}},{"name":"GetAuthorizedSitesByApplicationId","inputType":".lansweeper.multitenant.v1.AuthorizedSitesRequest","outputType":".lansweeper.multitenant.v1.AuthorizedSitesResponse","options":{}},{"name":"GetAccountIdsBySiteId","inputType":".lansweeper.multitenant.v1.GetAccountIdsBySiteIdRequest","outputType":".lansweeper.multitenant.v1.GetAccountIdsBySiteIdResponse","options":{}},{"name":"CheckManagerInApplication","inputType":".lansweeper.multitenant.v1.CheckManagerInApplicationRequest","outputType":".lansweeper.multitenant.v1.CheckManagerInApplicationResponse","options":{}},{"name":"UpdateSiteSubscription","inputType":".lansweeper.multitenant.v1.UpdateSiteSubscriptionRequest","outputType":".lansweeper.multitenant.v1.UpdateSiteSubscriptionResponse","options":{}},{"name":"CreateTrialSiteAndInstaller","inputType":".lansweeper.multitenant.v1.CreateTrialSiteAndInstallerRequest","outputType":".lansweeper.multitenant.v1.CreateTrialSiteAndInstallerResponse","options":{}},{"name":"GetInstallationLicenseByClientId","inputType":".lansweeper.multitenant.v1.GetInstallationLicenseByClientIdRequest","outputType":".lansweeper.multitenant.v1.GetInstallationLicenseByClientIdResponse","options":{}},{"name":"AllProfilesExist","inputType":".lansweeper.multitenant.v1.AllProfilesExistRequest","outputType":".lansweeper.multitenant.v1.AllProfilesExistResponse","options":{}},{"name":"SendInviteLocalUsersMail","inputType":".lansweeper.multitenant.v1.SendInviteLocalUsersMailRequest","outputType":".lansweeper.multitenant.v1.SendInviteLocalUsersMailResponse","options":{}},{"name":"AllProfileExists","inputType":".lansweeper.multitenant.v1.AllProfileExistsRequest","outputType":".lansweeper.multitenant.v1.AllProfileExistsResponse","options":{"deprecated":true}},{"name":"GetSiteSubscription","inputType":".lansweeper.multitenant.v1.GetSiteSubscriptionRequest","outputType":".lansweeper.multitenant.v1.GetSiteSubscriptionResponse","options":{}},{"name":"CreateLinkingCode","inputType":".lansweeper.multitenant.v1.CreateLinkingCodeRequest","outputType":".lansweeper.multitenant.v1.CreateLinkingCodeResponse","options":{}},{"name":"GetSiteIdsWithIntegrationBySiteId","inputType":".lansweeper.multitenant.v1.GetSiteIdsWithIntegrationData","outputType":".lansweeper.multitenant.v1.GetSiteIdsWithIntegrationData","options":{}},{"name":"CheckStandardizedSoftwareEnabled","inputType":".lansweeper.multitenant.v1.CheckStandardizedSoftwareEnabledRequest","outputType":".lansweeper.multitenant.v1.CheckStandardizedSoftwareEnabledResponse","options":{}},{"name":"UpdateSiteMetadata","inputType":".lansweeper.multitenant.v1.UpdateSiteMetadataRequest","outputType":".lansweeper.multitenant.v1.UpdateSiteMetadataResponse","options":{}},{"name":"GetSiteLimits","inputType":".lansweeper.multitenant.v1.GetSiteLimitsRequest","outputType":".lansweeper.multitenant.v1.GetSiteLimitsResponse","options":{}},{"name":"GetMsmpOrganizationList","inputType":".lansweeper.multitenant.v1.GetMsmpOrganizationListRequest","outputType":".lansweeper.multitenant.v1.GetMsmpOrganizationListResponse","options":{}},{"name":"GetMsmpOrganizationAccount","inputType":".lansweeper.multitenant.v1.GetMsmpOrganizationAccountRequest","outputType":".lansweeper.multitenant.v1.GetMsmpOrganizationAccountResponse","options":{}},{"name":"GetSitesByMsmpOrganizationId","inputType":".lansweeper.multitenant.v1.GetSitesByMsmpOrganizationIdRequest","outputType":".lansweeper.multitenant.v1.GetSitesByMsmpOrganizationIdResponse","options":{}}]}],"options":{"goPackage":"./generated-go"},"sourceCodeInfo":{"location":[{"span":[0,0,554,1]},{"path":[12],"span":[0,0,18]},{"path":[2],"span":[1,0,34]},{"path":[8],"span":[2,0,37]},{"path":[8,11],"span":[2,0,37]},{"path":[3,0],"span":[4,0,29]},{"path":[4,0],"span":[6,0,13,1]},{"path":[4,0,1],"span":[6,8,22]},{"path":[4,0,2,0],"span":[7,2,16]},{"path":[4,0,2,0,5],"span":[7,2,8]},{"path":[4,0,2,0,1],"span":[7,9,11]},{"path":[4,0,2,0,3],"span":[7,14,15]},{"path":[4,0,2,1],"span":[8,2,22]},{"path":[4,0,2,1,5],"span":[8,2,8]},{"path":[4,0,2,1,1],"span":[8,9,17]},{"path":[4,0,2,1,3],"span":[8,20,21]},{"path":[4,0,2,2],"span":[9,2,18]},{"path":[4,0,2,2,5],"span":[9,2,8]},{"path":[4,0,2,2,1],"span":[9,9,13]},{"path":[4,0,2,2,3],"span":[9,16,17]},{"path":[4,0,2,3],"span":[10,2,21]},{"path":[4,0,2,3,5],"span":[10,2,8]},{"path":[4,0,2,3,1],"span":[10,9,16]},{"path":[4,0,2,3,3],"span":[10,19,20]},{"path":[4,0,2,4],"span":[11,2,19]},{"path":[4,0,2,4,5],"span":[11,2,8]},{"path":[4,0,2,4,1],"span":[11,9,14]},{"path":[4,0,2,4,3],"span":[11,17,18]},{"path":[4,0,2,5],"span":[12,2,23]},{"path":[4,0,2,5,5],"span":[12,2,8]},{"path":[4,0,2,5,1],"span":[12,9,18]},{"path":[4,0,2,5,3],"span":[12,21,22]},{"path":[4,1],"span":[14,0,16,1]},{"path":[4,1,1],"span":[14,8,36]},{"path":[4,1,2,0],"span":[15,2,16]},{"path":[4,1,2,0,5],"span":[15,2,8]},{"path":[4,1,2,0,1],"span":[15,9,11]},{"path":[4,1,2,0,3],"span":[15,14,15]},{"path":[4,2],"span":[17,0,19,1]},{"path":[4,2,1],"span":[17,8,37]},{"path":[4,2,2,0],"span":[18,2,29]},{"path":[4,2,2,0,6],"span":[18,2,16]},{"path":[4,2,2,0,1],"span":[18,17,24]},{"path":[4,2,2,0,3],"span":[18,27,28]},{"path":[4,3],"span":[20,0,23,1]},{"path":[4,3,1],"span":[20,8,45]},{"path":[4,3,2,0],"span":[21,2,31]},{"path":[4,3,2,0,4],"span":[21,2,10]},{"path":[4,3,2,0,5],"span":[21,11,17]},{"path":[4,3,2,0,1],"span":[21,18,26]},{"path":[4,3,2,0,3],"span":[21,29,30]},{"path":[4,3,2,1],"span":[22,2,20]},{"path":[4,3,2,1,5],"span":[22,2,8]},{"path":[4,3,2,1,1],"span":[22,9,15]},{"path":[4,3,2,1,3],"span":[22,18,19]},{"path":[4,4],"span":[24,0,26,1]},{"path":[4,4,1],"span":[24,8,46]},{"path":[4,4,2,0],"span":[25,2,39]},{"path":[4,4,2,0,4],"span":[25,2,10]},{"path":[4,4,2,0,6],"span":[25,11,25]},{"path":[4,4,2,0,1],"span":[25,26,34]},{"path":[4,4,2,0,3],"span":[25,37,38]},{"path":[4,5],"span":[27,0,29,1]},{"path":[4,5,1],"span":[27,8,45]},{"path":[4,5,2,0],"span":[28,2,34]},{"path":[4,5,2,0,4],"span":[28,2,10]},{"path":[4,5,2,0,5],"span":[28,11,17]},{"path":[4,5,2,0,1],"span":[28,18,29]},{"path":[4,5,2,0,3],"span":[28,32,33]},{"path":[4,6],"span":[30,0,32,1]},{"path":[4,6,1],"span":[30,8,46]},{"path":[4,6,2,0],"span":[31,2,39]},{"path":[4,6,2,0,4],"span":[31,2,10]},{"path":[4,6,2,0,6],"span":[31,11,25]},{"path":[4,6,2,0,1],"span":[31,26,34]},{"path":[4,6,2,0,3],"span":[31,37,38]},{"path":[5,0],"span":[33,0,39,1]},{"path":[5,0,1],"span":[33,5,13]},{"path":[5,0,2,0],"span":[34,2,19]},{"path":[5,0,2,0,1],"span":[34,2,14]},{"path":[5,0,2,0,2],"span":[34,17,18]},{"path":[5,0,2,1],"span":[35,2,19]},{"path":[5,0,2,1,1],"span":[35,2,14]},{"path":[5,0,2,1,2],"span":[35,17,18]},{"path":[5,0,2,2],"span":[36,2,11]},{"path":[5,0,2,2,1],"span":[36,2,6]},{"path":[5,0,2,2,2],"span":[36,9,10]},{"path":[5,0,2,3],"span":[37,2,13]},{"path":[5,0,2,3,1],"span":[37,2,8]},{"path":[5,0,2,3,2],"span":[37,11,12]},{"path":[5,0,2,4],"span":[38,2,11]},{"path":[5,0,2,4,1],"span":[38,2,6]},{"path":[5,0,2,4,2],"span":[38,9,10]},{"path":[4,7],"span":[40,0,47,1]},{"path":[4,7,1],"span":[40,8,19]},{"path":[4,7,2,0],"span":[41,2,16]},{"path":[4,7,2,0,5],"span":[41,2,8]},{"path":[4,7,2,0,1],"span":[41,9,11]},{"path":[4,7,2,0,3],"span":[41,14,15]},{"path":[4,7,2,1],"span":[42,2,18]},{"path":[4,7,2,1,5],"span":[42,2,8]},{"path":[4,7,2,1,1],"span":[42,9,13]},{"path":[4,7,2,1,3],"span":[42,16,17]},{"path":[4,7,2,2],"span":[43,2,26]},{"path":[4,7,2,2,5],"span":[43,2,8]},{"path":[4,7,2,2,1],"span":[43,9,21]},{"path":[4,7,2,2,3],"span":[43,24,25]},{"path":[4,7,2,3],"span":[44,2,22]},{"path":[4,7,2,3,5],"span":[44,2,8]},{"path":[4,7,2,3,1],"span":[44,9,17]},{"path":[4,7,2,3,3],"span":[44,20,21]},{"path":[4,7,2,4],"span":[45,2,20]},{"path":[4,7,2,4,6],"span":[45,2,10]},{"path":[4,7,2,4,1],"span":[45,11,15]},{"path":[4,7,2,4,3],"span":[45,18,19]},{"path":[4,7,2,5],"span":[46,2,32]},{"path":[4,7,2,5,6],"span":[46,2,16]},{"path":[4,7,2,5,1],"span":[46,17,27]},{"path":[4,7,2,5,3],"span":[46,30,31]},{"path":[4,8],"span":[48,0,51,1]},{"path":[4,8,1],"span":[48,8,28]},{"path":[4,8,2,0],"span":[49,2,16]},{"path":[4,8,2,0,5],"span":[49,2,8]},{"path":[4,8,2,0,1],"span":[49,9,11]},{"path":[4,8,2,0,3],"span":[49,14,15]},{"path":[4,8,2,1],"span":[50,2,20]},{"path":[4,8,2,1,6],"span":[50,2,10]},{"path":[4,8,2,1,1],"span":[50,11,15]},{"path":[4,8,2,1,3],"span":[50,18,19]},{"path":[4,9],"span":[52,0,54,1]},{"path":[4,9,1],"span":[52,8,29]},{"path":[4,9,2,0],"span":[53,2,19]},{"path":[4,9,2,0,5],"span":[53,2,6]},{"path":[4,9,2,0,1],"span":[53,7,14]},{"path":[4,9,2,0,3],"span":[53,17,18]},{"path":[4,10],"span":[55,0,60,1]},{"path":[4,10,1],"span":[55,8,15]},{"path":[4,10,2,0],"span":[56,2,16]},{"path":[4,10,2,0,5],"span":[56,2,8]},{"path":[4,10,2,0,1],"span":[56,9,11]},{"path":[4,10,2,0,3],"span":[56,14,15]},{"path":[4,10,2,1],"span":[57,2,21]},{"path":[4,10,2,1,5],"span":[57,2,8]},{"path":[4,10,2,1,1],"span":[57,9,16]},{"path":[4,10,2,1,3],"span":[57,19,20]},{"path":[4,10,2,2],"span":[58,2,23]},{"path":[4,10,2,2,6],"span":[58,2,13]},{"path":[4,10,2,2,1],"span":[58,14,18]},{"path":[4,10,2,2,3],"span":[58,21,22]},{"path":[4,10,2,3],"span":[59,2,20]},{"path":[4,10,2,3,5],"span":[59,2,6]},{"path":[4,10,2,3,1],"span":[59,7,15]},{"path":[4,10,2,3,3],"span":[59,18,19]},{"path":[4,11],"span":[61,0,65,1]},{"path":[4,11,1],"span":[61,8,38]},{"path":[4,11,2,0],"span":[62,2,24]},{"path":[4,11,2,0,5],"span":[62,2,8]},{"path":[4,11,2,0,1],"span":[62,9,19]},{"path":[4,11,2,0,3],"span":[62,22,23]},{"path":[4,11,2,1],"span":[63,2,26]},{"path":[4,11,2,1,5],"span":[63,2,6]},{"path":[4,11,2,1,1],"span":[63,7,21]},{"path":[4,11,2,1,3],"span":[63,24,25]},{"path":[4,11,2,2],"span":[64,2,40]},{"path":[4,11,2,2,5],"span":[64,2,6]},{"path":[4,11,2,2,1],"span":[64,7,35]},{"path":[4,11,2,2,3],"span":[64,38,39]},{"path":[4,12],"span":[66,0,68,1]},{"path":[4,12,1],"span":[66,8,39]},{"path":[4,12,2,0],"span":[67,2,31]},{"path":[4,12,2,0,4],"span":[67,2,10]},{"path":[4,12,2,0,6],"span":[67,11,18]},{"path":[4,12,2,0,1],"span":[67,19,26]},{"path":[4,12,2,0,3],"span":[67,29,30]},{"path":[4,13],"span":[69,0,72,1]},{"path":[4,13,1],"span":[69,8,41]},{"path":[4,13,2,0],"span":[70,2,24]},{"path":[4,13,2,0,5],"span":[70,2,8]},{"path":[4,13,2,0,1],"span":[70,9,19]},{"path":[4,13,2,0,3],"span":[70,22,23]},{"path":[4,13,2,1],"span":[71,2,46]},{"path":[4,13,2,1,5],"span":[71,2,6]},{"path":[4,13,2,1,1],"span":[71,7,21]},{"path":[4,13,2,1,3],"span":[71,24,25]},{"path":[4,13,2,1,8],"span":[71,26,45]},{"path":[4,13,2,1,8,3],"span":[71,27,44]},{"path":[4,14],"span":[73,0,75,1]},{"path":[4,14,1],"span":[73,8,42]},{"path":[4,14,2,0],"span":[74,2,31]},{"path":[4,14,2,0,4],"span":[74,2,10]},{"path":[4,14,2,0,6],"span":[74,11,18]},{"path":[4,14,2,0,1],"span":[74,19,26]},{"path":[4,14,2,0,3],"span":[74,29,30]},{"path":[4,15],"span":[76,0,85,1]},{"path":[4,15,1],"span":[76,8,43]},{"path":[4,15,2,0],"span":[77,2,24]},{"path":[4,15,2,0,5],"span":[77,2,8]},{"path":[4,15,2,0,1],"span":[77,9,19]},{"path":[4,15,2,0,3],"span":[77,22,23]},{"path":[4,15,2,1],"span":[78,2,21]},{"path":[4,15,2,1,5],"span":[78,2,8]},{"path":[4,15,2,1,1],"span":[78,9,16]},{"path":[4,15,2,1,3],"span":[78,19,20]},{"path":[4,15,2,2],"span":[79,2,22]},{"path":[4,15,2,2,5],"span":[79,2,6]},{"path":[4,15,2,2,1],"span":[79,7,17]},{"path":[4,15,2,2,3],"span":[79,20,21]},{"path":[4,15,3,0],"span":[80,2,83,3]},{"path":[4,15,3,0,1],"span":[80,10,18]},{"path":[4,15,3,0,2,0],"span":[81,4,21]},{"path":[4,15,3,0,2,0,5],"span":[81,4,8]},{"path":[4,15,3,0,2,0,1],"span":[81,9,16]},{"path":[4,15,3,0,2,0,3],"span":[81,19,20]},{"path":[4,15,3,0,2,1],"span":[82,4,26]},{"path":[4,15,3,0,2,1,5],"span":[82,4,8]},{"path":[4,15,3,0,2,1,1],"span":[82,9,21]},{"path":[4,15,3,0,2,1,3],"span":[82,24,25]},{"path":[4,15,2,3],"span":[84,2,25]},{"path":[4,15,2,3,6],"span":[84,2,10]},{"path":[4,15,2,3,1],"span":[84,11,20]},{"path":[4,15,2,3,3],"span":[84,23,24]},{"path":[4,16],"span":[86,0,88,1]},{"path":[4,16,1],"span":[86,8,44]},{"path":[4,16,2,0],"span":[87,2,18]},{"path":[4,16,2,0,5],"span":[87,2,6]},{"path":[4,16,2,0,1],"span":[87,7,13]},{"path":[4,16,2,0,3],"span":[87,16,17]},{"path":[4,17],"span":[89,0,92,1]},{"path":[4,17,1],"span":[89,8,42]},{"path":[4,17,2,0],"span":[90,2,23]},{"path":[4,17,2,0,5],"span":[90,2,8]},{"path":[4,17,2,0,1],"span":[90,9,18]},{"path":[4,17,2,0,3],"span":[90,21,22]},{"path":[4,17,2,1],"span":[91,2,21]},{"path":[4,17,2,1,5],"span":[91,2,8]},{"path":[4,17,2,1,1],"span":[91,9,16]},{"path":[4,17,2,1,3],"span":[91,19,20]},{"path":[4,18],"span":[93,0,95,1]},{"path":[4,18,1],"span":[93,8,43]},{"path":[4,18,2,0],"span":[94,2,18]},{"path":[4,18,2,0,5],"span":[94,2,6]},{"path":[4,18,2,0,1],"span":[94,7,13]},{"path":[4,18,2,0,3],"span":[94,16,17]},{"path":[5,1],"span":[96,0,100,1]},{"path":[5,1,1],"span":[96,5,22]},{"path":[5,1,2,0],"span":[97,2,39]},{"path":[5,1,2,0,1],"span":[97,2,34]},{"path":[5,1,2,0,2],"span":[97,37,38]},{"path":[5,1,2,1],"span":[98,2,31]},{"path":[5,1,2,1,1],"span":[98,2,26]},{"path":[5,1,2,1,2],"span":[98,29,30]},{"path":[5,1,2,2],"span":[99,2,33]},{"path":[5,1,2,2,1],"span":[99,2,28]},{"path":[5,1,2,2,2],"span":[99,31,32]},{"path":[4,19],"span":[101,0,118,1]},{"path":[4,19,1],"span":[101,8,15]},{"path":[4,19,2,0],"span":[102,2,16]},{"path":[4,19,2,0,5],"span":[102,2,8]},{"path":[4,19,2,0,1],"span":[102,9,11]},{"path":[4,19,2,0,3],"span":[102,14,15]},{"path":[4,19,2,1],"span":[103,2,21]},{"path":[4,19,2,1,5],"span":[103,2,8]},{"path":[4,19,2,1,1],"span":[103,9,16]},{"path":[4,19,2,1,3],"span":[103,19,20]},{"path":[4,19,2,2],"span":[104,2,26]},{"path":[4,19,2,2,5],"span":[104,2,8]},{"path":[4,19,2,2,1],"span":[104,9,21]},{"path":[4,19,2,2,3],"span":[104,24,25]},{"path":[4,19,2,3],"span":[105,2,25]},{"path":[4,19,2,3,5],"span":[105,2,8]},{"path":[4,19,2,3,1],"span":[105,9,20]},{"path":[4,19,2,3,3],"span":[105,23,24]},{"path":[4,19,2,4],"span":[106,2,20]},{"path":[4,19,2,4,5],"span":[106,2,8]},{"path":[4,19,2,4,1],"span":[106,9,15]},{"path":[4,19,2,4,3],"span":[106,18,19]},{"path":[4,19,2,5],"span":[107,2,18]},{"path":[4,19,2,5,5],"span":[107,2,8]},{"path":[4,19,2,5,1],"span":[107,9,13]},{"path":[4,19,2,5,3],"span":[107,16,17]},{"path":[4,19,2,6],"span":[108,2,27]},{"path":[4,19,2,6,5],"span":[108,2,8]},{"path":[4,19,2,6,1],"span":[108,9,22]},{"path":[4,19,2,6,3],"span":[108,25,26]},{"path":[4,19,2,7],"span":[109,2,23]},{"path":[4,19,2,7,5],"span":[109,2,8]},{"path":[4,19,2,7,1],"span":[109,9,18]},{"path":[4,19,2,7,3],"span":[109,21,22]},{"path":[4,19,3,0],"span":[110,2,112,3]},{"path":[4,19,3,0,1],"span":[110,10,22]},{"path":[4,19,3,0,2,0],"span":[111,4,32]},{"path":[4,19,3,0,2,0,6],"span":[111,4,21]},{"path":[4,19,3,0,2,0,1],"span":[111,22,27]},{"path":[4,19,3,0,2,0,3],"span":[111,30,31]},{"path":[4,19,2,8],"span":[113,2,25]},{"path":[4,19,2,8,6],"span":[113,2,14]},{"path":[4,19,2,8,1],"span":[113,15,20]},{"path":[4,19,2,8,3],"span":[113,23,24]},{"path":[4,19,2,9],"span":[114,2,25]},{"path":[4,19,2,9,5],"span":[114,2,8]},{"path":[4,19,2,9,1],"span":[114,9,19]},{"path":[4,19,2,9,3],"span":[114,22,24]},{"path":[4,19,2,10],"span":[115,2,22]},{"path":[4,19,2,10,5],"span":[115,2,8]},{"path":[4,19,2,10,1],"span":[115,9,16]},{"path":[4,19,2,10,3],"span":[115,19,21]},{"path":[4,19,2,11],"span":[116,2,39]},{"path":[4,19,2,11,5],"span":[116,2,8]},{"path":[4,19,2,11,1],"span":[116,9,13]},{"path":[4,19,2,11,3],"span":[116,16,18]},{"path":[4,19,2,11,8],"span":[116,19,38]},{"path":[4,19,2,11,8,3],"span":[116,20,37]},{"path":[4,19,2,12],"span":[117,2,32]},{"path":[4,19,2,12,6],"span":[117,2,13]},{"path":[4,19,2,12,1],"span":[117,14,26]},{"path":[4,19,2,12,3],"span":[117,29,31]},{"path":[4,20],"span":[119,0,122,1]},{"path":[4,20,1],"span":[119,8,26]},{"path":[4,20,2,0],"span":[120,2,23]},{"path":[4,20,2,0,5],"span":[120,2,8]},{"path":[4,20,2,0,1],"span":[120,9,18]},{"path":[4,20,2,0,3],"span":[120,21,22]},{"path":[4,20,2,1],"span":[121,2,27]},{"path":[4,20,2,1,5],"span":[121,2,8]},{"path":[4,20,2,1,1],"span":[121,9,22]},{"path":[4,20,2,1,3],"span":[121,25,26]},{"path":[4,21],"span":[123,0,125,1]},{"path":[4,21,1],"span":[123,8,37]},{"path":[4,21,2,0],"span":[124,2,21]},{"path":[4,21,2,0,5],"span":[124,2,8]},{"path":[4,21,2,0,1],"span":[124,9,16]},{"path":[4,21,2,0,3],"span":[124,19,20]},{"path":[4,22],"span":[126,0,128,1]},{"path":[4,22,1],"span":[126,8,32]},{"path":[4,22,2,0],"span":[127,2,18]},{"path":[4,22,2,0,5],"span":[127,2,7]},{"path":[4,22,2,0,1],"span":[127,8,13]},{"path":[4,22,2,0,3],"span":[127,16,17]},{"path":[4,23],"span":[129,0,131,1]},{"path":[4,23,1],"span":[129,8,30]},{"path":[4,23,2,0],"span":[130,2,34]},{"path":[4,23,2,0,4],"span":[130,2,10]},{"path":[4,23,2,0,5],"span":[130,11,17]},{"path":[4,23,2,0,1],"span":[130,18,29]},{"path":[4,23,2,0,3],"span":[130,32,33]},{"path":[4,24],"span":[132,0,134,1]},{"path":[4,24,1],"span":[132,8,31]},{"path":[4,24,2,0],"span":[133,2,31]},{"path":[4,24,2,0,4],"span":[133,2,10]},{"path":[4,24,2,0,6],"span":[133,11,18]},{"path":[4,24,2,0,1],"span":[133,19,26]},{"path":[4,24,2,0,3],"span":[133,29,30]},{"path":[4,25],"span":[135,0,139,1]},{"path":[4,25,1],"span":[135,8,27]},{"path":[4,25,8,0],"span":[136,2,138,3]},{"path":[4,25,8,0,1],"span":[136,8,12]},{"path":[4,25,2,0],"span":[137,4,25]},{"path":[4,25,2,0,6],"span":[137,4,15]},{"path":[4,25,2,0,1],"span":[137,16,20]},{"path":[4,25,2,0,3],"span":[137,23,24]},{"path":[4,26],"span":[140,0,148,1]},{"path":[4,26,1],"span":[140,8,32]},{"path":[4,26,2,0],"span":[141,2,21]},{"path":[4,26,2,0,5],"span":[141,2,8]},{"path":[4,26,2,0,1],"span":[141,9,16]},{"path":[4,26,2,0,3],"span":[141,19,20]},{"path":[4,26,3,0],"span":[142,2,146,3]},{"path":[4,26,3,0,1],"span":[142,10,16]},{"path":[4,26,3,0,2,0],"span":[143,4,32]},{"path":[4,26,3,0,2,0,6],"span":[143,4,21]},{"path":[4,26,3,0,2,0,1],"span":[143,22,27]},{"path":[4,26,3,0,2,0,3],"span":[143,30,31]},{"path":[4,26,3,0,2,1],"span":[144,4,43]},{"path":[4,26,3,0,2,1,6],"span":[144,4,15]},{"path":[4,26,3,0,2,1,1],"span":[144,16,20]},{"path":[4,26,3,0,2,1,3],"span":[144,21,22]},{"path":[4,26,3,0,2,1,8],"span":[144,23,42]},{"path":[4,26,3,0,2,1,8,3],"span":[144,24,41]},{"path":[4,26,3,0,2,2],"span":[145,4,39]},{"path":[4,26,3,0,2,2,6],"span":[145,4,23]},{"path":[4,26,3,0,2,2,1],"span":[145,24,36]},{"path":[4,26,3,0,2,2,3],"span":[145,37,38]},{"path":[4,26,2,1],"span":[147,2,20]},{"path":[4,26,2,1,6],"span":[147,2,8]},{"path":[4,26,2,1,1],"span":[147,9,15]},{"path":[4,26,2,1,3],"span":[147,18,19]},{"path":[4,27],"span":[149,0,151,1]},{"path":[4,27,1],"span":[149,8,33]},{"path":[4,27,2,0],"span":[150,2,31]},{"path":[4,27,2,0,4],"span":[150,2,10]},{"path":[4,27,2,0,6],"span":[150,11,18]},{"path":[4,27,2,0,1],"span":[150,19,26]},{"path":[4,27,2,0,3],"span":[150,29,30]},{"path":[4,28],"span":[152,0,154,1]},{"path":[4,28,1],"span":[152,8,42]},{"path":[4,28,2,0],"span":[153,2,31]},{"path":[4,28,2,0,4],"span":[153,2,10]},{"path":[4,28,2,0,5],"span":[153,11,17]},{"path":[4,28,2,0,1],"span":[153,18,26]},{"path":[4,28,2,0,3],"span":[153,29,30]},{"path":[4,29],"span":[155,0,157,1]},{"path":[4,29,1],"span":[155,8,43]},{"path":[4,29,2,0],"span":[156,2,32]},{"path":[4,29,2,0,4],"span":[156,2,10]},{"path":[4,29,2,0,6],"span":[156,11,18]},{"path":[4,29,2,0,1],"span":[156,19,27]},{"path":[4,29,2,0,3],"span":[156,30,31]},{"path":[4,30],"span":[158,0,160,1]},{"path":[4,30,1],"span":[158,8,35]},{"path":[4,30,2,0],"span":[159,2,23]},{"path":[4,30,2,0,5],"span":[159,2,8]},{"path":[4,30,2,0,1],"span":[159,9,18]},{"path":[4,30,2,0,3],"span":[159,21,22]},{"path":[4,31],"span":[161,0,163,1]},{"path":[4,31,1],"span":[161,8,36]},{"path":[4,31,2,0],"span":[162,2,22]},{"path":[4,31,2,0,6],"span":[162,2,9]},{"path":[4,31,2,0,1],"span":[162,10,17]},{"path":[4,31,2,0,3],"span":[162,20,21]},{"path":[4,32],"span":[164,0,176,1]},{"path":[4,32,1],"span":[164,8,28]},{"path":[4,32,9],"span":[165,2,16]},{"path":[4,32,9,0],"span":[165,11,12]},{"path":[4,32,9,0,1],"span":[165,11,12]},{"path":[4,32,9,1],"span":[165,14,15]},{"path":[4,32,9,1,1],"span":[165,14,15]},{"path":[4,32,2,0],"span":[166,2,21]},{"path":[4,32,2,0,5],"span":[166,2,8]},{"path":[4,32,2,0,1],"span":[166,9,16]},{"path":[4,32,2,0,3],"span":[166,19,20]},{"path":[4,32,2,1],"span":[167,2,26]},{"path":[4,32,2,1,5],"span":[167,2,8]},{"path":[4,32,2,1,1],"span":[167,9,21]},{"path":[4,32,2,1,3],"span":[167,24,25]},{"path":[4,32,2,2],"span":[168,2,25]},{"path":[4,32,2,2,5],"span":[168,2,8]},{"path":[4,32,2,2,1],"span":[168,9,20]},{"path":[4,32,2,2,3],"span":[168,23,24]},{"path":[4,32,2,3],"span":[169,2,20]},{"path":[4,32,2,3,5],"span":[169,2,8]},{"path":[4,32,2,3,1],"span":[169,9,15]},{"path":[4,32,2,3,3],"span":[169,18,19]},{"path":[4,32,2,4],"span":[170,2,18]},{"path":[4,32,2,4,5],"span":[170,2,8]},{"path":[4,32,2,4,1],"span":[170,9,13]},{"path":[4,32,2,4,3],"span":[170,16,17]},{"path":[4,32,2,5],"span":[171,2,27]},{"path":[4,32,2,5,5],"span":[171,2,8]},{"path":[4,32,2,5,1],"span":[171,9,22]},{"path":[4,32,2,5,3],"span":[171,25,26]},{"path":[4,32,2,6],"span":[173,2,23]},{"path":[4,32,2,6,5],"span":[173,2,8]},{"path":[4,32,2,6,1],"span":[173,9,18]},{"path":[4,32,2,6,3],"span":[173,21,22]},{"path":[4,32,2,7],"span":[174,2,24]},{"path":[4,32,2,7,6],"span":[174,2,13]},{"path":[4,32,2,7,1],"span":[174,14,18]},{"path":[4,32,2,7,3],"span":[174,21,23]},{"path":[4,32,2,8],"span":[175,2,24]},{"path":[4,32,2,8,5],"span":[175,2,8]},{"path":[4,32,2,8,1],"span":[175,9,18]},{"path":[4,32,2,8,3],"span":[175,21,23]},{"path":[5,2],"span":[177,0,183,1]},{"path":[5,2,1],"span":[177,5,16]},{"path":[5,2,2,0],"span":[178,2,7]},{"path":[5,2,2,0,1],"span":[178,2,4]},{"path":[5,2,2,0,2],"span":[178,5,6]},{"path":[5,2,2,1],"span":[179,2,7]},{"path":[5,2,2,1,1],"span":[179,2,4]},{"path":[5,2,2,1,2],"span":[179,5,6]},{"path":[5,2,2,2],"span":[180,2,13]},{"path":[5,2,2,2,1],"span":[180,2,10]},{"path":[5,2,2,2,2],"span":[180,11,12]},{"path":[5,2,2,3],"span":[181,2,10]},{"path":[5,2,2,3,1],"span":[181,2,7]},{"path":[5,2,2,3,2],"span":[181,8,9]},{"path":[5,2,2,4],"span":[182,2,22]},{"path":[5,2,2,4,1],"span":[182,2,19]},{"path":[5,2,2,4,2],"span":[182,20,21]},{"path":[4,33],"span":[184,0,187,1]},{"path":[4,33,1],"span":[184,8,29]},{"path":[4,33,2,0],"span":[185,2,22]},{"path":[4,33,2,0,6],"span":[185,2,9]},{"path":[4,33,2,0,1],"span":[185,10,17]},{"path":[4,33,2,0,3],"span":[185,20,21]},{"path":[4,33,2,1],"span":[186,2,37]},{"path":[4,33,2,1,6],"span":[186,2,20]},{"path":[4,33,2,1,1],"span":[186,21,32]},{"path":[4,33,2,1,3],"span":[186,35,36]},{"path":[4,34],"span":[188,0,197,1]},{"path":[4,34,1],"span":[188,8,35]},{"path":[4,34,2,0],"span":[189,2,21]},{"path":[4,34,2,0,5],"span":[189,2,8]},{"path":[4,34,2,0,1],"span":[189,9,16]},{"path":[4,34,2,0,3],"span":[189,19,20]},{"path":[4,34,2,1],"span":[190,2,26]},{"path":[4,34,2,1,5],"span":[190,2,8]},{"path":[4,34,2,1,1],"span":[190,9,21]},{"path":[4,34,2,1,3],"span":[190,24,25]},{"path":[4,34,2,2],"span":[191,2,25]},{"path":[4,34,2,2,5],"span":[191,2,8]},{"path":[4,34,2,2,1],"span":[191,9,20]},{"path":[4,34,2,2,3],"span":[191,23,24]},{"path":[4,34,2,3],"span":[192,2,23]},{"path":[4,34,2,3,5],"span":[192,2,8]},{"path":[4,34,2,3,1],"span":[192,9,18]},{"path":[4,34,2,3,3],"span":[192,21,22]},{"path":[4,34,2,4],"span":[193,2,23]},{"path":[4,34,2,4,6],"span":[193,2,13]},{"path":[4,34,2,4,1],"span":[193,14,18]},{"path":[4,34,2,4,3],"span":[193,21,22]},{"path":[4,34,2,5],"span":[194,2,27]},{"path":[4,34,2,5,5],"span":[194,2,8]},{"path":[4,34,2,5,1],"span":[194,9,22]},{"path":[4,34,2,5,3],"span":[194,25,26]},{"path":[4,34,2,6],"span":[195,2,23]},{"path":[4,34,2,6,5],"span":[195,2,8]},{"path":[4,34,2,6,1],"span":[195,9,18]},{"path":[4,34,2,6,3],"span":[195,21,22]},{"path":[4,34,2,7],"span":[196,2,25]},{"path":[4,34,2,7,5],"span":[196,2,8]},{"path":[4,34,2,7,1],"span":[196,9,20]},{"path":[4,34,2,7,3],"span":[196,23,24]},{"path":[4,35],"span":[198,0,202,1]},{"path":[4,35,1],"span":[198,8,36]},{"path":[4,35,2,0],"span":[199,2,22]},{"path":[4,35,2,0,6],"span":[199,2,9]},{"path":[4,35,2,0,1],"span":[199,10,17]},{"path":[4,35,2,0,3],"span":[199,20,21]},{"path":[4,35,2,1],"span":[200,2,37]},{"path":[4,35,2,1,6],"span":[200,2,20]},{"path":[4,35,2,1,1],"span":[200,21,32]},{"path":[4,35,2,1,3],"span":[200,35,36]},{"path":[4,35,2,2],"span":[201,2,21]},{"path":[4,35,2,2,5],"span":[201,2,8]},{"path":[4,35,2,2,1],"span":[201,9,16]},{"path":[4,35,2,2,3],"span":[201,19,20]},{"path":[4,36],"span":[203,0,216,1]},{"path":[4,36,1],"span":[203,8,38]},{"path":[4,36,2,0],"span":[204,2,23]},{"path":[4,36,2,0,5],"span":[204,2,8]},{"path":[4,36,2,0,1],"span":[204,9,18]},{"path":[4,36,2,0,3],"span":[204,21,22]},{"path":[4,36,2,1],"span":[205,2,26]},{"path":[4,36,2,1,5],"span":[205,2,8]},{"path":[4,36,2,1,1],"span":[205,9,21]},{"path":[4,36,2,1,3],"span":[205,24,25]},{"path":[4,36,2,2],"span":[206,2,25]},{"path":[4,36,2,2,5],"span":[206,2,8]},{"path":[4,36,2,2,1],"span":[206,9,20]},{"path":[4,36,2,2,3],"span":[206,23,24]},{"path":[4,36,2,3],"span":[207,2,20]},{"path":[4,36,2,3,5],"span":[207,2,8]},{"path":[4,36,2,3,1],"span":[207,9,15]},{"path":[4,36,2,3,3],"span":[207,18,19]},{"path":[4,36,2,4],"span":[208,2,18]},{"path":[4,36,2,4,5],"span":[208,2,8]},{"path":[4,36,2,4,1],"span":[208,9,13]},{"path":[4,36,2,4,3],"span":[208,16,17]},{"path":[4,36,3,0],"span":[209,2,214,3]},{"path":[4,36,3,0,1],"span":[209,10,24]},{"path":[4,36,3,0,2,0],"span":[210,4,41]},{"path":[4,36,3,0,2,0,5],"span":[210,4,10]},{"path":[4,36,3,0,2,0,1],"span":[210,11,36]},{"path":[4,36,3,0,2,0,3],"span":[210,39,40]},{"path":[4,36,3,0,2,1],"span":[211,4,47]},{"path":[4,36,3,0,2,1,5],"span":[211,4,10]},{"path":[4,36,3,0,2,1,1],"span":[211,11,42]},{"path":[4,36,3,0,2,1,3],"span":[211,45,46]},{"path":[4,36,3,0,2,2],"span":[212,4,45]},{"path":[4,36,3,0,2,2,5],"span":[212,4,10]},{"path":[4,36,3,0,2,2,1],"span":[212,11,40]},{"path":[4,36,3,0,2,2,3],"span":[212,43,44]},{"path":[4,36,3,0,2,3],"span":[213,4,40]},{"path":[4,36,3,0,2,3,5],"span":[213,4,10]},{"path":[4,36,3,0,2,3,1],"span":[213,11,35]},{"path":[4,36,3,0,2,3,3],"span":[213,38,39]},{"path":[4,36,2,5],"span":[215,2,37]},{"path":[4,36,2,5,6],"span":[215,2,16]},{"path":[4,36,2,5,1],"span":[215,17,32]},{"path":[4,36,2,5,3],"span":[215,35,36]},{"path":[4,37],"span":[217,0,219,1]},{"path":[4,37,1],"span":[217,8,39]},{"path":[4,37,2,0],"span":[218,2,22]},{"path":[4,37,2,0,6],"span":[218,2,9]},{"path":[4,37,2,0,1],"span":[218,10,17]},{"path":[4,37,2,0,3],"span":[218,20,21]},{"path":[4,38],"span":[220,0,223,1]},{"path":[4,38,1],"span":[220,8,38]},{"path":[4,38,2,0],"span":[221,2,23]},{"path":[4,38,2,0,5],"span":[221,2,8]},{"path":[4,38,2,0,1],"span":[221,9,18]},{"path":[4,38,2,0,3],"span":[221,21,22]},{"path":[4,38,2,1],"span":[222,2,22]},{"path":[4,38,2,1,5],"span":[222,2,8]},{"path":[4,38,2,1,1],"span":[222,9,17]},{"path":[4,38,2,1,3],"span":[222,20,21]},{"path":[4,39],"span":[224,0,229,1]},{"path":[4,39,1],"span":[224,8,39]},{"path":[4,39,2,0],"span":[225,2,19]},{"path":[4,39,2,0,5],"span":[225,2,6]},{"path":[4,39,2,0,1],"span":[225,7,14]},{"path":[4,39,2,0,3],"span":[225,17,18]},{"path":[4,39,2,1],"span":[226,2,21]},{"path":[4,39,2,1,5],"span":[226,2,8]},{"path":[4,39,2,1,1],"span":[226,9,16]},{"path":[4,39,2,1,3],"span":[226,19,20]},{"path":[4,39,2,2],"span":[227,2,28]},{"path":[4,39,2,2,5],"span":[227,2,8]},{"path":[4,39,2,2,1],"span":[227,9,23]},{"path":[4,39,2,2,3],"span":[227,26,27]},{"path":[4,39,2,3],"span":[228,2,28]},{"path":[4,39,2,3,5],"span":[228,2,8]},{"path":[4,39,2,3,1],"span":[228,9,23]},{"path":[4,39,2,3,3],"span":[228,26,27]},{"path":[4,40],"span":[230,0,235,1]},{"path":[4,40,1],"span":[230,8,38]},{"path":[4,40,2,0],"span":[231,2,23]},{"path":[4,40,2,0,5],"span":[231,2,8]},{"path":[4,40,2,0,1],"span":[231,9,18]},{"path":[4,40,2,0,3],"span":[231,21,22]},{"path":[4,40,2,1],"span":[232,2,22]},{"path":[4,40,2,1,5],"span":[232,2,8]},{"path":[4,40,2,1,1],"span":[232,9,17]},{"path":[4,40,2,1,3],"span":[232,20,21]},{"path":[4,40,2,2],"span":[233,2,23]},{"path":[4,40,2,2,5],"span":[233,2,6]},{"path":[4,40,2,2,1],"span":[233,7,18]},{"path":[4,40,2,2,3],"span":[233,21,22]},{"path":[4,40,2,3],"span":[234,2,23]},{"path":[4,40,2,3,5],"span":[234,2,6]},{"path":[4,40,2,3,1],"span":[234,7,18]},{"path":[4,40,2,3,3],"span":[234,21,22]},{"path":[4,41],"span":[236,0,238,1]},{"path":[4,41,1],"span":[236,8,39]},{"path":[4,41,2,0],"span":[237,2,19]},{"path":[4,41,2,0,5],"span":[237,2,6]},{"path":[4,41,2,0,1],"span":[237,7,14]},{"path":[4,41,2,0,3],"span":[237,17,18]},{"path":[4,42],"span":[239,0,245,1]},{"path":[4,42,1],"span":[239,8,41]},{"path":[4,42,2,0],"span":[240,2,23]},{"path":[4,42,2,0,5],"span":[240,2,8]},{"path":[4,42,2,0,1],"span":[240,9,18]},{"path":[4,42,2,0,3],"span":[240,21,22]},{"path":[4,42,2,1],"span":[241,2,26]},{"path":[4,42,2,1,5],"span":[241,2,8]},{"path":[4,42,2,1,1],"span":[241,9,21]},{"path":[4,42,2,1,3],"span":[241,24,25]},{"path":[4,42,2,2],"span":[242,2,25]},{"path":[4,42,2,2,5],"span":[242,2,8]},{"path":[4,42,2,2,1],"span":[242,9,20]},{"path":[4,42,2,2,3],"span":[242,23,24]},{"path":[4,42,2,3],"span":[243,2,23]},{"path":[4,42,2,3,5],"span":[243,2,8]},{"path":[4,42,2,3,1],"span":[243,9,18]},{"path":[4,42,2,3,3],"span":[243,21,22]},{"path":[4,42,2,4],"span":[244,2,23]},{"path":[4,42,2,4,6],"span":[244,2,13]},{"path":[4,42,2,4,1],"span":[244,14,18]},{"path":[4,42,2,4,3],"span":[244,21,22]},{"path":[4,43],"span":[246,0,251,1]},{"path":[4,43,1],"span":[246,8,42]},{"path":[4,43,2,0],"span":[247,2,22]},{"path":[4,43,2,0,6],"span":[247,2,9]},{"path":[4,43,2,0,1],"span":[247,10,17]},{"path":[4,43,2,0,3],"span":[247,20,21]},{"path":[4,43,2,1],"span":[248,2,37]},{"path":[4,43,2,1,6],"span":[248,2,20]},{"path":[4,43,2,1,1],"span":[248,21,32]},{"path":[4,43,2,1,3],"span":[248,35,36]},{"path":[4,43,2,2],"span":[249,2,23]},{"path":[4,43,2,2,6],"span":[249,2,13]},{"path":[4,43,2,2,1],"span":[249,14,18]},{"path":[4,43,2,2,3],"span":[249,21,22]},{"path":[4,43,2,3],"span":[250,2,21]},{"path":[4,43,2,3,5],"span":[250,2,8]},{"path":[4,43,2,3,1],"span":[250,9,16]},{"path":[4,43,2,3,3],"span":[250,19,20]},{"path":[4,44],"span":[252,0,256,1]},{"path":[4,44,1],"span":[252,8,40]},{"path":[4,44,2,0],"span":[253,2,21]},{"path":[4,44,2,0,5],"span":[253,2,8]},{"path":[4,44,2,0,1],"span":[253,9,16]},{"path":[4,44,2,0,3],"span":[253,19,20]},{"path":[4,44,2,1],"span":[254,2,34]},{"path":[4,44,2,1,4],"span":[254,2,10]},{"path":[4,44,2,1,5],"span":[254,11,17]},{"path":[4,44,2,1,1],"span":[254,18,29]},{"path":[4,44,2,1,3],"span":[254,32,33]},{"path":[4,44,2,2],"span":[255,2,21]},{"path":[4,44,2,2,5],"span":[255,2,8]},{"path":[4,44,2,2,1],"span":[255,9,16]},{"path":[4,44,2,2,3],"span":[255,19,20]},{"path":[4,45],"span":[257,0,263,1]},{"path":[4,45,1],"span":[257,8,41]},{"path":[4,45,3,0],"span":[258,2,261,3]},{"path":[4,45,3,0,1],"span":[258,10,16]},{"path":[4,45,3,0,2,0],"span":[259,4,26]},{"path":[4,45,3,0,2,0,5],"span":[259,4,10]},{"path":[4,45,3,0,2,0,1],"span":[259,11,21]},{"path":[4,45,3,0,2,0,3],"span":[259,24,25]},{"path":[4,45,3,0,2,1],"span":[260,4,20]},{"path":[4,45,3,0,2,1,5],"span":[260,4,8]},{"path":[4,45,3,0,2,1,1],"span":[260,9,15]},{"path":[4,45,3,0,2,1,3],"span":[260,18,19]},{"path":[4,45,2,0],"span":[262,2,29]},{"path":[4,45,2,0,4],"span":[262,2,10]},{"path":[4,45,2,0,6],"span":[262,11,17]},{"path":[4,45,2,0,1],"span":[262,18,24]},{"path":[4,45,2,0,3],"span":[262,27,28]},{"path":[4,46],"span":[264,0,267,1]},{"path":[4,46,1],"span":[264,8,46]},{"path":[4,46,2,0],"span":[265,2,21]},{"path":[4,46,2,0,5],"span":[265,2,8]},{"path":[4,46,2,0,1],"span":[265,9,16]},{"path":[4,46,2,0,3],"span":[265,19,20]},{"path":[4,46,2,1],"span":[266,2,23]},{"path":[4,46,2,1,5],"span":[266,2,8]},{"path":[4,46,2,1,1],"span":[266,9,18]},{"path":[4,46,2,1,3],"span":[266,21,22]},{"path":[4,47],"span":[268,0,270,1]},{"path":[4,47,1],"span":[268,8,47]},{"path":[4,47,2,0],"span":[269,2,31]},{"path":[4,47,2,0,4],"span":[269,2,10]},{"path":[4,47,2,0,6],"span":[269,11,18]},{"path":[4,47,2,0,1],"span":[269,19,26]},{"path":[4,47,2,0,3],"span":[269,29,30]},{"path":[4,48],"span":[271,0,274,1]},{"path":[4,48,1],"span":[271,8,33]},{"path":[4,48,2,0],"span":[272,2,21]},{"path":[4,48,2,0,5],"span":[272,2,8]},{"path":[4,48,2,0,1],"span":[272,9,16]},{"path":[4,48,2,0,3],"span":[272,19,20]},{"path":[4,48,2,1],"span":[273,2,24]},{"path":[4,48,2,1,5],"span":[273,2,8]},{"path":[4,48,2,1,1],"span":[273,9,19]},{"path":[4,48,2,1,3],"span":[273,22,23]},{"path":[4,49],"span":[275,0,290,1]},{"path":[4,49,1],"span":[275,8,34]},{"path":[4,49,3,0],"span":[276,2,279,3]},{"path":[4,49,3,0,1],"span":[276,10,29]},{"path":[4,49,3,0,2,0],"span":[277,4,19]},{"path":[4,49,3,0,2,0,5],"span":[277,4,10]},{"path":[4,49,3,0,2,0,1],"span":[277,11,14]},{"path":[4,49,3,0,2,0,3],"span":[277,17,18]},{"path":[4,49,3,0,2,1],"span":[278,4,34]},{"path":[4,49,3,0,2,1,5],"span":[278,4,9]},{"path":[4,49,3,0,2,1,1],"span":[278,10,29]},{"path":[4,49,3,0,2,1,3],"span":[278,32,33]},{"path":[4,49,3,1],"span":[280,2,282,3]},{"path":[4,49,3,1,1],"span":[280,10,15]},{"path":[4,49,3,1,2,0],"span":[281,4,18]},{"path":[4,49,3,1,2,0,5],"span":[281,4,10]},{"path":[4,49,3,1,2,0,1],"span":[281,11,13]},{"path":[4,49,3,1,2,0,3],"span":[281,16,17]},{"path":[4,49,3,2],"span":[283,2,288,3]},{"path":[4,49,3,2,1],"span":[283,10,14]},{"path":[4,49,3,2,2,0],"span":[284,4,18]},{"path":[4,49,3,2,2,0,5],"span":[284,4,10]},{"path":[4,49,3,2,2,0,1],"span":[284,11,13]},{"path":[4,49,3,2,2,0,3],"span":[284,16,17]},{"path":[4,49,3,2,2,1],"span":[285,4,45]},{"path":[4,49,3,2,2,1,4],"span":[285,4,12]},{"path":[4,49,3,2,2,1,6],"span":[285,13,32]},{"path":[4,49,3,2,2,1,1],"span":[285,33,40]},{"path":[4,49,3,2,2,1,3],"span":[285,43,44]},{"path":[4,49,3,2,2,2],"span":[286,4,39]},{"path":[4,49,3,2,2,2,4],"span":[286,4,12]},{"path":[4,49,3,2,2,2,6],"span":[286,13,20]},{"path":[4,49,3,2,2,2,1],"span":[286,21,34]},{"path":[4,49,3,2,2,2,3],"span":[286,37,38]},{"path":[4,49,3,2,2,3],"span":[287,4,30]},{"path":[4,49,3,2,2,3,4],"span":[287,4,12]},{"path":[4,49,3,2,2,3,6],"span":[287,13,18]},{"path":[4,49,3,2,2,3,1],"span":[287,19,25]},{"path":[4,49,3,2,2,3,3],"span":[287,28,29]},{"path":[4,49,2,0],"span":[289,2,26]},{"path":[4,49,2,0,4],"span":[289,2,10]},{"path":[4,49,2,0,6],"span":[289,11,15]},{"path":[4,49,2,0,1],"span":[289,16,21]},{"path":[4,49,2,0,3],"span":[289,24,25]},{"path":[4,50],"span":[291,0,293,1]},{"path":[4,50,1],"span":[291,8,53]},{"path":[4,50,2,0],"span":[292,2,35]},{"path":[4,50,2,0,5],"span":[292,2,8]},{"path":[4,50,2,0,1],"span":[292,9,30]},{"path":[4,50,2,0,3],"span":[292,33,34]},{"path":[4,51],"span":[294,0,297,1]},{"path":[4,51,1],"span":[294,8,54]},{"path":[4,51,2,0],"span":[295,2,21]},{"path":[4,51,2,0,5],"span":[295,2,8]},{"path":[4,51,2,0,1],"span":[295,9,16]},{"path":[4,51,2,0,3],"span":[295,19,20]},{"path":[4,51,2,1],"span":[296,2,28]},{"path":[4,51,2,1,5],"span":[296,2,8]},{"path":[4,51,2,1,1],"span":[296,9,23]},{"path":[4,51,2,1,3],"span":[296,26,27]},{"path":[4,52],"span":[298,0,315,1]},{"path":[4,52,1],"span":[298,8,34]},{"path":[4,52,2,0],"span":[299,2,30]},{"path":[4,52,2,0,5],"span":[299,2,8]},{"path":[4,52,2,0,1],"span":[299,9,25]},{"path":[4,52,2,0,3],"span":[299,28,29]},{"path":[4,52,2,1],"span":[300,2,39]},{"path":[4,52,2,1,5],"span":[300,2,8]},{"path":[4,52,2,1,1],"span":[300,9,14]},{"path":[4,52,2,1,3],"span":[300,17,18]},{"path":[4,52,2,1,8],"span":[300,19,38]},{"path":[4,52,2,1,8,3],"span":[300,20,37]},{"path":[4,52,3,0],"span":[302,2,307,3]},{"path":[4,52,3,0,1],"span":[302,10,22]},{"path":[4,52,3,0,2,0],"span":[303,4,20]},{"path":[4,52,3,0,2,0,5],"span":[303,4,10]},{"path":[4,52,3,0,2,0,1],"span":[303,11,15]},{"path":[4,52,3,0,2,0,3],"span":[303,18,19]},{"path":[4,52,3,0,2,1],"span":[304,4,44]},{"path":[4,52,3,0,2,1,5],"span":[304,4,10]},{"path":[4,52,3,0,2,1,1],"span":[304,11,19]},{"path":[4,52,3,0,2,1,3],"span":[304,22,23]},{"path":[4,52,3,0,2,1,8],"span":[304,24,43]},{"path":[4,52,3,0,2,1,8,3],"span":[304,25,42]},{"path":[4,52,3,0,2,2],"span":[305,4,25]},{"path":[4,52,3,0,2,2,5],"span":[305,4,10]},{"path":[4,52,3,0,2,2,1],"span":[305,11,20]},{"path":[4,52,3,0,2,2,3],"span":[305,23,24]},{"path":[4,52,3,0,2,3],"span":[306,4,23]},{"path":[4,52,3,0,2,3,5],"span":[306,4,10]},{"path":[4,52,3,0,2,3,1],"span":[306,11,18]},{"path":[4,52,3,0,2,3,3],"span":[306,21,22]},{"path":[4,52,2,2],"span":[308,2,35]},{"path":[4,52,2,2,4],"span":[308,2,10]},{"path":[4,52,2,2,6],"span":[308,11,23]},{"path":[4,52,2,2,1],"span":[308,24,30]},{"path":[4,52,2,2,3],"span":[308,33,34]},{"path":[4,52,2,3],"span":[310,2,25]},{"path":[4,52,2,3,5],"span":[310,2,8]},{"path":[4,52,2,3,1],"span":[310,9,20]},{"path":[4,52,2,3,3],"span":[310,23,24]},{"path":[4,52,2,4],"span":[311,2,26]},{"path":[4,52,2,4,5],"span":[311,2,8]},{"path":[4,52,2,4,1],"span":[311,9,21]},{"path":[4,52,2,4,3],"span":[311,24,25]},{"path":[4,52,2,5],"span":[312,2,45]},{"path":[4,52,2,5,5],"span":[312,2,8]},{"path":[4,52,2,5,1],"span":[312,9,20]},{"path":[4,52,2,5,3],"span":[312,23,24]},{"path":[4,52,2,5,8],"span":[312,25,44]},{"path":[4,52,2,5,8,3],"span":[312,26,43]},{"path":[4,52,2,6],"span":[313,2,24]},{"path":[4,52,2,6,5],"span":[313,2,8]},{"path":[4,52,2,6,1],"span":[313,9,19]},{"path":[4,52,2,6,3],"span":[313,22,23]},{"path":[4,52,2,7],"span":[314,2,28]},{"path":[4,52,2,7,5],"span":[314,2,8]},{"path":[4,52,2,7,1],"span":[314,9,23]},{"path":[4,52,2,7,3],"span":[314,26,27]},{"path":[4,53],"span":[316,0,318,1]},{"path":[4,53,1],"span":[316,8,35]},{"path":[4,53,2,0],"span":[317,2,21]},{"path":[4,53,2,0,5],"span":[317,2,6]},{"path":[4,53,2,0,1],"span":[317,7,16]},{"path":[4,53,2,0,3],"span":[317,19,20]},{"path":[4,54],"span":[319,0,321,1]},{"path":[4,54,1],"span":[319,8,12]},{"path":[4,54,2,0],"span":[320,2,16]},{"path":[4,54,2,0,5],"span":[320,2,8]},{"path":[4,54,2,0,1],"span":[320,9,11]},{"path":[4,54,2,0,3],"span":[320,14,15]},{"path":[4,55],"span":[322,0,325,1]},{"path":[4,55,1],"span":[322,8,30]},{"path":[4,55,2,0],"span":[323,2,28]},{"path":[4,55,2,0,5],"span":[323,2,8]},{"path":[4,55,2,0,1],"span":[323,9,23]},{"path":[4,55,2,0,3],"span":[323,26,27]},{"path":[4,55,2,1],"span":[324,2,22]},{"path":[4,55,2,1,5],"span":[324,2,8]},{"path":[4,55,2,1,1],"span":[324,9,17]},{"path":[4,55,2,1,3],"span":[324,20,21]},{"path":[4,56],"span":[326,0,328,1]},{"path":[4,56,1],"span":[326,8,31]},{"path":[4,56,2,0],"span":[327,2,25]},{"path":[4,56,2,0,4],"span":[327,2,10]},{"path":[4,56,2,0,6],"span":[327,11,15]},{"path":[4,56,2,0,1],"span":[327,16,20]},{"path":[4,56,2,0,3],"span":[327,23,24]},{"path":[4,57],"span":[329,0,331,1]},{"path":[4,57,1],"span":[329,8,36]},{"path":[4,57,2,0],"span":[330,2,21]},{"path":[4,57,2,0,5],"span":[330,2,8]},{"path":[4,57,2,0,1],"span":[330,9,16]},{"path":[4,57,2,0,3],"span":[330,19,20]},{"path":[4,58],"span":[332,0,334,1]},{"path":[4,58,1],"span":[332,8,37]},{"path":[4,58,2,0],"span":[333,2,34]},{"path":[4,58,2,0,4],"span":[333,2,10]},{"path":[4,58,2,0,5],"span":[333,11,17]},{"path":[4,58,2,0,1],"span":[333,18,29]},{"path":[4,58,2,0,3],"span":[333,32,33]},{"path":[4,59],"span":[335,0,338,1]},{"path":[4,59,1],"span":[335,8,40]},{"path":[4,59,2,0],"span":[336,2,28]},{"path":[4,59,2,0,5],"span":[336,2,8]},{"path":[4,59,2,0,1],"span":[336,9,23]},{"path":[4,59,2,0,3],"span":[336,26,27]},{"path":[4,59,2,1],"span":[337,2,24]},{"path":[4,59,2,1,5],"span":[337,2,8]},{"path":[4,59,2,1,1],"span":[337,9,19]},{"path":[4,59,2,1,3],"span":[337,22,23]},{"path":[4,60],"span":[339,0,341,1]},{"path":[4,60,1],"span":[339,8,41]},{"path":[4,60,2,0],"span":[340,2,22]},{"path":[4,60,2,0,5],"span":[340,2,6]},{"path":[4,60,2,0,1],"span":[340,7,17]},{"path":[4,60,2,0,3],"span":[340,20,21]},{"path":[5,3],"span":[342,0,349,1]},{"path":[5,3,1],"span":[342,5,21]},{"path":[5,3,2,0],"span":[343,2,43]},{"path":[5,3,2,0,1],"span":[343,2,38]},{"path":[5,3,2,0,2],"span":[343,41,42]},{"path":[5,3,2,1],"span":[344,2,36]},{"path":[5,3,2,1,1],"span":[344,2,31]},{"path":[5,3,2,1,2],"span":[344,34,35]},{"path":[5,3,2,2],"span":[345,2,39]},{"path":[5,3,2,2,1],"span":[345,2,34]},{"path":[5,3,2,2,2],"span":[345,37,38]},{"path":[5,3,2,3],"span":[346,2,38]},{"path":[5,3,2,3,1],"span":[346,2,33]},{"path":[5,3,2,3,2],"span":[346,36,37]},{"path":[5,3,2,4],"span":[347,2,34]},{"path":[5,3,2,4,1],"span":[347,2,29]},{"path":[5,3,2,4,2],"span":[347,32,33]},{"path":[5,3,2,5],"span":[348,2,41]},{"path":[5,3,2,5,1],"span":[348,2,36]},{"path":[5,3,2,5,2],"span":[348,39,40]},{"path":[4,61],"span":[350,0,358,1]},{"path":[4,61,1],"span":[350,8,20]},{"path":[4,61,2,0],"span":[351,2,16]},{"path":[4,61,2,0,5],"span":[351,2,8]},{"path":[4,61,2,0,1],"span":[351,9,11]},{"path":[4,61,2,0,3],"span":[351,14,15]},{"path":[4,61,2,1],"span":[352,2,21]},{"path":[4,61,2,1,5],"span":[352,2,8]},{"path":[4,61,2,1,1],"span":[352,9,16]},{"path":[4,61,2,1,3],"span":[352,19,20]},{"path":[4,61,2,2],"span":[353,2,28]},{"path":[4,61,2,2,6],"span":[353,2,18]},{"path":[4,61,2,2,1],"span":[353,19,23]},{"path":[4,61,2,2,3],"span":[353,26,27]},{"path":[4,61,2,3],"span":[354,2,25]},{"path":[4,61,2,3,5],"span":[354,2,7]},{"path":[4,61,2,3,1],"span":[354,8,20]},{"path":[4,61,2,3,3],"span":[354,23,24]},{"path":[4,61,2,4],"span":[355,2,29]},{"path":[4,61,2,4,5],"span":[355,2,8]},{"path":[4,61,2,4,1],"span":[355,9,24]},{"path":[4,61,2,4,3],"span":[355,27,28]},{"path":[4,61,2,5],"span":[356,2,24]},{"path":[4,61,2,5,5],"span":[356,2,8]},{"path":[4,61,2,5,1],"span":[356,9,19]},{"path":[4,61,2,5,3],"span":[356,22,23]},{"path":[4,61,2,6],"span":[357,2,24]},{"path":[4,61,2,6,5],"span":[357,2,8]},{"path":[4,61,2,6,1],"span":[357,9,19]},{"path":[4,61,2,6,3],"span":[357,22,23]},{"path":[4,62],"span":[359,0,365,1]},{"path":[4,62,1],"span":[359,8,37]},{"path":[4,62,2,0],"span":[360,2,21]},{"path":[4,62,2,0,5],"span":[360,2,8]},{"path":[4,62,2,0,1],"span":[360,9,16]},{"path":[4,62,2,0,3],"span":[360,19,20]},{"path":[4,62,2,1],"span":[361,2,28]},{"path":[4,62,2,1,6],"span":[361,2,18]},{"path":[4,62,2,1,1],"span":[361,19,23]},{"path":[4,62,2,1,3],"span":[361,26,27]},{"path":[4,62,2,2],"span":[362,2,25]},{"path":[4,62,2,2,5],"span":[362,2,7]},{"path":[4,62,2,2,1],"span":[362,8,20]},{"path":[4,62,2,2,3],"span":[362,23,24]},{"path":[4,62,2,3],"span":[363,2,29]},{"path":[4,62,2,3,5],"span":[363,2,8]},{"path":[4,62,2,3,1],"span":[363,9,24]},{"path":[4,62,2,3,3],"span":[363,27,28]},{"path":[4,62,2,4],"span":[364,2,24]},{"path":[4,62,2,4,5],"span":[364,2,8]},{"path":[4,62,2,4,1],"span":[364,9,19]},{"path":[4,62,2,4,3],"span":[364,22,23]},{"path":[4,63],"span":[366,0,368,1]},{"path":[4,63,1],"span":[366,8,38]},{"path":[4,63,2,0],"span":[367,2,32]},{"path":[4,63,2,0,6],"span":[367,2,14]},{"path":[4,63,2,0,1],"span":[367,15,27]},{"path":[4,63,2,0,3],"span":[367,30,31]},{"path":[4,64],"span":[369,0,371,1]},{"path":[4,64,1],"span":[369,8,42]},{"path":[4,64,2,0],"span":[370,2,21]},{"path":[4,64,2,0,5],"span":[370,2,8]},{"path":[4,64,2,0,1],"span":[370,9,16]},{"path":[4,64,2,0,3],"span":[370,19,20]},{"path":[4,65],"span":[372,0,374,1]},{"path":[4,65,1],"span":[372,8,43]},{"path":[4,65,2,0],"span":[373,2,35]},{"path":[4,65,2,0,5],"span":[373,2,8]},{"path":[4,65,2,0,1],"span":[373,9,30]},{"path":[4,65,2,0,3],"span":[373,33,34]},{"path":[4,66],"span":[375,0,377,1]},{"path":[4,66,1],"span":[375,8,47]},{"path":[4,66,2,0],"span":[376,2,23]},{"path":[4,66,2,0,5],"span":[376,2,8]},{"path":[4,66,2,0,1],"span":[376,9,18]},{"path":[4,66,2,0,3],"span":[376,21,22]},{"path":[4,67],"span":[378,0,380,1]},{"path":[4,67,1],"span":[378,8,48]},{"path":[4,67,2,0],"span":[379,2,21]},{"path":[4,67,2,0,5],"span":[379,2,8]},{"path":[4,67,2,0,1],"span":[379,9,16]},{"path":[4,67,2,0,3],"span":[379,19,20]},{"path":[4,68],"span":[381,0,385,1]},{"path":[4,68,1],"span":[381,8,31]},{"path":[4,68,7],"span":[382,2,27]},{"path":[4,68,7,3],"span":[382,2,27]},{"path":[4,68,2,0],"span":[383,2,21]},{"path":[4,68,2,0,5],"span":[383,2,8]},{"path":[4,68,2,0,1],"span":[383,9,16]},{"path":[4,68,2,0,3],"span":[383,19,20]},{"path":[4,68,2,1],"span":[384,2,29]},{"path":[4,68,2,1,4],"span":[384,2,10]},{"path":[4,68,2,1,5],"span":[384,11,17]},{"path":[4,68,2,1,1],"span":[384,18,24]},{"path":[4,68,2,1,3],"span":[384,27,28]},{"path":[4,69],"span":[386,0,389,1]},{"path":[4,69,1],"span":[386,8,32]},{"path":[4,69,7],"span":[387,2,27]},{"path":[4,69,7,3],"span":[387,2,27]},{"path":[4,69,2,0],"span":[388,2,15]},{"path":[4,69,2,0,5],"span":[388,2,6]},{"path":[4,69,2,0,1],"span":[388,7,10]},{"path":[4,69,2,0,3],"span":[388,13,14]},{"path":[4,70],"span":[390,0,393,1]},{"path":[4,70,1],"span":[390,8,31]},{"path":[4,70,2,0],"span":[391,2,21]},{"path":[4,70,2,0,5],"span":[391,2,8]},{"path":[4,70,2,0,1],"span":[391,9,16]},{"path":[4,70,2,0,3],"span":[391,19,20]},{"path":[4,70,2,1],"span":[392,2,29]},{"path":[4,70,2,1,4],"span":[392,2,10]},{"path":[4,70,2,1,5],"span":[392,11,17]},{"path":[4,70,2,1,1],"span":[392,18,24]},{"path":[4,70,2,1,3],"span":[392,27,28]},{"path":[4,71],"span":[394,0,398,1]},{"path":[4,71,1],"span":[394,8,32]},{"path":[4,71,2,0],"span":[395,2,15]},{"path":[4,71,2,0,5],"span":[395,2,6]},{"path":[4,71,2,0,1],"span":[395,7,10]},{"path":[4,71,2,0,3],"span":[395,13,14]},{"path":[4,71,2,1],"span":[396,2,32]},{"path":[4,71,2,1,4],"span":[396,2,10]},{"path":[4,71,2,1,6],"span":[396,11,18]},{"path":[4,71,2,1,1],"span":[396,19,27]},{"path":[4,71,2,1,3],"span":[396,30,31]},{"path":[4,71,2,2],"span":[397,2,31]},{"path":[4,71,2,2,6],"span":[397,2,16]},{"path":[4,71,2,2,1],"span":[397,17,26]},{"path":[4,71,2,2,3],"span":[397,29,30]},{"path":[4,72],"span":[399,0,401,1]},{"path":[4,72,1],"span":[399,8,39]},{"path":[4,72,2,0],"span":[400,2,21]},{"path":[4,72,2,0,5],"span":[400,2,8]},{"path":[4,72,2,0,1],"span":[400,9,16]},{"path":[4,72,2,0,3],"span":[400,19,20]},{"path":[4,73],"span":[402,0,404,1]},{"path":[4,73,1],"span":[402,8,40]},{"path":[4,73,2,0],"span":[403,2,16]},{"path":[4,73,2,0,5],"span":[403,2,6]},{"path":[4,73,2,0,1],"span":[403,7,11]},{"path":[4,73,2,0,3],"span":[403,14,15]},{"path":[4,74],"span":[405,0,407,1]},{"path":[4,74,1],"span":[405,8,34]},{"path":[4,74,2,0],"span":[406,2,21]},{"path":[4,74,2,0,5],"span":[406,2,8]},{"path":[4,74,2,0,1],"span":[406,9,16]},{"path":[4,74,2,0,3],"span":[406,19,20]},{"path":[4,75],"span":[408,0,410,1]},{"path":[4,75,1],"span":[408,8,35]},{"path":[4,75,2,0],"span":[409,2,28]},{"path":[4,75,2,0,6],"span":[409,2,18]},{"path":[4,75,2,0,1],"span":[409,19,23]},{"path":[4,75,2,0,3],"span":[409,26,27]},{"path":[4,76],"span":[411,0,414,1]},{"path":[4,76,1],"span":[411,8,32]},{"path":[4,76,2,0],"span":[412,2,21]},{"path":[4,76,2,0,5],"span":[412,2,8]},{"path":[4,76,2,0,1],"span":[412,9,16]},{"path":[4,76,2,0,3],"span":[412,19,20]},{"path":[4,76,2,1],"span":[413,2,24]},{"path":[4,76,2,1,5],"span":[413,2,8]},{"path":[4,76,2,1,1],"span":[413,9,19]},{"path":[4,76,2,1,3],"span":[413,22,23]},{"path":[4,77],"span":[415,0,417,1]},{"path":[4,77,1],"span":[415,8,33]},{"path":[4,77,2,0],"span":[416,2,18]},{"path":[4,77,2,0,5],"span":[416,2,8]},{"path":[4,77,2,0,1],"span":[416,9,13]},{"path":[4,77,2,0,3],"span":[416,16,17]},{"path":[4,78],"span":[418,0,420,1]},{"path":[4,78,1],"span":[418,8,37]},{"path":[4,78,2,0],"span":[419,4,33]},{"path":[4,78,2,0,4],"span":[419,4,12]},{"path":[4,78,2,0,5],"span":[419,13,19]},{"path":[4,78,2,0,1],"span":[419,20,28]},{"path":[4,78,2,0,3],"span":[419,31,32]},{"path":[4,79],"span":[421,0,423,1]},{"path":[4,79,1],"span":[421,8,47]},{"path":[4,79,2,0],"span":[422,2,21]},{"path":[4,79,2,0,5],"span":[422,2,8]},{"path":[4,79,2,0,1],"span":[422,9,16]},{"path":[4,79,2,0,3],"span":[422,19,20]},{"path":[4,80],"span":[424,0,426,1]},{"path":[4,80,1],"span":[424,8,48]},{"path":[4,80,2,0],"span":[425,2,22]},{"path":[4,80,2,0,5],"span":[425,2,6]},{"path":[4,80,2,0,1],"span":[425,7,17]},{"path":[4,80,2,0,3],"span":[425,20,21]},{"path":[4,81],"span":[427,0,431,1]},{"path":[4,81,1],"span":[427,8,33]},{"path":[4,81,2,0],"span":[428,2,21]},{"path":[4,81,2,0,5],"span":[428,2,8]},{"path":[4,81,2,0,1],"span":[428,9,16]},{"path":[4,81,2,0,3],"span":[428,19,20]},{"path":[4,81,2,1],"span":[429,2,17]},{"path":[4,81,2,1,5],"span":[429,2,8]},{"path":[4,81,2,1,1],"span":[429,9,12]},{"path":[4,81,2,1,3],"span":[429,15,16]},{"path":[4,81,2,2],"span":[430,2,19]},{"path":[4,81,2,2,5],"span":[430,2,8]},{"path":[4,81,2,2,1],"span":[430,9,14]},{"path":[4,81,2,2,3],"span":[430,17,18]},{"path":[4,82],"span":[432,0,434,1]},{"path":[4,82,1],"span":[432,8,34]},{"path":[4,82,2,0],"span":[433,2,19]},{"path":[4,82,2,0,5],"span":[433,2,6]},{"path":[4,82,2,0,1],"span":[433,7,14]},{"path":[4,82,2,0,3],"span":[433,17,18]},{"path":[4,83],"span":[436,0,438,1]},{"path":[4,83,1],"span":[436,8,28]},{"path":[4,83,2,0],"span":[437,2,31]},{"path":[4,83,2,0,4],"span":[437,2,10]},{"path":[4,83,2,0,5],"span":[437,11,17]},{"path":[4,83,2,0,1],"span":[437,18,26]},{"path":[4,83,2,0,3],"span":[437,29,30]},{"path":[4,84],"span":[440,0,442,1]},{"path":[4,84,1],"span":[440,8,29]},{"path":[4,84,2,0],"span":[441,2,70]},{"path":[4,84,2,0,6],"span":[441,2,53]},{"path":[4,84,2,0,1],"span":[441,54,65]},{"path":[4,84,2,0,3],"span":[441,68,69]},{"path":[4,85],"span":[444,0,447,1]},{"path":[4,85,1],"span":[444,8,22]},{"path":[4,85,2,0],"span":[445,2,19]},{"path":[4,85,2,0,5],"span":[445,2,7]},{"path":[4,85,2,0,1],"span":[445,8,14]},{"path":[4,85,2,0,3],"span":[445,17,18]},{"path":[4,85,2,1],"span":[446,2,18]},{"path":[4,85,2,1,5],"span":[446,2,7]},{"path":[4,85,2,1,1],"span":[446,8,13]},{"path":[4,85,2,1,3],"span":[446,16,17]},{"path":[4,86],"span":[449,0,454,1]},{"path":[4,86,1],"span":[449,8,26]},{"path":[4,86,2,0],"span":[450,2,18]},{"path":[4,86,2,0,5],"span":[450,2,7]},{"path":[4,86,2,0,1],"span":[450,8,13]},{"path":[4,86,2,0,3],"span":[450,16,17]},{"path":[4,86,2,1],"span":[451,2,19]},{"path":[4,86,2,1,5],"span":[451,2,7]},{"path":[4,86,2,1,1],"span":[451,8,14]},{"path":[4,86,2,1,3],"span":[451,17,18]},{"path":[4,86,2,2],"span":[452,2,18]},{"path":[4,86,2,2,5],"span":[452,2,7]},{"path":[4,86,2,2,1],"span":[452,8,13]},{"path":[4,86,2,2,3],"span":[452,16,17]},{"path":[4,86,2,3],"span":[453,2,25]},{"path":[4,86,2,3,5],"span":[453,2,6]},{"path":[4,86,2,3,1],"span":[453,7,20]},{"path":[4,86,2,3,3],"span":[453,23,24]},{"path":[4,87],"span":[456,0,464,1]},{"path":[4,87,1],"span":[456,8,38]},{"path":[4,87,2,0],"span":[457,2,21]},{"path":[4,87,2,0,5],"span":[457,2,8]},{"path":[4,87,2,0,1],"span":[457,9,16]},{"path":[4,87,2,0,3],"span":[457,19,20]},{"path":[4,87,3,0],"span":[458,2,461,3]},{"path":[4,87,3,0,1],"span":[458,10,31]},{"path":[4,87,3,0,2,0],"span":[459,4,21]},{"path":[4,87,3,0,2,0,5],"span":[459,4,9]},{"path":[4,87,3,0,2,0,1],"span":[459,10,16]},{"path":[4,87,3,0,2,0,3],"span":[459,19,20]},{"path":[4,87,3,0,2,1],"span":[460,4,20]},{"path":[4,87,3,0,2,1,5],"span":[460,4,9]},{"path":[4,87,3,0,2,1,1],"span":[460,10,15]},{"path":[4,87,3,0,2,1,3],"span":[460,18,19]},{"path":[4,87,2,1],"span":[462,2,44]},{"path":[4,87,2,1,6],"span":[462,2,23]},{"path":[4,87,2,1,1],"span":[462,24,39]},{"path":[4,87,2,1,3],"span":[462,42,43]},{"path":[4,87,2,2],"span":[463,2,22]},{"path":[4,87,2,2,5],"span":[463,2,8]},{"path":[4,87,2,2,1],"span":[463,9,17]},{"path":[4,87,2,2,3],"span":[463,20,21]},{"path":[4,88],"span":[466,0,479,1]},{"path":[4,88,1],"span":[466,8,39]},{"path":[4,88,3,0],"span":[467,2,470,3]},{"path":[4,88,3,0,1],"span":[467,10,26]},{"path":[4,88,3,0,2,0],"span":[468,4,18]},{"path":[4,88,3,0,2,0,5],"span":[468,4,10]},{"path":[4,88,3,0,2,0,1],"span":[468,11,13]},{"path":[4,88,3,0,2,0,3],"span":[468,16,17]},{"path":[4,88,3,0,2,1],"span":[469,4,20]},{"path":[4,88,3,0,2,1,5],"span":[469,4,10]},{"path":[4,88,3,0,2,1,1],"span":[469,11,15]},{"path":[4,88,3,0,2,1,3],"span":[469,18,19]},{"path":[4,88,2,0],"span":[471,2,46]},{"path":[4,88,2,0,4],"span":[471,2,10]},{"path":[4,88,2,0,6],"span":[471,11,27]},{"path":[4,88,2,0,1],"span":[471,28,41]},{"path":[4,88,2,0,3],"span":[471,44,45]},{"path":[4,88,3,1],"span":[472,2,477,3]},{"path":[4,88,3,1,1],"span":[472,10,22]},{"path":[4,88,3,1,2,0],"span":[473,4,20]},{"path":[4,88,3,1,2,0,5],"span":[473,4,9]},{"path":[4,88,3,1,2,0,1],"span":[473,10,15]},{"path":[4,88,3,1,2,0,3],"span":[473,18,19]},{"path":[4,88,3,1,2,1],"span":[474,4,21]},{"path":[4,88,3,1,2,1,5],"span":[474,4,9]},{"path":[4,88,3,1,2,1,1],"span":[474,10,16]},{"path":[4,88,3,1,2,1,3],"span":[474,19,20]},{"path":[4,88,3,1,2,2],"span":[475,4,20]},{"path":[4,88,3,1,2,2,5],"span":[475,4,9]},{"path":[4,88,3,1,2,2,1],"span":[475,10,15]},{"path":[4,88,3,1,2,2,3],"span":[475,18,19]},{"path":[4,88,3,1,2,3],"span":[476,4,27]},{"path":[4,88,3,1,2,3,5],"span":[476,4,8]},{"path":[4,88,3,1,2,3,1],"span":[476,9,22]},{"path":[4,88,3,1,2,3,3],"span":[476,25,26]},{"path":[4,88,2,1],"span":[478,2,34]},{"path":[4,88,2,1,6],"span":[478,2,14]},{"path":[4,88,2,1,1],"span":[478,15,29]},{"path":[4,88,2,1,3],"span":[478,32,33]},{"path":[4,89],"span":[481,0,485,1]},{"path":[4,89,1],"span":[481,8,41]},{"path":[4,89,2,0],"span":[482,2,21]},{"path":[4,89,2,0,5],"span":[482,2,8]},{"path":[4,89,2,0,1],"span":[482,9,16]},{"path":[4,89,2,0,3],"span":[482,19,20]},{"path":[4,89,2,1],"span":[483,2,34]},{"path":[4,89,2,1,5],"span":[483,2,8]},{"path":[4,89,2,1,1],"span":[483,9,29]},{"path":[4,89,2,1,3],"span":[483,32,33]},{"path":[4,89,2,2],"span":[484,2,22]},{"path":[4,89,2,2,5],"span":[484,2,8]},{"path":[4,89,2,2,1],"span":[484,9,17]},{"path":[4,89,2,2,3],"span":[484,20,21]},{"path":[4,90],"span":[487,0,492,1]},{"path":[4,90,1],"span":[487,8,42]},{"path":[4,90,2,0],"span":[488,2,16]},{"path":[4,90,2,0,5],"span":[488,2,8]},{"path":[4,90,2,0,1],"span":[488,9,11]},{"path":[4,90,2,0,3],"span":[488,14,15]},{"path":[4,90,2,1],"span":[489,2,18]},{"path":[4,90,2,1,5],"span":[489,2,8]},{"path":[4,90,2,1,1],"span":[489,9,13]},{"path":[4,90,2,1,3],"span":[489,16,17]},{"path":[4,90,2,2],"span":[490,2,22]},{"path":[4,90,2,2,5],"span":[490,2,6]},{"path":[4,90,2,2,1],"span":[490,7,17]},{"path":[4,90,2,2,3],"span":[490,20,21]},{"path":[4,90,2,3],"span":[491,2,53]},{"path":[4,90,2,3,5],"span":[491,2,6]},{"path":[4,90,2,3,1],"span":[491,7,48]},{"path":[4,90,2,3,3],"span":[491,51,52]},{"path":[4,91],"span":[494,0,499,1]},{"path":[4,91,1],"span":[494,8,43]},{"path":[4,91,2,0],"span":[495,2,21]},{"path":[4,91,2,0,5],"span":[495,2,8]},{"path":[4,91,2,0,1],"span":[495,9,16]},{"path":[4,91,2,0,3],"span":[495,19,20]},{"path":[4,91,2,1],"span":[496,2,34]},{"path":[4,91,2,1,5],"span":[496,2,8]},{"path":[4,91,2,1,1],"span":[496,9,29]},{"path":[4,91,2,1,3],"span":[496,32,33]},{"path":[4,91,2,2],"span":[497,2,37]},{"path":[4,91,2,2,6],"span":[497,2,16]},{"path":[4,91,2,2,1],"span":[497,17,32]},{"path":[4,91,2,2,3],"span":[497,35,36]},{"path":[4,91,2,3],"span":[498,2,22]},{"path":[4,91,2,3,5],"span":[498,2,8]},{"path":[4,91,2,3,1],"span":[498,9,17]},{"path":[4,91,2,3,3],"span":[498,20,21]},{"path":[4,92],"span":[501,0,504,1]},{"path":[4,92,1],"span":[501,8,44]},{"path":[4,92,2,0],"span":[502,2,33]},{"path":[4,92,2,0,4],"span":[502,2,10]},{"path":[4,92,2,0,6],"span":[502,11,22]},{"path":[4,92,2,0,1],"span":[502,23,28]},{"path":[4,92,2,0,3],"span":[502,31,32]},{"path":[4,92,2,1],"span":[503,2,46]},{"path":[4,92,2,1,6],"span":[503,2,20]},{"path":[4,92,2,1,1],"span":[503,21,41]},{"path":[4,92,2,1,3],"span":[503,44,45]},{"path":[6,0],"span":[506,0,554,1]},{"path":[6,0,1],"span":[506,8,19]},{"path":[6,0,2,0],"span":[507,2,121]},{"path":[6,0,2,0,1],"span":[507,6,34]},{"path":[6,0,2,0,2],"span":[507,35,70]},{"path":[6,0,2,0,3],"span":[507,81,117]},{"path":[6,0,2,1],"span":[508,2,118]},{"path":[6,0,2,1,1],"span":[508,6,33]},{"path":[6,0,2,1,2],"span":[508,34,68]},{"path":[6,0,2,1,3],"span":[508,79,114]},{"path":[6,0,2,2],"span":[509,2,100]},{"path":[6,0,2,2,1],"span":[509,6,27]},{"path":[6,0,2,2,2],"span":[509,28,56]},{"path":[6,0,2,2,3],"span":[509,67,96]},{"path":[6,0,2,3],"span":[510,2,127]},{"path":[6,0,2,3,1],"span":[510,6,36]},{"path":[6,0,2,3,2],"span":[510,37,74]},{"path":[6,0,2,3,3],"span":[510,85,123]},{"path":[6,0,2,4],"span":[511,2,127]},{"path":[6,0,2,4,1],"span":[511,6,36]},{"path":[6,0,2,4,2],"span":[511,37,74]},{"path":[6,0,2,4,3],"span":[511,85,123]},{"path":[6,0,2,5],"span":[512,2,106]},{"path":[6,0,2,5,1],"span":[512,6,29]},{"path":[6,0,2,5,2],"span":[512,30,60]},{"path":[6,0,2,5,3],"span":[512,71,102]},{"path":[6,0,2,6],"span":[514,2,115]},{"path":[6,0,2,6,1],"span":[514,6,32]},{"path":[6,0,2,6,2],"span":[514,33,66]},{"path":[6,0,2,6,3],"span":[514,77,111]},{"path":[6,0,2,7],"span":[515,2,76]},{"path":[6,0,2,7,1],"span":[515,6,19]},{"path":[6,0,2,7,2],"span":[515,20,40]},{"path":[6,0,2,7,3],"span":[515,51,72]},{"path":[6,0,2,8],"span":[516,2,76]},{"path":[6,0,2,8,1],"span":[516,6,19]},{"path":[6,0,2,8,2],"span":[516,20,40]},{"path":[6,0,2,8,3],"span":[516,51,72]},{"path":[6,0,2,9],"span":[517,2,97]},{"path":[6,0,2,9,1],"span":[517,6,26]},{"path":[6,0,2,9,2],"span":[517,27,54]},{"path":[6,0,2,9,3],"span":[517,65,93]},{"path":[6,0,2,10],"span":[518,2,88]},{"path":[6,0,2,10,1],"span":[518,6,23]},{"path":[6,0,2,10,2],"span":[518,24,48]},{"path":[6,0,2,10,3],"span":[518,59,84]},{"path":[6,0,2,11],"span":[519,2,118]},{"path":[6,0,2,11,1],"span":[519,6,33]},{"path":[6,0,2,11,2],"span":[519,34,68]},{"path":[6,0,2,11,3],"span":[519,79,114]},{"path":[6,0,2,12],"span":[520,2,82]},{"path":[6,0,2,12,1],"span":[520,6,21]},{"path":[6,0,2,12,2],"span":[520,22,44]},{"path":[6,0,2,12,3],"span":[520,55,78]},{"path":[6,0,2,13],"span":[521,2,97]},{"path":[6,0,2,13,1],"span":[521,6,28]},{"path":[6,0,2,13,2],"span":[521,29,58]},{"path":[6,0,2,13,3],"span":[521,69,93]},{"path":[6,0,2,14],"span":[522,2,97]},{"path":[6,0,2,14,1],"span":[522,6,26]},{"path":[6,0,2,14,2],"span":[522,27,54]},{"path":[6,0,2,14,3],"span":[522,65,93]},{"path":[6,0,2,15],"span":[523,2,106]},{"path":[6,0,2,15,1],"span":[523,6,29]},{"path":[6,0,2,15,2],"span":[523,30,60]},{"path":[6,0,2,15,3],"span":[523,71,102]},{"path":[6,0,2,16],"span":[524,2,106]},{"path":[6,0,2,16,1],"span":[524,6,29]},{"path":[6,0,2,16,2],"span":[524,30,60]},{"path":[6,0,2,16,3],"span":[524,71,102]},{"path":[6,0,2,17],"span":[525,2,115]},{"path":[6,0,2,17,1],"span":[525,6,32]},{"path":[6,0,2,17,2],"span":[525,33,66]},{"path":[6,0,2,17,3],"span":[525,77,111]},{"path":[6,0,2,18],"span":[526,2,106]},{"path":[6,0,2,18,1],"span":[526,6,29]},{"path":[6,0,2,18,2],"span":[526,30,60]},{"path":[6,0,2,18,3],"span":[526,71,102]},{"path":[6,0,2,19],"span":[527,2,112]},{"path":[6,0,2,19,1],"span":[527,6,31]},{"path":[6,0,2,19,2],"span":[527,32,64]},{"path":[6,0,2,19,3],"span":[527,75,108]},{"path":[6,0,2,20],"span":[528,2,130]},{"path":[6,0,2,20,1],"span":[528,6,37]},{"path":[6,0,2,20,2],"span":[528,38,76]},{"path":[6,0,2,20,3],"span":[528,87,126]},{"path":[6,0,2,21],"span":[529,2,91]},{"path":[6,0,2,21,1],"span":[529,6,24]},{"path":[6,0,2,21,2],"span":[529,25,50]},{"path":[6,0,2,21,3],"span":[529,61,87]},{"path":[6,0,2,22],"span":[530,2,151]},{"path":[6,0,2,22,1],"span":[530,6,44]},{"path":[6,0,2,22,2],"span":[530,45,90]},{"path":[6,0,2,22,3],"span":[530,101,147]},{"path":[6,0,2,23],"span":[531,2,99]},{"path":[6,0,2,23,1],"span":[531,6,30]},{"path":[6,0,2,23,2],"span":[531,31,57]},{"path":[6,0,2,23,3],"span":[531,68,95]},{"path":[6,0,2,24],"span":[532,2,100]},{"path":[6,0,2,24,1],"span":[532,6,39]},{"path":[6,0,2,24,2],"span":[532,40,62]},{"path":[6,0,2,24,3],"span":[532,73,96]},{"path":[6,0,2,25],"span":[533,2,100]},{"path":[6,0,2,25,1],"span":[533,6,27]},{"path":[6,0,2,25,2],"span":[533,28,56]},{"path":[6,0,2,25,3],"span":[533,67,96]},{"path":[6,0,2,26],"span":[534,2,112]},{"path":[6,0,2,26,1],"span":[534,6,31]},{"path":[6,0,2,26,2],"span":[534,32,64]},{"path":[6,0,2,26,3],"span":[534,75,108]},{"path":[6,0,2,27],"span":[535,2,103]},{"path":[6,0,2,27,1],"span":[535,6,28]},{"path":[6,0,2,27,2],"span":[535,29,58]},{"path":[6,0,2,27,3],"span":[535,69,99]},{"path":[6,0,2,28],"span":[536,2,118]},{"path":[6,0,2,28,1],"span":[536,6,33]},{"path":[6,0,2,28,2],"span":[536,34,68]},{"path":[6,0,2,28,3],"span":[536,79,114]},{"path":[6,0,2,29],"span":[537,2,133]},{"path":[6,0,2,29,1],"span":[537,6,38]},{"path":[6,0,2,29,2],"span":[537,39,78]},{"path":[6,0,2,29,3],"span":[537,89,129]},{"path":[6,0,2,30],"span":[538,2,85]},{"path":[6,0,2,30,1],"span":[538,6,22]},{"path":[6,0,2,30,2],"span":[538,23,46]},{"path":[6,0,2,30,3],"span":[538,57,81]},{"path":[6,0,2,31],"span":[540,2,109]},{"path":[6,0,2,31,1],"span":[540,6,30]},{"path":[6,0,2,31,2],"span":[540,31,62]},{"path":[6,0,2,31,3],"span":[540,73,105]},{"path":[6,0,2,32],"span":[541,2,543,3]},{"path":[6,0,2,32,1],"span":[541,6,22]},{"path":[6,0,2,32,2],"span":[541,23,46]},{"path":[6,0,2,32,3],"span":[541,57,81]},{"path":[6,0,2,32,4],"span":[542,4,29]},{"path":[6,0,2,32,4,33],"span":[542,4,29]},{"path":[6,0,2,33],"span":[544,2,94]},{"path":[6,0,2,33,1],"span":[544,6,25]},{"path":[6,0,2,33,2],"span":[544,26,52]},{"path":[6,0,2,33,3],"span":[544,63,90]},{"path":[6,0,2,34],"span":[545,2,88]},{"path":[6,0,2,34,1],"span":[545,6,23]},{"path":[6,0,2,34,2],"span":[545,24,48]},{"path":[6,0,2,34,3],"span":[545,59,84]},{"path":[6,0,2,35],"span":[546,2,113]},{"path":[6,0,2,35,1],"span":[546,6,39]},{"path":[6,0,2,35,2],"span":[546,40,69]},{"path":[6,0,2,35,3],"span":[546,80,109]},{"path":[6,0,2,36],"span":[547,2,133]},{"path":[6,0,2,36,1],"span":[547,6,38]},{"path":[6,0,2,36,2],"span":[547,39,78]},{"path":[6,0,2,36,3],"span":[547,89,129]},{"path":[6,0,2,37],"span":[549,2,91]},{"path":[6,0,2,37,1],"span":[549,6,24]},{"path":[6,0,2,37,2],"span":[549,25,50]},{"path":[6,0,2,37,3],"span":[549,61,87]},{"path":[6,0,2,38],"span":[550,2,76]},{"path":[6,0,2,38,1],"span":[550,6,19]},{"path":[6,0,2,38,2],"span":[550,20,40]},{"path":[6,0,2,38,3],"span":[550,51,72]},{"path":[6,0,2,39],"span":[551,2,106]},{"path":[6,0,2,39,1],"span":[551,6,29]},{"path":[6,0,2,39,2],"span":[551,30,60]},{"path":[6,0,2,39,3],"span":[551,71,102]},{"path":[6,0,2,40],"span":[552,2,115]},{"path":[6,0,2,40,1],"span":[552,6,32]},{"path":[6,0,2,40,2],"span":[552,33,66]},{"path":[6,0,2,40,3],"span":[552,77,111]},{"path":[6,0,2,41],"span":[553,2,121]},{"path":[6,0,2,41,1],"span":[553,6,34]},{"path":[6,0,2,41,2],"span":[553,35,70]},{"path":[6,0,2,41,3],"span":[553,81,117]}]},"syntax":"proto3","bufExtension":{"isImport":false,"isSyntaxUnspecified":false}}]}
|
|
1
|
+
{"file":[{"name":"google/protobuf/timestamp.proto","package":"google.protobuf","messageType":[{"name":"Timestamp","field":[{"name":"seconds","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"seconds"},{"name":"nanos","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"nanos"}]}],"options":{"javaPackage":"com.google.protobuf","javaOuterClassname":"TimestampProto","javaMultipleFiles":true,"goPackage":"google.golang.org/protobuf/types/known/timestamppb","ccEnableArenas":true,"objcClassPrefix":"GPB","csharpNamespace":"Google.Protobuf.WellKnownTypes"},"sourceCodeInfo":{"location":[{"span":[30,0,146,1]},{"path":[12],"span":[30,0,18],"leadingDetachedComments":[" 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"]},{"path":[2],"span":[32,0,24]},{"path":[8],"span":[34,0,59]},{"path":[8,37],"span":[34,0,59]},{"path":[8],"span":[35,0,31]},{"path":[8,31],"span":[35,0,31]},{"path":[8],"span":[36,0,73]},{"path":[8,11],"span":[36,0,73]},{"path":[8],"span":[37,0,44]},{"path":[8,1],"span":[37,0,44]},{"path":[8],"span":[38,0,47]},{"path":[8,8],"span":[38,0,47]},{"path":[8],"span":[39,0,34]},{"path":[8,10],"span":[39,0,34]},{"path":[8],"span":[40,0,33]},{"path":[8,36],"span":[40,0,33]},{"path":[4,0],"span":[135,0,146,1],"leadingComments":" 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 Java `Instant.now()`.\n\n Instant now = Instant.now();\n\n Timestamp timestamp =\n Timestamp.newBuilder().setSeconds(now.getEpochSecond())\n .setNanos(now.getNano()).build();\n\n\n Example 6: 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"},{"path":[4,0,1],"span":[135,8,17]},{"path":[4,0,2,0],"span":[139,2,20],"leadingComments":" 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"},{"path":[4,0,2,0,5],"span":[139,2,7]},{"path":[4,0,2,0,1],"span":[139,8,15]},{"path":[4,0,2,0,3],"span":[139,18,19]},{"path":[4,0,2,1],"span":[145,2,18],"leadingComments":" 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"},{"path":[4,0,2,1,5],"span":[145,2,7]},{"path":[4,0,2,1,1],"span":[145,8,13]},{"path":[4,0,2,1,3],"span":[145,16,17]}]},"syntax":"proto3","bufExtension":{"isImport":true,"isSyntaxUnspecified":false}},{"name":"limits/limits.proto","package":"lansweeper.shared.limits.v1","dependency":["google/protobuf/timestamp.proto"],"messageType":[{"name":"CalculateRiskInsights","field":[{"name":"from_year","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","oneofIndex":0,"jsonName":"fromYear","proto3Optional":true},{"name":"from_severity","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.shared.limits.v1.RiskInsightsSeverity","oneofIndex":1,"jsonName":"fromSeverity","proto3Optional":true},{"name":"max","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","oneofIndex":2,"jsonName":"max","proto3Optional":true}],"oneofDecl":[{"name":"_from_year"},{"name":"_from_severity"},{"name":"_max"}]},{"name":"ExpirableAllowedEntities","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"expires_at","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".google.protobuf.Timestamp","oneofIndex":0,"jsonName":"expiresAt","proto3Optional":true}],"oneofDecl":[{"name":"_expires_at"}]},{"name":"BaseLimit","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"value"},{"name":"allowed_entities","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.shared.limits.v1.ExpirableAllowedEntities","jsonName":"allowedEntities"}],"reservedRange":[{"start":2,"end":3}]},{"name":"RiskInsights","field":[{"name":"view_assets","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.shared.limits.v1.BaseLimit","jsonName":"viewAssets"}]},{"name":"Assets","field":[{"name":"view_risk_insights","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.shared.limits.v1.BaseLimit","jsonName":"viewRiskInsights"},{"name":"view_lifecycle","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.shared.limits.v1.BaseLimit","jsonName":"viewLifecycle"}]},{"name":"Scopes","field":[{"name":"create_max","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"createMax"}]},{"name":"Attachments","field":[{"name":"max_bytes_per_asset","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"maxBytesPerAsset"}]},{"name":"SiteLimits","field":[{"name":"tier","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.shared.limits.v1.SiteLimitsTiers","jsonName":"tier"},{"name":"risk_insights","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.shared.limits.v1.RiskInsights","oneofIndex":0,"jsonName":"riskInsights","proto3Optional":true},{"name":"assets","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.shared.limits.v1.Assets","oneofIndex":1,"jsonName":"assets","proto3Optional":true},{"name":"scopes","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.shared.limits.v1.Scopes","jsonName":"scopes"},{"name":"attachments","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.shared.limits.v1.Attachments","jsonName":"attachments"}],"oneofDecl":[{"name":"_risk_insights"},{"name":"_assets"}],"reservedRange":[{"start":2,"end":3}]}],"enumType":[{"name":"SiteLimitsTiers","value":[{"name":"SUBSCRIPTION_TYPE_VALUE_STARTER","number":0},{"name":"SUBSCRIPTION_TYPE_VALUE_PRO","number":1},{"name":"SUBSCRIPTION_TYPE_VALUE_ENTERPRISE","number":2}]},{"name":"RiskInsightsSeverity","value":[{"name":"RISK_INSIGHT_SEVERITY_LOW","number":0},{"name":"RISK_INSIGHT_SEVERITY_MEDIUM","number":1},{"name":"RISK_INSIGHT_SEVERITY_HIGH","number":2},{"name":"RISK_INSIGHT_SEVERITY_CRITICAL","number":3}]}],"options":{"goPackage":"github.com/Lansweeper/lansweeperapis/packages/shared/generated-go;limits"},"sourceCodeInfo":{"location":[{"span":[0,0,61,1]},{"path":[12],"span":[0,0,18]},{"path":[2],"span":[2,0,36]},{"path":[8],"span":[3,0,95]},{"path":[8,11],"span":[3,0,95]},{"path":[3,0],"span":[4,0,41]},{"path":[5,0],"span":[7,0,11,1]},{"path":[5,0,1],"span":[7,5,20]},{"path":[5,0,2,0],"span":[8,2,38]},{"path":[5,0,2,0,1],"span":[8,2,33]},{"path":[5,0,2,0,2],"span":[8,36,37]},{"path":[5,0,2,1],"span":[9,2,34]},{"path":[5,0,2,1,1],"span":[9,2,29]},{"path":[5,0,2,1,2],"span":[9,32,33]},{"path":[5,0,2,2],"span":[10,2,41]},{"path":[5,0,2,2,1],"span":[10,2,36]},{"path":[5,0,2,2,2],"span":[10,39,40]},{"path":[5,1],"span":[13,0,18,1]},{"path":[5,1,1],"span":[13,5,25]},{"path":[5,1,2,0],"span":[14,2,32]},{"path":[5,1,2,0,1],"span":[14,2,27]},{"path":[5,1,2,0,2],"span":[14,30,31]},{"path":[5,1,2,1],"span":[15,2,35]},{"path":[5,1,2,1,1],"span":[15,2,30]},{"path":[5,1,2,1,2],"span":[15,33,34]},{"path":[5,1,2,2],"span":[16,2,33]},{"path":[5,1,2,2,1],"span":[16,2,28]},{"path":[5,1,2,2,2],"span":[16,31,32]},{"path":[5,1,2,3],"span":[17,2,37]},{"path":[5,1,2,3,1],"span":[17,2,32]},{"path":[5,1,2,3,2],"span":[17,35,36]},{"path":[4,0],"span":[20,0,24,1]},{"path":[4,0,1],"span":[20,8,29]},{"path":[4,0,2,0],"span":[21,2,32]},{"path":[4,0,2,0,4],"span":[21,2,10]},{"path":[4,0,2,0,5],"span":[21,11,17]},{"path":[4,0,2,0,1],"span":[21,18,27]},{"path":[4,0,2,0,3],"span":[21,30,31]},{"path":[4,0,2,1],"span":[22,2,50]},{"path":[4,0,2,1,4],"span":[22,2,10]},{"path":[4,0,2,1,6],"span":[22,11,31]},{"path":[4,0,2,1,1],"span":[22,32,45]},{"path":[4,0,2,1,3],"span":[22,48,49]},{"path":[4,0,2,2],"span":[23,2,25]},{"path":[4,0,2,2,4],"span":[23,2,10]},{"path":[4,0,2,2,5],"span":[23,11,16]},{"path":[4,0,2,2,1],"span":[23,17,20]},{"path":[4,0,2,2,3],"span":[23,23,24]},{"path":[4,1],"span":[26,0,29,1]},{"path":[4,1,1],"span":[26,8,32]},{"path":[4,1,2,0],"span":[27,2,17]},{"path":[4,1,2,0,5],"span":[27,2,8]},{"path":[4,1,2,0,1],"span":[27,9,12]},{"path":[4,1,2,0,3],"span":[27,15,16]},{"path":[4,1,2,1],"span":[28,2,52]},{"path":[4,1,2,1,4],"span":[28,2,10]},{"path":[4,1,2,1,6],"span":[28,11,36]},{"path":[4,1,2,1,1],"span":[28,37,47]},{"path":[4,1,2,1,3],"span":[28,50,51]},{"path":[4,2],"span":[31,0,35,1]},{"path":[4,2,1],"span":[31,8,17]},{"path":[4,2,9],"span":[32,2,13]},{"path":[4,2,9,0],"span":[32,11,12]},{"path":[4,2,9,0,1],"span":[32,11,12]},{"path":[4,2,2,0],"span":[33,2,17]},{"path":[4,2,2,0,5],"span":[33,2,6]},{"path":[4,2,2,0,1],"span":[33,7,12]},{"path":[4,2,2,0,3],"span":[33,15,16]},{"path":[4,2,2,1],"span":[34,2,57]},{"path":[4,2,2,1,4],"span":[34,2,10]},{"path":[4,2,2,1,6],"span":[34,11,35]},{"path":[4,2,2,1,1],"span":[34,36,52]},{"path":[4,2,2,1,3],"span":[34,55,56]},{"path":[4,3],"span":[37,0,39,1]},{"path":[4,3,1],"span":[37,8,20]},{"path":[4,3,2,0],"span":[38,2,28]},{"path":[4,3,2,0,6],"span":[38,2,11]},{"path":[4,3,2,0,1],"span":[38,12,23]},{"path":[4,3,2,0,3],"span":[38,26,27]},{"path":[4,4],"span":[41,0,44,1]},{"path":[4,4,1],"span":[41,8,14]},{"path":[4,4,2,0],"span":[42,2,35]},{"path":[4,4,2,0,6],"span":[42,2,11]},{"path":[4,4,2,0,1],"span":[42,12,30]},{"path":[4,4,2,0,3],"span":[42,33,34]},{"path":[4,4,2,1],"span":[43,2,31]},{"path":[4,4,2,1,6],"span":[43,2,11]},{"path":[4,4,2,1,1],"span":[43,12,26]},{"path":[4,4,2,1,3],"span":[43,29,30]},{"path":[4,5],"span":[46,0,48,1]},{"path":[4,5,1],"span":[46,8,14]},{"path":[4,5,2,0],"span":[47,2,23]},{"path":[4,5,2,0,5],"span":[47,2,7]},{"path":[4,5,2,0,1],"span":[47,8,18]},{"path":[4,5,2,0,3],"span":[47,21,22]},{"path":[4,6],"span":[50,0,52,1]},{"path":[4,6,1],"span":[50,8,19]},{"path":[4,6,2,0],"span":[51,2,32]},{"path":[4,6,2,0,5],"span":[51,2,7]},{"path":[4,6,2,0,1],"span":[51,8,27]},{"path":[4,6,2,0,3],"span":[51,30,31]},{"path":[4,7],"span":[54,0,61,1]},{"path":[4,7,1],"span":[54,8,18]},{"path":[4,7,9],"span":[55,2,13]},{"path":[4,7,9,0],"span":[55,11,12]},{"path":[4,7,9,0,1],"span":[55,11,12]},{"path":[4,7,2,0],"span":[56,2,27]},{"path":[4,7,2,0,6],"span":[56,2,17]},{"path":[4,7,2,0,1],"span":[56,18,22]},{"path":[4,7,2,0,3],"span":[56,25,26]},{"path":[4,7,2,1],"span":[57,2,42]},{"path":[4,7,2,1,4],"span":[57,2,10]},{"path":[4,7,2,1,6],"span":[57,11,23]},{"path":[4,7,2,1,1],"span":[57,24,37]},{"path":[4,7,2,1,3],"span":[57,40,41]},{"path":[4,7,2,2],"span":[58,2,29]},{"path":[4,7,2,2,4],"span":[58,2,10]},{"path":[4,7,2,2,6],"span":[58,11,17]},{"path":[4,7,2,2,1],"span":[58,18,24]},{"path":[4,7,2,2,3],"span":[58,27,28]},{"path":[4,7,2,3],"span":[59,2,20]},{"path":[4,7,2,3,6],"span":[59,2,8]},{"path":[4,7,2,3,1],"span":[59,9,15]},{"path":[4,7,2,3,3],"span":[59,18,19]},{"path":[4,7,2,4],"span":[60,2,30]},{"path":[4,7,2,4,6],"span":[60,2,13]},{"path":[4,7,2,4,1],"span":[60,14,25]},{"path":[4,7,2,4,3],"span":[60,28,29]}]},"syntax":"proto3","bufExtension":{"isImport":true,"isSyntaxUnspecified":false}},{"name":"proto/multitenant.proto","package":"lansweeper.multitenant.v1","dependency":["limits/limits.proto"],"messageType":[{"name":"PreviewAccount","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"username","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"username"},{"name":"name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"surname","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"surname"},{"name":"email","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"email"},{"name":"image_url","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"imageUrl"}]},{"name":"GetPreviewAccountByIdRequest","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"}]},{"name":"GetPreviewAccountByIdResponse","field":[{"name":"account","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.PreviewAccount","jsonName":"account"}]},{"name":"SearchPreviewAccountsBySiteIdsRequest","field":[{"name":"site_ids","number":1,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"siteIds"},{"name":"search","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"search"}]},{"name":"SearchPreviewAccountsBySiteIdsResponse","field":[{"name":"accounts","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.PreviewAccount","jsonName":"accounts"}]},{"name":"GetPreviewAccountsByAccountIdsRequest","field":[{"name":"account_ids","number":1,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"accountIds"}]},{"name":"GetPreviewAccountsByAccountIdsResponse","field":[{"name":"accounts","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.PreviewAccount","jsonName":"accounts"}]},{"name":"PreviewSite","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"},{"name":"company_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"companyName"},{"name":"logo_url","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"logoUrl"},{"name":"mode","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.SiteMode","jsonName":"mode"},{"name":"created_by","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.PreviewAccount","jsonName":"createdBy"}]},{"name":"PatchSiteModeRequest","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"mode","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.SiteMode","jsonName":"mode"}]},{"name":"PatchSiteModeResponse","field":[{"name":"success","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"success"}]},{"name":"Profile","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"site_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"site","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.PreviewSite","jsonName":"site"},{"name":"is_owner","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isOwner"}]},{"name":"ListProfilesByAccountIdRequest","field":[{"name":"account_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"accountId"},{"name":"include_blocks","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"includeBlocks"},{"name":"being_owner_or_administrator","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"beingOwnerOrAdministrator"}]},{"name":"ListProfilesByAccountIdResponse","field":[{"name":"profile","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Profile","jsonName":"profile"}]},{"name":"ListAuthorizedLinkProfilesRequest","field":[{"name":"account_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"accountId"},{"name":"include_blocks","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"includeBlocks","options":{"deprecated":true}}]},{"name":"ListAuthorizedLinkProfilesResponse","field":[{"name":"profile","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Profile","jsonName":"profile"}]},{"name":"CheckAccessToSiteByAccountIdRequest","field":[{"name":"account_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"accountId"},{"name":"site_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"only_owner","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"onlyOwner"},{"name":"user_info","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdRequest.UserInfo","jsonName":"userInfo"}],"nestedType":[{"name":"UserInfo","field":[{"name":"has_mfa","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"hasMfa"},{"name":"is_sso_login","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isSsoLogin"}]}]},{"name":"CheckAccessToSiteByAccountIdResponse","field":[{"name":"access","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"access"}]},{"name":"CheckAccessToSiteByClientIdRequest","field":[{"name":"client_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"},{"name":"site_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"}]},{"name":"CheckAccessToSiteByClientIdResponse","field":[{"name":"access","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"access"}]},{"name":"Install","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"site_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"display_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"displayName"},{"name":"description","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"description"},{"name":"status","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"status"},{"name":"fqdn","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"fqdn"},{"name":"created_by_id","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"createdById"},{"name":"global_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"globalId"},{"name":"state","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install.InstallState","jsonName":"state"},{"name":"created_at","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"createdAt"},{"name":"license","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"license"},{"name":"type","number":12,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"type","options":{"deprecated":true}},{"name":"install_type","number":13,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.InstallType","jsonName":"installType"}],"nestedType":[{"name":"InstallState","field":[{"name":"value","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.InstallStateValue","jsonName":"value"}]}]},{"name":"InstallCredentials","field":[{"name":"client_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"},{"name":"client_secret","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientSecret"}]},{"name":"GetInstallsCountBySiteRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"}]},{"name":"GetInstallsCountResponse","field":[{"name":"count","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT64","jsonName":"count"}]},{"name":"GetInstallsByIdRequest","field":[{"name":"install_ids","number":1,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"installIds"}]},{"name":"GetInstallsByIdResponse","field":[{"name":"install","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"install"}]},{"name":"NullableInstallType","field":[{"name":"data","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.InstallType","oneofIndex":0,"jsonName":"data"}],"oneofDecl":[{"name":"kind"}]},{"name":"GetInstallsBySiteRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"filter","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.GetInstallsBySiteRequest.Filter","jsonName":"filter"}],"nestedType":[{"name":"Filter","field":[{"name":"state","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.InstallStateValue","jsonName":"state"},{"name":"type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.InstallType","jsonName":"type","options":{"deprecated":true}},{"name":"install_type","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.NullableInstallType","jsonName":"installType"}]}]},{"name":"GetInstallsBySiteResponse","field":[{"name":"install","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"install"}]},{"name":"GetInstallsForMultipleSitesRequest","field":[{"name":"site_ids","number":1,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"siteIds"}]},{"name":"GetInstallsForMultipleSitesResponse","field":[{"name":"installs","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"installs"}]},{"name":"GetInstallbyClientIdRequest","field":[{"name":"client_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"}]},{"name":"GetInstallbyClientIdResponse","field":[{"name":"install","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"install"}]},{"name":"CreateInstallRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"display_name","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"displayName"},{"name":"description","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"description"},{"name":"status","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"status"},{"name":"fqdn","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"fqdn"},{"name":"created_by_id","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"createdById"},{"name":"global_id","number":9,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"globalId"},{"name":"type","number":10,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.InstallType","jsonName":"type"},{"name":"client_id","number":11,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"}],"reservedRange":[{"start":2,"end":3},{"start":8,"end":9}]},{"name":"CreateInstallResponse","field":[{"name":"install","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"install"},{"name":"credentials","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.InstallCredentials","jsonName":"credentials"}]},{"name":"CreateAndLinkInstallRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"display_name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"displayName"},{"name":"description","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"description"},{"name":"global_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"globalId"},{"name":"type","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.InstallType","jsonName":"type"},{"name":"created_by_id","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"createdById"},{"name":"client_id","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"},{"name":"external_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"externalId"}]},{"name":"CreateAndLinkInstallResponse","field":[{"name":"install","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"install"},{"name":"credentials","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.InstallCredentials","jsonName":"credentials"},{"name":"license","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"license"}]},{"name":"UpdateInstallByClientIdRequest","field":[{"name":"client_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"},{"name":"display_name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"displayName"},{"name":"description","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"description"},{"name":"status","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"status"},{"name":"fqdn","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"fqdn"},{"name":"syncer_settings","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.UpdateInstallByClientIdRequest.SyncerSettings","jsonName":"syncerSettings"}],"nestedType":[{"name":"SyncerSettings","field":[{"name":"send_changed_data_timeout","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"sendChangedDataTimeout"},{"name":"send_fast_changing_data_timeout","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"sendFastChangingDataTimeout"},{"name":"send_non_changed_data_timeout","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"sendNonChangedDataTimeout"},{"name":"sync_interval_in_seconds","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"syncIntervalInSeconds"}]}]},{"name":"UpdateInstallByClientIdResponse","field":[{"name":"install","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"install"}]},{"name":"RotateInstallByClientIdRequest","field":[{"name":"client_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"},{"name":"track_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"trackId"}]},{"name":"RotateInstallByClientIdResponse","field":[{"name":"success","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"success"},{"name":"site_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"old_install_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"oldInstallId"},{"name":"new_install_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"newInstallId"}]},{"name":"UnlinkInstallByClientIdRequest","field":[{"name":"client_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"},{"name":"track_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"trackId"},{"name":"remove_data","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"removeData"},{"name":"from_onprem","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"fromOnprem"}]},{"name":"UnlinkInstallByClientIdResponse","field":[{"name":"success","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"success"}]},{"name":"LinkTrialInstallByClientIdRequest","field":[{"name":"client_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"},{"name":"display_name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"displayName"},{"name":"description","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"description"},{"name":"global_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"globalId"},{"name":"type","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.InstallType","jsonName":"type"}]},{"name":"LinkTrialInstallByClientIdResponse","field":[{"name":"install","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"install"},{"name":"credentials","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.InstallCredentials","jsonName":"credentials"},{"name":"site","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.PreviewSite","jsonName":"site"},{"name":"license","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"license"}]},{"name":"RemoveInstallDataBySiteIdRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"install_ids","number":2,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"installIds"},{"name":"user_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"userId"}]},{"name":"RemoveInstallDataBySiteIdResponse","field":[{"name":"result","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.RemoveInstallDataBySiteIdResponse.Result","jsonName":"result"}],"nestedType":[{"name":"Result","field":[{"name":"install_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"installId"},{"name":"queued","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"queued"}]}]},{"name":"GetDuplicatedInstallsByGlobalIdRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"global_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"globalId"}]},{"name":"GetDuplicatedInstallsByGlobalIdResponse","field":[{"name":"install","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"install"}]},{"name":"GetUserPermissionsRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"account_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"accountId"}]},{"name":"GetUserPermissionsResponse","field":[{"name":"roles","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.GetUserPermissionsResponse.Role","jsonName":"roles"}],"nestedType":[{"name":"AuthorizationAction","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"derived_permissions","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_BYTES","jsonName":"derivedPermissions"}]},{"name":"Scope","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"}]},{"name":"Role","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"actions","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.GetUserPermissionsResponse.AuthorizationAction","jsonName":"actions"},{"name":"installations","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Install","jsonName":"installations"},{"name":"scopes","number":4,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.GetUserPermissionsResponse.Scope","jsonName":"scopes"}]}]},{"name":"ValidateApplicationPersonalAccessTokenRequest","field":[{"name":"personal_access_token","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"personalAccessToken"}]},{"name":"ValidateApplicationPersonalAccessTokenResponse","field":[{"name":"user_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"userId"},{"name":"application_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"applicationId"}]},{"name":"DisableWebhookEmailRequest","field":[{"name":"application_name","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"applicationName"},{"name":"email","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"email","options":{"deprecated":true}},{"name":"errors","number":3,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.DisableWebhookEmailRequest.WebhookError","jsonName":"errors"},{"name":"payload_url","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"payloadUrl"},{"name":"webhook_name","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"webhookName"},{"name":"webhook_url","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"webhookUrl","options":{"deprecated":true}},{"name":"webhook_id","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"webhookId"},{"name":"application_id","number":8,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"applicationId"}],"nestedType":[{"name":"WebhookError","field":[{"name":"code","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"code"},{"name":"messsage","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"messsage","options":{"deprecated":true}},{"name":"timestamp","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"timestamp"},{"name":"message","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"message"}]}]},{"name":"DisableWebhookEmailResponse","field":[{"name":"mail_sent","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"mailSent"}]},{"name":"Site","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"}]},{"name":"AuthorizedSitesRequest","field":[{"name":"application_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"applicationId"},{"name":"trace_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"traceId"}]},{"name":"AuthorizedSitesResponse","field":[{"name":"site","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Site","jsonName":"site"}]},{"name":"GetAccountIdsBySiteIdRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"}]},{"name":"GetAccountIdsBySiteIdResponse","field":[{"name":"account_ids","number":1,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"accountIds"}]},{"name":"CheckManagerInApplicationRequest","field":[{"name":"application_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"applicationId"},{"name":"manager_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"managerId"}]},{"name":"CheckManagerInApplicationResponse","field":[{"name":"is_manager","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isManager"}]},{"name":"Subscription","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"site_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"type","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.SubscriptionType","jsonName":"type"},{"name":"assets_limit","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"assetsLimit"},{"name":"expiration_date","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"expirationDate"},{"name":"created_at","number":6,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"createdAt"},{"name":"created_by","number":7,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"createdBy"}]},{"name":"UpdateSiteSubscriptionRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"type","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.SubscriptionType","jsonName":"type"},{"name":"assets_limit","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"assetsLimit"},{"name":"expiration_date","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"expirationDate"},{"name":"updated_by","number":5,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"updatedBy"}]},{"name":"UpdateSiteSubscriptionResponse","field":[{"name":"subscription","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Subscription","jsonName":"subscription"}]},{"name":"CreateTrialSiteAndInstallerRequest","field":[{"name":"user_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"userId"}]},{"name":"CreateTrialSiteAndInstallerResponse","field":[{"name":"installer_credentials","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"installerCredentials"}]},{"name":"GetInstallationLicenseByClientIdRequest","field":[{"name":"client_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"clientId"}]},{"name":"GetInstallationLicenseByClientIdResponse","field":[{"name":"license","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"license"}]},{"name":"AllProfileExistsRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"emails","number":2,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"emails"}],"options":{"deprecated":true}},{"name":"AllProfileExistsResponse","field":[{"name":"all","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"all"}],"options":{"deprecated":true}},{"name":"AllProfilesExistRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"emails","number":2,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"emails"}]},{"name":"AllProfilesExistResponse","field":[{"name":"all","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"all"},{"name":"profiles","number":2,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.Profile","jsonName":"profiles"},{"name":"createdBy","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.PreviewAccount","jsonName":"createdBy"}]},{"name":"SendInviteLocalUsersMailRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"}]},{"name":"SendInviteLocalUsersMailResponse","field":[{"name":"sent","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"sent"}]},{"name":"GetSiteSubscriptionRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"}]},{"name":"GetSiteSubscriptionResponse","field":[{"name":"type","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_ENUM","typeName":".lansweeper.multitenant.v1.SubscriptionType","jsonName":"type"}]},{"name":"CreateLinkingCodeRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"account_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"accountId"}]},{"name":"CreateLinkingCodeResponse","field":[{"name":"code","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"code"}]},{"name":"GetSiteIdsWithIntegrationData","field":[{"name":"site_ids","number":1,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"siteIds"}]},{"name":"CheckStandardizedSoftwareEnabledRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"}]},{"name":"CheckStandardizedSoftwareEnabledResponse","field":[{"name":"is_enabled","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isEnabled"}]},{"name":"UpdateSiteMetadataRequest","field":[{"name":"site_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"siteId"},{"name":"key","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"value"}]},{"name":"UpdateSiteMetadataResponse","field":[{"name":"success","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"success"}]},{"name":"GetSiteLimitsRequest","field":[{"name":"site_ids","number":1,"label":"LABEL_REPEATED","type":"TYPE_STRING","jsonName":"siteIds"}]},{"name":"GetSiteLimitsResponse","field":[{"name":"site_limits","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.GetSiteLimitsResponse.SiteLimitsEntry","jsonName":"siteLimits"}],"nestedType":[{"name":"SiteLimitsEntry","field":[{"name":"key","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"key"},{"name":"value","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.shared.limits.v1.SiteLimits","jsonName":"value"}],"options":{"mapEntry":true}}]},{"name":"MsmpPagination","field":[{"name":"offset","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"offset"},{"name":"limit","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"limit"}]},{"name":"MsmpPaginationInfo","field":[{"name":"total","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"total"},{"name":"offset","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"offset"},{"name":"limit","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"limit"},{"name":"has_next_page","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"hasNextPage"}]},{"name":"GetMsmpOrganizationListRequest","field":[{"name":"user_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"userId"},{"name":"msmp_pagination","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.GetMsmpOrganizationListRequest.MsmpPaginationRequest","jsonName":"msmpPagination"},{"name":"trace_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"traceId"}],"nestedType":[{"name":"MsmpPaginationRequest","field":[{"name":"offset","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"offset"},{"name":"limit","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"limit"}]}]},{"name":"GetMsmpOrganizationListResponse","field":[{"name":"organizations","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.GetMsmpOrganizationListResponse.MsmpOrganization","jsonName":"organizations"},{"name":"msmp_page_info","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.GetMsmpOrganizationListResponse.MsmpPageInfo","jsonName":"msmpPageInfo"}],"nestedType":[{"name":"MsmpOrganization","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"name","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"name"}]},{"name":"MsmpPageInfo","field":[{"name":"total","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"total"},{"name":"offset","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"offset"},{"name":"limit","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_INT32","jsonName":"limit"},{"name":"has_next_page","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"hasNextPage"}]}]},{"name":"GetMsmpOrganizationAccountRequest","field":[{"name":"user_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"userId"},{"name":"msmp_organization_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"msmpOrganizationId"},{"name":"trace_id","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"traceId"}]},{"name":"GetMsmpOrganizationAccountResponse","field":[{"name":"id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"id"},{"name":"role","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"role"},{"name":"is_pending","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"isPending"},{"name":"has_accessed_multi_site_management_portal","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_BOOL","jsonName":"hasAccessedMultiSiteManagementPortal"}]},{"name":"GetSitesByMsmpOrganizationIdRequest","field":[{"name":"user_id","number":1,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"userId"},{"name":"msmp_organization_id","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"msmpOrganizationId"},{"name":"msmp_pagination","number":3,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.MsmpPagination","jsonName":"msmpPagination"},{"name":"trace_id","number":4,"label":"LABEL_OPTIONAL","type":"TYPE_STRING","jsonName":"traceId"}]},{"name":"GetSitesByMsmpOrganizationIdResponse","field":[{"name":"sites","number":1,"label":"LABEL_REPEATED","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.PreviewSite","jsonName":"sites"},{"name":"msmp_pagination_info","number":2,"label":"LABEL_OPTIONAL","type":"TYPE_MESSAGE","typeName":".lansweeper.multitenant.v1.MsmpPaginationInfo","jsonName":"msmpPaginationInfo"}]}],"enumType":[{"name":"SiteMode","value":[{"name":"UNESPECIFIED","number":0},{"name":"CLOUD_NATIVE","number":1},{"name":"DEMO","number":2},{"name":"HYBRID","number":3},{"name":"DUAL","number":4}]},{"name":"InstallStateValue","value":[{"name":"INSTALL_STATE_VALUE_UNESPECIFIED","number":0},{"name":"INSTALL_STATE_VALUE_SYNC","number":1},{"name":"INSTALL_STATE_VALUE_UNSYNC","number":2}]},{"name":"InstallType","value":[{"name":"IT","number":0},{"name":"OT","number":1},{"name":"IT_AGENT","number":2},{"name":"CLOUD","number":3},{"name":"NETWORK_DISCOVERY","number":4}]},{"name":"SubscriptionType","value":[{"name":"SUBSCRIPTION_TYPE_VALUE_UNESPECIFIED","number":0},{"name":"SUBSCRIPTION_TYPE_VALUE_TRIAL","number":1},{"name":"SUBSCRIPTION_TYPE_VALUE_FREEWARE","number":2},{"name":"SUBSCRIPTION_TYPE_VALUE_STARTER","number":3},{"name":"SUBSCRIPTION_TYPE_VALUE_PRO","number":4},{"name":"SUBSCRIPTION_TYPE_VALUE_ENTERPRISE","number":5}]}],"service":[{"name":"Multitenant","method":[{"name":"CheckAccessToSiteByAccountId","inputType":".lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdRequest","outputType":".lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdResponse","options":{}},{"name":"CheckAccessToSiteByClientId","inputType":".lansweeper.multitenant.v1.CheckAccessToSiteByClientIdRequest","outputType":".lansweeper.multitenant.v1.CheckAccessToSiteByClientIdResponse","options":{}},{"name":"GetPreviewAccountById","inputType":".lansweeper.multitenant.v1.GetPreviewAccountByIdRequest","outputType":".lansweeper.multitenant.v1.GetPreviewAccountByIdResponse","options":{}},{"name":"SearchPreviewAccountsBySiteIds","inputType":".lansweeper.multitenant.v1.SearchPreviewAccountsBySiteIdsRequest","outputType":".lansweeper.multitenant.v1.SearchPreviewAccountsBySiteIdsResponse","options":{}},{"name":"GetPreviewAccountsByAccountIds","inputType":".lansweeper.multitenant.v1.GetPreviewAccountsByAccountIdsRequest","outputType":".lansweeper.multitenant.v1.GetPreviewAccountsByAccountIdsResponse","options":{}},{"name":"ListProfilesByAccountId","inputType":".lansweeper.multitenant.v1.ListProfilesByAccountIdRequest","outputType":".lansweeper.multitenant.v1.ListProfilesByAccountIdResponse","options":{}},{"name":"ListAuthorizedLinkProfiles","inputType":".lansweeper.multitenant.v1.ListAuthorizedLinkProfilesRequest","outputType":".lansweeper.multitenant.v1.ListAuthorizedLinkProfilesResponse","options":{}},{"name":"PatchSiteMode","inputType":".lansweeper.multitenant.v1.PatchSiteModeRequest","outputType":".lansweeper.multitenant.v1.PatchSiteModeResponse","options":{}},{"name":"CreateInstall","inputType":".lansweeper.multitenant.v1.CreateInstallRequest","outputType":".lansweeper.multitenant.v1.CreateInstallResponse","options":{}},{"name":"CreateAndLinkInstall","inputType":".lansweeper.multitenant.v1.CreateAndLinkInstallRequest","outputType":".lansweeper.multitenant.v1.CreateAndLinkInstallResponse","options":{}},{"name":"GetInstallsBySite","inputType":".lansweeper.multitenant.v1.GetInstallsBySiteRequest","outputType":".lansweeper.multitenant.v1.GetInstallsBySiteResponse","options":{}},{"name":"GetInstallsforMultipleSites","inputType":".lansweeper.multitenant.v1.GetInstallsForMultipleSitesRequest","outputType":".lansweeper.multitenant.v1.GetInstallsForMultipleSitesResponse","options":{}},{"name":"GetInstallsById","inputType":".lansweeper.multitenant.v1.GetInstallsByIdRequest","outputType":".lansweeper.multitenant.v1.GetInstallsByIdResponse","options":{}},{"name":"GetInstallsCountBySite","inputType":".lansweeper.multitenant.v1.GetInstallsCountBySiteRequest","outputType":".lansweeper.multitenant.v1.GetInstallsCountResponse","options":{}},{"name":"GetInstallbyClientId","inputType":".lansweeper.multitenant.v1.GetInstallbyClientIdRequest","outputType":".lansweeper.multitenant.v1.GetInstallbyClientIdResponse","options":{}},{"name":"UpdateInstallByClientId","inputType":".lansweeper.multitenant.v1.UpdateInstallByClientIdRequest","outputType":".lansweeper.multitenant.v1.UpdateInstallByClientIdResponse","options":{}},{"name":"RotateInstallByClientId","inputType":".lansweeper.multitenant.v1.RotateInstallByClientIdRequest","outputType":".lansweeper.multitenant.v1.RotateInstallByClientIdResponse","options":{}},{"name":"LinkTrialInstallByClientId","inputType":".lansweeper.multitenant.v1.LinkTrialInstallByClientIdRequest","outputType":".lansweeper.multitenant.v1.LinkTrialInstallByClientIdResponse","options":{}},{"name":"UnlinkInstallByClientId","inputType":".lansweeper.multitenant.v1.UnlinkInstallByClientIdRequest","outputType":".lansweeper.multitenant.v1.UnlinkInstallByClientIdResponse","options":{}},{"name":"RemoveInstallDataBySiteId","inputType":".lansweeper.multitenant.v1.RemoveInstallDataBySiteIdRequest","outputType":".lansweeper.multitenant.v1.RemoveInstallDataBySiteIdResponse","options":{}},{"name":"GetDuplicatedInstallsByGlobalId","inputType":".lansweeper.multitenant.v1.GetDuplicatedInstallsByGlobalIdRequest","outputType":".lansweeper.multitenant.v1.GetDuplicatedInstallsByGlobalIdResponse","options":{}},{"name":"GetUserPermissions","inputType":".lansweeper.multitenant.v1.GetUserPermissionsRequest","outputType":".lansweeper.multitenant.v1.GetUserPermissionsResponse","options":{}},{"name":"ValidateApplicationPersonalAccessToken","inputType":".lansweeper.multitenant.v1.ValidateApplicationPersonalAccessTokenRequest","outputType":".lansweeper.multitenant.v1.ValidateApplicationPersonalAccessTokenResponse","options":{}},{"name":"SendDisabledWebhookEmail","inputType":".lansweeper.multitenant.v1.DisableWebhookEmailRequest","outputType":".lansweeper.multitenant.v1.DisableWebhookEmailResponse","options":{}},{"name":"GetAuthorizedSitesByApplicationId","inputType":".lansweeper.multitenant.v1.AuthorizedSitesRequest","outputType":".lansweeper.multitenant.v1.AuthorizedSitesResponse","options":{}},{"name":"GetAccountIdsBySiteId","inputType":".lansweeper.multitenant.v1.GetAccountIdsBySiteIdRequest","outputType":".lansweeper.multitenant.v1.GetAccountIdsBySiteIdResponse","options":{}},{"name":"CheckManagerInApplication","inputType":".lansweeper.multitenant.v1.CheckManagerInApplicationRequest","outputType":".lansweeper.multitenant.v1.CheckManagerInApplicationResponse","options":{}},{"name":"UpdateSiteSubscription","inputType":".lansweeper.multitenant.v1.UpdateSiteSubscriptionRequest","outputType":".lansweeper.multitenant.v1.UpdateSiteSubscriptionResponse","options":{}},{"name":"CreateTrialSiteAndInstaller","inputType":".lansweeper.multitenant.v1.CreateTrialSiteAndInstallerRequest","outputType":".lansweeper.multitenant.v1.CreateTrialSiteAndInstallerResponse","options":{}},{"name":"GetInstallationLicenseByClientId","inputType":".lansweeper.multitenant.v1.GetInstallationLicenseByClientIdRequest","outputType":".lansweeper.multitenant.v1.GetInstallationLicenseByClientIdResponse","options":{}},{"name":"AllProfilesExist","inputType":".lansweeper.multitenant.v1.AllProfilesExistRequest","outputType":".lansweeper.multitenant.v1.AllProfilesExistResponse","options":{}},{"name":"SendInviteLocalUsersMail","inputType":".lansweeper.multitenant.v1.SendInviteLocalUsersMailRequest","outputType":".lansweeper.multitenant.v1.SendInviteLocalUsersMailResponse","options":{}},{"name":"AllProfileExists","inputType":".lansweeper.multitenant.v1.AllProfileExistsRequest","outputType":".lansweeper.multitenant.v1.AllProfileExistsResponse","options":{"deprecated":true}},{"name":"GetSiteSubscription","inputType":".lansweeper.multitenant.v1.GetSiteSubscriptionRequest","outputType":".lansweeper.multitenant.v1.GetSiteSubscriptionResponse","options":{}},{"name":"CreateLinkingCode","inputType":".lansweeper.multitenant.v1.CreateLinkingCodeRequest","outputType":".lansweeper.multitenant.v1.CreateLinkingCodeResponse","options":{}},{"name":"GetSiteIdsWithIntegrationBySiteId","inputType":".lansweeper.multitenant.v1.GetSiteIdsWithIntegrationData","outputType":".lansweeper.multitenant.v1.GetSiteIdsWithIntegrationData","options":{}},{"name":"CheckStandardizedSoftwareEnabled","inputType":".lansweeper.multitenant.v1.CheckStandardizedSoftwareEnabledRequest","outputType":".lansweeper.multitenant.v1.CheckStandardizedSoftwareEnabledResponse","options":{}},{"name":"UpdateSiteMetadata","inputType":".lansweeper.multitenant.v1.UpdateSiteMetadataRequest","outputType":".lansweeper.multitenant.v1.UpdateSiteMetadataResponse","options":{}},{"name":"GetSiteLimits","inputType":".lansweeper.multitenant.v1.GetSiteLimitsRequest","outputType":".lansweeper.multitenant.v1.GetSiteLimitsResponse","options":{}},{"name":"GetMsmpOrganizationList","inputType":".lansweeper.multitenant.v1.GetMsmpOrganizationListRequest","outputType":".lansweeper.multitenant.v1.GetMsmpOrganizationListResponse","options":{}},{"name":"GetMsmpOrganizationAccount","inputType":".lansweeper.multitenant.v1.GetMsmpOrganizationAccountRequest","outputType":".lansweeper.multitenant.v1.GetMsmpOrganizationAccountResponse","options":{}},{"name":"GetSitesByMsmpOrganizationId","inputType":".lansweeper.multitenant.v1.GetSitesByMsmpOrganizationIdRequest","outputType":".lansweeper.multitenant.v1.GetSitesByMsmpOrganizationIdResponse","options":{}}]}],"options":{"goPackage":"./generated-go"},"sourceCodeInfo":{"location":[{"span":[0,0,555,1]},{"path":[12],"span":[0,0,18]},{"path":[2],"span":[1,0,34]},{"path":[8],"span":[2,0,37]},{"path":[8,11],"span":[2,0,37]},{"path":[3,0],"span":[4,0,29]},{"path":[4,0],"span":[6,0,13,1]},{"path":[4,0,1],"span":[6,8,22]},{"path":[4,0,2,0],"span":[7,2,16]},{"path":[4,0,2,0,5],"span":[7,2,8]},{"path":[4,0,2,0,1],"span":[7,9,11]},{"path":[4,0,2,0,3],"span":[7,14,15]},{"path":[4,0,2,1],"span":[8,2,22]},{"path":[4,0,2,1,5],"span":[8,2,8]},{"path":[4,0,2,1,1],"span":[8,9,17]},{"path":[4,0,2,1,3],"span":[8,20,21]},{"path":[4,0,2,2],"span":[9,2,18]},{"path":[4,0,2,2,5],"span":[9,2,8]},{"path":[4,0,2,2,1],"span":[9,9,13]},{"path":[4,0,2,2,3],"span":[9,16,17]},{"path":[4,0,2,3],"span":[10,2,21]},{"path":[4,0,2,3,5],"span":[10,2,8]},{"path":[4,0,2,3,1],"span":[10,9,16]},{"path":[4,0,2,3,3],"span":[10,19,20]},{"path":[4,0,2,4],"span":[11,2,19]},{"path":[4,0,2,4,5],"span":[11,2,8]},{"path":[4,0,2,4,1],"span":[11,9,14]},{"path":[4,0,2,4,3],"span":[11,17,18]},{"path":[4,0,2,5],"span":[12,2,23]},{"path":[4,0,2,5,5],"span":[12,2,8]},{"path":[4,0,2,5,1],"span":[12,9,18]},{"path":[4,0,2,5,3],"span":[12,21,22]},{"path":[4,1],"span":[15,0,17,1]},{"path":[4,1,1],"span":[15,8,36]},{"path":[4,1,2,0],"span":[16,2,16]},{"path":[4,1,2,0,5],"span":[16,2,8]},{"path":[4,1,2,0,1],"span":[16,9,11]},{"path":[4,1,2,0,3],"span":[16,14,15]},{"path":[4,2],"span":[18,0,20,1]},{"path":[4,2,1],"span":[18,8,37]},{"path":[4,2,2,0],"span":[19,2,29]},{"path":[4,2,2,0,6],"span":[19,2,16]},{"path":[4,2,2,0,1],"span":[19,17,24]},{"path":[4,2,2,0,3],"span":[19,27,28]},{"path":[4,3],"span":[21,0,24,1]},{"path":[4,3,1],"span":[21,8,45]},{"path":[4,3,2,0],"span":[22,2,31]},{"path":[4,3,2,0,4],"span":[22,2,10]},{"path":[4,3,2,0,5],"span":[22,11,17]},{"path":[4,3,2,0,1],"span":[22,18,26]},{"path":[4,3,2,0,3],"span":[22,29,30]},{"path":[4,3,2,1],"span":[23,2,20]},{"path":[4,3,2,1,5],"span":[23,2,8]},{"path":[4,3,2,1,1],"span":[23,9,15]},{"path":[4,3,2,1,3],"span":[23,18,19]},{"path":[4,4],"span":[25,0,27,1]},{"path":[4,4,1],"span":[25,8,46]},{"path":[4,4,2,0],"span":[26,2,39]},{"path":[4,4,2,0,4],"span":[26,2,10]},{"path":[4,4,2,0,6],"span":[26,11,25]},{"path":[4,4,2,0,1],"span":[26,26,34]},{"path":[4,4,2,0,3],"span":[26,37,38]},{"path":[4,5],"span":[28,0,30,1]},{"path":[4,5,1],"span":[28,8,45]},{"path":[4,5,2,0],"span":[29,2,34]},{"path":[4,5,2,0,4],"span":[29,2,10]},{"path":[4,5,2,0,5],"span":[29,11,17]},{"path":[4,5,2,0,1],"span":[29,18,29]},{"path":[4,5,2,0,3],"span":[29,32,33]},{"path":[4,6],"span":[31,0,33,1]},{"path":[4,6,1],"span":[31,8,46]},{"path":[4,6,2,0],"span":[32,2,39]},{"path":[4,6,2,0,4],"span":[32,2,10]},{"path":[4,6,2,0,6],"span":[32,11,25]},{"path":[4,6,2,0,1],"span":[32,26,34]},{"path":[4,6,2,0,3],"span":[32,37,38]},{"path":[5,0],"span":[34,0,40,1]},{"path":[5,0,1],"span":[34,5,13]},{"path":[5,0,2,0],"span":[35,2,19]},{"path":[5,0,2,0,1],"span":[35,2,14]},{"path":[5,0,2,0,2],"span":[35,17,18]},{"path":[5,0,2,1],"span":[36,2,19]},{"path":[5,0,2,1,1],"span":[36,2,14]},{"path":[5,0,2,1,2],"span":[36,17,18]},{"path":[5,0,2,2],"span":[37,2,11]},{"path":[5,0,2,2,1],"span":[37,2,6]},{"path":[5,0,2,2,2],"span":[37,9,10]},{"path":[5,0,2,3],"span":[38,2,13]},{"path":[5,0,2,3,1],"span":[38,2,8]},{"path":[5,0,2,3,2],"span":[38,11,12]},{"path":[5,0,2,4],"span":[39,2,11]},{"path":[5,0,2,4,1],"span":[39,2,6]},{"path":[5,0,2,4,2],"span":[39,9,10]},{"path":[4,7],"span":[41,0,48,1]},{"path":[4,7,1],"span":[41,8,19]},{"path":[4,7,2,0],"span":[42,2,16]},{"path":[4,7,2,0,5],"span":[42,2,8]},{"path":[4,7,2,0,1],"span":[42,9,11]},{"path":[4,7,2,0,3],"span":[42,14,15]},{"path":[4,7,2,1],"span":[43,2,18]},{"path":[4,7,2,1,5],"span":[43,2,8]},{"path":[4,7,2,1,1],"span":[43,9,13]},{"path":[4,7,2,1,3],"span":[43,16,17]},{"path":[4,7,2,2],"span":[44,2,26]},{"path":[4,7,2,2,5],"span":[44,2,8]},{"path":[4,7,2,2,1],"span":[44,9,21]},{"path":[4,7,2,2,3],"span":[44,24,25]},{"path":[4,7,2,3],"span":[45,2,22]},{"path":[4,7,2,3,5],"span":[45,2,8]},{"path":[4,7,2,3,1],"span":[45,9,17]},{"path":[4,7,2,3,3],"span":[45,20,21]},{"path":[4,7,2,4],"span":[46,2,20]},{"path":[4,7,2,4,6],"span":[46,2,10]},{"path":[4,7,2,4,1],"span":[46,11,15]},{"path":[4,7,2,4,3],"span":[46,18,19]},{"path":[4,7,2,5],"span":[47,2,32]},{"path":[4,7,2,5,6],"span":[47,2,16]},{"path":[4,7,2,5,1],"span":[47,17,27]},{"path":[4,7,2,5,3],"span":[47,30,31]},{"path":[4,8],"span":[49,0,52,1]},{"path":[4,8,1],"span":[49,8,28]},{"path":[4,8,2,0],"span":[50,2,16]},{"path":[4,8,2,0,5],"span":[50,2,8]},{"path":[4,8,2,0,1],"span":[50,9,11]},{"path":[4,8,2,0,3],"span":[50,14,15]},{"path":[4,8,2,1],"span":[51,2,20]},{"path":[4,8,2,1,6],"span":[51,2,10]},{"path":[4,8,2,1,1],"span":[51,11,15]},{"path":[4,8,2,1,3],"span":[51,18,19]},{"path":[4,9],"span":[53,0,55,1]},{"path":[4,9,1],"span":[53,8,29]},{"path":[4,9,2,0],"span":[54,2,19]},{"path":[4,9,2,0,5],"span":[54,2,6]},{"path":[4,9,2,0,1],"span":[54,7,14]},{"path":[4,9,2,0,3],"span":[54,17,18]},{"path":[4,10],"span":[56,0,61,1]},{"path":[4,10,1],"span":[56,8,15]},{"path":[4,10,2,0],"span":[57,2,16]},{"path":[4,10,2,0,5],"span":[57,2,8]},{"path":[4,10,2,0,1],"span":[57,9,11]},{"path":[4,10,2,0,3],"span":[57,14,15]},{"path":[4,10,2,1],"span":[58,2,21]},{"path":[4,10,2,1,5],"span":[58,2,8]},{"path":[4,10,2,1,1],"span":[58,9,16]},{"path":[4,10,2,1,3],"span":[58,19,20]},{"path":[4,10,2,2],"span":[59,2,23]},{"path":[4,10,2,2,6],"span":[59,2,13]},{"path":[4,10,2,2,1],"span":[59,14,18]},{"path":[4,10,2,2,3],"span":[59,21,22]},{"path":[4,10,2,3],"span":[60,2,20]},{"path":[4,10,2,3,5],"span":[60,2,6]},{"path":[4,10,2,3,1],"span":[60,7,15]},{"path":[4,10,2,3,3],"span":[60,18,19]},{"path":[4,11],"span":[62,0,66,1]},{"path":[4,11,1],"span":[62,8,38]},{"path":[4,11,2,0],"span":[63,2,24]},{"path":[4,11,2,0,5],"span":[63,2,8]},{"path":[4,11,2,0,1],"span":[63,9,19]},{"path":[4,11,2,0,3],"span":[63,22,23]},{"path":[4,11,2,1],"span":[64,2,26]},{"path":[4,11,2,1,5],"span":[64,2,6]},{"path":[4,11,2,1,1],"span":[64,7,21]},{"path":[4,11,2,1,3],"span":[64,24,25]},{"path":[4,11,2,2],"span":[65,2,40]},{"path":[4,11,2,2,5],"span":[65,2,6]},{"path":[4,11,2,2,1],"span":[65,7,35]},{"path":[4,11,2,2,3],"span":[65,38,39]},{"path":[4,12],"span":[67,0,69,1]},{"path":[4,12,1],"span":[67,8,39]},{"path":[4,12,2,0],"span":[68,2,31]},{"path":[4,12,2,0,4],"span":[68,2,10]},{"path":[4,12,2,0,6],"span":[68,11,18]},{"path":[4,12,2,0,1],"span":[68,19,26]},{"path":[4,12,2,0,3],"span":[68,29,30]},{"path":[4,13],"span":[70,0,73,1]},{"path":[4,13,1],"span":[70,8,41]},{"path":[4,13,2,0],"span":[71,2,24]},{"path":[4,13,2,0,5],"span":[71,2,8]},{"path":[4,13,2,0,1],"span":[71,9,19]},{"path":[4,13,2,0,3],"span":[71,22,23]},{"path":[4,13,2,1],"span":[72,2,46]},{"path":[4,13,2,1,5],"span":[72,2,6]},{"path":[4,13,2,1,1],"span":[72,7,21]},{"path":[4,13,2,1,3],"span":[72,24,25]},{"path":[4,13,2,1,8],"span":[72,26,45]},{"path":[4,13,2,1,8,3],"span":[72,27,44]},{"path":[4,14],"span":[74,0,76,1]},{"path":[4,14,1],"span":[74,8,42]},{"path":[4,14,2,0],"span":[75,2,31]},{"path":[4,14,2,0,4],"span":[75,2,10]},{"path":[4,14,2,0,6],"span":[75,11,18]},{"path":[4,14,2,0,1],"span":[75,19,26]},{"path":[4,14,2,0,3],"span":[75,29,30]},{"path":[4,15],"span":[77,0,86,1]},{"path":[4,15,1],"span":[77,8,43]},{"path":[4,15,2,0],"span":[78,2,24]},{"path":[4,15,2,0,5],"span":[78,2,8]},{"path":[4,15,2,0,1],"span":[78,9,19]},{"path":[4,15,2,0,3],"span":[78,22,23]},{"path":[4,15,2,1],"span":[79,2,21]},{"path":[4,15,2,1,5],"span":[79,2,8]},{"path":[4,15,2,1,1],"span":[79,9,16]},{"path":[4,15,2,1,3],"span":[79,19,20]},{"path":[4,15,2,2],"span":[80,2,22]},{"path":[4,15,2,2,5],"span":[80,2,6]},{"path":[4,15,2,2,1],"span":[80,7,17]},{"path":[4,15,2,2,3],"span":[80,20,21]},{"path":[4,15,3,0],"span":[81,2,84,3]},{"path":[4,15,3,0,1],"span":[81,10,18]},{"path":[4,15,3,0,2,0],"span":[82,4,21]},{"path":[4,15,3,0,2,0,5],"span":[82,4,8]},{"path":[4,15,3,0,2,0,1],"span":[82,9,16]},{"path":[4,15,3,0,2,0,3],"span":[82,19,20]},{"path":[4,15,3,0,2,1],"span":[83,4,26]},{"path":[4,15,3,0,2,1,5],"span":[83,4,8]},{"path":[4,15,3,0,2,1,1],"span":[83,9,21]},{"path":[4,15,3,0,2,1,3],"span":[83,24,25]},{"path":[4,15,2,3],"span":[85,2,25]},{"path":[4,15,2,3,6],"span":[85,2,10]},{"path":[4,15,2,3,1],"span":[85,11,20]},{"path":[4,15,2,3,3],"span":[85,23,24]},{"path":[4,16],"span":[87,0,89,1]},{"path":[4,16,1],"span":[87,8,44]},{"path":[4,16,2,0],"span":[88,2,18]},{"path":[4,16,2,0,5],"span":[88,2,6]},{"path":[4,16,2,0,1],"span":[88,7,13]},{"path":[4,16,2,0,3],"span":[88,16,17]},{"path":[4,17],"span":[90,0,93,1]},{"path":[4,17,1],"span":[90,8,42]},{"path":[4,17,2,0],"span":[91,2,23]},{"path":[4,17,2,0,5],"span":[91,2,8]},{"path":[4,17,2,0,1],"span":[91,9,18]},{"path":[4,17,2,0,3],"span":[91,21,22]},{"path":[4,17,2,1],"span":[92,2,21]},{"path":[4,17,2,1,5],"span":[92,2,8]},{"path":[4,17,2,1,1],"span":[92,9,16]},{"path":[4,17,2,1,3],"span":[92,19,20]},{"path":[4,18],"span":[94,0,96,1]},{"path":[4,18,1],"span":[94,8,43]},{"path":[4,18,2,0],"span":[95,2,18]},{"path":[4,18,2,0,5],"span":[95,2,6]},{"path":[4,18,2,0,1],"span":[95,7,13]},{"path":[4,18,2,0,3],"span":[95,16,17]},{"path":[5,1],"span":[97,0,101,1]},{"path":[5,1,1],"span":[97,5,22]},{"path":[5,1,2,0],"span":[98,2,39]},{"path":[5,1,2,0,1],"span":[98,2,34]},{"path":[5,1,2,0,2],"span":[98,37,38]},{"path":[5,1,2,1],"span":[99,2,31]},{"path":[5,1,2,1,1],"span":[99,2,26]},{"path":[5,1,2,1,2],"span":[99,29,30]},{"path":[5,1,2,2],"span":[100,2,33]},{"path":[5,1,2,2,1],"span":[100,2,28]},{"path":[5,1,2,2,2],"span":[100,31,32]},{"path":[4,19],"span":[102,0,119,1]},{"path":[4,19,1],"span":[102,8,15]},{"path":[4,19,2,0],"span":[103,2,16]},{"path":[4,19,2,0,5],"span":[103,2,8]},{"path":[4,19,2,0,1],"span":[103,9,11]},{"path":[4,19,2,0,3],"span":[103,14,15]},{"path":[4,19,2,1],"span":[104,2,21]},{"path":[4,19,2,1,5],"span":[104,2,8]},{"path":[4,19,2,1,1],"span":[104,9,16]},{"path":[4,19,2,1,3],"span":[104,19,20]},{"path":[4,19,2,2],"span":[105,2,26]},{"path":[4,19,2,2,5],"span":[105,2,8]},{"path":[4,19,2,2,1],"span":[105,9,21]},{"path":[4,19,2,2,3],"span":[105,24,25]},{"path":[4,19,2,3],"span":[106,2,25]},{"path":[4,19,2,3,5],"span":[106,2,8]},{"path":[4,19,2,3,1],"span":[106,9,20]},{"path":[4,19,2,3,3],"span":[106,23,24]},{"path":[4,19,2,4],"span":[107,2,20]},{"path":[4,19,2,4,5],"span":[107,2,8]},{"path":[4,19,2,4,1],"span":[107,9,15]},{"path":[4,19,2,4,3],"span":[107,18,19]},{"path":[4,19,2,5],"span":[108,2,18]},{"path":[4,19,2,5,5],"span":[108,2,8]},{"path":[4,19,2,5,1],"span":[108,9,13]},{"path":[4,19,2,5,3],"span":[108,16,17]},{"path":[4,19,2,6],"span":[109,2,27]},{"path":[4,19,2,6,5],"span":[109,2,8]},{"path":[4,19,2,6,1],"span":[109,9,22]},{"path":[4,19,2,6,3],"span":[109,25,26]},{"path":[4,19,2,7],"span":[110,2,23]},{"path":[4,19,2,7,5],"span":[110,2,8]},{"path":[4,19,2,7,1],"span":[110,9,18]},{"path":[4,19,2,7,3],"span":[110,21,22]},{"path":[4,19,3,0],"span":[111,2,113,3]},{"path":[4,19,3,0,1],"span":[111,10,22]},{"path":[4,19,3,0,2,0],"span":[112,4,32]},{"path":[4,19,3,0,2,0,6],"span":[112,4,21]},{"path":[4,19,3,0,2,0,1],"span":[112,22,27]},{"path":[4,19,3,0,2,0,3],"span":[112,30,31]},{"path":[4,19,2,8],"span":[114,2,25]},{"path":[4,19,2,8,6],"span":[114,2,14]},{"path":[4,19,2,8,1],"span":[114,15,20]},{"path":[4,19,2,8,3],"span":[114,23,24]},{"path":[4,19,2,9],"span":[115,2,25]},{"path":[4,19,2,9,5],"span":[115,2,8]},{"path":[4,19,2,9,1],"span":[115,9,19]},{"path":[4,19,2,9,3],"span":[115,22,24]},{"path":[4,19,2,10],"span":[116,2,22]},{"path":[4,19,2,10,5],"span":[116,2,8]},{"path":[4,19,2,10,1],"span":[116,9,16]},{"path":[4,19,2,10,3],"span":[116,19,21]},{"path":[4,19,2,11],"span":[117,2,39]},{"path":[4,19,2,11,5],"span":[117,2,8]},{"path":[4,19,2,11,1],"span":[117,9,13]},{"path":[4,19,2,11,3],"span":[117,16,18]},{"path":[4,19,2,11,8],"span":[117,19,38]},{"path":[4,19,2,11,8,3],"span":[117,20,37]},{"path":[4,19,2,12],"span":[118,2,32]},{"path":[4,19,2,12,6],"span":[118,2,13]},{"path":[4,19,2,12,1],"span":[118,14,26]},{"path":[4,19,2,12,3],"span":[118,29,31]},{"path":[4,20],"span":[120,0,123,1]},{"path":[4,20,1],"span":[120,8,26]},{"path":[4,20,2,0],"span":[121,2,23]},{"path":[4,20,2,0,5],"span":[121,2,8]},{"path":[4,20,2,0,1],"span":[121,9,18]},{"path":[4,20,2,0,3],"span":[121,21,22]},{"path":[4,20,2,1],"span":[122,2,27]},{"path":[4,20,2,1,5],"span":[122,2,8]},{"path":[4,20,2,1,1],"span":[122,9,22]},{"path":[4,20,2,1,3],"span":[122,25,26]},{"path":[4,21],"span":[124,0,126,1]},{"path":[4,21,1],"span":[124,8,37]},{"path":[4,21,2,0],"span":[125,2,21]},{"path":[4,21,2,0,5],"span":[125,2,8]},{"path":[4,21,2,0,1],"span":[125,9,16]},{"path":[4,21,2,0,3],"span":[125,19,20]},{"path":[4,22],"span":[127,0,129,1]},{"path":[4,22,1],"span":[127,8,32]},{"path":[4,22,2,0],"span":[128,2,18]},{"path":[4,22,2,0,5],"span":[128,2,7]},{"path":[4,22,2,0,1],"span":[128,8,13]},{"path":[4,22,2,0,3],"span":[128,16,17]},{"path":[4,23],"span":[130,0,132,1]},{"path":[4,23,1],"span":[130,8,30]},{"path":[4,23,2,0],"span":[131,2,34]},{"path":[4,23,2,0,4],"span":[131,2,10]},{"path":[4,23,2,0,5],"span":[131,11,17]},{"path":[4,23,2,0,1],"span":[131,18,29]},{"path":[4,23,2,0,3],"span":[131,32,33]},{"path":[4,24],"span":[133,0,135,1]},{"path":[4,24,1],"span":[133,8,31]},{"path":[4,24,2,0],"span":[134,2,31]},{"path":[4,24,2,0,4],"span":[134,2,10]},{"path":[4,24,2,0,6],"span":[134,11,18]},{"path":[4,24,2,0,1],"span":[134,19,26]},{"path":[4,24,2,0,3],"span":[134,29,30]},{"path":[4,25],"span":[136,0,140,1]},{"path":[4,25,1],"span":[136,8,27]},{"path":[4,25,8,0],"span":[137,2,139,3]},{"path":[4,25,8,0,1],"span":[137,8,12]},{"path":[4,25,2,0],"span":[138,4,25]},{"path":[4,25,2,0,6],"span":[138,4,15]},{"path":[4,25,2,0,1],"span":[138,16,20]},{"path":[4,25,2,0,3],"span":[138,23,24]},{"path":[4,26],"span":[141,0,149,1]},{"path":[4,26,1],"span":[141,8,32]},{"path":[4,26,2,0],"span":[142,2,21]},{"path":[4,26,2,0,5],"span":[142,2,8]},{"path":[4,26,2,0,1],"span":[142,9,16]},{"path":[4,26,2,0,3],"span":[142,19,20]},{"path":[4,26,3,0],"span":[143,2,147,3]},{"path":[4,26,3,0,1],"span":[143,10,16]},{"path":[4,26,3,0,2,0],"span":[144,4,32]},{"path":[4,26,3,0,2,0,6],"span":[144,4,21]},{"path":[4,26,3,0,2,0,1],"span":[144,22,27]},{"path":[4,26,3,0,2,0,3],"span":[144,30,31]},{"path":[4,26,3,0,2,1],"span":[145,4,43]},{"path":[4,26,3,0,2,1,6],"span":[145,4,15]},{"path":[4,26,3,0,2,1,1],"span":[145,16,20]},{"path":[4,26,3,0,2,1,3],"span":[145,21,22]},{"path":[4,26,3,0,2,1,8],"span":[145,23,42]},{"path":[4,26,3,0,2,1,8,3],"span":[145,24,41]},{"path":[4,26,3,0,2,2],"span":[146,4,39]},{"path":[4,26,3,0,2,2,6],"span":[146,4,23]},{"path":[4,26,3,0,2,2,1],"span":[146,24,36]},{"path":[4,26,3,0,2,2,3],"span":[146,37,38]},{"path":[4,26,2,1],"span":[148,2,20]},{"path":[4,26,2,1,6],"span":[148,2,8]},{"path":[4,26,2,1,1],"span":[148,9,15]},{"path":[4,26,2,1,3],"span":[148,18,19]},{"path":[4,27],"span":[150,0,152,1]},{"path":[4,27,1],"span":[150,8,33]},{"path":[4,27,2,0],"span":[151,2,31]},{"path":[4,27,2,0,4],"span":[151,2,10]},{"path":[4,27,2,0,6],"span":[151,11,18]},{"path":[4,27,2,0,1],"span":[151,19,26]},{"path":[4,27,2,0,3],"span":[151,29,30]},{"path":[4,28],"span":[153,0,155,1]},{"path":[4,28,1],"span":[153,8,42]},{"path":[4,28,2,0],"span":[154,2,31]},{"path":[4,28,2,0,4],"span":[154,2,10]},{"path":[4,28,2,0,5],"span":[154,11,17]},{"path":[4,28,2,0,1],"span":[154,18,26]},{"path":[4,28,2,0,3],"span":[154,29,30]},{"path":[4,29],"span":[156,0,158,1]},{"path":[4,29,1],"span":[156,8,43]},{"path":[4,29,2,0],"span":[157,2,32]},{"path":[4,29,2,0,4],"span":[157,2,10]},{"path":[4,29,2,0,6],"span":[157,11,18]},{"path":[4,29,2,0,1],"span":[157,19,27]},{"path":[4,29,2,0,3],"span":[157,30,31]},{"path":[4,30],"span":[159,0,161,1]},{"path":[4,30,1],"span":[159,8,35]},{"path":[4,30,2,0],"span":[160,2,23]},{"path":[4,30,2,0,5],"span":[160,2,8]},{"path":[4,30,2,0,1],"span":[160,9,18]},{"path":[4,30,2,0,3],"span":[160,21,22]},{"path":[4,31],"span":[162,0,164,1]},{"path":[4,31,1],"span":[162,8,36]},{"path":[4,31,2,0],"span":[163,2,22]},{"path":[4,31,2,0,6],"span":[163,2,9]},{"path":[4,31,2,0,1],"span":[163,10,17]},{"path":[4,31,2,0,3],"span":[163,20,21]},{"path":[4,32],"span":[165,0,177,1]},{"path":[4,32,1],"span":[165,8,28]},{"path":[4,32,9],"span":[166,2,16]},{"path":[4,32,9,0],"span":[166,11,12]},{"path":[4,32,9,0,1],"span":[166,11,12]},{"path":[4,32,9,1],"span":[166,14,15]},{"path":[4,32,9,1,1],"span":[166,14,15]},{"path":[4,32,2,0],"span":[167,2,21]},{"path":[4,32,2,0,5],"span":[167,2,8]},{"path":[4,32,2,0,1],"span":[167,9,16]},{"path":[4,32,2,0,3],"span":[167,19,20]},{"path":[4,32,2,1],"span":[168,2,26]},{"path":[4,32,2,1,5],"span":[168,2,8]},{"path":[4,32,2,1,1],"span":[168,9,21]},{"path":[4,32,2,1,3],"span":[168,24,25]},{"path":[4,32,2,2],"span":[169,2,25]},{"path":[4,32,2,2,5],"span":[169,2,8]},{"path":[4,32,2,2,1],"span":[169,9,20]},{"path":[4,32,2,2,3],"span":[169,23,24]},{"path":[4,32,2,3],"span":[170,2,20]},{"path":[4,32,2,3,5],"span":[170,2,8]},{"path":[4,32,2,3,1],"span":[170,9,15]},{"path":[4,32,2,3,3],"span":[170,18,19]},{"path":[4,32,2,4],"span":[171,2,18]},{"path":[4,32,2,4,5],"span":[171,2,8]},{"path":[4,32,2,4,1],"span":[171,9,13]},{"path":[4,32,2,4,3],"span":[171,16,17]},{"path":[4,32,2,5],"span":[172,2,27]},{"path":[4,32,2,5,5],"span":[172,2,8]},{"path":[4,32,2,5,1],"span":[172,9,22]},{"path":[4,32,2,5,3],"span":[172,25,26]},{"path":[4,32,2,6],"span":[174,2,23]},{"path":[4,32,2,6,5],"span":[174,2,8]},{"path":[4,32,2,6,1],"span":[174,9,18]},{"path":[4,32,2,6,3],"span":[174,21,22]},{"path":[4,32,2,7],"span":[175,2,24]},{"path":[4,32,2,7,6],"span":[175,2,13]},{"path":[4,32,2,7,1],"span":[175,14,18]},{"path":[4,32,2,7,3],"span":[175,21,23]},{"path":[4,32,2,8],"span":[176,2,24]},{"path":[4,32,2,8,5],"span":[176,2,8]},{"path":[4,32,2,8,1],"span":[176,9,18]},{"path":[4,32,2,8,3],"span":[176,21,23]},{"path":[5,2],"span":[178,0,184,1]},{"path":[5,2,1],"span":[178,5,16]},{"path":[5,2,2,0],"span":[179,2,7]},{"path":[5,2,2,0,1],"span":[179,2,4]},{"path":[5,2,2,0,2],"span":[179,5,6]},{"path":[5,2,2,1],"span":[180,2,7]},{"path":[5,2,2,1,1],"span":[180,2,4]},{"path":[5,2,2,1,2],"span":[180,5,6]},{"path":[5,2,2,2],"span":[181,2,13]},{"path":[5,2,2,2,1],"span":[181,2,10]},{"path":[5,2,2,2,2],"span":[181,11,12]},{"path":[5,2,2,3],"span":[182,2,10]},{"path":[5,2,2,3,1],"span":[182,2,7]},{"path":[5,2,2,3,2],"span":[182,8,9]},{"path":[5,2,2,4],"span":[183,2,22]},{"path":[5,2,2,4,1],"span":[183,2,19]},{"path":[5,2,2,4,2],"span":[183,20,21]},{"path":[4,33],"span":[185,0,188,1]},{"path":[4,33,1],"span":[185,8,29]},{"path":[4,33,2,0],"span":[186,2,22]},{"path":[4,33,2,0,6],"span":[186,2,9]},{"path":[4,33,2,0,1],"span":[186,10,17]},{"path":[4,33,2,0,3],"span":[186,20,21]},{"path":[4,33,2,1],"span":[187,2,37]},{"path":[4,33,2,1,6],"span":[187,2,20]},{"path":[4,33,2,1,1],"span":[187,21,32]},{"path":[4,33,2,1,3],"span":[187,35,36]},{"path":[4,34],"span":[189,0,198,1]},{"path":[4,34,1],"span":[189,8,35]},{"path":[4,34,2,0],"span":[190,2,21]},{"path":[4,34,2,0,5],"span":[190,2,8]},{"path":[4,34,2,0,1],"span":[190,9,16]},{"path":[4,34,2,0,3],"span":[190,19,20]},{"path":[4,34,2,1],"span":[191,2,26]},{"path":[4,34,2,1,5],"span":[191,2,8]},{"path":[4,34,2,1,1],"span":[191,9,21]},{"path":[4,34,2,1,3],"span":[191,24,25]},{"path":[4,34,2,2],"span":[192,2,25]},{"path":[4,34,2,2,5],"span":[192,2,8]},{"path":[4,34,2,2,1],"span":[192,9,20]},{"path":[4,34,2,2,3],"span":[192,23,24]},{"path":[4,34,2,3],"span":[193,2,23]},{"path":[4,34,2,3,5],"span":[193,2,8]},{"path":[4,34,2,3,1],"span":[193,9,18]},{"path":[4,34,2,3,3],"span":[193,21,22]},{"path":[4,34,2,4],"span":[194,2,23]},{"path":[4,34,2,4,6],"span":[194,2,13]},{"path":[4,34,2,4,1],"span":[194,14,18]},{"path":[4,34,2,4,3],"span":[194,21,22]},{"path":[4,34,2,5],"span":[195,2,27]},{"path":[4,34,2,5,5],"span":[195,2,8]},{"path":[4,34,2,5,1],"span":[195,9,22]},{"path":[4,34,2,5,3],"span":[195,25,26]},{"path":[4,34,2,6],"span":[196,2,23]},{"path":[4,34,2,6,5],"span":[196,2,8]},{"path":[4,34,2,6,1],"span":[196,9,18]},{"path":[4,34,2,6,3],"span":[196,21,22]},{"path":[4,34,2,7],"span":[197,2,25]},{"path":[4,34,2,7,5],"span":[197,2,8]},{"path":[4,34,2,7,1],"span":[197,9,20]},{"path":[4,34,2,7,3],"span":[197,23,24]},{"path":[4,35],"span":[199,0,203,1]},{"path":[4,35,1],"span":[199,8,36]},{"path":[4,35,2,0],"span":[200,2,22]},{"path":[4,35,2,0,6],"span":[200,2,9]},{"path":[4,35,2,0,1],"span":[200,10,17]},{"path":[4,35,2,0,3],"span":[200,20,21]},{"path":[4,35,2,1],"span":[201,2,37]},{"path":[4,35,2,1,6],"span":[201,2,20]},{"path":[4,35,2,1,1],"span":[201,21,32]},{"path":[4,35,2,1,3],"span":[201,35,36]},{"path":[4,35,2,2],"span":[202,2,21]},{"path":[4,35,2,2,5],"span":[202,2,8]},{"path":[4,35,2,2,1],"span":[202,9,16]},{"path":[4,35,2,2,3],"span":[202,19,20]},{"path":[4,36],"span":[204,0,217,1]},{"path":[4,36,1],"span":[204,8,38]},{"path":[4,36,2,0],"span":[205,2,23]},{"path":[4,36,2,0,5],"span":[205,2,8]},{"path":[4,36,2,0,1],"span":[205,9,18]},{"path":[4,36,2,0,3],"span":[205,21,22]},{"path":[4,36,2,1],"span":[206,2,26]},{"path":[4,36,2,1,5],"span":[206,2,8]},{"path":[4,36,2,1,1],"span":[206,9,21]},{"path":[4,36,2,1,3],"span":[206,24,25]},{"path":[4,36,2,2],"span":[207,2,25]},{"path":[4,36,2,2,5],"span":[207,2,8]},{"path":[4,36,2,2,1],"span":[207,9,20]},{"path":[4,36,2,2,3],"span":[207,23,24]},{"path":[4,36,2,3],"span":[208,2,20]},{"path":[4,36,2,3,5],"span":[208,2,8]},{"path":[4,36,2,3,1],"span":[208,9,15]},{"path":[4,36,2,3,3],"span":[208,18,19]},{"path":[4,36,2,4],"span":[209,2,18]},{"path":[4,36,2,4,5],"span":[209,2,8]},{"path":[4,36,2,4,1],"span":[209,9,13]},{"path":[4,36,2,4,3],"span":[209,16,17]},{"path":[4,36,3,0],"span":[210,2,215,3]},{"path":[4,36,3,0,1],"span":[210,10,24]},{"path":[4,36,3,0,2,0],"span":[211,4,41]},{"path":[4,36,3,0,2,0,5],"span":[211,4,10]},{"path":[4,36,3,0,2,0,1],"span":[211,11,36]},{"path":[4,36,3,0,2,0,3],"span":[211,39,40]},{"path":[4,36,3,0,2,1],"span":[212,4,47]},{"path":[4,36,3,0,2,1,5],"span":[212,4,10]},{"path":[4,36,3,0,2,1,1],"span":[212,11,42]},{"path":[4,36,3,0,2,1,3],"span":[212,45,46]},{"path":[4,36,3,0,2,2],"span":[213,4,45]},{"path":[4,36,3,0,2,2,5],"span":[213,4,10]},{"path":[4,36,3,0,2,2,1],"span":[213,11,40]},{"path":[4,36,3,0,2,2,3],"span":[213,43,44]},{"path":[4,36,3,0,2,3],"span":[214,4,40]},{"path":[4,36,3,0,2,3,5],"span":[214,4,10]},{"path":[4,36,3,0,2,3,1],"span":[214,11,35]},{"path":[4,36,3,0,2,3,3],"span":[214,38,39]},{"path":[4,36,2,5],"span":[216,2,37]},{"path":[4,36,2,5,6],"span":[216,2,16]},{"path":[4,36,2,5,1],"span":[216,17,32]},{"path":[4,36,2,5,3],"span":[216,35,36]},{"path":[4,37],"span":[218,0,220,1]},{"path":[4,37,1],"span":[218,8,39]},{"path":[4,37,2,0],"span":[219,2,22]},{"path":[4,37,2,0,6],"span":[219,2,9]},{"path":[4,37,2,0,1],"span":[219,10,17]},{"path":[4,37,2,0,3],"span":[219,20,21]},{"path":[4,38],"span":[221,0,224,1]},{"path":[4,38,1],"span":[221,8,38]},{"path":[4,38,2,0],"span":[222,2,23]},{"path":[4,38,2,0,5],"span":[222,2,8]},{"path":[4,38,2,0,1],"span":[222,9,18]},{"path":[4,38,2,0,3],"span":[222,21,22]},{"path":[4,38,2,1],"span":[223,2,22]},{"path":[4,38,2,1,5],"span":[223,2,8]},{"path":[4,38,2,1,1],"span":[223,9,17]},{"path":[4,38,2,1,3],"span":[223,20,21]},{"path":[4,39],"span":[225,0,230,1]},{"path":[4,39,1],"span":[225,8,39]},{"path":[4,39,2,0],"span":[226,2,19]},{"path":[4,39,2,0,5],"span":[226,2,6]},{"path":[4,39,2,0,1],"span":[226,7,14]},{"path":[4,39,2,0,3],"span":[226,17,18]},{"path":[4,39,2,1],"span":[227,2,21]},{"path":[4,39,2,1,5],"span":[227,2,8]},{"path":[4,39,2,1,1],"span":[227,9,16]},{"path":[4,39,2,1,3],"span":[227,19,20]},{"path":[4,39,2,2],"span":[228,2,28]},{"path":[4,39,2,2,5],"span":[228,2,8]},{"path":[4,39,2,2,1],"span":[228,9,23]},{"path":[4,39,2,2,3],"span":[228,26,27]},{"path":[4,39,2,3],"span":[229,2,28]},{"path":[4,39,2,3,5],"span":[229,2,8]},{"path":[4,39,2,3,1],"span":[229,9,23]},{"path":[4,39,2,3,3],"span":[229,26,27]},{"path":[4,40],"span":[231,0,236,1]},{"path":[4,40,1],"span":[231,8,38]},{"path":[4,40,2,0],"span":[232,2,23]},{"path":[4,40,2,0,5],"span":[232,2,8]},{"path":[4,40,2,0,1],"span":[232,9,18]},{"path":[4,40,2,0,3],"span":[232,21,22]},{"path":[4,40,2,1],"span":[233,2,22]},{"path":[4,40,2,1,5],"span":[233,2,8]},{"path":[4,40,2,1,1],"span":[233,9,17]},{"path":[4,40,2,1,3],"span":[233,20,21]},{"path":[4,40,2,2],"span":[234,2,23]},{"path":[4,40,2,2,5],"span":[234,2,6]},{"path":[4,40,2,2,1],"span":[234,7,18]},{"path":[4,40,2,2,3],"span":[234,21,22]},{"path":[4,40,2,3],"span":[235,2,23]},{"path":[4,40,2,3,5],"span":[235,2,6]},{"path":[4,40,2,3,1],"span":[235,7,18]},{"path":[4,40,2,3,3],"span":[235,21,22]},{"path":[4,41],"span":[237,0,239,1]},{"path":[4,41,1],"span":[237,8,39]},{"path":[4,41,2,0],"span":[238,2,19]},{"path":[4,41,2,0,5],"span":[238,2,6]},{"path":[4,41,2,0,1],"span":[238,7,14]},{"path":[4,41,2,0,3],"span":[238,17,18]},{"path":[4,42],"span":[240,0,246,1]},{"path":[4,42,1],"span":[240,8,41]},{"path":[4,42,2,0],"span":[241,2,23]},{"path":[4,42,2,0,5],"span":[241,2,8]},{"path":[4,42,2,0,1],"span":[241,9,18]},{"path":[4,42,2,0,3],"span":[241,21,22]},{"path":[4,42,2,1],"span":[242,2,26]},{"path":[4,42,2,1,5],"span":[242,2,8]},{"path":[4,42,2,1,1],"span":[242,9,21]},{"path":[4,42,2,1,3],"span":[242,24,25]},{"path":[4,42,2,2],"span":[243,2,25]},{"path":[4,42,2,2,5],"span":[243,2,8]},{"path":[4,42,2,2,1],"span":[243,9,20]},{"path":[4,42,2,2,3],"span":[243,23,24]},{"path":[4,42,2,3],"span":[244,2,23]},{"path":[4,42,2,3,5],"span":[244,2,8]},{"path":[4,42,2,3,1],"span":[244,9,18]},{"path":[4,42,2,3,3],"span":[244,21,22]},{"path":[4,42,2,4],"span":[245,2,23]},{"path":[4,42,2,4,6],"span":[245,2,13]},{"path":[4,42,2,4,1],"span":[245,14,18]},{"path":[4,42,2,4,3],"span":[245,21,22]},{"path":[4,43],"span":[247,0,252,1]},{"path":[4,43,1],"span":[247,8,42]},{"path":[4,43,2,0],"span":[248,2,22]},{"path":[4,43,2,0,6],"span":[248,2,9]},{"path":[4,43,2,0,1],"span":[248,10,17]},{"path":[4,43,2,0,3],"span":[248,20,21]},{"path":[4,43,2,1],"span":[249,2,37]},{"path":[4,43,2,1,6],"span":[249,2,20]},{"path":[4,43,2,1,1],"span":[249,21,32]},{"path":[4,43,2,1,3],"span":[249,35,36]},{"path":[4,43,2,2],"span":[250,2,23]},{"path":[4,43,2,2,6],"span":[250,2,13]},{"path":[4,43,2,2,1],"span":[250,14,18]},{"path":[4,43,2,2,3],"span":[250,21,22]},{"path":[4,43,2,3],"span":[251,2,21]},{"path":[4,43,2,3,5],"span":[251,2,8]},{"path":[4,43,2,3,1],"span":[251,9,16]},{"path":[4,43,2,3,3],"span":[251,19,20]},{"path":[4,44],"span":[253,0,257,1]},{"path":[4,44,1],"span":[253,8,40]},{"path":[4,44,2,0],"span":[254,2,21]},{"path":[4,44,2,0,5],"span":[254,2,8]},{"path":[4,44,2,0,1],"span":[254,9,16]},{"path":[4,44,2,0,3],"span":[254,19,20]},{"path":[4,44,2,1],"span":[255,2,34]},{"path":[4,44,2,1,4],"span":[255,2,10]},{"path":[4,44,2,1,5],"span":[255,11,17]},{"path":[4,44,2,1,1],"span":[255,18,29]},{"path":[4,44,2,1,3],"span":[255,32,33]},{"path":[4,44,2,2],"span":[256,2,21]},{"path":[4,44,2,2,5],"span":[256,2,8]},{"path":[4,44,2,2,1],"span":[256,9,16]},{"path":[4,44,2,2,3],"span":[256,19,20]},{"path":[4,45],"span":[258,0,264,1]},{"path":[4,45,1],"span":[258,8,41]},{"path":[4,45,3,0],"span":[259,2,262,3]},{"path":[4,45,3,0,1],"span":[259,10,16]},{"path":[4,45,3,0,2,0],"span":[260,4,26]},{"path":[4,45,3,0,2,0,5],"span":[260,4,10]},{"path":[4,45,3,0,2,0,1],"span":[260,11,21]},{"path":[4,45,3,0,2,0,3],"span":[260,24,25]},{"path":[4,45,3,0,2,1],"span":[261,4,20]},{"path":[4,45,3,0,2,1,5],"span":[261,4,8]},{"path":[4,45,3,0,2,1,1],"span":[261,9,15]},{"path":[4,45,3,0,2,1,3],"span":[261,18,19]},{"path":[4,45,2,0],"span":[263,2,29]},{"path":[4,45,2,0,4],"span":[263,2,10]},{"path":[4,45,2,0,6],"span":[263,11,17]},{"path":[4,45,2,0,1],"span":[263,18,24]},{"path":[4,45,2,0,3],"span":[263,27,28]},{"path":[4,46],"span":[265,0,268,1]},{"path":[4,46,1],"span":[265,8,46]},{"path":[4,46,2,0],"span":[266,2,21]},{"path":[4,46,2,0,5],"span":[266,2,8]},{"path":[4,46,2,0,1],"span":[266,9,16]},{"path":[4,46,2,0,3],"span":[266,19,20]},{"path":[4,46,2,1],"span":[267,2,23]},{"path":[4,46,2,1,5],"span":[267,2,8]},{"path":[4,46,2,1,1],"span":[267,9,18]},{"path":[4,46,2,1,3],"span":[267,21,22]},{"path":[4,47],"span":[269,0,271,1]},{"path":[4,47,1],"span":[269,8,47]},{"path":[4,47,2,0],"span":[270,2,31]},{"path":[4,47,2,0,4],"span":[270,2,10]},{"path":[4,47,2,0,6],"span":[270,11,18]},{"path":[4,47,2,0,1],"span":[270,19,26]},{"path":[4,47,2,0,3],"span":[270,29,30]},{"path":[4,48],"span":[272,0,275,1]},{"path":[4,48,1],"span":[272,8,33]},{"path":[4,48,2,0],"span":[273,2,21]},{"path":[4,48,2,0,5],"span":[273,2,8]},{"path":[4,48,2,0,1],"span":[273,9,16]},{"path":[4,48,2,0,3],"span":[273,19,20]},{"path":[4,48,2,1],"span":[274,2,24]},{"path":[4,48,2,1,5],"span":[274,2,8]},{"path":[4,48,2,1,1],"span":[274,9,19]},{"path":[4,48,2,1,3],"span":[274,22,23]},{"path":[4,49],"span":[276,0,291,1]},{"path":[4,49,1],"span":[276,8,34]},{"path":[4,49,3,0],"span":[277,2,280,3]},{"path":[4,49,3,0,1],"span":[277,10,29]},{"path":[4,49,3,0,2,0],"span":[278,4,19]},{"path":[4,49,3,0,2,0,5],"span":[278,4,10]},{"path":[4,49,3,0,2,0,1],"span":[278,11,14]},{"path":[4,49,3,0,2,0,3],"span":[278,17,18]},{"path":[4,49,3,0,2,1],"span":[279,4,34]},{"path":[4,49,3,0,2,1,5],"span":[279,4,9]},{"path":[4,49,3,0,2,1,1],"span":[279,10,29]},{"path":[4,49,3,0,2,1,3],"span":[279,32,33]},{"path":[4,49,3,1],"span":[281,2,283,3]},{"path":[4,49,3,1,1],"span":[281,10,15]},{"path":[4,49,3,1,2,0],"span":[282,4,18]},{"path":[4,49,3,1,2,0,5],"span":[282,4,10]},{"path":[4,49,3,1,2,0,1],"span":[282,11,13]},{"path":[4,49,3,1,2,0,3],"span":[282,16,17]},{"path":[4,49,3,2],"span":[284,2,289,3]},{"path":[4,49,3,2,1],"span":[284,10,14]},{"path":[4,49,3,2,2,0],"span":[285,4,18]},{"path":[4,49,3,2,2,0,5],"span":[285,4,10]},{"path":[4,49,3,2,2,0,1],"span":[285,11,13]},{"path":[4,49,3,2,2,0,3],"span":[285,16,17]},{"path":[4,49,3,2,2,1],"span":[286,4,45]},{"path":[4,49,3,2,2,1,4],"span":[286,4,12]},{"path":[4,49,3,2,2,1,6],"span":[286,13,32]},{"path":[4,49,3,2,2,1,1],"span":[286,33,40]},{"path":[4,49,3,2,2,1,3],"span":[286,43,44]},{"path":[4,49,3,2,2,2],"span":[287,4,39]},{"path":[4,49,3,2,2,2,4],"span":[287,4,12]},{"path":[4,49,3,2,2,2,6],"span":[287,13,20]},{"path":[4,49,3,2,2,2,1],"span":[287,21,34]},{"path":[4,49,3,2,2,2,3],"span":[287,37,38]},{"path":[4,49,3,2,2,3],"span":[288,4,30]},{"path":[4,49,3,2,2,3,4],"span":[288,4,12]},{"path":[4,49,3,2,2,3,6],"span":[288,13,18]},{"path":[4,49,3,2,2,3,1],"span":[288,19,25]},{"path":[4,49,3,2,2,3,3],"span":[288,28,29]},{"path":[4,49,2,0],"span":[290,2,26]},{"path":[4,49,2,0,4],"span":[290,2,10]},{"path":[4,49,2,0,6],"span":[290,11,15]},{"path":[4,49,2,0,1],"span":[290,16,21]},{"path":[4,49,2,0,3],"span":[290,24,25]},{"path":[4,50],"span":[292,0,294,1]},{"path":[4,50,1],"span":[292,8,53]},{"path":[4,50,2,0],"span":[293,2,35]},{"path":[4,50,2,0,5],"span":[293,2,8]},{"path":[4,50,2,0,1],"span":[293,9,30]},{"path":[4,50,2,0,3],"span":[293,33,34]},{"path":[4,51],"span":[295,0,298,1]},{"path":[4,51,1],"span":[295,8,54]},{"path":[4,51,2,0],"span":[296,2,21]},{"path":[4,51,2,0,5],"span":[296,2,8]},{"path":[4,51,2,0,1],"span":[296,9,16]},{"path":[4,51,2,0,3],"span":[296,19,20]},{"path":[4,51,2,1],"span":[297,2,28]},{"path":[4,51,2,1,5],"span":[297,2,8]},{"path":[4,51,2,1,1],"span":[297,9,23]},{"path":[4,51,2,1,3],"span":[297,26,27]},{"path":[4,52],"span":[299,0,316,1]},{"path":[4,52,1],"span":[299,8,34]},{"path":[4,52,2,0],"span":[300,2,30]},{"path":[4,52,2,0,5],"span":[300,2,8]},{"path":[4,52,2,0,1],"span":[300,9,25]},{"path":[4,52,2,0,3],"span":[300,28,29]},{"path":[4,52,2,1],"span":[301,2,39]},{"path":[4,52,2,1,5],"span":[301,2,8]},{"path":[4,52,2,1,1],"span":[301,9,14]},{"path":[4,52,2,1,3],"span":[301,17,18]},{"path":[4,52,2,1,8],"span":[301,19,38]},{"path":[4,52,2,1,8,3],"span":[301,20,37]},{"path":[4,52,3,0],"span":[303,2,308,3]},{"path":[4,52,3,0,1],"span":[303,10,22]},{"path":[4,52,3,0,2,0],"span":[304,4,20]},{"path":[4,52,3,0,2,0,5],"span":[304,4,10]},{"path":[4,52,3,0,2,0,1],"span":[304,11,15]},{"path":[4,52,3,0,2,0,3],"span":[304,18,19]},{"path":[4,52,3,0,2,1],"span":[305,4,44]},{"path":[4,52,3,0,2,1,5],"span":[305,4,10]},{"path":[4,52,3,0,2,1,1],"span":[305,11,19]},{"path":[4,52,3,0,2,1,3],"span":[305,22,23]},{"path":[4,52,3,0,2,1,8],"span":[305,24,43]},{"path":[4,52,3,0,2,1,8,3],"span":[305,25,42]},{"path":[4,52,3,0,2,2],"span":[306,4,25]},{"path":[4,52,3,0,2,2,5],"span":[306,4,10]},{"path":[4,52,3,0,2,2,1],"span":[306,11,20]},{"path":[4,52,3,0,2,2,3],"span":[306,23,24]},{"path":[4,52,3,0,2,3],"span":[307,4,23]},{"path":[4,52,3,0,2,3,5],"span":[307,4,10]},{"path":[4,52,3,0,2,3,1],"span":[307,11,18]},{"path":[4,52,3,0,2,3,3],"span":[307,21,22]},{"path":[4,52,2,2],"span":[309,2,35]},{"path":[4,52,2,2,4],"span":[309,2,10]},{"path":[4,52,2,2,6],"span":[309,11,23]},{"path":[4,52,2,2,1],"span":[309,24,30]},{"path":[4,52,2,2,3],"span":[309,33,34]},{"path":[4,52,2,3],"span":[311,2,25]},{"path":[4,52,2,3,5],"span":[311,2,8]},{"path":[4,52,2,3,1],"span":[311,9,20]},{"path":[4,52,2,3,3],"span":[311,23,24]},{"path":[4,52,2,4],"span":[312,2,26]},{"path":[4,52,2,4,5],"span":[312,2,8]},{"path":[4,52,2,4,1],"span":[312,9,21]},{"path":[4,52,2,4,3],"span":[312,24,25]},{"path":[4,52,2,5],"span":[313,2,45]},{"path":[4,52,2,5,5],"span":[313,2,8]},{"path":[4,52,2,5,1],"span":[313,9,20]},{"path":[4,52,2,5,3],"span":[313,23,24]},{"path":[4,52,2,5,8],"span":[313,25,44]},{"path":[4,52,2,5,8,3],"span":[313,26,43]},{"path":[4,52,2,6],"span":[314,2,24]},{"path":[4,52,2,6,5],"span":[314,2,8]},{"path":[4,52,2,6,1],"span":[314,9,19]},{"path":[4,52,2,6,3],"span":[314,22,23]},{"path":[4,52,2,7],"span":[315,2,28]},{"path":[4,52,2,7,5],"span":[315,2,8]},{"path":[4,52,2,7,1],"span":[315,9,23]},{"path":[4,52,2,7,3],"span":[315,26,27]},{"path":[4,53],"span":[317,0,319,1]},{"path":[4,53,1],"span":[317,8,35]},{"path":[4,53,2,0],"span":[318,2,21]},{"path":[4,53,2,0,5],"span":[318,2,6]},{"path":[4,53,2,0,1],"span":[318,7,16]},{"path":[4,53,2,0,3],"span":[318,19,20]},{"path":[4,54],"span":[320,0,322,1]},{"path":[4,54,1],"span":[320,8,12]},{"path":[4,54,2,0],"span":[321,2,16]},{"path":[4,54,2,0,5],"span":[321,2,8]},{"path":[4,54,2,0,1],"span":[321,9,11]},{"path":[4,54,2,0,3],"span":[321,14,15]},{"path":[4,55],"span":[323,0,326,1]},{"path":[4,55,1],"span":[323,8,30]},{"path":[4,55,2,0],"span":[324,2,28]},{"path":[4,55,2,0,5],"span":[324,2,8]},{"path":[4,55,2,0,1],"span":[324,9,23]},{"path":[4,55,2,0,3],"span":[324,26,27]},{"path":[4,55,2,1],"span":[325,2,22]},{"path":[4,55,2,1,5],"span":[325,2,8]},{"path":[4,55,2,1,1],"span":[325,9,17]},{"path":[4,55,2,1,3],"span":[325,20,21]},{"path":[4,56],"span":[327,0,329,1]},{"path":[4,56,1],"span":[327,8,31]},{"path":[4,56,2,0],"span":[328,2,25]},{"path":[4,56,2,0,4],"span":[328,2,10]},{"path":[4,56,2,0,6],"span":[328,11,15]},{"path":[4,56,2,0,1],"span":[328,16,20]},{"path":[4,56,2,0,3],"span":[328,23,24]},{"path":[4,57],"span":[330,0,332,1]},{"path":[4,57,1],"span":[330,8,36]},{"path":[4,57,2,0],"span":[331,2,21]},{"path":[4,57,2,0,5],"span":[331,2,8]},{"path":[4,57,2,0,1],"span":[331,9,16]},{"path":[4,57,2,0,3],"span":[331,19,20]},{"path":[4,58],"span":[333,0,335,1]},{"path":[4,58,1],"span":[333,8,37]},{"path":[4,58,2,0],"span":[334,2,34]},{"path":[4,58,2,0,4],"span":[334,2,10]},{"path":[4,58,2,0,5],"span":[334,11,17]},{"path":[4,58,2,0,1],"span":[334,18,29]},{"path":[4,58,2,0,3],"span":[334,32,33]},{"path":[4,59],"span":[336,0,339,1]},{"path":[4,59,1],"span":[336,8,40]},{"path":[4,59,2,0],"span":[337,2,28]},{"path":[4,59,2,0,5],"span":[337,2,8]},{"path":[4,59,2,0,1],"span":[337,9,23]},{"path":[4,59,2,0,3],"span":[337,26,27]},{"path":[4,59,2,1],"span":[338,2,24]},{"path":[4,59,2,1,5],"span":[338,2,8]},{"path":[4,59,2,1,1],"span":[338,9,19]},{"path":[4,59,2,1,3],"span":[338,22,23]},{"path":[4,60],"span":[340,0,342,1]},{"path":[4,60,1],"span":[340,8,41]},{"path":[4,60,2,0],"span":[341,2,22]},{"path":[4,60,2,0,5],"span":[341,2,6]},{"path":[4,60,2,0,1],"span":[341,7,17]},{"path":[4,60,2,0,3],"span":[341,20,21]},{"path":[5,3],"span":[343,0,350,1]},{"path":[5,3,1],"span":[343,5,21]},{"path":[5,3,2,0],"span":[344,2,43]},{"path":[5,3,2,0,1],"span":[344,2,38]},{"path":[5,3,2,0,2],"span":[344,41,42]},{"path":[5,3,2,1],"span":[345,2,36]},{"path":[5,3,2,1,1],"span":[345,2,31]},{"path":[5,3,2,1,2],"span":[345,34,35]},{"path":[5,3,2,2],"span":[346,2,39]},{"path":[5,3,2,2,1],"span":[346,2,34]},{"path":[5,3,2,2,2],"span":[346,37,38]},{"path":[5,3,2,3],"span":[347,2,38]},{"path":[5,3,2,3,1],"span":[347,2,33]},{"path":[5,3,2,3,2],"span":[347,36,37]},{"path":[5,3,2,4],"span":[348,2,34]},{"path":[5,3,2,4,1],"span":[348,2,29]},{"path":[5,3,2,4,2],"span":[348,32,33]},{"path":[5,3,2,5],"span":[349,2,41]},{"path":[5,3,2,5,1],"span":[349,2,36]},{"path":[5,3,2,5,2],"span":[349,39,40]},{"path":[4,61],"span":[351,0,359,1]},{"path":[4,61,1],"span":[351,8,20]},{"path":[4,61,2,0],"span":[352,2,16]},{"path":[4,61,2,0,5],"span":[352,2,8]},{"path":[4,61,2,0,1],"span":[352,9,11]},{"path":[4,61,2,0,3],"span":[352,14,15]},{"path":[4,61,2,1],"span":[353,2,21]},{"path":[4,61,2,1,5],"span":[353,2,8]},{"path":[4,61,2,1,1],"span":[353,9,16]},{"path":[4,61,2,1,3],"span":[353,19,20]},{"path":[4,61,2,2],"span":[354,2,28]},{"path":[4,61,2,2,6],"span":[354,2,18]},{"path":[4,61,2,2,1],"span":[354,19,23]},{"path":[4,61,2,2,3],"span":[354,26,27]},{"path":[4,61,2,3],"span":[355,2,25]},{"path":[4,61,2,3,5],"span":[355,2,7]},{"path":[4,61,2,3,1],"span":[355,8,20]},{"path":[4,61,2,3,3],"span":[355,23,24]},{"path":[4,61,2,4],"span":[356,2,29]},{"path":[4,61,2,4,5],"span":[356,2,8]},{"path":[4,61,2,4,1],"span":[356,9,24]},{"path":[4,61,2,4,3],"span":[356,27,28]},{"path":[4,61,2,5],"span":[357,2,24]},{"path":[4,61,2,5,5],"span":[357,2,8]},{"path":[4,61,2,5,1],"span":[357,9,19]},{"path":[4,61,2,5,3],"span":[357,22,23]},{"path":[4,61,2,6],"span":[358,2,24]},{"path":[4,61,2,6,5],"span":[358,2,8]},{"path":[4,61,2,6,1],"span":[358,9,19]},{"path":[4,61,2,6,3],"span":[358,22,23]},{"path":[4,62],"span":[360,0,366,1]},{"path":[4,62,1],"span":[360,8,37]},{"path":[4,62,2,0],"span":[361,2,21]},{"path":[4,62,2,0,5],"span":[361,2,8]},{"path":[4,62,2,0,1],"span":[361,9,16]},{"path":[4,62,2,0,3],"span":[361,19,20]},{"path":[4,62,2,1],"span":[362,2,28]},{"path":[4,62,2,1,6],"span":[362,2,18]},{"path":[4,62,2,1,1],"span":[362,19,23]},{"path":[4,62,2,1,3],"span":[362,26,27]},{"path":[4,62,2,2],"span":[363,2,25]},{"path":[4,62,2,2,5],"span":[363,2,7]},{"path":[4,62,2,2,1],"span":[363,8,20]},{"path":[4,62,2,2,3],"span":[363,23,24]},{"path":[4,62,2,3],"span":[364,2,29]},{"path":[4,62,2,3,5],"span":[364,2,8]},{"path":[4,62,2,3,1],"span":[364,9,24]},{"path":[4,62,2,3,3],"span":[364,27,28]},{"path":[4,62,2,4],"span":[365,2,24]},{"path":[4,62,2,4,5],"span":[365,2,8]},{"path":[4,62,2,4,1],"span":[365,9,19]},{"path":[4,62,2,4,3],"span":[365,22,23]},{"path":[4,63],"span":[367,0,369,1]},{"path":[4,63,1],"span":[367,8,38]},{"path":[4,63,2,0],"span":[368,2,32]},{"path":[4,63,2,0,6],"span":[368,2,14]},{"path":[4,63,2,0,1],"span":[368,15,27]},{"path":[4,63,2,0,3],"span":[368,30,31]},{"path":[4,64],"span":[370,0,372,1]},{"path":[4,64,1],"span":[370,8,42]},{"path":[4,64,2,0],"span":[371,2,21]},{"path":[4,64,2,0,5],"span":[371,2,8]},{"path":[4,64,2,0,1],"span":[371,9,16]},{"path":[4,64,2,0,3],"span":[371,19,20]},{"path":[4,65],"span":[373,0,375,1]},{"path":[4,65,1],"span":[373,8,43]},{"path":[4,65,2,0],"span":[374,2,35]},{"path":[4,65,2,0,5],"span":[374,2,8]},{"path":[4,65,2,0,1],"span":[374,9,30]},{"path":[4,65,2,0,3],"span":[374,33,34]},{"path":[4,66],"span":[376,0,378,1]},{"path":[4,66,1],"span":[376,8,47]},{"path":[4,66,2,0],"span":[377,2,23]},{"path":[4,66,2,0,5],"span":[377,2,8]},{"path":[4,66,2,0,1],"span":[377,9,18]},{"path":[4,66,2,0,3],"span":[377,21,22]},{"path":[4,67],"span":[379,0,381,1]},{"path":[4,67,1],"span":[379,8,48]},{"path":[4,67,2,0],"span":[380,2,21]},{"path":[4,67,2,0,5],"span":[380,2,8]},{"path":[4,67,2,0,1],"span":[380,9,16]},{"path":[4,67,2,0,3],"span":[380,19,20]},{"path":[4,68],"span":[382,0,386,1]},{"path":[4,68,1],"span":[382,8,31]},{"path":[4,68,7],"span":[383,2,27]},{"path":[4,68,7,3],"span":[383,2,27]},{"path":[4,68,2,0],"span":[384,2,21]},{"path":[4,68,2,0,5],"span":[384,2,8]},{"path":[4,68,2,0,1],"span":[384,9,16]},{"path":[4,68,2,0,3],"span":[384,19,20]},{"path":[4,68,2,1],"span":[385,2,29]},{"path":[4,68,2,1,4],"span":[385,2,10]},{"path":[4,68,2,1,5],"span":[385,11,17]},{"path":[4,68,2,1,1],"span":[385,18,24]},{"path":[4,68,2,1,3],"span":[385,27,28]},{"path":[4,69],"span":[387,0,390,1]},{"path":[4,69,1],"span":[387,8,32]},{"path":[4,69,7],"span":[388,2,27]},{"path":[4,69,7,3],"span":[388,2,27]},{"path":[4,69,2,0],"span":[389,2,15]},{"path":[4,69,2,0,5],"span":[389,2,6]},{"path":[4,69,2,0,1],"span":[389,7,10]},{"path":[4,69,2,0,3],"span":[389,13,14]},{"path":[4,70],"span":[391,0,394,1]},{"path":[4,70,1],"span":[391,8,31]},{"path":[4,70,2,0],"span":[392,2,21]},{"path":[4,70,2,0,5],"span":[392,2,8]},{"path":[4,70,2,0,1],"span":[392,9,16]},{"path":[4,70,2,0,3],"span":[392,19,20]},{"path":[4,70,2,1],"span":[393,2,29]},{"path":[4,70,2,1,4],"span":[393,2,10]},{"path":[4,70,2,1,5],"span":[393,11,17]},{"path":[4,70,2,1,1],"span":[393,18,24]},{"path":[4,70,2,1,3],"span":[393,27,28]},{"path":[4,71],"span":[395,0,399,1]},{"path":[4,71,1],"span":[395,8,32]},{"path":[4,71,2,0],"span":[396,2,15]},{"path":[4,71,2,0,5],"span":[396,2,6]},{"path":[4,71,2,0,1],"span":[396,7,10]},{"path":[4,71,2,0,3],"span":[396,13,14]},{"path":[4,71,2,1],"span":[397,2,32]},{"path":[4,71,2,1,4],"span":[397,2,10]},{"path":[4,71,2,1,6],"span":[397,11,18]},{"path":[4,71,2,1,1],"span":[397,19,27]},{"path":[4,71,2,1,3],"span":[397,30,31]},{"path":[4,71,2,2],"span":[398,2,31]},{"path":[4,71,2,2,6],"span":[398,2,16]},{"path":[4,71,2,2,1],"span":[398,17,26]},{"path":[4,71,2,2,3],"span":[398,29,30]},{"path":[4,72],"span":[400,0,402,1]},{"path":[4,72,1],"span":[400,8,39]},{"path":[4,72,2,0],"span":[401,2,21]},{"path":[4,72,2,0,5],"span":[401,2,8]},{"path":[4,72,2,0,1],"span":[401,9,16]},{"path":[4,72,2,0,3],"span":[401,19,20]},{"path":[4,73],"span":[403,0,405,1]},{"path":[4,73,1],"span":[403,8,40]},{"path":[4,73,2,0],"span":[404,2,16]},{"path":[4,73,2,0,5],"span":[404,2,6]},{"path":[4,73,2,0,1],"span":[404,7,11]},{"path":[4,73,2,0,3],"span":[404,14,15]},{"path":[4,74],"span":[406,0,408,1]},{"path":[4,74,1],"span":[406,8,34]},{"path":[4,74,2,0],"span":[407,2,21]},{"path":[4,74,2,0,5],"span":[407,2,8]},{"path":[4,74,2,0,1],"span":[407,9,16]},{"path":[4,74,2,0,3],"span":[407,19,20]},{"path":[4,75],"span":[409,0,411,1]},{"path":[4,75,1],"span":[409,8,35]},{"path":[4,75,2,0],"span":[410,2,28]},{"path":[4,75,2,0,6],"span":[410,2,18]},{"path":[4,75,2,0,1],"span":[410,19,23]},{"path":[4,75,2,0,3],"span":[410,26,27]},{"path":[4,76],"span":[412,0,415,1]},{"path":[4,76,1],"span":[412,8,32]},{"path":[4,76,2,0],"span":[413,2,21]},{"path":[4,76,2,0,5],"span":[413,2,8]},{"path":[4,76,2,0,1],"span":[413,9,16]},{"path":[4,76,2,0,3],"span":[413,19,20]},{"path":[4,76,2,1],"span":[414,2,24]},{"path":[4,76,2,1,5],"span":[414,2,8]},{"path":[4,76,2,1,1],"span":[414,9,19]},{"path":[4,76,2,1,3],"span":[414,22,23]},{"path":[4,77],"span":[416,0,418,1]},{"path":[4,77,1],"span":[416,8,33]},{"path":[4,77,2,0],"span":[417,2,18]},{"path":[4,77,2,0,5],"span":[417,2,8]},{"path":[4,77,2,0,1],"span":[417,9,13]},{"path":[4,77,2,0,3],"span":[417,16,17]},{"path":[4,78],"span":[419,0,421,1]},{"path":[4,78,1],"span":[419,8,37]},{"path":[4,78,2,0],"span":[420,4,33]},{"path":[4,78,2,0,4],"span":[420,4,12]},{"path":[4,78,2,0,5],"span":[420,13,19]},{"path":[4,78,2,0,1],"span":[420,20,28]},{"path":[4,78,2,0,3],"span":[420,31,32]},{"path":[4,79],"span":[422,0,424,1]},{"path":[4,79,1],"span":[422,8,47]},{"path":[4,79,2,0],"span":[423,2,21]},{"path":[4,79,2,0,5],"span":[423,2,8]},{"path":[4,79,2,0,1],"span":[423,9,16]},{"path":[4,79,2,0,3],"span":[423,19,20]},{"path":[4,80],"span":[425,0,427,1]},{"path":[4,80,1],"span":[425,8,48]},{"path":[4,80,2,0],"span":[426,2,22]},{"path":[4,80,2,0,5],"span":[426,2,6]},{"path":[4,80,2,0,1],"span":[426,7,17]},{"path":[4,80,2,0,3],"span":[426,20,21]},{"path":[4,81],"span":[428,0,432,1]},{"path":[4,81,1],"span":[428,8,33]},{"path":[4,81,2,0],"span":[429,2,21]},{"path":[4,81,2,0,5],"span":[429,2,8]},{"path":[4,81,2,0,1],"span":[429,9,16]},{"path":[4,81,2,0,3],"span":[429,19,20]},{"path":[4,81,2,1],"span":[430,2,17]},{"path":[4,81,2,1,5],"span":[430,2,8]},{"path":[4,81,2,1,1],"span":[430,9,12]},{"path":[4,81,2,1,3],"span":[430,15,16]},{"path":[4,81,2,2],"span":[431,2,19]},{"path":[4,81,2,2,5],"span":[431,2,8]},{"path":[4,81,2,2,1],"span":[431,9,14]},{"path":[4,81,2,2,3],"span":[431,17,18]},{"path":[4,82],"span":[433,0,435,1]},{"path":[4,82,1],"span":[433,8,34]},{"path":[4,82,2,0],"span":[434,2,19]},{"path":[4,82,2,0,5],"span":[434,2,6]},{"path":[4,82,2,0,1],"span":[434,7,14]},{"path":[4,82,2,0,3],"span":[434,17,18]},{"path":[4,83],"span":[437,0,439,1]},{"path":[4,83,1],"span":[437,8,28]},{"path":[4,83,2,0],"span":[438,2,31]},{"path":[4,83,2,0,4],"span":[438,2,10]},{"path":[4,83,2,0,5],"span":[438,11,17]},{"path":[4,83,2,0,1],"span":[438,18,26]},{"path":[4,83,2,0,3],"span":[438,29,30]},{"path":[4,84],"span":[441,0,443,1]},{"path":[4,84,1],"span":[441,8,29]},{"path":[4,84,2,0],"span":[442,2,70]},{"path":[4,84,2,0,6],"span":[442,2,53]},{"path":[4,84,2,0,1],"span":[442,54,65]},{"path":[4,84,2,0,3],"span":[442,68,69]},{"path":[4,85],"span":[445,0,448,1]},{"path":[4,85,1],"span":[445,8,22]},{"path":[4,85,2,0],"span":[446,2,19]},{"path":[4,85,2,0,5],"span":[446,2,7]},{"path":[4,85,2,0,1],"span":[446,8,14]},{"path":[4,85,2,0,3],"span":[446,17,18]},{"path":[4,85,2,1],"span":[447,2,18]},{"path":[4,85,2,1,5],"span":[447,2,7]},{"path":[4,85,2,1,1],"span":[447,8,13]},{"path":[4,85,2,1,3],"span":[447,16,17]},{"path":[4,86],"span":[450,0,455,1]},{"path":[4,86,1],"span":[450,8,26]},{"path":[4,86,2,0],"span":[451,2,18]},{"path":[4,86,2,0,5],"span":[451,2,7]},{"path":[4,86,2,0,1],"span":[451,8,13]},{"path":[4,86,2,0,3],"span":[451,16,17]},{"path":[4,86,2,1],"span":[452,2,19]},{"path":[4,86,2,1,5],"span":[452,2,7]},{"path":[4,86,2,1,1],"span":[452,8,14]},{"path":[4,86,2,1,3],"span":[452,17,18]},{"path":[4,86,2,2],"span":[453,2,18]},{"path":[4,86,2,2,5],"span":[453,2,7]},{"path":[4,86,2,2,1],"span":[453,8,13]},{"path":[4,86,2,2,3],"span":[453,16,17]},{"path":[4,86,2,3],"span":[454,2,25]},{"path":[4,86,2,3,5],"span":[454,2,6]},{"path":[4,86,2,3,1],"span":[454,7,20]},{"path":[4,86,2,3,3],"span":[454,23,24]},{"path":[4,87],"span":[457,0,465,1]},{"path":[4,87,1],"span":[457,8,38]},{"path":[4,87,2,0],"span":[458,2,21]},{"path":[4,87,2,0,5],"span":[458,2,8]},{"path":[4,87,2,0,1],"span":[458,9,16]},{"path":[4,87,2,0,3],"span":[458,19,20]},{"path":[4,87,3,0],"span":[459,2,462,3]},{"path":[4,87,3,0,1],"span":[459,10,31]},{"path":[4,87,3,0,2,0],"span":[460,4,21]},{"path":[4,87,3,0,2,0,5],"span":[460,4,9]},{"path":[4,87,3,0,2,0,1],"span":[460,10,16]},{"path":[4,87,3,0,2,0,3],"span":[460,19,20]},{"path":[4,87,3,0,2,1],"span":[461,4,20]},{"path":[4,87,3,0,2,1,5],"span":[461,4,9]},{"path":[4,87,3,0,2,1,1],"span":[461,10,15]},{"path":[4,87,3,0,2,1,3],"span":[461,18,19]},{"path":[4,87,2,1],"span":[463,2,44]},{"path":[4,87,2,1,6],"span":[463,2,23]},{"path":[4,87,2,1,1],"span":[463,24,39]},{"path":[4,87,2,1,3],"span":[463,42,43]},{"path":[4,87,2,2],"span":[464,2,22]},{"path":[4,87,2,2,5],"span":[464,2,8]},{"path":[4,87,2,2,1],"span":[464,9,17]},{"path":[4,87,2,2,3],"span":[464,20,21]},{"path":[4,88],"span":[467,0,480,1]},{"path":[4,88,1],"span":[467,8,39]},{"path":[4,88,3,0],"span":[468,2,471,3]},{"path":[4,88,3,0,1],"span":[468,10,26]},{"path":[4,88,3,0,2,0],"span":[469,4,18]},{"path":[4,88,3,0,2,0,5],"span":[469,4,10]},{"path":[4,88,3,0,2,0,1],"span":[469,11,13]},{"path":[4,88,3,0,2,0,3],"span":[469,16,17]},{"path":[4,88,3,0,2,1],"span":[470,4,20]},{"path":[4,88,3,0,2,1,5],"span":[470,4,10]},{"path":[4,88,3,0,2,1,1],"span":[470,11,15]},{"path":[4,88,3,0,2,1,3],"span":[470,18,19]},{"path":[4,88,2,0],"span":[472,2,46]},{"path":[4,88,2,0,4],"span":[472,2,10]},{"path":[4,88,2,0,6],"span":[472,11,27]},{"path":[4,88,2,0,1],"span":[472,28,41]},{"path":[4,88,2,0,3],"span":[472,44,45]},{"path":[4,88,3,1],"span":[473,2,478,3]},{"path":[4,88,3,1,1],"span":[473,10,22]},{"path":[4,88,3,1,2,0],"span":[474,4,20]},{"path":[4,88,3,1,2,0,5],"span":[474,4,9]},{"path":[4,88,3,1,2,0,1],"span":[474,10,15]},{"path":[4,88,3,1,2,0,3],"span":[474,18,19]},{"path":[4,88,3,1,2,1],"span":[475,4,21]},{"path":[4,88,3,1,2,1,5],"span":[475,4,9]},{"path":[4,88,3,1,2,1,1],"span":[475,10,16]},{"path":[4,88,3,1,2,1,3],"span":[475,19,20]},{"path":[4,88,3,1,2,2],"span":[476,4,20]},{"path":[4,88,3,1,2,2,5],"span":[476,4,9]},{"path":[4,88,3,1,2,2,1],"span":[476,10,15]},{"path":[4,88,3,1,2,2,3],"span":[476,18,19]},{"path":[4,88,3,1,2,3],"span":[477,4,27]},{"path":[4,88,3,1,2,3,5],"span":[477,4,8]},{"path":[4,88,3,1,2,3,1],"span":[477,9,22]},{"path":[4,88,3,1,2,3,3],"span":[477,25,26]},{"path":[4,88,2,1],"span":[479,2,34]},{"path":[4,88,2,1,6],"span":[479,2,14]},{"path":[4,88,2,1,1],"span":[479,15,29]},{"path":[4,88,2,1,3],"span":[479,32,33]},{"path":[4,89],"span":[482,0,486,1]},{"path":[4,89,1],"span":[482,8,41]},{"path":[4,89,2,0],"span":[483,2,21]},{"path":[4,89,2,0,5],"span":[483,2,8]},{"path":[4,89,2,0,1],"span":[483,9,16]},{"path":[4,89,2,0,3],"span":[483,19,20]},{"path":[4,89,2,1],"span":[484,2,34]},{"path":[4,89,2,1,5],"span":[484,2,8]},{"path":[4,89,2,1,1],"span":[484,9,29]},{"path":[4,89,2,1,3],"span":[484,32,33]},{"path":[4,89,2,2],"span":[485,2,22]},{"path":[4,89,2,2,5],"span":[485,2,8]},{"path":[4,89,2,2,1],"span":[485,9,17]},{"path":[4,89,2,2,3],"span":[485,20,21]},{"path":[4,90],"span":[488,0,493,1]},{"path":[4,90,1],"span":[488,8,42]},{"path":[4,90,2,0],"span":[489,2,16]},{"path":[4,90,2,0,5],"span":[489,2,8]},{"path":[4,90,2,0,1],"span":[489,9,11]},{"path":[4,90,2,0,3],"span":[489,14,15]},{"path":[4,90,2,1],"span":[490,2,18]},{"path":[4,90,2,1,5],"span":[490,2,8]},{"path":[4,90,2,1,1],"span":[490,9,13]},{"path":[4,90,2,1,3],"span":[490,16,17]},{"path":[4,90,2,2],"span":[491,2,22]},{"path":[4,90,2,2,5],"span":[491,2,6]},{"path":[4,90,2,2,1],"span":[491,7,17]},{"path":[4,90,2,2,3],"span":[491,20,21]},{"path":[4,90,2,3],"span":[492,2,53]},{"path":[4,90,2,3,5],"span":[492,2,6]},{"path":[4,90,2,3,1],"span":[492,7,48]},{"path":[4,90,2,3,3],"span":[492,51,52]},{"path":[4,91],"span":[495,0,500,1]},{"path":[4,91,1],"span":[495,8,43]},{"path":[4,91,2,0],"span":[496,2,21]},{"path":[4,91,2,0,5],"span":[496,2,8]},{"path":[4,91,2,0,1],"span":[496,9,16]},{"path":[4,91,2,0,3],"span":[496,19,20]},{"path":[4,91,2,1],"span":[497,2,34]},{"path":[4,91,2,1,5],"span":[497,2,8]},{"path":[4,91,2,1,1],"span":[497,9,29]},{"path":[4,91,2,1,3],"span":[497,32,33]},{"path":[4,91,2,2],"span":[498,2,37]},{"path":[4,91,2,2,6],"span":[498,2,16]},{"path":[4,91,2,2,1],"span":[498,17,32]},{"path":[4,91,2,2,3],"span":[498,35,36]},{"path":[4,91,2,3],"span":[499,2,22]},{"path":[4,91,2,3,5],"span":[499,2,8]},{"path":[4,91,2,3,1],"span":[499,9,17]},{"path":[4,91,2,3,3],"span":[499,20,21]},{"path":[4,92],"span":[502,0,505,1]},{"path":[4,92,1],"span":[502,8,44]},{"path":[4,92,2,0],"span":[503,2,33]},{"path":[4,92,2,0,4],"span":[503,2,10]},{"path":[4,92,2,0,6],"span":[503,11,22]},{"path":[4,92,2,0,1],"span":[503,23,28]},{"path":[4,92,2,0,3],"span":[503,31,32]},{"path":[4,92,2,1],"span":[504,2,46]},{"path":[4,92,2,1,6],"span":[504,2,20]},{"path":[4,92,2,1,1],"span":[504,21,41]},{"path":[4,92,2,1,3],"span":[504,44,45]},{"path":[6,0],"span":[507,0,555,1]},{"path":[6,0,1],"span":[507,8,19]},{"path":[6,0,2,0],"span":[508,2,121]},{"path":[6,0,2,0,1],"span":[508,6,34]},{"path":[6,0,2,0,2],"span":[508,35,70]},{"path":[6,0,2,0,3],"span":[508,81,117]},{"path":[6,0,2,1],"span":[509,2,118]},{"path":[6,0,2,1,1],"span":[509,6,33]},{"path":[6,0,2,1,2],"span":[509,34,68]},{"path":[6,0,2,1,3],"span":[509,79,114]},{"path":[6,0,2,2],"span":[510,2,100]},{"path":[6,0,2,2,1],"span":[510,6,27]},{"path":[6,0,2,2,2],"span":[510,28,56]},{"path":[6,0,2,2,3],"span":[510,67,96]},{"path":[6,0,2,3],"span":[511,2,127]},{"path":[6,0,2,3,1],"span":[511,6,36]},{"path":[6,0,2,3,2],"span":[511,37,74]},{"path":[6,0,2,3,3],"span":[511,85,123]},{"path":[6,0,2,4],"span":[512,2,127]},{"path":[6,0,2,4,1],"span":[512,6,36]},{"path":[6,0,2,4,2],"span":[512,37,74]},{"path":[6,0,2,4,3],"span":[512,85,123]},{"path":[6,0,2,5],"span":[513,2,106]},{"path":[6,0,2,5,1],"span":[513,6,29]},{"path":[6,0,2,5,2],"span":[513,30,60]},{"path":[6,0,2,5,3],"span":[513,71,102]},{"path":[6,0,2,6],"span":[515,2,115]},{"path":[6,0,2,6,1],"span":[515,6,32]},{"path":[6,0,2,6,2],"span":[515,33,66]},{"path":[6,0,2,6,3],"span":[515,77,111]},{"path":[6,0,2,7],"span":[516,2,76]},{"path":[6,0,2,7,1],"span":[516,6,19]},{"path":[6,0,2,7,2],"span":[516,20,40]},{"path":[6,0,2,7,3],"span":[516,51,72]},{"path":[6,0,2,8],"span":[517,2,76]},{"path":[6,0,2,8,1],"span":[517,6,19]},{"path":[6,0,2,8,2],"span":[517,20,40]},{"path":[6,0,2,8,3],"span":[517,51,72]},{"path":[6,0,2,9],"span":[518,2,97]},{"path":[6,0,2,9,1],"span":[518,6,26]},{"path":[6,0,2,9,2],"span":[518,27,54]},{"path":[6,0,2,9,3],"span":[518,65,93]},{"path":[6,0,2,10],"span":[519,2,88]},{"path":[6,0,2,10,1],"span":[519,6,23]},{"path":[6,0,2,10,2],"span":[519,24,48]},{"path":[6,0,2,10,3],"span":[519,59,84]},{"path":[6,0,2,11],"span":[520,2,118]},{"path":[6,0,2,11,1],"span":[520,6,33]},{"path":[6,0,2,11,2],"span":[520,34,68]},{"path":[6,0,2,11,3],"span":[520,79,114]},{"path":[6,0,2,12],"span":[521,2,82]},{"path":[6,0,2,12,1],"span":[521,6,21]},{"path":[6,0,2,12,2],"span":[521,22,44]},{"path":[6,0,2,12,3],"span":[521,55,78]},{"path":[6,0,2,13],"span":[522,2,97]},{"path":[6,0,2,13,1],"span":[522,6,28]},{"path":[6,0,2,13,2],"span":[522,29,58]},{"path":[6,0,2,13,3],"span":[522,69,93]},{"path":[6,0,2,14],"span":[523,2,97]},{"path":[6,0,2,14,1],"span":[523,6,26]},{"path":[6,0,2,14,2],"span":[523,27,54]},{"path":[6,0,2,14,3],"span":[523,65,93]},{"path":[6,0,2,15],"span":[524,2,106]},{"path":[6,0,2,15,1],"span":[524,6,29]},{"path":[6,0,2,15,2],"span":[524,30,60]},{"path":[6,0,2,15,3],"span":[524,71,102]},{"path":[6,0,2,16],"span":[525,2,106]},{"path":[6,0,2,16,1],"span":[525,6,29]},{"path":[6,0,2,16,2],"span":[525,30,60]},{"path":[6,0,2,16,3],"span":[525,71,102]},{"path":[6,0,2,17],"span":[526,2,115]},{"path":[6,0,2,17,1],"span":[526,6,32]},{"path":[6,0,2,17,2],"span":[526,33,66]},{"path":[6,0,2,17,3],"span":[526,77,111]},{"path":[6,0,2,18],"span":[527,2,106]},{"path":[6,0,2,18,1],"span":[527,6,29]},{"path":[6,0,2,18,2],"span":[527,30,60]},{"path":[6,0,2,18,3],"span":[527,71,102]},{"path":[6,0,2,19],"span":[528,2,112]},{"path":[6,0,2,19,1],"span":[528,6,31]},{"path":[6,0,2,19,2],"span":[528,32,64]},{"path":[6,0,2,19,3],"span":[528,75,108]},{"path":[6,0,2,20],"span":[529,2,130]},{"path":[6,0,2,20,1],"span":[529,6,37]},{"path":[6,0,2,20,2],"span":[529,38,76]},{"path":[6,0,2,20,3],"span":[529,87,126]},{"path":[6,0,2,21],"span":[530,2,91]},{"path":[6,0,2,21,1],"span":[530,6,24]},{"path":[6,0,2,21,2],"span":[530,25,50]},{"path":[6,0,2,21,3],"span":[530,61,87]},{"path":[6,0,2,22],"span":[531,2,151]},{"path":[6,0,2,22,1],"span":[531,6,44]},{"path":[6,0,2,22,2],"span":[531,45,90]},{"path":[6,0,2,22,3],"span":[531,101,147]},{"path":[6,0,2,23],"span":[532,2,99]},{"path":[6,0,2,23,1],"span":[532,6,30]},{"path":[6,0,2,23,2],"span":[532,31,57]},{"path":[6,0,2,23,3],"span":[532,68,95]},{"path":[6,0,2,24],"span":[533,2,100]},{"path":[6,0,2,24,1],"span":[533,6,39]},{"path":[6,0,2,24,2],"span":[533,40,62]},{"path":[6,0,2,24,3],"span":[533,73,96]},{"path":[6,0,2,25],"span":[534,2,100]},{"path":[6,0,2,25,1],"span":[534,6,27]},{"path":[6,0,2,25,2],"span":[534,28,56]},{"path":[6,0,2,25,3],"span":[534,67,96]},{"path":[6,0,2,26],"span":[535,2,112]},{"path":[6,0,2,26,1],"span":[535,6,31]},{"path":[6,0,2,26,2],"span":[535,32,64]},{"path":[6,0,2,26,3],"span":[535,75,108]},{"path":[6,0,2,27],"span":[536,2,103]},{"path":[6,0,2,27,1],"span":[536,6,28]},{"path":[6,0,2,27,2],"span":[536,29,58]},{"path":[6,0,2,27,3],"span":[536,69,99]},{"path":[6,0,2,28],"span":[537,2,118]},{"path":[6,0,2,28,1],"span":[537,6,33]},{"path":[6,0,2,28,2],"span":[537,34,68]},{"path":[6,0,2,28,3],"span":[537,79,114]},{"path":[6,0,2,29],"span":[538,2,133]},{"path":[6,0,2,29,1],"span":[538,6,38]},{"path":[6,0,2,29,2],"span":[538,39,78]},{"path":[6,0,2,29,3],"span":[538,89,129]},{"path":[6,0,2,30],"span":[539,2,85]},{"path":[6,0,2,30,1],"span":[539,6,22]},{"path":[6,0,2,30,2],"span":[539,23,46]},{"path":[6,0,2,30,3],"span":[539,57,81]},{"path":[6,0,2,31],"span":[541,2,109]},{"path":[6,0,2,31,1],"span":[541,6,30]},{"path":[6,0,2,31,2],"span":[541,31,62]},{"path":[6,0,2,31,3],"span":[541,73,105]},{"path":[6,0,2,32],"span":[542,2,544,3]},{"path":[6,0,2,32,1],"span":[542,6,22]},{"path":[6,0,2,32,2],"span":[542,23,46]},{"path":[6,0,2,32,3],"span":[542,57,81]},{"path":[6,0,2,32,4],"span":[543,4,29]},{"path":[6,0,2,32,4,33],"span":[543,4,29]},{"path":[6,0,2,33],"span":[545,2,94]},{"path":[6,0,2,33,1],"span":[545,6,25]},{"path":[6,0,2,33,2],"span":[545,26,52]},{"path":[6,0,2,33,3],"span":[545,63,90]},{"path":[6,0,2,34],"span":[546,2,88]},{"path":[6,0,2,34,1],"span":[546,6,23]},{"path":[6,0,2,34,2],"span":[546,24,48]},{"path":[6,0,2,34,3],"span":[546,59,84]},{"path":[6,0,2,35],"span":[547,2,113]},{"path":[6,0,2,35,1],"span":[547,6,39]},{"path":[6,0,2,35,2],"span":[547,40,69]},{"path":[6,0,2,35,3],"span":[547,80,109]},{"path":[6,0,2,36],"span":[548,2,133]},{"path":[6,0,2,36,1],"span":[548,6,38]},{"path":[6,0,2,36,2],"span":[548,39,78]},{"path":[6,0,2,36,3],"span":[548,89,129]},{"path":[6,0,2,37],"span":[550,2,91]},{"path":[6,0,2,37,1],"span":[550,6,24]},{"path":[6,0,2,37,2],"span":[550,25,50]},{"path":[6,0,2,37,3],"span":[550,61,87]},{"path":[6,0,2,38],"span":[551,2,76]},{"path":[6,0,2,38,1],"span":[551,6,19]},{"path":[6,0,2,38,2],"span":[551,20,40]},{"path":[6,0,2,38,3],"span":[551,51,72]},{"path":[6,0,2,39],"span":[552,2,106]},{"path":[6,0,2,39,1],"span":[552,6,29]},{"path":[6,0,2,39,2],"span":[552,30,60]},{"path":[6,0,2,39,3],"span":[552,71,102]},{"path":[6,0,2,40],"span":[553,2,115]},{"path":[6,0,2,40,1],"span":[553,6,32]},{"path":[6,0,2,40,2],"span":[553,33,66]},{"path":[6,0,2,40,3],"span":[553,77,111]},{"path":[6,0,2,41],"span":[554,2,121]},{"path":[6,0,2,41,1],"span":[554,6,34]},{"path":[6,0,2,41,2],"span":[554,35,70]},{"path":[6,0,2,41,3],"span":[554,81,117]}]},"syntax":"proto3","bufExtension":{"isImport":false,"isSyntaxUnspecified":false}}]}
|
|
@@ -165,6 +165,26 @@ export namespace Scopes {
|
|
|
165
165
|
}
|
|
166
166
|
}
|
|
167
167
|
|
|
168
|
+
export class Attachments extends jspb.Message {
|
|
169
|
+
getMaxBytesPerAsset(): number;
|
|
170
|
+
setMaxBytesPerAsset(value: number): Attachments;
|
|
171
|
+
|
|
172
|
+
serializeBinary(): Uint8Array;
|
|
173
|
+
toObject(includeInstance?: boolean): Attachments.AsObject;
|
|
174
|
+
static toObject(includeInstance: boolean, msg: Attachments): Attachments.AsObject;
|
|
175
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
176
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
177
|
+
static serializeBinaryToWriter(message: Attachments, writer: jspb.BinaryWriter): void;
|
|
178
|
+
static deserializeBinary(bytes: Uint8Array): Attachments;
|
|
179
|
+
static deserializeBinaryFromReader(message: Attachments, reader: jspb.BinaryReader): Attachments;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
export namespace Attachments {
|
|
183
|
+
export type AsObject = {
|
|
184
|
+
maxBytesPerAsset: number,
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
|
|
168
188
|
export class SiteLimits extends jspb.Message {
|
|
169
189
|
getTier(): SiteLimitsTiers;
|
|
170
190
|
setTier(value: SiteLimitsTiers): SiteLimits;
|
|
@@ -184,6 +204,11 @@ export class SiteLimits extends jspb.Message {
|
|
|
184
204
|
getScopes(): Scopes | undefined;
|
|
185
205
|
setScopes(value?: Scopes): SiteLimits;
|
|
186
206
|
|
|
207
|
+
hasAttachments(): boolean;
|
|
208
|
+
clearAttachments(): void;
|
|
209
|
+
getAttachments(): Attachments | undefined;
|
|
210
|
+
setAttachments(value?: Attachments): SiteLimits;
|
|
211
|
+
|
|
187
212
|
serializeBinary(): Uint8Array;
|
|
188
213
|
toObject(includeInstance?: boolean): SiteLimits.AsObject;
|
|
189
214
|
static toObject(includeInstance: boolean, msg: SiteLimits): SiteLimits.AsObject;
|
|
@@ -200,6 +225,7 @@ export namespace SiteLimits {
|
|
|
200
225
|
riskInsights?: RiskInsights.AsObject,
|
|
201
226
|
assets?: Assets.AsObject,
|
|
202
227
|
scopes?: Scopes.AsObject,
|
|
228
|
+
attachments?: Attachments.AsObject,
|
|
203
229
|
}
|
|
204
230
|
}
|
|
205
231
|
|
|
@@ -24,6 +24,7 @@ var global = (function() {
|
|
|
24
24
|
var google_protobuf_timestamp_pb = require('google-protobuf/google/protobuf/timestamp_pb.js');
|
|
25
25
|
goog.object.extend(proto, google_protobuf_timestamp_pb);
|
|
26
26
|
goog.exportSymbol('proto.lansweeper.shared.limits.v1.Assets', null, global);
|
|
27
|
+
goog.exportSymbol('proto.lansweeper.shared.limits.v1.Attachments', null, global);
|
|
27
28
|
goog.exportSymbol('proto.lansweeper.shared.limits.v1.BaseLimit', null, global);
|
|
28
29
|
goog.exportSymbol('proto.lansweeper.shared.limits.v1.CalculateRiskInsights', null, global);
|
|
29
30
|
goog.exportSymbol('proto.lansweeper.shared.limits.v1.ExpirableAllowedEntities', null, global);
|
|
@@ -158,6 +159,27 @@ if (goog.DEBUG && !COMPILED) {
|
|
|
158
159
|
*/
|
|
159
160
|
proto.lansweeper.shared.limits.v1.Scopes.displayName = 'proto.lansweeper.shared.limits.v1.Scopes';
|
|
160
161
|
}
|
|
162
|
+
/**
|
|
163
|
+
* Generated by JsPbCodeGenerator.
|
|
164
|
+
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
165
|
+
* server response, or constructed directly in Javascript. The array is used
|
|
166
|
+
* in place and becomes part of the constructed object. It is not cloned.
|
|
167
|
+
* If no data is provided, the constructed object will be empty, but still
|
|
168
|
+
* valid.
|
|
169
|
+
* @extends {jspb.Message}
|
|
170
|
+
* @constructor
|
|
171
|
+
*/
|
|
172
|
+
proto.lansweeper.shared.limits.v1.Attachments = function(opt_data) {
|
|
173
|
+
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
|
|
174
|
+
};
|
|
175
|
+
goog.inherits(proto.lansweeper.shared.limits.v1.Attachments, jspb.Message);
|
|
176
|
+
if (goog.DEBUG && !COMPILED) {
|
|
177
|
+
/**
|
|
178
|
+
* @public
|
|
179
|
+
* @override
|
|
180
|
+
*/
|
|
181
|
+
proto.lansweeper.shared.limits.v1.Attachments.displayName = 'proto.lansweeper.shared.limits.v1.Attachments';
|
|
182
|
+
}
|
|
161
183
|
/**
|
|
162
184
|
* Generated by JsPbCodeGenerator.
|
|
163
185
|
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
@@ -1280,6 +1302,136 @@ proto.lansweeper.shared.limits.v1.Scopes.prototype.setCreateMax = function(value
|
|
|
1280
1302
|
|
|
1281
1303
|
|
|
1282
1304
|
|
|
1305
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
1306
|
+
/**
|
|
1307
|
+
* Creates an object representation of this proto.
|
|
1308
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
1309
|
+
* Optional fields that are not set will be set to undefined.
|
|
1310
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
1311
|
+
* For the list of reserved names please see:
|
|
1312
|
+
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
|
1313
|
+
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
|
1314
|
+
* JSPB instance for transitional soy proto support:
|
|
1315
|
+
* http://goto/soy-param-migration
|
|
1316
|
+
* @return {!Object}
|
|
1317
|
+
*/
|
|
1318
|
+
proto.lansweeper.shared.limits.v1.Attachments.prototype.toObject = function(opt_includeInstance) {
|
|
1319
|
+
return proto.lansweeper.shared.limits.v1.Attachments.toObject(opt_includeInstance, this);
|
|
1320
|
+
};
|
|
1321
|
+
|
|
1322
|
+
|
|
1323
|
+
/**
|
|
1324
|
+
* Static version of the {@see toObject} method.
|
|
1325
|
+
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
|
1326
|
+
* the JSPB instance for transitional soy proto support:
|
|
1327
|
+
* http://goto/soy-param-migration
|
|
1328
|
+
* @param {!proto.lansweeper.shared.limits.v1.Attachments} msg The msg instance to transform.
|
|
1329
|
+
* @return {!Object}
|
|
1330
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
1331
|
+
*/
|
|
1332
|
+
proto.lansweeper.shared.limits.v1.Attachments.toObject = function(includeInstance, msg) {
|
|
1333
|
+
var f, obj = {
|
|
1334
|
+
maxBytesPerAsset: jspb.Message.getFieldWithDefault(msg, 1, 0)
|
|
1335
|
+
};
|
|
1336
|
+
|
|
1337
|
+
if (includeInstance) {
|
|
1338
|
+
obj.$jspbMessageInstance = msg;
|
|
1339
|
+
}
|
|
1340
|
+
return obj;
|
|
1341
|
+
};
|
|
1342
|
+
}
|
|
1343
|
+
|
|
1344
|
+
|
|
1345
|
+
/**
|
|
1346
|
+
* Deserializes binary data (in protobuf wire format).
|
|
1347
|
+
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
1348
|
+
* @return {!proto.lansweeper.shared.limits.v1.Attachments}
|
|
1349
|
+
*/
|
|
1350
|
+
proto.lansweeper.shared.limits.v1.Attachments.deserializeBinary = function(bytes) {
|
|
1351
|
+
var reader = new jspb.BinaryReader(bytes);
|
|
1352
|
+
var msg = new proto.lansweeper.shared.limits.v1.Attachments;
|
|
1353
|
+
return proto.lansweeper.shared.limits.v1.Attachments.deserializeBinaryFromReader(msg, reader);
|
|
1354
|
+
};
|
|
1355
|
+
|
|
1356
|
+
|
|
1357
|
+
/**
|
|
1358
|
+
* Deserializes binary data (in protobuf wire format) from the
|
|
1359
|
+
* given reader into the given message object.
|
|
1360
|
+
* @param {!proto.lansweeper.shared.limits.v1.Attachments} msg The message object to deserialize into.
|
|
1361
|
+
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
1362
|
+
* @return {!proto.lansweeper.shared.limits.v1.Attachments}
|
|
1363
|
+
*/
|
|
1364
|
+
proto.lansweeper.shared.limits.v1.Attachments.deserializeBinaryFromReader = function(msg, reader) {
|
|
1365
|
+
while (reader.nextField()) {
|
|
1366
|
+
if (reader.isEndGroup()) {
|
|
1367
|
+
break;
|
|
1368
|
+
}
|
|
1369
|
+
var field = reader.getFieldNumber();
|
|
1370
|
+
switch (field) {
|
|
1371
|
+
case 1:
|
|
1372
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
1373
|
+
msg.setMaxBytesPerAsset(value);
|
|
1374
|
+
break;
|
|
1375
|
+
default:
|
|
1376
|
+
reader.skipField();
|
|
1377
|
+
break;
|
|
1378
|
+
}
|
|
1379
|
+
}
|
|
1380
|
+
return msg;
|
|
1381
|
+
};
|
|
1382
|
+
|
|
1383
|
+
|
|
1384
|
+
/**
|
|
1385
|
+
* Serializes the message to binary data (in protobuf wire format).
|
|
1386
|
+
* @return {!Uint8Array}
|
|
1387
|
+
*/
|
|
1388
|
+
proto.lansweeper.shared.limits.v1.Attachments.prototype.serializeBinary = function() {
|
|
1389
|
+
var writer = new jspb.BinaryWriter();
|
|
1390
|
+
proto.lansweeper.shared.limits.v1.Attachments.serializeBinaryToWriter(this, writer);
|
|
1391
|
+
return writer.getResultBuffer();
|
|
1392
|
+
};
|
|
1393
|
+
|
|
1394
|
+
|
|
1395
|
+
/**
|
|
1396
|
+
* Serializes the given message to binary data (in protobuf wire
|
|
1397
|
+
* format), writing to the given BinaryWriter.
|
|
1398
|
+
* @param {!proto.lansweeper.shared.limits.v1.Attachments} message
|
|
1399
|
+
* @param {!jspb.BinaryWriter} writer
|
|
1400
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
1401
|
+
*/
|
|
1402
|
+
proto.lansweeper.shared.limits.v1.Attachments.serializeBinaryToWriter = function(message, writer) {
|
|
1403
|
+
var f = undefined;
|
|
1404
|
+
f = message.getMaxBytesPerAsset();
|
|
1405
|
+
if (f !== 0) {
|
|
1406
|
+
writer.writeInt32(
|
|
1407
|
+
1,
|
|
1408
|
+
f
|
|
1409
|
+
);
|
|
1410
|
+
}
|
|
1411
|
+
};
|
|
1412
|
+
|
|
1413
|
+
|
|
1414
|
+
/**
|
|
1415
|
+
* optional int32 max_bytes_per_asset = 1;
|
|
1416
|
+
* @return {number}
|
|
1417
|
+
*/
|
|
1418
|
+
proto.lansweeper.shared.limits.v1.Attachments.prototype.getMaxBytesPerAsset = function() {
|
|
1419
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 1, 0));
|
|
1420
|
+
};
|
|
1421
|
+
|
|
1422
|
+
|
|
1423
|
+
/**
|
|
1424
|
+
* @param {number} value
|
|
1425
|
+
* @return {!proto.lansweeper.shared.limits.v1.Attachments} returns this
|
|
1426
|
+
*/
|
|
1427
|
+
proto.lansweeper.shared.limits.v1.Attachments.prototype.setMaxBytesPerAsset = function(value) {
|
|
1428
|
+
return jspb.Message.setProto3IntField(this, 1, value);
|
|
1429
|
+
};
|
|
1430
|
+
|
|
1431
|
+
|
|
1432
|
+
|
|
1433
|
+
|
|
1434
|
+
|
|
1283
1435
|
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
1284
1436
|
/**
|
|
1285
1437
|
* Creates an object representation of this proto.
|
|
@@ -1312,7 +1464,8 @@ proto.lansweeper.shared.limits.v1.SiteLimits.toObject = function(includeInstance
|
|
|
1312
1464
|
tier: jspb.Message.getFieldWithDefault(msg, 1, 0),
|
|
1313
1465
|
riskInsights: (f = msg.getRiskInsights()) && proto.lansweeper.shared.limits.v1.RiskInsights.toObject(includeInstance, f),
|
|
1314
1466
|
assets: (f = msg.getAssets()) && proto.lansweeper.shared.limits.v1.Assets.toObject(includeInstance, f),
|
|
1315
|
-
scopes: (f = msg.getScopes()) && proto.lansweeper.shared.limits.v1.Scopes.toObject(includeInstance, f)
|
|
1467
|
+
scopes: (f = msg.getScopes()) && proto.lansweeper.shared.limits.v1.Scopes.toObject(includeInstance, f),
|
|
1468
|
+
attachments: (f = msg.getAttachments()) && proto.lansweeper.shared.limits.v1.Attachments.toObject(includeInstance, f)
|
|
1316
1469
|
};
|
|
1317
1470
|
|
|
1318
1471
|
if (includeInstance) {
|
|
@@ -1368,6 +1521,11 @@ proto.lansweeper.shared.limits.v1.SiteLimits.deserializeBinaryFromReader = funct
|
|
|
1368
1521
|
reader.readMessage(value,proto.lansweeper.shared.limits.v1.Scopes.deserializeBinaryFromReader);
|
|
1369
1522
|
msg.setScopes(value);
|
|
1370
1523
|
break;
|
|
1524
|
+
case 6:
|
|
1525
|
+
var value = new proto.lansweeper.shared.limits.v1.Attachments;
|
|
1526
|
+
reader.readMessage(value,proto.lansweeper.shared.limits.v1.Attachments.deserializeBinaryFromReader);
|
|
1527
|
+
msg.setAttachments(value);
|
|
1528
|
+
break;
|
|
1371
1529
|
default:
|
|
1372
1530
|
reader.skipField();
|
|
1373
1531
|
break;
|
|
@@ -1428,6 +1586,14 @@ proto.lansweeper.shared.limits.v1.SiteLimits.serializeBinaryToWriter = function(
|
|
|
1428
1586
|
proto.lansweeper.shared.limits.v1.Scopes.serializeBinaryToWriter
|
|
1429
1587
|
);
|
|
1430
1588
|
}
|
|
1589
|
+
f = message.getAttachments();
|
|
1590
|
+
if (f != null) {
|
|
1591
|
+
writer.writeMessage(
|
|
1592
|
+
6,
|
|
1593
|
+
f,
|
|
1594
|
+
proto.lansweeper.shared.limits.v1.Attachments.serializeBinaryToWriter
|
|
1595
|
+
);
|
|
1596
|
+
}
|
|
1431
1597
|
};
|
|
1432
1598
|
|
|
1433
1599
|
|
|
@@ -1560,6 +1726,43 @@ proto.lansweeper.shared.limits.v1.SiteLimits.prototype.hasScopes = function() {
|
|
|
1560
1726
|
};
|
|
1561
1727
|
|
|
1562
1728
|
|
|
1729
|
+
/**
|
|
1730
|
+
* optional Attachments attachments = 6;
|
|
1731
|
+
* @return {?proto.lansweeper.shared.limits.v1.Attachments}
|
|
1732
|
+
*/
|
|
1733
|
+
proto.lansweeper.shared.limits.v1.SiteLimits.prototype.getAttachments = function() {
|
|
1734
|
+
return /** @type{?proto.lansweeper.shared.limits.v1.Attachments} */ (
|
|
1735
|
+
jspb.Message.getWrapperField(this, proto.lansweeper.shared.limits.v1.Attachments, 6));
|
|
1736
|
+
};
|
|
1737
|
+
|
|
1738
|
+
|
|
1739
|
+
/**
|
|
1740
|
+
* @param {?proto.lansweeper.shared.limits.v1.Attachments|undefined} value
|
|
1741
|
+
* @return {!proto.lansweeper.shared.limits.v1.SiteLimits} returns this
|
|
1742
|
+
*/
|
|
1743
|
+
proto.lansweeper.shared.limits.v1.SiteLimits.prototype.setAttachments = function(value) {
|
|
1744
|
+
return jspb.Message.setWrapperField(this, 6, value);
|
|
1745
|
+
};
|
|
1746
|
+
|
|
1747
|
+
|
|
1748
|
+
/**
|
|
1749
|
+
* Clears the message field making it undefined.
|
|
1750
|
+
* @return {!proto.lansweeper.shared.limits.v1.SiteLimits} returns this
|
|
1751
|
+
*/
|
|
1752
|
+
proto.lansweeper.shared.limits.v1.SiteLimits.prototype.clearAttachments = function() {
|
|
1753
|
+
return this.setAttachments(undefined);
|
|
1754
|
+
};
|
|
1755
|
+
|
|
1756
|
+
|
|
1757
|
+
/**
|
|
1758
|
+
* Returns whether this field is set.
|
|
1759
|
+
* @return {boolean}
|
|
1760
|
+
*/
|
|
1761
|
+
proto.lansweeper.shared.limits.v1.SiteLimits.prototype.hasAttachments = function() {
|
|
1762
|
+
return jspb.Message.getField(this, 6) != null;
|
|
1763
|
+
};
|
|
1764
|
+
|
|
1765
|
+
|
|
1563
1766
|
/**
|
|
1564
1767
|
* @enum {number}
|
|
1565
1768
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lansweeper/multitenant-api-grpc",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.53",
|
|
4
4
|
"description": "Multitenant grpc",
|
|
5
5
|
"main": "gen-proto/index.js",
|
|
6
6
|
"types": "gen-proto/index.d.ts",
|
|
@@ -18,5 +18,5 @@
|
|
|
18
18
|
"scripts": {
|
|
19
19
|
"prepublishOnly": "cp -r ../../shared/limits ./proto"
|
|
20
20
|
},
|
|
21
|
-
"gitHead": "
|
|
21
|
+
"gitHead": "ed0a2a7445b89488935321277154e6ac292022c5"
|
|
22
22
|
}
|
|
@@ -48,10 +48,15 @@ message Scopes {
|
|
|
48
48
|
int32 create_max = 1;
|
|
49
49
|
}
|
|
50
50
|
|
|
51
|
+
message Attachments {
|
|
52
|
+
int32 max_bytes_per_asset = 1;
|
|
53
|
+
}
|
|
54
|
+
|
|
51
55
|
message SiteLimits {
|
|
52
56
|
reserved 2;
|
|
53
57
|
SiteLimitsTiers tier = 1;
|
|
54
58
|
optional RiskInsights risk_insights = 3;
|
|
55
59
|
optional Assets assets = 4;
|
|
56
60
|
Scopes scopes = 5;
|
|
61
|
+
Attachments attachments = 6;
|
|
57
62
|
}
|