sec_edgar 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,890 @@
1
+ <?xml version="1.0"?>
2
+
3
+ <!-- Filename: ownershipDocumentCommon.xsd.xml -->
4
+ <!-- Purpose: Defines the elements common to all Ownership primary documents. -->
5
+ <!-- Version: X0304 -->
6
+
7
+ <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
8
+ elementFormDefault="qualified">
9
+
10
+ <xs:simpleType name="TRANS_CODE_PICKLIST">
11
+ <xs:annotation>
12
+ <xs:documentation>
13
+ These are the Transaction Codes that can be used
14
+ for "4" and "5" transactions.
15
+ </xs:documentation>
16
+ </xs:annotation>
17
+ <xs:restriction base="xs:string">
18
+ <xs:pattern value="A|C|D|E|F|G|H|I|J|L|M|O|P|S|U|W|X|Z"/>
19
+ </xs:restriction>
20
+ </xs:simpleType>
21
+
22
+ <xs:simpleType name="TRANS_TIMELY_PICKLIST">
23
+ <xs:annotation>
24
+ <xs:documentation>
25
+ The two possible values for this transaction
26
+ timeliness indicator are (E)arly and (L)ate.
27
+ Also allow no value.
28
+ </xs:documentation>
29
+ </xs:annotation>
30
+ <xs:restriction base="xs:string">
31
+ <xs:whiteSpace value="collapse"/>
32
+ <xs:pattern value="[E|L]{0,1}"/>
33
+ </xs:restriction>
34
+ </xs:simpleType>
35
+
36
+ <xs:simpleType name="ACQ_DISP_CODE_PICKLIST">
37
+ <xs:annotation>
38
+ <xs:documentation>
39
+ The two possible values for this field are (A)cquired and (D)isposed.
40
+ </xs:documentation>
41
+ </xs:annotation>
42
+ <xs:restriction base="xs:string">
43
+ <xs:pattern value="A|D"/>
44
+ </xs:restriction>
45
+ </xs:simpleType>
46
+
47
+ <xs:simpleType name="OWNERSHIP_TYPE_PICKLIST">
48
+ <xs:annotation>
49
+ <xs:documentation>
50
+ The two possible values for this field are (D)irect and (I)ndirect.
51
+ </xs:documentation>
52
+ </xs:annotation>
53
+ <xs:restriction base="xs:string">
54
+ <xs:pattern value="D|I"/>
55
+ </xs:restriction>
56
+ </xs:simpleType>
57
+
58
+ <xs:simpleType name="FID">
59
+ <xs:annotation>
60
+ <xs:documentation>
61
+ A footnote ID must be of the format
62
+ capital "F" followed by a number from 1 to 99.
63
+ </xs:documentation>
64
+ </xs:annotation>
65
+ <xs:restriction base="xs:ID">
66
+ <xs:pattern value="F[1-9][0-9]?"/>
67
+ </xs:restriction>
68
+ </xs:simpleType>
69
+
70
+ <xs:complexType name="FOOTNOTE" mixed="true">
71
+ <xs:attribute name="id" type="FID" use="required"/>
72
+ </xs:complexType>
73
+
74
+ <xs:simpleType name="FIDREF">
75
+ <xs:annotation>
76
+ <xs:documentation>
77
+ A footnote reference ID must be of the format
78
+ capital "F" followed by a number from 1 to 99.
79
+ </xs:documentation>
80
+ </xs:annotation>
81
+ <xs:restriction base="xs:IDREF">
82
+ <xs:pattern value="F[1-9][0-9]?"/>
83
+ </xs:restriction>
84
+ </xs:simpleType>
85
+
86
+ <xs:complexType name="FOOTNOTE_ID">
87
+ <xs:attribute name="id" type="FIDREF" use="required"/>
88
+ </xs:complexType>
89
+
90
+ <xs:simpleType name="STRING_30">
91
+ <xs:restriction base="xs:string">
92
+ <xs:maxLength value="30"/>
93
+ </xs:restriction>
94
+ </xs:simpleType>
95
+
96
+ <xs:simpleType name="STRING_2000">
97
+ <xs:restriction base="xs:string">
98
+ <xs:maxLength value="2000"/>
99
+ </xs:restriction>
100
+ </xs:simpleType>
101
+
102
+ <xs:simpleType name="POSITIVE_DECIMAL">
103
+ <xs:restriction base="xs:decimal">
104
+ <xs:minInclusive value="0.0"/>
105
+ <xs:maxInclusive value="999999999999.9999"/>
106
+ <xs:totalDigits value="16"/>
107
+ <xs:fractionDigits value="4"/>
108
+ </xs:restriction>
109
+ </xs:simpleType>
110
+
111
+ <xs:simpleType name="SCHEMA_VERSION">
112
+ <xs:annotation>
113
+ <xs:documentation>
114
+ The schema version element applies only to the submission's primary document.
115
+ It does not apply to the submission file. This element should not be included
116
+ in a Reduced Content submission. EDGAR inserts this element in the version of
117
+ the primary document that gets disseminated. If you do provide a value for this
118
+ element and it does not match the current version of this schema file being
119
+ used by EDGAR, then EDGAR will generate a WARNING.
120
+ </xs:documentation>
121
+ </xs:annotation>
122
+ <xs:restriction base="xs:string">
123
+ <xs:length value="5"/>
124
+ </xs:restriction>
125
+ </xs:simpleType>
126
+
127
+ <xs:complexType name="NUMBER_WITH_FOOTNOTE">
128
+ <xs:sequence>
129
+ <xs:element name="value" type="POSITIVE_DECIMAL"/>
130
+ <xs:element name="footnoteId" type="FOOTNOTE_ID" minOccurs="0" maxOccurs="99"/>
131
+ </xs:sequence>
132
+ </xs:complexType>
133
+
134
+ <xs:complexType name="OPT_NUMBER_WITH_FOOTNOTE">
135
+ <xs:annotation>
136
+ <xs:documentation>
137
+ Some numeric fields may have just footnotes. Either a numeric value or
138
+ a footnoteId is required. Additional footnoteIds may also be provided.
139
+ </xs:documentation>
140
+ </xs:annotation>
141
+ <xs:sequence>
142
+ <xs:choice>
143
+ <xs:element name="value" type="POSITIVE_DECIMAL"/>
144
+ <xs:element name="footnoteId" type="FOOTNOTE_ID"/>
145
+ </xs:choice>
146
+ <xs:element name="footnoteId" type="FOOTNOTE_ID" minOccurs="0" maxOccurs="98"/>
147
+ </xs:sequence>
148
+ </xs:complexType>
149
+
150
+ <xs:complexType name="DATE_WITH_FOOTNOTE">
151
+ <xs:sequence>
152
+ <xs:element name="value" type="xs:date"/>
153
+ <xs:element name="footnoteId" type="FOOTNOTE_ID" minOccurs="0" maxOccurs="99"/>
154
+ </xs:sequence>
155
+ </xs:complexType>
156
+
157
+ <xs:complexType name="DATE_AND_OR_FOOTNOTE">
158
+ <xs:annotation>
159
+ <xs:documentation>
160
+ For a truly optional date field, such as Deemed Execution Date,
161
+ allow a date value and/or footnotes. Can have a footnote without a date value.
162
+ Do not need a value or a footnoteId.
163
+ </xs:documentation>
164
+ </xs:annotation>
165
+ <xs:sequence>
166
+ <xs:element name="value" type="xs:date" minOccurs="0"/>
167
+ <xs:element name="footnoteId" type="FOOTNOTE_ID" minOccurs="0" maxOccurs="99"/>
168
+ </xs:sequence>
169
+ </xs:complexType>
170
+
171
+ <xs:complexType name="OPT_DATE_WITH_FOOTNOTE">
172
+ <xs:annotation>
173
+ <xs:documentation>
174
+ Some date fields may have just footnotes. Either a date value or
175
+ a footnoteId is required. Additional footnoteIds may also be provided.
176
+ </xs:documentation>
177
+ </xs:annotation>
178
+ <xs:sequence>
179
+ <xs:choice>
180
+ <xs:element name="value" type="xs:date"/>
181
+ <xs:element name="footnoteId" type="FOOTNOTE_ID"/>
182
+ </xs:choice>
183
+ <xs:element name="footnoteId" type="FOOTNOTE_ID" minOccurs="0" maxOccurs="98"/>
184
+ </xs:sequence>
185
+ </xs:complexType>
186
+
187
+ <xs:complexType name="BOOLEAN_WITH_FOOTNOTE">
188
+ <xs:sequence>
189
+ <xs:element name="value" type="xs:boolean"/>
190
+ <xs:element name="footnoteId" type="FOOTNOTE_ID" minOccurs="0" maxOccurs="99"/>
191
+ </xs:sequence>
192
+ </xs:complexType>
193
+
194
+ <xs:complexType name="ACQ_DISP_CODE">
195
+ <xs:sequence>
196
+ <xs:element name="value" type="ACQ_DISP_CODE_PICKLIST"/>
197
+ <xs:element name="footnoteId" type="FOOTNOTE_ID" minOccurs="0" maxOccurs="99"/>
198
+ </xs:sequence>
199
+ </xs:complexType>
200
+
201
+ <xs:complexType name="TRANSACTION_TIMELINESS_NOFOOT">
202
+ <xs:sequence>
203
+ <xs:element name="value" type="TRANS_TIMELY_PICKLIST" minOccurs="0"/>
204
+ </xs:sequence>
205
+ </xs:complexType>
206
+
207
+ <xs:complexType name="ACQ_DISP_NO_FOOT">
208
+ <xs:annotation>
209
+ <xs:documentation>
210
+ This element cannot have a footnote.
211
+ </xs:documentation>
212
+ </xs:annotation>
213
+ <xs:sequence>
214
+ <xs:element name="value" type="ACQ_DISP_CODE_PICKLIST"/>
215
+ </xs:sequence>
216
+ </xs:complexType>
217
+
218
+ <xs:complexType name="DERIV_TRANSACT_NO_FOOT">
219
+ <xs:annotation>
220
+ <xs:documentation>
221
+ Must provide a number of shares or a total dollar value.
222
+ Must provide a price per share and/or a footnote.
223
+ Must provide a code indicating Acquired or Disposed Of.
224
+ </xs:documentation>
225
+ </xs:annotation>
226
+ <xs:sequence>
227
+ <xs:choice>
228
+ <xs:element name="transactionShares" type="NUMBER_WITH_FOOTNOTE"/>
229
+ <xs:element name="transactionTotalValue" type="NUMBER_WITH_FOOTNOTE"/>
230
+ </xs:choice>
231
+ <xs:element name="transactionPricePerShare" type="OPT_NUMBER_WITH_FOOTNOTE"/>
232
+ <xs:element name="transactionAcquiredDisposedCode" type="ACQ_DISP_NO_FOOT"/>
233
+ </xs:sequence>
234
+ </xs:complexType>
235
+
236
+ <xs:complexType name="OWNERSHIP_TYPE">
237
+ <xs:sequence>
238
+ <xs:element name="value" type="OWNERSHIP_TYPE_PICKLIST"/>
239
+ <xs:element name="footnoteId" type="FOOTNOTE_ID" minOccurs="0" maxOccurs="99"/>
240
+ </xs:sequence>
241
+ </xs:complexType>
242
+
243
+ <xs:complexType name="FOOTNOTE_GROUP">
244
+ <xs:sequence>
245
+ <xs:element name="footnote" type="FOOTNOTE" minOccurs="0" maxOccurs="99"/>
246
+ </xs:sequence>
247
+ </xs:complexType>
248
+
249
+ <xs:complexType name="INDIRECT_NATURE">
250
+ <xs:sequence>
251
+ <xs:element name="value">
252
+ <xs:simpleType>
253
+ <xs:restriction base="xs:string">
254
+ <xs:maxLength value="100"/>
255
+ </xs:restriction>
256
+ </xs:simpleType>
257
+ </xs:element>
258
+ <xs:element name="footnoteId" type="FOOTNOTE_ID" minOccurs="0" maxOccurs="99"/>
259
+ </xs:sequence>
260
+ </xs:complexType>
261
+
262
+ <xs:simpleType name="CIK">
263
+ <xs:annotation>
264
+ <xs:documentation>
265
+ A CIK can be up to 10 digits. You do not need to provide the leading zeroes.
266
+ </xs:documentation>
267
+ </xs:annotation>
268
+ <xs:restriction base="xs:string">
269
+ <xs:minLength value="1"/>
270
+ <xs:maxLength value="10"/>
271
+ <xs:pattern value="[0-9]+"/>
272
+ </xs:restriction>
273
+ </xs:simpleType>
274
+
275
+ <xs:complexType name="SIGNATURE">
276
+ <xs:sequence>
277
+ <xs:element name="signatureName">
278
+ <xs:simpleType>
279
+ <xs:restriction base="xs:string">
280
+ <xs:minLength value="1"/>
281
+ <xs:maxLength value="255"/>
282
+ </xs:restriction>
283
+ </xs:simpleType>
284
+ </xs:element>
285
+ <xs:element name="signatureDate" type="xs:date"/>
286
+ </xs:sequence>
287
+ </xs:complexType>
288
+
289
+ <xs:complexType name="SECURITY_TITLE">
290
+ <xs:sequence>
291
+ <xs:element name="value">
292
+ <xs:simpleType>
293
+ <xs:restriction base="xs:string">
294
+ <xs:minLength value="1"/>
295
+ <xs:maxLength value="60"/>
296
+ </xs:restriction>
297
+ </xs:simpleType>
298
+ </xs:element>
299
+ <xs:element name="footnoteId" type="FOOTNOTE_ID" minOccurs="0" maxOccurs="99"/>
300
+ </xs:sequence>
301
+ </xs:complexType>
302
+
303
+ <xs:complexType name="ISSUER">
304
+ <xs:sequence>
305
+ <xs:element name="issuerCik" type="CIK"/>
306
+ <xs:element name="issuerName" minOccurs="0">
307
+ <xs:simpleType>
308
+ <xs:annotation>
309
+ <xs:documentation>
310
+ A document submitted as part of a Reduced Content submission
311
+ should not include this element. EDGAR will retrieve the
312
+ Issuer's name based upon the provided CIK.
313
+ This element is part of this specification since it is
314
+ included in the version of the document that is disseminated.
315
+ </xs:documentation>
316
+ </xs:annotation>
317
+ <xs:restriction base="xs:string">
318
+ <xs:maxLength value="150"/>
319
+ </xs:restriction>
320
+ </xs:simpleType>
321
+ </xs:element>
322
+ <xs:element name="issuerTradingSymbol">
323
+ <xs:simpleType>
324
+ <xs:annotation>
325
+ <xs:documentation>
326
+ This is the Stock Exchange Trading Symbol for the issuing company.
327
+ </xs:documentation>
328
+ </xs:annotation>
329
+ <xs:restriction base="xs:string">
330
+ <xs:minLength value="1"/>
331
+ <xs:maxLength value="10"/>
332
+ </xs:restriction>
333
+ </xs:simpleType>
334
+ </xs:element>
335
+ </xs:sequence>
336
+ </xs:complexType>
337
+
338
+ <xs:complexType name="TRANSACTION_TIMELINESS">
339
+ <xs:sequence>
340
+ <xs:element name="value" type="TRANS_TIMELY_PICKLIST" minOccurs="0"/>
341
+ <xs:element name="footnoteId" type="FOOTNOTE_ID" minOccurs="0" maxOccurs="99"/>
342
+ </xs:sequence>
343
+ </xs:complexType>
344
+
345
+ <xs:complexType name="UNDERLYING_SECURITY">
346
+ <xs:sequence>
347
+ <xs:element name="underlyingSecurityTitle" type="SECURITY_TITLE"/>
348
+ <xs:choice>
349
+ <xs:element name="underlyingSecurityShares" type="OPT_NUMBER_WITH_FOOTNOTE" minOccurs="0"/>
350
+ <xs:element name="underlyingSecurityValue" type="OPT_NUMBER_WITH_FOOTNOTE" minOccurs="0"/>
351
+ </xs:choice>
352
+ </xs:sequence>
353
+ </xs:complexType>
354
+
355
+ <xs:complexType name="NONDERIV_TRANSACT_AMOUNTS">
356
+ <xs:annotation>
357
+ <xs:documentation>
358
+ Must provide a number of shares.
359
+ Must provide a dollar value and/or a footnote.
360
+ Must provide a code indicating Acquired or Disposed Of.
361
+ </xs:documentation>
362
+ </xs:annotation>
363
+ <xs:sequence>
364
+ <xs:element name="transactionShares" type="NUMBER_WITH_FOOTNOTE"/>
365
+ <xs:element name="transactionPricePerShare" type="OPT_NUMBER_WITH_FOOTNOTE"/>
366
+ <xs:element name="transactionAcquiredDisposedCode" type="ACQ_DISP_CODE"/>
367
+ </xs:sequence>
368
+ </xs:complexType>
369
+
370
+ <xs:complexType name="DERIV_TRANSACT_AMOUNTS">
371
+ <xs:annotation>
372
+ <xs:documentation>
373
+ Must provide a number of shares or a total dollar value.
374
+ Must provide a price per share and/or a footnote.
375
+ Must provide a code indicating Acquired or Disposed Of.
376
+ </xs:documentation>
377
+ </xs:annotation>
378
+ <xs:sequence>
379
+ <xs:choice>
380
+ <xs:element name="transactionShares" type="NUMBER_WITH_FOOTNOTE"/>
381
+ <xs:element name="transactionTotalValue" type="NUMBER_WITH_FOOTNOTE"/>
382
+ </xs:choice>
383
+ <xs:element name="transactionPricePerShare" type="OPT_NUMBER_WITH_FOOTNOTE"/>
384
+ <xs:element name="transactionAcquiredDisposedCode" type="ACQ_DISP_CODE"/>
385
+ </xs:sequence>
386
+ </xs:complexType>
387
+
388
+ <xs:complexType name="POST_TRANSACTION_AMOUNTS">
389
+ <xs:choice>
390
+ <xs:element name="sharesOwnedFollowingTransaction" type="NUMBER_WITH_FOOTNOTE"/>
391
+ <xs:element name="valueOwnedFollowingTransaction" type="NUMBER_WITH_FOOTNOTE"/>
392
+ </xs:choice>
393
+ </xs:complexType>
394
+
395
+ <xs:complexType name="OWNERSHIP_NATURE">
396
+ <xs:annotation>
397
+ <xs:documentation>
398
+ If you set directOrIndirectOwnership to (I)ndirect, then
399
+ natureOfOwnership is actually mandatory.
400
+ </xs:documentation>
401
+ </xs:annotation>
402
+ <xs:sequence>
403
+ <xs:element name="directOrIndirectOwnership" type="OWNERSHIP_TYPE"/>
404
+ <xs:element name="natureOfOwnership" type="INDIRECT_NATURE" minOccurs="0"/>
405
+ </xs:sequence>
406
+ </xs:complexType>
407
+
408
+ <xs:complexType name="REPORTING_ID">
409
+ <xs:sequence>
410
+ <xs:element name="rptOwnerCik" type="CIK"/>
411
+ <xs:element name="rptOwnerCcc" minOccurs="0">
412
+ <xs:simpleType>
413
+ <xs:annotation>
414
+ <xs:documentation>
415
+ This element is marked as optional here but it is really mandatory.
416
+ It is marked as optional so that the CCC can be removed from the
417
+ version of the document that is disseminated. In this way, the
418
+ disseminated document will still conform to this specification.
419
+ </xs:documentation>
420
+ </xs:annotation>
421
+ <xs:restriction base="xs:string">
422
+ <xs:length value="8"/>
423
+ </xs:restriction>
424
+ </xs:simpleType>
425
+ </xs:element>
426
+ <xs:element name="rptOwnerName" minOccurs="0">
427
+ <xs:simpleType>
428
+ <xs:annotation>
429
+ <xs:documentation>
430
+ A document submitted as part of a Reduced Content submission
431
+ should not include this element. EDGAR will retrieve the
432
+ Reporting Owner's name based upon the provided CIK.
433
+ This element is part of this specification since it is
434
+ included in the version of the document that is disseminated.
435
+ </xs:documentation>
436
+ </xs:annotation>
437
+ <xs:restriction base="xs:string">
438
+ <xs:maxLength value="150"/>
439
+ </xs:restriction>
440
+ </xs:simpleType>
441
+ </xs:element>
442
+ </xs:sequence>
443
+ </xs:complexType>
444
+
445
+ <xs:complexType name="REPORTING_ADDRESS">
446
+ <xs:annotation>
447
+ <xs:documentation>
448
+ A document submitted as part of a Reduced Content submission
449
+ can include an address for a Reporting Owner.
450
+ All address elements are optional.
451
+
452
+ If you do not include any address element, EDGAR will retrieve
453
+ the Reporting Owner's address based upon the provided CIK.
454
+ This address will be included in the version of the document
455
+ that is disseminated.
456
+ </xs:documentation>
457
+ </xs:annotation>
458
+ <xs:sequence>
459
+ <xs:element name="rptOwnerStreet1" minOccurs="0">
460
+ <xs:simpleType>
461
+ <xs:restriction base="xs:string">
462
+ <xs:minLength value="0"/>
463
+ <xs:maxLength value="40"/>
464
+ </xs:restriction>
465
+ </xs:simpleType>
466
+ </xs:element>
467
+ <xs:element name="rptOwnerStreet2" minOccurs="0">
468
+ <xs:simpleType>
469
+ <xs:restriction base="xs:string">
470
+ <xs:minLength value="0"/>
471
+ <xs:maxLength value="40"/>
472
+ </xs:restriction>
473
+ </xs:simpleType>
474
+ </xs:element>
475
+ <xs:element name="rptOwnerCity" minOccurs="0">
476
+ <xs:simpleType>
477
+ <xs:restriction base="xs:string">
478
+ <xs:minLength value="0"/>
479
+ <xs:maxLength value="30"/>
480
+ </xs:restriction>
481
+ </xs:simpleType>
482
+ </xs:element>
483
+ <xs:element name="rptOwnerState" minOccurs="0">
484
+ <xs:simpleType>
485
+ <xs:restriction base="xs:string">
486
+ <xs:enumeration value=""/> <!-- EMPTY -->
487
+ <xs:enumeration value=" "/> <!-- EMPTY -->
488
+ <xs:enumeration value=" "/> <!-- EMPTY -->
489
+ <xs:enumeration value="AL"/> <!-- ALABAMA -->
490
+ <xs:enumeration value="AK"/> <!-- ALASKA -->
491
+ <xs:enumeration value="AZ"/> <!-- ARIZONA -->
492
+ <xs:enumeration value="AR"/> <!-- ARKANSAS -->
493
+ <xs:enumeration value="CA"/> <!-- CALIFORNIA -->
494
+ <xs:enumeration value="CO"/> <!-- COLORADO -->
495
+ <xs:enumeration value="CT"/> <!-- CONNECTICUT -->
496
+ <xs:enumeration value="DE"/> <!-- DELAWARE -->
497
+ <xs:enumeration value="DC"/> <!-- DISTRICT OF COLUMBIA -->
498
+ <xs:enumeration value="FL"/> <!-- FLORIDA -->
499
+ <xs:enumeration value="GA"/> <!-- GEORGIA -->
500
+ <xs:enumeration value="HI"/> <!-- HAWAII -->
501
+ <xs:enumeration value="ID"/> <!-- IDAHO -->
502
+ <xs:enumeration value="IL"/> <!-- ILLINOIS -->
503
+ <xs:enumeration value="IN"/> <!-- INDIANA -->
504
+ <xs:enumeration value="IA"/> <!-- IOWA -->
505
+ <xs:enumeration value="KS"/> <!-- KANSAS -->
506
+ <xs:enumeration value="KY"/> <!-- KENTUCKY -->
507
+ <xs:enumeration value="LA"/> <!-- LOUISIANA -->
508
+ <xs:enumeration value="ME"/> <!-- MAINE -->
509
+ <xs:enumeration value="MD"/> <!-- MARYLAND -->
510
+ <xs:enumeration value="MA"/> <!-- MASSACHUSETTS -->
511
+ <xs:enumeration value="MI"/> <!-- MICHIGAN -->
512
+ <xs:enumeration value="MN"/> <!-- MINNESOTA -->
513
+ <xs:enumeration value="MS"/> <!-- MISSISSIPPI -->
514
+ <xs:enumeration value="MO"/> <!-- MISSOURI -->
515
+ <xs:enumeration value="MT"/> <!-- MONTANA -->
516
+ <xs:enumeration value="NE"/> <!-- NEBRASKA -->
517
+ <xs:enumeration value="NV"/> <!-- NEVADA -->
518
+ <xs:enumeration value="NH"/> <!-- NEW HAMPSHIRE -->
519
+ <xs:enumeration value="NJ"/> <!-- NEW JERSEY -->
520
+ <xs:enumeration value="NM"/> <!-- NEW MEXICO -->
521
+ <xs:enumeration value="NY"/> <!-- NEW YORK -->
522
+ <xs:enumeration value="NC"/> <!-- NORTH CAROLINA -->
523
+ <xs:enumeration value="ND"/> <!-- NORTH DAKOTA -->
524
+ <xs:enumeration value="OH"/> <!-- OHIO -->
525
+ <xs:enumeration value="OK"/> <!-- OKLAHOMA -->
526
+ <xs:enumeration value="OR"/> <!-- OREGON -->
527
+ <xs:enumeration value="PA"/> <!-- PENNSYLVANIA -->
528
+ <xs:enumeration value="RI"/> <!-- RHODE ISLAND -->
529
+ <xs:enumeration value="SC"/> <!-- SOUTH CAROLINA -->
530
+ <xs:enumeration value="SD"/> <!-- SOUTH DAKOTA -->
531
+ <xs:enumeration value="TN"/> <!-- TENNESSEE -->
532
+ <xs:enumeration value="TX"/> <!-- TEXAS -->
533
+ <xs:enumeration value="X1"/> <!-- UNITED STATES -->
534
+ <xs:enumeration value="UT"/> <!-- UTAH -->
535
+ <xs:enumeration value="VT"/> <!-- VERMONT -->
536
+ <xs:enumeration value="VA"/> <!-- VIRGINIA -->
537
+ <xs:enumeration value="WA"/> <!-- WASHINGTON -->
538
+ <xs:enumeration value="WV"/> <!-- WEST VIRGINIA -->
539
+ <xs:enumeration value="WI"/> <!-- WISCONSIN -->
540
+ <xs:enumeration value="WY"/> <!-- WYOMING -->
541
+ <xs:enumeration value="A0"/> <!-- ALBERTA, CANADA -->
542
+ <xs:enumeration value="A1"/> <!-- BRITISH COLUMBIA, CANADA -->
543
+ <xs:enumeration value="Z4"/> <!-- CANADA (FEDERAL LEVEL) -->
544
+ <xs:enumeration value="A2"/> <!-- MANITOBA, CANADA -->
545
+ <xs:enumeration value="A3"/> <!-- NEW BRUNSWICK, CANADA -->
546
+ <xs:enumeration value="A4"/> <!-- NEWFOUNDLAND, CANADA -->
547
+ <xs:enumeration value="A5"/> <!-- NOVA SCOTIA, CANADA -->
548
+ <xs:enumeration value="A6"/> <!-- ONTARIO, CANADA -->
549
+ <xs:enumeration value="A7"/> <!-- PRINCE EDWARD ISLAND, CANADA -->
550
+ <xs:enumeration value="A8"/> <!-- QUEBEC, CANADA -->
551
+ <xs:enumeration value="A9"/> <!-- SASKATCHEWAN, CANADA -->
552
+ <xs:enumeration value="B0"/> <!-- YUKON, CANADA -->
553
+ <xs:enumeration value="B2"/> <!-- AFGHANISTAN -->
554
+ <xs:enumeration value="Y6"/> <!-- ALAND ISLANDS -->
555
+ <xs:enumeration value="B3"/> <!-- ALBANIA -->
556
+ <xs:enumeration value="B4"/> <!-- ALGERIA -->
557
+ <xs:enumeration value="B5"/> <!-- AMERICAN SAMOA -->
558
+ <xs:enumeration value="B6"/> <!-- ANDORRA -->
559
+ <xs:enumeration value="B7"/> <!-- ANGOLA -->
560
+ <xs:enumeration value="1A"/> <!-- ANGUILLA -->
561
+ <xs:enumeration value="B8"/> <!-- ANTARCTICA -->
562
+ <xs:enumeration value="B9"/> <!-- ANTIGUA AND BARBUDA -->
563
+ <xs:enumeration value="C1"/> <!-- ARGENTINA -->
564
+ <xs:enumeration value="1B"/> <!-- ARMENIA -->
565
+ <xs:enumeration value="1C"/> <!-- ARUBA -->
566
+ <xs:enumeration value="C3"/> <!-- AUSTRALIA -->
567
+ <xs:enumeration value="C4"/> <!-- AUSTRIA -->
568
+ <xs:enumeration value="1D"/> <!-- AZERBAIJAN -->
569
+ <xs:enumeration value="C5"/> <!-- BAHAMAS -->
570
+ <xs:enumeration value="C6"/> <!-- BAHRAIN -->
571
+ <xs:enumeration value="C7"/> <!-- BANGLADESH -->
572
+ <xs:enumeration value="C8"/> <!-- BARBADOS -->
573
+ <xs:enumeration value="1F"/> <!-- BELARUS -->
574
+ <xs:enumeration value="C9"/> <!-- BELGIUM -->
575
+ <xs:enumeration value="D1"/> <!-- BELIZE -->
576
+ <xs:enumeration value="G6"/> <!-- BENIN -->
577
+ <xs:enumeration value="D0"/> <!-- BERMUDA -->
578
+ <xs:enumeration value="D2"/> <!-- BHUTAN -->
579
+ <xs:enumeration value="D3"/> <!-- BOLIVIA -->
580
+ <xs:enumeration value="1E"/> <!-- BOSNIA AND HERZEGOVINA -->
581
+ <xs:enumeration value="B1"/> <!-- BOTSWANA -->
582
+ <xs:enumeration value="D4"/> <!-- BOUVET ISLAND -->
583
+ <xs:enumeration value="D5"/> <!-- BRAZIL -->
584
+ <xs:enumeration value="D6"/> <!-- BRITISH INDIAN OCEAN TERRITORY -->
585
+ <xs:enumeration value="D9"/> <!-- BRUNEI DARUSSALAM -->
586
+ <xs:enumeration value="E0"/> <!-- BULGARIA -->
587
+ <xs:enumeration value="X2"/> <!-- BURKINA FASO -->
588
+ <xs:enumeration value="E2"/> <!-- BURUNDI -->
589
+ <xs:enumeration value="E3"/> <!-- CAMBODIA -->
590
+ <xs:enumeration value="E4"/> <!-- CAMEROON -->
591
+ <xs:enumeration value="E8"/> <!-- CAPE VERDE -->
592
+ <xs:enumeration value="E9"/> <!-- CAYMAN ISLANDS -->
593
+ <xs:enumeration value="F0"/> <!-- CENTRAL AFRICAN REPUBLIC -->
594
+ <xs:enumeration value="F2"/> <!-- CHAD -->
595
+ <xs:enumeration value="F3"/> <!-- CHILE -->
596
+ <xs:enumeration value="F4"/> <!-- CHINA -->
597
+ <xs:enumeration value="F6"/> <!-- CHRISTMAS ISLAND -->
598
+ <xs:enumeration value="F7"/> <!-- COCOS (KEELING) ISLANDS -->
599
+ <xs:enumeration value="F8"/> <!-- COLOMBIA -->
600
+ <xs:enumeration value="F9"/> <!-- COMOROS -->
601
+ <xs:enumeration value="G0"/> <!-- CONGO -->
602
+ <xs:enumeration value="Y3"/> <!-- CONGO, THE DEMOCRATIC REPUBLIC OF THE -->
603
+ <xs:enumeration value="G1"/> <!-- COOK ISLANDS -->
604
+ <xs:enumeration value="G2"/> <!-- COSTA RICA -->
605
+ <xs:enumeration value="L7"/> <!-- COTE D'IVOIRE -->
606
+ <xs:enumeration value="1M"/> <!-- CROATIA -->
607
+ <xs:enumeration value="G3"/> <!-- CUBA -->
608
+ <xs:enumeration value="G4"/> <!-- CYPRUS -->
609
+ <xs:enumeration value="2N"/> <!-- CZECH REPUBLIC -->
610
+ <xs:enumeration value="G7"/> <!-- DENMARK -->
611
+ <xs:enumeration value="1G"/> <!-- DJIBOUTI -->
612
+ <xs:enumeration value="G9"/> <!-- DOMINICA -->
613
+ <xs:enumeration value="G8"/> <!-- DOMINICAN REPUBLIC -->
614
+ <xs:enumeration value="H1"/> <!-- ECUADOR -->
615
+ <xs:enumeration value="H2"/> <!-- EGYPT -->
616
+ <xs:enumeration value="H3"/> <!-- EL SALVADOR -->
617
+ <xs:enumeration value="H4"/> <!-- EQUATORIAL GUINEA -->
618
+ <xs:enumeration value="1J"/> <!-- ERITREA -->
619
+ <xs:enumeration value="1H"/> <!-- ESTONIA -->
620
+ <xs:enumeration value="H5"/> <!-- ETHIOPIA -->
621
+ <xs:enumeration value="H7"/> <!-- FALKLAND ISLANDS (MALVINAS) -->
622
+ <xs:enumeration value="H6"/> <!-- FAROE ISLANDS -->
623
+ <xs:enumeration value="H8"/> <!-- FIJI -->
624
+ <xs:enumeration value="H9"/> <!-- FINLAND -->
625
+ <xs:enumeration value="I0"/> <!-- FRANCE -->
626
+ <xs:enumeration value="I3"/> <!-- FRENCH GUIANA -->
627
+ <xs:enumeration value="I4"/> <!-- FRENCH POLYNESIA -->
628
+ <xs:enumeration value="2C"/> <!-- FRENCH SOUTHERN TERRITORIES -->
629
+ <xs:enumeration value="I5"/> <!-- GABON -->
630
+ <xs:enumeration value="I6"/> <!-- GAMBIA -->
631
+ <xs:enumeration value="2Q"/> <!-- GEORGIA -->
632
+ <xs:enumeration value="2M"/> <!-- GERMANY -->
633
+ <xs:enumeration value="J0"/> <!-- GHANA -->
634
+ <xs:enumeration value="J1"/> <!-- GIBRALTAR -->
635
+ <xs:enumeration value="J3"/> <!-- GREECE -->
636
+ <xs:enumeration value="J4"/> <!-- GREENLAND -->
637
+ <xs:enumeration value="J5"/> <!-- GRENADA -->
638
+ <xs:enumeration value="J6"/> <!-- GUADELOUPE -->
639
+ <xs:enumeration value="GU"/> <!-- GUAM -->
640
+ <xs:enumeration value="J8"/> <!-- GUATEMALA -->
641
+ <xs:enumeration value="Y7"/> <!-- GUERNSEY -->
642
+ <xs:enumeration value="J9"/> <!-- GUINEA -->
643
+ <xs:enumeration value="S0"/> <!-- GUINEA-BISSAU -->
644
+ <xs:enumeration value="K0"/> <!-- GUYANA -->
645
+ <xs:enumeration value="K1"/> <!-- HAITI -->
646
+ <xs:enumeration value="K4"/> <!-- HEARD ISLAND AND MCDONALD ISLANDS -->
647
+ <xs:enumeration value="X4"/> <!-- HOLY SEE (VATICAN CITY STATE) -->
648
+ <xs:enumeration value="K2"/> <!-- HONDURAS -->
649
+ <xs:enumeration value="K3"/> <!-- HONG KONG -->
650
+ <xs:enumeration value="K5"/> <!-- HUNGARY -->
651
+ <xs:enumeration value="K6"/> <!-- ICELAND -->
652
+ <xs:enumeration value="Y8"/> <!-- ISLE OF MAN -->
653
+ <xs:enumeration value="K7"/> <!-- INDIA -->
654
+ <xs:enumeration value="K8"/> <!-- INDONESIA -->
655
+ <xs:enumeration value="K9"/> <!-- IRAN, ISLAMIC REPUBLIC OF -->
656
+ <xs:enumeration value="L0"/> <!-- IRAQ -->
657
+ <xs:enumeration value="L2"/> <!-- IRELAND -->
658
+ <xs:enumeration value="L3"/> <!-- ISRAEL -->
659
+ <xs:enumeration value="L6"/> <!-- ITALY -->
660
+ <xs:enumeration value="L8"/> <!-- JAMAICA -->
661
+ <xs:enumeration value="M0"/> <!-- JAPAN -->
662
+ <xs:enumeration value="Y9"/> <!-- JERSEY -->
663
+ <xs:enumeration value="M2"/> <!-- JORDAN -->
664
+ <xs:enumeration value="1P"/> <!-- KAZAKSTAN -->
665
+ <xs:enumeration value="M3"/> <!-- KENYA -->
666
+ <xs:enumeration value="J2"/> <!-- KIRIBATI -->
667
+ <xs:enumeration value="M4"/> <!-- KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF -->
668
+ <xs:enumeration value="M5"/> <!-- KOREA, REPUBLIC OF -->
669
+ <xs:enumeration value="M6"/> <!-- KUWAIT -->
670
+ <xs:enumeration value="1N"/> <!-- KYRGYZSTAN -->
671
+ <xs:enumeration value="M7"/> <!-- LAO PEOPLE'S DEMOCRATIC REPUBLIC -->
672
+ <xs:enumeration value="1R"/> <!-- LATVIA -->
673
+ <xs:enumeration value="M8"/> <!-- LEBANON -->
674
+ <xs:enumeration value="M9"/> <!-- LESOTHO -->
675
+ <xs:enumeration value="N0"/> <!-- LIBERIA -->
676
+ <xs:enumeration value="N1"/> <!-- LIBYAN ARAB JAMAHIRIYA -->
677
+ <xs:enumeration value="N2"/> <!-- LIECHTENSTEIN -->
678
+ <xs:enumeration value="1Q"/> <!-- LITHUANIA -->
679
+ <xs:enumeration value="N4"/> <!-- LUXEMBOURG -->
680
+ <xs:enumeration value="N5"/> <!-- MACAU -->
681
+ <xs:enumeration value="1U"/> <!-- MACEDONIA, THE FORMER YUGOSLAV REPUBLIC OF -->
682
+ <xs:enumeration value="N6"/> <!-- MADAGASCAR -->
683
+ <xs:enumeration value="N7"/> <!-- MALAWI -->
684
+ <xs:enumeration value="N8"/> <!-- MALAYSIA -->
685
+ <xs:enumeration value="N9"/> <!-- MALDIVES -->
686
+ <xs:enumeration value="O0"/> <!-- MALI -->
687
+ <xs:enumeration value="O1"/> <!-- MALTA -->
688
+ <xs:enumeration value="1T"/> <!-- MARSHALL ISLANDS -->
689
+ <xs:enumeration value="O2"/> <!-- MARTINIQUE -->
690
+ <xs:enumeration value="O3"/> <!-- MAURITANIA -->
691
+ <xs:enumeration value="O4"/> <!-- MAURITIUS -->
692
+ <xs:enumeration value="2P"/> <!-- MAYOTTE -->
693
+ <xs:enumeration value="O5"/> <!-- MEXICO -->
694
+ <xs:enumeration value="1K"/> <!-- MICRONESIA, FEDERATED STATES OF -->
695
+ <xs:enumeration value="1S"/> <!-- MOLDOVA, REPUBLIC OF -->
696
+ <xs:enumeration value="O9"/> <!-- MONACO -->
697
+ <xs:enumeration value="P0"/> <!-- MONGOLIA -->
698
+ <xs:enumeration value="Z5"/> <!-- MONTENEGRO -->
699
+ <xs:enumeration value="P1"/> <!-- MONTSERRAT -->
700
+ <xs:enumeration value="P2"/> <!-- MOROCCO -->
701
+ <xs:enumeration value="P3"/> <!-- MOZAMBIQUE -->
702
+ <xs:enumeration value="E1"/> <!-- MYANMAR -->
703
+ <xs:enumeration value="T6"/> <!-- NAMIBIA -->
704
+ <xs:enumeration value="P5"/> <!-- NAURU -->
705
+ <xs:enumeration value="P6"/> <!-- NEPAL -->
706
+ <xs:enumeration value="P7"/> <!-- NETHERLANDS -->
707
+ <xs:enumeration value="P8"/> <!-- NETHERLANDS ANTILLES -->
708
+ <xs:enumeration value="1W"/> <!-- NEW CALEDONIA -->
709
+ <xs:enumeration value="Q2"/> <!-- NEW ZEALAND -->
710
+ <xs:enumeration value="Q3"/> <!-- NICARAGUA -->
711
+ <xs:enumeration value="Q4"/> <!-- NIGER -->
712
+ <xs:enumeration value="Q5"/> <!-- NIGERIA -->
713
+ <xs:enumeration value="Q6"/> <!-- NIUE -->
714
+ <xs:enumeration value="Q7"/> <!-- NORFOLK ISLAND -->
715
+ <xs:enumeration value="1V"/> <!-- NORTHERN MARIANA ISLANDS -->
716
+ <xs:enumeration value="Q8"/> <!-- NORWAY -->
717
+ <xs:enumeration value="P4"/> <!-- OMAN -->
718
+ <xs:enumeration value="R0"/> <!-- PAKISTAN -->
719
+ <xs:enumeration value="1Y"/> <!-- PALAU -->
720
+ <xs:enumeration value="1X"/> <!-- PALESTINIAN TERRITORY, OCCUPIED -->
721
+ <xs:enumeration value="R1"/> <!-- PANAMA -->
722
+ <xs:enumeration value="R2"/> <!-- PAPUA NEW GUINEA -->
723
+ <xs:enumeration value="R4"/> <!-- PARAGUAY -->
724
+ <xs:enumeration value="R5"/> <!-- PERU -->
725
+ <xs:enumeration value="R6"/> <!-- PHILIPPINES -->
726
+ <xs:enumeration value="R8"/> <!-- PITCAIRN -->
727
+ <xs:enumeration value="R9"/> <!-- POLAND -->
728
+ <xs:enumeration value="S1"/> <!-- PORTUGAL -->
729
+ <xs:enumeration value="PR"/> <!-- PUERTO RICO -->
730
+ <xs:enumeration value="S3"/> <!-- QATAR -->
731
+ <xs:enumeration value="S4"/> <!-- REUNION -->
732
+ <xs:enumeration value="S5"/> <!-- ROMANIA -->
733
+ <xs:enumeration value="1Z"/> <!-- RUSSIAN FEDERATION -->
734
+ <xs:enumeration value="S6"/> <!-- RWANDA -->
735
+ <xs:enumeration value="U8"/> <!-- SAINT HELENA -->
736
+ <xs:enumeration value="U7"/> <!-- SAINT KITTS AND NEVIS -->
737
+ <xs:enumeration value="U9"/> <!-- SAINT LUCIA -->
738
+ <xs:enumeration value="Z0"/> <!-- SAINT BARTHELEMY -->
739
+ <xs:enumeration value="Z1"/> <!-- SAINT MARTIN -->
740
+ <xs:enumeration value="V0"/> <!-- SAINT PIERRE AND MIQUELON -->
741
+ <xs:enumeration value="V1"/> <!-- SAINT VINCENT AND THE GRENADINES -->
742
+ <xs:enumeration value="Y0"/> <!-- SAMOA -->
743
+ <xs:enumeration value="S8"/> <!-- SAN MARINO -->
744
+ <xs:enumeration value="S9"/> <!-- SAO TOME AND PRINCIPE -->
745
+ <xs:enumeration value="T0"/> <!-- SAUDI ARABIA -->
746
+ <xs:enumeration value="T1"/> <!-- SENEGAL -->
747
+ <xs:enumeration value="Z2"/> <!-- SERBIA -->
748
+ <xs:enumeration value="T2"/> <!-- SEYCHELLES -->
749
+ <xs:enumeration value="T8"/> <!-- SIERRA LEONE -->
750
+ <xs:enumeration value="U0"/> <!-- SINGAPORE -->
751
+ <xs:enumeration value="2B"/> <!-- SLOVAKIA -->
752
+ <xs:enumeration value="2A"/> <!-- SLOVENIA -->
753
+ <xs:enumeration value="D7"/> <!-- SOLOMON ISLANDS -->
754
+ <xs:enumeration value="U1"/> <!-- SOMALIA -->
755
+ <xs:enumeration value="T3"/> <!-- SOUTH AFRICA -->
756
+ <xs:enumeration value="1L"/> <!-- SOUTH GEORGIA AND THE SOUTH SANDWICH ISLANDS -->
757
+ <xs:enumeration value="U3"/> <!-- SPAIN -->
758
+ <xs:enumeration value="F1"/> <!-- SRI LANKA -->
759
+ <xs:enumeration value="V2"/> <!-- SUDAN -->
760
+ <xs:enumeration value="V3"/> <!-- SURINAME -->
761
+ <xs:enumeration value="L9"/> <!-- SVALBARD AND JAN MAYEN -->
762
+ <xs:enumeration value="V6"/> <!-- SWAZILAND -->
763
+ <xs:enumeration value="V7"/> <!-- SWEDEN -->
764
+ <xs:enumeration value="V8"/> <!-- SWITZERLAND -->
765
+ <xs:enumeration value="V9"/> <!-- SYRIAN ARAB REPUBLIC -->
766
+ <xs:enumeration value="F5"/> <!-- TAIWAN, PROVINCE OF CHINA -->
767
+ <xs:enumeration value="2D"/> <!-- TAJIKISTAN -->
768
+ <xs:enumeration value="W0"/> <!-- TANZANIA, UNITED REPUBLIC OF -->
769
+ <xs:enumeration value="W1"/> <!-- THAILAND -->
770
+ <xs:enumeration value="Z3"/> <!-- TIMOR-LESTE -->
771
+ <xs:enumeration value="W2"/> <!-- TOGO -->
772
+ <xs:enumeration value="W3"/> <!-- TOKELAU -->
773
+ <xs:enumeration value="W4"/> <!-- TONGA -->
774
+ <xs:enumeration value="W5"/> <!-- TRINIDAD AND TOBAGO -->
775
+ <xs:enumeration value="W6"/> <!-- TUNISIA -->
776
+ <xs:enumeration value="W8"/> <!-- TURKEY -->
777
+ <xs:enumeration value="2E"/> <!-- TURKMENISTAN -->
778
+ <xs:enumeration value="W7"/> <!-- TURKS AND CAICOS ISLANDS -->
779
+ <xs:enumeration value="2G"/> <!-- TUVALU -->
780
+ <xs:enumeration value="W9"/> <!-- UGANDA -->
781
+ <xs:enumeration value="2H"/> <!-- UKRAINE -->
782
+ <xs:enumeration value="C0"/> <!-- UNITED ARAB EMIRATES -->
783
+ <xs:enumeration value="X0"/> <!-- UNITED KINGDOM -->
784
+ <xs:enumeration value="2J"/> <!-- UNITED STATES MINOR OUTLYING ISLANDS -->
785
+ <xs:enumeration value="X3"/> <!-- URUGUAY -->
786
+ <xs:enumeration value="2K"/> <!-- UZBEKISTAN -->
787
+ <xs:enumeration value="2L"/> <!-- VANUATU -->
788
+ <xs:enumeration value="X5"/> <!-- VENEZUELA -->
789
+ <xs:enumeration value="Q1"/> <!-- VIET NAM -->
790
+ <xs:enumeration value="D8"/> <!-- VIRGIN ISLANDS, BRITISH -->
791
+ <xs:enumeration value="VI"/> <!-- VIRGIN ISLANDS, U.S. -->
792
+ <xs:enumeration value="X8"/> <!-- WALLIS AND FUTUNA -->
793
+ <xs:enumeration value="U5"/> <!-- WESTERN SAHARA -->
794
+ <xs:enumeration value="T7"/> <!-- YEMEN -->
795
+ <xs:enumeration value="Y4"/> <!-- ZAMBIA -->
796
+ <xs:enumeration value="Y5"/> <!-- ZIMBABWE -->
797
+ <xs:enumeration value="XX"/> <!-- UNKNOWN -->
798
+ <!--
799
+ The rest of these are obsolete codes but can pass thru
800
+ if coming from OnlineWeb in one special case. EDGAR will
801
+ SUSPEND if one of these values is used in a Reduced Content
802
+ submission.
803
+ -->
804
+ <xs:enumeration value="C2"/> <!-- ASHMORE & CARTIER IS -->
805
+ <xs:enumeration value="E5"/> <!-- CANAL ZONE -->
806
+ <xs:enumeration value="E7"/> <!-- CANTON/ENDERBURY IS -->
807
+ <xs:enumeration value="G5"/> <!-- CZECHOSLOVAKIA -->
808
+ <xs:enumeration value="I7"/> <!-- GAZA STRIP -->
809
+ <xs:enumeration value="X9"/> <!-- GERMANY (BERLIN) -->
810
+ <xs:enumeration value="I8"/> <!-- GERMANY (WEST) -->
811
+ <xs:enumeration value="I9"/> <!-- GERMANY, FED. REP. -->
812
+ <xs:enumeration value="2F"/> <!-- EAST TIMOR -->
813
+ <xs:enumeration value="L1"/> <!-- IRAQ-SAUDI -->
814
+ <xs:enumeration value="L4"/> <!-- ISRAEL-JORDAN -->
815
+ <xs:enumeration value="L5"/> <!-- ISRAEL-SYRIA -->
816
+ <xs:enumeration value="M1"/> <!-- JOHNSTON ATOLL -->
817
+ <xs:enumeration value="O6"/> <!-- MIDWAY ISLAND -->
818
+ <xs:enumeration value="Q9"/> <!-- PACIFIC ISLANDS TRU -->
819
+ <xs:enumeration value="R3"/> <!-- PARACEL ISLANDS -->
820
+ <xs:enumeration value="T4"/> <!-- SOUTHERN RHODESIA -->
821
+ <xs:enumeration value="U2"/> <!-- SOVIET UNION -->
822
+ <xs:enumeration value="U4"/> <!-- SPANISH NORTH AFRICA -->
823
+ <xs:enumeration value="U6"/> <!-- SPRATLY ISLAND -->
824
+ <xs:enumeration value="X7"/> <!-- WAKE ISLAND -->
825
+ <xs:enumeration value="Y2"/> <!-- YUGOSLAVIA -->
826
+ </xs:restriction>
827
+ </xs:simpleType>
828
+ </xs:element>
829
+ <xs:element name="rptOwnerZipCode" minOccurs="0">
830
+ <xs:simpleType>
831
+ <xs:restriction base="xs:string">
832
+ <xs:minLength value="0"/>
833
+ <xs:maxLength value="10"/>
834
+ <xs:pattern value="[0-9A-Za-z #-]*"/>
835
+ </xs:restriction>
836
+ </xs:simpleType>
837
+ </xs:element>
838
+ <xs:element name="rptOwnerStateDescription" minOccurs="0">
839
+ <xs:annotation>
840
+ <xs:documentation>
841
+ This is not for the use of the filers. This field
842
+ is passed to the stylesheets and the EDGAR PDF generator
843
+ to improve the display of non-U.S. addresses.
844
+ </xs:documentation>
845
+ </xs:annotation>
846
+ <xs:simpleType>
847
+ <xs:restriction base="xs:string">
848
+ <xs:minLength value="0"/>
849
+ <xs:maxLength value="50"/>
850
+ </xs:restriction>
851
+ </xs:simpleType>
852
+ </xs:element>
853
+ <xs:element name="rptOwnerGoodAddress" type="xs:boolean" minOccurs="0">
854
+ <xs:annotation>
855
+ <xs:documentation>
856
+ This is not for the use of the filers. This field
857
+ is just for internal EDGAR processing.
858
+ </xs:documentation>
859
+ </xs:annotation>
860
+ </xs:element>
861
+ </xs:sequence>
862
+ </xs:complexType>
863
+
864
+ <xs:complexType name="REPORTING_RELATIONSHIP">
865
+ <xs:annotation>
866
+ <xs:documentation>
867
+ Each Reporting Owner must have at least one of the four relationship
868
+ booleans set to true. This is not enforced by this schema but will
869
+ be enforced during EDGAR processing.
870
+ </xs:documentation>
871
+ </xs:annotation>
872
+ <xs:sequence>
873
+ <xs:element name="isDirector" type="xs:boolean" minOccurs="0"/>
874
+ <xs:element name="isOfficer" type="xs:boolean" minOccurs="0"/>
875
+ <xs:element name="isTenPercentOwner" type="xs:boolean" minOccurs="0"/>
876
+ <xs:element name="isOther" type="xs:boolean" minOccurs="0"/>
877
+ <xs:element name="officerTitle" type="STRING_30" minOccurs="0"/>
878
+ <xs:element name="otherText" type="STRING_30" minOccurs="0"/>
879
+ </xs:sequence>
880
+ </xs:complexType>
881
+
882
+ <xs:complexType name="REPORTING_OWNER">
883
+ <xs:sequence>
884
+ <xs:element name="reportingOwnerId" type="REPORTING_ID"/>
885
+ <xs:element name="reportingOwnerAddress" type="REPORTING_ADDRESS" minOccurs="0"/>
886
+ <xs:element name="reportingOwnerRelationship" type="REPORTING_RELATIONSHIP"/>
887
+ </xs:sequence>
888
+ </xs:complexType>
889
+
890
+ </xs:schema>