-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathfixtagnums.js
958 lines (958 loc) · 45.2 KB
/
fixtagnums.js
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
957
958
exports.keyvals = {
"1":"Account", "Account":"1",
"2":"AdvId", "AdvId":"2",
"3":"AdvRefID", "AdvRefID":"3",
"4":"AdvSide", "AdvSide":"4",
"5":"AdvTransType", "AdvTransType":"5",
"6":"AvgPx", "AvgPx":"6",
"7":"BeginSeqNo", "BeginSeqNo":"7",
"8":"BeginString", "BeginString":"8",
"9":"BodyLength", "BodyLength":"9",
"10":"CheckSum", "CheckSum":"10",
"11":"ClOrdID", "ClOrdID":"11",
"12":"Commission", "Commission":"12",
"13":"CommType", "CommType":"13",
"14":"CumQty", "CumQty":"14",
"15":"Currency", "Currency":"15",
"16":"EndSeqNo", "EndSeqNo":"16",
"17":"ExecID", "ExecID":"17",
"18":"ExecInst", "ExecInst":"18",
"19":"ExecRefID", "ExecRefID":"19",
"20":"ExecTransType", "ExecTransType":"20",
"21":"HandlInst", "HandlInst":"21",
"22":"SecurityIDSource", "SecurityIDSource":"22",
"23":"IOIID", "IOIID":"23",
"24":"IOIOthSvc(nolongerused)", "IOIOthSvc(nolongerused)":"24",
"25":"IOIQltyInd", "IOIQltyInd":"25",
"26":"IOIRefID", "IOIRefID":"26",
"27":"IOIQty", "IOIQty":"27",
"28":"IOITransType", "IOITransType":"28",
"29":"LastCapacity", "LastCapacity":"29",
"30":"LastMkt", "LastMkt":"30",
"31":"LastPx", "LastPx":"31",
"32":"LastQty", "LastQty":"32",
"33":"NoLinesOfText", "NoLinesOfText":"33",
"34":"MsgSeqNum", "MsgSeqNum":"34",
"35":"MsgType", "MsgType":"35",
"36":"NewSeqNo", "NewSeqNo":"36",
"37":"OrderID", "OrderID":"37",
"38":"OrderQty", "OrderQty":"38",
"39":"OrdStatus", "OrdStatus":"39",
"40":"OrdType", "OrdType":"40",
"41":"OrigClOrdID", "OrigClOrdID":"41",
"42":"OrigTime", "OrigTime":"42",
"43":"PossDupFlag", "PossDupFlag":"43",
"44":"Price", "Price":"44",
"45":"RefSeqNum", "RefSeqNum":"45",
"46":"RelatdSym(nolongerused)", "RelatdSym(nolongerused)":"46",
"47":"Rule80A(NoLongerUsed)", "Rule80A(NoLongerUsed)":"47",
"48":"SecurityID", "SecurityID":"48",
"49":"SenderCompID", "SenderCompID":"49",
"50":"SenderSubID", "SenderSubID":"50",
"51":"SendingDate(nolongerused)", "SendingDate(nolongerused)":"51",
"52":"SendingTime", "SendingTime":"52",
"53":"Quantity", "Quantity":"53",
"54":"Side", "Side":"54",
"55":"Symbol", "Symbol":"55",
"56":"TargetCompID", "TargetCompID":"56",
"57":"TargetSubID", "TargetSubID":"57",
"58":"Text", "Text":"58",
"59":"TimeInForce", "TimeInForce":"59",
"60":"TransactTime", "TransactTime":"60",
"61":"Urgency", "Urgency":"61",
"62":"ValidUntilTime", "ValidUntilTime":"62",
"63":"SettlType", "SettlType":"63",
"64":"SettlDate", "SettlDate":"64",
"65":"SymbolSfx", "SymbolSfx":"65",
"66":"ListID", "ListID":"66",
"67":"ListSeqNo", "ListSeqNo":"67",
"68":"TotNoOrders", "TotNoOrders":"68",
"69":"ListExecInst", "ListExecInst":"69",
"70":"AllocID", "AllocID":"70",
"71":"AllocTransType", "AllocTransType":"71",
"72":"RefAllocID", "RefAllocID":"72",
"73":"NoOrders", "NoOrders":"73",
"74":"AvgPxPrecision", "AvgPxPrecision":"74",
"75":"TradeDate", "TradeDate":"75",
"76":"ExecBroker", "ExecBroker":"76",
"77":"PositionEffect", "PositionEffect":"77",
"78":"NoAllocs", "NoAllocs":"78",
"79":"AllocAccount", "AllocAccount":"79",
"80":"AllocQty", "AllocQty":"80",
"81":"ProcessCode", "ProcessCode":"81",
"82":"NoRpts", "NoRpts":"82",
"83":"RptSeq", "RptSeq":"83",
"84":"CxlQty", "CxlQty":"84",
"85":"NoDlvyInst", "NoDlvyInst":"85",
"86":"DlvyInst", "DlvyInst":"86",
"87":"AllocStatus", "AllocStatus":"87",
"88":"AllocRejCode", "AllocRejCode":"88",
"89":"Signature", "Signature":"89",
"90":"SecureDataLen", "SecureDataLen":"90",
"91":"SecureData", "SecureData":"91",
"92":"BrokerOfCredit", "BrokerOfCredit":"92",
"93":"SignatureLength", "SignatureLength":"93",
"94":"EmailType", "EmailType":"94",
"95":"RawDataLength", "RawDataLength":"95",
"96":"RawData", "RawData":"96",
"97":"PossResend", "PossResend":"97",
"98":"EncryptMethod", "EncryptMethod":"98",
"99":"StopPx", "StopPx":"99",
"100":"ExDestination", "ExDestination":"100",
"101":"(NotDefined)", "(NotDefined)":"101",
"102":"CxlRejReason", "CxlRejReason":"102",
"103":"OrdRejReason", "OrdRejReason":"103",
"104":"IOIQualifier", "IOIQualifier":"104",
"105":"WaveNo", "WaveNo":"105",
"106":"Issuer", "Issuer":"106",
"107":"SecurityDesc", "SecurityDesc":"107",
"108":"HeartBtInt", "HeartBtInt":"108",
"109":"ClientID", "ClientID":"109",
"110":"MinQty", "MinQty":"110",
"111":"MaxFloor", "MaxFloor":"111",
"112":"TestReqID", "TestReqID":"112",
"113":"ReportToExch", "ReportToExch":"113",
"114":"LocateReqd", "LocateReqd":"114",
"115":"OnBehalfOfCompID", "OnBehalfOfCompID":"115",
"116":"OnBehalfOfSubID", "OnBehalfOfSubID":"116",
"117":"QuoteID", "QuoteID":"117",
"118":"NetMoney", "NetMoney":"118",
"119":"SettlCurrAmt", "SettlCurrAmt":"119",
"120":"SettlCurrency", "SettlCurrency":"120",
"121":"ForexReq", "ForexReq":"121",
"122":"OrigSendingTime", "OrigSendingTime":"122",
"123":"GapFillFlag", "GapFillFlag":"123",
"124":"NoExecs", "NoExecs":"124",
"125":"CxlType", "CxlType":"125",
"126":"ExpireTime", "ExpireTime":"126",
"127":"DKReason", "DKReason":"127",
"128":"DeliverToCompID", "DeliverToCompID":"128",
"129":"DeliverToSubID", "DeliverToSubID":"129",
"130":"IOINaturalFlag", "IOINaturalFlag":"130",
"131":"QuoteReqID", "QuoteReqID":"131",
"132":"BidPx", "BidPx":"132",
"133":"OfferPx", "OfferPx":"133",
"134":"BidSize", "BidSize":"134",
"135":"OfferSize", "OfferSize":"135",
"136":"NoMiscFees", "NoMiscFees":"136",
"137":"MiscFeeAmt", "MiscFeeAmt":"137",
"138":"MiscFeeCurr", "MiscFeeCurr":"138",
"139":"MiscFeeType", "MiscFeeType":"139",
"140":"PrevClosePx", "PrevClosePx":"140",
"141":"ResetSeqNumFlag", "ResetSeqNumFlag":"141",
"142":"SenderLocationID", "SenderLocationID":"142",
"143":"TargetLocationID", "TargetLocationID":"143",
"144":"OnBehalfOfLocationID", "OnBehalfOfLocationID":"144",
"145":"DeliverToLocationID", "DeliverToLocationID":"145",
"146":"NoRelatedSym", "NoRelatedSym":"146",
"147":"Subject", "Subject":"147",
"148":"Headline", "Headline":"148",
"149":"URLLink", "URLLink":"149",
"150":"ExecType", "ExecType":"150",
"151":"LeavesQty", "LeavesQty":"151",
"152":"CashOrderQty", "CashOrderQty":"152",
"153":"AllocAvgPx", "AllocAvgPx":"153",
"154":"AllocNetMoney", "AllocNetMoney":"154",
"155":"SettlCurrFxRate", "SettlCurrFxRate":"155",
"156":"SettlCurrFxRateCalc", "SettlCurrFxRateCalc":"156",
"157":"NumDaysInterest", "NumDaysInterest":"157",
"158":"AccruedInterestRate", "AccruedInterestRate":"158",
"159":"AccruedInterestAmt", "AccruedInterestAmt":"159",
"160":"SettlInstMode", "SettlInstMode":"160",
"161":"AllocText", "AllocText":"161",
"162":"SettlInstID", "SettlInstID":"162",
"163":"SettlInstTransType", "SettlInstTransType":"163",
"164":"EmailThreadID", "EmailThreadID":"164",
"165":"SettlInstSource", "SettlInstSource":"165",
"166":"SettlLocation", "SettlLocation":"166",
"167":"SecurityType", "SecurityType":"167",
"168":"EffectiveTime", "EffectiveTime":"168",
"169":"StandInstDbType", "StandInstDbType":"169",
"170":"StandInstDbName", "StandInstDbName":"170",
"171":"StandInstDbID", "StandInstDbID":"171",
"172":"SettlDeliveryType", "SettlDeliveryType":"172",
"173":"SettlDepositoryCode", "SettlDepositoryCode":"173",
"174":"SettlBrkrCode", "SettlBrkrCode":"174",
"175":"SettlInstCode", "SettlInstCode":"175",
"176":"SecuritySettlAgentName", "SecuritySettlAgentName":"176",
"177":"SecuritySettlAgentCode", "SecuritySettlAgentCode":"177",
"178":"SecuritySettlAgentAcctNum", "SecuritySettlAgentAcctNum":"178",
"179":"SecuritySettlAgentAcctName", "SecuritySettlAgentAcctName":"179",
"180":"SecuritySettlAgentContactName", "SecuritySettlAgentContactName":"180",
"181":"SecuritySettlAgentContactPhone", "SecuritySettlAgentContactPhone":"181",
"182":"CashSettlAgentName", "CashSettlAgentName":"182",
"183":"CashSettlAgentCode", "CashSettlAgentCode":"183",
"184":"CashSettlAgentAcctNum", "CashSettlAgentAcctNum":"184",
"185":"CashSettlAgentAcctName", "CashSettlAgentAcctName":"185",
"186":"CashSettlAgentContactName", "CashSettlAgentContactName":"186",
"187":"CashSettlAgentContactPhone", "CashSettlAgentContactPhone":"187",
"188":"BidSpotRate", "BidSpotRate":"188",
"189":"BidForwardPoints", "BidForwardPoints":"189",
"190":"OfferSpotRate", "OfferSpotRate":"190",
"191":"OfferForwardPoints", "OfferForwardPoints":"191",
"192":"OrderQty2", "OrderQty2":"192",
"193":"SettlDate2", "SettlDate2":"193",
"194":"LastSpotRate", "LastSpotRate":"194",
"195":"LastForwardPoints", "LastForwardPoints":"195",
"196":"AllocLinkID", "AllocLinkID":"196",
"197":"AllocLinkType", "AllocLinkType":"197",
"198":"SecondaryOrderID", "SecondaryOrderID":"198",
"199":"NoIOIQualifiers", "NoIOIQualifiers":"199",
"200":"MaturityMonthYear", "MaturityMonthYear":"200",
"201":"PutOrCall", "PutOrCall":"201",
"202":"StrikePrice", "StrikePrice":"202",
"203":"CoveredOrUncovered", "CoveredOrUncovered":"203",
"204":"CustomerOrFirm", "CustomerOrFirm":"204",
"205":"MaturityDay", "MaturityDay":"205",
"206":"OptAttribute", "OptAttribute":"206",
"207":"SecurityExchange", "SecurityExchange":"207",
"208":"NotifyBrokerOfCredit", "NotifyBrokerOfCredit":"208",
"209":"AllocHandlInst", "AllocHandlInst":"209",
"210":"MaxShow", "MaxShow":"210",
"211":"PegOffsetValue", "PegOffsetValue":"211",
"212":"XmlDataLen", "XmlDataLen":"212",
"213":"XmlData", "XmlData":"213",
"214":"SettlInstRefID", "SettlInstRefID":"214",
"215":"NoRoutingIDs", "NoRoutingIDs":"215",
"216":"RoutingType", "RoutingType":"216",
"217":"RoutingID", "RoutingID":"217",
"218":"Spread", "Spread":"218",
"219":"Benchmark", "Benchmark":"219",
"220":"BenchmarkCurveCurrency", "BenchmarkCurveCurrency":"220",
"221":"BenchmarkCurveName", "BenchmarkCurveName":"221",
"222":"BenchmarkCurvePoint", "BenchmarkCurvePoint":"222",
"223":"CouponRate", "CouponRate":"223",
"224":"CouponPaymentDate", "CouponPaymentDate":"224",
"225":"IssueDate", "IssueDate":"225",
"226":"RepurchaseTerm", "RepurchaseTerm":"226",
"227":"RepurchaseRate", "RepurchaseRate":"227",
"228":"Factor", "Factor":"228",
"229":"TradeOriginationDate", "TradeOriginationDate":"229",
"230":"ExDate", "ExDate":"230",
"231":"ContractMultiplier", "ContractMultiplier":"231",
"232":"NoStipulations", "NoStipulations":"232",
"233":"StipulationType", "StipulationType":"233",
"234":"StipulationValue", "StipulationValue":"234",
"235":"YieldType", "YieldType":"235",
"236":"Yield", "Yield":"236",
"237":"TotalTakedown", "TotalTakedown":"237",
"238":"Concession", "Concession":"238",
"239":"RepoCollateralSecurityType", "RepoCollateralSecurityType":"239",
"240":"RedemptionDate", "RedemptionDate":"240",
"241":"UnderlyingCouponPaymentDate", "UnderlyingCouponPaymentDate":"241",
"242":"UnderlyingIssueDate", "UnderlyingIssueDate":"242",
"243":"UnderlyingRepoCollateralSecurityType", "UnderlyingRepoCollateralSecurityType":"243",
"244":"UnderlyingRepurchaseTerm", "UnderlyingRepurchaseTerm":"244",
"245":"UnderlyingRepurchaseRate", "UnderlyingRepurchaseRate":"245",
"246":"UnderlyingFactor", "UnderlyingFactor":"246",
"247":"UnderlyingRedemptionDate", "UnderlyingRedemptionDate":"247",
"248":"LegCouponPaymentDate", "LegCouponPaymentDate":"248",
"249":"LegIssueDate", "LegIssueDate":"249",
"250":"LegRepoCollateralSecurityType", "LegRepoCollateralSecurityType":"250",
"251":"LegRepurchaseTerm", "LegRepurchaseTerm":"251",
"252":"LegRepurchaseRate", "LegRepurchaseRate":"252",
"253":"LegFactor", "LegFactor":"253",
"254":"LegRedemptionDate", "LegRedemptionDate":"254",
"255":"CreditRating", "CreditRating":"255",
"256":"UnderlyingCreditRating", "UnderlyingCreditRating":"256",
"257":"LegCreditRating", "LegCreditRating":"257",
"258":"TradedFlatSwitch", "TradedFlatSwitch":"258",
"259":"BasisFeatureDate", "BasisFeatureDate":"259",
"260":"BasisFeaturePrice", "BasisFeaturePrice":"260",
"261":"Reserved/AllocatedtotheFixedIncomeproposal", "Reserved/AllocatedtotheFixedIncomeproposal":"261",
"262":"MDReqID", "MDReqID":"262",
"263":"SubscriptionRequestType", "SubscriptionRequestType":"263",
"264":"MarketDepth", "MarketDepth":"264",
"265":"MDUpdateType", "MDUpdateType":"265",
"266":"AggregatedBook", "AggregatedBook":"266",
"267":"NoMDEntryTypes", "NoMDEntryTypes":"267",
"268":"NoMDEntries", "NoMDEntries":"268",
"269":"MDEntryType", "MDEntryType":"269",
"270":"MDEntryPx", "MDEntryPx":"270",
"271":"MDEntrySize", "MDEntrySize":"271",
"272":"MDEntryDate", "MDEntryDate":"272",
"273":"MDEntryTime", "MDEntryTime":"273",
"274":"TickDirection", "TickDirection":"274",
"275":"MDMkt", "MDMkt":"275",
"276":"QuoteCondition", "QuoteCondition":"276",
"277":"TradeCondition", "TradeCondition":"277",
"278":"MDEntryID", "MDEntryID":"278",
"279":"MDUpdateAction", "MDUpdateAction":"279",
"280":"MDEntryRefID", "MDEntryRefID":"280",
"281":"MDReqRejReason", "MDReqRejReason":"281",
"282":"MDEntryOriginator", "MDEntryOriginator":"282",
"283":"LocationID", "LocationID":"283",
"284":"DeskID", "DeskID":"284",
"285":"DeleteReason", "DeleteReason":"285",
"286":"OpenCloseSettlFlag", "OpenCloseSettlFlag":"286",
"287":"SellerDays", "SellerDays":"287",
"288":"MDEntryBuyer", "MDEntryBuyer":"288",
"289":"MDEntrySeller", "MDEntrySeller":"289",
"290":"MDEntryPositionNo", "MDEntryPositionNo":"290",
"291":"FinancialStatus", "FinancialStatus":"291",
"292":"CorporateAction", "CorporateAction":"292",
"293":"DefBidSize", "DefBidSize":"293",
"294":"DefOfferSize", "DefOfferSize":"294",
"295":"NoQuoteEntries", "NoQuoteEntries":"295",
"296":"NoQuoteSets", "NoQuoteSets":"296",
"297":"QuoteStatus", "QuoteStatus":"297",
"298":"QuoteCancelType", "QuoteCancelType":"298",
"299":"QuoteEntryID", "QuoteEntryID":"299",
"300":"QuoteRejectReason", "QuoteRejectReason":"300",
"301":"QuoteResponseLevel", "QuoteResponseLevel":"301",
"302":"QuoteSetID", "QuoteSetID":"302",
"303":"QuoteRequestType", "QuoteRequestType":"303",
"304":"TotNoQuoteEntries", "TotNoQuoteEntries":"304",
"305":"UnderlyingSecurityIDSource", "UnderlyingSecurityIDSource":"305",
"306":"UnderlyingIssuer", "UnderlyingIssuer":"306",
"307":"UnderlyingSecurityDesc", "UnderlyingSecurityDesc":"307",
"308":"UnderlyingSecurityExchange", "UnderlyingSecurityExchange":"308",
"309":"UnderlyingSecurityID", "UnderlyingSecurityID":"309",
"310":"UnderlyingSecurityType", "UnderlyingSecurityType":"310",
"311":"UnderlyingSymbol", "UnderlyingSymbol":"311",
"312":"UnderlyingSymbolSfx", "UnderlyingSymbolSfx":"312",
"313":"UnderlyingMaturityMonthYear", "UnderlyingMaturityMonthYear":"313",
"314":"UnderlyingMaturityDay", "UnderlyingMaturityDay":"314",
"315":"UnderlyingPutOrCall", "UnderlyingPutOrCall":"315",
"316":"UnderlyingStrikePrice", "UnderlyingStrikePrice":"316",
"317":"UnderlyingOptAttribute", "UnderlyingOptAttribute":"317",
"318":"UnderlyingCurrency", "UnderlyingCurrency":"318",
"319":"RatioQty", "RatioQty":"319",
"320":"SecurityReqID", "SecurityReqID":"320",
"321":"SecurityRequestType", "SecurityRequestType":"321",
"322":"SecurityResponseID", "SecurityResponseID":"322",
"323":"SecurityResponseType", "SecurityResponseType":"323",
"324":"SecurityStatusReqID", "SecurityStatusReqID":"324",
"325":"UnsolicitedIndicator", "UnsolicitedIndicator":"325",
"326":"SecurityTradingStatus", "SecurityTradingStatus":"326",
"327":"HaltReason", "HaltReason":"327",
"328":"InViewOfCommon", "InViewOfCommon":"328",
"329":"DueToRelated", "DueToRelated":"329",
"330":"BuyVolume", "BuyVolume":"330",
"331":"SellVolume", "SellVolume":"331",
"332":"HighPx", "HighPx":"332",
"333":"LowPx", "LowPx":"333",
"334":"Adjustment", "Adjustment":"334",
"335":"TradSesReqID", "TradSesReqID":"335",
"336":"TradingSessionID", "TradingSessionID":"336",
"337":"ContraTrader", "ContraTrader":"337",
"338":"TradSesMethod", "TradSesMethod":"338",
"339":"TradSesMode", "TradSesMode":"339",
"340":"TradSesStatus", "TradSesStatus":"340",
"341":"TradSesStartTime", "TradSesStartTime":"341",
"342":"TradSesOpenTime", "TradSesOpenTime":"342",
"343":"TradSesPreCloseTime", "TradSesPreCloseTime":"343",
"344":"TradSesCloseTime", "TradSesCloseTime":"344",
"345":"TradSesEndTime", "TradSesEndTime":"345",
"346":"NumberOfOrders", "NumberOfOrders":"346",
"347":"MessageEncoding", "MessageEncoding":"347",
"348":"EncodedIssuerLen", "EncodedIssuerLen":"348",
"349":"EncodedIssuer", "EncodedIssuer":"349",
"350":"EncodedSecurityDescLen", "EncodedSecurityDescLen":"350",
"351":"EncodedSecurityDesc", "EncodedSecurityDesc":"351",
"352":"EncodedListExecInstLen", "EncodedListExecInstLen":"352",
"353":"EncodedListExecInst", "EncodedListExecInst":"353",
"354":"EncodedTextLen", "EncodedTextLen":"354",
"355":"EncodedText", "EncodedText":"355",
"356":"EncodedSubjectLen", "EncodedSubjectLen":"356",
"357":"EncodedSubject", "EncodedSubject":"357",
"358":"EncodedHeadlineLen", "EncodedHeadlineLen":"358",
"359":"EncodedHeadline", "EncodedHeadline":"359",
"360":"EncodedAllocTextLen", "EncodedAllocTextLen":"360",
"361":"EncodedAllocText", "EncodedAllocText":"361",
"362":"EncodedUnderlyingIssuerLen", "EncodedUnderlyingIssuerLen":"362",
"363":"EncodedUnderlyingIssuer", "EncodedUnderlyingIssuer":"363",
"364":"EncodedUnderlyingSecurityDescLen", "EncodedUnderlyingSecurityDescLen":"364",
"365":"EncodedUnderlyingSecurityDesc", "EncodedUnderlyingSecurityDesc":"365",
"366":"AllocPrice", "AllocPrice":"366",
"367":"QuoteSetValidUntilTime", "QuoteSetValidUntilTime":"367",
"368":"QuoteEntryRejectReason", "QuoteEntryRejectReason":"368",
"369":"LastMsgSeqNumProcessed", "LastMsgSeqNumProcessed":"369",
"370":"OnBehalfOfSendingTime", "OnBehalfOfSendingTime":"370",
"371":"RefTagID", "RefTagID":"371",
"372":"RefMsgType", "RefMsgType":"372",
"373":"SessionRejectReason", "SessionRejectReason":"373",
"374":"BidRequestTransType", "BidRequestTransType":"374",
"375":"ContraBroker", "ContraBroker":"375",
"376":"ComplianceID", "ComplianceID":"376",
"377":"SolicitedFlag", "SolicitedFlag":"377",
"378":"ExecRestatementReason", "ExecRestatementReason":"378",
"379":"BusinessRejectRefID", "BusinessRejectRefID":"379",
"380":"BusinessRejectReason", "BusinessRejectReason":"380",
"381":"GrossTradeAmt", "GrossTradeAmt":"381",
"382":"NoContraBrokers", "NoContraBrokers":"382",
"383":"MaxMessageSize", "MaxMessageSize":"383",
"384":"NoMsgTypes", "NoMsgTypes":"384",
"385":"MsgDirection", "MsgDirection":"385",
"386":"NoTradingSessions", "NoTradingSessions":"386",
"387":"TotalVolumeTraded", "TotalVolumeTraded":"387",
"388":"DiscretionInst", "DiscretionInst":"388",
"389":"DiscretionOffsetValue", "DiscretionOffsetValue":"389",
"390":"BidID", "BidID":"390",
"391":"ClientBidID", "ClientBidID":"391",
"392":"ListName", "ListName":"392",
"393":"TotNoRelatedSym", "TotNoRelatedSym":"393",
"394":"BidType", "BidType":"394",
"395":"NumTickets", "NumTickets":"395",
"396":"SideValue1", "SideValue1":"396",
"397":"SideValue2", "SideValue2":"397",
"398":"NoBidDescriptors", "NoBidDescriptors":"398",
"399":"BidDescriptorType", "BidDescriptorType":"399",
"400":"BidDescriptor", "BidDescriptor":"400",
"401":"SideValueInd", "SideValueInd":"401",
"402":"LiquidityPctLow", "LiquidityPctLow":"402",
"403":"LiquidityPctHigh", "LiquidityPctHigh":"403",
"404":"LiquidityValue", "LiquidityValue":"404",
"405":"EFPTrackingError", "EFPTrackingError":"405",
"406":"FairValue", "FairValue":"406",
"407":"OutsideIndexPct", "OutsideIndexPct":"407",
"408":"ValueOfFutures", "ValueOfFutures":"408",
"409":"LiquidityIndType", "LiquidityIndType":"409",
"410":"WtAverageLiquidity", "WtAverageLiquidity":"410",
"411":"ExchangeForPhysical", "ExchangeForPhysical":"411",
"412":"OutMainCntryUIndex", "OutMainCntryUIndex":"412",
"413":"CrossPercent", "CrossPercent":"413",
"414":"ProgRptReqs", "ProgRptReqs":"414",
"415":"ProgPeriodInterval", "ProgPeriodInterval":"415",
"416":"IncTaxInd", "IncTaxInd":"416",
"417":"NumBidders", "NumBidders":"417",
"418":"BidTradeType", "BidTradeType":"418",
"419":"BasisPxType", "BasisPxType":"419",
"420":"NoBidComponents", "NoBidComponents":"420",
"421":"Country", "Country":"421",
"422":"TotNoStrikes", "TotNoStrikes":"422",
"423":"PriceType", "PriceType":"423",
"424":"DayOrderQty", "DayOrderQty":"424",
"425":"DayCumQty", "DayCumQty":"425",
"426":"DayAvgPx", "DayAvgPx":"426",
"427":"GTBookingInst", "GTBookingInst":"427",
"428":"NoStrikes", "NoStrikes":"428",
"429":"ListStatusType", "ListStatusType":"429",
"430":"NetGrossInd", "NetGrossInd":"430",
"431":"ListOrderStatus", "ListOrderStatus":"431",
"432":"ExpireDate", "ExpireDate":"432",
"433":"ListExecInstType", "ListExecInstType":"433",
"434":"CxlRejResponseTo", "CxlRejResponseTo":"434",
"435":"UnderlyingCouponRate", "UnderlyingCouponRate":"435",
"436":"UnderlyingContractMultiplier", "UnderlyingContractMultiplier":"436",
"437":"ContraTradeQty", "ContraTradeQty":"437",
"438":"ContraTradeTime", "ContraTradeTime":"438",
"439":"ClearingFirm", "ClearingFirm":"439",
"440":"ClearingAccount", "ClearingAccount":"440",
"441":"LiquidityNumSecurities", "LiquidityNumSecurities":"441",
"442":"MultiLegReportingType", "MultiLegReportingType":"442",
"443":"StrikeTime", "StrikeTime":"443",
"444":"ListStatusText", "ListStatusText":"444",
"445":"EncodedListStatusTextLen", "EncodedListStatusTextLen":"445",
"446":"EncodedListStatusText", "EncodedListStatusText":"446",
"447":"PartyIDSource", "PartyIDSource":"447",
"448":"PartyID", "PartyID":"448",
"449":"TotalVolumeTradedDate", "TotalVolumeTradedDate":"449",
"450":"TotalVolumeTradedTime", "TotalVolumeTradedTime":"450",
"451":"NetChgPrevDay", "NetChgPrevDay":"451",
"452":"PartyRole", "PartyRole":"452",
"453":"NoPartyIDs", "NoPartyIDs":"453",
"454":"NoSecurityAltID", "NoSecurityAltID":"454",
"455":"SecurityAltID", "SecurityAltID":"455",
"456":"SecurityAltIDSource", "SecurityAltIDSource":"456",
"457":"NoUnderlyingSecurityAltID", "NoUnderlyingSecurityAltID":"457",
"458":"UnderlyingSecurityAltID", "UnderlyingSecurityAltID":"458",
"459":"UnderlyingSecurityAltIDSource", "UnderlyingSecurityAltIDSource":"459",
"460":"Product", "Product":"460",
"461":"CFICode", "CFICode":"461",
"462":"UnderlyingProduct", "UnderlyingProduct":"462",
"463":"UnderlyingCFICode", "UnderlyingCFICode":"463",
"464":"TestMessageIndicator", "TestMessageIndicator":"464",
"465":"QuantityType", "QuantityType":"465",
"466":"BookingRefID", "BookingRefID":"466",
"467":"IndividualAllocID", "IndividualAllocID":"467",
"468":"RoundingDirection", "RoundingDirection":"468",
"469":"RoundingModulus", "RoundingModulus":"469",
"470":"CountryOfIssue", "CountryOfIssue":"470",
"471":"StateOrProvinceOfIssue", "StateOrProvinceOfIssue":"471",
"472":"LocaleOfIssue", "LocaleOfIssue":"472",
"473":"NoRegistDtls", "NoRegistDtls":"473",
"474":"MailingDtls", "MailingDtls":"474",
"475":"InvestorCountryOfResidence", "InvestorCountryOfResidence":"475",
"476":"PaymentRef", "PaymentRef":"476",
"477":"DistribPaymentMethod", "DistribPaymentMethod":"477",
"478":"CashDistribCurr", "CashDistribCurr":"478",
"479":"CommCurrency", "CommCurrency":"479",
"480":"CancellationRights", "CancellationRights":"480",
"481":"MoneyLaunderingStatus", "MoneyLaunderingStatus":"481",
"482":"MailingInst", "MailingInst":"482",
"483":"TransBkdTime", "TransBkdTime":"483",
"484":"ExecPriceType", "ExecPriceType":"484",
"485":"ExecPriceAdjustment", "ExecPriceAdjustment":"485",
"486":"DateOfBirth", "DateOfBirth":"486",
"487":"TradeReportTransType", "TradeReportTransType":"487",
"488":"CardHolderName", "CardHolderName":"488",
"489":"CardNumber", "CardNumber":"489",
"490":"CardExpDate", "CardExpDate":"490",
"491":"CardIssNum", "CardIssNum":"491",
"492":"PaymentMethod", "PaymentMethod":"492",
"493":"RegistAcctType", "RegistAcctType":"493",
"494":"Designation", "Designation":"494",
"495":"TaxAdvantageType", "TaxAdvantageType":"495",
"496":"RegistRejReasonText", "RegistRejReasonText":"496",
"497":"FundRenewWaiv", "FundRenewWaiv":"497",
"498":"CashDistribAgentName", "CashDistribAgentName":"498",
"499":"CashDistribAgentCode", "CashDistribAgentCode":"499",
"500":"CashDistribAgentAcctNumber", "CashDistribAgentAcctNumber":"500",
"501":"CashDistribPayRef", "CashDistribPayRef":"501",
"502":"CashDistribAgentAcctName", "CashDistribAgentAcctName":"502",
"503":"CardStartDate", "CardStartDate":"503",
"504":"PaymentDate", "PaymentDate":"504",
"505":"PaymentRemitterID", "PaymentRemitterID":"505",
"506":"RegistStatus", "RegistStatus":"506",
"507":"RegistRejReasonCode", "RegistRejReasonCode":"507",
"508":"RegistRefID", "RegistRefID":"508",
"509":"RegistDtls", "RegistDtls":"509",
"510":"NoDistribInsts", "NoDistribInsts":"510",
"511":"RegistEmail", "RegistEmail":"511",
"512":"DistribPercentage", "DistribPercentage":"512",
"513":"RegistID", "RegistID":"513",
"514":"RegistTransType", "RegistTransType":"514",
"515":"ExecValuationPoint", "ExecValuationPoint":"515",
"516":"OrderPercent", "OrderPercent":"516",
"517":"OwnershipType", "OwnershipType":"517",
"518":"NoContAmts", "NoContAmts":"518",
"519":"ContAmtType", "ContAmtType":"519",
"520":"ContAmtValue", "ContAmtValue":"520",
"521":"ContAmtCurr", "ContAmtCurr":"521",
"522":"OwnerType", "OwnerType":"522",
"523":"PartySubID", "PartySubID":"523",
"524":"NestedPartyID", "NestedPartyID":"524",
"525":"NestedPartyIDSource", "NestedPartyIDSource":"525",
"526":"SecondaryClOrdID", "SecondaryClOrdID":"526",
"527":"SecondaryExecID", "SecondaryExecID":"527",
"528":"OrderCapacity", "OrderCapacity":"528",
"529":"OrderRestrictions", "OrderRestrictions":"529",
"530":"MassCancelRequestType", "MassCancelRequestType":"530",
"531":"MassCancelResponse", "MassCancelResponse":"531",
"532":"MassCancelRejectReason", "MassCancelRejectReason":"532",
"533":"TotalAffectedOrders", "TotalAffectedOrders":"533",
"534":"NoAffectedOrders", "NoAffectedOrders":"534",
"535":"AffectedOrderID", "AffectedOrderID":"535",
"536":"AffectedSecondaryOrderID", "AffectedSecondaryOrderID":"536",
"537":"QuoteType", "QuoteType":"537",
"538":"NestedPartyRole", "NestedPartyRole":"538",
"539":"NoNestedPartyIDs", "NoNestedPartyIDs":"539",
"540":"TotalAccruedInterestAmt", "TotalAccruedInterestAmt":"540",
"541":"MaturityDate", "MaturityDate":"541",
"542":"UnderlyingMaturityDate", "UnderlyingMaturityDate":"542",
"543":"InstrRegistry", "InstrRegistry":"543",
"544":"CashMargin", "CashMargin":"544",
"545":"NestedPartySubID", "NestedPartySubID":"545",
"546":"Scope", "Scope":"546",
"547":"MDImplicitDelete", "MDImplicitDelete":"547",
"548":"CrossID", "CrossID":"548",
"549":"CrossType", "CrossType":"549",
"550":"CrossPrioritization", "CrossPrioritization":"550",
"551":"OrigCrossID", "OrigCrossID":"551",
"552":"NoSides", "NoSides":"552",
"553":"Username", "Username":"553",
"554":"Password", "Password":"554",
"555":"NoLegs", "NoLegs":"555",
"556":"LegCurrency", "LegCurrency":"556",
"557":"TotNoSecurityTypes", "TotNoSecurityTypes":"557",
"558":"NoSecurityTypes", "NoSecurityTypes":"558",
"559":"SecurityListRequestType", "SecurityListRequestType":"559",
"560":"SecurityRequestResult", "SecurityRequestResult":"560",
"561":"RoundLot", "RoundLot":"561",
"562":"MinTradeVol", "MinTradeVol":"562",
"563":"MultiLegRptTypeReq", "MultiLegRptTypeReq":"563",
"564":"LegPositionEffect", "LegPositionEffect":"564",
"565":"LegCoveredOrUncovered", "LegCoveredOrUncovered":"565",
"566":"LegPrice", "LegPrice":"566",
"567":"TradSesStatusRejReason", "TradSesStatusRejReason":"567",
"568":"TradeRequestID", "TradeRequestID":"568",
"569":"TradeRequestType", "TradeRequestType":"569",
"570":"PreviouslyReported", "PreviouslyReported":"570",
"571":"TradeReportID", "TradeReportID":"571",
"572":"TradeReportRefID", "TradeReportRefID":"572",
"573":"MatchStatus", "MatchStatus":"573",
"574":"MatchType", "MatchType":"574",
"575":"OddLot", "OddLot":"575",
"576":"NoClearingInstructions", "NoClearingInstructions":"576",
"577":"ClearingInstruction", "ClearingInstruction":"577",
"578":"TradeInputSource", "TradeInputSource":"578",
"579":"TradeInputDevice", "TradeInputDevice":"579",
"580":"NoDates", "NoDates":"580",
"581":"AccountType", "AccountType":"581",
"582":"CustOrderCapacity", "CustOrderCapacity":"582",
"583":"ClOrdLinkID", "ClOrdLinkID":"583",
"584":"MassStatusReqID", "MassStatusReqID":"584",
"585":"MassStatusReqType", "MassStatusReqType":"585",
"586":"OrigOrdModTime", "OrigOrdModTime":"586",
"587":"LegSettlType", "LegSettlType":"587",
"588":"LegSettlDate", "LegSettlDate":"588",
"589":"DayBookingInst", "DayBookingInst":"589",
"590":"BookingUnit", "BookingUnit":"590",
"591":"PreallocMethod", "PreallocMethod":"591",
"592":"UnderlyingCountryOfIssue", "UnderlyingCountryOfIssue":"592",
"593":"UnderlyingStateOrProvinceOfIssue", "UnderlyingStateOrProvinceOfIssue":"593",
"594":"UnderlyingLocaleOfIssue", "UnderlyingLocaleOfIssue":"594",
"595":"UnderlyingInstrRegistry", "UnderlyingInstrRegistry":"595",
"596":"LegCountryOfIssue", "LegCountryOfIssue":"596",
"597":"LegStateOrProvinceOfIssue", "LegStateOrProvinceOfIssue":"597",
"598":"LegLocaleOfIssue", "LegLocaleOfIssue":"598",
"599":"LegInstrRegistry", "LegInstrRegistry":"599",
"600":"LegSymbol", "LegSymbol":"600",
"601":"LegSymbolSfx", "LegSymbolSfx":"601",
"602":"LegSecurityID", "LegSecurityID":"602",
"603":"LegSecurityIDSource", "LegSecurityIDSource":"603",
"604":"NoLegSecurityAltID", "NoLegSecurityAltID":"604",
"605":"LegSecurityAltID", "LegSecurityAltID":"605",
"606":"LegSecurityAltIDSource", "LegSecurityAltIDSource":"606",
"607":"LegProduct", "LegProduct":"607",
"608":"LegCFICode", "LegCFICode":"608",
"609":"LegSecurityType", "LegSecurityType":"609",
"610":"LegMaturityMonthYear", "LegMaturityMonthYear":"610",
"611":"LegMaturityDate", "LegMaturityDate":"611",
"612":"LegStrikePrice", "LegStrikePrice":"612",
"613":"LegOptAttribute", "LegOptAttribute":"613",
"614":"LegContractMultiplier", "LegContractMultiplier":"614",
"615":"LegCouponRate", "LegCouponRate":"615",
"616":"LegSecurityExchange", "LegSecurityExchange":"616",
"617":"LegIssuer", "LegIssuer":"617",
"618":"EncodedLegIssuerLen", "EncodedLegIssuerLen":"618",
"619":"EncodedLegIssuer", "EncodedLegIssuer":"619",
"620":"LegSecurityDesc", "LegSecurityDesc":"620",
"621":"EncodedLegSecurityDescLen", "EncodedLegSecurityDescLen":"621",
"622":"EncodedLegSecurityDesc", "EncodedLegSecurityDesc":"622",
"623":"LegRatioQty", "LegRatioQty":"623",
"624":"LegSide", "LegSide":"624",
"625":"TradingSessionSubID", "TradingSessionSubID":"625",
"626":"AllocType", "AllocType":"626",
"627":"NoHops", "NoHops":"627",
"628":"HopCompID", "HopCompID":"628",
"629":"HopSendingTime", "HopSendingTime":"629",
"630":"HopRefID", "HopRefID":"630",
"631":"MidPx", "MidPx":"631",
"632":"BidYield", "BidYield":"632",
"633":"MidYield", "MidYield":"633",
"634":"OfferYield", "OfferYield":"634",
"635":"ClearingFeeIndicator", "ClearingFeeIndicator":"635",
"636":"WorkingIndicator", "WorkingIndicator":"636",
"637":"LegLastPx", "LegLastPx":"637",
"638":"PriorityIndicator", "PriorityIndicator":"638",
"639":"PriceImprovement", "PriceImprovement":"639",
"640":"Price2", "Price2":"640",
"641":"LastForwardPoints2", "LastForwardPoints2":"641",
"642":"BidForwardPoints2", "BidForwardPoints2":"642",
"643":"OfferForwardPoints2", "OfferForwardPoints2":"643",
"644":"RFQReqID", "RFQReqID":"644",
"645":"MktBidPx", "MktBidPx":"645",
"646":"MktOfferPx", "MktOfferPx":"646",
"647":"MinBidSize", "MinBidSize":"647",
"648":"MinOfferSize", "MinOfferSize":"648",
"649":"QuoteStatusReqID", "QuoteStatusReqID":"649",
"650":"LegalConfirm", "LegalConfirm":"650",
"651":"UnderlyingLastPx", "UnderlyingLastPx":"651",
"652":"UnderlyingLastQty", "UnderlyingLastQty":"652",
"653":"SecDefStatus", "SecDefStatus":"653",
"654":"LegRefID", "LegRefID":"654",
"655":"ContraLegRefID", "ContraLegRefID":"655",
"656":"SettlCurrBidFxRate", "SettlCurrBidFxRate":"656",
"657":"SettlCurrOfferFxRate", "SettlCurrOfferFxRate":"657",
"658":"QuoteRequestRejectReason", "QuoteRequestRejectReason":"658",
"659":"SideComplianceID", "SideComplianceID":"659",
"660":"AcctIDSource", "AcctIDSource":"660",
"661":"AllocAcctIDSource", "AllocAcctIDSource":"661",
"662":"BenchmarkPrice", "BenchmarkPrice":"662",
"663":"BenchmarkPriceType", "BenchmarkPriceType":"663",
"664":"ConfirmID", "ConfirmID":"664",
"665":"ConfirmStatus", "ConfirmStatus":"665",
"666":"ConfirmTransType", "ConfirmTransType":"666",
"667":"ContractSettlMonth", "ContractSettlMonth":"667",
"668":"DeliveryForm", "DeliveryForm":"668",
"669":"LastParPx", "LastParPx":"669",
"670":"NoLegAllocs", "NoLegAllocs":"670",
"671":"LegAllocAccount", "LegAllocAccount":"671",
"672":"LegIndividualAllocID", "LegIndividualAllocID":"672",
"673":"LegAllocQty", "LegAllocQty":"673",
"674":"LegAllocAcctIDSource", "LegAllocAcctIDSource":"674",
"675":"LegSettlCurrency", "LegSettlCurrency":"675",
"676":"LegBenchmarkCurveCurrency", "LegBenchmarkCurveCurrency":"676",
"677":"LegBenchmarkCurveName", "LegBenchmarkCurveName":"677",
"678":"LegBenchmarkCurvePoint", "LegBenchmarkCurvePoint":"678",
"679":"LegBenchmarkPrice", "LegBenchmarkPrice":"679",
"680":"LegBenchmarkPriceType", "LegBenchmarkPriceType":"680",
"681":"LegBidPx", "LegBidPx":"681",
"682":"LegIOIQty", "LegIOIQty":"682",
"683":"NoLegStipulations", "NoLegStipulations":"683",
"684":"LegOfferPx", "LegOfferPx":"684",
"685":"LegOrderQty", "LegOrderQty":"685",
"686":"LegPriceType", "LegPriceType":"686",
"687":"LegQty", "LegQty":"687",
"688":"LegStipulationType", "LegStipulationType":"688",
"689":"LegStipulationValue", "LegStipulationValue":"689",
"690":"LegSwapType", "LegSwapType":"690",
"691":"Pool", "Pool":"691",
"692":"QuotePriceType", "QuotePriceType":"692",
"693":"QuoteRespID", "QuoteRespID":"693",
"694":"QuoteRespType", "QuoteRespType":"694",
"695":"QuoteQualifier", "QuoteQualifier":"695",
"696":"YieldRedemptionDate", "YieldRedemptionDate":"696",
"697":"YieldRedemptionPrice", "YieldRedemptionPrice":"697",
"698":"YieldRedemptionPriceType", "YieldRedemptionPriceType":"698",
"699":"BenchmarkSecurityID", "BenchmarkSecurityID":"699",
"700":"ReversalIndicator", "ReversalIndicator":"700",
"701":"YieldCalcDate", "YieldCalcDate":"701",
"702":"NoPositions", "NoPositions":"702",
"703":"PosType", "PosType":"703",
"704":"LongQty", "LongQty":"704",
"705":"ShortQty", "ShortQty":"705",
"706":"PosQtyStatus", "PosQtyStatus":"706",
"707":"PosAmtType", "PosAmtType":"707",
"708":"PosAmt", "PosAmt":"708",
"709":"PosTransType", "PosTransType":"709",
"710":"PosReqID", "PosReqID":"710",
"711":"NoUnderlyings", "NoUnderlyings":"711",
"712":"PosMaintAction", "PosMaintAction":"712",
"713":"OrigPosReqRefID", "OrigPosReqRefID":"713",
"714":"PosMaintRptRefID", "PosMaintRptRefID":"714",
"715":"ClearingBusinessDate", "ClearingBusinessDate":"715",
"716":"SettlSessID", "SettlSessID":"716",
"717":"SettlSessSubID", "SettlSessSubID":"717",
"718":"AdjustmentType", "AdjustmentType":"718",
"719":"ContraryInstructionIndicator", "ContraryInstructionIndicator":"719",
"720":"PriorSpreadIndicator", "PriorSpreadIndicator":"720",
"721":"PosMaintRptID", "PosMaintRptID":"721",
"722":"PosMaintStatus", "PosMaintStatus":"722",
"723":"PosMaintResult", "PosMaintResult":"723",
"724":"PosReqType", "PosReqType":"724",
"725":"ResponseTransportType", "ResponseTransportType":"725",
"726":"ResponseDestination", "ResponseDestination":"726",
"727":"TotalNumPosReports", "TotalNumPosReports":"727",
"728":"PosReqResult", "PosReqResult":"728",
"729":"PosReqStatus", "PosReqStatus":"729",
"730":"SettlPrice", "SettlPrice":"730",
"731":"SettlPriceType", "SettlPriceType":"731",
"732":"UnderlyingSettlPrice", "UnderlyingSettlPrice":"732",
"733":"UnderlyingSettlPriceType", "UnderlyingSettlPriceType":"733",
"734":"PriorSettlPrice", "PriorSettlPrice":"734",
"735":"NoQuoteQualifiers", "NoQuoteQualifiers":"735",
"736":"AllocSettlCurrency", "AllocSettlCurrency":"736",
"737":"AllocSettlCurrAmt", "AllocSettlCurrAmt":"737",
"738":"InterestAtMaturity", "InterestAtMaturity":"738",
"739":"LegDatedDate", "LegDatedDate":"739",
"740":"LegPool", "LegPool":"740",
"741":"AllocInterestAtMaturity", "AllocInterestAtMaturity":"741",
"742":"AllocAccruedInterestAmt", "AllocAccruedInterestAmt":"742",
"743":"DeliveryDate", "DeliveryDate":"743",
"744":"AssignmentMethod", "AssignmentMethod":"744",
"745":"AssignmentUnit", "AssignmentUnit":"745",
"746":"OpenInterest", "OpenInterest":"746",
"747":"ExerciseMethod", "ExerciseMethod":"747",
"748":"TotNumTradeReports", "TotNumTradeReports":"748",
"749":"TradeRequestResult", "TradeRequestResult":"749",
"750":"TradeRequestStatus", "TradeRequestStatus":"750",
"751":"TradeReportRejectReason", "TradeReportRejectReason":"751",
"752":"SideMultiLegReportingType", "SideMultiLegReportingType":"752",
"753":"NoPosAmt", "NoPosAmt":"753",
"754":"AutoAcceptIndicator", "AutoAcceptIndicator":"754",
"755":"AllocReportID", "AllocReportID":"755",
"756":"NoNested2PartyIDs", "NoNested2PartyIDs":"756",
"757":"Nested2PartyID", "Nested2PartyID":"757",
"758":"Nested2PartyIDSource", "Nested2PartyIDSource":"758",
"759":"Nested2PartyRole", "Nested2PartyRole":"759",
"760":"Nested2PartySubID", "Nested2PartySubID":"760",
"761":"BenchmarkSecurityIDSource", "BenchmarkSecurityIDSource":"761",
"762":"SecuritySubType", "SecuritySubType":"762",
"763":"UnderlyingSecuritySubType", "UnderlyingSecuritySubType":"763",
"764":"LegSecuritySubType", "LegSecuritySubType":"764",
"765":"AllowableOneSidednessPct", "AllowableOneSidednessPct":"765",
"766":"AllowableOneSidednessValue", "AllowableOneSidednessValue":"766",
"767":"AllowableOneSidednessCurr", "AllowableOneSidednessCurr":"767",
"768":"NoTrdRegTimestamps", "NoTrdRegTimestamps":"768",
"769":"TrdRegTimestamp", "TrdRegTimestamp":"769",
"770":"TrdRegTimestampType", "TrdRegTimestampType":"770",
"771":"TrdRegTimestampOrigin", "TrdRegTimestampOrigin":"771",
"772":"ConfirmRefID", "ConfirmRefID":"772",
"773":"ConfirmType", "ConfirmType":"773",
"774":"ConfirmRejReason", "ConfirmRejReason":"774",
"775":"BookingType", "BookingType":"775",
"776":"IndividualAllocRejCode", "IndividualAllocRejCode":"776",
"777":"SettlInstMsgID", "SettlInstMsgID":"777",
"778":"NoSettlInst", "NoSettlInst":"778",
"779":"LastUpdateTime", "LastUpdateTime":"779",
"780":"AllocSettlInstType", "AllocSettlInstType":"780",
"781":"NoSettlPartyIDs", "NoSettlPartyIDs":"781",
"782":"SettlPartyID", "SettlPartyID":"782",
"783":"SettlPartyIDSource", "SettlPartyIDSource":"783",
"784":"SettlPartyRole", "SettlPartyRole":"784",
"785":"SettlPartySubID", "SettlPartySubID":"785",
"786":"SettlPartySubIDType", "SettlPartySubIDType":"786",
"787":"DlvyInstType", "DlvyInstType":"787",
"788":"TerminationType", "TerminationType":"788",
"789":"NextExpectedMsgSeqNum", "NextExpectedMsgSeqNum":"789",
"790":"OrdStatusReqID", "OrdStatusReqID":"790",
"791":"SettlInstReqID", "SettlInstReqID":"791",
"792":"SettlInstReqRejCode", "SettlInstReqRejCode":"792",
"793":"SecondaryAllocID", "SecondaryAllocID":"793",
"794":"AllocReportType", "AllocReportType":"794",
"795":"AllocReportRefID", "AllocReportRefID":"795",
"796":"AllocCancReplaceReason", "AllocCancReplaceReason":"796",
"797":"CopyMsgIndicator", "CopyMsgIndicator":"797",
"798":"AllocAccountType", "AllocAccountType":"798",
"799":"OrderAvgPx", "OrderAvgPx":"799",
"800":"OrderBookingQty", "OrderBookingQty":"800",
"801":"NoSettlPartySubIDs", "NoSettlPartySubIDs":"801",
"802":"NoPartySubIDs", "NoPartySubIDs":"802",
"803":"PartySubIDType", "PartySubIDType":"803",
"804":"NoNestedPartySubIDs", "NoNestedPartySubIDs":"804",
"805":"NestedPartySubIDType", "NestedPartySubIDType":"805",
"806":"NoNested2PartySubIDs", "NoNested2PartySubIDs":"806",
"807":"Nested2PartySubIDType", "Nested2PartySubIDType":"807",
"808":"AllocIntermedReqType", "AllocIntermedReqType":"808",
"809":"(NotDefined)", "(NotDefined)":"809",
"810":"UnderlyingPx", "UnderlyingPx":"810",
"811":"PriceDelta", "PriceDelta":"811",
"812":"ApplQueueMax", "ApplQueueMax":"812",
"813":"ApplQueueDepth", "ApplQueueDepth":"813",
"814":"ApplQueueResolution", "ApplQueueResolution":"814",
"815":"ApplQueueAction", "ApplQueueAction":"815",
"816":"NoAltMDSource", "NoAltMDSource":"816",
"817":"AltMDSourceID", "AltMDSourceID":"817",
"818":"SecondaryTradeReportID", "SecondaryTradeReportID":"818",
"819":"AvgPxIndicator", "AvgPxIndicator":"819",
"820":"TradeLinkID", "TradeLinkID":"820",
"821":"OrderInputDevice", "OrderInputDevice":"821",
"822":"UnderlyingTradingSessionID", "UnderlyingTradingSessionID":"822",
"823":"UnderlyingTradingSessionSubID", "UnderlyingTradingSessionSubID":"823",
"824":"TradeLegRefID", "TradeLegRefID":"824",
"825":"ExchangeRule", "ExchangeRule":"825",
"826":"TradeAllocIndicator", "TradeAllocIndicator":"826",
"827":"ExpirationCycle", "ExpirationCycle":"827",
"828":"TrdType", "TrdType":"828",
"829":"TrdSubType", "TrdSubType":"829",
"830":"TransferReason", "TransferReason":"830",
"831":"AsgnReqID", "AsgnReqID":"831",
"832":"TotNumAssignmentReports", "TotNumAssignmentReports":"832",
"833":"AsgnRptID", "AsgnRptID":"833",
"834":"ThresholdAmount", "ThresholdAmount":"834",
"835":"PegMoveType", "PegMoveType":"835",
"836":"PegOffsetType", "PegOffsetType":"836",
"837":"PegLimitType", "PegLimitType":"837",
"838":"PegRoundDirection", "PegRoundDirection":"838",
"839":"PeggedPrice", "PeggedPrice":"839",
"840":"PegScope", "PegScope":"840",
"841":"DiscretionMoveType", "DiscretionMoveType":"841",
"842":"DiscretionOffsetType", "DiscretionOffsetType":"842",
"843":"DiscretionLimitType", "DiscretionLimitType":"843",
"844":"DiscretionRoundDirection", "DiscretionRoundDirection":"844",
"845":"DiscretionPrice", "DiscretionPrice":"845",
"846":"DiscretionScope", "DiscretionScope":"846",
"847":"TargetStrategy", "TargetStrategy":"847",
"848":"TargetStrategyParameters", "TargetStrategyParameters":"848",
"849":"ParticipationRate", "ParticipationRate":"849",
"850":"TargetStrategyPerformance", "TargetStrategyPerformance":"850",
"851":"LastLiquidityInd", "LastLiquidityInd":"851",
"852":"PublishTrdIndicator", "PublishTrdIndicator":"852",
"853":"ShortSaleReason", "ShortSaleReason":"853",
"854":"QtyType", "QtyType":"854",
"855":"SecondaryTrdType", "SecondaryTrdType":"855",
"856":"TradeReportType", "TradeReportType":"856",
"857":"AllocNoOrdersType", "AllocNoOrdersType":"857",
"858":"SharedCommission", "SharedCommission":"858",
"859":"ConfirmReqID", "ConfirmReqID":"859",
"860":"AvgParPx", "AvgParPx":"860",
"861":"ReportedPx", "ReportedPx":"861",
"862":"NoCapacities", "NoCapacities":"862",
"863":"OrderCapacityQty", "OrderCapacityQty":"863",
"864":"NoEvents", "NoEvents":"864",
"865":"EventType", "EventType":"865",
"866":"EventDate", "EventDate":"866",
"867":"EventPx", "EventPx":"867",
"868":"EventText", "EventText":"868",
"869":"PctAtRisk", "PctAtRisk":"869",
"870":"NoInstrAttrib", "NoInstrAttrib":"870",
"871":"InstrAttribType", "InstrAttribType":"871",
"872":"InstrAttribValue", "InstrAttribValue":"872",
"873":"DatedDate", "DatedDate":"873",
"874":"InterestAccrualDate", "InterestAccrualDate":"874",
"875":"CPProgram", "CPProgram":"875",
"876":"CPRegType", "CPRegType":"876",
"877":"UnderlyingCPProgram", "UnderlyingCPProgram":"877",
"878":"UnderlyingCPRegType", "UnderlyingCPRegType":"878",
"879":"UnderlyingQty", "UnderlyingQty":"879",
"880":"TrdMatchID", "TrdMatchID":"880",
"881":"SecondaryTradeReportRefID", "SecondaryTradeReportRefID":"881",
"882":"UnderlyingDirtyPrice", "UnderlyingDirtyPrice":"882",
"883":"UnderlyingEndPrice", "UnderlyingEndPrice":"883",
"884":"UnderlyingStartValue", "UnderlyingStartValue":"884",
"885":"UnderlyingCurrentValue", "UnderlyingCurrentValue":"885",
"886":"UnderlyingEndValue", "UnderlyingEndValue":"886",
"887":"NoUnderlyingStips", "NoUnderlyingStips":"887",
"888":"UnderlyingStipType", "UnderlyingStipType":"888",
"889":"UnderlyingStipValue", "UnderlyingStipValue":"889",
"890":"MaturityNetMoney", "MaturityNetMoney":"890",
"891":"MiscFeeBasis", "MiscFeeBasis":"891",
"892":"TotNoAllocs", "TotNoAllocs":"892",
"893":"LastFragment", "LastFragment":"893",
"894":"CollReqID", "CollReqID":"894",
"895":"CollAsgnReason", "CollAsgnReason":"895",
"896":"CollInquiryQualifier", "CollInquiryQualifier":"896",
"897":"NoTrades", "NoTrades":"897",
"898":"MarginRatio", "MarginRatio":"898",
"899":"MarginExcess", "MarginExcess":"899",
"900":"TotalNetValue", "TotalNetValue":"900",
"901":"CashOutstanding", "CashOutstanding":"901",
"902":"CollAsgnID", "CollAsgnID":"902",
"903":"CollAsgnTransType", "CollAsgnTransType":"903",
"904":"CollRespID", "CollRespID":"904",
"905":"CollAsgnRespType", "CollAsgnRespType":"905",
"906":"CollAsgnRejectReason", "CollAsgnRejectReason":"906",
"907":"CollAsgnRefID", "CollAsgnRefID":"907",
"908":"CollRptID", "CollRptID":"908",
"909":"CollInquiryID", "CollInquiryID":"909",
"910":"CollStatus", "CollStatus":"910",
"911":"TotNumReports", "TotNumReports":"911",
"912":"LastRptRequested", "LastRptRequested":"912",
"913":"AgreementDesc", "AgreementDesc":"913",
"914":"AgreementID", "AgreementID":"914",
"915":"AgreementDate", "AgreementDate":"915",
"916":"StartDate", "StartDate":"916",
"917":"EndDate", "EndDate":"917",
"918":"AgreementCurrency", "AgreementCurrency":"918",
"919":"DeliveryType", "DeliveryType":"919",
"920":"EndAccruedInterestAmt", "EndAccruedInterestAmt":"920",
"921":"StartCash", "StartCash":"921",
"922":"EndCash", "EndCash":"922",
"923":"UserRequestID", "UserRequestID":"923",
"924":"UserRequestType", "UserRequestType":"924",
"925":"NewPassword", "NewPassword":"925",
"926":"UserStatus", "UserStatus":"926",
"927":"UserStatusText", "UserStatusText":"927",
"928":"StatusValue", "StatusValue":"928",
"929":"StatusText", "StatusText":"929",
"930":"RefCompID", "RefCompID":"930",
"931":"RefSubID", "RefSubID":"931",
"932":"NetworkResponseID", "NetworkResponseID":"932",
"933":"NetworkRequestID", "NetworkRequestID":"933",
"934":"LastNetworkResponseID", "LastNetworkResponseID":"934",
"935":"NetworkRequestType", "NetworkRequestType":"935",
"936":"NoCompIDs", "NoCompIDs":"936",
"937":"NetworkStatusResponseType", "NetworkStatusResponseType":"937",
"938":"NoCollInquiryQualifier", "NoCollInquiryQualifier":"938",
"939":"TrdRptStatus", "TrdRptStatus":"939",
"940":"AffirmStatus", "AffirmStatus":"940",
"941":"UnderlyingStrikeCurrency", "UnderlyingStrikeCurrency":"941",
"942":"LegStrikeCurrency", "LegStrikeCurrency":"942",
"943":"TimeBracket", "TimeBracket":"943",
"944":"CollAction", "CollAction":"944",
"945":"CollInquiryStatus", "CollInquiryStatus":"945",
"946":"CollInquiryResult", "CollInquiryResult":"946",
"947":"StrikeCurrency", "StrikeCurrency":"947",
"948":"NoNested3PartyIDs", "NoNested3PartyIDs":"948",
"949":"Nested3PartyID", "Nested3PartyID":"949",
"950":"Nested3PartyIDSource", "Nested3PartyIDSource":"950",
"951":"Nested3PartyRole", "Nested3PartyRole":"951",
"952":"NoNested3PartySubIDs", "NoNested3PartySubIDs":"952",
"953":"Nested3PartySubID", "Nested3PartySubID":"953",
"954":"Nested3PartySubIDType", "Nested3PartySubIDType":"954",
"955":"LegContractSettlMonth", "LegContractSettlMonth":"955",
"956":"LegInterestAccrualDate", "LegInterestAccrualDate":"956"
}