-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmasterformat-2016-map.json
More file actions
8776 lines (8776 loc) · 422 KB
/
masterformat-2016-map.json
File metadata and controls
8776 lines (8776 loc) · 422 KB
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
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"00 00 00": "Procurement and Contracting Requirements",
"00 01 01": "Project Title Page",
"00 01 03": "Project Directory",
"00 01 05": "Certifications Page",
"00 01 07": "Seals Page",
"00 01 10": "Table of Contents",
"00 01 15": "List of Drawing Sheets",
"00 01 20": "List of Schedules",
"00 10 00": "Solicitation",
"00 11 00": "Advertisements and Invitations",
"00 11 13": "Advertisement for Bids",
"00 11 15": "Advertisement for Prequalification of Bidders",
"00 11 16": "Invitation to Bid",
"00 11 19": "Request for Proposal",
"00 11 53": "Request for Qualifications",
"00 20 00": "Instructions for Procurement",
"00 21 00": "Instructions",
"00 21 13": "Instructions to Bidders",
"00 21 16": "Instructions to Proposers",
"00 22 00": "Supplementary Instructions",
"00 22 13": "Supplementary Instructions to Bidders",
"00 22 16": "Supplementary Instructions to Proposers",
"00 23 00": "Procurement Definitions",
"00 24 00": "Procurement Scopes",
"00 24 13": "Scopes of Bids",
"00 24 13.13": "Scopes of Bids (Multiple Contracts)",
"00 24 13.16": "Scopes of Bids (Multiple-Prime Contract)",
"00 24 16": "Scopes of Proposals",
"00 24 16.13": "Scopes of Proposals (Multiple Contracts)",
"00 24 16.16": "Scopes of Proposals (Multiple-Prime Contract)",
"00 25 00": "Procurement Meetings",
"00 25 13": "Pre-Bid Meetings",
"00 25 16": "Pre-Proposal Meetings",
"00 26 00": "Procurement Substitution Procedures",
"00 30 00": "Available Information",
"00 31 00": "Available Project Information",
"00 31 13": "Preliminary Schedules",
"00 31 13.13": "Preliminary Project Schedule",
"00 31 13.16": "Preliminary Construction Schedule",
"00 31 13.23": "Preliminary Project Phases",
"00 31 13.26": "Preliminary Project Sequencing",
"00 31 13.33": "Preliminary Project Milestones",
"00 31 16": "Project Budget Information",
"00 31 19": "Existing Condition Information",
"00 31 19.13": "Movement and Vibration Information",
"00 31 19.16": "Acoustic Information",
"00 31 19.19": "Traffic Information",
"00 31 19.23": "Existing Structural Information",
"00 31 21": "Survey Information",
"00 31 21.13": "Site Survey Information",
"00 31 21.16": "Measured Drawing Information",
"00 31 21.19": "Photographic Information",
"00 31 24": "Environmental Assessment Information",
"00 31 24.13": "Soil Contamination Report",
"00 31 24.23": "Environmental Impact Study Report",
"00 31 24.26": "Environmental Impact Report Evaluation",
"00 31 24.29": "Record of Environmental Impact Decision",
"00 31 24.33": "Environmental Impact Mitigation Report",
"00 31 25": "Existing Material Information",
"00 31 25.16": "Existing Concrete Information",
"00 31 25.19": "Existing Masonry Information",
"00 31 25.23": "Existing Metals Information",
"00 31 25.26": "Existing Wood, Plastics, and Composites Information",
"00 31 25.29": "Existing Thermal and Moisture Protection Information",
"00 31 26": "Existing Hazardous Material Information",
"00 31 26.23": "Existing Asbestos Information",
"00 31 26.26": "Existing Lead Information",
"00 31 26.29": "Existing Polychlorinate Biphenyl Information",
"00 31 26.33": "Existing Mold Information",
"00 31 26.36": "Existing Hazardous Waste Drum Information",
"00 31 31": "Geophysical Data",
"00 31 31.13": "Seismic Investigations Information",
"00 31 31.16": "Gravity Investigations Information",
"00 31 31.19": "Magnetic Investigations Information",
"00 31 31.23": "Electromagnetic Investigations Information",
"00 31 31.26": "Electrical Resistivity Investigations Information",
"00 31 31.29": "Magnetotelluric Investigations Information",
"00 31 32": "Geotechnical Data",
"00 31 32.13": "Subsurface Drilling and Sampling Information",
"00 31 32.16": "Material Testing Information",
"00 31 32.19": "Exploratory Excavation Information",
"00 31 32.23": "Geotechnical Monitoring Information",
"00 31 43": "Permit Application",
"00 31 46": "Permits",
"00 40 00": "Procurement Forms and Supplements",
"00 41 00": "Bid Forms",
"00 41 13": "Bid Form - Stipulated Sum (Single-Prime Contract)",
"00 41 16": "Bid Form - Stipulated Sum (Multiple-Prime Contract)",
"00 41 23": "Bid Form - Construction Management (Single-Prime Contract)",
"00 41 26": "Bid Form - Construction Management (Multiple-Prime Contract)",
"00 41 33": "Bid Form - Cost-Plus-Fee (Single-Prime Contract)",
"00 41 36": "Bid Form - Cost-Plus-Fee (Multiple-Prime Contract)",
"00 41 43": "Bid Form - Unit Price (Single-Prime Contract)",
"00 41 46": "Bid Form - Unit Price (Multiple-Prime Contract)",
"00 41 53": "Bid Form - Design/Build (Single-Prime Contract)",
"00 41 56": "Bid Form - Design/Build (Multiple-Prime Contract)",
"00 41 63": "Bid Form - Purchase Contract",
"00 42 00": "Proposal Forms",
"00 42 13": "Proposal Form - Stipulated Sum (Single-Prime Contract)",
"00 42 16": "Proposal Form - Stipulated Sum (Multiple-Prime Contract)",
"00 42 23": "Proposal Form - Construction Management (Single-Prime Contract)",
"00 42 26": "Proposal Form - Construction Management (Multiple-Prime Contract)",
"00 42 33": "Proposal Form - Cost-Plus-Fee (Single-Prime Contract)",
"00 42 36": "Proposal Form - Cost-Plus-Fee (Multiple-Prime Contract)",
"00 42 43": "Proposal Form - Unit Price (Single-Prime Contract)",
"00 42 46": "Proposal Form - Unit Price (Multiple-Prime Contract)",
"00 42 53": "Proposal Form - Design/Build (Single-Prime Contract)",
"00 42 56": "Proposal Form - Design/Build (Multiple-Prime Contract)",
"00 42 63": "Proposal Form - Purchase Contract",
"00 42 73": "Proposal Form - Performance Contract",
"00 43 00": "Procurement Form Supplements",
"00 43 13": "Bid Security Form",
"00 43 21": "Allowance Form",
"00 43 22": "Unit Prices Form",
"00 43 23": "Alternates Form",
"00 43 25": "Substitution Request Form (During Procurement)",
"00 43 26": "Estimated Quantities Form",
"00 43 27": "Separate Prices Break-Out Form",
"00 43 28": "Tax Rebate Form",
"00 43 33": "Proposed Products Form",
"00 43 36": "Proposed Subcontractors Form",
"00 43 39": "Minority Business Enterprise Statement of Intent Form",
"00 43 43": "Wage Rates Form",
"00 43 73": "Proposed Schedule of Values Form",
"00 43 83": "Proposed Construction Schedule Form",
"00 43 86": "Proposed Work Plan Schedule Form",
"00 43 93": "Bid Submittal Checklist",
"00 45 00": "Representations and Certifications",
"00 45 13": "Bidder's Qualifications",
"00 45 16": "Proposer's Qualifications",
"00 45 19": "Non-Collusion Affidavit",
"00 45 23": "Statement of Disposal Facility",
"00 45 26": "Workers Compensation Certificate Schedule",
"00 45 33": "Non-Segregated Facilities Affidavit",
"00 45 36": "Equal Employment Opportunity Affidavit",
"00 45 39": "Minority Business Enterprise Affidavit",
"00 45 43": "Corporate Resolutions",
"00 45 46": "Governmental Certifications",
"00 50 00": "Contracting Forms and Supplements",
"00 51 00": "Notice of Award",
"00 52 00": "Agreement Forms",
"00 52 13": "Agreement Form - Stipulated Sum (design/bid/build or design/negotiate/build)",
"00 52 14": "Subcontract Form - Stipulated Sum (design/bid/build or design/negotiate/build)",
"00 52 16": "Agreement Form - Cost-Plus (design/bid/build or design/negotiate/build)",
"00 52 17": "Subcontract Form - Cost-Plus (design/bid/build or design/negotiate/build)",
"00 52 23": "Agreement Form - Construction Manager as Agent or Advisor - Stipulated Sum",
"00 52 24": "Subcontract Form - Construction Manager as Agent or Adviser - Stipulated Sum",
"00 52 26": "Agreement Form - Construction Manager as Agent or Adviser - Cost-Plus",
"00 52 27": "Subcontract Form - Construction Manager as Agent or Adviser - Cost-Plus",
"00 52 33": "Agreement Form - Construction Manager at Risk - Stipulated Sum",
"00 52 34": "Subcontract Form - Construction Manager at Risk - Stipulated Sum",
"00 52 36": "Agreement Form - Construction Manager at Risk - Cost-Plus",
"00 52 37": "Subcontract Form - Construction Manager at Risk - Cost-Plus",
"00 52 51": "Public-Private Partnership Agreement",
"00 52 52": "Agreement for Preliminary Services - Owner-Design/Builder",
"00 52 53": "Agreement Form - Owner-Design/Builder - Stipulated Sum",
"00 52 54": "Subcontract Form - Design/Build - Stipulated Sum",
"00 52 56": "Agreement Form - Owner-Design/Builder - Cost-Plus",
"00 52 57": "Subcontract Form - Design/Build - Cost-Plus",
"00 52 63": "Agreement Form - Purchase - Stipulated Price",
"00 52 73": "Agreement Form - Performance Contract",
"00 52 93": "Multi-Party Agreement Form - Integrated Project Delivery",
"00 52 96": "Agreement between Single-Purpose Entity and Owner - Integrated Project Delivery",
"00 52 97": "Agreement between Single-Purpose Entity and Non-Owner - Integrated Project Delivery",
"00 52 98": "Agreement between Single-Purpose Entity and Consultant - Integrated Project Delivery",
"00 54 00": "Agreement Form Supplements",
"00 54 13": "Supplementary Scope Statement",
"00 54 21": "Allowances Schedule",
"00 54 22": "Unit Prices Schedule",
"00 54 33": "Digital/Electronic Data Protocol Exhibit",
"00 54 36": "Building Information Modeling Exhibit",
"00 55 00": "Notice to Proceed",
"00 60 00": "Project Forms",
"00 61 00": "Bond Forms",
"00 61 13": "Performance and Payment Bond Form",
"00 61 13.13": "Performance Bond Form",
"00 61 13.16": "Payment Bond Form",
"00 61 16": "Lien Bond Form",
"00 61 19": "Maintenance Bond Form",
"00 61 23": "Retainage Bond Form",
"00 61 26": "Special Bond Form",
"00 62 00": "Certificates and Other Forms",
"00 62 11": "Submittal Transmittal Form",
"00 62 16": "Certificate of Insurance Form",
"00 62 19": "Infection Control Form",
"00 62 23": "Construction Waste Diversion Form",
"00 62 33": "Products Form",
"00 62 34": "Recycled Content of Materials Form",
"00 62 39": "Minority Business Enterprise Certification Form",
"00 62 73": "Schedule of Values Form",
"00 62 76": "Application for Payment Form",
"00 62 76.13": "Sales Tax Form",
"00 62 76.16": "Consent of Surety to Reduction of Retainage Form",
"00 62 79": "Stored Material Form",
"00 62 83": "Construction Schedule Form",
"00 62 86": "Work Plan Schedule Form",
"00 62 89": "Construction Equipment Form",
"00 63 00": "Clarification and Modification Forms",
"00 63 13": "Request for Interpretation Form",
"00 63 19": "Clarification Form",
"00 63 25": "Substitution Request Form (During Construction)",
"00 63 33": "Supplemental Instruction Form",
"00 63 36": "Field Order Form",
"00 63 43": "Written Amendment Form",
"00 63 46": "Construction Change Directive Form",
"00 63 49": "Work Change Directive Form",
"00 63 53": "Request for Proposal Form",
"00 63 54": "Proposal Worksheet Summary Form",
"00 63 55": "Proposal Worksheet Detail Form",
"00 63 57": "Change Order Request Form",
"00 63 63": "Change Order Form",
"00 65 00": "Closeout Forms",
"00 65 13": "Certificate of Compliance Form",
"00 65 16": "Certificate of Substantial Completion Form",
"00 65 19": "Certificate of Completion Form",
"00 65 19.13": "Affidavit of Payment of Debts and Claims Form",
"00 65 19.16": "Affidavit of Release of Liens Form",
"00 65 19.19": "Consent of Surety to Final Payment Form",
"00 65 19.23": "Acceptance Certificate Form",
"00 65 19.26": "Final Settlement Certificate Form",
"00 65 36": "Warranty Form",
"00 65 73": "Statutory Declaration Form",
"00 70 00": "Conditions of the Contract",
"00 71 00": "Contracting Definitions",
"00 72 00": "General Conditions",
"00 72 13": "General Conditions - Stipulated Sum (Single-Prime Contract)",
"00 72 16": "General Conditions - Stipulated Sum (Multiple-Prime Contract)",
"00 72 23": "General Conditions - Construction Management (Single-Prime Contract)",
"00 72 26": "General Conditions - Construction Management (Multiple-Prime Contract)",
"00 72 33": "General Conditions - Cost Plus-Fee (Single-Prime Contract)",
"00 72 36": "General Conditions - Cost-Plus-Fee (Multiple-Prime Contract)",
"00 72 43": "General Conditions - Unit Price (Single-Prime Contract)",
"00 72 46": "General Conditions - Unit Price (Multiple-Prime Contract)",
"00 72 53": "General Conditions - Design/Build (Single-Prime Contract)",
"00 72 56": "General Conditions - Design/Build (Multiple-Prime Contract)",
"00 72 73": "General Conditions - Performance Contract",
"00 72 95": "General Conditions - Integrated Project Delivery",
"00 73 00": "Supplementary Conditions",
"00 73 16": "Insurance Requirements",
"00 73 19": "Health and Safety Requirements",
"00 73 23": "Purchase Contracts",
"00 73 26": "Assigned Contracts",
"00 73 33": "Non-Segregated Facilities Requirements",
"00 73 36": "Equal Employment Opportunity Requirements",
"00 73 39": "Minority Business Enterprise Requirements",
"00 73 43": "Wage Rate Requirements",
"00 73 46": "Wage Determination Schedule",
"00 73 49": "Labor Stabilization Agreement",
"00 73 53": "Anti-Pollution Measures",
"00 73 63": "Security Requirements",
"00 73 73": "Statutory Requirements",
"00 73 83": "Dispute Resolution",
"00 90 00": "Revisions, Clarifications, and Modifications",
"00 91 00": "Precontract Revisions",
"00 91 13": "Addenda",
"00 91 16": "Bid Revisions",
"00 91 19": "Proposal Revisions",
"00 93 00": "Record Clarifications and Proposals",
"00 93 13": "Record Requests for Interpretation",
"00 93 19": "Record Clarification Notices",
"00 93 53": "Record Proposal Requests",
"00 93 54": "Record Proposal Worksheet Summaries",
"00 93 57": "Record Change Order Requests",
"00 94 00": "Record Modifications",
"00 94 33": "Record Minor Changes in the Work",
"00 94 36": "Record Supplemental Instructions",
"00 94 39": "Record Field Orders",
"00 94 43": "Record Amendments",
"00 94 46": "Record Construction Change Directives",
"00 94 49": "Record Work Change Directives",
"00 94 63": "Record Change Orders",
"01 00 00": "General Requirements",
"01 10 00": "Summary",
"01 11 00": "Summary of Work",
"01 11 13": "Work Covered by Contract Documents",
"01 11 16": "Work by Owner",
"01 11 19": "Purchase Contracts",
"01 12 00": "Multiple Contract Summary",
"01 12 13": "Summary of Contracts",
"01 12 16": "Work Sequence",
"01 12 19": "Contract Interface",
"01 14 00": "Work Restrictions",
"01 14 13": "Access to Site",
"01 14 16": "Coordination with Occupants",
"01 14 19": "Use of Site",
"01 14 33": "Work in Rights-of-Way",
"01 18 00": "Project Utility Sources",
"01 18 13": "Utility Service Connections",
"01 20 00": "Price and Payment Procedures",
"01 21 00": "Allowances",
"01 21 13": "Cash Allowances",
"01 21 16": "Contingency Allowances",
"01 21 19": "Testing and Inspecting Allowances",
"01 21 23": "Installation Allowances",
"01 21 26": "Product Allowances",
"01 21 29": "Quantity Allowances",
"01 21 43": "Time Allowances",
"01 22 00": "Unit Prices",
"01 22 13": "Unit Price Measurement",
"01 22 16": "Unit Price Payment",
"01 23 00": "Alternates",
"01 24 00": "Value Analysis",
"01 24 13": "Value Engineering",
"01 25 00": "Substitution Procedures",
"01 25 13": "Product Substitution Procedures",
"01 25 16": "Execution Substitution Procedures",
"01 26 00": "Contract Modification Procedures",
"01 26 13": "Requests for Interpretation",
"01 26 19": "Clarification Notices",
"01 26 33": "Minor Changes in the Work",
"01 26 36": "Supplemental Instructions",
"01 26 39": "Field Orders",
"01 26 43": "Amendments",
"01 26 46": "Construction Change Directives",
"01 26 49": "Work Change Directives",
"01 26 53": "Proposal Requests",
"01 26 54": "Proposal Worksheet Summaries",
"01 26 57": "Change Order Requests",
"01 26 63": "Change Orders",
"01 29 00": "Payment Procedures",
"01 29 73": "Schedule of Values",
"01 29 76": "Progress Payment Procedures",
"01 29 83": "Payment Procedures for Testing Laboratory Services",
"01 30 00": "Administrative Requirements",
"01 31 00": "Project Management and Coordination",
"01 31 13": "Project Coordination",
"01 31 14": "Facility Services Coordination",
"01 31 16": "Multiple Contract Coordination",
"01 31 19": "Project Meetings",
"01 31 19.13": "Preconstruction Meetings",
"01 31 19.16": "Site Mobilization Meetings",
"01 31 19.23": "Progress Meetings",
"01 31 19.33": "Preinstallation Meetings",
"01 31 23": "Project Web Site",
"01 31 26": "Electronic Communication Protocols",
"01 32 00": "Construction Progress Documentation",
"01 32 13": "Scheduling of Work",
"01 32 16": "Construction Progress Schedule",
"01 32 16.13": "Network Analysis Schedules",
"01 32 19": "Submittals Schedule",
"01 32 23": "Survey and Layout Data",
"01 32 26": "Construction Progress Reporting",
"01 32 29": "Periodic Work Observation",
"01 32 33": "Photographic Documentation",
"01 32 36": "Video Monitoring and Documentation",
"01 32 43": "Purchase Order Tracking",
"01 33 00": "Submittal Procedures",
"01 33 13": "Certificates",
"01 33 16": "Design Data",
"01 33 19": "Field Test Reporting",
"01 33 23": "Shop Drawings, Product Data, and Samples",
"01 33 26": "Source Quality Control Reporting",
"01 33 29": "Sustainable Design Reporting",
"01 33 29.01": "Material Cost Summary Form",
"01 33 29.02": "Wood-Containing Product List",
"01 33 29.03": "Metal-Containing Product List",
"01 33 29.04": "Material Content Form",
"01 33 29.05": "New Product Source Form",
"01 33 29.06": "Reused Product Form",
"01 33 29.07": "Prohibited Content Installer Certification",
"01 35 00": "Special Procedures",
"01 35 03": "Conservation Treatment Procedures",
"01 35 13": "Special Project Procedures",
"01 35 13.13": "Special Project Procedures for Airport Facilities",
"01 35 13.16": "Special Project Procedures for Detention Facilities",
"01 35 13.19": "Special Project Procedures for Healthcare Facilities",
"01 35 13.26": "Special Project Procedures for Clean Rooms",
"01 35 13.43": "Special Project Procedures for Contaminated Sites",
"01 35 16": "Alteration Project Procedures",
"01 35 23": "Owner Safety Requirements",
"01 35 26": "Governmental Safety Requirements",
"01 35 29": "Health, Safety, and Emergency Response Procedures",
"01 35 29.13": "Health, Safety, and Emergency Response Procedures for Contaminated Sites",
"01 35 33": "Infection Control Procedures",
"01 35 43": "Environmental Procedures",
"01 35 43.13": "Environmental Procedures for Hazardous Materials",
"01 35 43.16": "Environmental Procedures for Toxic Materials",
"01 35 46": "Indoor Air Quality Procedures",
"01 35 53": "Security Procedures",
"01 35 63": "Sustainability Certification Project Requirements",
"01 35 66": "Sustainability Certification Project Procedures",
"01 35 73": "Delegated Design Procedures",
"01 35 91": "Period Treatment Procedures",
"01 40 00": "Quality Requirements",
"01 41 00": "Regulatory Requirements",
"01 41 13": "Codes",
"01 41 16": "Laws",
"01 41 19": "Rules",
"01 41 23": "Fees",
"01 41 26": "Permit Requirements",
"01 42 00": "References",
"01 42 13": "Abbreviations and Acronyms",
"01 42 16": "Definitions",
"01 42 19": "Reference Standards",
"01 43 00": "Quality Assurance",
"01 43 13": "Manufacturer Qualifications",
"01 43 16": "Supplier Qualifications",
"01 43 19": "Fabricator Qualifications",
"01 43 23": "Installer Qualifications",
"01 43 26": "Testing and Inspecting Agency Qualifications",
"01 43 29": "Code-Required Special Inspector Qualifications",
"01 43 33": "Manufacturer's Field Services",
"01 43 36": "Field Samples",
"01 43 39": "Mockups",
"01 45 00": "Quality Control",
"01 45 13": "Source Quality Control Procedures",
"01 45 16": "Field Quality Control Procedures",
"01 45 16.13": "Contractor Quality Control",
"01 45 23": "Testing and Inspecting Services",
"01 45 26": "Plant Inspection Procedures",
"01 45 29": "Testing Laboratory Services",
"01 45 33": "Code-Required Special Inspections and Procedures",
"01 50 00": "Temporary Facilities and Controls",
"01 51 00": "Temporary Utilities",
"01 51 13": "Temporary Electricity",
"01 51 16": "Temporary Fire Protection",
"01 51 19": "Temporary Fuel Oil",
"01 51 23": "Temporary Heating, Cooling, and Ventilating",
"01 51 26": "Temporary Lighting",
"01 51 29": "Temporary Natural-Gas",
"01 51 33": "Temporary Telecommunications",
"01 51 36": "Temporary Water",
"01 52 00": "Construction Facilities",
"01 52 13": "Field Offices and Sheds",
"01 52 16": "First Aid Facilities",
"01 52 19": "Sanitary Facilities",
"01 53 00": "Temporary Construction",
"01 53 13": "Temporary Bridges",
"01 53 16": "Temporary Decking",
"01 53 19": "Temporary Overpasses",
"01 53 23": "Temporary Ramps",
"01 53 26": "Temporary Runarounds",
"01 54 00": "Construction Aids",
"01 54 13": "Temporary Elevators",
"01 54 16": "Temporary Hoists",
"01 54 19": "Temporary Cranes",
"01 54 23": "Temporary Scaffolding and Platforms",
"01 54 26": "Temporary Swing Staging",
"01 55 00": "Vehicular Access and Parking",
"01 55 13": "Temporary Access Roads",
"01 55 16": "Haul Routes",
"01 55 19": "Temporary Parking Areas",
"01 55 23": "Temporary Roads",
"01 55 26": "Traffic Control",
"01 55 29": "Staging Areas",
"01 56 00": "Temporary Barriers and Enclosures",
"01 56 13": "Temporary Air Barriers",
"01 56 16": "Temporary Dust Barriers",
"01 56 19": "Temporary Noise Barriers",
"01 56 23": "Temporary Barricades",
"01 56 26": "Temporary Fencing",
"01 56 29": "Temporary Protective Walkways",
"01 56 33": "Temporary Security Barriers",
"01 56 36": "Temporary Security Enclosures",
"01 56 39": "Temporary Tree and Plant Protection",
"01 57 00": "Temporary Controls",
"01 57 13": "Temporary Erosion and Sediment Control",
"01 57 16": "Temporary Pest Control",
"01 57 19": "Temporary Environmental Controls",
"01 57 23": "Temporary Storm Water Pollution Control",
"01 57 26": "Site Watering for Dust Control",
"01 58 00": "Project Identification",
"01 58 13": "Temporary Project Signage",
"01 58 16": "Temporary Interior Signage",
"01 60 00": "Product Requirements",
"01 61 00": "Common Product Requirements",
"01 61 13": "Software Licensing Requirements",
"01 62 00": "Product Options",
"01 64 00": "Owner-Furnished Products",
"01 65 00": "Product Delivery Requirements",
"01 66 00": "Product Storage and Handling Requirements",
"01 66 13": "Product Storage and Handling Requirements for Hazardous Materials",
"01 66 16": "Product Storage and Handling Requirements for Toxic Materials",
"01 70 00": "Execution and Closeout Requirements",
"01 71 00": "Examination and Preparation",
"01 71 13": "Mobilization",
"01 71 16": "Acceptance of Conditions",
"01 71 23": "Field Engineering",
"01 71 23.13": "Construction Layout",
"01 71 23.16": "Construction Surveying",
"01 71 33": "Protection of Adjacent Construction",
"01 71 36": "Non-Destructive Concrete Examination",
"01 73 00": "Execution",
"01 73 13": "Application",
"01 73 16": "Erection",
"01 73 19": "Installation",
"01 73 23": "Bracing and Anchoring",
"01 73 26": "Existing Products",
"01 73 29": "Cutting and Patching",
"01 74 00": "Cleaning and Waste Management",
"01 74 13": "Progress Cleaning",
"01 74 16": "Site Maintenance",
"01 74 19": "Construction Waste Management and Disposal",
"01 74 23": "Final Cleaning",
"01 75 00": "Starting and Adjusting",
"01 75 13": "Checkout Procedures",
"01 75 16": "Startup Procedures",
"01 76 00": "Protecting Installed Construction",
"01 77 00": "Closeout Procedures",
"01 77 13": "Preliminary Closeout Reviews",
"01 77 16": "Final Closeout Review",
"01 77 19": "Closeout Requirements",
"01 78 00": "Closeout Submittals",
"01 78 13": "Completion and Correction List",
"01 78 19": "Maintenance Contracts",
"01 78 23": "Operation and Maintenance Data",
"01 78 23.13": "Operation Data",
"01 78 23.16": "Maintenance Data",
"01 78 23.19": "Preventative Maintenance Instructions",
"01 78 29": "Final Site Survey",
"01 78 33": "Bonds",
"01 78 36": "Warranties",
"01 78 39": "Project Record Documents",
"01 78 43": "Spare Parts",
"01 78 46": "Extra Stock Materials",
"01 78 53": "Sustainable Design Closeout Documentation",
"01 79 00": "Demonstration and Training",
"01 80 00": "Performance Requirements",
"01 81 00": "Facility Performance Requirements",
"01 81 13": "Sustainable Design Requirements",
"01 81 16": "Facility Environmental Requirements",
"01 81 19": "Indoor Air Quality Requirements",
"01 82 00": "Facility Substructure Performance Requirements",
"01 82 13": "Foundation Performance Requirements",
"01 82 16": "Basement Construction Performance Requirements",
"01 83 00": "Facility Shell Performance Requirements",
"01 83 13": "Superstructure Performance Requirements",
"01 83 16": "Exterior Enclosure Performance Requirements",
"01 83 19": "Roofing Performance Requirements",
"01 84 00": "Interiors Performance Requirements",
"01 84 13": "Interior Construction Performance Requirements",
"01 84 16": "Stairways Performance Requirements",
"01 84 19": "Interior Finishes Performance Requirements",
"01 85 00": "Conveying Equipment Performance Requirements",
"01 86 00": "Facility Services Performance Requirements",
"01 86 13": "Fire Suppression Performance Requirements",
"01 86 16": "Plumbing Performance Requirements",
"01 86 19": "HVAC Performance Requirements",
"01 86 23": "Integrated Automation Performance Requirements",
"01 86 26": "Electrical Performance Requirements",
"01 86 29": "Communications Performance Requirements",
"01 86 33": "Electronic Safety and Security Performance Requirements",
"01 87 00": "Equipment and Furnishings Performance Requirements",
"01 87 13": "Equipment Performance Requirements",
"01 87 16": "Furnishings Performance Requirements",
"01 88 00": "Other Facility Construction Performance Requirements",
"01 88 13": "Special Construction Performance Requirements",
"01 88 16": "Selective Construction Performance Requirements",
"01 89 00": "Site Construction Performance Requirements",
"01 89 13": "Site Preparation Performance Requirements",
"01 89 16": "Site Improvements Performance Requirements",
"01 89 19": "Site Plumbing Utilities Performance Requirements",
"01 89 23": "Site HVAC Utilities Performance Requirements",
"01 89 26": "Site Electrical Utilities Performance Requirements",
"01 89 29": "Other Site Construction Performance Requirements",
"01 90 00": "Life Cycle Activities",
"01 91 00": "Commissioning",
"01 91 13": "General Commissioning Requirements",
"01 91 16": "Facility Substructure Commissioning",
"01 91 16.13": "Foundation Commissioning",
"01 91 16.53": "Basement Construction Commissioning",
"01 91 19": "Facility Shell Commissioning",
"01 91 19.13": "Superstructure Commissioning",
"01 91 19.43": "Exterior Enclosure Commissioning",
"01 91 19.73": "Roofing Commissioning",
"01 91 23": "Interiors Commissioning",
"01 91 23.13": "Interior Construction Commissioning",
"01 91 23.43": "Stairways Commissioning",
"01 91 23.73": "Interior Finishes Commissioning",
"01 92 00": "Facility Operation",
"01 92 13": "Facility Operation Procedures",
"01 93 00": "Facility Maintenance",
"01 93 13": "Facility Maintenance Procedures",
"01 93 16": "Recycling Programs",
"01 94 00": "Facility Decommissioning",
"01 94 13": "Facility Decommissioning Procedures",
"02 00 00": "Existing Conditions",
"02 01 00": "Maintenance of Existing Conditions",
"02 01 50": "Maintenance of Site Remediation",
"02 01 65": "Maintenance of Underground Storage Tank Removal",
"02 01 80": "Maintenance of Facility Remediation",
"02 01 86": "Maintenance of Hazardous Waste Drum Handling",
"02 03 00": "Conservation Treatment for Existing Period Conditions",
"02 03 01": "Maintenance of Existing Period Conditions",
"02 03 01.19": "Mothballing Period Structures",
"02 03 41": "Selective Demolition for Period Structures",
"02 03 42": "Removal and Salvage of Period Construction Materials",
"02 03 43": "Period Structure Relocating",
"02 03 44": "Shoring and Support of Period Structures",
"02 05 00": "Common Work Results for Existing Conditions",
"02 05 19": "Geosynthetics for Existing Conditions",
"02 05 19.13": "Geotextiles for Existing Conditions",
"02 05 19.16": "Geomembranes for Existing Conditions",
"02 05 19.19": "Geogrids for Existing Conditions",
"02 06 00": "Schedules for Existing Conditions",
"02 06 13": "Geotechnical Baseline Report",
"02 06 14": "Geotechnical Data Report",
"02 06 30": "Schedules for Subsurface Investigations",
"02 06 30.13": "Boring or Test Pit Log Schedule",
"02 06 50": "Schedules for Site Remediation",
"02 06 65": "Schedules for Underground Storage Tank Removal",
"02 06 80": "Schedules for Facility Remediation",
"02 06 86": "Schedules for Hazardous Waste Drum Handling",
"02 08 00": "Commissioning of Existing Conditions",
"02 20 00": "Assessment",
"02 21 00": "Surveys",
"02 21 13": "Site Surveys",
"02 21 13.13": "Boundary and Survey Markers",
"02 21 13.23": "Archeological and Historic Surveys",
"02 21 16": "Measured Drawings",
"02 22 00": "Existing Conditions Assessment",
"02 22 13": "Movement and Vibration Assessment",
"02 22 16": "Acoustic Assessment",
"02 22 19": "Traffic Assessment",
"02 22 23": "Accessibility Assessment",
"02 24 00": "Environmental Assessment",
"02 24 13": "Natural Environment Assessment",
"02 24 13.13": "Air Assessment",
"02 24 13.43": "Water Assessment",
"02 24 13.73": "Land Assessment",
"02 24 23": "Chemical Sampling and Analysis of Soils",
"02 24 43": "Transboundary and Global Environmental Aspects Assessment",
"02 25 00": "Existing Material Assessment",
"02 25 16": "Existing Concrete Assessment",
"02 25 16.13": "Concrete Assessment Drilling",
"02 25 19": "Existing Masonry Assessment",
"02 25 19.13": "Masonry Assessment Drilling",
"02 25 23": "Existing Metals Assessment",
"02 25 23.13": "Welding Investigations",
"02 25 26": "Existing Wood, Plastics, and Composites Assessment",
"02 25 29": "Existing Thermal and Moisture Protection Assessment",
"02 25 29.13": "Waterproofing Investigations",
"02 25 29.23": "Roofing Investigations",
"02 26 00": "Hazardous Material Assessment",
"02 26 23": "Asbestos Assessment",
"02 26 26": "Lead Assessment",
"02 26 29": "Polychlorinated Biphenyl Assessment",
"02 26 33": "Biological Assessment",
"02 26 33.13": "Mold Assessment",
"02 26 36": "Hazardous Waste Drum Assessment",
"02 30 00": "Subsurface Investigation",
"02 31 00": "Geophysical Investigations",
"02 31 13": "Seismic Investigations",
"02 31 16": "Gravity Investigations",
"02 31 19": "Magnetic Investigations",
"02 31 23": "Electromagnetic Investigations",
"02 31 26": "Electrical Resistivity Investigations",
"02 31 29": "Magnetotelluric Investigations",
"02 32 00": "Geotechnical Investigations",
"02 32 13": "Subsurface Drilling and Sampling",
"02 32 16": "Material Testing",
"02 32 19": "Exploratory Excavations",
"02 32 23": "Geotechnical Monitoring Before Construction",
"02 32 23.13": "Groundwater Monitoring Before Construction",
"02 40 00": "Demolition and Structure Moving",
"02 41 00": "Demolition",
"02 41 13": "Selective Site Demolition",
"02 41 13.13": "Paving Removal",
"02 41 13.23": "Utility Line Removal",
"02 41 13.33": "Railtrack Removal",
"02 41 16": "Structure Demolition",
"02 41 16.13": "Building Demolition",
"02 41 16.23": "Tower Demolition",
"02 41 16.33": "Bridge Demolition",
"02 41 16.43": "Dam Demolition",
"02 41 19": "Selective Demolition",
"02 41 19.13": "Selective Building Demolition",
"02 41 19.16": "Selective Interior Demolition",
"02 41 19.19": "Selective Facility Services Demolition",
"02 41 19.33": "Selective Bridge Demolition",
"02 42 00": "Removal and Salvage of Construction Materials",
"02 42 13": "Deconstruction of Structures",
"02 42 13.13": "Deconstruction of Buildings",
"02 43 00": "Structure Moving",
"02 43 13": "Structure Relocation",
"02 43 13.13": "Building Relocation",
"02 43 16": "Structure Raising",
"02 43 16.13": "Building Raising",
"02 50 00": "Site Remediation",
"02 51 00": "Physical Decontamination",
"02 51 13": "Coagulation and Flocculation Decontamination",
"02 51 16": "Reverse-Osmosis Decontamination",
"02 51 19": "Solidification and Stabilization Decontamination",
"02 51 23": "Mechanical Filtration Decontamination",
"02 51 26": "Radioactive Decontamination",
"02 51 29": "Surface Cleaning Decontamination",
"02 51 29.13": "High-Pressure Water Cleaning Decontamination",
"02 51 29.16": "Vacuum Sweeping Cleaning Decontamination",
"02 51 33": "Surface Removal Decontamination",
"02 51 33.13": "Surface Removal Decontamination by Grinding",
"02 51 33.16": "Surface Removal Decontamination by Sand Blasting",
"02 51 33.19": "Surface Removal Decontamination by Ultrasound",
"02 52 00": "Chemical Decontamination",
"02 52 13": "Chemical Precipitation Decontamination",
"02 52 16": "Ion Change Decontamination",
"02 52 19": "Neutralization Decontamination",
"02 53 00": "Thermal Decontamination",
"02 53 13": "Incineration Decontamination",
"02 53 13.13": "Remediation of Contaminated Soils and Sludges by Incineration",
"02 53 16": "Thermal Desorption Decontamination",
"02 53 16.13": "Remediation of Contaminated Soils by Thermal Desorption",
"02 53 19": "Vitrification Decontamination",
"02 54 00": "Biological Decontamination",
"02 54 13": "Aerobic Processes Decontamination",
"02 54 16": "Anaerobic Processes Decontamination",
"02 54 19": "Bioremediation Decontamination",
"02 54 19.13": "Bioremediation Using Landfarming",
"02 54 19.16": "Bioremediation of Soils Using Windrow Composting",
"02 54 19.19": "Bioremediation Using Bacteria Injection",
"02 54 23": "Soil Washing through Separation/Solubilization",
"02 54 26": "Organic Decontamination",
"02 55 00": "Remediation Soil Stabilization",
"02 56 00": "Site Containment",
"02 56 13": "Waste Containment",
"02 56 13.13": "Geomembrane Waste Containment",
"02 56 19": "Gas Containment",
"02 56 19.13": "Fluid-Applied Gas Barrier",
"02 57 00": "Sinkhole Remediation",
"02 57 13": "Sinkhole Remediation by Grouting",
"02 57 13.13": "Sinkhole Remediation by Compaction Grouting",
"02 57 13.16": "Sinkhole Remediation by Cap Grouting",
"02 57 16": "Sinkhole Remediation by Backfilling",
"02 58 00": "Snow Control",
"02 58 13": "Snow Fencing",
"02 58 16": "Snow Avalanche Control",
"02 60 00": "Contaminated Site Material Removal",
"02 61 00": "Removal and Disposal of Contaminated Soils",
"02 61 13": "Excavation and Handling of Contaminated Material",
"02 61 23": "Removal and Disposal of Polychlorinate Biphenyl Contaminated Soils",
"02 61 26": "Removal and Disposal of Asbestos Contaminated Soils",
"02 61 29": "Removal and Disposal of Organically Contaminated Soils",
"02 62 00": "Hazardous Waste Recovery Processes",
"02 62 13": "Air and Steam Stripping",
"02 62 16": "Soil Vapor Extraction",
"02 62 19": "Soil Washing and Flushing",
"02 65 00": "Underground Storage Tank Removal",
"02 70 00": "Water Remediation",
"02 71 00": "Groundwater Treatment",
"02 72 00": "Water Decontamination",
"02 72 13": "Chemical Water Decontamination",
"02 72 16": "Biological Water Decontamination",
"02 72 19": "Electrolysis Water Decontamination",
"02 80 00": "Facility Remediation",
"02 81 00": "Transportation and Disposal of Hazardous Materials",
"02 82 00": "Asbestos Remediation",
"02 82 13": "Asbestos Abatement",
"02 82 13.13": "Glovebag Asbestos Abatement",
"02 82 13.16": "Precautions for Asbestos Abatement",
"02 82 13.19": "Asbestos Floor Tile and Mastic Abatement",
"02 82 13.33": "Asbestos Abatement for Utilities",
"02 82 16": "Engineering Control of Asbestos Containing Materials",
"02 82 33": "Removal and Disposal of Asbestos Containing Materials",
"02 83 00": "Lead Remediation",
"02 83 13": "Lead Hazard Control Activities",
"02 83 19": "Lead-Based Paint Remediation",
"02 83 19.13": "Lead-Based Paint Abatement",
"02 83 33": "Removal and Disposal of Material Containing Lead",
"02 83 33.13": "Lead-Based Paint Removal and Disposal",
"02 84 00": "Polychlorinate Biphenyl Remediation",
"02 84 16": "Handling of Lighting Ballasts and Lamps Containing PCBs and Mercury",
"02 84 33": "Removal and Disposal of Polychlorinate Biphenyls",
"02 86 00": "Hazardous Waste Drum Handling",
"02 87 00": "Biohazard Remediation",
"02 87 13": "Mold Remediation",
"02 87 13.13": "Precautions for Mold Remediation",
"02 87 13.16": "Mold Remediation Preparation and Containment",
"02 87 13.19": "Mold Remediation Clearance Air Sampling",
"02 87 13.33": "Removal and Disposal of Materials with Mold",
"02 87 16": "Excrement Removal",
"02 87 16.13": "Bird Excrement Removal",
"02 87 16.16": "Rodent Excrement Removal",
"03 00 00": "Concrete",
"03 01 00": "Maintenance of Concrete",
"03 01 10": "Maintenance of Concrete Forming and Accessories",
"03 01 20": "Maintenance of Concrete Reinforcing",
"03 01 23": "Maintenance of Stressing Tendons",
"03 01 30": "Maintenance of Cast-in-Place Concrete",
"03 01 30.51": "Cleaning of Cast-in-Place Concrete",
"03 01 30.61": "Resurfacing of Cast-in-Place Concrete",
"03 01 30.71": "Rehabilitation of Cast-in-Place Concrete",
"03 01 30.72": "Strengthening of Cast-in-Place Concrete",
"03 01 40": "Maintenance of Precast Concrete",
"03 01 40.51": "Cleaning of Precast Concrete",
"03 01 40.61": "Resurfacing of Precast Concrete",
"03 01 40.71": "Rehabilitation of Precast Concrete",
"03 01 40.72": "Strengthening of Precast Concrete",
"03 01 50": "Maintenance of Cast Decks and Underlayment",
"03 01 50.51": "Cleaning Cast Decks and Underlayment",
"03 01 50.61": "Resurfacing of Cast Decks and Underlayment",
"03 01 50.71": "Rehabilitation of Cast Decks and Underlayment",
"03 01 50.72": "Strengthening of Cast Decks and Underlayment",
"03 01 60": "Maintenance of Grouting",
"03 01 70": "Maintenance of Mass Concrete",
"03 01 80": "Maintenance of Concrete Cutting and Boring",
"03 03 00": "Conservation Treatment for Period Concrete",
"03 03 30": "Conservation Treatment for Period Cast-in-Place Concrete",
"03 03 31": "Conservation Treatment for Period Structural Concrete",
"03 03 33": "Conservation Treatment for Period Architectural Concrete",
"03 05 00": "Common Work Results for Concrete",
"03 05 05": "Selective Demolition for Concrete",
"03 06 00": "Schedules for Concrete",
"03 06 10": "Schedules for Concrete Forming and Accessories",
"03 06 20": "Schedules for Concrete Reinforcing",
"03 06 20.13": "Concrete Beam Reinforcing Schedule",
"03 06 20.16": "Concrete Slab Reinforcing Schedule",
"03 06 30": "Schedules for Cast-in-Place Concrete",
"03 06 30.13": "Concrete Footing Schedule",
"03 06 30.16": "Concrete Column Schedule",
"03 06 30.19": "Concrete Slab Schedule",
"03 06 30.23": "Concrete Shaft Schedule",
"03 06 30.26": "Concrete Beam Schedule",
"03 06 40": "Schedules for Precast Concrete",
"03 31 00": "Structural Concrete",
"03 31 13": "Heavyweight Structural Concrete",
"03 31 16": "Lightweight Structural Concrete",
"03 31 19": "Shrinkage-Compensating Structural Concrete",
"03 31 23": "High-Performance Structural Concrete",
"03 31 24": "Ultra High-Performance Structural Concrete",
"03 31 26": "Self-Compacting Concrete",
"03 33 00": "Architectural Concrete",
"03 33 13": "Heavyweight Architectural Concrete",
"03 33 16": "Lightweight Architectural Concrete",
"03 34 00": "Low Density Concrete",
"03 35 00": "Concrete Finishing",
"03 35 13": "High-Tolerance Concrete Floor Finishing",
"03 35 16": "Heavy-Duty Concrete Floor Finishing",
"03 35 19": "Colored Concrete Finishing",
"03 35 23": "Exposed Aggregate Concrete Finishing",
"03 35 26": "Grooved Concrete Surface Finishing",
"03 35 29": "Tooled Concrete Finishing",
"03 35 33": "Stamped Concrete Finishing",
"03 35 43": "Polished Concrete Finishing",
"03 35 43.13": "Polished and Dyed Concrete Finishing",
"03 35 43.16": "Polished and Stained Concrete Finishing",
"03 35 46": "Concrete Topical Treatments",
"03 37 00": "Specialty Placed Concrete",
"03 37 13": "Shotcrete",
"03 37 16": "Pumped Concrete",
"03 37 19": "Pneumatically Placed Concrete",
"03 37 23": "Roller-Compacted Concrete",
"03 37 26": "Underwater Placed Concrete",
"03 38 00": "Post-Tensioned Concrete",
"03 38 13": "Post-Tensioned Concrete Preparation",
"03 38 16": "Unbonded Post-Tensioned Concrete",
"03 38 19": "Bonded Post-Tensioned Concrete",
"03 39 00": "Concrete Curing",
"03 39 13": "Water Concrete Curing",
"03 39 16": "Sand Concrete Curing",
"03 39 23": "Membrane Concrete Curing",
"03 39 23.13": "Chemical Compound Membrane Concrete Curing",
"03 39 23.23": "Sheet Membrane Concrete Curing",
"03 40 00": "Precast Concrete",
"03 41 00": "Precast Structural Concrete",
"03 41 13": "Precast Concrete Hollow Core Planks",
"03 41 16": "Precast Concrete Slabs",
"03 41 23": "Precast Concrete Stairs",
"03 41 33": "Precast Structural Pretensioned Concrete",
"03 41 36": "Precast Structural Post-Tensioned Concrete",
"03 45 00": "Precast Architectural Concrete",
"03 45 13": "Faced Architectural Precast Concrete",
"03 45 33": "Precast Architectural Pretensioned Concrete",
"03 45 36": "Precast Architectural Post-Tensioned Concrete",
"03 47 00": "Site-Cast Concrete",
"03 47 13": "Tilt-Up Concrete",
"03 47 16": "Lift-Slab Concrete",
"03 48 00": "Precast Concrete Specialties",
"03 48 13": "Precast Concrete Bollards",
"03 48 13.11": "Precast Concrete Security Bollards",
"03 48 16": "Precast Concrete Splash Blocks",
"03 48 19": "Precast Concrete Stair Treads",
"03 48 26": "Precast Concrete Parking Bumpers",
"03 48 33": "Precast Pre-Framed Concrete Panels",
"03 48 43": "Precast Concrete Trim",
"03 49 00": "Glass-Fiber-Reinforced Concrete",
"03 49 13": "Glass-Fiber-Reinforced Concrete Column Covers",
"03 49 16": "Glass-Fiber-Reinforced Concrete Spandrels",
"03 49 43": "Glass-Fiber-Reinforced Concrete Trim",
"03 50 00": "Cast Decks and Underlayment",
"03 51 00": "Cast Roof Decks",
"03 51 13": "Cementitious Wood Fiber Decks",
"03 51 16": "Gypsum Concrete Roof Decks",
"03 52 00": "Lightweight Concrete Roof Insulation",
"03 52 13": "Composite Concrete Roof Insulation",
"03 52 16": "Lightweight Insulating Concrete",
"03 52 16.13": "Lightweight Cellular Insulating Concrete",
"03 52 16.16": "Lightweight Aggregate Insulating Concrete",
"03 53 00": "Concrete Topping",
"03 53 13": "Emery-Aggregate Concrete Topping",
"03 53 16": "Iron-Aggregate Concrete Topping",
"03 53 19": "Concrete Overlayment",
"03 54 00": "Cast Underlayment",
"03 54 13": "Gypsum Cement Underlayment",
"03 54 16": "Hydraulic Cement Underlayment",
"03 60 00": "Grouting",
"03 61 00": "Cementitious Grouting",
"03 61 13": "Dry-Pack Grouting",
"03 62 00": "Non-Shrink Grouting",
"03 62 13": "Non-Metallic Non-Shrink Grouting",
"03 62 16": "Metallic Non-Shrink Grouting",
"03 63 00": "Epoxy Grouting",
"03 64 00": "Injection Grouting",
"03 64 23": "Epoxy Injection Grouting",
"03 70 00": "Mass Concrete",
"03 71 00": "Mass Concrete for Raft Foundations",
"03 72 00": "Mass Concrete for Dams",
"03 80 00": "Concrete Cutting and Boring",
"03 81 00": "Concrete Cutting",
"03 81 13": "Flat Concrete Sawing",
"03 81 16": "Track Mounted Concrete Wall Sawing",
"03 81 19": "Wire Concrete Wall Sawing",
"03 81 23": "Hand Concrete Wall Sawing",
"03 81 26": "Chain Concrete Wall Sawing",
"03 82 00": "Concrete Boring",
"03 82 13": "Concrete Core Drilling",
"04 00 00": "Masonry",
"04 01 00": "Maintenance of Masonry",
"04 01 20": "Maintenance of Unit Masonry",
"04 01 20.41": "Unit Masonry Stabilization",
"04 01 20.51": "Unit Masonry Maintenance",
"04 01 20.52": "Unit Masonry Cleaning",
"04 01 20.91": "Unit Masonry Restoration",
"04 01 20.93": "Testing and Sampling Brick Units for Restoration",
"04 01 40": "Maintenance of Stone Assemblies",
"04 01 40.51": "Stone Maintenance",
"04 01 40.52": "Stone Cleaning",
"04 01 40.91": "Stone Restoration",
"04 01 50": "Maintenance of Refractory Masonry",
"04 01 60": "Maintenance of Corrosion-Resistant Masonry",
"04 01 70": "Maintenance of Manufactured Masonry",
"04 03 00": "Conservation Treatment for Period Masonry",
"04 03 01": "Maintenance for Period Masonry",
"04 03 01.13": "Period Masonry Cleaning",
"04 03 05": "Common Work Results for Period Masonry",
"04 03 05.13": "Period Masonry Mortaring",
"04 03 05.16": "Period Masonry Grouting",
"04 03 05.19": "Period Masonry Anchorage and Reinforcing",
"04 03 21": "Conservation Treatment for Period Clay Unit Masonry",
"04 03 21.19": "Clay Brick Conservation Treatment",
"04 03 21.21": "Terra Cotta Conservation Treatment",
"04 03 21.23": "Fiance Block Conservation Treatment",
"04 03 22": "Conservation Treatment for Period Concrete Unit Masonry",
"04 03 24": "Conservation Treatment for Period Adobe Unit Masonry",
"04 03 43": "Conservation Treatment for Period Stone Masonry",
"04 05 00": "Common Work Results for Masonry",
"04 05 05": "Selective Demolition for Masonry",
"04 05 13": "Masonry Mortaring",
"04 05 13.16": "Chemical-Resistant Masonry Mortaring",
"04 05 13.19": "Epoxy Masonry Mortaring",
"04 05 13.23": "Surface Bonding Masonry Mortaring",
"04 05 13.26": "Engineered Masonry Mortaring",
"04 05 13.29": "Refractory Masonry Mortaring",
"04 05 13.91": "Masonry Restoration Mortaring",
"04 05 16": "Masonry Grouting",
"04 05 16.16": "Chemical-Resistant Masonry Grouting",
"04 05 16.26": "Engineered Masonry Grouting",
"04 05 19": "Masonry Anchorage and Reinforcing",
"04 05 19.13": "Continuous Joint Reinforcing",
"04 05 19.16": "Masonry Anchors",
"04 05 19.26": "Masonry Reinforcing Bars",
"04 05 19.29": "Stone Anchors",
"04 05 21": "Masonry Strengthening",
"04 05 23": "Masonry Accessories",
"04 05 23.13": "Masonry Control and Expansion Joints",
"04 05 23.16": "Masonry Embedded Flashing",
"04 05 23.19": "Masonry Cavity Drainage, Weepholes, and Vents",
"04 06 00": "Schedules for Masonry",
"04 06 20": "Schedules for Unit Masonry",
"04 06 20.13": "Masonry Unit Schedule",
"04 06 40": "Schedules for Stone Assemblies",
"04 06 50": "Schedules for Refractory Masonry",
"04 06 60": "Schedules for Corrosion-Resistant Masonry",
"04 06 70": "Schedules for Manufactured Masonry",
"04 08 00": "Commissioning of Masonry",
"04 20 00": "Unit Masonry",
"04 21 00": "Clay Unit Masonry",
"04 21 13": "Brick Masonry",
"04 21 13.13": "Brick Veneer Masonry",
"04 21 13.23": "Surface-Bonded Brick Masonry",
"04 21 16": "Ceramic Glazed Clay Masonry",
"04 21 19": "Clay Tile Masonry",
"04 21 23": "Structural Clay Tile Masonry",
"04 21 26": "Glazed Structural Clay Tile Masonry",
"04 21 29": "Terra Cotta Masonry",
"04 22 00": "Concrete Unit Masonry",
"04 22 00.13": "Concrete Unit Veneer Masonry",
"04 22 00.16": "Surface-Bonded Concrete Unit Masonry",
"04 22 19": "Insulated Concrete Unit Masonry",
"04 22 23": "Architectural Concrete Unit Masonry",
"04 22 23.13": "Exposed Aggregate Concrete Unit Masonry",
"04 22 23.16": "Fluted Concrete Unit Masonry",
"04 22 23.19": "Molded-Face Concrete Unit Masonry",
"04 22 23.23": "Prefaced Concrete Unit Masonry",
"04 22 23.26": "Sound-Absorbing Concrete Unit Masonry",
"04 22 23.29": "Split-Face Concrete Unit Masonry",
"04 22 26": "Autoclaved Aerated Concrete Unit Masonry",
"04 22 33": "Interlocking Concrete Unit Masonry",
"04 23 00": "Glass Unit Masonry",
"04 23 13": "Vertical Glass Unit Masonry",
"04 23 16": "Glass Unit Masonry Floors",