1// Protocol Buffers - Google's data interchange format 2// Copyright 2008 Google Inc. All rights reserved. 3// https://developers.google.com/protocol-buffers/ 4// 5// Redistribution and use in source and binary forms, with or without 6// modification, are permitted provided that the following conditions are 7// met: 8// 9// * Redistributions of source code must retain the above copyright 10// notice, this list of conditions and the following disclaimer. 11// * Redistributions in binary form must reproduce the above 12// copyright notice, this list of conditions and the following disclaimer 13// in the documentation and/or other materials provided with the 14// distribution. 15// * Neither the name of Google Inc. nor the names of its 16// contributors may be used to endorse or promote products derived from 17// this software without specific prior written permission. 18// 19// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 20// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 21// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 22// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 23// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 24// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 25// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 26// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 27// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 28// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 29// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 30 31// LINT: ALLOW_GROUPS 32syntax = "proto2"; 33 34package protobuf.experimental; 35 36option java_package = "com.google.protobuf.testing"; 37option java_outer_classname = "Proto2Testing"; 38 39 40message Proto2SpecialFieldName { 41 optional double regular_name = 1; 42 optional int32 cached_size = 2; 43 optional int64 serialized_size = 3; 44 optional string class = 4; 45} 46 47message Proto2Message { 48 49 enum TestEnum { 50 ZERO = 0; 51 ONE = 1; 52 TWO = 2; 53 } 54 55 optional double field_double_1 = 1; 56 optional float field_float_2 = 2; 57 optional int64 field_int64_3 = 3; 58 optional uint64 field_uint64_4 = 4; 59 optional int32 field_int32_5 = 5; 60 optional fixed64 field_fixed64_6 = 6; 61 optional fixed32 field_fixed32_7 = 7; 62 optional bool field_bool_8 = 8; 63 optional string field_string_9 = 9; 64 optional Proto2Message field_message_10 = 10; 65 optional bytes field_bytes_11 = 11; 66 optional uint32 field_uint32_12 = 12; 67 optional TestEnum field_enum_13 = 13; 68 optional sfixed32 field_sfixed32_14 = 14; 69 optional sfixed64 field_sfixed64_15 = 15; 70 optional sint32 field_sint32_16 = 16; 71 optional sint64 field_sint64_17 = 17; 72 repeated double field_double_list_18 = 18 [packed = false]; 73 repeated float field_float_list_19 = 19 [packed = false]; 74 repeated int64 field_int64_list_20 = 20 [packed = false]; 75 repeated uint64 field_uint64_list_21 = 21 [packed = false]; 76 repeated int32 field_int32_list_22 = 22 [packed = false]; 77 repeated fixed64 field_fixed64_list_23 = 23 [packed = false]; 78 repeated fixed32 field_fixed32_list_24 = 24 [packed = false]; 79 repeated bool field_bool_list_25 = 25 [packed = false]; 80 repeated string field_string_list_26 = 26 [packed = false]; 81 repeated Proto2Message field_message_list_27 = 27 [packed = false]; 82 repeated bytes field_bytes_list_28 = 28 [packed = false]; 83 repeated uint32 field_uint32_list_29 = 29 [packed = false]; 84 repeated TestEnum field_enum_list_30 = 30 [packed = false]; 85 repeated sfixed32 field_sfixed32_list_31 = 31 [packed = false]; 86 repeated sfixed64 field_sfixed64_list_32 = 32 [packed = false]; 87 repeated sint32 field_sint32_list_33 = 33 [packed = false]; 88 repeated sint64 field_sint64_list_34 = 34 [packed = false]; 89 repeated double field_double_list_packed_35 = 35 [packed = true]; 90 repeated float field_float_list_packed_36 = 36 [packed = true]; 91 repeated int64 field_int64_list_packed_37 = 37 [packed = true]; 92 repeated uint64 field_uint64_list_packed_38 = 38 [packed = true]; 93 repeated int32 field_int32_list_packed_39 = 39 [packed = true]; 94 repeated fixed64 field_fixed64_list_packed_40 = 40 [packed = true]; 95 repeated fixed32 field_fixed32_list_packed_41 = 41 [packed = true]; 96 repeated bool field_bool_list_packed_42 = 42 [packed = true]; 97 repeated uint32 field_uint32_list_packed_43 = 43 [packed = true]; 98 repeated TestEnum field_enum_list_packed_44 = 44 [packed = true]; 99 repeated sfixed32 field_sfixed32_list_packed_45 = 45 [packed = true]; 100 repeated sfixed64 field_sfixed64_list_packed_46 = 46 [packed = true]; 101 repeated sint32 field_sint32_list_packed_47 = 47 [packed = true]; 102 repeated sint64 field_sint64_list_packed_48 = 48 [packed = true]; 103 optional group FieldGroup49 = 49 { 104 optional int32 field_int32_50 = 50; 105 } 106 repeated group FieldGroupList51 = 51 { 107 optional int32 field_int32_52 = 52; 108 } 109 oneof test_oneof { 110 double field_double_53 = 53; 111 float field_float_54 = 54; 112 int64 field_int64_55 = 55; 113 uint64 field_uint64_56 = 56; 114 int32 field_int32_57 = 57; 115 fixed64 field_fixed64_58 = 58; 116 fixed32 field_fixed32_59 = 59; 117 bool field_bool_60 = 60; 118 string field_string_61 = 61; 119 Proto2Message field_message_62 = 62; 120 bytes field_bytes_63 = 63; 121 uint32 field_uint32_64 = 64; 122 sfixed32 field_sfixed32_65 = 65; 123 sfixed64 field_sfixed64_66 = 66; 124 sint32 field_sint32_67 = 67; 125 sint64 field_sint64_68 = 68; 126 group FieldGroup69 = 69 { 127 optional int32 field_int32_70 = 70; 128 } 129 } 130 131 message RequiredNestedMessage { 132 optional int32 value = 1; 133 } 134 135 required double field_required_double_71 = 71; 136 required float field_required_float_72 = 72; 137 required int64 field_required_int64_73 = 73; 138 required uint64 field_required_uint64_74 = 74; 139 required int32 field_required_int32_75 = 75; 140 required fixed64 field_required_fixed64_76 = 76; 141 required fixed32 field_required_fixed32_77 = 77; 142 required bool field_required_bool_78 = 78; 143 required string field_required_string_79 = 79; 144 required RequiredNestedMessage field_required_message_80 = 80; 145 required bytes field_required_bytes_81 = 81; 146 required uint32 field_required_uint32_82 = 82; 147 required TestEnum field_required_enum_83 = 83; 148 required sfixed32 field_required_sfixed32_84 = 84; 149 required sfixed64 field_required_sfixed64_85 = 85; 150 required sint32 field_required_sint32_86 = 86; 151 required sint64 field_required_sint64_87 = 87; 152 required group FieldRequiredGroup88 = 88 { 153 optional int32 field_int32_89 = 89; 154 } 155} 156 157message Proto2Empty {} 158 159message Proto2MessageWithExtensions { 160 extensions 1 to 10000; 161} 162 163extend Proto2MessageWithExtensions { 164 optional double field_double_1 = 1; 165 optional float field_float_2 = 2; 166 optional int64 field_int64_3 = 3; 167 optional uint64 field_uint64_4 = 4; 168 optional int32 field_int32_5 = 5; 169 optional fixed64 field_fixed64_6 = 6; 170 optional fixed32 field_fixed32_7 = 7; 171 optional bool field_bool_8 = 8; 172 optional string field_string_9 = 9; 173 optional Proto2Message field_message_10 = 10; 174 optional bytes field_bytes_11 = 11; 175 optional uint32 field_uint32_12 = 12; 176 optional Proto2Message.TestEnum field_enum_13 = 13; 177 optional sfixed32 field_sfixed32_14 = 14; 178 optional sfixed64 field_sfixed64_15 = 15; 179 optional sint32 field_sint32_16 = 16; 180 optional sint64 field_sint64_17 = 17; 181 182 repeated double field_double_list_18 = 18 [packed = false]; 183 repeated float field_float_list_19 = 19 [packed = false]; 184 repeated int64 field_int64_list_20 = 20 [packed = false]; 185 repeated uint64 field_uint64_list_21 = 21 [packed = false]; 186 repeated int32 field_int32_list_22 = 22 [packed = false]; 187 repeated fixed64 field_fixed64_list_23 = 23 [packed = false]; 188 repeated fixed32 field_fixed32_list_24 = 24 [packed = false]; 189 repeated bool field_bool_list_25 = 25 [packed = false]; 190 repeated string field_string_list_26 = 26 [packed = false]; 191 repeated Proto2Message field_message_list_27 = 27 [packed = false]; 192 repeated bytes field_bytes_list_28 = 28 [packed = false]; 193 repeated uint32 field_uint32_list_29 = 29 [packed = false]; 194 repeated Proto2Message.TestEnum field_enum_list_30 = 30 [packed = false]; 195 repeated sfixed32 field_sfixed32_list_31 = 31 [packed = false]; 196 repeated sfixed64 field_sfixed64_list_32 = 32 [packed = false]; 197 repeated sint32 field_sint32_list_33 = 33 [packed = false]; 198 repeated sint64 field_sint64_list_34 = 34 [packed = false]; 199 200 repeated double field_double_list_packed_35 = 35 [packed = true]; 201 repeated float field_float_list_packed_36 = 36 [packed = true]; 202 repeated int64 field_int64_list_packed_37 = 37 [packed = true]; 203 repeated uint64 field_uint64_list_packed_38 = 38 [packed = true]; 204 repeated int32 field_int32_list_packed_39 = 39 [packed = true]; 205 repeated fixed64 field_fixed64_list_packed_40 = 40 [packed = true]; 206 repeated fixed32 field_fixed32_list_packed_41 = 41 [packed = true]; 207 repeated bool field_bool_list_packed_42 = 42 [packed = true]; 208 repeated uint32 field_uint32_list_packed_43 = 43 [packed = true]; 209 repeated Proto2Message.TestEnum field_enum_list_packed_44 = 44 210 [packed = true]; 211 repeated sfixed32 field_sfixed32_list_packed_45 = 45 [packed = true]; 212 repeated sfixed64 field_sfixed64_list_packed_46 = 46 [packed = true]; 213 repeated sint32 field_sint32_list_packed_47 = 47 [packed = true]; 214 repeated sint64 field_sint64_list_packed_48 = 48 [packed = true]; 215 216 optional group FieldGroup49 = 49 { 217 optional int32 field_int32_50 = 50; 218 } 219 220 repeated group FieldGroupList51 = 51 { 221 optional int32 field_int32_52 = 52; 222 } 223} 224 225message Proto2MessageWithMaps { 226 map<bool, bool> field_map_bool_bool_1 = 1; 227 map<bool, bytes> field_map_bool_bytes_2 = 2; 228 map<bool, double> field_map_bool_double_3 = 3; 229 map<bool, Proto2Message.TestEnum> field_map_bool_enum_4 = 4; 230 map<bool, fixed32> field_map_bool_fixed32_5 = 5; 231 map<bool, fixed64> field_map_bool_fixed64_6 = 6; 232 map<bool, float> field_map_bool_float_7 = 7; 233 map<bool, int32> field_map_bool_int32_8 = 8; 234 map<bool, int64> field_map_bool_int64_9 = 9; 235 map<bool, Proto2Message> field_map_bool_message_10 = 10; 236 map<bool, sfixed32> field_map_bool_sfixed32_11 = 11; 237 map<bool, sfixed64> field_map_bool_sfixed64_12 = 12; 238 map<bool, sint32> field_map_bool_sint32_13 = 13; 239 map<bool, sint64> field_map_bool_sint64_14 = 14; 240 map<bool, string> field_map_bool_string_15 = 15; 241 map<bool, uint32> field_map_bool_uint32_16 = 16; 242 map<bool, uint64> field_map_bool_uint64_17 = 17; 243 map<fixed32, bool> field_map_fixed32_bool_18 = 18; 244 map<fixed32, bytes> field_map_fixed32_bytes_19 = 19; 245 map<fixed32, double> field_map_fixed32_double_20 = 20; 246 map<fixed32, Proto2Message.TestEnum> field_map_fixed32_enum_21 = 21; 247 map<fixed32, fixed32> field_map_fixed32_fixed32_22 = 22; 248 map<fixed32, fixed64> field_map_fixed32_fixed64_23 = 23; 249 map<fixed32, float> field_map_fixed32_float_24 = 24; 250 map<fixed32, int32> field_map_fixed32_int32_25 = 25; 251 map<fixed32, int64> field_map_fixed32_int64_26 = 26; 252 map<fixed32, Proto2Message> field_map_fixed32_message_27 = 27; 253 map<fixed32, sfixed32> field_map_fixed32_sfixed32_28 = 28; 254 map<fixed32, sfixed64> field_map_fixed32_sfixed64_29 = 29; 255 map<fixed32, sint32> field_map_fixed32_sint32_30 = 30; 256 map<fixed32, sint64> field_map_fixed32_sint64_31 = 31; 257 map<fixed32, string> field_map_fixed32_string_32 = 32; 258 map<fixed32, uint32> field_map_fixed32_uint32_33 = 33; 259 map<fixed32, uint64> field_map_fixed32_uint64_34 = 34; 260 map<fixed64, bool> field_map_fixed64_bool_35 = 35; 261 map<fixed64, bytes> field_map_fixed64_bytes_36 = 36; 262 map<fixed64, double> field_map_fixed64_double_37 = 37; 263 map<fixed64, Proto2Message.TestEnum> field_map_fixed64_enum_38 = 38; 264 map<fixed64, fixed32> field_map_fixed64_fixed32_39 = 39; 265 map<fixed64, fixed64> field_map_fixed64_fixed64_40 = 40; 266 map<fixed64, float> field_map_fixed64_float_41 = 41; 267 map<fixed64, int32> field_map_fixed64_int32_42 = 42; 268 map<fixed64, int64> field_map_fixed64_int64_43 = 43; 269 map<fixed64, Proto2Message> field_map_fixed64_message_44 = 44; 270 map<fixed64, sfixed32> field_map_fixed64_sfixed32_45 = 45; 271 map<fixed64, sfixed64> field_map_fixed64_sfixed64_46 = 46; 272 map<fixed64, sint32> field_map_fixed64_sint32_47 = 47; 273 map<fixed64, sint64> field_map_fixed64_sint64_48 = 48; 274 map<fixed64, string> field_map_fixed64_string_49 = 49; 275 map<fixed64, uint32> field_map_fixed64_uint32_50 = 50; 276 map<fixed64, uint64> field_map_fixed64_uint64_51 = 51; 277 map<int32, bool> field_map_int32_bool_52 = 52; 278 map<int32, bytes> field_map_int32_bytes_53 = 53; 279 map<int32, double> field_map_int32_double_54 = 54; 280 map<int32, Proto2Message.TestEnum> field_map_int32_enum_55 = 55; 281 map<int32, fixed32> field_map_int32_fixed32_56 = 56; 282 map<int32, fixed64> field_map_int32_fixed64_57 = 57; 283 map<int32, float> field_map_int32_float_58 = 58; 284 map<int32, int32> field_map_int32_int32_59 = 59; 285 map<int32, int64> field_map_int32_int64_60 = 60; 286 map<int32, Proto2Message> field_map_int32_message_61 = 61; 287 map<int32, sfixed32> field_map_int32_sfixed32_62 = 62; 288 map<int32, sfixed64> field_map_int32_sfixed64_63 = 63; 289 map<int32, sint32> field_map_int32_sint32_64 = 64; 290 map<int32, sint64> field_map_int32_sint64_65 = 65; 291 map<int32, string> field_map_int32_string_66 = 66; 292 map<int32, uint32> field_map_int32_uint32_67 = 67; 293 map<int32, uint64> field_map_int32_uint64_68 = 68; 294 map<int64, bool> field_map_int64_bool_69 = 69; 295 map<int64, bytes> field_map_int64_bytes_70 = 70; 296 map<int64, double> field_map_int64_double_71 = 71; 297 map<int64, Proto2Message.TestEnum> field_map_int64_enum_72 = 72; 298 map<int64, fixed32> field_map_int64_fixed32_73 = 73; 299 map<int64, fixed64> field_map_int64_fixed64_74 = 74; 300 map<int64, float> field_map_int64_float_75 = 75; 301 map<int64, int32> field_map_int64_int32_76 = 76; 302 map<int64, int64> field_map_int64_int64_77 = 77; 303 map<int64, Proto2Message> field_map_int64_message_78 = 78; 304 map<int64, sfixed32> field_map_int64_sfixed32_79 = 79; 305 map<int64, sfixed64> field_map_int64_sfixed64_80 = 80; 306 map<int64, sint32> field_map_int64_sint32_81 = 81; 307 map<int64, sint64> field_map_int64_sint64_82 = 82; 308 map<int64, string> field_map_int64_string_83 = 83; 309 map<int64, uint32> field_map_int64_uint32_84 = 84; 310 map<int64, uint64> field_map_int64_uint64_85 = 85; 311 map<sfixed32, bool> field_map_sfixed32_bool_86 = 86; 312 map<sfixed32, bytes> field_map_sfixed32_bytes_87 = 87; 313 map<sfixed32, double> field_map_sfixed32_double_88 = 88; 314 map<sfixed32, Proto2Message.TestEnum> field_map_sfixed32_enum_89 = 89; 315 map<sfixed32, fixed32> field_map_sfixed32_fixed32_90 = 90; 316 map<sfixed32, fixed64> field_map_sfixed32_fixed64_91 = 91; 317 map<sfixed32, float> field_map_sfixed32_float_92 = 92; 318 map<sfixed32, int32> field_map_sfixed32_int32_93 = 93; 319 map<sfixed32, int64> field_map_sfixed32_int64_94 = 94; 320 map<sfixed32, Proto2Message> field_map_sfixed32_message_95 = 95; 321 map<sfixed32, sfixed32> field_map_sfixed32_sfixed32_96 = 96; 322 map<sfixed32, sfixed64> field_map_sfixed32_sfixed64_97 = 97; 323 map<sfixed32, sint32> field_map_sfixed32_sint32_98 = 98; 324 map<sfixed32, sint64> field_map_sfixed32_sint64_99 = 99; 325 map<sfixed32, string> field_map_sfixed32_string_100 = 100; 326 map<sfixed32, uint32> field_map_sfixed32_uint32_101 = 101; 327 map<sfixed32, uint64> field_map_sfixed32_uint64_102 = 102; 328 map<sfixed64, bool> field_map_sfixed64_bool_103 = 103; 329 map<sfixed64, bytes> field_map_sfixed64_bytes_104 = 104; 330 map<sfixed64, double> field_map_sfixed64_double_105 = 105; 331 map<sfixed64, Proto2Message.TestEnum> field_map_sfixed64_enum_106 = 106; 332 map<sfixed64, fixed32> field_map_sfixed64_fixed32_107 = 107; 333 map<sfixed64, fixed64> field_map_sfixed64_fixed64_108 = 108; 334 map<sfixed64, float> field_map_sfixed64_float_109 = 109; 335 map<sfixed64, int32> field_map_sfixed64_int32_110 = 110; 336 map<sfixed64, int64> field_map_sfixed64_int64_111 = 111; 337 map<sfixed64, Proto2Message> field_map_sfixed64_message_112 = 112; 338 map<sfixed64, sfixed32> field_map_sfixed64_sfixed32_113 = 113; 339 map<sfixed64, sfixed64> field_map_sfixed64_sfixed64_114 = 114; 340 map<sfixed64, sint32> field_map_sfixed64_sint32_115 = 115; 341 map<sfixed64, sint64> field_map_sfixed64_sint64_116 = 116; 342 map<sfixed64, string> field_map_sfixed64_string_117 = 117; 343 map<sfixed64, uint32> field_map_sfixed64_uint32_118 = 118; 344 map<sfixed64, uint64> field_map_sfixed64_uint64_119 = 119; 345 map<sint32, bool> field_map_sint32_bool_120 = 120; 346 map<sint32, bytes> field_map_sint32_bytes_121 = 121; 347 map<sint32, double> field_map_sint32_double_122 = 122; 348 map<sint32, Proto2Message.TestEnum> field_map_sint32_enum_123 = 123; 349 map<sint32, fixed32> field_map_sint32_fixed32_124 = 124; 350 map<sint32, fixed64> field_map_sint32_fixed64_125 = 125; 351 map<sint32, float> field_map_sint32_float_126 = 126; 352 map<sint32, int32> field_map_sint32_int32_127 = 127; 353 map<sint32, int64> field_map_sint32_int64_128 = 128; 354 map<sint32, Proto2Message> field_map_sint32_message_129 = 129; 355 map<sint32, sfixed32> field_map_sint32_sfixed32_130 = 130; 356 map<sint32, sfixed64> field_map_sint32_sfixed64_131 = 131; 357 map<sint32, sint32> field_map_sint32_sint32_132 = 132; 358 map<sint32, sint64> field_map_sint32_sint64_133 = 133; 359 map<sint32, string> field_map_sint32_string_134 = 134; 360 map<sint32, uint32> field_map_sint32_uint32_135 = 135; 361 map<sint32, uint64> field_map_sint32_uint64_136 = 136; 362 map<sint64, bool> field_map_sint64_bool_137 = 137; 363 map<sint64, bytes> field_map_sint64_bytes_138 = 138; 364 map<sint64, double> field_map_sint64_double_139 = 139; 365 map<sint64, Proto2Message.TestEnum> field_map_sint64_enum_140 = 140; 366 map<sint64, fixed32> field_map_sint64_fixed32_141 = 141; 367 map<sint64, fixed64> field_map_sint64_fixed64_142 = 142; 368 map<sint64, float> field_map_sint64_float_143 = 143; 369 map<sint64, int32> field_map_sint64_int32_144 = 144; 370 map<sint64, int64> field_map_sint64_int64_145 = 145; 371 map<sint64, Proto2Message> field_map_sint64_message_146 = 146; 372 map<sint64, sfixed32> field_map_sint64_sfixed32_147 = 147; 373 map<sint64, sfixed64> field_map_sint64_sfixed64_148 = 148; 374 map<sint64, sint32> field_map_sint64_sint32_149 = 149; 375 map<sint64, sint64> field_map_sint64_sint64_150 = 150; 376 map<sint64, string> field_map_sint64_string_151 = 151; 377 map<sint64, uint32> field_map_sint64_uint32_152 = 152; 378 map<sint64, uint64> field_map_sint64_uint64_153 = 153; 379 map<string, bool> field_map_string_bool_154 = 154; 380 map<string, bytes> field_map_string_bytes_155 = 155; 381 map<string, double> field_map_string_double_156 = 156; 382 map<string, Proto2Message.TestEnum> field_map_string_enum_157 = 157; 383 map<string, fixed32> field_map_string_fixed32_158 = 158; 384 map<string, fixed64> field_map_string_fixed64_159 = 159; 385 map<string, float> field_map_string_float_160 = 160; 386 map<string, int32> field_map_string_int32_161 = 161; 387 map<string, int64> field_map_string_int64_162 = 162; 388 map<string, Proto2Message> field_map_string_message_163 = 163; 389 map<string, sfixed32> field_map_string_sfixed32_164 = 164; 390 map<string, sfixed64> field_map_string_sfixed64_165 = 165; 391 map<string, sint32> field_map_string_sint32_166 = 166; 392 map<string, sint64> field_map_string_sint64_167 = 167; 393 map<string, string> field_map_string_string_168 = 168; 394 map<string, uint32> field_map_string_uint32_169 = 169; 395 map<string, uint64> field_map_string_uint64_170 = 170; 396 map<uint32, bool> field_map_uint32_bool_171 = 171; 397 map<uint32, bytes> field_map_uint32_bytes_172 = 172; 398 map<uint32, double> field_map_uint32_double_173 = 173; 399 map<uint32, Proto2Message.TestEnum> field_map_uint32_enum_174 = 174; 400 map<uint32, fixed32> field_map_uint32_fixed32_175 = 175; 401 map<uint32, fixed64> field_map_uint32_fixed64_176 = 176; 402 map<uint32, float> field_map_uint32_float_177 = 177; 403 map<uint32, int32> field_map_uint32_int32_178 = 178; 404 map<uint32, int64> field_map_uint32_int64_179 = 179; 405 map<uint32, Proto2Message> field_map_uint32_message_180 = 180; 406 map<uint32, sfixed32> field_map_uint32_sfixed32_181 = 181; 407 map<uint32, sfixed64> field_map_uint32_sfixed64_182 = 182; 408 map<uint32, sint32> field_map_uint32_sint32_183 = 183; 409 map<uint32, sint64> field_map_uint32_sint64_184 = 184; 410 map<uint32, string> field_map_uint32_string_185 = 185; 411 map<uint32, uint32> field_map_uint32_uint32_186 = 186; 412 map<uint32, uint64> field_map_uint32_uint64_187 = 187; 413 map<uint64, bool> field_map_uint64_bool_188 = 188; 414 map<uint64, bytes> field_map_uint64_bytes_189 = 189; 415 map<uint64, double> field_map_uint64_double_190 = 190; 416 map<uint64, Proto2Message.TestEnum> field_map_uint64_enum_191 = 191; 417 map<uint64, fixed32> field_map_uint64_fixed32_192 = 192; 418 map<uint64, fixed64> field_map_uint64_fixed64_193 = 193; 419 map<uint64, float> field_map_uint64_float_194 = 194; 420 map<uint64, int32> field_map_uint64_int32_195 = 195; 421 map<uint64, int64> field_map_uint64_int64_196 = 196; 422 map<uint64, Proto2Message> field_map_uint64_message_197 = 197; 423 map<uint64, sfixed32> field_map_uint64_sfixed32_198 = 198; 424 map<uint64, sfixed64> field_map_uint64_sfixed64_199 = 199; 425 map<uint64, sint32> field_map_uint64_sint32_200 = 200; 426 map<uint64, sint64> field_map_uint64_sint64_201 = 201; 427 map<uint64, string> field_map_uint64_string_202 = 202; 428 map<uint64, uint32> field_map_uint64_uint32_203 = 203; 429 map<uint64, uint64> field_map_uint64_uint64_204 = 204; 430} 431