forked from OpenBazaar/openbazaar-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
countrycodes.pb.go
956 lines (945 loc) · 43.4 KB
/
countrycodes.pb.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
// Code generated by protoc-gen-go. DO NOT EDIT.
// source: countrycodes.proto
package pb
import proto "github.com/golang/protobuf/proto"
import fmt "fmt"
import math "math"
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
// This is a compile-time assertion to ensure that this generated file
// is compatible with the proto package it is being compiled against.
// A compilation error at this line likely means your copy of the
// proto package needs to be updated.
const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
type CountryCode int32
const (
CountryCode_NA CountryCode = 0
CountryCode_AFGHANISTAN CountryCode = 1
CountryCode_ALAND_ISLANDS CountryCode = 2
CountryCode_ALBANIA CountryCode = 3
CountryCode_ALGERIA CountryCode = 4
CountryCode_AMERICAN_SAMOA CountryCode = 5
CountryCode_ANDORRA CountryCode = 6
CountryCode_ANGOLA CountryCode = 7
CountryCode_ANGUILLA CountryCode = 8
CountryCode_ANTIGUA CountryCode = 9
CountryCode_ARGENTINA CountryCode = 10
CountryCode_ARMENIA CountryCode = 11
CountryCode_ARUBA CountryCode = 12
CountryCode_AUSTRALIA CountryCode = 13
CountryCode_AUSTRIA CountryCode = 14
CountryCode_AZERBAIJAN CountryCode = 15
CountryCode_BAHAMAS CountryCode = 16
CountryCode_BAHRAIN CountryCode = 17
CountryCode_BANGLADESH CountryCode = 18
CountryCode_BARBADOS CountryCode = 19
CountryCode_BELARUS CountryCode = 20
CountryCode_BELGIUM CountryCode = 21
CountryCode_BELIZE CountryCode = 22
CountryCode_BENIN CountryCode = 23
CountryCode_BERMUDA CountryCode = 24
CountryCode_BHUTAN CountryCode = 25
CountryCode_BOLIVIA CountryCode = 26
CountryCode_BONAIRE_SINT_EUSTATIUS_SABA CountryCode = 27
CountryCode_BOSNIA CountryCode = 28
CountryCode_BOTSWANA CountryCode = 29
CountryCode_BOUVET_ISLAND CountryCode = 30
CountryCode_BRAZIL CountryCode = 31
CountryCode_BRITISH_INDIAN_OCEAN_TERRITORY CountryCode = 32
CountryCode_BRUNEI_DARUSSALAM CountryCode = 33
CountryCode_BULGARIA CountryCode = 34
CountryCode_BURKINA_FASO CountryCode = 35
CountryCode_BURUNDI CountryCode = 36
CountryCode_CABO_VERDE CountryCode = 37
CountryCode_CAMBODIA CountryCode = 38
CountryCode_CAMEROON CountryCode = 39
CountryCode_CANADA CountryCode = 40
CountryCode_CAYMAN_ISLANDS CountryCode = 41
CountryCode_CENTRAL_AFRICAN_REPUBLIC CountryCode = 42
CountryCode_CHAD CountryCode = 43
CountryCode_CHILE CountryCode = 44
CountryCode_CHINA CountryCode = 45
CountryCode_CHRISTMAS_ISLAND CountryCode = 46
CountryCode_COCOS_ISLANDS CountryCode = 47
CountryCode_COLOMBIA CountryCode = 48
CountryCode_COMOROS CountryCode = 49
CountryCode_CONGO_REPUBLIC CountryCode = 50
CountryCode_CONGO CountryCode = 51
CountryCode_COOK_ISLANDS CountryCode = 52
CountryCode_COSTA_RICA CountryCode = 53
CountryCode_COTE_DIVOIRE CountryCode = 54
CountryCode_CROATIA CountryCode = 55
CountryCode_CUBA CountryCode = 56
CountryCode_CURACAO CountryCode = 57
CountryCode_CYPRUS CountryCode = 58
CountryCode_CZECH_REPUBLIC CountryCode = 59
CountryCode_DENMARK CountryCode = 60
CountryCode_DJIBOUTI CountryCode = 61
CountryCode_DOMINICA CountryCode = 62
CountryCode_DOMINICAN_REPUBLIC CountryCode = 63
CountryCode_ECUADOR CountryCode = 64
CountryCode_EGYPT CountryCode = 65
CountryCode_EL_SALVADOR CountryCode = 66
CountryCode_EQUATORIAL_GUINEA CountryCode = 67
CountryCode_ERITREA CountryCode = 68
CountryCode_ESTONIA CountryCode = 69
CountryCode_ETHIOPIA CountryCode = 70
CountryCode_FALKLAND_ISLANDS CountryCode = 71
CountryCode_FAROE_ISLANDS CountryCode = 72
CountryCode_FIJI CountryCode = 73
CountryCode_FINLAND CountryCode = 74
CountryCode_FRANCE CountryCode = 75
CountryCode_FRENCH_GUIANA CountryCode = 76
CountryCode_FRENCH_POLYNESIA CountryCode = 77
CountryCode_FRENCH_SOUTHERN_TERRITORIES CountryCode = 78
CountryCode_GABON CountryCode = 79
CountryCode_GAMBIA CountryCode = 80
CountryCode_GEORGIA CountryCode = 81
CountryCode_GERMANY CountryCode = 82
CountryCode_GHANA CountryCode = 83
CountryCode_GIBRALTAR CountryCode = 84
CountryCode_GREECE CountryCode = 85
CountryCode_GREENLAND CountryCode = 86
CountryCode_GRENADA CountryCode = 87
CountryCode_GUADELOUPE CountryCode = 88
CountryCode_GUAM CountryCode = 89
CountryCode_GUATEMALA CountryCode = 90
CountryCode_GUERNSEY CountryCode = 91
CountryCode_GUINEA CountryCode = 92
CountryCode_GUINEA_BISSAU CountryCode = 93
CountryCode_GUYANA CountryCode = 94
CountryCode_HAITI CountryCode = 95
CountryCode_HEARD_ISLAND CountryCode = 96
CountryCode_HOLY_SEE CountryCode = 97
CountryCode_HONDURAS CountryCode = 98
CountryCode_HONG_KONG CountryCode = 99
CountryCode_HUNGARY CountryCode = 100
CountryCode_ICELAND CountryCode = 101
CountryCode_INDIA CountryCode = 102
CountryCode_INDONESIA CountryCode = 103
CountryCode_IRAN CountryCode = 104
CountryCode_IRAQ CountryCode = 105
CountryCode_IRELAND CountryCode = 106
CountryCode_ISLE_OF_MAN CountryCode = 107
CountryCode_ISRAEL CountryCode = 108
CountryCode_ITALY CountryCode = 109
CountryCode_JAMAICA CountryCode = 110
CountryCode_JAPAN CountryCode = 111
CountryCode_JERSEY CountryCode = 112
CountryCode_JORDAN CountryCode = 113
CountryCode_KAZAKHSTAN CountryCode = 114
CountryCode_KENYA CountryCode = 115
CountryCode_KIRIBATI CountryCode = 116
CountryCode_NORTH_KOREA CountryCode = 117
CountryCode_SOUTH_KOREA CountryCode = 118
CountryCode_KUWAIT CountryCode = 119
CountryCode_KYRGYZSTAN CountryCode = 120
CountryCode_LAO CountryCode = 121
CountryCode_LATVIA CountryCode = 122
CountryCode_LEBANON CountryCode = 123
CountryCode_LESOTHO CountryCode = 124
CountryCode_LIBERIA CountryCode = 125
CountryCode_LIBYA CountryCode = 126
CountryCode_LIECHTENSTEIN CountryCode = 127
CountryCode_LITHUANIA CountryCode = 128
CountryCode_LUXEMBOURG CountryCode = 129
CountryCode_MACAO CountryCode = 130
CountryCode_MACEDONIA CountryCode = 131
CountryCode_MADAGASCAR CountryCode = 132
CountryCode_MALAWI CountryCode = 133
CountryCode_MALAYSIA CountryCode = 134
CountryCode_MALDIVES CountryCode = 135
CountryCode_MALI CountryCode = 136
CountryCode_MALTA CountryCode = 137
CountryCode_MARSHALL_ISLANDS CountryCode = 138
CountryCode_MARTINIQUE CountryCode = 139
CountryCode_MAURITANIA CountryCode = 140
CountryCode_MAURITIUS CountryCode = 141
CountryCode_MAYOTTE CountryCode = 142
CountryCode_MEXICO CountryCode = 143
CountryCode_MICRONESIA CountryCode = 144
CountryCode_MOLDOVA CountryCode = 145
CountryCode_MONACO CountryCode = 146
CountryCode_MONGOLIA CountryCode = 147
CountryCode_MONTENEGRO CountryCode = 148
CountryCode_MONTSERRAT CountryCode = 149
CountryCode_MOROCCO CountryCode = 150
CountryCode_MOZAMBIQUE CountryCode = 151
CountryCode_MYANMAR CountryCode = 152
CountryCode_NAMIBIA CountryCode = 153
CountryCode_NAURU CountryCode = 154
CountryCode_NEPAL CountryCode = 155
CountryCode_NETHERLANDS CountryCode = 156
CountryCode_NEW_CALEDONIA CountryCode = 157
CountryCode_NEW_ZEALAND CountryCode = 158
CountryCode_NICARAGUA CountryCode = 159
CountryCode_NIGER CountryCode = 160
CountryCode_NIGERIA CountryCode = 161
CountryCode_NIUE CountryCode = 162
CountryCode_NORFOLK_ISLAND CountryCode = 163
CountryCode_NORTHERN_MARIANA_ISLANDS CountryCode = 164
CountryCode_NORWAY CountryCode = 165
CountryCode_OMAN CountryCode = 166
CountryCode_PAKISTAN CountryCode = 167
CountryCode_PALAU CountryCode = 168
CountryCode_PANAMA CountryCode = 169
CountryCode_PAPUA_NEW_GUINEA CountryCode = 170
CountryCode_PARAGUAY CountryCode = 171
CountryCode_PERU CountryCode = 172
CountryCode_PHILIPPINES CountryCode = 173
CountryCode_PITCAIRN CountryCode = 174
CountryCode_POLAND CountryCode = 175
CountryCode_PORTUGAL CountryCode = 176
CountryCode_PUERTO_RICO CountryCode = 177
CountryCode_QATAR CountryCode = 178
CountryCode_REUNION CountryCode = 179
CountryCode_ROMANIA CountryCode = 180
CountryCode_RUSSIA CountryCode = 181
CountryCode_RWANDA CountryCode = 182
CountryCode_SAINT_BARTHELEMY CountryCode = 183
CountryCode_SAINT_HELENA CountryCode = 184
CountryCode_SAINT_KITTS CountryCode = 185
CountryCode_SAINT_LUCIA CountryCode = 186
CountryCode_SAINT_MARTIN CountryCode = 187
CountryCode_SAINT_PIERRE CountryCode = 188
CountryCode_SAINT_VINCENT CountryCode = 189
CountryCode_SAMOA CountryCode = 190
CountryCode_SAN_MARINO CountryCode = 191
CountryCode_SAO_TOME CountryCode = 192
CountryCode_SAUDI_ARABIA CountryCode = 193
CountryCode_SENEGAL CountryCode = 194
CountryCode_SERBIA CountryCode = 195
CountryCode_SEYCHELLES CountryCode = 196
CountryCode_SIERRA_LEONE CountryCode = 197
CountryCode_SINGAPORE CountryCode = 198
CountryCode_SINT_MAARTEN CountryCode = 199
CountryCode_SUCRE CountryCode = 200
CountryCode_SLOVAKIA CountryCode = 201
CountryCode_SLOVENIA CountryCode = 202
CountryCode_SOLOMON_ISLANDS CountryCode = 203
CountryCode_SOMALIA CountryCode = 204
CountryCode_SOUTH_AFRICA CountryCode = 205
CountryCode_SOUTH_SUDAN CountryCode = 206
CountryCode_SPAIN CountryCode = 207
CountryCode_SRI_LANKA CountryCode = 208
CountryCode_SUDAN CountryCode = 209
CountryCode_SURINAME CountryCode = 210
CountryCode_SVALBARD CountryCode = 211
CountryCode_SWAZILAND CountryCode = 212
CountryCode_SWEDEN CountryCode = 213
CountryCode_SWITZERLAND CountryCode = 214
CountryCode_SYRIAN_ARAB_REPUBLIC CountryCode = 215
CountryCode_TAIWAN CountryCode = 216
CountryCode_TAJIKISTAN CountryCode = 217
CountryCode_TANZANIA CountryCode = 218
CountryCode_THAILAND CountryCode = 219
CountryCode_TIMOR_LESTE CountryCode = 220
CountryCode_TOGO CountryCode = 221
CountryCode_TOKELAU CountryCode = 222
CountryCode_TONGA CountryCode = 223
CountryCode_TRINIDAD CountryCode = 224
CountryCode_TUNISIA CountryCode = 225
CountryCode_TURKEY CountryCode = 226
CountryCode_TURKMENISTAN CountryCode = 227
CountryCode_TURKS_AND_CAICOS_ISLANDS CountryCode = 228
CountryCode_TUVALU CountryCode = 229
CountryCode_UGANDA CountryCode = 230
CountryCode_UKRAINE CountryCode = 231
CountryCode_UNITED_ARAB_EMIRATES CountryCode = 232
CountryCode_UNITED_KINGDOM CountryCode = 233
CountryCode_UNITED_STATES CountryCode = 234
CountryCode_URUGUAY CountryCode = 235
CountryCode_UZBEKISTAN CountryCode = 236
CountryCode_VANUATU CountryCode = 237
CountryCode_VENEZUELA CountryCode = 238
CountryCode_VIETNAM CountryCode = 239
CountryCode_VIRGIN_ISLANDS_BRITISH CountryCode = 240
CountryCode_VIRGIN_ISLANDS_US CountryCode = 241
CountryCode_WALLIS_AND_FUTUNA CountryCode = 242
CountryCode_WESTERN_SAHARA CountryCode = 243
CountryCode_YEMEN CountryCode = 244
CountryCode_ZAMBIA CountryCode = 245
CountryCode_ZIMBABWE CountryCode = 246
CountryCode_ALL CountryCode = 500
CountryCode_AFRICA CountryCode = 501
CountryCode_ASIA CountryCode = 502
CountryCode_CENTRAL_AMERICA CountryCode = 503
CountryCode_EUROPE CountryCode = 504
CountryCode_MIDDLE_EAST CountryCode = 505
CountryCode_NORTH_AMERICA CountryCode = 506
CountryCode_SOUTH_AMERICA CountryCode = 507
CountryCode_OCEANIA CountryCode = 508
)
var CountryCode_name = map[int32]string{
0: "NA",
1: "AFGHANISTAN",
2: "ALAND_ISLANDS",
3: "ALBANIA",
4: "ALGERIA",
5: "AMERICAN_SAMOA",
6: "ANDORRA",
7: "ANGOLA",
8: "ANGUILLA",
9: "ANTIGUA",
10: "ARGENTINA",
11: "ARMENIA",
12: "ARUBA",
13: "AUSTRALIA",
14: "AUSTRIA",
15: "AZERBAIJAN",
16: "BAHAMAS",
17: "BAHRAIN",
18: "BANGLADESH",
19: "BARBADOS",
20: "BELARUS",
21: "BELGIUM",
22: "BELIZE",
23: "BENIN",
24: "BERMUDA",
25: "BHUTAN",
26: "BOLIVIA",
27: "BONAIRE_SINT_EUSTATIUS_SABA",
28: "BOSNIA",
29: "BOTSWANA",
30: "BOUVET_ISLAND",
31: "BRAZIL",
32: "BRITISH_INDIAN_OCEAN_TERRITORY",
33: "BRUNEI_DARUSSALAM",
34: "BULGARIA",
35: "BURKINA_FASO",
36: "BURUNDI",
37: "CABO_VERDE",
38: "CAMBODIA",
39: "CAMEROON",
40: "CANADA",
41: "CAYMAN_ISLANDS",
42: "CENTRAL_AFRICAN_REPUBLIC",
43: "CHAD",
44: "CHILE",
45: "CHINA",
46: "CHRISTMAS_ISLAND",
47: "COCOS_ISLANDS",
48: "COLOMBIA",
49: "COMOROS",
50: "CONGO_REPUBLIC",
51: "CONGO",
52: "COOK_ISLANDS",
53: "COSTA_RICA",
54: "COTE_DIVOIRE",
55: "CROATIA",
56: "CUBA",
57: "CURACAO",
58: "CYPRUS",
59: "CZECH_REPUBLIC",
60: "DENMARK",
61: "DJIBOUTI",
62: "DOMINICA",
63: "DOMINICAN_REPUBLIC",
64: "ECUADOR",
65: "EGYPT",
66: "EL_SALVADOR",
67: "EQUATORIAL_GUINEA",
68: "ERITREA",
69: "ESTONIA",
70: "ETHIOPIA",
71: "FALKLAND_ISLANDS",
72: "FAROE_ISLANDS",
73: "FIJI",
74: "FINLAND",
75: "FRANCE",
76: "FRENCH_GUIANA",
77: "FRENCH_POLYNESIA",
78: "FRENCH_SOUTHERN_TERRITORIES",
79: "GABON",
80: "GAMBIA",
81: "GEORGIA",
82: "GERMANY",
83: "GHANA",
84: "GIBRALTAR",
85: "GREECE",
86: "GREENLAND",
87: "GRENADA",
88: "GUADELOUPE",
89: "GUAM",
90: "GUATEMALA",
91: "GUERNSEY",
92: "GUINEA",
93: "GUINEA_BISSAU",
94: "GUYANA",
95: "HAITI",
96: "HEARD_ISLAND",
97: "HOLY_SEE",
98: "HONDURAS",
99: "HONG_KONG",
100: "HUNGARY",
101: "ICELAND",
102: "INDIA",
103: "INDONESIA",
104: "IRAN",
105: "IRAQ",
106: "IRELAND",
107: "ISLE_OF_MAN",
108: "ISRAEL",
109: "ITALY",
110: "JAMAICA",
111: "JAPAN",
112: "JERSEY",
113: "JORDAN",
114: "KAZAKHSTAN",
115: "KENYA",
116: "KIRIBATI",
117: "NORTH_KOREA",
118: "SOUTH_KOREA",
119: "KUWAIT",
120: "KYRGYZSTAN",
121: "LAO",
122: "LATVIA",
123: "LEBANON",
124: "LESOTHO",
125: "LIBERIA",
126: "LIBYA",
127: "LIECHTENSTEIN",
128: "LITHUANIA",
129: "LUXEMBOURG",
130: "MACAO",
131: "MACEDONIA",
132: "MADAGASCAR",
133: "MALAWI",
134: "MALAYSIA",
135: "MALDIVES",
136: "MALI",
137: "MALTA",
138: "MARSHALL_ISLANDS",
139: "MARTINIQUE",
140: "MAURITANIA",
141: "MAURITIUS",
142: "MAYOTTE",
143: "MEXICO",
144: "MICRONESIA",
145: "MOLDOVA",
146: "MONACO",
147: "MONGOLIA",
148: "MONTENEGRO",
149: "MONTSERRAT",
150: "MOROCCO",
151: "MOZAMBIQUE",
152: "MYANMAR",
153: "NAMIBIA",
154: "NAURU",
155: "NEPAL",
156: "NETHERLANDS",
157: "NEW_CALEDONIA",
158: "NEW_ZEALAND",
159: "NICARAGUA",
160: "NIGER",
161: "NIGERIA",
162: "NIUE",
163: "NORFOLK_ISLAND",
164: "NORTHERN_MARIANA_ISLANDS",
165: "NORWAY",
166: "OMAN",
167: "PAKISTAN",
168: "PALAU",
169: "PANAMA",
170: "PAPUA_NEW_GUINEA",
171: "PARAGUAY",
172: "PERU",
173: "PHILIPPINES",
174: "PITCAIRN",
175: "POLAND",
176: "PORTUGAL",
177: "PUERTO_RICO",
178: "QATAR",
179: "REUNION",
180: "ROMANIA",
181: "RUSSIA",
182: "RWANDA",
183: "SAINT_BARTHELEMY",
184: "SAINT_HELENA",
185: "SAINT_KITTS",
186: "SAINT_LUCIA",
187: "SAINT_MARTIN",
188: "SAINT_PIERRE",
189: "SAINT_VINCENT",
190: "SAMOA",
191: "SAN_MARINO",
192: "SAO_TOME",
193: "SAUDI_ARABIA",
194: "SENEGAL",
195: "SERBIA",
196: "SEYCHELLES",
197: "SIERRA_LEONE",
198: "SINGAPORE",
199: "SINT_MAARTEN",
200: "SUCRE",
201: "SLOVAKIA",
202: "SLOVENIA",
203: "SOLOMON_ISLANDS",
204: "SOMALIA",
205: "SOUTH_AFRICA",
206: "SOUTH_SUDAN",
207: "SPAIN",
208: "SRI_LANKA",
209: "SUDAN",
210: "SURINAME",
211: "SVALBARD",
212: "SWAZILAND",
213: "SWEDEN",
214: "SWITZERLAND",
215: "SYRIAN_ARAB_REPUBLIC",
216: "TAIWAN",
217: "TAJIKISTAN",
218: "TANZANIA",
219: "THAILAND",
220: "TIMOR_LESTE",
221: "TOGO",
222: "TOKELAU",
223: "TONGA",
224: "TRINIDAD",
225: "TUNISIA",
226: "TURKEY",
227: "TURKMENISTAN",
228: "TURKS_AND_CAICOS_ISLANDS",
229: "TUVALU",
230: "UGANDA",
231: "UKRAINE",
232: "UNITED_ARAB_EMIRATES",
233: "UNITED_KINGDOM",
234: "UNITED_STATES",
235: "URUGUAY",
236: "UZBEKISTAN",
237: "VANUATU",
238: "VENEZUELA",
239: "VIETNAM",
240: "VIRGIN_ISLANDS_BRITISH",
241: "VIRGIN_ISLANDS_US",
242: "WALLIS_AND_FUTUNA",
243: "WESTERN_SAHARA",
244: "YEMEN",
245: "ZAMBIA",
246: "ZIMBABWE",
500: "ALL",
501: "AFRICA",
502: "ASIA",
503: "CENTRAL_AMERICA",
504: "EUROPE",
505: "MIDDLE_EAST",
506: "NORTH_AMERICA",
507: "SOUTH_AMERICA",
508: "OCEANIA",
}
var CountryCode_value = map[string]int32{
"NA": 0,
"AFGHANISTAN": 1,
"ALAND_ISLANDS": 2,
"ALBANIA": 3,
"ALGERIA": 4,
"AMERICAN_SAMOA": 5,
"ANDORRA": 6,
"ANGOLA": 7,
"ANGUILLA": 8,
"ANTIGUA": 9,
"ARGENTINA": 10,
"ARMENIA": 11,
"ARUBA": 12,
"AUSTRALIA": 13,
"AUSTRIA": 14,
"AZERBAIJAN": 15,
"BAHAMAS": 16,
"BAHRAIN": 17,
"BANGLADESH": 18,
"BARBADOS": 19,
"BELARUS": 20,
"BELGIUM": 21,
"BELIZE": 22,
"BENIN": 23,
"BERMUDA": 24,
"BHUTAN": 25,
"BOLIVIA": 26,
"BONAIRE_SINT_EUSTATIUS_SABA": 27,
"BOSNIA": 28,
"BOTSWANA": 29,
"BOUVET_ISLAND": 30,
"BRAZIL": 31,
"BRITISH_INDIAN_OCEAN_TERRITORY": 32,
"BRUNEI_DARUSSALAM": 33,
"BULGARIA": 34,
"BURKINA_FASO": 35,
"BURUNDI": 36,
"CABO_VERDE": 37,
"CAMBODIA": 38,
"CAMEROON": 39,
"CANADA": 40,
"CAYMAN_ISLANDS": 41,
"CENTRAL_AFRICAN_REPUBLIC": 42,
"CHAD": 43,
"CHILE": 44,
"CHINA": 45,
"CHRISTMAS_ISLAND": 46,
"COCOS_ISLANDS": 47,
"COLOMBIA": 48,
"COMOROS": 49,
"CONGO_REPUBLIC": 50,
"CONGO": 51,
"COOK_ISLANDS": 52,
"COSTA_RICA": 53,
"COTE_DIVOIRE": 54,
"CROATIA": 55,
"CUBA": 56,
"CURACAO": 57,
"CYPRUS": 58,
"CZECH_REPUBLIC": 59,
"DENMARK": 60,
"DJIBOUTI": 61,
"DOMINICA": 62,
"DOMINICAN_REPUBLIC": 63,
"ECUADOR": 64,
"EGYPT": 65,
"EL_SALVADOR": 66,
"EQUATORIAL_GUINEA": 67,
"ERITREA": 68,
"ESTONIA": 69,
"ETHIOPIA": 70,
"FALKLAND_ISLANDS": 71,
"FAROE_ISLANDS": 72,
"FIJI": 73,
"FINLAND": 74,
"FRANCE": 75,
"FRENCH_GUIANA": 76,
"FRENCH_POLYNESIA": 77,
"FRENCH_SOUTHERN_TERRITORIES": 78,
"GABON": 79,
"GAMBIA": 80,
"GEORGIA": 81,
"GERMANY": 82,
"GHANA": 83,
"GIBRALTAR": 84,
"GREECE": 85,
"GREENLAND": 86,
"GRENADA": 87,
"GUADELOUPE": 88,
"GUAM": 89,
"GUATEMALA": 90,
"GUERNSEY": 91,
"GUINEA": 92,
"GUINEA_BISSAU": 93,
"GUYANA": 94,
"HAITI": 95,
"HEARD_ISLAND": 96,
"HOLY_SEE": 97,
"HONDURAS": 98,
"HONG_KONG": 99,
"HUNGARY": 100,
"ICELAND": 101,
"INDIA": 102,
"INDONESIA": 103,
"IRAN": 104,
"IRAQ": 105,
"IRELAND": 106,
"ISLE_OF_MAN": 107,
"ISRAEL": 108,
"ITALY": 109,
"JAMAICA": 110,
"JAPAN": 111,
"JERSEY": 112,
"JORDAN": 113,
"KAZAKHSTAN": 114,
"KENYA": 115,
"KIRIBATI": 116,
"NORTH_KOREA": 117,
"SOUTH_KOREA": 118,
"KUWAIT": 119,
"KYRGYZSTAN": 120,
"LAO": 121,
"LATVIA": 122,
"LEBANON": 123,
"LESOTHO": 124,
"LIBERIA": 125,
"LIBYA": 126,
"LIECHTENSTEIN": 127,
"LITHUANIA": 128,
"LUXEMBOURG": 129,
"MACAO": 130,
"MACEDONIA": 131,
"MADAGASCAR": 132,
"MALAWI": 133,
"MALAYSIA": 134,
"MALDIVES": 135,
"MALI": 136,
"MALTA": 137,
"MARSHALL_ISLANDS": 138,
"MARTINIQUE": 139,
"MAURITANIA": 140,
"MAURITIUS": 141,
"MAYOTTE": 142,
"MEXICO": 143,
"MICRONESIA": 144,
"MOLDOVA": 145,
"MONACO": 146,
"MONGOLIA": 147,
"MONTENEGRO": 148,
"MONTSERRAT": 149,
"MOROCCO": 150,
"MOZAMBIQUE": 151,
"MYANMAR": 152,
"NAMIBIA": 153,
"NAURU": 154,
"NEPAL": 155,
"NETHERLANDS": 156,
"NEW_CALEDONIA": 157,
"NEW_ZEALAND": 158,
"NICARAGUA": 159,
"NIGER": 160,
"NIGERIA": 161,
"NIUE": 162,
"NORFOLK_ISLAND": 163,
"NORTHERN_MARIANA_ISLANDS": 164,
"NORWAY": 165,
"OMAN": 166,
"PAKISTAN": 167,
"PALAU": 168,
"PANAMA": 169,
"PAPUA_NEW_GUINEA": 170,
"PARAGUAY": 171,
"PERU": 172,
"PHILIPPINES": 173,
"PITCAIRN": 174,
"POLAND": 175,
"PORTUGAL": 176,
"PUERTO_RICO": 177,
"QATAR": 178,
"REUNION": 179,
"ROMANIA": 180,
"RUSSIA": 181,
"RWANDA": 182,
"SAINT_BARTHELEMY": 183,
"SAINT_HELENA": 184,
"SAINT_KITTS": 185,
"SAINT_LUCIA": 186,
"SAINT_MARTIN": 187,
"SAINT_PIERRE": 188,
"SAINT_VINCENT": 189,
"SAMOA": 190,
"SAN_MARINO": 191,
"SAO_TOME": 192,
"SAUDI_ARABIA": 193,
"SENEGAL": 194,
"SERBIA": 195,
"SEYCHELLES": 196,
"SIERRA_LEONE": 197,
"SINGAPORE": 198,
"SINT_MAARTEN": 199,
"SUCRE": 200,
"SLOVAKIA": 201,
"SLOVENIA": 202,
"SOLOMON_ISLANDS": 203,
"SOMALIA": 204,
"SOUTH_AFRICA": 205,
"SOUTH_SUDAN": 206,
"SPAIN": 207,
"SRI_LANKA": 208,
"SUDAN": 209,
"SURINAME": 210,
"SVALBARD": 211,
"SWAZILAND": 212,
"SWEDEN": 213,
"SWITZERLAND": 214,
"SYRIAN_ARAB_REPUBLIC": 215,
"TAIWAN": 216,
"TAJIKISTAN": 217,
"TANZANIA": 218,
"THAILAND": 219,
"TIMOR_LESTE": 220,
"TOGO": 221,
"TOKELAU": 222,
"TONGA": 223,
"TRINIDAD": 224,
"TUNISIA": 225,
"TURKEY": 226,
"TURKMENISTAN": 227,
"TURKS_AND_CAICOS_ISLANDS": 228,
"TUVALU": 229,
"UGANDA": 230,
"UKRAINE": 231,
"UNITED_ARAB_EMIRATES": 232,
"UNITED_KINGDOM": 233,
"UNITED_STATES": 234,
"URUGUAY": 235,
"UZBEKISTAN": 236,
"VANUATU": 237,
"VENEZUELA": 238,
"VIETNAM": 239,
"VIRGIN_ISLANDS_BRITISH": 240,
"VIRGIN_ISLANDS_US": 241,
"WALLIS_AND_FUTUNA": 242,
"WESTERN_SAHARA": 243,
"YEMEN": 244,
"ZAMBIA": 245,
"ZIMBABWE": 246,
"ALL": 500,
"AFRICA": 501,
"ASIA": 502,
"CENTRAL_AMERICA": 503,
"EUROPE": 504,
"MIDDLE_EAST": 505,
"NORTH_AMERICA": 506,
"SOUTH_AMERICA": 507,
"OCEANIA": 508,
}
func (x CountryCode) String() string {
return proto.EnumName(CountryCode_name, int32(x))
}
func (CountryCode) EnumDescriptor() ([]byte, []int) {
return fileDescriptor_countrycodes_32222d631dab010a, []int{0}
}
func init() {
proto.RegisterEnum("CountryCode", CountryCode_name, CountryCode_value)
}
func init() { proto.RegisterFile("countrycodes.proto", fileDescriptor_countrycodes_32222d631dab010a) }
var fileDescriptor_countrycodes_32222d631dab010a = []byte{
// 2263 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x5c, 0x57, 0x65, 0xb4, 0x24, 0xc7,
0xad, 0x7e, 0xe3, 0xbb, 0x5e, 0xe8, 0x25, 0x6d, 0x7b, 0xbd, 0xcf, 0x7e, 0xa6, 0x17, 0x87, 0x9d,
0xc4, 0x01, 0x87, 0x59, 0xdd, 0xad, 0xdb, 0xad, 0x3b, 0xd5, 0x55, 0xb3, 0x05, 0x77, 0x3c, 0x13,
0xe8, 0xc4, 0x10, 0x8e, 0xd7, 0x31, 0x24, 0x71, 0x98, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99,
0x99, 0x99, 0x63, 0x3b, 0x78, 0x72, 0x72, 0xa4, 0xea, 0xbd, 0xbb, 0xc9, 0xaf, 0x19, 0xa9, 0x04,
0x9f, 0xbe, 0x52, 0x55, 0xab, 0x8a, 0xf2, 0xcc, 0x03, 0x17, 0x9e, 0x73, 0xc1, 0x79, 0x17, 0x9d,
0x79, 0xe0, 0xac, 0xb3, 0xcf, 0x3f, 0xf5, 0xdc, 0xf3, 0x0e, 0x5c, 0x70, 0xe0, 0x94, 0x7f, 0x9d,
0x58, 0x6c, 0xaf, 0xb3, 0xba, 0x3e, 0x70, 0xd6, 0xd9, 0xe5, 0xe6, 0xe2, 0x08, 0x8b, 0xf0, 0x3f,
0xe5, 0xee, 0x62, 0x3b, 0xae, 0xb6, 0x1d, 0x5a, 0x0e, 0x11, 0x2d, 0x4c, 0xca, 0x3d, 0xc5, 0x4e,
0x34, 0x68, 0x9b, 0x81, 0x83, 0xfc, 0x04, 0x38, 0xa2, 0xdc, 0x5e, 0x6c, 0x41, 0x53, 0xa1, 0x65,
0x84, 0x95, 0x2c, 0xb4, 0xe4, 0x19, 0x61, 0x53, 0x59, 0x16, 0xbb, 0xb0, 0x27, 0xcf, 0x35, 0xda,
0x21, 0x60, 0xef, 0x10, 0x8e, 0x54, 0x03, 0xdb, 0x38, 0xef, 0x11, 0x36, 0x97, 0x45, 0xb1, 0x19,
0x6d, 0xeb, 0x0c, 0xc2, 0x96, 0x72, 0x47, 0xb1, 0x15, 0x6d, 0x9b, 0xd8, 0x18, 0x84, 0xad, 0xd9,
0x2c, 0x72, 0x9b, 0x10, 0xb6, 0x95, 0x3b, 0x8b, 0x6d, 0xe8, 0x5b, 0xb2, 0x91, 0x2d, 0x42, 0xa1,
0x6b, 0xbe, 0x27, 0x49, 0xb8, 0xbd, 0xdc, 0x56, 0x1c, 0x89, 0x3e, 0x55, 0x08, 0x3b, 0xd4, 0x2c,
0x85, 0xe8, 0xd1, 0x30, 0xc2, 0x4e, 0x35, 0x13, 0x91, 0x11, 0x76, 0x95, 0xbb, 0x8a, 0x02, 0x97,
0xe4, 0x2b, 0xe4, 0x35, 0xb4, 0xb0, 0x5b, 0x16, 0x2b, 0xec, 0xb0, 0xc7, 0x00, 0x30, 0x0a, 0x1e,
0xd9, 0xc2, 0x1e, 0xb1, 0xac, 0xd0, 0xb6, 0x06, 0x1b, 0x0a, 0x1d, 0x94, 0x82, 0xab, 0x42, 0x5f,
0x61, 0xe3, 0x02, 0x1c, 0xa5, 0xa6, 0x64, 0xd0, 0xa7, 0x00, 0x7b, 0x47, 0xa1, 0xe5, 0xd4, 0xc3,
0xd1, 0x52, 0x4b, 0x45, 0x86, 0x97, 0x04, 0xfb, 0x04, 0x54, 0x45, 0x96, 0x2d, 0xfc, 0x6f, 0xb6,
0xf1, 0x7d, 0x6a, 0x10, 0x8e, 0x51, 0x9b, 0x2e, 0x09, 0x93, 0xc7, 0xea, 0x82, 0x33, 0xbc, 0xce,
0x08, 0xff, 0x57, 0x9e, 0x54, 0x1c, 0x57, 0x39, 0x8b, 0xec, 0x69, 0x08, 0x6c, 0xe3, 0x40, 0x29,
0x44, 0x8c, 0x9c, 0xc2, 0x10, 0xb0, 0x42, 0x38, 0x4e, 0x3d, 0x5d, 0x90, 0x92, 0x8f, 0x57, 0x44,
0x2e, 0x86, 0x39, 0x5a, 0x84, 0x13, 0x64, 0x47, 0x2a, 0x97, 0xd6, 0x29, 0x8e, 0x5b, 0x02, 0x27,
0xaa, 0xb1, 0xc7, 0x25, 0x1b, 0x38, 0xa9, 0x3c, 0xb9, 0x38, 0xb1, 0xf2, 0x1c, 0x39, 0x74, 0x03,
0xdb, 0x86, 0xd1, 0x0e, 0xae, 0x26, 0xb4, 0x43, 0x24, 0xef, 0x39, 0x3a, 0xbf, 0x80, 0xff, 0x2f,
0x8f, 0x2e, 0xf6, 0x54, 0x3e, 0x59, 0xe2, 0xa1, 0x91, 0xca, 0x02, 0x1a, 0xec, 0xe1, 0x32, 0x9a,
0x27, 0x99, 0x16, 0x85, 0xc1, 0x93, 0x4b, 0x28, 0x76, 0x54, 0xc9, 0x4f, 0xd9, 0xe2, 0xb0, 0x8a,
0xc1, 0xc1, 0x65, 0xb5, 0x82, 0xe4, 0x93, 0x6d, 0x18, 0x2e, 0x27, 0xb4, 0xd5, 0x58, 0xb9, 0x61,
0x9d, 0x7c, 0x43, 0x70, 0x79, 0x71, 0xae, 0xb1, 0xaf, 0x5c, 0xc3, 0x08, 0x57, 0x18, 0x25, 0xf2,
0xce, 0x59, 0xb8, 0xa2, 0xe0, 0xab, 0xd1, 0x62, 0x83, 0x70, 0x25, 0xe9, 0x91, 0x1a, 0x17, 0x3d,
0xda, 0x8d, 0x8e, 0xba, 0x72, 0x79, 0x7c, 0x71, 0x4c, 0x4d, 0x56, 0x36, 0x72, 0xc0, 0xd5, 0xdc,
0x3e, 0x9e, 0x66, 0xa9, 0x32, 0x5c, 0xc3, 0x29, 0xe5, 0xd6, 0x62, 0x53, 0xdd, 0x61, 0x03, 0x57,
0x11, 0x9a, 0xeb, 0x8e, 0x0d, 0xc1, 0x55, 0xc7, 0xbf, 0x16, 0xe1, 0x6a, 0xe5, 0xde, 0x02, 0xea,
0xce, 0x73, 0x88, 0x3d, 0x86, 0x83, 0x9c, 0x9c, 0x2a, 0x34, 0xd5, 0xae, 0x76, 0x61, 0x23, 0xcd,
0xd5, 0x15, 0x94, 0x33, 0xae, 0xaf, 0x18, 0xe1, 0x1a, 0x52, 0x4d, 0xed, 0x7a, 0xe7, 0x5d, 0x80,
0x6b, 0x2a, 0x2a, 0x67, 0x5b, 0x77, 0x28, 0xef, 0xb5, 0x34, 0x85, 0xe8, 0xe0, 0x34, 0xe1, 0xa2,
0x76, 0x6e, 0xba, 0x11, 0xeb, 0xda, 0x5a, 0xbe, 0x0b, 0x11, 0x07, 0x81, 0x0b, 0xd7, 0xc9, 0x16,
0x91, 0x86, 0x86, 0xd7, 0x1d, 0x7b, 0x82, 0xeb, 0x6a, 0x7c, 0xef, 0x30, 0x32, 0xc2, 0xf5, 0xb4,
0x06, 0x69, 0xda, 0xeb, 0xab, 0x3a, 0x79, 0xac, 0xd1, 0xc1, 0x0d, 0x94, 0x98, 0xc5, 0x4c, 0x9a,
0xeb, 0x86, 0x0a, 0x61, 0x49, 0x75, 0x77, 0x08, 0xc2, 0x8d, 0xc4, 0xb8, 0x21, 0xdb, 0xa3, 0x9f,
0xc2, 0x8d, 0x05, 0x7e, 0xb3, 0xc6, 0x95, 0x4b, 0x91, 0xe1, 0x26, 0x2a, 0xb9, 0x9e, 0xad, 0xa4,
0xbf, 0x69, 0xb9, 0xaf, 0x28, 0x0f, 0x4a, 0x87, 0x71, 0x77, 0x33, 0x09, 0x40, 0x75, 0xc2, 0xc6,
0x79, 0xb8, 0xb9, 0x14, 0x44, 0xed, 0x62, 0x16, 0x01, 0xe5, 0x9c, 0x93, 0x19, 0x02, 0x9a, 0x75,
0x5d, 0xab, 0xa4, 0x25, 0x68, 0x7f, 0xc2, 0xe8, 0x3c, 0xa3, 0x19, 0xda, 0xc4, 0x96, 0x10, 0x6a,
0xf5, 0xf7, 0x1c, 0x3d, 0x21, 0x34, 0x2a, 0x84, 0xe8, 0xa4, 0x29, 0x49, 0xf2, 0x53, 0xec, 0xd8,
0xcd, 0x18, 0x61, 0x55, 0xf6, 0x60, 0x15, 0xcd, 0xf4, 0x3f, 0x6e, 0x8a, 0x56, 0xf6, 0x60, 0x15,
0xbd, 0xa3, 0x0d, 0x55, 0x27, 0x44, 0xac, 0xf2, 0x1a, 0x03, 0x4b, 0xb4, 0x55, 0xb6, 0xba, 0x5b,
0x6b, 0x42, 0xc4, 0xaa, 0x47, 0x5b, 0x13, 0x4c, 0xd5, 0xcb, 0x93, 0xad, 0x3b, 0x81, 0x21, 0x3d,
0x6f, 0x34, 0x7c, 0x56, 0xcd, 0x9c, 0x59, 0x58, 0x0a, 0x8c, 0xd0, 0xcb, 0x21, 0x1a, 0xb5, 0xc1,
0xa5, 0xd8, 0x91, 0x3f, 0xd4, 0xe5, 0x4c, 0x01, 0xac, 0x14, 0xdc, 0x62, 0xe5, 0x2c, 0x38, 0x49,
0xd0, 0xa2, 0xee, 0xfc, 0x4c, 0x32, 0xb7, 0xe4, 0x7c, 0xcb, 0x08, 0xfb, 0xb3, 0xe0, 0x7b, 0xb4,
0x0b, 0xf0, 0xea, 0xd0, 0x49, 0xca, 0x20, 0x97, 0x4b, 0xcb, 0x95, 0x47, 0x13, 0xd1, 0x43, 0x54,
0x7f, 0x4f, 0x54, 0x13, 0x24, 0x5d, 0xf2, 0x44, 0x19, 0xfb, 0xba, 0x46, 0xf0, 0xa4, 0xed, 0x3d,
0x97, 0xbe, 0x68, 0x13, 0x36, 0x64, 0x5c, 0x9a, 0x11, 0x9c, 0x2e, 0xf5, 0xb6, 0x09, 0x7b, 0x58,
0xa8, 0x57, 0xc2, 0x48, 0x3d, 0x1a, 0x84, 0xa5, 0xf0, 0xd7, 0x26, 0xf2, 0x36, 0xd0, 0x02, 0x6e,
0xa1, 0xe1, 0x33, 0xe7, 0xb7, 0x94, 0xfa, 0xf3, 0xff, 0xa1, 0xe2, 0x10, 0x30, 0xc1, 0xad, 0xf2,
0xf2, 0x42, 0x80, 0xdd, 0x5a, 0x30, 0x76, 0xc8, 0x91, 0x61, 0x90, 0xa6, 0xeb, 0x08, 0xfd, 0x41,
0xca, 0xe1, 0x36, 0x12, 0xb5, 0x73, 0x66, 0x31, 0x04, 0x22, 0xb8, 0x6d, 0x96, 0x6c, 0x93, 0x3c,
0x06, 0x38, 0x43, 0x00, 0x74, 0xce, 0xb6, 0xc3, 0xd4, 0xd9, 0x16, 0xce, 0x14, 0xd8, 0x5d, 0xb2,
0x2d, 0xfa, 0x05, 0x9c, 0x25, 0x02, 0xd7, 0xa4, 0x41, 0xce, 0x96, 0x0c, 0x7a, 0x75, 0xc0, 0xed,
0xc4, 0x87, 0x6d, 0xe3, 0x32, 0xe3, 0xb7, 0x97, 0x6a, 0xd8, 0xa3, 0x85, 0x3b, 0x8c, 0xff, 0xf6,
0xc3, 0x1d, 0xd5, 0xd5, 0x67, 0xd7, 0x3b, 0x49, 0x5f, 0x71, 0x30, 0x34, 0xb8, 0xd5, 0xa1, 0x47,
0x0b, 0x77, 0x16, 0xe4, 0x1c, 0x3c, 0x92, 0x81, 0xbb, 0x68, 0xdc, 0x88, 0x66, 0x01, 0x77, 0x15,
0xa7, 0x35, 0xec, 0x51, 0x9a, 0xf7, 0x1c, 0xd1, 0xaf, 0xe1, 0x0c, 0x2d, 0x1c, 0x10, 0xf3, 0x35,
0xf2, 0xc2, 0xc9, 0xb9, 0xfa, 0xdf, 0xf9, 0x06, 0x2d, 0xdc, 0x4d, 0x68, 0x9d, 0xe2, 0x12, 0xa7,
0x9d, 0x7e, 0x96, 0xce, 0x13, 0x97, 0x29, 0xd9, 0x05, 0xc2, 0xf9, 0x52, 0xe4, 0x94, 0x3d, 0x57,
0x18, 0x19, 0x2e, 0x10, 0x00, 0xd6, 0xf9, 0xd8, 0x0d, 0x53, 0x27, 0x4d, 0x7b, 0xa1, 0x28, 0xb4,
0x3b, 0x46, 0xc5, 0xdd, 0x25, 0xec, 0x34, 0xcd, 0x91, 0x23, 0xdc, 0x43, 0xc3, 0x2e, 0x7c, 0xbb,
0x58, 0x6a, 0xd8, 0x7b, 0x96, 0x5b, 0x8a, 0x15, 0x83, 0x0e, 0x2e, 0x12, 0x23, 0x83, 0x51, 0xee,
0xea, 0x7b, 0x09, 0x56, 0x43, 0x15, 0x5a, 0x67, 0xe1, 0xde, 0x59, 0x08, 0x2e, 0x76, 0x0e, 0xee,
0xa3, 0x02, 0x57, 0xfa, 0xf1, 0xbb, 0xaf, 0x40, 0x32, 0x5c, 0x2d, 0x10, 0xee, 0x27, 0x3b, 0x68,
0x98, 0xea, 0x2e, 0x92, 0x0d, 0x91, 0xd8, 0xc2, 0xfd, 0xcb, 0x5d, 0xc5, 0x36, 0xc3, 0xb1, 0x4b,
0xfa, 0xd9, 0x7c, 0xc0, 0xa4, 0xdc, 0x5d, 0x14, 0x26, 0x9d, 0x4e, 0x7d, 0xe5, 0x92, 0x6f, 0xe1,
0x81, 0x93, 0xb2, 0x28, 0x8e, 0xec, 0xf5, 0x56, 0x78, 0xd0, 0x44, 0x8c, 0x7b, 0xac, 0xa9, 0xd1,
0xa3, 0xf6, 0x60, 0x35, 0xee, 0xb1, 0xc1, 0x16, 0x43, 0x8d, 0x1e, 0x1e, 0x32, 0x29, 0xb7, 0x17,
0x9b, 0xa5, 0x8d, 0xe6, 0x0c, 0x0f, 0x9d, 0x94, 0x3b, 0x8b, 0xad, 0x22, 0x2c, 0x64, 0x8b, 0x1e,
0x76, 0x50, 0x6c, 0x78, 0x9d, 0x02, 0x3c, 0x7c, 0x52, 0x6e, 0x2b, 0x36, 0xf5, 0x68, 0x18, 0x1e,
0x31, 0xa6, 0x30, 0x11, 0xe1, 0x91, 0x93, 0xf2, 0xe8, 0x02, 0x7a, 0xf4, 0xa1, 0x43, 0x63, 0x36,
0x4e, 0xe7, 0xa3, 0xc6, 0x4c, 0x3e, 0xb2, 0xe5, 0xfd, 0x89, 0xe0, 0xd1, 0xa3, 0x22, 0x79, 0x8e,
0x0a, 0xfc, 0x31, 0x23, 0x36, 0x51, 0x70, 0x0a, 0xf0, 0xd8, 0x49, 0xb9, 0xa3, 0xd8, 0xd2, 0xe3,
0xc2, 0xc5, 0x48, 0xf0, 0xb8, 0x0c, 0x8c, 0x4e, 0xe7, 0xda, 0xc1, 0xe3, 0xb3, 0x2f, 0xd7, 0x7e,
0xec, 0x9e, 0x27, 0x64, 0x5b, 0x67, 0x1a, 0xb7, 0x8e, 0xf0, 0xc4, 0x6c, 0xeb, 0x2c, 0xd6, 0x0e,
0x9e, 0x94, 0x51, 0xcb, 0x65, 0x2b, 0x9f, 0xf2, 0x27, 0x67, 0x57, 0x67, 0x23, 0x59, 0x6a, 0xbd,
0x83, 0xa7, 0x6c, 0x28, 0x02, 0x79, 0x8f, 0x11, 0x9e, 0x3a, 0xc6, 0xf2, 0xae, 0xae, 0x1d, 0x3c,
0x6d, 0x5c, 0x5e, 0xca, 0x01, 0x17, 0xdc, 0x4f, 0xcf, 0xcb, 0x0b, 0x94, 0xab, 0x13, 0x9e, 0xa1,
0x92, 0xc5, 0x9e, 0xe5, 0xf8, 0x3f, 0x53, 0x79, 0xb0, 0x98, 0x7c, 0x82, 0x67, 0xe5, 0xff, 0x34,
0x43, 0x03, 0xcf, 0x9e, 0x94, 0x50, 0x6c, 0xb7, 0x24, 0xf7, 0x48, 0xa6, 0xe3, 0x39, 0x93, 0xb2,
0x2c, 0x76, 0x5a, 0x9a, 0x0f, 0x35, 0x9a, 0x71, 0x33, 0x9e, 0x3b, 0x5a, 0xcd, 0x87, 0x25, 0xe9,
0x5c, 0x04, 0xcf, 0x53, 0x4a, 0xe4, 0xe2, 0xf5, 0x28, 0xd3, 0xcb, 0xf3, 0x73, 0x4c, 0x6e, 0xc9,
0xc3, 0x0b, 0x72, 0x66, 0xce, 0xf3, 0xd1, 0x0b, 0x75, 0x33, 0x2c, 0x27, 0x82, 0x17, 0x4d, 0xca,
0xa3, 0x8a, 0x5d, 0xd6, 0xf9, 0x55, 0x67, 0x0e, 0x7e, 0x55, 0xe0, 0xc5, 0x93, 0xf2, 0x84, 0xe2,
0x18, 0xed, 0x5e, 0xb9, 0xca, 0x7a, 0xf9, 0x0e, 0x5b, 0xdc, 0xd8, 0x9d, 0x97, 0x28, 0x63, 0xd6,
0xf9, 0x39, 0x2e, 0xe0, 0xa5, 0x1a, 0xcb, 0xc9, 0x19, 0x7b, 0x99, 0x92, 0x37, 0xc3, 0x69, 0x1e,
0xd9, 0x5e, 0xae, 0xf9, 0x67, 0x68, 0x30, 0xc1, 0x2b, 0xd4, 0x65, 0x86, 0x16, 0x7b, 0x84, 0x57,
0xea, 0xa6, 0xcf, 0x70, 0x96, 0x70, 0x90, 0x02, 0xc6, 0xfb, 0xe6, 0x55, 0xa3, 0xbb, 0xa2, 0x5f,
0xc0, 0xab, 0x35, 0xf0, 0x8c, 0x7c, 0x82, 0xd7, 0x68, 0xad, 0xb3, 0x8e, 0x0d, 0xcf, 0x66, 0x6c,
0x29, 0xc0, 0x6b, 0xb3, 0x2d, 0xc7, 0x1a, 0xd9, 0x5b, 0x78, 0x5d, 0x0e, 0xef, 0x14, 0xfd, 0xeb,
0xf3, 0x9a, 0xf3, 0x31, 0xb5, 0x68, 0xe0, 0x0d, 0xd9, 0x39, 0x91, 0x8f, 0x4e, 0xbe, 0x91, 0x0e,
0xde, 0xa8, 0xc0, 0xf6, 0xa3, 0xdc, 0xa7, 0x6f, 0x52, 0x62, 0x3c, 0x25, 0xcb, 0xce, 0xc2, 0x9b,
0xb3, 0x24, 0xd5, 0x30, 0xc2, 0x5b, 0x34, 0xaa, 0x8c, 0x25, 0x8c, 0xf0, 0xd6, 0x2c, 0xcc, 0xd1,
0x36, 0x08, 0x6f, 0xd3, 0x0a, 0x02, 0xca, 0xc0, 0x54, 0xa1, 0xd0, 0x64, 0xa8, 0x5f, 0xc0, 0xdb,
0x65, 0x4a, 0xdd, 0x91, 0xd5, 0xa2, 0xb2, 0x08, 0xef, 0xd0, 0xec, 0x59, 0x35, 0xe5, 0x18, 0x03,
0xbc, 0xf3, 0x30, 0x8d, 0x49, 0x35, 0x23, 0xbc, 0xeb, 0x30, 0xb7, 0xdc, 0xf3, 0xf0, 0xee, 0xc3,
0x54, 0x33, 0x26, 0xef, 0x09, 0xde, 0xa3, 0x4d, 0x90, 0x55, 0xeb, 0x6c, 0x65, 0x4c, 0x81, 0xf7,
0x6a, 0x25, 0x79, 0xc0, 0x7d, 0x9f, 0xf6, 0x5e, 0xc0, 0xbc, 0x5f, 0xd6, 0xc1, 0xfb, 0x95, 0x87,
0x80, 0x6e, 0x88, 0xae, 0x27, 0xf8, 0xc0, 0x18, 0x32, 0x35, 0x3c, 0xa0, 0x47, 0xe9, 0xc0, 0x0f,
0x6a, 0xb9, 0x41, 0x7a, 0x1b, 0x0d, 0x7c, 0x48, 0x2b, 0x0c, 0xe4, 0x65, 0xe9, 0xc3, 0x39, 0x1a,
0x2d, 0xea, 0x8e, 0x8c, 0xa1, 0x00, 0x1f, 0xc9, 0xee, 0x82, 0x05, 0x07, 0x43, 0xce, 0x12, 0x7c,
0x54, 0x1b, 0x2e, 0xb0, 0x6d, 0x71, 0xe6, 0x3c, 0xc1, 0xc7, 0x46, 0x13, 0x2d, 0x03, 0x7d, 0x24,
0x0b, 0x1f, 0xcf, 0x00, 0x53, 0xed, 0x09, 0x3e, 0x91, 0xf1, 0x18, 0xb7, 0x8e, 0x53, 0x46, 0xf8,
0xe4, 0x86, 0xa8, 0xf3, 0xf4, 0xa7, 0x26, 0xe5, 0xde, 0x62, 0x77, 0x90, 0xa9, 0xc8, 0x1d, 0x9a,
0xc8, 0x3e, 0x9d, 0x11, 0xba, 0x5e, 0x27, 0xeb, 0xcf, 0xe4, 0x04, 0x7a, 0x89, 0xe6, 0xf1, 0x0c,
0x3e, 0x9b, 0xd9, 0x54, 0x55, 0x48, 0x72, 0x45, 0x7f, 0x2e, 0xa7, 0x9c, 0xc9, 0x4c, 0xfd, 0xf9,
0x8c, 0xd0, 0xf3, 0x60, 0xd0, 0x4e, 0x11, 0xbe, 0x30, 0xc2, 0x11, 0xbb, 0x2f, 0xe6, 0xfc, 0xc9,
0xb3, 0xc5, 0x9e, 0xe0, 0x4b, 0x59, 0x5c, 0x97, 0x07, 0x85, 0x6f, 0xe0, 0xcb, 0xd9, 0x73, 0x2e,
0xb3, 0xac, 0x34, 0xd5, 0x57, 0x32, 0x39, 0x73, 0x6a, 0xc8, 0xc2, 0x57, 0x73, 0xd2, 0x39, 0xc7,
0x65, 0x3e, 0xa2, 0xf0, 0xb5, 0x49, 0x79, 0x6c, 0xb1, 0x37, 0x2c, 0xe4, 0xa0, 0x28, 0xbb, 0x87,
0x46, 0x9f, 0xaf, 0xab, 0x67, 0x44, 0x9e, 0xa3, 0x85, 0x6f, 0x28, 0xad, 0x11, 0xd7, 0x78, 0x3c,
0x24, 0xdf, 0xd4, 0xb4, 0x11, 0xed, 0x52, 0x5b, 0xee, 0x5b, 0x59, 0xec, 0x30, 0x67, 0xfd, 0xb6,
0x26, 0x8a, 0xdc, 0x3b, 0x3f, 0x18, 0x0a, 0x91, 0xe0, 0x3b, 0x7a, 0x2a, 0xa2, 0x6b, 0x1d, 0x7c,
0x57, 0xb9, 0x89, 0x6e, 0x4a, 0x72, 0xc2, 0xbe, 0xa7, 0xa5, 0x45, 0x67, 0x5b, 0x84, 0xef, 0xe7,
0x28, 0x9e, 0x2d, 0x37, 0xd8, 0xc0, 0x0f, 0xb2, 0x61, 0xb2, 0x2c, 0x8d, 0xfc, 0xc3, 0x8c, 0x27,
0xf9, 0x29, 0x2d, 0xe0, 0x47, 0xca, 0xa8, 0x08, 0xf2, 0xaa, 0x51, 0x44, 0x3f, 0xd6, 0xc3, 0x2f,
0xaa, 0x30, 0xc8, 0x10, 0x55, 0x23, 0x1f, 0x3e, 0xbc, 0xfe, 0x64, 0x74, 0x5f, 0x47, 0x93, 0xe0,
0xa7, 0x2a, 0xa4, 0x56, 0x0f, 0xc5, 0xcf, 0x34, 0x4d, 0x9a, 0xca, 0x6b, 0x86, 0xe0, 0xe7, 0xca,
0x48, 0xb2, 0x1c, 0xa9, 0xc9, 0x8c, 0x50, 0xcf, 0x1e, 0x23, 0x05, 0xf8, 0x85, 0xde, 0x39, 0xe3,
0xd2, 0x94, 0x6d, 0xdb, 0xb8, 0x1e, 0x7e, 0xa9, 0xed, 0x3d, 0x2a, 0xe5, 0x09, 0x42, 0x01, 0x7e,
0x95, 0x23, 0xfa, 0xa4, 0x17, 0xc2, 0xaf, 0x95, 0xbb, 0xb4, 0xac, 0x68, 0xe4, 0xee, 0x37, 0xba,
0xbc, 0x8e, 0x36, 0x61, 0x4c, 0xf0, 0x5b, 0xdd, 0xb1, 0x75, 0xb2, 0xb4, 0x4c, 0x64, 0x10, 0x7e,
0x97, 0x57, 0x99, 0xa2, 0xc5, 0x1e, 0x7e, 0x3f, 0x29, 0x8f, 0x2b, 0xf6, 0xad, 0xb3, 0x6f, 0x79,
0xa3, 0xbb, 0x86, 0xf1, 0x79, 0x02, 0x7f, 0x98, 0x94, 0xfb, 0x8a, 0x3d, 0xff, 0xb5, 0x98, 0x02,
0xfc, 0x51, 0xf5, 0x73, 0x34, 0x86, 0x33, 0x17, 0xab, 0x29, 0x26, 0x8b, 0xf0, 0x27, 0x2d, 0x60,
0x2e, 0x1b, 0xe2, 0xe5, 0x7d, 0xd9, 0xa1, 0x47, 0xf8, 0xb3, 0x6e, 0xc0, 0x82, 0x7a, 0xb2, 0x70,
0xb1, 0xf2, 0xb2, 0xcc, 0x63, 0xde, 0x25, 0xba, 0x1b, 0x4b, 0xee, 0x2b, 0xac, 0xe6, 0x04, 0x97,
0x4e, 0xca, 0xad, 0xc5, 0x0a, 0x1a, 0x03, 0x17, 0xcb, 0xa3, 0x75, 0xf3, 0xd8, 0xc8, 0x97, 0xac,
0xc8, 0xc6, 0xa2, 0xec, 0xd0, 0xa5, 0x2b, 0x72, 0x14, 0x36, 0xde, 0x21, 0xf9, 0x1d, 0x0b, 0x7f,
0x51, 0x6b, 0x4a, 0xde, 0xcd, 0x08, 0xfe, 0xba, 0x22, 0x8d, 0xd1, 0x73, 0xd3, 0x18, 0x1a, 0x08,
0x43, 0x84, 0xbf, 0xad, 0xe8, 0x37, 0x42, 0x27, 0x8e, 0x83, 0x2e, 0x7f, 0x57, 0xdd, 0x78, 0x5e,
0x46, 0xdd, 0x3f, 0x56, 0x84, 0x16, 0x7d, 0x89, 0x31, 0xc2, 0x3f, 0x57, 0xaa, 0x4d, 0xcb, 0x23,
0xce, 0x3d, 0xe3, 0x8c, 0xcd, 0xfa, 0x1a, 0x3f, 0xed, 0xdf, 0x01, 0x00, 0x00, 0xff, 0xff, 0x85,
0xe5, 0x7e, 0x1b, 0xa3, 0x0f, 0x00, 0x00,
}