From 7d3c92226c8d89cbf95beba0977bda83b0e7bf0f Mon Sep 17 00:00:00 2001 From: AJ Isaacs Date: Wed, 25 Feb 2026 15:48:35 -0500 Subject: [PATCH] refactor: replace generic catalog DTOs with shape-typed DTOs for type safety Replace the single CatalogMaterialDto + CatalogDimensionsDto (bag of nullable fields) with per-shape DTOs that have strongly-typed dimension properties. Catalog JSON now groups materials by shape key instead of a flat array. Delete the old SeedController/SeedDataDtos (superseded by CatalogService). Scraper updated to emit the new grouped format, resume by default, and save items incrementally. Co-Authored-By: Claude Opus 4.6 --- CutList.Web/Controllers/Dtos/SeedDataDtos.cs | 72 - CutList.Web/Controllers/SeedController.cs | 277 - CutList.Web/DTOs/CatalogDtos.cs | 92 +- CutList.Web/Data/SeedData/alro-catalog.json | 13 +- CutList.Web/Data/SeedData/oneals-catalog.json | 28720 ++++++++-------- CutList.Web/Services/CatalogService.cs | 393 +- scripts/AlroCatalog/alro-scrape-progress.json | 5 + scripts/AlroCatalog/scrape_alro.py | 132 +- 8 files changed, 13874 insertions(+), 15830 deletions(-) delete mode 100644 CutList.Web/Controllers/Dtos/SeedDataDtos.cs delete mode 100644 CutList.Web/Controllers/SeedController.cs diff --git a/CutList.Web/Controllers/Dtos/SeedDataDtos.cs b/CutList.Web/Controllers/Dtos/SeedDataDtos.cs deleted file mode 100644 index 55f33b5..0000000 --- a/CutList.Web/Controllers/Dtos/SeedDataDtos.cs +++ /dev/null @@ -1,72 +0,0 @@ -using System.Text.Json.Serialization; - -namespace CutList.Web.Controllers.Dtos; - -public class SeedExportData -{ - public DateTime ExportedAt { get; set; } - public List Suppliers { get; set; } = []; - public List CuttingTools { get; set; } = []; - public List Materials { get; set; } = []; -} - -public class SeedSupplierDto -{ - public string Name { get; set; } = ""; - public string? ContactInfo { get; set; } - public string? Notes { get; set; } -} - -public class SeedCuttingToolDto -{ - public string Name { get; set; } = ""; - public decimal KerfInches { get; set; } - public bool IsDefault { get; set; } -} - -public class SeedMaterialDto -{ - public string Shape { get; set; } = ""; - public string Type { get; set; } = ""; - public string? Grade { get; set; } - public string Size { get; set; } = ""; - public string? Description { get; set; } - public SeedDimensionsDto? Dimensions { get; set; } - public List StockItems { get; set; } = []; -} - -public class SeedDimensionsDto -{ - public decimal? Diameter { get; set; } - public decimal? OuterDiameter { get; set; } - public decimal? Width { get; set; } - public decimal? Height { get; set; } - public decimal? Thickness { get; set; } - public decimal? Wall { get; set; } - public decimal? Size { get; set; } - public decimal? Leg1 { get; set; } - public decimal? Leg2 { get; set; } - public decimal? Flange { get; set; } - public decimal? Web { get; set; } - public decimal? WeightPerFoot { get; set; } - public decimal? NominalSize { get; set; } - public string? Schedule { get; set; } -} - -public class SeedStockItemDto -{ - public decimal LengthInches { get; set; } - public string? Name { get; set; } - public int QuantityOnHand { get; set; } - public string? Notes { get; set; } - public List SupplierOfferings { get; set; } = []; -} - -public class SeedSupplierOfferingDto -{ - public string SupplierName { get; set; } = ""; - public string? PartNumber { get; set; } - public string? SupplierDescription { get; set; } - public decimal? Price { get; set; } - public string? Notes { get; set; } -} diff --git a/CutList.Web/Controllers/SeedController.cs b/CutList.Web/Controllers/SeedController.cs deleted file mode 100644 index 2b84fca..0000000 --- a/CutList.Web/Controllers/SeedController.cs +++ /dev/null @@ -1,277 +0,0 @@ -using CutList.Web.Controllers.Dtos; -using CutList.Web.Data; -using CutList.Web.Data.Entities; -using Microsoft.AspNetCore.Mvc; -using Microsoft.EntityFrameworkCore; - -namespace CutList.Web.Controllers; - -[ApiController] -[Route("api/[controller]")] -public class SeedController : ControllerBase -{ - private readonly ApplicationDbContext _context; - - public SeedController(ApplicationDbContext context) - { - _context = context; - } - - [HttpGet("export")] - public async Task> Export() - { - var materials = await _context.Materials - .Include(m => m.Dimensions) - .Include(m => m.StockItems.Where(s => s.IsActive)) - .ThenInclude(s => s.SupplierOfferings.Where(o => o.IsActive)) - .Where(m => m.IsActive) - .OrderBy(m => m.Shape).ThenBy(m => m.SortOrder) - .AsNoTracking() - .ToListAsync(); - - var suppliers = await _context.Suppliers - .Where(s => s.IsActive) - .OrderBy(s => s.Name) - .AsNoTracking() - .ToListAsync(); - - var cuttingTools = await _context.CuttingTools - .Where(t => t.IsActive) - .OrderBy(t => t.Name) - .AsNoTracking() - .ToListAsync(); - - var export = new SeedExportData - { - ExportedAt = DateTime.UtcNow, - Suppliers = suppliers.Select(s => new SeedSupplierDto - { - Name = s.Name, - ContactInfo = s.ContactInfo, - Notes = s.Notes - }).ToList(), - CuttingTools = cuttingTools.Select(t => new SeedCuttingToolDto - { - Name = t.Name, - KerfInches = t.KerfInches, - IsDefault = t.IsDefault - }).ToList(), - Materials = materials.Select(m => new SeedMaterialDto - { - Shape = m.Shape.ToString(), - Type = m.Type.ToString(), - Grade = m.Grade, - Size = m.Size, - Description = m.Description, - Dimensions = MapDimensionsToDto(m.Dimensions), - StockItems = m.StockItems.OrderBy(s => s.LengthInches).Select(s => new SeedStockItemDto - { - LengthInches = s.LengthInches, - Name = s.Name, - QuantityOnHand = s.QuantityOnHand, - Notes = s.Notes, - SupplierOfferings = s.SupplierOfferings.Select(o => new SeedSupplierOfferingDto - { - SupplierName = suppliers.FirstOrDefault(sup => sup.Id == o.SupplierId)?.Name ?? "Unknown", - PartNumber = o.PartNumber, - SupplierDescription = o.SupplierDescription, - Price = o.Price, - Notes = o.Notes - }).ToList() - }).ToList() - }).ToList() - }; - - return Ok(export); - } - - [HttpPost("import")] - public async Task Import([FromBody] SeedExportData data) - { - var suppliersCreated = 0; - var toolsCreated = 0; - var materialsCreated = 0; - var materialsSkipped = 0; - var stockCreated = 0; - var offeringsCreated = 0; - - // 1. Suppliers - match by name - var supplierMap = new Dictionary(); - foreach (var dto in data.Suppliers) - { - var existing = await _context.Suppliers.FirstOrDefaultAsync(s => s.Name == dto.Name); - if (existing != null) - { - supplierMap[dto.Name] = existing; - } - else - { - var supplier = new Supplier - { - Name = dto.Name, - ContactInfo = dto.ContactInfo, - Notes = dto.Notes, - CreatedAt = DateTime.UtcNow - }; - _context.Suppliers.Add(supplier); - supplierMap[dto.Name] = supplier; - suppliersCreated++; - } - } - await _context.SaveChangesAsync(); - - // 2. Cutting tools - match by name - foreach (var dto in data.CuttingTools) - { - var exists = await _context.CuttingTools.AnyAsync(t => t.Name == dto.Name); - if (!exists) - { - _context.CuttingTools.Add(new CuttingTool - { - Name = dto.Name, - KerfInches = dto.KerfInches, - IsDefault = dto.IsDefault - }); - toolsCreated++; - } - } - await _context.SaveChangesAsync(); - - // 3. Materials - match by shape + size + grade - foreach (var dto in data.Materials) - { - if (!Enum.TryParse(dto.Shape, out var shape)) - { - materialsSkipped++; - continue; - } - - Enum.TryParse(dto.Type, out var type); - - var existing = await _context.Materials - .Include(m => m.StockItems) - .FirstOrDefaultAsync(m => m.Shape == shape && m.Size == dto.Size && m.Grade == dto.Grade && m.IsActive); - - Material material; - if (existing != null) - { - material = existing; - materialsSkipped++; - } - else - { - material = new Material - { - Shape = shape, - Type = type, - Grade = dto.Grade, - Size = dto.Size, - Description = dto.Description, - CreatedAt = DateTime.UtcNow - }; - - if (dto.Dimensions != null) - material.Dimensions = MapDtoToDimensions(shape, dto.Dimensions); - - _context.Materials.Add(material); - await _context.SaveChangesAsync(); - materialsCreated++; - } - - // 4. Stock items - match by material + length - foreach (var stockDto in dto.StockItems) - { - var existingStock = material.StockItems - .FirstOrDefault(s => s.LengthInches == stockDto.LengthInches && s.IsActive); - - StockItem stockItem; - if (existingStock != null) - { - stockItem = existingStock; - } - else - { - stockItem = new StockItem - { - MaterialId = material.Id, - LengthInches = stockDto.LengthInches, - Name = stockDto.Name, - QuantityOnHand = stockDto.QuantityOnHand, - Notes = stockDto.Notes, - CreatedAt = DateTime.UtcNow - }; - _context.StockItems.Add(stockItem); - await _context.SaveChangesAsync(); - stockCreated++; - } - - // 5. Supplier offerings - foreach (var offeringDto in stockDto.SupplierOfferings) - { - if (!supplierMap.TryGetValue(offeringDto.SupplierName, out var supplier)) - continue; - - var existingOffering = await _context.SupplierOfferings - .AnyAsync(o => o.SupplierId == supplier.Id && o.StockItemId == stockItem.Id); - - if (!existingOffering) - { - _context.SupplierOfferings.Add(new SupplierOffering - { - SupplierId = supplier.Id, - StockItemId = stockItem.Id, - PartNumber = offeringDto.PartNumber, - SupplierDescription = offeringDto.SupplierDescription, - Price = offeringDto.Price, - Notes = offeringDto.Notes - }); - offeringsCreated++; - } - } - } - } - - await _context.SaveChangesAsync(); - - return Ok(new - { - Message = "Import completed", - SuppliersCreated = suppliersCreated, - CuttingToolsCreated = toolsCreated, - MaterialsCreated = materialsCreated, - MaterialsSkipped = materialsSkipped, - StockItemsCreated = stockCreated, - SupplierOfferingsCreated = offeringsCreated - }); - } - - private static SeedDimensionsDto? MapDimensionsToDto(MaterialDimensions? dim) => dim switch - { - RoundBarDimensions d => new SeedDimensionsDto { Diameter = d.Diameter }, - RoundTubeDimensions d => new SeedDimensionsDto { OuterDiameter = d.OuterDiameter, Wall = d.Wall }, - FlatBarDimensions d => new SeedDimensionsDto { Width = d.Width, Thickness = d.Thickness }, - SquareBarDimensions d => new SeedDimensionsDto { Size = d.Size }, - SquareTubeDimensions d => new SeedDimensionsDto { Size = d.Size, Wall = d.Wall }, - RectangularTubeDimensions d => new SeedDimensionsDto { Width = d.Width, Height = d.Height, Wall = d.Wall }, - AngleDimensions d => new SeedDimensionsDto { Leg1 = d.Leg1, Leg2 = d.Leg2, Thickness = d.Thickness }, - ChannelDimensions d => new SeedDimensionsDto { Height = d.Height, Flange = d.Flange, Web = d.Web }, - IBeamDimensions d => new SeedDimensionsDto { Height = d.Height, WeightPerFoot = d.WeightPerFoot }, - PipeDimensions d => new SeedDimensionsDto { NominalSize = d.NominalSize, Wall = d.Wall, Schedule = d.Schedule }, - _ => null - }; - - private static MaterialDimensions? MapDtoToDimensions(MaterialShape shape, SeedDimensionsDto dto) => shape switch - { - MaterialShape.RoundBar => new RoundBarDimensions { Diameter = dto.Diameter ?? 0 }, - MaterialShape.RoundTube => new RoundTubeDimensions { OuterDiameter = dto.OuterDiameter ?? 0, Wall = dto.Wall ?? 0 }, - MaterialShape.FlatBar => new FlatBarDimensions { Width = dto.Width ?? 0, Thickness = dto.Thickness ?? 0 }, - MaterialShape.SquareBar => new SquareBarDimensions { Size = dto.Size ?? 0 }, - MaterialShape.SquareTube => new SquareTubeDimensions { Size = dto.Size ?? 0, Wall = dto.Wall ?? 0 }, - MaterialShape.RectangularTube => new RectangularTubeDimensions { Width = dto.Width ?? 0, Height = dto.Height ?? 0, Wall = dto.Wall ?? 0 }, - MaterialShape.Angle => new AngleDimensions { Leg1 = dto.Leg1 ?? 0, Leg2 = dto.Leg2 ?? 0, Thickness = dto.Thickness ?? 0 }, - MaterialShape.Channel => new ChannelDimensions { Height = dto.Height ?? 0, Flange = dto.Flange ?? 0, Web = dto.Web ?? 0 }, - MaterialShape.IBeam => new IBeamDimensions { Height = dto.Height ?? 0, WeightPerFoot = dto.WeightPerFoot ?? 0 }, - MaterialShape.Pipe => new PipeDimensions { NominalSize = dto.NominalSize ?? 0, Wall = dto.Wall ?? 0, Schedule = dto.Schedule }, - _ => null - }; -} diff --git a/CutList.Web/DTOs/CatalogDtos.cs b/CutList.Web/DTOs/CatalogDtos.cs index e15845e..c2188dc 100644 --- a/CutList.Web/DTOs/CatalogDtos.cs +++ b/CutList.Web/DTOs/CatalogDtos.cs @@ -5,7 +5,7 @@ public class CatalogData public DateTime ExportedAt { get; set; } public List Suppliers { get; set; } = []; public List CuttingTools { get; set; } = []; - public List Materials { get; set; } = []; + public CatalogMaterialsDto Materials { get; set; } = new(); } public class CatalogSupplierDto @@ -22,35 +22,91 @@ public class CatalogCuttingToolDto public bool IsDefault { get; set; } } -public class CatalogMaterialDto +public class CatalogMaterialsDto +{ + public List Angles { get; set; } = []; + public List Channels { get; set; } = []; + public List FlatBars { get; set; } = []; + public List IBeams { get; set; } = []; + public List Pipes { get; set; } = []; + public List RectangularTubes { get; set; } = []; + public List RoundBars { get; set; } = []; + public List RoundTubes { get; set; } = []; + public List SquareBars { get; set; } = []; + public List SquareTubes { get; set; } = []; +} + +public abstract class CatalogMaterialBaseDto { - public string Shape { get; set; } = ""; public string Type { get; set; } = ""; public string? Grade { get; set; } public string Size { get; set; } = ""; public string? Description { get; set; } - public CatalogDimensionsDto? Dimensions { get; set; } public List StockItems { get; set; } = []; } -public class CatalogDimensionsDto +public class CatalogAngleDto : CatalogMaterialBaseDto { - public decimal? Diameter { get; set; } - public decimal? OuterDiameter { get; set; } - public decimal? Width { get; set; } - public decimal? Height { get; set; } - public decimal? Thickness { get; set; } - public decimal? Wall { get; set; } - public decimal? Size { get; set; } - public decimal? Leg1 { get; set; } - public decimal? Leg2 { get; set; } - public decimal? Flange { get; set; } - public decimal? Web { get; set; } - public decimal? WeightPerFoot { get; set; } - public decimal? NominalSize { get; set; } + public decimal Leg1 { get; set; } + public decimal Leg2 { get; set; } + public decimal Thickness { get; set; } +} + +public class CatalogChannelDto : CatalogMaterialBaseDto +{ + public decimal Height { get; set; } + public decimal Flange { get; set; } + public decimal Web { get; set; } +} + +public class CatalogFlatBarDto : CatalogMaterialBaseDto +{ + public decimal Width { get; set; } + public decimal Thickness { get; set; } +} + +public class CatalogIBeamDto : CatalogMaterialBaseDto +{ + public decimal Height { get; set; } + public decimal WeightPerFoot { get; set; } +} + +public class CatalogPipeDto : CatalogMaterialBaseDto +{ + public decimal NominalSize { get; set; } + public decimal Wall { get; set; } public string? Schedule { get; set; } } +public class CatalogRectangularTubeDto : CatalogMaterialBaseDto +{ + public decimal Width { get; set; } + public decimal Height { get; set; } + public decimal Wall { get; set; } +} + +public class CatalogRoundBarDto : CatalogMaterialBaseDto +{ + public decimal Diameter { get; set; } +} + +public class CatalogRoundTubeDto : CatalogMaterialBaseDto +{ + public decimal OuterDiameter { get; set; } + public decimal Wall { get; set; } +} + +public class CatalogSquareBarDto : CatalogMaterialBaseDto +{ + public decimal SideLength { get; set; } +} + +public class CatalogSquareTubeDto : CatalogMaterialBaseDto +{ + public decimal SideLength { get; set; } + public decimal Wall { get; set; } +} + public class CatalogStockItemDto { public decimal LengthInches { get; set; } diff --git a/CutList.Web/Data/SeedData/alro-catalog.json b/CutList.Web/Data/SeedData/alro-catalog.json index b4cf814..57d0e33 100644 --- a/CutList.Web/Data/SeedData/alro-catalog.json +++ b/CutList.Web/Data/SeedData/alro-catalog.json @@ -27,5 +27,16 @@ "isDefault": false } ], - "materials": [] + "materials": { + "angles": [], + "channels": [], + "flatBars": [], + "iBeams": [], + "pipes": [], + "rectangularTubes": [], + "roundBars": [], + "roundTubes": [], + "squareBars": [], + "squareTubes": [] + } } \ No newline at end of file diff --git a/CutList.Web/Data/SeedData/oneals-catalog.json b/CutList.Web/Data/SeedData/oneals-catalog.json index 86462b6..ca6253b 100644 --- a/CutList.Web/Data/SeedData/oneals-catalog.json +++ b/CutList.Web/Data/SeedData/oneals-catalog.json @@ -1,8 +1,8 @@ { - "exportedAt": "2026-02-16T03:32:58.2575429Z", + "exportedAt": "2026-02-17T00:48:34.8159393Z", "suppliers": [ { - "name": "O'Neal Steel" + "name": "O\u0027Neal Steel" } ], "cuttingTools": [ @@ -27,16480 +27,14682 @@ "isDefault": false } ], - "materials": [ - { - "shape": "Angle", - "type": "Steel", - "grade": "A36", - "size": "1/2\" x 1/2\" x 1/8\"", - "dimensions": { - "thickness": 0.1250, + "materials": { + "angles": [ + { "leg1": 0.5000, - "leg2": 0.5000 - }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "18751494", - "supplierDescription": "ANGLE - HOT ROLL - A36 - 1/2 X1/2 X1/8 X20" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36", - "size": "3/4\" x 3/4\" x 1/8\"", - "dimensions": { + "leg2": 0.5000, "thickness": 0.1250, + "type": "Steel", + "grade": "A36", + "size": "1/2\u0022 x 1/2\u0022 x 1/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "18751494", + "supplierDescription": "ANGLE - HOT ROLL - A36 - 1/2 X1/2 X1/8 X20" + } + ] + } + ] + }, + { "leg1": 0.7500, - "leg2": 0.7500 - }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "18466271", - "supplierDescription": "ANGLE - HOT ROLL - A36 - 3/4 X3/4 X1/8 X20" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529G50", - "size": "1\" x 1\" x 1/8\"", - "dimensions": { + "leg2": 0.7500, "thickness": 0.1250, + "type": "Steel", + "grade": "A36", + "size": "3/4\u0022 x 3/4\u0022 x 1/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "18466271", + "supplierDescription": "ANGLE - HOT ROLL - A36 - 3/4 X3/4 X1/8 X20" + } + ] + } + ] + }, + { "leg1": 1.0000, - "leg2": 1.0000 + "leg2": 1.0000, + "thickness": 0.1250, + "type": "Steel", + "grade": "A36/A529G50", + "size": "1\u0022 x 1\u0022 x 1/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "748879", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 1 X1 X1/8 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "748879", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 1 X1 X1/8 X20" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529G50", - "size": "1\" x 1\" x 3/16\"", - "dimensions": { - "thickness": 0.1875, + { "leg1": 1.0000, - "leg2": 1.0000 + "leg2": 1.0000, + "thickness": 0.1875, + "type": "Steel", + "grade": "A36/A529G50", + "size": "1\u0022 x 1\u0022 x 3/16\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "748895", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 1 X1 X3/16 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "748895", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 1 X1 X3/16 X20" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529G50", - "size": "1\" x 1\" x 1/4\"", - "dimensions": { - "thickness": 0.2500, + { "leg1": 1.0000, - "leg2": 1.0000 + "leg2": 1.0000, + "thickness": 0.2500, + "type": "Steel", + "grade": "A36/A529G50", + "size": "1\u0022 x 1\u0022 x 1/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "748924", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 1 X1 X1/4 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "748924", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 1 X1 X1/4 X20" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529G50", - "size": "1-1/4\" x 1-1/4\" x 1/8\"", - "dimensions": { - "thickness": 0.1250, + { "leg1": 1.2500, - "leg2": 1.2500 + "leg2": 1.2500, + "thickness": 0.1250, + "type": "Steel", + "grade": "A36/A529G50", + "size": "1-1/4\u0022 x 1-1/4\u0022 x 1/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "749100", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 1-1/4X1-1/4X1/8 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "749100", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 1-1/4X1-1/4X1/8 X20" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529G50", - "size": "1-1/4\" x 1-1/4\" x 3/16\"", - "dimensions": { - "thickness": 0.1875, + { "leg1": 1.2500, - "leg2": 1.2500 + "leg2": 1.2500, + "thickness": 0.1875, + "type": "Steel", + "grade": "A36/A529G50", + "size": "1-1/4\u0022 x 1-1/4\u0022 x 3/16\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "749151", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 1-1/4X1-1/4X3/16 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "749151", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 1-1/4X1-1/4X3/16 X20" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529G50", - "size": "1-1/4\" x 1-1/4\" x 1/4\"", - "dimensions": { - "thickness": 0.2500, + { "leg1": 1.2500, - "leg2": 1.2500 + "leg2": 1.2500, + "thickness": 0.2500, + "type": "Steel", + "grade": "A36/A529G50", + "size": "1-1/4\u0022 x 1-1/4\u0022 x 1/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "749177", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 1-1/4X1-1/4X1/4 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "749177", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 1-1/4X1-1/4X1/4 X20" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529G50", - "size": "1-1/2\" x 1-1/2\" x 1/8\"", - "dimensions": { - "thickness": 0.1250, + { "leg1": 1.5000, - "leg2": 1.5000 + "leg2": 1.5000, + "thickness": 0.1250, + "type": "Steel", + "grade": "A36/A529G50", + "size": "1-1/2\u0022 x 1-1/2\u0022 x 1/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "749222", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 1-1/2X1-1/2X1/8 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "749222", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 1-1/2X1-1/2X1/8 X20" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529G50", - "size": "1-1/2\" x 1-1/2\" x 3/16\"", - "dimensions": { - "thickness": 0.1875, + { "leg1": 1.5000, - "leg2": 1.5000 + "leg2": 1.5000, + "thickness": 0.1875, + "type": "Steel", + "grade": "A36/A529G50", + "size": "1-1/2\u0022 x 1-1/2\u0022 x 3/16\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "749302", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 1-1/2X1-1/2X3/16X20" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "749337", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 1-1/2X1-1/2X3/16X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "749302", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 1-1/2X1-1/2X3/16X20" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "749337", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 1-1/2X1-1/2X3/16X40" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529G50", - "size": "1-1/2\" x 1-1/2\" x 1/4\"", - "dimensions": { - "thickness": 0.2500, + { "leg1": 1.5000, - "leg2": 1.5000 + "leg2": 1.5000, + "thickness": 0.2500, + "type": "Steel", + "grade": "A36/A529G50", + "size": "1-1/2\u0022 x 1-1/2\u0022 x 1/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "749361", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 1-1/2X1-1/2X1/4X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "749361", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 1-1/2X1-1/2X1/4X20" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529G50", - "size": "1-3/4\" x 1-3/4\" x 1/8\"", - "dimensions": { - "thickness": 0.1250, + { "leg1": 1.7500, - "leg2": 1.7500 - }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "749450", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 1-3/4X1-3/4X1/8X20" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529G50", - "size": "1-3/4\" x 1-3/4\" x 3/16\"", - "dimensions": { - "thickness": 0.1875, - "leg1": 1.7500, - "leg2": 1.7500 - }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "749505", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 1-3/4X1-3/4X3/16X20" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529G50", - "size": "1-3/4\" x 1-3/4\" x 1/4\"", - "dimensions": { - "thickness": 0.2500, - "leg1": 1.7500, - "leg2": 1.7500 - }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "749521", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 1-3/4X1-3/4X1/4X20" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529G50", - "size": "2\" x 1-1/2\" x 1/8\"", - "dimensions": { + "leg2": 1.7500, "thickness": 0.1250, - "leg1": 2.0000, - "leg2": 1.5000 + "type": "Steel", + "grade": "A36/A529G50", + "size": "1-3/4\u0022 x 1-3/4\u0022 x 1/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "749450", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 1-3/4X1-3/4X1/8X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "749564", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 2X1-1/2X1/8X20" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529G50", - "size": "2\" x 1-1/2\" x 3/16\"", - "dimensions": { + { + "leg1": 1.7500, + "leg2": 1.7500, "thickness": 0.1875, - "leg1": 2.0000, - "leg2": 1.5000 + "type": "Steel", + "grade": "A36/A529G50", + "size": "1-3/4\u0022 x 1-3/4\u0022 x 3/16\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "749505", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 1-3/4X1-3/4X3/16X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "749572", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 2X1-1/2X3/16X20" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529G50", - "size": "2\" x 1-1/2\" x 1/4\"", - "dimensions": { + { + "leg1": 1.7500, + "leg2": 1.7500, "thickness": 0.2500, - "leg1": 2.0000, - "leg2": 1.5000 + "type": "Steel", + "grade": "A36/A529G50", + "size": "1-3/4\u0022 x 1-3/4\u0022 x 1/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "749521", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 1-3/4X1-3/4X1/4X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "749599", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 2X1-1/2X1/4X20" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529G50", - "size": "2\" x 2\" x 1/8\"", - "dimensions": { + { + "leg1": 2.0000, + "leg2": 1.5000, "thickness": 0.1250, + "type": "Steel", + "grade": "A36/A529G50", + "size": "2\u0022 x 1-1/2\u0022 x 1/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "749564", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 2X1-1/2X1/8X20" + } + ] + } + ] + }, + { "leg1": 2.0000, - "leg2": 2.0000 - }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "749627", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 2X2X1/8X20" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A572G50", - "size": "2\" x 2\" x 3/16\"", - "dimensions": { + "leg2": 1.5000, "thickness": 0.1875, + "type": "Steel", + "grade": "A36/A529G50", + "size": "2\u0022 x 1-1/2\u0022 x 3/16\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "749572", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 2X1-1/2X3/16X20" + } + ] + } + ] + }, + { "leg1": 2.0000, - "leg2": 2.0000 - }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "749732", - "supplierDescription": "ANGLE - HOT ROLL - A36/A572G50 - 2 X2 X1/4 X20" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "749783", - "supplierDescription": "ANGLE - HOT ROLL - A36/A572G50 - 2 X2 X3/16 X40" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A572G50", - "size": "2\" x 2\" x 1/4\"", - "dimensions": { + "leg2": 1.5000, "thickness": 0.2500, + "type": "Steel", + "grade": "A36/A529G50", + "size": "2\u0022 x 1-1/2\u0022 x 1/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "749599", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 2X1-1/2X1/4X20" + } + ] + } + ] + }, + { "leg1": 2.0000, - "leg2": 2.0000 + "leg2": 2.0000, + "thickness": 0.1250, + "type": "Steel", + "grade": "A36/A529G50", + "size": "2\u0022 x 2\u0022 x 1/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "749627", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 2X2X1/8X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "749978", - "supplierDescription": "ANGLE - HOT ROLL - A36/A572G50 - 2 X2 X1/4 X20" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "750021", - "supplierDescription": "ANGLE - HOT ROLL - A36/A572G50 - 2 X2 X1/4 X40" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A572G50", - "size": "2\" x 2\" x 5/16\"", - "dimensions": { - "thickness": 0.3125, + { "leg1": 2.0000, - "leg2": 2.0000 + "leg2": 2.0000, + "thickness": 0.1875, + "type": "Steel", + "grade": "A36/A572G50", + "size": "2\u0022 x 2\u0022 x 3/16\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "749732", + "supplierDescription": "ANGLE - HOT ROLL - A36/A572G50 - 2 X2 X1/4 X20" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "749783", + "supplierDescription": "ANGLE - HOT ROLL - A36/A572G50 - 2 X2 X3/16 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "750047", - "supplierDescription": "ANGLE - HOT ROLL - A36/A572G50 - 2 X2 X5/16 X20" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A572G50", - "size": "2\" x 2\" x 3/8\"", - "dimensions": { - "thickness": 0.3750, + { "leg1": 2.0000, - "leg2": 2.0000 + "leg2": 2.0000, + "thickness": 0.2500, + "type": "Steel", + "grade": "A36/A572G50", + "size": "2\u0022 x 2\u0022 x 1/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "749978", + "supplierDescription": "ANGLE - HOT ROLL - A36/A572G50 - 2 X2 X1/4 X20" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "750021", + "supplierDescription": "ANGLE - HOT ROLL - A36/A572G50 - 2 X2 X1/4 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "750055", - "supplierDescription": "ANGLE - HOT ROLL - A36/A572G50 - 2 X2 X3/8 X20" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "750071", - "supplierDescription": "ANGLE - HOT ROLL - A36/A572G50 - 2 X2 X3/8 X40" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A572G50", - "size": "2-1/2\" x 1-1/2\" x 3/16\"", - "dimensions": { + { + "leg1": 2.0000, + "leg2": 2.0000, + "thickness": 0.3125, + "type": "Steel", + "grade": "A36/A572G50", + "size": "2\u0022 x 2\u0022 x 5/16\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "750047", + "supplierDescription": "ANGLE - HOT ROLL - A36/A572G50 - 2 X2 X5/16 X20" + } + ] + } + ] + }, + { + "leg1": 2.0000, + "leg2": 2.0000, + "thickness": 0.3750, + "type": "Steel", + "grade": "A36/A572G50", + "size": "2\u0022 x 2\u0022 x 3/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "750055", + "supplierDescription": "ANGLE - HOT ROLL - A36/A572G50 - 2 X2 X3/8 X20" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "750071", + "supplierDescription": "ANGLE - HOT ROLL - A36/A572G50 - 2 X2 X3/8 X40" + } + ] + } + ] + }, + { + "leg1": 2.5000, + "leg2": 1.5000, "thickness": 0.1875, - "leg1": 2.5000, - "leg2": 1.5000 + "type": "Steel", + "grade": "A36/A572G50", + "size": "2-1/2\u0022 x 1-1/2\u0022 x 3/16\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "750080", + "supplierDescription": "ANGLE - HOT ROLL - A36/A572G50 - 2 1/2 X2 X3/16 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "750080", - "supplierDescription": "ANGLE - HOT ROLL - A36/A572G50 - 2 1/2 X2 X3/16 X20" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529G50", - "size": "2-1/2\" x 2\" x 3/16\"", - "dimensions": { + { + "leg1": 2.5000, + "leg2": 2.0000, "thickness": 0.1875, - "leg1": 2.5000, - "leg2": 2.0000 + "type": "Steel", + "grade": "A36/A529G50", + "size": "2-1/2\u0022 x 2\u0022 x 3/16\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "750143", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 2-1/2X2 1/3X16X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "750143", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 2-1/2X2 1/3X16X20" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529G50", - "size": "2-1/2\" x 2\" x 1/4\"", - "dimensions": { + { + "leg1": 2.5000, + "leg2": 2.0000, "thickness": 0.2500, - "leg1": 2.5000, - "leg2": 2.0000 + "type": "Steel", + "grade": "A36/A529G50", + "size": "2-1/2\u0022 x 2\u0022 x 1/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "750223", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 2-1/2X2 X1/4 X20" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "750258", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 2-1/2X2 X1/4 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "750223", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 2-1/2X2 X1/4 X20" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "750258", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 2-1/2X2 X1/4 X40" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529G50", - "size": "2-1/2\" x 2-1/2\" x 3/16\"", - "dimensions": { + { + "leg1": 2.5000, + "leg2": 2.5000, "thickness": 0.1875, - "leg1": 2.5000, - "leg2": 2.5000 + "type": "Steel", + "grade": "A36/A529G50", + "size": "2-1/2\u0022 x 2-1/2\u0022 x 3/16\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "750303", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 2-1/2X2 1/2X3/16 X20" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "750338", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 2-1/2X2-1/2X3/16X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "750303", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 2-1/2X2 1/2X3/16 X20" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "750338", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 2-1/2X2-1/2X3/16X40" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529G50", - "size": "2-1/2\" x 2-1/2\" x 1/4\"", - "dimensions": { + { + "leg1": 2.5000, + "leg2": 2.5000, "thickness": 0.2500, - "leg1": 2.5000, - "leg2": 2.5000 + "type": "Steel", + "grade": "A36/A529G50", + "size": "2-1/2\u0022 x 2-1/2\u0022 x 1/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "750418", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 2-1/2X2-1/2X1/4 X20" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "750434", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 2-1/2X2-1/2X1/4 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "750418", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 2-1/2X2-1/2X1/4 X20" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "750434", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 2-1/2X2-1/2X1/4 X40" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529G50", - "size": "2-1/2\" x 2-1/2\" x 5/16\"", - "dimensions": { + { + "leg1": 2.5000, + "leg2": 2.5000, "thickness": 0.3125, - "leg1": 2.5000, - "leg2": 2.5000 + "type": "Steel", + "grade": "A36/A529G50", + "size": "2-1/2\u0022 x 2-1/2\u0022 x 5/16\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "750442", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 2-1/2X2 5/16 X20" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "750471", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 2-1/2X2 5/16 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "750442", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 2-1/2X2 5/16 X20" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "750471", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 2-1/2X2 5/16 X40" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529G50", - "size": "2-1/2\" x 2-1/2\" x 3/8\"", - "dimensions": { + { + "leg1": 2.5000, + "leg2": 2.5000, "thickness": 0.3750, - "leg1": 2.5000, - "leg2": 2.5000 + "type": "Steel", + "grade": "A36/A529G50", + "size": "2-1/2\u0022 x 2-1/2\u0022 x 3/8\u0022", + "stockItems": [ + { + "lengthInches": 40.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "750477", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 2-1/2x2-1/2x3/8x40" + } + ] + }, + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "750488", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 2-1/2X2 3/8 X20" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "750497", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 2-1/2X2 3/8 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 40.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "750477", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 2-1/2x2-1/2x3/8x40" - } - ] - }, - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "750488", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 2-1/2X2 3/8 X20" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "750497", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 2-1/2X2 3/8 X40" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529G50", - "size": "2-1/2\" x 2-1/2\" x 1/2\"", - "dimensions": { + { + "leg1": 2.5000, + "leg2": 2.5000, "thickness": 0.5000, - "leg1": 2.5000, - "leg2": 2.5000 + "type": "Steel", + "grade": "A36/A529G50", + "size": "2-1/2\u0022 x 2-1/2\u0022 x 1/2\u0022", + "stockItems": [ + { + "lengthInches": 20.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "750493", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 2-1/2x2-1/2x1/2x20" + } + ] + }, + { + "lengthInches": 40.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "750506", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 2-1/2x2-1/2x1/2x40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 20.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "750493", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 2-1/2x2-1/2x1/2x20" - } - ] - }, - { - "lengthInches": 40.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "750506", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 2-1/2x2-1/2x1/2x40" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529G50", - "size": "3\" x 2\" x 3/16\"", - "dimensions": { + { + "leg1": 3.0000, + "leg2": 2.0000, "thickness": 0.1875, - "leg1": 3.0000, - "leg2": 2.0000 + "type": "Steel", + "grade": "A36/A529G50", + "size": "3\u0022 x 2\u0022 x 3/16\u0022", + "stockItems": [ + { + "lengthInches": 20.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "750741", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 3x2x3/16x20" + } + ] + }, + { + "lengthInches": 40.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "750750", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 3x2x3/16x40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 20.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "750741", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 3x2x3/16x20" - } - ] - }, - { - "lengthInches": 40.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "750750", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 3x2x3/16x40" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529G50", - "size": "3\" x 2\" x 1/4\"", - "dimensions": { + { + "leg1": 3.0000, + "leg2": 2.0000, "thickness": 0.2500, - "leg1": 3.0000, - "leg2": 2.0000 + "type": "Steel", + "grade": "A36/A529G50", + "size": "3\u0022 x 2\u0022 x 1/4\u0022", + "stockItems": [ + { + "lengthInches": 20.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "750856", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 3x2x1/4x20" + } + ] + }, + { + "lengthInches": 40.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "750881", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 3x2x1/4x40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 20.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "750856", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 3x2x1/4x20" - } - ] - }, - { - "lengthInches": 40.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "750881", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 3x2x1/4x40" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529G50", - "size": "3\" x 2\" x 5/16\"", - "dimensions": { + { + "leg1": 3.0000, + "leg2": 2.0000, "thickness": 0.3125, - "leg1": 3.0000, - "leg2": 2.0000 + "type": "Steel", + "grade": "A36/A529G50", + "size": "3\u0022 x 2\u0022 x 5/16\u0022", + "stockItems": [ + { + "lengthInches": 20.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "750910", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 3x2x5/16x20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 20.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "750910", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 3x2x5/16x20" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529G50", - "size": "3\" x 2\" x 3/8\"", - "dimensions": { + { + "leg1": 3.0000, + "leg2": 2.0000, "thickness": 0.3750, - "leg1": 3.0000, - "leg2": 2.0000 + "type": "Steel", + "grade": "A36/A529G50", + "size": "3\u0022 x 2\u0022 x 3/8\u0022", + "stockItems": [ + { + "lengthInches": 20.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "750936", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 3x2x3/8x20" + } + ] + }, + { + "lengthInches": 40.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "750944", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 3x2x3/8x40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 20.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "750936", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 3x2x3/8x20" - } - ] - }, - { - "lengthInches": 40.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "750944", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 3x2x3/8x40" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529G50", - "size": "3\" x 3\" x 1/4\"", - "dimensions": { + { + "leg1": 3.0000, + "leg2": 3.0000, "thickness": 0.2500, - "leg1": 3.0000, - "leg2": 3.0000 + "type": "Steel", + "grade": "A36/A529G50", + "size": "3\u0022 x 3\u0022 x 1/4\u0022", + "stockItems": [ + { + "lengthInches": 20.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "751022", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 3x3x1/4x20" + } + ] + }, + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "751162", + "supplierDescription": "ANGLE HOT ROLL A36/A529G50 3 X 3 X 1/4 X20" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "751242", + "supplierDescription": "ANGLE HOT ROLL A36/A529G50 3 X 3 X 1/4 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 20.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "751022", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 3x3x1/4x20" - } - ] - }, - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "751162", - "supplierDescription": "ANGLE HOT ROLL A36/A529G50 3 X 3 X 1/4 X20" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "751242", - "supplierDescription": "ANGLE HOT ROLL A36/A529G50 3 X 3 X 1/4 X40" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529G50", - "size": "3\" x 2-1/2\" x 1/4\"", - "dimensions": { + { + "leg1": 3.0000, + "leg2": 2.5000, "thickness": 0.2500, - "leg1": 3.0000, - "leg2": 2.5000 + "type": "Steel", + "grade": "A36/A529G50", + "size": "3\u0022 x 2-1/2\u0022 x 1/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "750987", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 3 X2-1/2X1/4 X20" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "750995", + "supplierDescription": "ANGLE HOT ROLL A36/A529G50 3 X 2-1/2 X 1/4 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "750987", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 3 X2-1/2X1/4 X20" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "750995", - "supplierDescription": "ANGLE HOT ROLL A36/A529G50 3 X 2-1/2 X 1/4 X40" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529G50", - "size": "3\" x 2-1/2\" x 3/8\"", - "dimensions": { + { + "leg1": 3.0000, + "leg2": 2.5000, "thickness": 0.3750, - "leg1": 3.0000, - "leg2": 2.5000 + "type": "Steel", + "grade": "A36/A529G50", + "size": "3\u0022 x 2-1/2\u0022 x 3/8\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "751066", + "supplierDescription": "ANGLE HOT ROLL A36/A529G50 3 X 2-1/2 X 3/8 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "751066", - "supplierDescription": "ANGLE HOT ROLL A36/A529G50 3 X 2-1/2 X 3/8 X40" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529G50", - "size": "3\" x 3\" x 3/16\"", - "dimensions": { + { + "leg1": 3.0000, + "leg2": 3.0000, "thickness": 0.1875, + "type": "Steel", + "grade": "A36/A529G50", + "size": "3\u0022 x 3\u0022 x 3/16\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "751074", + "supplierDescription": "ANGLE HOT ROLL A36/A529G50 3 X 3 X 3/16 X20" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "751103", + "supplierDescription": "ANGLE HOT ROLL A36/A529G50 3 X 3 X 3/16 X40" + } + ] + } + ] + }, + { "leg1": 3.0000, - "leg2": 3.0000 - }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "751074", - "supplierDescription": "ANGLE HOT ROLL A36/A529G50 3 X 3 X 3/16 X20" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "751103", - "supplierDescription": "ANGLE HOT ROLL A36/A529G50 3 X 3 X 3/16 X40" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529G50", - "size": "3\" x 3\" x 5/16\"", - "dimensions": { + "leg2": 3.0000, "thickness": 0.3125, + "type": "Steel", + "grade": "A36/A529G50", + "size": "3\u0022 x 3\u0022 x 5/16\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "751285", + "supplierDescription": "ANGLE HOT ROLL A36/A529G50 3 X 3 X 5/16 X20" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "751293", + "supplierDescription": "ANGLE HOT ROLL A36/A529G50 3 X 3 X 5/16 X40" + } + ] + } + ] + }, + { "leg1": 3.0000, - "leg2": 3.0000 - }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "751285", - "supplierDescription": "ANGLE HOT ROLL A36/A529G50 3 X 3 X 5/16 X20" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "751293", - "supplierDescription": "ANGLE HOT ROLL A36/A529G50 3 X 3 X 5/16 X40" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529G50", - "size": "3\" x 3\" x 3/8\"", - "dimensions": { + "leg2": 3.0000, "thickness": 0.3750, + "type": "Steel", + "grade": "A36/A529G50", + "size": "3\u0022 x 3\u0022 x 3/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "751322", + "supplierDescription": "ANGLE HOT ROLL A36/A529G50 3 X 3 X 3/8 X20" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "751365", + "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 3 X 3 X3/8 X40" + } + ] + } + ] + }, + { "leg1": 3.0000, - "leg2": 3.0000 - }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "751322", - "supplierDescription": "ANGLE HOT ROLL A36/A529G50 3 X 3 X 3/8 X20" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "751365", - "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 3 X 3 X3/8 X40" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A52950", - "size": "3\" x 3\" x 1/2\"", - "dimensions": { + "leg2": 3.0000, "thickness": 0.5000, + "type": "Steel", + "grade": "A36/A52950", + "size": "3\u0022 x 3\u0022 x 1/2\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "751402", + "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 3 X 3 X1/2 X20" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "751411", + "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 3 X 3 X1/2 X40" + } + ] + } + ] + }, + { "leg1": 3.0000, - "leg2": 3.0000 - }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "751402", - "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 3 X 3 X1/2 X20" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "751411", - "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 3 X 3 X1/2 X40" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A52950", - "size": "3\" x 2\" x 1/2\"", - "dimensions": { + "leg2": 2.0000, "thickness": 0.5000, - "leg1": 3.0000, - "leg2": 2.0000 + "type": "Steel", + "grade": "A36/A52950", + "size": "3\u0022 x 2\u0022 x 1/2\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "891034", + "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 3 X 2 X1/2 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "891034", - "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 3 X 2 X1/2 X20" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A52950", - "size": "3-1/2\" x 2-1/2\" x 1/4\"", - "dimensions": { - "thickness": 0.2500, + { "leg1": 3.5000, - "leg2": 2.5000 + "leg2": 2.5000, + "thickness": 0.2500, + "type": "Steel", + "grade": "A36/A52950", + "size": "3-1/2\u0022 x 2-1/2\u0022 x 1/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "751461", + "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 3-1/2X2-1/2X1/4 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "751461", - "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 3-1/2X2-1/2X1/4 X20" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A52950", - "size": "3-1/2\" x 2-1/2\" x 3/8\"", - "dimensions": { + { + "leg1": 3.5000, + "leg2": 2.5000, "thickness": 0.3750, - "leg1": 3.5000, - "leg2": 2.5000 + "type": "Steel", + "grade": "A36/A52950", + "size": "3-1/2\u0022 x 2-1/2\u0022 x 3/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "751525", + "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 3-1/2X2-1/2X3/8 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "751525", - "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 3-1/2X2-1/2X3/8 X20" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A52950", - "size": "3-1/2\" x 3\" x 1/4\"", - "dimensions": { + { + "leg1": 3.5000, + "leg2": 3.0000, "thickness": 0.2500, - "leg1": 3.5000, - "leg2": 3.0000 + "type": "Steel", + "grade": "A36/A52950", + "size": "3-1/2\u0022 x 3\u0022 x 1/4\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "751568", + "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 3-1/2X3 X1/4 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "751568", - "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 3-1/2X3 X1/4 X40" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A52950", - "size": "3-1/2\" x 3\" x 5/16\"", - "dimensions": { + { + "leg1": 3.5000, + "leg2": 3.0000, "thickness": 0.3125, - "leg1": 3.5000, - "leg2": 3.0000 + "type": "Steel", + "grade": "A36/A52950", + "size": "3-1/2\u0022 x 3\u0022 x 5/16\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "751592", + "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 3-1/2X3 X5/16\u0022 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "751592", - "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 3-1/2X3 X5/16\" X40" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A52950", - "size": "3-1/2\" x 3\" x 3/8\"", - "dimensions": { + { + "leg1": 3.5000, + "leg2": 3.0000, "thickness": 0.3750, - "leg1": 3.5000, - "leg2": 3.0000 + "type": "Steel", + "grade": "A36/A52950", + "size": "3-1/2\u0022 x 3\u0022 x 3/8\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "751619", + "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 3-1/2X3 X3/8\u0022 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "751619", - "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 3-1/2X3 X3/8\" X40" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A52950", - "size": "3-1/2\" x 3-1/2\" x 1/4\"", - "dimensions": { + { + "leg1": 3.5000, + "leg2": 3.5000, "thickness": 0.2500, - "leg1": 3.5000, - "leg2": 3.5000 + "type": "Steel", + "grade": "A36/A52950", + "size": "3-1/2\u0022 x 3-1/2\u0022 x 1/4\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "751664", + "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 3-1/2X3-1/2X1/4 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "751664", - "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 3-1/2X3-1/2X1/4 X40" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A52950", - "size": "3-1/2\" x 3-1/2\" x 5/16\"", - "dimensions": { + { + "leg1": 3.5000, + "leg2": 3.5000, "thickness": 0.3125, - "leg1": 3.5000, - "leg2": 3.5000 + "type": "Steel", + "grade": "A36/A52950", + "size": "3-1/2\u0022 x 3-1/2\u0022 x 5/16\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "751701", + "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 3-1/2X3-1/2X5/16 X20" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "751710", + "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 3-1/2X3-1/2X5/16 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "751701", - "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 3-1/2X3-1/2X5/16 X20" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "751710", - "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 3-1/2X3-1/2X5/16 X40" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A52950", - "size": "3-1/2\" x 3-1/2\" x 3/8\"", - "dimensions": { + { + "leg1": 3.5000, + "leg2": 3.5000, "thickness": 0.3750, - "leg1": 3.5000, - "leg2": 3.5000 + "type": "Steel", + "grade": "A36/A52950", + "size": "3-1/2\u0022 x 3-1/2\u0022 x 3/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "751736", + "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 3-1/2X3-1/2X3/8 X20" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "751744", + "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 3-1/2X3-1/2X3/8 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "751736", - "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 3-1/2X3-1/2X3/8 X20" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "751744", - "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 3-1/2X3-1/2X3/8 X40" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A52950", - "size": "3-1/2\" x 3-1/2\" x 1/2\"", - "dimensions": { + { + "leg1": 3.5000, + "leg2": 3.5000, "thickness": 0.5000, - "leg1": 3.5000, - "leg2": 3.5000 + "type": "Steel", + "grade": "A36/A52950", + "size": "3-1/2\u0022 x 3-1/2\u0022 x 1/2\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "751752", + "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 3-1/2X3-1/2X1/2 X20" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "751779", + "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 3-1/2X3-1/2X1/2 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "751752", - "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 3-1/2X3-1/2X1/2 X20" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "751779", - "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 3-1/2X3-1/2X1/2 X40" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A52950", - "size": "4\" x 3\" x 1/4\"", - "dimensions": { + { + "leg1": 4.0000, + "leg2": 3.0000, "thickness": 0.2500, - "leg1": 4.0000, - "leg2": 3.0000 + "type": "Steel", + "grade": "A36/A52950", + "size": "4\u0022 x 3\u0022 x 1/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "751808", + "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 4 X3 X1/4 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "751808", - "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 4 X3 X1/4 X20" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A52950", - "size": "4\" x 3\" x 3/8\"", - "dimensions": { + { + "leg1": 4.0000, + "leg2": 3.0000, "thickness": 0.3750, - "leg1": 4.0000, - "leg2": 3.0000 + "type": "Steel", + "grade": "A36/A52950", + "size": "4\u0022 x 3\u0022 x 3/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "751841", + "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 4 X3 X3/8 X20" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "751955", + "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 4 X 3 X 3/8 X 40\u0027" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "751841", - "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 4 X3 X3/8 X20" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "751955", - "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 4 X 3 X 3/8 X 40'" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A52950", - "size": "4\" x 3\" x 5/16\"", - "dimensions": { + { + "leg1": 4.0000, + "leg2": 3.0000, "thickness": 0.3125, - "leg1": 4.0000, - "leg2": 3.0000 + "type": "Steel", + "grade": "A36/A52950", + "size": "4\u0022 x 3\u0022 x 5/16\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "751867", + "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 4 X3 X5/16 X20" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "751875", + "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 4 X 3 X 5/16 X 40\u0027" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "751867", - "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 4 X3 X5/16 X20" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "751875", - "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 4 X 3 X 5/16 X 40'" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A52950", - "size": "4\" x 3\" x 1/2\"", - "dimensions": { + { + "leg1": 4.0000, + "leg2": 3.0000, "thickness": 0.5000, - "leg1": 4.0000, - "leg2": 3.0000 + "type": "Steel", + "grade": "A36/A52950", + "size": "4\u0022 x 3\u0022 x 1/2\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "751971", + "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 4 X 3 X 1/2 X 20\u0027" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "751980", + "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 4 X 3 X 1/2 X 40\u0027" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "751971", - "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 4 X 3 X 1/2 X 20'" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "751980", - "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 4 X 3 X 1/2 X 40'" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A52950", - "size": "4\" x 3-1/2\" x 1/4\"", - "dimensions": { + { + "leg1": 4.0000, + "leg2": 3.5000, "thickness": 0.2500, - "leg1": 4.0000, - "leg2": 3.5000 + "type": "Steel", + "grade": "A36/A52950", + "size": "4\u0022 x 3-1/2\u0022 x 1/4\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "752018", + "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 4 X 3 1/2 X 1/4 X 40\u0027" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "752018", - "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 4 X 3 1/2 X 1/4 X 40'" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A52950", - "size": "4\" x 3-1/2\" x 5/16\"", - "dimensions": { + { + "leg1": 4.0000, + "leg2": 3.5000, "thickness": 0.3125, - "leg1": 4.0000, - "leg2": 3.5000 + "type": "Steel", + "grade": "A36/A52950", + "size": "4\u0022 x 3-1/2\u0022 x 5/16\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "752042", + "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 4 X 3 1/2 X 5/16 X 40\u0027" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "752042", - "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 4 X 3 1/2 X 5/16 X 40'" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A52950", - "size": "4\" x 3-1/2\" x 3/8\"", - "dimensions": { + { + "leg1": 4.0000, + "leg2": 3.5000, "thickness": 0.3750, - "leg1": 4.0000, - "leg2": 3.5000 + "type": "Steel", + "grade": "A36/A52950", + "size": "4\u0022 x 3-1/2\u0022 x 3/8\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "752085", + "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 4 X 3 1/2 X 3/8 X 40\u0027" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "752085", - "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 4 X 3 1/2 X 3/8 X 40'" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A52950", - "size": "4\" x 4\" x 1/4\"", - "dimensions": { + { + "leg1": 4.0000, + "leg2": 4.0000, "thickness": 0.2500, - "leg1": 4.0000, - "leg2": 4.0000 + "type": "Steel", + "grade": "A36/A52950", + "size": "4\u0022 x 4\u0022 x 1/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "752131", + "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 4 X 4 X 1/4 X 20\u0027" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "752173", + "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 4 X 4 X 1/4 X 40\u0027" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "752131", - "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 4 X 4 X 1/4 X 20'" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "752173", - "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 4 X 4 X 1/4 X 40'" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A52950", - "size": "4\" x 4\" x 5/16\"", - "dimensions": { + { + "leg1": 4.0000, + "leg2": 4.0000, "thickness": 0.3125, - "leg1": 4.0000, - "leg2": 4.0000 + "type": "Steel", + "grade": "A36/A52950", + "size": "4\u0022 x 4\u0022 x 5/16\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "752190", + "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 4 X 4 X 5/16 X 20\u0027" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "752211", + "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 4 X 4 X 5/16 X 40\u0027" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "752190", - "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 4 X 4 X 5/16 X 20'" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "752211", - "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 4 X 4 X 5/16 X 40'" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A52950", - "size": "4\" x 4\" x 3/8\"", - "dimensions": { + { + "leg1": 4.0000, + "leg2": 4.0000, "thickness": 0.3750, - "leg1": 4.0000, - "leg2": 4.0000 + "type": "Steel", + "grade": "A36/A52950", + "size": "4\u0022 x 4\u0022 x 3/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "752237", + "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 4 X 4 X 3/8 X 20\u0027" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "752261", + "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 4 X 4 X 3/8 X 40\u0027" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "752237", - "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 4 X 4 X 3/8 X 20'" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "752261", - "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 4 X 4 X 3/8 X 40'" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A52950", - "size": "4\" x 4\" x 1/2\"", - "dimensions": { + { + "leg1": 4.0000, + "leg2": 4.0000, "thickness": 0.5000, - "leg1": 4.0000, - "leg2": 4.0000 + "type": "Steel", + "grade": "A36/A52950", + "size": "4\u0022 x 4\u0022 x 1/2\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "752309", + "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 4 X 4 X 1/2 X 20\u0027" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "752333", + "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 4 X 4 X 1/2 X 40\u0027" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "752309", - "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 4 X 4 X 1/2 X 20'" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "752333", - "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 4 X 4 X 1/2 X 40'" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A52950", - "size": "4\" x 4\" x 5/8\"", - "dimensions": { + { + "leg1": 4.0000, + "leg2": 4.0000, "thickness": 0.6250, + "type": "Steel", + "grade": "A36/A52950", + "size": "4\u0022 x 4\u0022 x 5/8\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "752350", + "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 4 X 4 X 5/8 X 40\u0027" + } + ] + } + ] + }, + { "leg1": 4.0000, - "leg2": 4.0000 - }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "752350", - "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 4 X 4 X 5/8 X 40'" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A52950", - "size": "4\" x 4\" x 3/4\"", - "dimensions": { + "leg2": 4.0000, "thickness": 0.7500, - "leg1": 4.0000, - "leg2": 4.0000 + "type": "Steel", + "grade": "A36/A52950", + "size": "4\u0022 x 4\u0022 x 3/4\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "752384", + "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 4 X 4 X 3/4 X 40\u0027" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "752384", - "supplierDescription": "ANGLE - HOT ROLL - A36/A52950 - 4 X 4 X 3/4 X 40'" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529650", - "size": "5\" x 3\" x 1/4\"", - "dimensions": { + { + "leg1": 5.0000, + "leg2": 3.0000, "thickness": 0.2500, - "leg1": 5.0000, - "leg2": 3.0000 + "type": "Steel", + "grade": "A36/A529650", + "size": "5\u0022 x 3\u0022 x 1/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "752608", + "supplierDescription": "ANGLE - HOT ROLL - 5 X 3 X 1/4 X 20\u0027" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "752641", + "supplierDescription": "ANGLE - HOT ROLL - 5 X 3 X 1/4 X 40\u0027" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "752608", - "supplierDescription": "ANGLE - HOT ROLL - 5 X 3 X 1/4 X 20'" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "752641", - "supplierDescription": "ANGLE - HOT ROLL - 5 X 3 X 1/4 X 40'" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529G50", - "size": "5\" x 3\" x 5/16\"", - "dimensions": { + { + "leg1": 5.0000, + "leg2": 3.0000, "thickness": 0.3125, - "leg1": 5.0000, - "leg2": 3.0000 + "type": "Steel", + "grade": "A36/A529G50", + "size": "5\u0022 x 3\u0022 x 5/16\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "752675", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 5 X3 X5/16X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "752675", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 5 X3 X5/16X40" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529650", - "size": "5\" x 3\" x 3/8\"", - "dimensions": { + { + "leg1": 5.0000, + "leg2": 3.0000, "thickness": 0.3750, - "leg1": 5.0000, - "leg2": 3.0000 + "type": "Steel", + "grade": "A36/A529650", + "size": "5\u0022 x 3\u0022 x 3/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "752712", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529650 - 5 X 3 X3/8 X20" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "752755", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529650 - 5 X 3 X3/8 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "752712", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529650 - 5 X 3 X3/8 X20" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "752755", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529650 - 5 X 3 X3/8 X40" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529650", - "size": "5\" x 3\" x 1/2\"", - "dimensions": { + { + "leg1": 5.0000, + "leg2": 3.0000, "thickness": 0.5000, - "leg1": 5.0000, - "leg2": 3.0000 + "type": "Steel", + "grade": "A36/A529650", + "size": "5\u0022 x 3\u0022 x 1/2\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "752780", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529650 - 5 X 3 X1/2 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "752780", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529650 - 5 X 3 X1/2 X40" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529650", - "size": "5\" x 3-1/2\" x 1/4\"", - "dimensions": { + { + "leg1": 5.0000, + "leg2": 3.5000, "thickness": 0.2500, - "leg1": 5.0000, - "leg2": 3.5000 + "type": "Steel", + "grade": "A36/A529650", + "size": "5\u0022 x 3-1/2\u0022 x 1/4\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "752801", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529650 - 5 X 3-1/2 X1/4 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "752801", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529650 - 5 X 3-1/2 X1/4 X40" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529650", - "size": "5\" x 3-1/2\" x 5/16\"", - "dimensions": { + { + "leg1": 5.0000, + "leg2": 3.5000, "thickness": 0.3125, - "leg1": 5.0000, - "leg2": 3.5000 + "type": "Steel", + "grade": "A36/A529650", + "size": "5\u0022 x 3-1/2\u0022 x 5/16\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "752835", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529650 - 5 X 3-1/2 X5/16 X20" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "752860", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529650 - 5 X 3-1/2 X5/16 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "752835", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529650 - 5 X 3-1/2 X5/16 X20" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "752860", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529650 - 5 X 3-1/2 X5/16 X40" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529650", - "size": "5\" x 3-1/2\" x 3/8\"", - "dimensions": { + { + "leg1": 5.0000, + "leg2": 3.5000, "thickness": 0.3750, - "leg1": 5.0000, - "leg2": 3.5000 + "type": "Steel", + "grade": "A36/A529650", + "size": "5\u0022 x 3-1/2\u0022 x 3/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "752886", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529650 - 5 X 3-1/2 X3/8 X20" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "752907", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529650 - 5 X 3-1/2 X3/8 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "752886", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529650 - 5 X 3-1/2 X3/8 X20" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "752907", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529650 - 5 X 3-1/2 X3/8 X40" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529650", - "size": "5\" x 3-1/2\" x 1/2\"", - "dimensions": { + { + "leg1": 5.0000, + "leg2": 3.5000, "thickness": 0.5000, - "leg1": 5.0000, - "leg2": 3.5000 + "type": "Steel", + "grade": "A36/A529650", + "size": "5\u0022 x 3-1/2\u0022 x 1/2\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "752955", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529650 - 5 X 3-1/2 X1/2 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "752955", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529650 - 5 X 3-1/2 X1/2 X40" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529G50", - "size": "5\" x 5\" x 5/16\"", - "dimensions": { + { + "leg1": 5.0000, + "leg2": 5.0000, "thickness": 0.3125, - "leg1": 5.0000, - "leg2": 5.0000 + "type": "Steel", + "grade": "A36/A529G50", + "size": "5\u0022 x 5\u0022 x 5/16\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "752982", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 5 X 5 X 1/4" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "753002", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 5 X 5 X 5/16X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "752982", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 5 X 5 X 1/4" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "753002", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 5 X 5 X 5/16X40" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529G50", - "size": "5\" x 5\" x 3/8\"", - "dimensions": { + { + "leg1": 5.0000, + "leg2": 5.0000, "thickness": 0.3750, - "leg1": 5.0000, - "leg2": 5.0000 + "type": "Steel", + "grade": "A36/A529G50", + "size": "5\u0022 x 5\u0022 x 3/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "753029", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 5 X 5 X 3/8" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "753053", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 5 X 5 X 3/8" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "753029", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 5 X 5 X 3/8" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "753053", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 5 X 5 X 3/8" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529G50", - "size": "5\" x 5\" x 1/2\"", - "dimensions": { + { + "leg1": 5.0000, + "leg2": 5.0000, "thickness": 0.5000, - "leg1": 5.0000, - "leg2": 5.0000 + "type": "Steel", + "grade": "A36/A529G50", + "size": "5\u0022 x 5\u0022 x 1/2\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "753088", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 5 X 5 X 1/2" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "753109", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 5 X 5 X 1/2" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "753088", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 5 X 5 X 1/2" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "753109", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 5 X 5 X 1/2" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529G50", - "size": "5\" x 5\" x 3/4\"", - "dimensions": { + { + "leg1": 5.0000, + "leg2": 5.0000, "thickness": 0.7500, - "leg1": 5.0000, - "leg2": 5.0000 + "type": "Steel", + "grade": "A36/A529G50", + "size": "5\u0022 x 5\u0022 x 3/4\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "753141", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 5 X 5 X 3/4" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "753141", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 5 X 5 X 3/4" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529G50", - "size": "6\" x 3-1/2\" x 5/16\"", - "dimensions": { + { + "leg1": 6.0000, + "leg2": 3.5000, "thickness": 0.3125, - "leg1": 6.0000, - "leg2": 3.5000 + "type": "Steel", + "grade": "A36/A529G50", + "size": "6\u0022 x 3-1/2\u0022 x 5/16\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "753184", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 6 X 3-1/2 X 5/16" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "753184", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 6 X 3-1/2 X 5/16" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529G50", - "size": "6\" x 3-1/2\" x 3/8\"", - "dimensions": { + { + "leg1": 6.0000, + "leg2": 3.5000, "thickness": 0.3750, - "leg1": 6.0000, - "leg2": 3.5000 + "type": "Steel", + "grade": "A36/A529G50", + "size": "6\u0022 x 3-1/2\u0022 x 3/8\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "753221", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 6 X 3-1/2 X 3/8" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "753221", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 6 X 3-1/2 X 3/8" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529G50", - "size": "6\" x 3-1/2\" x 1/2\"", - "dimensions": { + { + "leg1": 6.0000, + "leg2": 3.5000, "thickness": 0.5000, - "leg1": 6.0000, - "leg2": 3.5000 + "type": "Steel", + "grade": "A36/A529G50", + "size": "6\u0022 x 3-1/2\u0022 x 1/2\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "753272", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 6 X 3-1/2 X 1/2" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "753272", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 6 X 3-1/2 X 1/2" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529G50", - "size": "6\" x 4\" x 5/16\"", - "dimensions": { + { + "leg1": 6.0000, + "leg2": 4.0000, "thickness": 0.3125, - "leg1": 6.0000, - "leg2": 4.0000 + "type": "Steel", + "grade": "A36/A529G50", + "size": "6\u0022 x 4\u0022 x 5/16\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "753299", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 6 X 4 X 3/8 X 20\u0027" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "753301", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 6 X 4 X 5/16 X 40\u0027" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "753299", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 6 X 4 X 3/8 X 20'" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "753301", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 6 X 4 X 5/16 X 40'" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529G50", - "size": "6\" x 4\" x 3/8\"", - "dimensions": { + { + "leg1": 6.0000, + "leg2": 4.0000, "thickness": 0.3750, - "leg1": 6.0000, - "leg2": 4.0000 + "type": "Steel", + "grade": "A36/A529G50", + "size": "6\u0022 x 4\u0022 x 3/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "753336", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 6 X 4 X 3/8 X 20\u0027" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "753361", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 6 X 4 X 3/8 X 40\u0027" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "753336", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 6 X 4 X 3/8 X 20'" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "753361", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 6 X 4 X 3/8 X 40'" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529G50", - "size": "6\" x 4\" x 1/2\"", - "dimensions": { + { + "leg1": 6.0000, + "leg2": 4.0000, "thickness": 0.5000, - "leg1": 6.0000, - "leg2": 4.0000 + "type": "Steel", + "grade": "A36/A529G50", + "size": "6\u0022 x 4\u0022 x 1/2\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "754146", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 6 X 4 X 1/2 X 20\u0027" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "754244", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 6 X 4 X 1/2 X 40\u0027" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "754146", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 6 X 4 X 1/2 X 20'" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "754244", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 6 X 4 X 1/2 X 40'" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529G50", - "size": "6\" x 4\" x 5/8\"", - "dimensions": { + { + "leg1": 6.0000, + "leg2": 4.0000, "thickness": 0.6250, - "leg1": 6.0000, - "leg2": 4.0000 + "type": "Steel", + "grade": "A36/A529G50", + "size": "6\u0022 x 4\u0022 x 5/8\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "753547", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 6 X 4 X 5/8 X 40\u0027" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "753547", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 6 X 4 X 5/8 X 40'" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529G50", - "size": "6\" x 4\" x 3/4\"", - "dimensions": { + { + "leg1": 6.0000, + "leg2": 4.0000, "thickness": 0.7500, - "leg1": 6.0000, - "leg2": 4.0000 + "type": "Steel", + "grade": "A36/A529G50", + "size": "6\u0022 x 4\u0022 x 3/4\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "753563", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 6 X 4 X 3/4 X 40\u0027" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "753563", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 6 X 4 X 3/4 X 40'" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529G50", - "size": "6\" x 6\" x 5/16\"", - "dimensions": { + { + "leg1": 6.0000, + "leg2": 6.0000, "thickness": 0.3125, - "leg1": 6.0000, - "leg2": 6.0000 + "type": "Steel", + "grade": "A36/A529G50", + "size": "6\u0022 x 6\u0022 x 5/16\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "753598", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 6 X 6 X 5/16 X 40\u0027" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "753598", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 6 X 6 X 5/16 X 40'" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529G50", - "size": "6\" x 6\" x 3/8\"", - "dimensions": { + { + "leg1": 6.0000, + "leg2": 6.0000, "thickness": 0.3750, - "leg1": 6.0000, - "leg2": 6.0000 + "type": "Steel", + "grade": "A36/A529G50", + "size": "6\u0022 x 6\u0022 x 3/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "753619", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 6 X 6 X 3/8 X 20\u0027" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "753627", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529650 - 6 X6 X3/8 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "753619", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 6 X 6 X 3/8 X 20'" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "753627", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529650 - 6 X6 X3/8 X40" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529650", - "size": "6\" x 6\" x 1/2\"", - "dimensions": { + { + "leg1": 6.0000, + "leg2": 6.0000, "thickness": 0.5000, - "leg1": 6.0000, - "leg2": 6.0000 + "type": "Steel", + "grade": "A36/A529650", + "size": "6\u0022 x 6\u0022 x 1/2\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "753651", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529650 - 6 X6 X1/2 X20" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "753678", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529650 - 6 X6 X1/2 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "753651", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529650 - 6 X6 X1/2 X20" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "753678", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529650 - 6 X6 X1/2 X40" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529650", - "size": "6\" x 6\" x 5/8\"", - "dimensions": { + { + "leg1": 6.0000, + "leg2": 6.0000, "thickness": 0.6250, - "leg1": 6.0000, - "leg2": 6.0000 + "type": "Steel", + "grade": "A36/A529650", + "size": "6\u0022 x 6\u0022 x 5/8\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "753707", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529650 - 6 X6 X5/8 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "753707", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529650 - 6 X6 X5/8 X40" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529650", - "size": "6\" x 6\" x 3/4\"", - "dimensions": { + { + "leg1": 6.0000, + "leg2": 6.0000, "thickness": 0.7500, - "leg1": 6.0000, - "leg2": 6.0000 + "type": "Steel", + "grade": "A36/A529650", + "size": "6\u0022 x 6\u0022 x 3/4\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "753731", + "supplierDescription": "ANGLE - A36/A529650 - 6 X6 X3/4 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "753731", - "supplierDescription": "ANGLE - A36/A529650 - 6 X6 X3/4 X40" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529650", - "size": "6\" x 6\" x 1\"", - "dimensions": { + { + "leg1": 6.0000, + "leg2": 6.0000, "thickness": 1.0000, - "leg1": 6.0000, - "leg2": 6.0000 + "type": "Steel", + "grade": "A36/A529650", + "size": "6\u0022 x 6\u0022 x 1\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "753758", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529650 - 6 X6 X1\u0022 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "753758", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529650 - 6 X6 X1\" X40" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529650", - "size": "7\" x 4\" x 3/8\"", - "dimensions": { + { + "leg1": 7.0000, + "leg2": 4.0000, "thickness": 0.3750, + "type": "Steel", + "grade": "A36/A529650", + "size": "7\u0022 x 4\u0022 x 3/8\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "753791", + "supplierDescription": "ANGLE - A36/A529650 - 7 X4 X3/8 X40" + } + ] + } + ] + }, + { "leg1": 7.0000, - "leg2": 4.0000 - }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "753791", - "supplierDescription": "ANGLE - A36/A529650 - 7 X4 X3/8 X40" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529650", - "size": "7\" x 4\" x 1/2\"", - "dimensions": { + "leg2": 4.0000, "thickness": 0.5000, - "leg1": 7.0000, - "leg2": 4.0000 + "type": "Steel", + "grade": "A36/A529650", + "size": "7\u0022 x 4\u0022 x 1/2\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "753820", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529650 - 7 X4 X1/2 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "753820", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529650 - 7 X4 X1/2 X40" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529650", - "size": "8\" x 4\" x 1/2\"", - "dimensions": { - "thickness": 0.5000, + { "leg1": 8.0000, - "leg2": 4.0000 - }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "753854", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529650 - 8 X4 X1/2 X40" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529650", - "size": "8\" x 6\" x 1/2\"", - "dimensions": { + "leg2": 4.0000, "thickness": 0.5000, - "leg1": 8.0000, - "leg2": 6.0000 + "type": "Steel", + "grade": "A36/A529650", + "size": "8\u0022 x 4\u0022 x 1/2\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "753854", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529650 - 8 X4 X1/2 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "753942", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529650 - 8 X8 X1/2 X40" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529G50", - "size": "8\" x 6\" x 3/4\"", - "dimensions": { + { + "leg1": 8.0000, + "leg2": 6.0000, + "thickness": 0.5000, + "type": "Steel", + "grade": "A36/A529650", + "size": "8\u0022 x 6\u0022 x 1/2\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "753942", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529650 - 8 X8 X1/2 X40" + } + ] + } + ] + }, + { + "leg1": 8.0000, + "leg2": 6.0000, "thickness": 0.7500, - "leg1": 8.0000, - "leg2": 6.0000 + "type": "Steel", + "grade": "A36/A529G50", + "size": "8\u0022 x 6\u0022 x 3/4\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "753985", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 8 X6 X3/4 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "753985", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 8 X6 X3/4 X40" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529G50", - "size": "8\" x 8\" x 1/2\"", - "dimensions": { + { + "leg1": 8.0000, + "leg2": 8.0000, "thickness": 0.5000, - "leg1": 8.0000, - "leg2": 8.0000 + "type": "Steel", + "grade": "A36/A529G50", + "size": "8\u0022 x 8\u0022 x 1/2\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "754056", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 8 X8 X1/2 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "754056", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 8 X8 X1/2 X40" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529G50", - "size": "8\" x 8\" x 3/4\"", - "dimensions": { + { + "leg1": 8.0000, + "leg2": 8.0000, "thickness": 0.7500, - "leg1": 8.0000, - "leg2": 8.0000 + "type": "Steel", + "grade": "A36/A529G50", + "size": "8\u0022 x 8\u0022 x 3/4\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "754099", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 8 X8 X3/4 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "754099", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 8 X8 X3/4 X40" - } - ] - } - ] - }, - { - "shape": "Angle", - "type": "Steel", - "grade": "A36/A529G50", - "size": "8\" x 8\" x 1\"", - "dimensions": { + { + "leg1": 8.0000, + "leg2": 8.0000, "thickness": 1.0000, - "leg1": 8.0000, - "leg2": 8.0000 - }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "754110", - "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 8 X8 X1 X40" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "A36", - "size": "1\" x 1/2\" x 1/8\"", - "dimensions": { + "type": "Steel", + "grade": "A36/A529G50", + "size": "8\u0022 x 8\u0022 x 1\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "754110", + "supplierDescription": "ANGLE - HOT ROLL - A36/A529G50 - 8 X8 X1 X40" + } + ] + } + ] + } + ], + "channels": [ + { "height": 1.0000, "flange": 0.5000, - "web": 0.1250 + "web": 0.1250, + "type": "Steel", + "grade": "A36", + "size": "1\u0022 x 1/2\u0022 x 1/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "18422135", + "supplierDescription": "BAR CHANNEL - HOT ROLL - A36 - 1 X1/2 X1/8 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "18422135", - "supplierDescription": "BAR CHANNEL - HOT ROLL - A36 - 1 X1/2 X1/8 X20" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "A36", - "size": "1-1/4\" x 1/2\" x 1/8\"", - "dimensions": { + { "height": 1.2500, "flange": 0.5000, - "web": 0.1250 + "web": 0.1250, + "type": "Steel", + "grade": "A36", + "size": "1-1/4\u0022 x 1/2\u0022 x 1/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "18422446", + "supplierDescription": "BAR CHANNEL - HOT ROLL - A36 - 1-1/4X1/2 X1/8 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "18422446", - "supplierDescription": "BAR CHANNEL - HOT ROLL - A36 - 1-1/4X1/2 X1/8 X20" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "A36", - "size": "1-1/2\" x 1/2\" x 1/8\"", - "dimensions": { + { "height": 1.5000, "flange": 0.5000, - "web": 0.1250 + "web": 0.1250, + "type": "Steel", + "grade": "A36", + "size": "1-1/2\u0022 x 1/2\u0022 x 1/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "18455661", + "supplierDescription": "BAR CHANNEL - HOT ROLL - A36 - 1-1/2X1/2 X1/8 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "18455661", - "supplierDescription": "BAR CHANNEL - HOT ROLL - A36 - 1-1/2X1/2 X1/8 X20" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "A36", - "size": "2\" x 1\" x 3/16\"", - "dimensions": { + { "height": 2.0000, "flange": 1.0000, - "web": 0.1875 + "web": 0.1875, + "type": "Steel", + "grade": "A36", + "size": "2\u0022 x 1\u0022 x 3/16\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "18462511", + "supplierDescription": "BAR CHANNEL - HOT ROLL - A36 - 2 X1 X3/16X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "18462511", - "supplierDescription": "BAR CHANNEL - HOT ROLL - A36 - 2 X1 X3/16X20" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "A36", - "size": "2\" x 1\" x 1/8\"", - "dimensions": { + { "height": 2.0000, "flange": 1.0000, - "web": 0.1250 + "web": 0.1250, + "type": "Steel", + "grade": "A36", + "size": "2\u0022 x 1\u0022 x 1/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "18460298", + "supplierDescription": "BAR CHANNEL - HOT ROLL - A36 - 2 X1 X1/8 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "18460298", - "supplierDescription": "BAR CHANNEL - HOT ROLL - A36 - 2 X1 X1/8 X20" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "A36", - "size": "2\" x 1/2\" x 1/8\"", - "dimensions": { + { "height": 2.0000, "flange": 0.5000, - "web": 0.1250 + "web": 0.1250, + "type": "Steel", + "grade": "A36", + "size": "2\u0022 x 1/2\u0022 x 1/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "18472250", + "supplierDescription": "BAR CHANNEL - HOT ROLL - A36 - 2 X1/2 X1/8 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "18472250", - "supplierDescription": "BAR CHANNEL - HOT ROLL - A36 - 2 X1/2 X1/8 X20" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "STANDARD CHANNEL", - "size": "4\" x 7-1/4\" x 3' 4\"", - "dimensions": { + { "height": 4.0000, "flange": 7.2500, - "web": 40.0000 + "web": 40.0000, + "type": "Steel", + "grade": "STANDARD CHANNEL", + "size": "4\u0022 x 7-1/4\u0022 x 3\u0027 4\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "768786", + "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 4 x 7.25 x 40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "768786", - "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 4 x 7.25 x 40" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "MISC CHANNEL", - "size": "4\" x 1' 1-3/4\" x 3' 4\"", - "dimensions": { + { "height": 4.0000, "flange": 13.8000, - "web": 40.0000 + "web": 40.0000, + "type": "Steel", + "grade": "MISC CHANNEL", + "size": "4\u0022 x 1\u0027 1-3/4\u0022 x 3\u0027 4\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "768807", + "supplierDescription": "MISC CHANNEL - HOT ROLL - A36/A529G50 - 4 x 13.8 x 40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "768807", - "supplierDescription": "MISC CHANNEL - HOT ROLL - A36/A529G50 - 4 x 13.8 x 40" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "STANDARD CHANNEL", - "size": "5\" x 6-11/16\" x 1' 8\"", - "dimensions": { + { "height": 5.0000, "flange": 6.7000, - "web": 20.0000 + "web": 20.0000, + "type": "Steel", + "grade": "STANDARD CHANNEL", + "size": "5\u0022 x 6-11/16\u0022 x 1\u0027 8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "768866", + "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 5 x 6.7 x 20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "768866", - "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 5 x 6.7 x 20" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "STANDARD CHANNEL", - "size": "5\" x 6-11/16\" x 3' 4\"", - "dimensions": { + { "height": 5.0000, "flange": 6.7000, - "web": 40.0000 + "web": 40.0000, + "type": "Steel", + "grade": "STANDARD CHANNEL", + "size": "5\u0022 x 6-11/16\u0022 x 3\u0027 4\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "768882", + "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 5\u0022 x 6.7 x 40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "768882", - "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 5\" x 6.7 x 40" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "STANDARD CHANNEL", - "size": "5\" x 9\" x 1' 8\"", - "dimensions": { + { "height": 5.0000, "flange": 9.0000, - "web": 20.0000 + "web": 20.0000, + "type": "Steel", + "grade": "STANDARD CHANNEL", + "size": "5\u0022 x 9\u0022 x 1\u0027 8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "769111", + "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 5 x 9 x 20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "769111", - "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 5 x 9 x 20" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "STANDARD CHANNEL", - "size": "5\" x 9\" x 3' 4\"", - "dimensions": { + { "height": 5.0000, "flange": 9.0000, - "web": 40.0000 + "web": 40.0000, + "type": "Steel", + "grade": "STANDARD CHANNEL", + "size": "5\u0022 x 9\u0022 x 3\u0027 4\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "769146", + "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 5 x 9 x 40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "769146", - "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 5 x 9 x 40" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "STANDARD CHANNEL", - "size": "6\" x 8-3/16\" x 1' 8\"", - "dimensions": { + { "height": 6.0000, "flange": 8.2000, - "web": 20.0000 + "web": 20.0000, + "type": "Steel", + "grade": "STANDARD CHANNEL", + "size": "6\u0022 x 8-3/16\u0022 x 1\u0027 8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "769397", + "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 6 x 8.2 x 20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "769397", - "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 6 x 8.2 x 20" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "STANDARD CHANNEL", - "size": "6\" x 8-3/16\" x 3' 4\"", - "dimensions": { + { "height": 6.0000, "flange": 8.2000, - "web": 40.0000 + "web": 40.0000, + "type": "Steel", + "grade": "STANDARD CHANNEL", + "size": "6\u0022 x 8-3/16\u0022 x 3\u0027 4\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "767025", + "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 6 x 8.2 x 40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "767025", - "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 6 x 8.2 x 40" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "STANDARD CHANNEL", - "size": "6\" x 8-3/16\" x 4' 2\"", - "dimensions": { + { "height": 6.0000, "flange": 8.2000, - "web": 50.0000 + "web": 50.0000, + "type": "Steel", + "grade": "STANDARD CHANNEL", + "size": "6\u0022 x 8-3/16\u0022 x 4\u0027 2\u0022", + "stockItems": [ + { + "lengthInches": 600.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "767068", + "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 6 x 8.2 x 50" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 600.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "767068", - "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 6 x 8.2 x 50" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "STANDARD CHANNEL", - "size": "6\" x 10-1/2\" x 1' 8\"", - "dimensions": { + { "height": 6.0000, "flange": 10.5000, - "web": 20.0000 + "web": 20.0000, + "type": "Steel", + "grade": "STANDARD CHANNEL", + "size": "6\u0022 x 10-1/2\u0022 x 1\u0027 8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "767084", + "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 6 x 10.5 x 20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "767084", - "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 6 x 10.5 x 20" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "STANDARD CHANNEL", - "size": "6\" x 10-1/2\" x 3' 4\"", - "dimensions": { + { "height": 6.0000, "flange": 10.5000, - "web": 40.0000 + "web": 40.0000, + "type": "Steel", + "grade": "STANDARD CHANNEL", + "size": "6\u0022 x 10-1/2\u0022 x 3\u0027 4\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "767113", + "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 6 X 10.5 X 40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "767113", - "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 6 X 10.5 X 40" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "MISC CHANNEL", - "size": "6\" x 1' 0\" x 1' 8\"", - "dimensions": { + { "height": 6.0000, "flange": 12.0000, - "web": 20.0000 + "web": 20.0000, + "type": "Steel", + "grade": "MISC CHANNEL", + "size": "6\u0022 x 1\u0027 0\u0022 x 1\u0027 8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "767130", + "supplierDescription": "MISC CHANNEL - HOT ROLL - A36/A529G50 - 6 X 12 X 20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "767130", - "supplierDescription": "MISC CHANNEL - HOT ROLL - A36/A529G50 - 6 X 12 X 20" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "STANDARD CHANNEL", - "size": "6\" x 1' 1\" x 1' 8\"", - "dimensions": { + { "height": 6.0000, "flange": 13.0000, - "web": 20.0000 + "web": 20.0000, + "type": "Steel", + "grade": "STANDARD CHANNEL", + "size": "6\u0022 x 1\u0027 1\u0022 x 1\u0027 8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "767172", + "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 6 X 13 X 20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "767172", - "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 6 X 13 X 20" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "STANDARD CHANNEL", - "size": "6\" x 1' 1\" x 3' 4\"", - "dimensions": { + { "height": 6.0000, "flange": 13.0000, - "web": 40.0000 + "web": 40.0000, + "type": "Steel", + "grade": "STANDARD CHANNEL", + "size": "6\u0022 x 1\u0027 1\u0022 x 3\u0027 4\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "767199", + "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 6 X 13 X 40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "767199", - "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 6 X 13 X 40" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "MISC CHANNEL", - "size": "6\" x 1' 3-1/4\" x 3' 4\"", - "dimensions": { + { "height": 6.0000, "flange": 15.3000, - "web": 40.0000 + "web": 40.0000, + "type": "Steel", + "grade": "MISC CHANNEL", + "size": "6\u0022 x 1\u0027 3-1/4\u0022 x 3\u0027 4\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "767244", + "supplierDescription": "MISC CHANNEL - HOT ROLL - A36/A529G50 - 6 X 15.3 X 40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "767244", - "supplierDescription": "MISC CHANNEL - HOT ROLL - A36/A529G50 - 6 X 15.3 X 40" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "MISC CHANNEL", - "size": "6\" x 1' 4-1/4\" x 3' 4\"", - "dimensions": { + { "height": 6.0000, "flange": 16.3000, - "web": 40.0000 + "web": 40.0000, + "type": "Steel", + "grade": "MISC CHANNEL", + "size": "6\u0022 x 1\u0027 4-1/4\u0022 x 3\u0027 4\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "767279", + "supplierDescription": "MISC CHANNEL - HOT ROLL - A36/A529G50 - 6 X 16.3 X 40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "767279", - "supplierDescription": "MISC CHANNEL - HOT ROLL - A36/A529G50 - 6 X 16.3 X 40" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "MISC CHANNEL", - "size": "6\" x 1' 6\" x 3' 4\"", - "dimensions": { + { "height": 6.0000, "flange": 18.0000, - "web": 40.0000 + "web": 40.0000, + "type": "Steel", + "grade": "MISC CHANNEL", + "size": "6\u0022 x 1\u0027 6\u0022 x 3\u0027 4\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "767295", + "supplierDescription": "MISC CHANNEL - HOT ROLL - A36/A529G50 - 6 X 18 X 40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "767295", - "supplierDescription": "MISC CHANNEL - HOT ROLL - A36/A529G50 - 6 X 18 X 40" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "STANDARD CHANNEL", - "size": "7\" x 9-3/4\" x 1' 8\"", - "dimensions": { + { "height": 7.0000, "flange": 9.8000, - "web": 20.0000 + "web": 20.0000, + "type": "Steel", + "grade": "STANDARD CHANNEL", + "size": "7\u0022 x 9-3/4\u0022 x 1\u0027 8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "767308", + "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 7 X 9.8 X 20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "767308", - "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 7 X 9.8 X 20" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "STANDARD CHANNEL", - "size": "7\" x 9-3/4\" x 3' 4\"", - "dimensions": { + { "height": 7.0000, "flange": 9.8000, - "web": 40.0000 + "web": 40.0000, + "type": "Steel", + "grade": "STANDARD CHANNEL", + "size": "7\u0022 x 9-3/4\u0022 x 3\u0027 4\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "767324", + "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 7 X 9.8 X 40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "767324", - "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 7 X 9.8 X 40" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "STANDARD CHANNEL", - "size": "7\" x 9-3/4\" x 4' 2\"", - "dimensions": { + { "height": 7.0000, "flange": 9.8000, - "web": 50.0000 + "web": 50.0000, + "type": "Steel", + "grade": "STANDARD CHANNEL", + "size": "7\u0022 x 9-3/4\u0022 x 4\u0027 2\u0022", + "stockItems": [ + { + "lengthInches": 600.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "767332", + "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 7 X 9.8 X 50" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 600.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "767332", - "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 7 X 9.8 X 50" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "STANDARD CHANNEL", - "size": "7\" x 1' 1/4\" x 3' 4\"", - "dimensions": { + { "height": 7.0000, "flange": 12.2500, - "web": 40.0000 + "web": 40.0000, + "type": "Steel", + "grade": "STANDARD CHANNEL", + "size": "7\u0022 x 1\u0027 1/4\u0022 x 3\u0027 4\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "767367", + "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 7 X12.25X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "767367", - "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 7 X12.25X40" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "STANDARD CHANNEL", - "size": "7\" x 1' 2-3/4\" x 3' 4\"", - "dimensions": { + { "height": 7.0000, "flange": 14.7500, - "web": 40.0000 + "web": 40.0000, + "type": "Steel", + "grade": "STANDARD CHANNEL", + "size": "7\u0022 x 1\u0027 2-3/4\u0022 x 3\u0027 4\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "767391", + "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 7 X14.75X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "767391", - "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 7 X14.75X40" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "MISC CHANNEL", - "size": "7\" x 1' 7-1/16\" x 3' 4\"", - "dimensions": { + { "height": 7.0000, "flange": 19.1000, - "web": 40.0000 + "web": 40.0000, + "type": "Steel", + "grade": "MISC CHANNEL", + "size": "7\u0022 x 1\u0027 7-1/16\u0022 x 3\u0027 4\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "767412", + "supplierDescription": "MISC CHANNEL - HOT ROLL - A36/A529G50 - 7 X19.1 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "767412", - "supplierDescription": "MISC CHANNEL - HOT ROLL - A36/A529G50 - 7 X19.1 X40" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "MISC CHANNEL", - "size": "7\" x 1' 10-11/16\" x 3' 4\"", - "dimensions": { + { "height": 7.0000, "flange": 22.7000, - "web": 40.0000 + "web": 40.0000, + "type": "Steel", + "grade": "MISC CHANNEL", + "size": "7\u0022 x 1\u0027 10-11/16\u0022 x 3\u0027 4\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "767439", + "supplierDescription": "MISC CHANNEL - HOT ROLL - A36/A529G50 - 7 X22.7 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "767439", - "supplierDescription": "MISC CHANNEL - HOT ROLL - A36/A529G50 - 7 X22.7 X40" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "MISC CHANNEL", - "size": "8\" x 8-1/2\" x 3' 4\"", - "dimensions": { + { "height": 8.0000, "flange": 8.5000, - "web": 40.0000 + "web": 40.0000, + "type": "Steel", + "grade": "MISC CHANNEL", + "size": "8\u0022 x 8-1/2\u0022 x 3\u0027 4\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "767443", + "supplierDescription": "MISC CHANNEL - HOT ROLL - A36/A529G50 - 8 X8.5 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "767443", - "supplierDescription": "MISC CHANNEL - HOT ROLL - A36/A529G50 - 8 X8.5 X40" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "STANDARD CHANNEL", - "size": "8\" x 11-1/2\" x 1' 8\"", - "dimensions": { + { "height": 8.0000, "flange": 11.5000, - "web": 20.0000 + "web": 20.0000, + "type": "Steel", + "grade": "STANDARD CHANNEL", + "size": "8\u0022 x 11-1/2\u0022 x 1\u0027 8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "767519", + "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 8 X11.5 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "767519", - "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 8 X11.5 X20" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "STANDARD CHANNEL", - "size": "8\" x 11-1/2\" x 3' 4\"", - "dimensions": { + { "height": 8.0000, "flange": 11.5000, - "web": 40.0000 + "web": 40.0000, + "type": "Steel", + "grade": "STANDARD CHANNEL", + "size": "8\u0022 x 11-1/2\u0022 x 3\u0027 4\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "767576", + "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 8 X11.5 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "767576", - "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 8 X11.5 X40" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "STANDARD CHANNEL", - "size": "8\" x 11-1/2\" x 4' 2\"", - "dimensions": { + { "height": 8.0000, "flange": 11.5000, - "web": 50.0000 + "web": 50.0000, + "type": "Steel", + "grade": "STANDARD CHANNEL", + "size": "8\u0022 x 11-1/2\u0022 x 4\u0027 2\u0022", + "stockItems": [ + { + "lengthInches": 600.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "767615", + "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 8 X11.5 X50" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 600.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "767615", - "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 8 X11.5 X50" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "STANDARD CHANNEL", - "size": "8\" x 1' 1-3/4\" x 1' 8\"", - "dimensions": { + { "height": 8.0000, "flange": 13.7500, - "web": 20.0000 + "web": 20.0000, + "type": "Steel", + "grade": "STANDARD CHANNEL", + "size": "8\u0022 x 1\u0027 1-3/4\u0022 x 1\u0027 8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "767658", + "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 8 X13.75X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "767658", - "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 8 X13.75X20" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "STANDARD CHANNEL", - "size": "8\" x 1' 1-3/4\" x 3' 4\"", - "dimensions": { + { "height": 8.0000, "flange": 13.7500, - "web": 40.0000 + "web": 40.0000, + "type": "Steel", + "grade": "STANDARD CHANNEL", + "size": "8\u0022 x 1\u0027 1-3/4\u0022 x 3\u0027 4\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "767666", + "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 8 X13.75X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "767666", - "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 8 X13.75X40" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "MISC CHANNEL", - "size": "8\" x 1' 6-11/16\" x 3' 4\"", - "dimensions": { + { "height": 8.0000, "flange": 18.7000, - "web": 40.0000 + "web": 40.0000, + "type": "Steel", + "grade": "MISC CHANNEL", + "size": "8\u0022 x 1\u0027 6-11/16\u0022 x 3\u0027 4\u0022", + "stockItems": [] }, - "stockItems": [] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "MISC CHANNEL", - "size": "10\" x 3' 5-1/16\" x 3' 4\"", - "dimensions": { + { "height": 10.0000, "flange": 41.1000, - "web": 40.0000 + "web": 40.0000, + "type": "Steel", + "grade": "MISC CHANNEL", + "size": "10\u0022 x 3\u0027 5-1/16\u0022 x 3\u0027 4\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "18470588", + "supplierDescription": "MISC CHANNEL - HOT ROLL - A36/A529G50 - 10 X41.1 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "18470588", - "supplierDescription": "MISC CHANNEL - HOT ROLL - A36/A529G50 - 10 X41.1 X40" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "MISC CHANNEL", - "size": "10\" x 8-3/8\" x 1' 8\"", - "dimensions": { + { "height": 10.0000, "flange": 8.4000, - "web": 20.0000 + "web": 20.0000, + "type": "Steel", + "grade": "MISC CHANNEL", + "size": "10\u0022 x 8-3/8\u0022 x 1\u0027 8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "767955", + "supplierDescription": "MISC CHANNEL - HOT ROLL - A36/A529G50 - 10X8.4 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "767955", - "supplierDescription": "MISC CHANNEL - HOT ROLL - A36/A529G50 - 10X8.4 X20" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "MISC CHANNEL", - "size": "10\" x 8-3/8\" x 3' 4\"", - "dimensions": { + { "height": 10.0000, "flange": 8.4000, - "web": 40.0000 + "web": 40.0000, + "type": "Steel", + "grade": "MISC CHANNEL", + "size": "10\u0022 x 8-3/8\u0022 x 3\u0027 4\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "767981", + "supplierDescription": "MISC CHANNEL - HOT ROLL - A36/A529G50 - 10X8.4 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "767981", - "supplierDescription": "MISC CHANNEL - HOT ROLL - A36/A529G50 - 10X8.4 X40" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "STANDARD CHANNEL", - "size": "10\" x 1' 3-1/4\" x 1' 8\"", - "dimensions": { + { "height": 10.0000, "flange": 15.3000, - "web": 20.0000 + "web": 20.0000, + "type": "Steel", + "grade": "STANDARD CHANNEL", + "size": "10\u0022 x 1\u0027 3-1/4\u0022 x 1\u0027 8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "767990", + "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 10X15.3 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "767990", - "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 10X15.3 X20" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "STANDARD CHANNEL", - "size": "10\" x 1' 3-1/4\" x 3' 4\"", - "dimensions": { + { "height": 10.0000, "flange": 15.3000, - "web": 40.0000 + "web": 40.0000, + "type": "Steel", + "grade": "STANDARD CHANNEL", + "size": "10\u0022 x 1\u0027 3-1/4\u0022 x 3\u0027 4\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "768036", + "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 10X15.3 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "768036", - "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 10X15.3 X40" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "STANDARD CHANNEL", - "size": "10\" x 1' 3-1/4\" x 4' 2\"", - "dimensions": { + { "height": 10.0000, "flange": 15.3000, - "web": 50.0000 + "web": 50.0000, + "type": "Steel", + "grade": "STANDARD CHANNEL", + "size": "10\u0022 x 1\u0027 3-1/4\u0022 x 4\u0027 2\u0022", + "stockItems": [ + { + "lengthInches": 600.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "768061", + "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 10 X15.3 X50" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 600.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "768061", - "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 10 X15.3 X50" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "STANDARD CHANNEL", - "size": "10\" x 1' 8\" x 1' 8\"", - "dimensions": { + { "height": 10.0000, "flange": 20.0000, - "web": 20.0000 + "web": 20.0000, + "type": "Steel", + "grade": "STANDARD CHANNEL", + "size": "10\u0022 x 1\u0027 8\u0022 x 1\u0027 8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "768108", + "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 10X20 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "768108", - "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 10X20 X20" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "STANDARD CHANNEL", - "size": "10\" x 1' 8\" x 3' 4\"", - "dimensions": { + { "height": 10.0000, "flange": 20.0000, - "web": 40.0000 + "web": 40.0000, + "type": "Steel", + "grade": "STANDARD CHANNEL", + "size": "10\u0022 x 1\u0027 8\u0022 x 3\u0027 4\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "768116", + "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 10X20 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "768116", - "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 10X20 X40" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "MISC CHANNEL", - "size": "10\" x 1' 10\" x 3' 4\"", - "dimensions": { + { "height": 10.0000, "flange": 22.0000, - "web": 40.0000 + "web": 40.0000, + "type": "Steel", + "grade": "MISC CHANNEL", + "size": "10\u0022 x 1\u0027 10\u0022 x 3\u0027 4\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "788141", + "supplierDescription": "MISC CHANNEL - HOT ROLL - A36/A529G50 - 10X22 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "788141", - "supplierDescription": "MISC CHANNEL - HOT ROLL - A36/A529G50 - 10X22 X40" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "STANDARD CHANNEL", - "size": "10\" x 2' 1\" x 3' 4\"", - "dimensions": { + { "height": 10.0000, "flange": 25.0000, - "web": 40.0000 + "web": 40.0000, + "type": "Steel", + "grade": "STANDARD CHANNEL", + "size": "10\u0022 x 2\u0027 1\u0022 x 3\u0027 4\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "768183", + "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 10X25 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "768183", - "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 10X25 X40" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "MISC CHANNEL", - "size": "10\" x 2' 4-1/2\" x 3' 4\"", - "dimensions": { + { "height": 10.0000, "flange": 28.5000, - "web": 40.0000 + "web": 40.0000, + "type": "Steel", + "grade": "MISC CHANNEL", + "size": "10\u0022 x 2\u0027 4-1/2\u0022 x 3\u0027 4\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "768204", + "supplierDescription": "MISC CHANNEL - HOT ROLL - A36/A529G50 - 10X28.5 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "768204", - "supplierDescription": "MISC CHANNEL - HOT ROLL - A36/A529G50 - 10X28.5 X40" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "STANDARD CHANNEL", - "size": "10\" x 2' 6\" x 3' 4\"", - "dimensions": { + { "height": 10.0000, "flange": 30.0000, - "web": 40.0000 + "web": 40.0000, + "type": "Steel", + "grade": "STANDARD CHANNEL", + "size": "10\u0022 x 2\u0027 6\u0022 x 3\u0027 4\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "768247", + "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 10X30 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "768247", - "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 10X30 X40" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "MISC CHANNEL", - "size": "1' 0\" x 1' 2-1/4\" x 3' 4\"", - "dimensions": { + { "height": 12.0000, "flange": 14.3000, - "web": 40.0000 + "web": 40.0000, + "type": "Steel", + "grade": "MISC CHANNEL", + "size": "1\u0027 0\u0022 x 1\u0027 2-1/4\u0022 x 3\u0027 4\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "13824324", + "supplierDescription": "MISC CHANNEL - HOT ROLL - A36/A529G50 - 12X14.3 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "13824324", - "supplierDescription": "MISC CHANNEL - HOT ROLL - A36/A529G50 - 12X14.3 X40" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "STANDARD CHANNEL", - "size": "1' 0\" x 2' 1\" x 1' 8\"", - "dimensions": { + { "height": 12.0000, "flange": 25.0000, - "web": 20.0000 + "web": 20.0000, + "type": "Steel", + "grade": "STANDARD CHANNEL", + "size": "1\u0027 0\u0022 x 2\u0027 1\u0022 x 1\u0027 8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "18093461", + "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 12 X25 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "18093461", - "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 12 X25 X20" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "MISC CHANNEL", - "size": "1' 0\" x 10-9/16\" x 1' 8\"", - "dimensions": { + { "height": 12.0000, "flange": 10.6000, - "web": 20.0000 + "web": 20.0000, + "type": "Steel", + "grade": "MISC CHANNEL", + "size": "1\u0027 0\u0022 x 10-9/16\u0022 x 1\u0027 8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "768301", + "supplierDescription": "MISC CHANNEL - HOT ROLL - A36/A529G50 - 12X10.6 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "768301", - "supplierDescription": "MISC CHANNEL - HOT ROLL - A36/A529G50 - 12X10.6 X20" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "MISC CHANNEL", - "size": "1' 0\" x 10-9/16\" x 3' 4\"", - "dimensions": { + { "height": 12.0000, "flange": 10.6000, - "web": 40.0000 + "web": 40.0000, + "type": "Steel", + "grade": "MISC CHANNEL", + "size": "1\u0027 0\u0022 x 10-9/16\u0022 x 3\u0027 4\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "768327", + "supplierDescription": "MISC CHANNEL - HOT ROLL - A36/A529G50 - 12X10.6 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "768327", - "supplierDescription": "MISC CHANNEL - HOT ROLL - A36/A529G50 - 12X10.6 X40" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "STANDARD CHANNEL", - "size": "1' 0\" x 1' 8-11/16\" x 1' 8\"", - "dimensions": { + { "height": 12.0000, "flange": 20.7000, - "web": 20.0000 + "web": 20.0000, + "type": "Steel", + "grade": "STANDARD CHANNEL", + "size": "1\u0027 0\u0022 x 1\u0027 8-11/16\u0022 x 1\u0027 8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "768335", + "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 12X20.7 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "768335", - "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 12X20.7 X20" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "STANDARD CHANNEL", - "size": "1' 0\" x 1' 8-11/16\" x 3' 4\"", - "dimensions": { + { "height": 12.0000, "flange": 20.7000, - "web": 40.0000 + "web": 40.0000, + "type": "Steel", + "grade": "STANDARD CHANNEL", + "size": "1\u0027 0\u0022 x 1\u0027 8-11/16\u0022 x 3\u0027 4\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "768386", + "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 12X20.7 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "768386", - "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 12X20.7 X40" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "STANDARD CHANNEL", - "size": "1' 0\" x 1' 8-11/16\" x 4' 2\"", - "dimensions": { + { "height": 12.0000, "flange": 20.7000, - "web": 50.0000 + "web": 50.0000, + "type": "Steel", + "grade": "STANDARD CHANNEL", + "size": "1\u0027 0\u0022 x 1\u0027 8-11/16\u0022 x 4\u0027 2\u0022", + "stockItems": [ + { + "lengthInches": 600.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "768407", + "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 12X20.7 X50" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 600.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "768407", - "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 12X20.7 X50" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "STANDARD CHANNEL", - "size": "1' 0\" x 2' 1\" x 3' 4\"", - "dimensions": { + { "height": 12.0000, "flange": 25.0000, - "web": 40.0000 + "web": 40.0000, + "type": "Steel", + "grade": "STANDARD CHANNEL", + "size": "1\u0027 0\u0022 x 2\u0027 1\u0022 x 3\u0027 4\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "768458", + "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 12X25 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "768458", - "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 12X25 X40" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "STANDARD CHANNEL", - "size": "1' 0\" x 2' 6\" x 3' 4\"", - "dimensions": { + { "height": 12.0000, "flange": 30.0000, - "web": 40.0000 + "web": 40.0000, + "type": "Steel", + "grade": "STANDARD CHANNEL", + "size": "1\u0027 0\u0022 x 2\u0027 6\u0022 x 3\u0027 4\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "768511", + "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 12X30 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "768511", - "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 12X30 X40" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "MISC CHANNEL", - "size": "1' 0\" x 2' 7\" x 3' 4\"", - "dimensions": { + { "height": 12.0000, "flange": 31.0000, - "web": 40.0000 + "web": 40.0000, + "type": "Steel", + "grade": "MISC CHANNEL", + "size": "1\u0027 0\u0022 x 2\u0027 7\u0022 x 3\u0027 4\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "768546", + "supplierDescription": "MISC CHANNEL - HOT ROLL - A36/A529G50 - 12X31 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "768546", - "supplierDescription": "MISC CHANNEL - HOT ROLL - A36/A529G50 - 12X31 X40" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "MISC CHANNEL", - "size": "1' 0\" x 2' 11\" x 1' 0\"", - "dimensions": { + { "height": 12.0000, "flange": 35.0000, - "web": 12.0000 + "web": 12.0000, + "type": "Steel", + "grade": "MISC CHANNEL", + "size": "1\u0027 0\u0022 x 2\u0027 11\u0022 x 1\u0027 0\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "768562", + "supplierDescription": "MISC CHANNEL - HOT ROLL - A36/A529G50 - 12X35 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "768562", - "supplierDescription": "MISC CHANNEL - HOT ROLL - A36/A529G50 - 12X35 X40" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "MISC CHANNEL", - "size": "1' 0\" x 3' 9\" x 3' 4\"", - "dimensions": { + { "height": 12.0000, "flange": 45.0000, - "web": 40.0000 + "web": 40.0000, + "type": "Steel", + "grade": "MISC CHANNEL", + "size": "1\u0027 0\u0022 x 3\u0027 9\u0022 x 3\u0027 4\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "768597", + "supplierDescription": "MISC CHANNEL - HOT ROLL - A36/A529G50 - 12X45 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "768597", - "supplierDescription": "MISC CHANNEL - HOT ROLL - A36/A529G50 - 12X45 X40" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "STANDARD CHANNEL", - "size": "1' 3\" x 2' 9-7/8\" x 3' 4\"", - "dimensions": { + { "height": 15.0000, "flange": 33.9000, - "web": 40.0000 + "web": 40.0000, + "type": "Steel", + "grade": "STANDARD CHANNEL", + "size": "1\u0027 3\u0022 x 2\u0027 9-7/8\u0022 x 3\u0027 4\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "768714", + "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 15X33.9 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "768714", - "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 15X33.9 X40" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "STANDARD CHANNEL", - "size": "1' 3\" x 3' 4\" x 3' 4\"", - "dimensions": { + { "height": 15.0000, "flange": 40.0000, - "web": 40.0000 + "web": 40.0000, + "type": "Steel", + "grade": "STANDARD CHANNEL", + "size": "1\u0027 3\u0022 x 3\u0027 4\u0022 x 3\u0027 4\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "768790", + "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 15X40 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "768790", - "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 15X40 X40" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "STANDARD CHANNEL", - "size": "1' 3\" x 4' 2\" x 3' 4\"", - "dimensions": { + { "height": 15.0000, "flange": 50.0000, - "web": 40.0000 + "web": 40.0000, + "type": "Steel", + "grade": "STANDARD CHANNEL", + "size": "1\u0027 3\u0022 x 4\u0027 2\u0022 x 3\u0027 4\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "768811", + "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 15X50 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "768811", - "supplierDescription": "STANDARD CHANNEL - HOT ROLL - A36/A529G50 - 15X50 X40" - } - ] - } - ] - }, - { - "shape": "Channel", - "type": "Steel", - "grade": "MISC CHANNEL", - "size": "1' 6\" x 3' 6-11/16\" x 3' 4\"", - "dimensions": { + { "height": 18.0000, "flange": 42.7000, - "web": 40.0000 - }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "768837", - "supplierDescription": "MISC CHANNEL - HOT ROLL - A572G50 - 18X42.7 X40" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "HR COM QUALITY", - "size": "1/2\" x 1/8\"", - "dimensions": { + "web": 40.0000, + "type": "Steel", + "grade": "MISC CHANNEL", + "size": "1\u0027 6\u0022 x 3\u0027 6-11/16\u0022 x 3\u0027 4\u0022", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "768837", + "supplierDescription": "MISC CHANNEL - HOT ROLL - A572G50 - 18X42.7 X40" + } + ] + } + ] + } + ], + "flatBars": [ + { "width": 0.5000, - "thickness": 0.1250 + "thickness": 0.1250, + "type": "Steel", + "grade": "HR COM QUALITY", + "size": "1/2\u0022 x 1/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "17983883", + "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 1/8 X 1/2 X 20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "17983883", - "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 1/8 X 1/2 X 20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "HR COM QUALITY", - "size": "1/2\" x 3/16\"", - "dimensions": { + { "width": 0.5000, - "thickness": 0.1875 + "thickness": 0.1875, + "type": "Steel", + "grade": "HR COM QUALITY", + "size": "1/2\u0022 x 3/16\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "17984421", + "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 3/16 X1/2 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "17984421", - "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 3/16 X1/2 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36", - "size": "1/2\" x 1/4\"", - "dimensions": { + { "width": 0.5000, - "thickness": 0.2500 + "thickness": 0.2500, + "type": "Steel", + "grade": "A36", + "size": "1/2\u0022 x 1/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "18466167", + "supplierDescription": "FLAT BAR - HOT ROLL - A36 - 1/4 X1/2 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "18466167", - "supplierDescription": "FLAT BAR - HOT ROLL - A36 - 1/4 X1/2 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "HR COM QUALITY", - "size": "3/4\" x 1/8\"", - "dimensions": { + { "width": 0.7500, - "thickness": 0.1250 + "thickness": 0.1250, + "type": "Steel", + "grade": "HR COM QUALITY", + "size": "3/4\u0022 x 1/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "17984000", + "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 1/8 X 3/4 X 20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "17984000", - "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 1/8 X 3/4 X 20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "HR COM QUALITY", - "size": "3/4\" x 3/16\"", - "dimensions": { + { "width": 0.7500, - "thickness": 0.1875 + "thickness": 0.1875, + "type": "Steel", + "grade": "HR COM QUALITY", + "size": "3/4\u0022 x 3/16\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "17984544", + "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 3/16 X3/4 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "17984544", - "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 3/16 X3/4 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36", - "size": "3/4\" x 1/4\"", - "dimensions": { + { "width": 0.7500, - "thickness": 0.2500 + "thickness": 0.2500, + "type": "Steel", + "grade": "A36", + "size": "3/4\u0022 x 1/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "18462908", + "supplierDescription": "FLAT BAR - HOT ROLL - A36 - 1/4 X3/4 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "18462908", - "supplierDescription": "FLAT BAR - HOT ROLL - A36 - 1/4 X3/4 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36", - "size": "3/4\" x 3/8\"", - "dimensions": { + { "width": 0.7500, - "thickness": 0.3750 + "thickness": 0.3750, + "type": "Steel", + "grade": "A36", + "size": "3/4\u0022 x 3/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "18461374", + "supplierDescription": "FLAT BAR - HOT ROLL - A36 - 3/8 X3/4 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "18461374", - "supplierDescription": "FLAT BAR - HOT ROLL - A36 - 3/8 X3/4 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36", - "size": "3/4\" x 1/2\"", - "dimensions": { + { "width": 0.7500, - "thickness": 0.5000 + "thickness": 0.5000, + "type": "Steel", + "grade": "A36", + "size": "3/4\u0022 x 1/2\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "18443029", + "supplierDescription": "FLAT BAR - HOT ROLL - A36 - 1/2 X3/4 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "18443029", - "supplierDescription": "FLAT BAR - HOT ROLL - A36 - 1/2 X3/4 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "HR COM QUALITY", - "size": "1\" x 1/8\"", - "dimensions": { + { "width": 1.0000, - "thickness": 0.1250 + "thickness": 0.1250, + "type": "Steel", + "grade": "HR COM QUALITY", + "size": "1\u0022 x 1/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "17984122", + "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 1/8 X 1 X 20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "17984122", - "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 1/8 X 1 X 20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A572PG50", - "size": "1\" x 3/16\"", - "dimensions": { + { "width": 1.0000, - "thickness": 0.1875 + "thickness": 0.1875, + "type": "Steel", + "grade": "A36/A572PG50", + "size": "1\u0022 x 3/16\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "17985646", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572PG50 - P\u0026O - 3/16 X1 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "17985646", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572PG50 - P&O - 3/16 X1 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36", - "size": "1\" x 1/4\"", - "dimensions": { + { "width": 1.0000, - "thickness": 0.2500 + "thickness": 0.2500, + "type": "Steel", + "grade": "A36", + "size": "1\u0022 x 1/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "18462043", + "supplierDescription": "FLAT BAR - HOT ROLL - A36 - 1/4 X1 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "18462043", - "supplierDescription": "FLAT BAR - HOT ROLL - A36 - 1/4 X1 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "1\" x 5/16\"", - "dimensions": { + { "width": 1.0000, - "thickness": 0.3125 + "thickness": 0.3125, + "type": "Steel", + "grade": "A36/A529G50", + "size": "1\u0022 x 5/16\u0022", + "stockItems": [] }, - "stockItems": [] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "1\" x 3/8\"", - "dimensions": { + { "width": 1.0000, - "thickness": 0.3750 + "thickness": 0.3750, + "type": "Steel", + "grade": "A36/A529G50", + "size": "1\u0022 x 3/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "775199", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/8 X1 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "775199", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/8 X1 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "1\" x 1/2\"", - "dimensions": { + { "width": 1.0000, - "thickness": 0.5000 + "thickness": 0.5000, + "type": "Steel", + "grade": "A36/A529G50", + "size": "1\u0022 x 1/2\u0022", + "stockItems": [ + { + "lengthInches": 20.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "776829", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 1/2 X1 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 20.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "776829", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 1/2 X1 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36", - "size": "1\" x 5/8\"", - "dimensions": { + { "width": 1.0000, - "thickness": 0.6250 + "thickness": 0.6250, + "type": "Steel", + "grade": "A36", + "size": "1\u0022 x 5/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "18462561", + "supplierDescription": "FLAT BAR - HOT ROLL - A36 - 5/8 X1 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "18462561", - "supplierDescription": "FLAT BAR - HOT ROLL - A36 - 5/8 X1 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36", - "size": "1\" x 3/4\"", - "dimensions": { + { "width": 1.0000, - "thickness": 0.7500 + "thickness": 0.7500, + "type": "Steel", + "grade": "A36", + "size": "1\u0022 x 3/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "1841294", + "supplierDescription": "FLAT BAR - HOT ROLL - A36 - 3/4 X1 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "1841294", - "supplierDescription": "FLAT BAR - HOT ROLL - A36 - 3/4 X1 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "size": "1-1/8\" x 3/16\"", - "dimensions": { + { "width": 1.1250, - "thickness": 0.1875 + "thickness": 0.1875, + "type": "Steel", + "size": "1-1/8\u0022 x 3/16\u0022", + "stockItems": [ + { + "lengthInches": 195.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "2093731", + "supplierDescription": "FLAT BAR - HOT ROLL - 1008/15 - 3/16 X1-1/8 X16FT3" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 195.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "2093731", - "supplierDescription": "FLAT BAR - HOT ROLL - 1008/15 - 3/16 X1-1/8 X16FT3" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "HR COM QUALITY", - "size": "1-1/4\" x 1/8\"", - "dimensions": { + { "width": 1.2500, - "thickness": 0.1250 + "thickness": 0.1250, + "type": "Steel", + "grade": "HR COM QUALITY", + "size": "1-1/4\u0022 x 1/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "17984202", + "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 1/8 X 1-1/4 X 20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "17984202", - "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 1/8 X 1-1/4 X 20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "HR COM QUALITY", - "size": "1-1/4\" x 3/16\"", - "dimensions": { + { "width": 1.2500, - "thickness": 0.1875 + "thickness": 0.1875, + "type": "Steel", + "grade": "HR COM QUALITY", + "size": "1-1/4\u0022 x 3/16\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "17984595", + "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 3/16 X1-1/4 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "17984595", - "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 3/16 X1-1/4 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36", - "size": "1-1/4\" x 1/4\"", - "dimensions": { + { "width": 1.2500, - "thickness": 0.2500 + "thickness": 0.2500, + "type": "Steel", + "grade": "A36", + "size": "1-1/4\u0022 x 1/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "18490351", + "supplierDescription": "FLAT BAR - HOT ROLL - A36 - P\u0026O - 1/4 X1 1/4 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "18490351", - "supplierDescription": "FLAT BAR - HOT ROLL - A36 - P&O - 1/4 X1 1/4 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "1-1/4\" x 3/8\"", - "dimensions": { + { "width": 1.2500, - "thickness": 0.3750 + "thickness": 0.3750, + "type": "Steel", + "grade": "A36/A529G50", + "size": "1-1/4\u0022 x 3/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "775244", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/8 X1-1/4 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "775244", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/8 X1-1/4 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "1-1/4\" x 1/2\"", - "dimensions": { + { "width": 1.2500, - "thickness": 0.5000 + "thickness": 0.5000, + "type": "Steel", + "grade": "A36/A529G50", + "size": "1-1/4\u0022 x 1/2\u0022", + "stockItems": [ + { + "lengthInches": 20.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "776870", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 1/2 X1-1/4 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 20.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "776870", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 1/2 X1-1/4 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A572G50", - "size": "1-1/4\" x 3/4\"", - "dimensions": { + { "width": 1.2500, - "thickness": 0.7500 + "thickness": 0.7500, + "type": "Steel", + "grade": "A36/A572G50", + "size": "1-1/4\u0022 x 3/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "779149", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 3/4 X1-1/4 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "779149", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 3/4 X1-1/4 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36", - "size": "1-1/4\" x 1\"", - "dimensions": { + { "width": 1.2500, - "thickness": 1.0000 + "thickness": 1.0000, + "type": "Steel", + "grade": "A36", + "size": "1-1/4\u0022 x 1\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "18466546", + "supplierDescription": "FLAT BAR - HOT ROLL - A36 - 1 X1-1/4 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "18466546", - "supplierDescription": "FLAT BAR - HOT ROLL - A36 - 1 X1-1/4 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "HR COM QUALITY", - "size": "1-1/2\" x 1/8\"", - "dimensions": { + { "width": 1.5000, - "thickness": 0.1250 + "thickness": 0.1250, + "type": "Steel", + "grade": "HR COM QUALITY", + "size": "1-1/2\u0022 x 1/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "17984229", + "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 1/8 X 1-1/2 X 20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "17984229", - "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 1/8 X 1-1/2 X 20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "HR COM QUALITY", - "size": "1-1/2\" x 3/16\"", - "dimensions": { + { "width": 1.5000, - "thickness": 0.1875 + "thickness": 0.1875, + "type": "Steel", + "grade": "HR COM QUALITY", + "size": "1-1/2\u0022 x 3/16\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "17984624", + "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 3/16 X1-1/2 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "17984624", - "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 3/16 X1-1/2 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36", - "size": "1-1/2\" x 1/4\"", - "dimensions": { + { "width": 1.5000, - "thickness": 0.2500 + "thickness": 0.2500, + "type": "Steel", + "grade": "A36", + "size": "1-1/2\u0022 x 1/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "18490360", + "supplierDescription": "FLAT BAR - HOT ROLL - A36 - P\u0026O - 1/4 X1 1/2 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "18490360", - "supplierDescription": "FLAT BAR - HOT ROLL - A36 - P&O - 1/4 X1 1/2 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36", - "size": "1-1/2\" x 5/16\"", - "dimensions": { + { "width": 1.5000, - "thickness": 0.3125 + "thickness": 0.3125, + "type": "Steel", + "grade": "A36", + "size": "1-1/2\u0022 x 5/16\u0022", + "stockItems": [] }, - "stockItems": [] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "1-1/2\" x 3/8\"", - "dimensions": { + { "width": 1.5000, - "thickness": 0.3750 + "thickness": 0.3750, + "type": "Steel", + "grade": "A36/A529G50", + "size": "1-1/2\u0022 x 3/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "775421", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/8 X1-1/2 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "775421", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/8 X1-1/2 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "1-1/2\" x 1/2\"", - "dimensions": { + { "width": 1.5000, - "thickness": 0.5000 + "thickness": 0.5000, + "type": "Steel", + "grade": "A36/A529G50", + "size": "1-1/2\u0022 x 1/2\u0022", + "stockItems": [ + { + "lengthInches": 20.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "777004", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 1/2 X1-1/2 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 20.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "777004", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 1/2 X1-1/2 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A572G50", - "size": "1-1/2\" x 5/8\"", - "dimensions": { + { "width": 1.5000, - "thickness": 0.6250 + "thickness": 0.6250, + "type": "Steel", + "grade": "A36/A572G50", + "size": "1-1/2\u0022 x 5/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "778533", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 5/8 X1-1/2 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "778533", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 5/8 X1-1/2 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A572G50", - "size": "1-1/2\" x 3/4\"", - "dimensions": { + { "width": 1.5000, - "thickness": 0.7500 + "thickness": 0.7500, + "type": "Steel", + "grade": "A36/A572G50", + "size": "1-1/2\u0022 x 3/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "779181", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 3/4 X1-1/2 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "779181", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 3/4 X1-1/2 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36", - "size": "1-1/2\" x 1\"", - "dimensions": { + { "width": 1.5000, - "thickness": 1.0000 + "thickness": 1.0000, + "type": "Steel", + "grade": "A36", + "size": "1-1/2\u0022 x 1\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "18466554", + "supplierDescription": "FLAT BAR - HOT ROLL - A36 - 1 X1-1/2 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "18466554", - "supplierDescription": "FLAT BAR - HOT ROLL - A36 - 1 X1-1/2 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "HR COM QUALITY", - "size": "1-3/4\" x 1/8\"", - "dimensions": { + { "width": 1.7500, - "thickness": 0.1250 + "thickness": 0.1250, + "type": "Steel", + "grade": "HR COM QUALITY", + "size": "1-3/4\u0022 x 1/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "17984245", + "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 1/8 X 1-3/4 X 20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "17984245", - "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 1/8 X 1-3/4 X 20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "HR COM QUALITY", - "size": "1-3/4\" x 3/16\"", - "dimensions": { + { "width": 1.7500, - "thickness": 0.1875 + "thickness": 0.1875, + "type": "Steel", + "grade": "HR COM QUALITY", + "size": "1-3/4\u0022 x 3/16\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "17984641", + "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 3/16 X1-3/4 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "17984641", - "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 3/16 X1-3/4 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A572PG50", - "size": "1-3/4\" x 1/4\"", - "dimensions": { + { "width": 1.7500, - "thickness": 0.2500 + "thickness": 0.2500, + "type": "Steel", + "grade": "A36/A572PG50", + "size": "1-3/4\u0022 x 1/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "772924", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572PG50 - 1/4 X1 3/4 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "772924", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572PG50 - 1/4 X1 3/4 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "1-3/4\" x 3/8\"", - "dimensions": { + { "width": 1.7500, - "thickness": 0.3750 + "thickness": 0.3750, + "type": "Steel", + "grade": "A36/A529G50", + "size": "1-3/4\u0022 x 3/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "775498", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/8 X1-3/4 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "775498", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/8 X1-3/4 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "1-3/4\" x 1/2\"", - "dimensions": { + { "width": 1.7500, - "thickness": 0.5000 + "thickness": 0.5000, + "type": "Steel", + "grade": "A36/A529G50", + "size": "1-3/4\u0022 x 1/2\u0022", + "stockItems": [ + { + "lengthInches": 20.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "777055", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 1/2 X1-3/4 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 20.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "777055", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 1/2 X1-3/4 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "1-3/4\" x 3/4\"", - "dimensions": { + { "width": 1.7500, - "thickness": 0.7500 + "thickness": 0.7500, + "type": "Steel", + "grade": "A36/A529G50", + "size": "1-3/4\u0022 x 3/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "779202", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/4 X1-3/4 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "779202", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/4 X1-3/4 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36", - "size": "1-3/4\" x 1\"", - "dimensions": { + { "width": 1.7500, - "thickness": 1.0000 + "thickness": 1.0000, + "type": "Steel", + "grade": "A36", + "size": "1-3/4\u0022 x 1\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "18466562", + "supplierDescription": "FLAT BAR - HOT ROLL - A36 - 1 X1-3/4 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "18466562", - "supplierDescription": "FLAT BAR - HOT ROLL - A36 - 1 X1-3/4 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "HR COM QUALITY", - "size": "2\" x 1/8\"", - "dimensions": { + { "width": 2.0000, - "thickness": 0.1250 + "thickness": 0.1250, + "type": "Steel", + "grade": "HR COM QUALITY", + "size": "2\u0022 x 1/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "17984261", + "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 1/8 X 2 X 20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "17984261", - "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 1/8 X 2 X 20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "HR COM QUALITY", - "size": "2\" x 3/16\"", - "dimensions": { + { "width": 2.0000, - "thickness": 0.1875 + "thickness": 0.1875, + "type": "Steel", + "grade": "HR COM QUALITY", + "size": "2\u0022 x 3/16\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "17984647", + "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 3/16 X2 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "17984647", - "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 3/16 X2 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36", - "size": "2\" x 1/4\"", - "dimensions": { + { "width": 2.0000, - "thickness": 0.2500 + "thickness": 0.2500, + "type": "Steel", + "grade": "A36", + "size": "2\u0022 x 1/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "18498450", + "supplierDescription": "FLAT BAR - HOT ROLL - A36 - P\u0026O - 1/4 X2 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "18498450", - "supplierDescription": "FLAT BAR - HOT ROLL - A36 - P&O - 1/4 X2 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "2\" x 5/16\"", - "dimensions": { + { "width": 2.0000, - "thickness": 0.3125 + "thickness": 0.3125, + "type": "Steel", + "grade": "A36/A529G50", + "size": "2\u0022 x 5/16\u0022", + "stockItems": [] }, - "stockItems": [] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A572GR50", - "size": "2\" x 3/8\"", - "dimensions": { + { "width": 2.0000, - "thickness": 0.3750 + "thickness": 0.3750, + "type": "Steel", + "grade": "A572GR50", + "size": "2\u0022 x 3/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "1796220", + "supplierDescription": "FLAT BAR - HOT ROLL - A572GR50 - PBQ - 3/8 X2 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "1796220", - "supplierDescription": "FLAT BAR - HOT ROLL - A572GR50 - PBQ - 3/8 X2 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "2\" x 1/2\"", - "dimensions": { + { "width": 2.0000, - "thickness": 0.5000 + "thickness": 0.5000, + "type": "Steel", + "grade": "A36/A529G50", + "size": "2\u0022 x 1/2\u0022", + "stockItems": [ + { + "lengthInches": 20.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "777207", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 1/2 X2 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 20.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "777207", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 1/2 X2 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A572G50", - "size": "2\" x 5/8\"", - "dimensions": { + { "width": 2.0000, - "thickness": 0.6250 + "thickness": 0.6250, + "type": "Steel", + "grade": "A36/A572G50", + "size": "2\u0022 x 5/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "778605", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 5/8 X2 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "778605", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 5/8 X2 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "2\" x 3/4\"", - "dimensions": { + { "width": 2.0000, - "thickness": 0.7500 + "thickness": 0.7500, + "type": "Steel", + "grade": "A36/A529G50", + "size": "2\u0022 x 3/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "779261", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/4 X2 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "779261", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/4 X2 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "2\" x 1\"", - "dimensions": { + { "width": 2.0000, - "thickness": 1.0000 + "thickness": 1.0000, + "type": "Steel", + "grade": "A36/A529G50", + "size": "2\u0022 x 1\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "780326", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 1 X2 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "780326", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 1 X2 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "2\" x 1-1/4\"", - "dimensions": { + { "width": 2.0000, - "thickness": 1.2500 + "thickness": 1.2500, + "type": "Steel", + "grade": "A36/A529G50", + "size": "2\u0022 x 1-1/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "781206", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 1-1/4 X 2" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "781206", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 1-1/4 X 2" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "2\" x 1-1/2\"", - "dimensions": { + { "width": 2.0000, - "thickness": 1.5000 + "thickness": 1.5000, + "type": "Steel", + "grade": "A36/A529G50", + "size": "2\u0022 x 1-1/2\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "781724", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 1-1/2 X 2" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "781724", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 1-1/2 X 2" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "2-1/4\" x 1/4\"", - "dimensions": { + { "width": 2.2500, - "thickness": 0.2500 + "thickness": 0.2500, + "type": "Steel", + "grade": "A36/A529G50", + "size": "2-1/4\u0022 x 1/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "773257", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 1/4 X2-1/4 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "773257", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 1/4 X2-1/4 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "2-1/4\" x 3/8\"", - "dimensions": { + { "width": 2.2500, - "thickness": 0.3750 + "thickness": 0.3750, + "type": "Steel", + "grade": "A36/A529G50", + "size": "2-1/4\u0022 x 3/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "775842", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/8 X2-1/4 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "775842", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/8 X2-1/4 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "2-1/4\" x 1/2\"", - "dimensions": { + { "width": 2.2500, - "thickness": 0.5000 + "thickness": 0.5000, + "type": "Steel", + "grade": "A36/A529G50", + "size": "2-1/4\u0022 x 1/2\u0022", + "stockItems": [ + { + "lengthInches": 20.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "777282", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 1/2 X2-1/4 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 20.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "777282", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 1/2 X2-1/4 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "HR COM QUALITY", - "size": "2-1/2\" x 1/8\"", - "dimensions": { + { "width": 2.5000, - "thickness": 0.1250 + "thickness": 0.1250, + "type": "Steel", + "grade": "HR COM QUALITY", + "size": "2-1/2\u0022 x 1/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "17984270", + "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 1/8 X 2-1/2 X 20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "17984270", - "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 1/8 X 2-1/2 X 20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "HR COM QUALITY", - "size": "2-1/2\" x 3/16\"", - "dimensions": { + { "width": 2.5000, - "thickness": 0.1875 + "thickness": 0.1875, + "type": "Steel", + "grade": "HR COM QUALITY", + "size": "2-1/2\u0022 x 3/16\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "17984691", + "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 3/16 X2-1/2 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "17984691", - "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 3/16 X2-1/2 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529650", - "size": "2-1/2\" x 1/4\"", - "dimensions": { + { "width": 2.5000, - "thickness": 0.2500 + "thickness": 0.2500, + "type": "Steel", + "grade": "A36/A529650", + "size": "2-1/2\u0022 x 1/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "773370", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529650 - 1/4 X 2-1/2 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "773370", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529650 - 1/4 X 2-1/2 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "2-1/2\" x 5/16\"", - "dimensions": { + { "width": 2.5000, - "thickness": 0.3125 + "thickness": 0.3125, + "type": "Steel", + "grade": "A36/A529G50", + "size": "2-1/2\u0022 x 5/16\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "774858", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 5/16 X2-1/2 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "774858", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 5/16 X2-1/2 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "2-1/2\" x 3/8\"", - "dimensions": { + { "width": 2.5000, - "thickness": 0.3750 + "thickness": 0.3750, + "type": "Steel", + "grade": "A36/A529G50", + "size": "2-1/2\u0022 x 3/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "775885", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/8 X2-1/2 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "775885", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/8 X2-1/2 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "2-1/2\" x 1/2\"", - "dimensions": { + { "width": 2.5000, - "thickness": 0.5000 + "thickness": 0.5000, + "type": "Steel", + "grade": "A36/A529G50", + "size": "2-1/2\u0022 x 1/2\u0022", + "stockItems": [ + { + "lengthInches": 20.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "777346", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 1/2 X2-1/2 X20" + } + ] + }, + { + "lengthInches": 315.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "19336604", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 1/2 X2-1/2 X24FT3" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 20.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "777346", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 1/2 X2-1/2 X20" - } - ] - }, - { - "lengthInches": 315.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "19336604", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 1/2 X2-1/2 X24FT3" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A572G50", - "size": "2-1/2\" x 5/8\"", - "dimensions": { + { "width": 2.5000, - "thickness": 0.6250 + "thickness": 0.6250, + "type": "Steel", + "grade": "A36/A572G50", + "size": "2-1/2\u0022 x 5/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "778656", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 5/8 X2-1/2 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "778656", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 5/8 X2-1/2 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "2-1/2\" x 3/4\"", - "dimensions": { + { "width": 2.5000, - "thickness": 0.7500 + "thickness": 0.7500, + "type": "Steel", + "grade": "A36/A529G50", + "size": "2-1/2\u0022 x 3/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "779333", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/4 X2-1/2 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "779333", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/4 X2-1/2 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A572G50", - "size": "2-1/2\" x 1\"", - "dimensions": { + { "width": 2.5000, - "thickness": 1.0000 + "thickness": 1.0000, + "type": "Steel", + "grade": "A36/A572G50", + "size": "2-1/2\u0022 x 1\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "780393", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 1 X 2 1/2 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "780393", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 1 X 2 1/2 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A579G50", - "size": "2-1/2\" x 1-1/2\"", - "dimensions": { + { "width": 2.5000, - "thickness": 1.5000 + "thickness": 1.5000, + "type": "Steel", + "grade": "A36/A579G50", + "size": "2-1/2\u0022 x 1-1/2\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "781767", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A579G50 - 1-1/2 X2-1/2 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "781767", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A579G50 - 1-1/2 X2-1/2 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529650", - "size": "2-3/4\" x 1/4\"", - "dimensions": { + { "width": 2.7500, - "thickness": 0.2500 + "thickness": 0.2500, + "type": "Steel", + "grade": "A36/A529650", + "size": "2-3/4\u0022 x 1/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "773417", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529650 - 1/4 X 2-3/4 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "773417", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529650 - 1/4 X 2-3/4 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "2-3/4\" x 1/2\"", - "dimensions": { + { "width": 2.7500, - "thickness": 0.5000 + "thickness": 0.5000, + "type": "Steel", + "grade": "A36/A529G50", + "size": "2-3/4\u0022 x 1/2\u0022", + "stockItems": [ + { + "lengthInches": 20.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "777418", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 1/2 X2-3/4 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 20.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "777418", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 1/2 X2-3/4 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "HR COM QUALITY", - "size": "3\" x 1/8\"", - "dimensions": { + { "width": 3.0000, - "thickness": 0.1250 + "thickness": 0.1250, + "type": "Steel", + "grade": "HR COM QUALITY", + "size": "3\u0022 x 1/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "17984288", + "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 1/8 X 3 X 20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "17984288", - "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 1/8 X 3 X 20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "HR COM QUALITY", - "size": "3\" x 3/16\"", - "dimensions": { + { "width": 3.0000, - "thickness": 0.1875 + "thickness": 0.1875, + "type": "Steel", + "grade": "HR COM QUALITY", + "size": "3\u0022 x 3/16\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "17984712", + "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 3/16 X3 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "17984712", - "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 3/16 X3 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529650", - "size": "3\" x 1/4\"", - "dimensions": { + { "width": 3.0000, - "thickness": 0.2500 + "thickness": 0.2500, + "type": "Steel", + "grade": "A36/A529650", + "size": "3\u0022 x 1/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "773644", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529650 - 1/4 X 3 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "773644", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529650 - 1/4 X 3 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "3\" x 5/16\"", - "dimensions": { + { "width": 3.0000, - "thickness": 0.3125 + "thickness": 0.3125, + "type": "Steel", + "grade": "A36/A529G50", + "size": "3\u0022 x 5/16\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "774874", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 5/16 X3 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "774874", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 5/16 X3 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "3\" x 3/8\"", - "dimensions": { + { "width": 3.0000, - "thickness": 0.3750 + "thickness": 0.3750, + "type": "Steel", + "grade": "A36/A529G50", + "size": "3\u0022 x 3/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "775981", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/8 X3 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "775981", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/8 X3 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A572G50", - "size": "3\" x 1/2\"", - "dimensions": { + { "width": 3.0000, - "thickness": 0.5000 + "thickness": 0.5000, + "type": "Steel", + "grade": "A36/A572G50", + "size": "3\u0022 x 1/2\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "777557", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 1/2 X3 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "777557", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 1/2 X3 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A572G50", - "size": "3\" x 5/8\"", - "dimensions": { + { "width": 3.0000, - "thickness": 0.6250 + "thickness": 0.6250, + "type": "Steel", + "grade": "A36/A572G50", + "size": "3\u0022 x 5/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "778701", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 5/8 X3 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "778701", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 5/8 X3 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "3\" x 3/4\"", - "dimensions": { + { "width": 3.0000, - "thickness": 0.7500 + "thickness": 0.7500, + "type": "Steel", + "grade": "A36/A529G50", + "size": "3\u0022 x 3/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "779376", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/4 X3 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "779376", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/4 X3 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A572G50", - "size": "3\" x 1\"", - "dimensions": { + { "width": 3.0000, - "thickness": 1.0000 + "thickness": 1.0000, + "type": "Steel", + "grade": "A36/A572G50", + "size": "3\u0022 x 1\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "780490", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 1 X 3 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "780490", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 1 X 3 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "3\" x 1-1/4\"", - "dimensions": { + { "width": 3.0000, - "thickness": 1.2500 + "thickness": 1.2500, + "type": "Steel", + "grade": "A36/A529G50", + "size": "3\u0022 x 1-1/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "781290", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 1-1/4 X 3" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "781290", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 1-1/4 X 3" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A579G50", - "size": "3\" x 1-1/2\"", - "dimensions": { + { "width": 3.0000, - "thickness": 1.5000 + "thickness": 1.5000, + "type": "Steel", + "grade": "A36/A579G50", + "size": "3\u0022 x 1-1/2\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "781821", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A579G50 - 1-1/2 X3 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "781821", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A579G50 - 1-1/2 X3 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A579G50", - "size": "3\" x 2\"", - "dimensions": { + { "width": 3.0000, - "thickness": 2.0000 + "thickness": 2.0000, + "type": "Steel", + "grade": "A36/A579G50", + "size": "3\u0022 x 2\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "782495", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A579G50 - 2 X3 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "782495", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A579G50 - 2 X3 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "HR COM QUALITY", - "size": "3-1/2\" x 1/8\"", - "dimensions": { + { "width": 3.5000, - "thickness": 0.1250 + "thickness": 0.1250, + "type": "Steel", + "grade": "HR COM QUALITY", + "size": "3-1/2\u0022 x 1/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "17984309", + "supplierDescription": "FLAT BAR - HR COM QUALITY - 1/8 X3-1/2 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "17984309", - "supplierDescription": "FLAT BAR - HR COM QUALITY - 1/8 X3-1/2 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "HR COM QUALITY", - "size": "3-1/2\" x 3/16\"", - "dimensions": { + { "width": 3.5000, - "thickness": 0.1875 + "thickness": 0.1875, + "type": "Steel", + "grade": "HR COM QUALITY", + "size": "3-1/2\u0022 x 3/16\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "17984739", + "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 3/16 X3-1/2 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "17984739", - "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 3/16 X3-1/2 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529650", - "size": "3-1/2\" x 1/4\"", - "dimensions": { + { "width": 3.5000, - "thickness": 0.2500 + "thickness": 0.2500, + "type": "Steel", + "grade": "A36/A529650", + "size": "3-1/2\u0022 x 1/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "773716", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529650 - 1/4 X 3-1/2 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "773716", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529650 - 1/4 X 3-1/2 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "3-1/2\" x 5/16\"", - "dimensions": { + { "width": 3.5000, - "thickness": 0.3125 + "thickness": 0.3125, + "type": "Steel", + "grade": "A36/A529G50", + "size": "3-1/2\u0022 x 5/16\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "774903", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 5/16 X3-1/2 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "774903", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 5/16 X3-1/2 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "3-1/2\" x 3/8\"", - "dimensions": { + { "width": 3.5000, - "thickness": 0.3750 + "thickness": 0.3750, + "type": "Steel", + "grade": "A36/A529G50", + "size": "3-1/2\u0022 x 3/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "18783028", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/8 X3-1/2 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "18783028", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/8 X3-1/2 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A572G50", - "size": "3-1/2\" x 1/2\"", - "dimensions": { + { "width": 3.5000, - "thickness": 0.5000 + "thickness": 0.5000, + "type": "Steel", + "grade": "A36/A572G50", + "size": "3-1/2\u0022 x 1/2\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "777696", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 1/2 X3-1/2 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "777696", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 1/2 X3-1/2 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A572G50", - "size": "3-1/2\" x 5/8\"", - "dimensions": { + { "width": 3.5000, - "thickness": 0.6250 + "thickness": 0.6250, + "type": "Steel", + "grade": "A36/A572G50", + "size": "3-1/2\u0022 x 5/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "778728", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 5/8 X3-1/2 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "778728", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 5/8 X3-1/2 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "3-1/2\" x 3/4\"", - "dimensions": { + { "width": 3.5000, - "thickness": 0.7500 + "thickness": 0.7500, + "type": "Steel", + "grade": "A36/A529G50", + "size": "3-1/2\u0022 x 3/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "779430", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/4 X3-1/2 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "779430", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/4 X3-1/2 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A572G50", - "size": "3-1/2\" x 1\"", - "dimensions": { + { "width": 3.5000, - "thickness": 1.0000 + "thickness": 1.0000, + "type": "Steel", + "grade": "A36/A572G50", + "size": "3-1/2\u0022 x 1\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "780553", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 1 X 3 1/2 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "780553", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 1 X 3 1/2 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "HR COM QUALITY", - "size": "4\" x 1/8\"", - "dimensions": { + { "width": 4.0000, - "thickness": 0.1250 + "thickness": 0.1250, + "type": "Steel", + "grade": "HR COM QUALITY", + "size": "4\u0022 x 1/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "17984317", + "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 1/8 X4 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "17984317", - "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 1/8 X4 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "HR COM QUALITY", - "size": "4\" x 3/16\"", - "dimensions": { + { "width": 4.0000, - "thickness": 0.1875 + "thickness": 0.1875, + "type": "Steel", + "grade": "HR COM QUALITY", + "size": "4\u0022 x 3/16\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "17984755", + "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 3/16 X4 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "17984755", - "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 3/16 X4 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529650", - "size": "4\" x 1/4\"", - "dimensions": { + { "width": 4.0000, - "thickness": 0.2500 + "thickness": 0.2500, + "type": "Steel", + "grade": "A36/A529650", + "size": "4\u0022 x 1/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "773863", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529650 - 1/4 X 4 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "773863", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529650 - 1/4 X 4 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "4\" x 5/16\"", - "dimensions": { + { "width": 4.0000, - "thickness": 0.3125 + "thickness": 0.3125, + "type": "Steel", + "grade": "A36/A529G50", + "size": "4\u0022 x 5/16\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "774920", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 5/16 X4 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "774920", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 5/16 X4 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "4\" x 3/8\"", - "dimensions": { + { "width": 4.0000, - "thickness": 0.3750 + "thickness": 0.3750, + "type": "Steel", + "grade": "A36/A529G50", + "size": "4\u0022 x 3/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "776175", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/8 X4 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "776175", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/8 X4 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A572G50", - "size": "4\" x 1/2\"", - "dimensions": { + { "width": 4.0000, - "thickness": 0.5000 + "thickness": 0.5000, + "type": "Steel", + "grade": "A36/A572G50", + "size": "4\u0022 x 1/2\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "777813", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 1/2 X4 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "777813", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 1/2 X4 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A572G50", - "size": "4\" x 5/8\"", - "dimensions": { + { "width": 4.0000, - "thickness": 0.6250 + "thickness": 0.6250, + "type": "Steel", + "grade": "A36/A572G50", + "size": "4\u0022 x 5/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "778752", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 5/8 X4 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "778752", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 5/8 X4 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "4\" x 3/4\"", - "dimensions": { + { "width": 4.0000, - "thickness": 0.7500 + "thickness": 0.7500, + "type": "Steel", + "grade": "A36/A529G50", + "size": "4\u0022 x 3/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "779472", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/4 X4 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "779472", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/4 X4 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A572G50", - "size": "4\" x 1\"", - "dimensions": { + { "width": 4.0000, - "thickness": 1.0000 + "thickness": 1.0000, + "type": "Steel", + "grade": "A36/A572G50", + "size": "4\u0022 x 1\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "780609", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 1 X 4 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "780609", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 1 X 4 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "4\" x 1-1/4\"", - "dimensions": { + { "width": 4.0000, - "thickness": 1.2500 + "thickness": 1.2500, + "type": "Steel", + "grade": "A36/A529G50", + "size": "4\u0022 x 1-1/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "781425", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 1-1/4 X 4" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "781425", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 1-1/4 X 4" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A579G50", - "size": "4\" x 1-1/2\"", - "dimensions": { + { "width": 4.0000, - "thickness": 1.5000 + "thickness": 1.5000, + "type": "Steel", + "grade": "A36/A579G50", + "size": "4\u0022 x 1-1/2\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "781919", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A579G50 - 1-1/2 X4 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "781919", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A579G50 - 1-1/2 X4 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A579G50", - "size": "4\" x 2\"", - "dimensions": { + { "width": 4.0000, - "thickness": 2.0000 + "thickness": 2.0000, + "type": "Steel", + "grade": "A36/A579G50", + "size": "4\u0022 x 2\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "782567", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A579G50 - 2 X4 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "782567", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A579G50 - 2 X4 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529650", - "size": "4-1/2\" x 1/4\"", - "dimensions": { + { "width": 4.5000, - "thickness": 0.2500 + "thickness": 0.2500, + "type": "Steel", + "grade": "A36/A529650", + "size": "4-1/2\u0022 x 1/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "773927", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529650 - 1/4 X 4-1/2 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "773927", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529650 - 1/4 X 4-1/2 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "4-1/2\" x 3/8\"", - "dimensions": { + { "width": 4.5000, - "thickness": 0.3750 + "thickness": 0.3750, + "type": "Steel", + "grade": "A36/A529G50", + "size": "4-1/2\u0022 x 3/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "776221", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/8 X4-1/2 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "776221", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/8 X4-1/2 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A572G50", - "size": "4-1/2\" x 1/2\"", - "dimensions": { + { "width": 4.5000, - "thickness": 0.5000 + "thickness": 0.5000, + "type": "Steel", + "grade": "A36/A572G50", + "size": "4-1/2\u0022 x 1/2\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "777872", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 1/2 X4-1/2 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "777872", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 1/2 X4-1/2 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "4-1/2\" x 3/4\"", - "dimensions": { + { "width": 4.5000, - "thickness": 0.7500 + "thickness": 0.7500, + "type": "Steel", + "grade": "A36/A529G50", + "size": "4-1/2\u0022 x 3/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "779528", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/4 X4-1/2 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "779528", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/4 X4-1/2 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A572G50", - "size": "4-1/2\" x 1\"", - "dimensions": { + { "width": 4.5000, - "thickness": 1.0000 + "thickness": 1.0000, + "type": "Steel", + "grade": "A36/A572G50", + "size": "4-1/2\u0022 x 1\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "780668", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 1 X 4 1/2 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "780668", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 1 X 4 1/2 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "HR COM QUALITY", - "size": "5\" x 1/8\"", - "dimensions": { + { "width": 5.0000, - "thickness": 0.1250 + "thickness": 0.1250, + "type": "Steel", + "grade": "HR COM QUALITY", + "size": "5\u0022 x 1/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "17984325", + "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 1/8 X5 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "17984325", - "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 1/8 X5 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "HR COM QUALITY", - "size": "5\" x 3/16\"", - "dimensions": { + { "width": 5.0000, - "thickness": 0.1875 + "thickness": 0.1875, + "type": "Steel", + "grade": "HR COM QUALITY", + "size": "5\u0022 x 3/16\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "17984771", + "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 3/16 X5 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "17984771", - "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 3/16 X5 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36", - "size": "5\" x 1/4\"", - "dimensions": { + { "width": 5.0000, - "thickness": 0.2500 + "thickness": 0.2500, + "type": "Steel", + "grade": "A36", + "size": "5\u0022 x 1/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "18490366", + "supplierDescription": "FLAT BAR - HOT ROLL - A36 - P\u0026O - 1/4 X5 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "18490366", - "supplierDescription": "FLAT BAR - HOT ROLL - A36 - P&O - 1/4 X5 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "5\" x 5/16\"", - "dimensions": { + { "width": 5.0000, - "thickness": 0.3125 + "thickness": 0.3125, + "type": "Steel", + "grade": "A36/A529G50", + "size": "5\u0022 x 5/16\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "774952", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 5/16 X5 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "774952", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 5/16 X5 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "5\" x 3/8\"", - "dimensions": { + { "width": 5.0000, - "thickness": 0.3750 + "thickness": 0.3750, + "type": "Steel", + "grade": "A36/A529G50", + "size": "5\u0022 x 3/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "776255", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/8 X5 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "776255", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/8 X5 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A572G50", - "size": "5\" x 1/2\"", - "dimensions": { + { "width": 5.0000, - "thickness": 0.5000 + "thickness": 0.5000, + "type": "Steel", + "grade": "A36/A572G50", + "size": "5\u0022 x 1/2\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "777928", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 1/2 X5 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "777928", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 1/2 X5 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A572G50", - "size": "5\" x 5/8\"", - "dimensions": { + { "width": 5.0000, - "thickness": 0.6250 + "thickness": 0.6250, + "type": "Steel", + "grade": "A36/A572G50", + "size": "5\u0022 x 5/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "778795", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 5/8 X5 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "778795", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 5/8 X5 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "5\" x 3/4\"", - "dimensions": { + { "width": 5.0000, - "thickness": 0.7500 + "thickness": 0.7500, + "type": "Steel", + "grade": "A36/A529G50", + "size": "5\u0022 x 3/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "779579", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/4 X5 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "779579", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/4 X5 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A572G50", - "size": "5\" x 1\"", - "dimensions": { + { "width": 5.0000, - "thickness": 1.0000 + "thickness": 1.0000, + "type": "Steel", + "grade": "A36/A572G50", + "size": "5\u0022 x 1\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "780748", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 1 X 5 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "780748", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 1 X 5 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "5\" x 1-1/4\"", - "dimensions": { + { "width": 5.0000, - "thickness": 1.2500 + "thickness": 1.2500, + "type": "Steel", + "grade": "A36/A529G50", + "size": "5\u0022 x 1-1/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "781505", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 1-1/4 X 5" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "781505", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 1-1/4 X 5" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A579G50", - "size": "5\" x 1-1/2\"", - "dimensions": { + { "width": 5.0000, - "thickness": 1.5000 + "thickness": 1.5000, + "type": "Steel", + "grade": "A36/A579G50", + "size": "5\u0022 x 1-1/2\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "781994", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A579G50 - 1-1/2 X5 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "781994", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A579G50 - 1-1/2 X5 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A579G50", - "size": "5\" x 2\"", - "dimensions": { + { "width": 5.0000, - "thickness": 2.0000 + "thickness": 2.0000, + "type": "Steel", + "grade": "A36/A579G50", + "size": "5\u0022 x 2\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "782639", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A579G50 - 2 X5 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "782639", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A579G50 - 2 X5 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529650", - "size": "5-1/2\" x 1/4\"", - "dimensions": { + { "width": 5.5000, - "thickness": 0.2500 + "thickness": 0.2500, + "type": "Steel", + "grade": "A36/A529650", + "size": "5-1/2\u0022 x 1/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "774081", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529650 - 1/4 X 5-1/2 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "774081", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529650 - 1/4 X 5-1/2 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "5-1/2\" x 3/8\"", - "dimensions": { + { "width": 5.5000, - "thickness": 0.3750 + "thickness": 0.3750, + "type": "Steel", + "grade": "A36/A529G50", + "size": "5-1/2\u0022 x 3/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "776301", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/8 X5-1/2 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "776301", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/8 X5-1/2 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A572G50", - "size": "5-1/2\" x 1/2\"", - "dimensions": { + { "width": 5.5000, - "thickness": 0.5000 + "thickness": 0.5000, + "type": "Steel", + "grade": "A36/A572G50", + "size": "5-1/2\u0022 x 1/2\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "777979", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 1/2 X5-1/2 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "777979", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 1/2 X5-1/2 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "5-1/2\" x 3/4\"", - "dimensions": { + { "width": 5.5000, - "thickness": 0.7500 + "thickness": 0.7500, + "type": "Steel", + "grade": "A36/A529G50", + "size": "5-1/2\u0022 x 3/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "779675", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/4 X5-1/2 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "779675", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/4 X5-1/2 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "HR COM QUALITY", - "size": "6\" x 1/8\"", - "dimensions": { + { "width": 6.0000, - "thickness": 0.1250 + "thickness": 0.1250, + "type": "Steel", + "grade": "HR COM QUALITY", + "size": "6\u0022 x 1/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "17984341", + "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 1/8 X6 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "17984341", - "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 1/8 X6 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "HR COM QUALITY", - "size": "6\" x 3/16\"", - "dimensions": { + { "width": 6.0000, - "thickness": 0.1875 + "thickness": 0.1875, + "type": "Steel", + "grade": "HR COM QUALITY", + "size": "6\u0022 x 3/16\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "17984835", + "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 3/16 X6 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "17984835", - "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 3/16 X6 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529650", - "size": "6\" x 1/4\"", - "dimensions": { + { "width": 6.0000, - "thickness": 0.2500 + "thickness": 0.2500, + "type": "Steel", + "grade": "A36/A529650", + "size": "6\u0022 x 1/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "774170", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529650 - 1/4 X 6 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "774170", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529650 - 1/4 X 6 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "6\" x 5/16\"", - "dimensions": { + { "width": 6.0000, - "thickness": 0.3125 + "thickness": 0.3125, + "type": "Steel", + "grade": "A36/A529G50", + "size": "6\u0022 x 5/16\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "774997", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 5/16 X6 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "774997", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 5/16 X6 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "6\" x 3/8\"", - "dimensions": { + { "width": 6.0000, - "thickness": 0.3750 + "thickness": 0.3750, + "type": "Steel", + "grade": "A36/A529G50", + "size": "6\u0022 x 3/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "776360", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/8 X6 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "776360", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/8 X6 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A572G50", - "size": "6\" x 1/2\"", - "dimensions": { + { "width": 6.0000, - "thickness": 0.5000 + "thickness": 0.5000, + "type": "Steel", + "grade": "A36/A572G50", + "size": "6\u0022 x 1/2\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "778066", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 1/2 X6 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "778066", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 1/2 X6 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A572G50", - "size": "6\" x 5/8\"", - "dimensions": { + { "width": 6.0000, - "thickness": 0.6250 + "thickness": 0.6250, + "type": "Steel", + "grade": "A36/A572G50", + "size": "6\u0022 x 5/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "778589", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 5/8 X6 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "778589", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 5/8 X6 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "6\" x 3/4\"", - "dimensions": { + { "width": 6.0000, - "thickness": 0.7500 + "thickness": 0.7500, + "type": "Steel", + "grade": "A36/A529G50", + "size": "6\u0022 x 3/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "779712", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/4 X6 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "779712", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/4 X6 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A572G50", - "size": "6\" x 1\"", - "dimensions": { + { "width": 6.0000, - "thickness": 1.0000 + "thickness": 1.0000, + "type": "Steel", + "grade": "A36/A572G50", + "size": "6\u0022 x 1\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "780852", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 1 X 6 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "780852", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 1 X 6 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "6\" x 1-1/4\"", - "dimensions": { + { "width": 6.0000, - "thickness": 1.2500 + "thickness": 1.2500, + "type": "Steel", + "grade": "A36/A529G50", + "size": "6\u0022 x 1-1/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "781572", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 1-1/4 X 6" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "781572", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 1-1/4 X 6" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A579G50", - "size": "6\" x 1-1/2\"", - "dimensions": { + { "width": 6.0000, - "thickness": 1.5000 + "thickness": 1.5000, + "type": "Steel", + "grade": "A36/A579G50", + "size": "6\u0022 x 1-1/2\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "782081", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A579G50 - 1-1/2 X6 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "782081", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A579G50 - 1-1/2 X6 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A579G50", - "size": "6\" x 2\"", - "dimensions": { + { "width": 6.0000, - "thickness": 2.0000 + "thickness": 2.0000, + "type": "Steel", + "grade": "A36/A579G50", + "size": "6\u0022 x 2\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "782680", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A579G50 - 2 X6 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "782680", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A579G50 - 2 X6 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "7\" x 1/4\"", - "dimensions": { + { "width": 7.0000, - "thickness": 0.2500 + "thickness": 0.2500, + "type": "Steel", + "grade": "A36/A529G50", + "size": "7\u0022 x 1/4\u0022", + "stockItems": [] }, - "stockItems": [] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "7\" x 3/8\"", - "dimensions": { + { "width": 7.0000, - "thickness": 0.3750 + "thickness": 0.3750, + "type": "Steel", + "grade": "A36/A529G50", + "size": "7\u0022 x 3/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "776458", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/8 X7 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "776458", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/8 X7 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A572G50", - "size": "7\" x 1/2\"", - "dimensions": { + { "width": 7.0000, - "thickness": 0.5000 + "thickness": 0.5000, + "type": "Steel", + "grade": "A36/A572G50", + "size": "7\u0022 x 1/2\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "778189", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 1/2 X7 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "778189", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 1/2 X7 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A572G50", - "size": "7\" x 5/8\"", - "dimensions": { + { "width": 7.0000, - "thickness": 0.6250 + "thickness": 0.6250, + "type": "Steel", + "grade": "A36/A572G50", + "size": "7\u0022 x 5/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "779094", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 5/8 X7 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "779094", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 5/8 X7 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "7\" x 3/4\"", - "dimensions": { + { "width": 7.0000, - "thickness": 0.7500 + "thickness": 0.7500, + "type": "Steel", + "grade": "A36/A529G50", + "size": "7\u0022 x 3/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "779780", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/4 X7 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "779780", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/4 X7 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A572G50", - "size": "7\" x 1\"", - "dimensions": { + { "width": 7.0000, - "thickness": 1.0000 + "thickness": 1.0000, + "type": "Steel", + "grade": "A36/A572G50", + "size": "7\u0022 x 1\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "780916", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 1 X 7 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "780916", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 1 X 7 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "HR COM QUALITY", - "size": "8\" x 1/8\"", - "dimensions": { + { "width": 8.0000, - "thickness": 0.1250 + "thickness": 0.1250, + "type": "Steel", + "grade": "HR COM QUALITY", + "size": "8\u0022 x 1/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "17984350", + "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 1/8 X8 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "17984350", - "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 1/8 X8 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "HR COM QUALITY", - "size": "8\" x 3/16\"", - "dimensions": { + { "width": 8.0000, - "thickness": 0.1875 + "thickness": 0.1875, + "type": "Steel", + "grade": "HR COM QUALITY", + "size": "8\u0022 x 3/16\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "17984860", + "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 3/16 X8 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "17984860", - "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 3/16 X8 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "8\" x 1/4\"", - "dimensions": { + { "width": 8.0000, - "thickness": 0.2500 + "thickness": 0.2500, + "type": "Steel", + "grade": "A36/A529G50", + "size": "8\u0022 x 1/4\u0022", + "stockItems": [] }, - "stockItems": [] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "8\" x 5/16\"", - "dimensions": { + { "width": 8.0000, - "thickness": 0.3125 + "thickness": 0.3125, + "type": "Steel", + "grade": "A36/A529G50", + "size": "8\u0022 x 5/16\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "775033", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 5/16 X8 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "775033", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 5/16 X8 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "8\" x 3/8\"", - "dimensions": { + { "width": 8.0000, - "thickness": 0.3750 + "thickness": 0.3750, + "type": "Steel", + "grade": "A36/A529G50", + "size": "8\u0022 x 3/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "776520", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/8 X8 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "776520", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/8 X8 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A572G50", - "size": "8\" x 1/2\"", - "dimensions": { + { "width": 8.0000, - "thickness": 0.5000 + "thickness": 0.5000, + "type": "Steel", + "grade": "A36/A572G50", + "size": "8\u0022 x 1/2\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "778269", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 1/2 X8 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "778269", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 1/2 X8 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A572G50", - "size": "8\" x 5/8\"", - "dimensions": { + { "width": 8.0000, - "thickness": 0.6250 + "thickness": 0.6250, + "type": "Steel", + "grade": "A36/A572G50", + "size": "8\u0022 x 5/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "779399", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 5/8 X8 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "779399", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 5/8 X8 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "8\" x 3/4\"", - "dimensions": { + { "width": 8.0000, - "thickness": 0.7500 + "thickness": 0.7500, + "type": "Steel", + "grade": "A36/A529G50", + "size": "8\u0022 x 3/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "779843", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/4 X8 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "779843", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/4 X8 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A572G50", - "size": "8\" x 1\"", - "dimensions": { + { "width": 8.0000, - "thickness": 1.0000 + "thickness": 1.0000, + "type": "Steel", + "grade": "A36/A572G50", + "size": "8\u0022 x 1\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "780941", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 1 X 8 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "780941", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 1 X 8 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "8\" x 1-1/8\"", - "dimensions": { + { "width": 8.0000, - "thickness": 1.1250 + "thickness": 1.1250, + "type": "Steel", + "grade": "A36/A529G50", + "size": "8\u0022 x 1-1/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "410697", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 1-1/8 X 8" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "410697", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 1-1/8 X 8" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "8\" x 1-1/4\"", - "dimensions": { + { "width": 8.0000, - "thickness": 1.2500 + "thickness": 1.2500, + "type": "Steel", + "grade": "A36/A529G50", + "size": "8\u0022 x 1-1/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "781628", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 1-1/4 X 8" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "781628", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 1-1/4 X 8" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A579G50", - "size": "8\" x 1-1/2\"", - "dimensions": { + { "width": 8.0000, - "thickness": 1.5000 + "thickness": 1.5000, + "type": "Steel", + "grade": "A36/A579G50", + "size": "8\u0022 x 1-1/2\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "782161", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A579G50 - 1-1/2 X8 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "782161", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A579G50 - 1-1/2 X8 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "8\" x 2\"", - "dimensions": { + { "width": 8.0000, - "thickness": 2.0000 + "thickness": 2.0000, + "type": "Steel", + "grade": "A36/A529G50", + "size": "8\u0022 x 2\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "782743", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 2 X8 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "782743", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 2 X8 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "9\" x 1/4\"", - "dimensions": { + { "width": 9.0000, - "thickness": 0.2500 + "thickness": 0.2500, + "type": "Steel", + "grade": "A36/A529G50", + "size": "9\u0022 x 1/4\u0022", + "stockItems": [] }, - "stockItems": [] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "9\" x 3/8\"", - "dimensions": { + { "width": 9.0000, - "thickness": 0.3750 + "thickness": 0.3750, + "type": "Steel", + "grade": "A36/A529G50", + "size": "9\u0022 x 3/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "775148", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/8 X9 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "775148", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/8 X9 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A572G50", - "size": "9\" x 1/2\"", - "dimensions": { + { "width": 9.0000, - "thickness": 0.5000 + "thickness": 0.5000, + "type": "Steel", + "grade": "A36/A572G50", + "size": "9\u0022 x 1/2\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "778293", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 1/2 X9 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "778293", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 1/2 X9 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A572G50", - "size": "9\" x 5/8\"", - "dimensions": { + { "width": 9.0000, - "thickness": 0.6250 + "thickness": 0.6250, + "type": "Steel", + "grade": "A36/A572G50", + "size": "9\u0022 x 5/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "778955", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 5/8 X9 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "778955", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 5/8 X9 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "9\" x 3/4\"", - "dimensions": { + { "width": 9.0000, - "thickness": 0.7500 + "thickness": 0.7500, + "type": "Steel", + "grade": "A36/A529G50", + "size": "9\u0022 x 3/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "779878", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/4 X9 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "779878", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/4 X9 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A572G50", - "size": "9\" x 1\"", - "dimensions": { + { "width": 9.0000, - "thickness": 1.0000 + "thickness": 1.0000, + "type": "Steel", + "grade": "A36/A572G50", + "size": "9\u0022 x 1\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "780991", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 1 X 9 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "780991", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 1 X 9 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "HR COM QUALITY", - "size": "10\" x 1/8\"", - "dimensions": { + { "width": 10.0000, - "thickness": 0.1250 + "thickness": 0.1250, + "type": "Steel", + "grade": "HR COM QUALITY", + "size": "10\u0022 x 1/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "17984368", + "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 1/8 X10 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "17984368", - "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 1/8 X10 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "HR COM QUALITY", - "size": "10\" x 3/16\"", - "dimensions": { + { "width": 10.0000, - "thickness": 0.1875 + "thickness": 0.1875, + "type": "Steel", + "grade": "HR COM QUALITY", + "size": "10\u0022 x 3/16\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "17984878", + "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 3/16 X10 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "17984878", - "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 3/16 X10 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "10\" x 1/4\"", - "dimensions": { + { "width": 10.0000, - "thickness": 0.2500 + "thickness": 0.2500, + "type": "Steel", + "grade": "A36/A529G50", + "size": "10\u0022 x 1/4\u0022", + "stockItems": [] }, - "stockItems": [] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "10\" x 3/8\"", - "dimensions": { + { "width": 10.0000, - "thickness": 0.3750 + "thickness": 0.3750, + "type": "Steel", + "grade": "A36/A529G50", + "size": "10\u0022 x 3/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "776571", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/8 X10 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "776571", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/8 X10 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A572G50", - "size": "10\" x 1/2\"", - "dimensions": { + { "width": 10.0000, - "thickness": 0.5000 + "thickness": 0.5000, + "type": "Steel", + "grade": "A36/A572G50", + "size": "10\u0022 x 1/2\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "778331", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 1/2 X10 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "778331", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 1/2 X10 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A572G50", - "size": "10\" x 5/8\"", - "dimensions": { + { "width": 10.0000, - "thickness": 0.6250 + "thickness": 0.6250, + "type": "Steel", + "grade": "A36/A572G50", + "size": "10\u0022 x 5/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "778980", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 5/8 X10 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "778980", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 5/8 X10 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "10\" x 3/4\"", - "dimensions": { + { "width": 10.0000, - "thickness": 0.7500 + "thickness": 0.7500, + "type": "Steel", + "grade": "A36/A529G50", + "size": "10\u0022 x 3/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "779894", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/4 X10 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "779894", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/4 X10 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "10\" x 1\"", - "dimensions": { + { "width": 10.0000, - "thickness": 1.0000 + "thickness": 1.0000, + "type": "Steel", + "grade": "A36/A529G50", + "size": "10\u0022 x 1\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "781011", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 1 X 10" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "781011", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 1 X 10" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "11\" x 1/4\"", - "dimensions": { + { "width": 11.0000, - "thickness": 0.2500 + "thickness": 0.2500, + "type": "Steel", + "grade": "A36/A529G50", + "size": "11\u0022 x 1/4\u0022", + "stockItems": [] }, - "stockItems": [] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "11\" x 3/8\"", - "dimensions": { + { "width": 11.0000, - "thickness": 0.3750 + "thickness": 0.3750, + "type": "Steel", + "grade": "A36/A529G50", + "size": "11\u0022 x 3/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "776597", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/8 X11 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "776597", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/8 X11 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A572G50", - "size": "11\" x 1/2\"", - "dimensions": { + { "width": 11.0000, - "thickness": 0.5000 + "thickness": 0.5000, + "type": "Steel", + "grade": "A36/A572G50", + "size": "11\u0022 x 1/2\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "778373", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 1/2 X11 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "778373", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 1/2 X11 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "11\" x 3/4\"", - "dimensions": { + { "width": 11.0000, - "thickness": 0.7500 + "thickness": 0.7500, + "type": "Steel", + "grade": "A36/A529G50", + "size": "11\u0022 x 3/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "779923", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/4 X11 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "779923", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/4 X11 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "HR COM QUALITY", - "size": "1' 0\" x 1/8\"", - "dimensions": { + { "width": 12.0000, - "thickness": 0.1250 + "thickness": 0.1250, + "type": "Steel", + "grade": "HR COM QUALITY", + "size": "1\u0027 0\u0022 x 1/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "17984364", + "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 1/8 X12 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "17984364", - "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 1/8 X12 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "HR COM QUALITY", - "size": "1' 0\" x 3/16\"", - "dimensions": { + { "width": 12.0000, - "thickness": 0.1875 + "thickness": 0.1875, + "type": "Steel", + "grade": "HR COM QUALITY", + "size": "1\u0027 0\u0022 x 3/16\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "17984894", + "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 3/16 X12 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "17984894", - "supplierDescription": "FLAT BAR - HOT ROLL - HR COM QUALITY - 3/16 X12 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "1' 0\" x 1/4\"", - "dimensions": { + { "width": 12.0000, - "thickness": 0.2500 + "thickness": 0.2500, + "type": "Steel", + "grade": "A36/A529G50", + "size": "1\u0027 0\u0022 x 1/4\u0022", + "stockItems": [] }, - "stockItems": [] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "1' 0\" x 3/8\"", - "dimensions": { + { "width": 12.0000, - "thickness": 0.3750 + "thickness": 0.3750, + "type": "Steel", + "grade": "A36/A529G50", + "size": "1\u0027 0\u0022 x 3/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "776634", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/8 X12 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "776634", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/8 X12 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A572G50", - "size": "1' 0\" x 1/2\"", - "dimensions": { + { "width": 12.0000, - "thickness": 0.5000 + "thickness": 0.5000, + "type": "Steel", + "grade": "A36/A572G50", + "size": "1\u0027 0\u0022 x 1/2\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "778390", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 1/2 X12 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "778390", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 1/2 X12 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A572G50", - "size": "1' 0\" x 5/8\"", - "dimensions": { + { "width": 12.0000, - "thickness": 0.6250 + "thickness": 0.6250, + "type": "Steel", + "grade": "A36/A572G50", + "size": "1\u0027 0\u0022 x 5/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "779034", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 5/8 X12 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "779034", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A572G50 - 5/8 X12 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "1' 0\" x 3/4\"", - "dimensions": { + { "width": 12.0000, - "thickness": 0.7500 + "thickness": 0.7500, + "type": "Steel", + "grade": "A36/A529G50", + "size": "1\u0027 0\u0022 x 3/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "779940", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/4 X12 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "779940", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 3/4 X12 X20" - } - ] - } - ] - }, - { - "shape": "FlatBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "1' 0\" x 1\"", - "dimensions": { + { "width": 12.0000, - "thickness": 1.0000 - }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "781054", - "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 1 X 12" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "A36/A529G50", - "size": "W3 x 5.7", - "dimensions": { + "thickness": 1.0000, + "type": "Steel", + "grade": "A36/A529G50", + "size": "1\u0027 0\u0022 x 1\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "781054", + "supplierDescription": "FLAT BAR - HOT ROLL - A36/A529G50 - 1 X 12" + } + ] + } + ] + } + ], + "iBeams": [ + { "height": 3.0000, - "weightPerFoot": 5.7000 + "weightPerFoot": 5.7000, + "type": "Steel", + "grade": "A36/A529G50", + "size": "W3 x 5.7", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "868310", + "supplierDescription": "I BEAM - HOT ROLL - A36/A529G50 - 3 X 5 X 7.20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "868310", - "supplierDescription": "I BEAM - HOT ROLL - A36/A529G50 - 3 X 5 X 7.20" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "A36/A529G50", - "size": "W3 x 7.5", - "dimensions": { + { "height": 3.0000, - "weightPerFoot": 7.5000 + "weightPerFoot": 7.5000, + "type": "Steel", + "grade": "A36/A529G50", + "size": "W3 x 7.5", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "868361", + "supplierDescription": "I BEAM - HOT ROLL - A36/A529G50 - 3 X 7.5 X 40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "868361", - "supplierDescription": "I BEAM - HOT ROLL - A36/A529G50 - 3 X 7.5 X 40" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "A36/A529G50", - "size": "W4 x 7.7", - "dimensions": { + { "height": 4.0000, - "weightPerFoot": 7.7000 + "weightPerFoot": 7.7000, + "type": "Steel", + "grade": "A36/A529G50", + "size": "W4 x 7.7", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "868408", + "supplierDescription": "I BEAM - HOT ROLL - A36/A529G50 - 4 X 7.7 X 20" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "868441", + "supplierDescription": "I BEAM - HOT ROLL - A36/A529G50 - 4 X 7.7 X 40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "868408", - "supplierDescription": "I BEAM - HOT ROLL - A36/A529G50 - 4 X 7.7 X 20" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "868441", - "supplierDescription": "I BEAM - HOT ROLL - A36/A529G50 - 4 X 7.7 X 40" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "A36/A529G50", - "size": "W4 x 9.5", - "dimensions": { + { "height": 4.0000, - "weightPerFoot": 9.5000 + "weightPerFoot": 9.5000, + "type": "Steel", + "grade": "A36/A529G50", + "size": "W4 x 9.5", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "868467", + "supplierDescription": "I BEAM - A36/A529G50 - 4 X 9.5 X 40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "868467", - "supplierDescription": "I BEAM - A36/A529G50 - 4 X 9.5 X 40" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W4 x 13", - "dimensions": { + { "height": 4.0000, - "weightPerFoot": 13.0000 + "weightPerFoot": 13.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W4 x 13", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "877435", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 4 X 13 X 20" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "877443", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 4 X 13 X 40" + } + ] + }, + { + "lengthInches": 600.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "877451", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 4 X 13 X 50" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "877435", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 4 X 13 X 20" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "877443", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 4 X 13 X 40" - } - ] - }, - { - "lengthInches": 600.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "877451", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 4 X 13 X 50" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "A36/A529G50", - "size": "W5 x 10", - "dimensions": { + { "height": 5.0000, - "weightPerFoot": 10.0000 + "weightPerFoot": 10.0000, + "type": "Steel", + "grade": "A36/A529G50", + "size": "W5 x 10", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "868483", + "supplierDescription": "I BEAM - HOT ROLL - A36/A529G50 - 5 X 10 X 40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "868483", - "supplierDescription": "I BEAM - HOT ROLL - A36/A529G50 - 5 X 10 X 40" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W5 x 16", - "dimensions": { + { "height": 5.0000, - "weightPerFoot": 16.0000 + "weightPerFoot": 16.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W5 x 16", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "877494", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 5 X 16 X 40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "877494", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 5 X 16 X 40" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W5 x 19", - "dimensions": { + { "height": 5.0000, - "weightPerFoot": 19.0000 + "weightPerFoot": 19.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W5 x 19", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "877515", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 5 X 19 X 40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "877515", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 5 X 19 X 40" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W6 x 16", - "dimensions": { + { "height": 6.0000, - "weightPerFoot": 16.0000 + "weightPerFoot": 16.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W6 x 16", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "877742", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 6 X 16 X 40" + } + ] + }, + { + "lengthInches": 600.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "15776080", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 6 X 16 X 50" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "877742", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 6 X 16 X 40" - } - ] - }, - { - "lengthInches": 600.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "15776080", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 6 X 16 X 50" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "A36/A529G50", - "size": "W6 x 12.5", - "dimensions": { + { "height": 6.0000, - "weightPerFoot": 12.5000 + "weightPerFoot": 12.5000, + "type": "Steel", + "grade": "A36/A529G50", + "size": "W6 x 12.5", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "868491", + "supplierDescription": "I BEAM - HOT ROLL - A36/A529G50 - 6 X 12.5 X 20" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "868521", + "supplierDescription": "I BEAM - HOT ROLL - A36/A529G50 - 6 X 12.5 X 40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "868491", - "supplierDescription": "I BEAM - HOT ROLL - A36/A529G50 - 6 X 12.5 X 20" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "868521", - "supplierDescription": "I BEAM - HOT ROLL - A36/A529G50 - 6 X 12.5 X 40" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "A36/A529G50", - "size": "W6 x 17.25", - "dimensions": { + { "height": 6.0000, - "weightPerFoot": 17.2500 + "weightPerFoot": 17.2500, + "type": "Steel", + "grade": "A36/A529G50", + "size": "W6 x 17.25", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "868563", + "supplierDescription": "I BEAM - HOT ROLL - A36/A529G50 - 6 X 17.25 X 40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "868563", - "supplierDescription": "I BEAM - HOT ROLL - A36/A529G50 - 6 X 17.25 X 40" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W6 x 9", - "dimensions": { + { "height": 6.0000, - "weightPerFoot": 9.0000 + "weightPerFoot": 9.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W6 x 9", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "877591", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 6 X 9 X 40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "877591", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 6 X 9 X 40" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W6 x 12", - "dimensions": { + { "height": 6.0000, - "weightPerFoot": 12.0000 + "weightPerFoot": 12.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W6 x 12", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "877638", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 6 X 12 X 40" + } + ] + }, + { + "lengthInches": 600.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "877646", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 6 X 12 X 50" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "877638", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 6 X 12 X 40" - } - ] - }, - { - "lengthInches": 600.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "877646", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 6 X 12 X 50" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W6 x 15", - "dimensions": { + { "height": 6.0000, - "weightPerFoot": 15.0000 + "weightPerFoot": 15.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W6 x 15", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "877662", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 6 X 15 X 20" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "877689", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 6 X 15 X 40" + } + ] + }, + { + "lengthInches": 540.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "877697", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 6 X 15 X 45" + } + ] + }, + { + "lengthInches": 600.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "877700", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 6 X 15 X 50" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "877662", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 6 X 15 X 20" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "877689", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 6 X 15 X 40" - } - ] - }, - { - "lengthInches": 540.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "877697", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 6 X 15 X 45" - } - ] - }, - { - "lengthInches": 600.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "877700", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 6 X 15 X 50" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W6 x 20", - "dimensions": { + { "height": 6.0000, - "weightPerFoot": 20.0000 + "weightPerFoot": 20.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W6 x 20", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "877793", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 6 X 20 X 20" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "877814", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 6 X 20 X 40" + } + ] + }, + { + "lengthInches": 600.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "877822", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 6 X 20 X 50" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "877793", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 6 X 20 X 20" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "877814", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 6 X 20 X 40" - } - ] - }, - { - "lengthInches": 600.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "877822", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 6 X 20 X 50" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W6 x 25", - "dimensions": { + { "height": 6.0000, - "weightPerFoot": 25.0000 + "weightPerFoot": 25.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W6 x 25", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "877849", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 6 X 25 X 20" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "877857", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 6 X 25 X 40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "877849", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 6 X 25 X 20" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "877857", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 6 X 25 X 40" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W8 x 48", - "dimensions": { + { "height": 8.0000, - "weightPerFoot": 48.0000 + "weightPerFoot": 48.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W8 x 48", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "15749305", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 8 X 48 X 20" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "878585", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 8 X 48 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "15749305", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 8 X 48 X 20" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "878585", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 8 X 48 X40" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "A36/A529G50", - "size": "W8 x 18.4", - "dimensions": { + { "height": 8.0000, - "weightPerFoot": 18.4000 + "weightPerFoot": 18.4000, + "type": "Steel", + "grade": "A36/A529G50", + "size": "W8 x 18.4", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "868619", + "supplierDescription": "I BEAM - HOT ROLL - A36/A529G50 - 8 X 18.4" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "868619", - "supplierDescription": "I BEAM - HOT ROLL - A36/A529G50 - 8 X 18.4" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "A36/A529G50", - "size": "W8 x 23", - "dimensions": { + { "height": 8.0000, - "weightPerFoot": 23.0000 + "weightPerFoot": 23.0000, + "type": "Steel", + "grade": "A36/A529G50", + "size": "W8 x 23", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "868643", + "supplierDescription": "I BEAM - HOT ROLL - A36/A529G50 - 8 X 23" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "868643", - "supplierDescription": "I BEAM - HOT ROLL - A36/A529G50 - 8 X 23" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W8 x 10", - "dimensions": { + { "height": 8.0000, - "weightPerFoot": 10.0000 + "weightPerFoot": 10.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W8 x 10", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "877937", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 8 X 10 X 40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "877937", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 8 X 10 X 40" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W8 x 13", - "dimensions": { + { "height": 8.0000, - "weightPerFoot": 13.0000 + "weightPerFoot": 13.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W8 x 13", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "877988", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 8 X 13 X 20" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "877994", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 8 X 13 X 40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "877988", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 8 X 13 X 20" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "877994", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 8 X 13 X 40" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W8 x 15", - "dimensions": { + { "height": 8.0000, - "weightPerFoot": 15.0000 + "weightPerFoot": 15.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W8 x 15", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "878032", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 8 X 15 X 40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "878032", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 8 X 15 X 40" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W8 x 18", - "dimensions": { + { "height": 8.0000, - "weightPerFoot": 18.0000 + "weightPerFoot": 18.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W8 x 18", + "stockItems": [ + { + "lengthInches": 420.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "878104", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 8 X 18 X 35" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "878121", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 8 X 18 X 40" + } + ] + }, + { + "lengthInches": 540.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "878155", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 8 X 18 X 45" + } + ] + }, + { + "lengthInches": 600.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "878163", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 8 X 18 X 50" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 420.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "878104", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 8 X 18 X 35" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "878121", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 8 X 18 X 40" - } - ] - }, - { - "lengthInches": 540.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "878155", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 8 X 18 X 45" - } - ] - }, - { - "lengthInches": 600.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "878163", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 8 X 18 X 50" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W8 x 21", - "dimensions": { + { "height": 8.0000, - "weightPerFoot": 21.0000 + "weightPerFoot": 21.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W8 x 21", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "878198", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 8 X 21 X 40" + } + ] + }, + { + "lengthInches": 540.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "878201", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 8 X 21 X 45" + } + ] + }, + { + "lengthInches": 600.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "878219", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 8 X 21 X 50" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "878198", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 8 X 21 X 40" - } - ] - }, - { - "lengthInches": 540.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "878201", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 8 X 21 X 45" - } - ] - }, - { - "lengthInches": 600.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "878219", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 8 X 21 X 50" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W8 x 24", - "dimensions": { + { "height": 8.0000, - "weightPerFoot": 24.0000 + "weightPerFoot": 24.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W8 x 24", + "stockItems": [ + { + "lengthInches": 420.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "878251", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 8 X 24 X 35" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "878278", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 8 X 24 X 40" + } + ] + }, + { + "lengthInches": 540.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "878307", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 8 X 24 X 45" + } + ] + }, + { + "lengthInches": 600.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "878315", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 8 X 24 X 50" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 420.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "878251", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 8 X 24 X 35" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "878278", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 8 X 24 X 40" - } - ] - }, - { - "lengthInches": 540.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "878307", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 8 X 24 X 45" - } - ] - }, - { - "lengthInches": 600.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "878315", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 8 X 24 X 50" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W8 x 28", - "dimensions": { + { "height": 8.0000, - "weightPerFoot": 28.0000 + "weightPerFoot": 28.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W8 x 28", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "878340", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 8 X 28 X 40" + } + ] + }, + { + "lengthInches": 600.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "878374", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 8 X 28 X 50" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "878340", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 8 X 28 X 40" - } - ] - }, - { - "lengthInches": 600.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "878374", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 8 X 28 X 50" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W8 x 31", - "dimensions": { + { "height": 8.0000, - "weightPerFoot": 31.0000 + "weightPerFoot": 31.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W8 x 31", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "878391", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 8 X 31 X 20" + } + ] + }, + { + "lengthInches": 420.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "878411", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 8 X31 X35" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "878438", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 8 X 31 X40" + } + ] + }, + { + "lengthInches": 540.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "878454", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 8 X 31 X45" + } + ] + }, + { + "lengthInches": 600.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "878462", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 8 X 31 X50" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "878391", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 8 X 31 X 20" - } - ] - }, - { - "lengthInches": 420.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "878411", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 8 X31 X35" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "878438", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 8 X 31 X40" - } - ] - }, - { - "lengthInches": 540.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "878454", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 8 X 31 X45" - } - ] - }, - { - "lengthInches": 600.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "878462", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 8 X 31 X50" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W8 x 35", - "dimensions": { + { "height": 8.0000, - "weightPerFoot": 35.0000 + "weightPerFoot": 35.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W8 x 35", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "878500", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 8 X 35 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "878500", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 8 X 35 X40" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W8 x 40", - "dimensions": { + { "height": 8.0000, - "weightPerFoot": 40.0000 + "weightPerFoot": 40.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W8 x 40", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "878551", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 8 X 40 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "878551", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 8 X 40 X40" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W8 x 58", - "dimensions": { + { "height": 8.0000, - "weightPerFoot": 58.0000 + "weightPerFoot": 58.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W8 x 58", + "stockItems": [ + { + "lengthInches": 540.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "878649", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 8 X 58 X45" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 540.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "878649", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 8 X 58 X45" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W10 x 45", - "dimensions": { + { "height": 10.0000, - "weightPerFoot": 45.0000 + "weightPerFoot": 45.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W10 x 45", + "stockItems": [ + { + "lengthInches": 360.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "15778688", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 10 X 43 X30" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "879254", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 10 X45 X40" + } + ] + }, + { + "lengthInches": 540.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "879262", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 10 X45 X45" + } + ] + }, + { + "lengthInches": 600.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "879271", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 10 X45 X50" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 360.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "15778688", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 10 X 43 X30" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "879254", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 10 X45 X40" - } - ] - }, - { - "lengthInches": 540.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "879262", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 10 X45 X45" - } - ] - }, - { - "lengthInches": 600.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "879271", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 10 X45 X50" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "A36/A52950", - "size": "W10 x 25.4", - "dimensions": { + { "height": 10.0000, - "weightPerFoot": 25.4000 + "weightPerFoot": 25.4000, + "type": "Steel", + "grade": "A36/A52950", + "size": "W10 x 25.4", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "848694", + "supplierDescription": "I BEAM - HOT ROLL - A36/A52950 - 10 X 25.4 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "848694", - "supplierDescription": "I BEAM - HOT ROLL - A36/A52950 - 10 X 25.4 X40" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W10 x 12", - "dimensions": { + { "height": 10.0000, - "weightPerFoot": 12.0000 + "weightPerFoot": 12.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W10 x 12", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "878745", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 10 X12 X40" + } + ] + }, + { + "lengthInches": 600.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "878770", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 10 X12 X50" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "878745", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 10 X12 X40" - } - ] - }, - { - "lengthInches": 600.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "878770", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 10 X12 X50" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W10 x 15", - "dimensions": { + { "height": 10.0000, - "weightPerFoot": 15.0000 + "weightPerFoot": 15.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W10 x 15", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "878809", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 10 X15 X40" + } + ] + }, + { + "lengthInches": 600.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "878825", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 10 X15 X50" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "878809", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 10 X15 X40" - } - ] - }, - { - "lengthInches": 600.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "878825", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 10 X15 X50" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W10 x 22", - "dimensions": { + { "height": 10.0000, - "weightPerFoot": 22.0000 + "weightPerFoot": 22.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W10 x 22", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "878954", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 10 X22 X40" + } + ] + }, + { + "lengthInches": 540.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "878999", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 10 X22 X45" + } + ] + }, + { + "lengthInches": 600.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "879001", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 10 X22 X50" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "878954", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 10 X22 X40" - } - ] - }, - { - "lengthInches": 540.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "878999", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 10 X22 X45" - } - ] - }, - { - "lengthInches": 600.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "879001", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 10 X22 X50" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W10 x 26", - "dimensions": { + { "height": 10.0000, - "weightPerFoot": 26.0000 + "weightPerFoot": 26.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W10 x 26", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "879043", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 10 X26 X40" + } + ] + }, + { + "lengthInches": 540.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "879051", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 10 X26 X45" + } + ] + }, + { + "lengthInches": 600.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "879060", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 10 X26 X50" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "879043", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 10 X26 X40" - } - ] - }, - { - "lengthInches": 540.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "879051", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 10 X26 X45" - } - ] - }, - { - "lengthInches": 600.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "879060", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 10 X26 X50" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W10 x 30", - "dimensions": { + { "height": 10.0000, - "weightPerFoot": 30.0000 + "weightPerFoot": 30.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W10 x 30", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "87994", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 10 X30 X40" + } + ] + }, + { + "lengthInches": 540.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "879107", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 10 X30 X45" + } + ] + }, + { + "lengthInches": 600.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "879115", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 10 X30 X50" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "87994", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 10 X30 X40" - } - ] - }, - { - "lengthInches": 540.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "879107", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 10 X30 X45" - } - ] - }, - { - "lengthInches": 600.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "879115", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 10 X30 X50" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W10 x 33", - "dimensions": { + { "height": 10.0000, - "weightPerFoot": 33.0000 + "weightPerFoot": 33.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W10 x 33", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "879158", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 10 X33 X40" + } + ] + }, + { + "lengthInches": 540.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "879166", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 10 X33 X45" + } + ] + }, + { + "lengthInches": 600.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "879174", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 10 X33 X50" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "879158", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 10 X33 X40" - } - ] - }, - { - "lengthInches": 540.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "879166", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 10 X33 X45" - } - ] - }, - { - "lengthInches": 600.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "879174", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 10 X33 X50" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W10 x 39", - "dimensions": { + { "height": 10.0000, - "weightPerFoot": 39.0000 + "weightPerFoot": 39.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W10 x 39", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "879203", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 10 X39 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "879203", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 10 X39 X40" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W10 x 49", - "dimensions": { + { "height": 10.0000, - "weightPerFoot": 49.0000 + "weightPerFoot": 49.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W10 x 49", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "879300", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 10 X49 X40" + } + ] + }, + { + "lengthInches": 540.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "879236", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 10 X49 X45" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "879300", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 10 X49 X40" - } - ] - }, - { - "lengthInches": 540.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "879236", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 10 X49 X45" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W12 x 35", - "dimensions": { + { "height": 12.0000, - "weightPerFoot": 35.0000 + "weightPerFoot": 35.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W12 x 35", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "880044", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X35 X40" + } + ] + }, + { + "lengthInches": 540.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "1089449", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X35 X45" + } + ] + }, + { + "lengthInches": 600.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "880052", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X35 X50" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "880044", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X35 X40" - } - ] - }, - { - "lengthInches": 540.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "1089449", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X35 X45" - } - ] - }, - { - "lengthInches": 600.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "880052", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X35 X50" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W12 x 58", - "dimensions": { + { "height": 12.0000, - "weightPerFoot": 58.0000 + "weightPerFoot": 58.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W12 x 58", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "1577579", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X58 X20" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "880335", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X58 X40" + } + ] + }, + { + "lengthInches": 600.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "880343", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X58 X50" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "1577579", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X58 X20" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "880335", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X58 X40" - } - ] - }, - { - "lengthInches": 600.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "880343", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X58 X50" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "A36/A52PG50", - "size": "W12 x 31.8", - "dimensions": { + { "height": 12.0000, - "weightPerFoot": 31.8000 + "weightPerFoot": 31.8000, + "type": "Steel", + "grade": "A36/A52PG50", + "size": "W12 x 31.8", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "868758", + "supplierDescription": "I BEAM - HOT ROLL - A36/A52PG50 - 12 X31.8 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "868758", - "supplierDescription": "I BEAM - HOT ROLL - A36/A52PG50 - 12 X31.8 X40" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W12 x 14", - "dimensions": { + { "height": 12.0000, - "weightPerFoot": 14.0000 + "weightPerFoot": 14.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W12 x 14", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "879596", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X14 X40" + } + ] + }, + { + "lengthInches": 600.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "879625", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X14 X50" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "879596", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X14 X40" - } - ] - }, - { - "lengthInches": 600.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "879625", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X14 X50" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W12 x 16", - "dimensions": { + { "height": 12.0000, - "weightPerFoot": 16.0000 + "weightPerFoot": 16.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W12 x 16", + "stockItems": [ + { + "lengthInches": 540.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "879684", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X16 X45" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 540.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "879684", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X16 X45" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W12 x 19", - "dimensions": { + { "height": 12.0000, - "weightPerFoot": 19.0000 + "weightPerFoot": 19.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W12 x 19", + "stockItems": [ + { + "lengthInches": 360.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "879721", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X19 X30" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "879756", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X19 X40" + } + ] + }, + { + "lengthInches": 540.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "879764", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X 19 X 45" + } + ] + }, + { + "lengthInches": 600.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "879772", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X 19 X 50" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 360.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "879721", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X19 X30" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "879756", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X19 X40" - } - ] - }, - { - "lengthInches": 540.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "879764", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X 19 X 45" - } - ] - }, - { - "lengthInches": 600.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "879772", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X 19 X 50" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W12 x 22", - "dimensions": { + { "height": 12.0000, - "weightPerFoot": 22.0000 + "weightPerFoot": 22.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W12 x 22", + "stockItems": [ + { + "lengthInches": 420.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "879801", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X 22 X 35" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "879810", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X 22 X 40" + } + ] + }, + { + "lengthInches": 540.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "879828", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X 22 X 45" + } + ] + }, + { + "lengthInches": 600.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "879836", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X 22 X 50" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 420.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "879801", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X 22 X 35" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "879810", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X 22 X 40" - } - ] - }, - { - "lengthInches": 540.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "879828", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X 22 X 45" - } - ] - }, - { - "lengthInches": 600.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "879836", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X 22 X 50" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W12 x 26", - "dimensions": { + { "height": 12.0000, - "weightPerFoot": 26.0000 + "weightPerFoot": 26.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W12 x 26", + "stockItems": [ + { + "lengthInches": 420.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "879887", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X 26 X 35" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "879908", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X 26 X 40" + } + ] + }, + { + "lengthInches": 540.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "879932", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X 26 X 45" + } + ] + }, + { + "lengthInches": 600.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "879941", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X 26 X 50" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 420.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "879887", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X 26 X 35" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "879908", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X 26 X 40" - } - ] - }, - { - "lengthInches": 540.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "879932", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X 26 X 45" - } - ] - }, - { - "lengthInches": 600.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "879941", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X 26 X 50" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W12 x 30", - "dimensions": { + { "height": 12.0000, - "weightPerFoot": 30.0000 + "weightPerFoot": 30.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W12 x 30", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "879983", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X30 X40" + } + ] + }, + { + "lengthInches": 540.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "880001", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X30 X45" + } + ] + }, + { + "lengthInches": 600.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "880010", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X30 X50" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "879983", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X30 X40" - } - ] - }, - { - "lengthInches": 540.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "880001", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X30 X45" - } - ] - }, - { - "lengthInches": 600.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "880010", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X30 X50" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W12 x 40", - "dimensions": { + { "height": 12.0000, - "weightPerFoot": 40.0000 + "weightPerFoot": 40.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W12 x 40", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "880108", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X40 X40" + } + ] + }, + { + "lengthInches": 540.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "880124", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X40 X45" + } + ] + }, + { + "lengthInches": 600.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "880132", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X40 X50" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "880108", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X40 X40" - } - ] - }, - { - "lengthInches": 540.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "880124", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X40 X45" - } - ] - }, - { - "lengthInches": 600.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "880132", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X40 X50" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W12 x 45", - "dimensions": { + { "height": 12.0000, - "weightPerFoot": 45.0000 + "weightPerFoot": 45.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W12 x 45", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "880175", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X45 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "880175", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X45 X40" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W12 x 50", - "dimensions": { + { "height": 12.0000, - "weightPerFoot": 50.0000 + "weightPerFoot": 50.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W12 x 50", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "880239", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X50 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "880239", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X50 X40" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W12 x 53", - "dimensions": { + { "height": 12.0000, - "weightPerFoot": 53.0000 + "weightPerFoot": 53.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W12 x 53", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "880298", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X53 X40" + } + ] + }, + { + "lengthInches": 540.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "880301", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X53 X45" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "880298", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X53 X40" - } - ] - }, - { - "lengthInches": 540.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "880301", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X53 X45" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W12 x 65", - "dimensions": { + { "height": 12.0000, - "weightPerFoot": 65.0000 + "weightPerFoot": 65.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W12 x 65", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "880378", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X65 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "880378", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 12 X65 X40" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W14 x 22", - "dimensions": { + { "height": 14.0000, - "weightPerFoot": 22.0000 + "weightPerFoot": 22.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W14 x 22", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "880600", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 14 X22 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "880600", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 14 X22 X40" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W14 x 26", - "dimensions": { + { "height": 14.0000, - "weightPerFoot": 26.0000 + "weightPerFoot": 26.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W14 x 26", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "880677", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 14 X26 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "880677", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 14 X26 X40" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W14 x 30", - "dimensions": { + { "height": 14.0000, - "weightPerFoot": 30.0000 + "weightPerFoot": 30.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W14 x 30", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "880749", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 14 X30 X40" + } + ] + }, + { + "lengthInches": 600.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "880765", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 14 X30 X50" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "880749", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 14 X30 X40" - } - ] - }, - { - "lengthInches": 600.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "880765", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 14 X30 X50" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W14 x 34", - "dimensions": { + { "height": 14.0000, - "weightPerFoot": 34.0000 + "weightPerFoot": 34.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W14 x 34", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "880802", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 14 X34 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "880802", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 14 X34 X40" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W14 x 38", - "dimensions": { + { "height": 14.0000, - "weightPerFoot": 38.0000 + "weightPerFoot": 38.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W14 x 38", + "stockItems": [ + { + "lengthInches": 600.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "880845", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 14 X38 X50" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 600.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "880845", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 14 X38 X50" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W14 x 43", - "dimensions": { + { "height": 14.0000, - "weightPerFoot": 43.0000 + "weightPerFoot": 43.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W14 x 43", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "880870", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 14 X43 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "880870", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 14 X43 X40" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W14 x 48", - "dimensions": { + { "height": 14.0000, - "weightPerFoot": 48.0000 + "weightPerFoot": 48.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W14 x 48", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "880917", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 14 X48 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "880917", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 14 X48 X40" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W14 x 68", - "dimensions": { + { "height": 14.0000, - "weightPerFoot": 68.0000 + "weightPerFoot": 68.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W14 x 68", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "861047", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 14 X68 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "861047", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 14 X68 X40" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W16 x 31", - "dimensions": { + { "height": 16.0000, - "weightPerFoot": 31.0000 + "weightPerFoot": 31.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W16 x 31", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "1491695", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 16 X31 X20" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "881400", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 16 X31 X40" + } + ] + }, + { + "lengthInches": 600.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "881426", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 16 X31 X50" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "1491695", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 16 X31 X20" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "881400", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 16 X31 X40" - } - ] - }, - { - "lengthInches": 600.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "881426", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 16 X31 X50" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W16 x 26", - "dimensions": { + { "height": 16.0000, - "weightPerFoot": 26.0000 + "weightPerFoot": 26.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W16 x 26", + "stockItems": [ + { + "lengthInches": 420.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "881303", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 16 X26 X35" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "881311", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 16 X26 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 420.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "881303", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 16 X26 X35" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "881311", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 16 X26 X40" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W16 x 36", - "dimensions": { + { "height": 16.0000, - "weightPerFoot": 36.0000 + "weightPerFoot": 36.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W16 x 36", + "stockItems": [ + { + "lengthInches": 420.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "881477", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 16 X36 X35" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "881506", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 16 X36 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 420.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "881477", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 16 X36 X35" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "881506", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 16 X36 X40" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W16 x 40", - "dimensions": { + { "height": 16.0000, - "weightPerFoot": 40.0000 + "weightPerFoot": 40.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W16 x 40", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "881573", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 16 X40 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "881573", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 16 X40 X40" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W16 x 45", - "dimensions": { + { "height": 16.0000, - "weightPerFoot": 45.0000 + "weightPerFoot": 45.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W16 x 45", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "881637", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 16 X45 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "881637", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 16 X45 X40" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W18 x 35", - "dimensions": { + { "height": 18.0000, - "weightPerFoot": 35.0000 + "weightPerFoot": 35.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W18 x 35", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "881928", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 18 X35 X40" + } + ] + }, + { + "lengthInches": 600.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "881952", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 18 X35 X50" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "881928", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 18 X35 X40" - } - ] - }, - { - "lengthInches": 600.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "881952", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 18 X35 X50" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W18 x 50", - "dimensions": { + { "height": 18.0000, - "weightPerFoot": 50.0000 + "weightPerFoot": 50.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W18 x 50", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "882154", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 18 X50 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "882154", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 18 X50 X40" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W18 x 65", - "dimensions": { + { "height": 18.0000, - "weightPerFoot": 65.0000 + "weightPerFoot": 65.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W18 x 65", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "882331", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 18 X65 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "882331", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 18 X65 X40" - } - ] - } - ] - }, - { - "shape": "IBeam", - "type": "Steel", - "grade": "WF BEAM", - "size": "W30 x 148", - "dimensions": { + { "height": 30.0000, - "weightPerFoot": 148.0000 - }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "1893404", - "supplierDescription": "WF BEAM - HOT ROLL - A992 - 30 X148 X40" - } - ] - } - ] - }, - { - "shape": "Pipe", - "type": "Steel", - "grade": "A53A", - "size": "1/4\" NPS Sch 40", - "dimensions": { + "weightPerFoot": 148.0000, + "type": "Steel", + "grade": "WF BEAM", + "size": "W30 x 148", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "1893404", + "supplierDescription": "WF BEAM - HOT ROLL - A992 - 30 X148 X40" + } + ] + } + ] + } + ], + "pipes": [ + { "nominalSize": 0.2500, - "schedule": "40" + "wall": 0, + "schedule": "40", + "type": "Steel", + "grade": "A53A", + "size": "1/4\u0022 NPS Sch 40", + "stockItems": [ + { + "lengthInches": 252.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "18412943", + "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A53A - BLACK PLAIN END - 1/4 SCH 40 X21" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 252.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "18412943", - "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A53A - BLACK PLAIN END - 1/4 SCH 40 X21" - } - ] - } - ] - }, - { - "shape": "Pipe", - "type": "Steel", - "grade": "A53A", - "size": "3/8\" NPS Sch 40", - "dimensions": { + { "nominalSize": 0.3750, - "schedule": "40" + "wall": 0, + "schedule": "40", + "type": "Steel", + "grade": "A53A", + "size": "3/8\u0022 NPS Sch 40", + "stockItems": [ + { + "lengthInches": 252.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "17607431", + "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A53A - BLACK PLAIN END - 3/8 SCH 40 X21" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 252.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "17607431", - "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A53A - BLACK PLAIN END - 3/8 SCH 40 X21" - } - ] - } - ] - }, - { - "shape": "Pipe", - "type": "Steel", - "grade": "A513 TY 1", - "size": "1/2\" NPS Sch 40", - "dimensions": { + { "nominalSize": 0.5000, - "schedule": "40" + "wall": 0, + "schedule": "40", + "type": "Steel", + "grade": "A513 TY 1", + "size": "1/2\u0022 NPS Sch 40", + "stockItems": [ + { + "lengthInches": 252.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "17598336", + "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A513 TY 1 - 1/2 SCH 40 X21" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 252.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "17598336", - "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A513 TY 1 - 1/2 SCH 40 X21" - } - ] - } - ] - }, - { - "shape": "Pipe", - "type": "Steel", - "grade": "A500 GR B", - "size": "3/4\" NPS Sch 40", - "dimensions": { + { "nominalSize": 0.7500, - "schedule": "40" + "wall": 0, + "schedule": "40", + "type": "Steel", + "grade": "A500 GR B", + "size": "3/4\u0022 NPS Sch 40", + "stockItems": [ + { + "lengthInches": 252.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "816034", + "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 3/4 SCH 40 X21" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 252.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "816034", - "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 3/4 SCH 40 X21" - } - ] - } - ] - }, - { - "shape": "Pipe", - "type": "Steel", - "grade": "A53F", - "size": "3/4\" NPS Sch 80", - "dimensions": { + { "nominalSize": 0.7500, - "schedule": "80" + "wall": 0, + "schedule": "80", + "type": "Steel", + "grade": "A53F", + "size": "3/4\u0022 NPS Sch 80", + "stockItems": [ + { + "lengthInches": 252.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "816190", + "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A53F - BLACK PLAIN END - 3/4 SCH 80 X21" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 252.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "816190", - "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A53F - BLACK PLAIN END - 3/4 SCH 80 X21" - } - ] - } - ] - }, - { - "shape": "Pipe", - "type": "Steel", - "grade": "A500 GR B", - "size": "1\" NPS Sch 40", - "dimensions": { + { "nominalSize": 1.0000, - "schedule": "40" + "wall": 0, + "schedule": "40", + "type": "Steel", + "grade": "A500 GR B", + "size": "1\u0022 NPS Sch 40", + "stockItems": [ + { + "lengthInches": 252.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "816325", + "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 1 SCH 40 X21" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 252.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "816325", - "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 1 SCH 40 X21" - } - ] - } - ] - }, - { - "shape": "Pipe", - "type": "Steel", - "grade": "A53F", - "size": "1\" NPS Sch 80", - "dimensions": { + { "nominalSize": 1.0000, - "schedule": "80" + "wall": 0, + "schedule": "80", + "type": "Steel", + "grade": "A53F", + "size": "1\u0022 NPS Sch 80", + "stockItems": [ + { + "lengthInches": 252.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "816472", + "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A53F - BLACK PLAIN END - 1 SCH 80 X21" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 252.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "816472", - "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A53F - BLACK PLAIN END - 1 SCH 80 X21" - } - ] - } - ] - }, - { - "shape": "Pipe", - "type": "Steel", - "grade": "A500 GR B", - "size": "1-1/4\" NPS Sch 10", - "dimensions": { + { "nominalSize": 1.2500, - "schedule": "10" + "wall": 0, + "schedule": "10", + "type": "Steel", + "grade": "A500 GR B", + "size": "1-1/4\u0022 NPS Sch 10", + "stockItems": [ + { + "lengthInches": 252.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "816544", + "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 1-1/4 SCH 10 X21" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 252.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "816544", - "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 1-1/4 SCH 10 X21" - } - ] - } - ] - }, - { - "shape": "Pipe", - "type": "Steel", - "grade": "A500 GR B", - "size": "1-1/4\" NPS Sch 40", - "dimensions": { + { "nominalSize": 1.2500, - "schedule": "40" + "wall": 0, + "schedule": "40", + "type": "Steel", + "grade": "A500 GR B", + "size": "1-1/4\u0022 NPS Sch 40", + "stockItems": [ + { + "lengthInches": 252.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "816675", + "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 1-1/4 SCH 40 X21" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 252.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "816675", - "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 1-1/4 SCH 40 X21" - } - ] - } - ] - }, - { - "shape": "Pipe", - "type": "Steel", - "grade": "A500 GR B", - "size": "1-1/4\" NPS Sch 80", - "dimensions": { + { "nominalSize": 1.2500, - "schedule": "80" + "wall": 0, + "schedule": "80", + "type": "Steel", + "grade": "A500 GR B", + "size": "1-1/4\u0022 NPS Sch 80", + "stockItems": [ + { + "lengthInches": 252.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "816755", + "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 1-1/4 SCH 80 X21" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 252.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "816755", - "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 1-1/4 SCH 80 X21" - } - ] - } - ] - }, - { - "shape": "Pipe", - "type": "Steel", - "grade": "A500 GR B", - "size": "1-1/2\" NPS Sch 10", - "dimensions": { + { "nominalSize": 1.5000, - "schedule": "10" + "wall": 0, + "schedule": "10", + "type": "Steel", + "grade": "A500 GR B", + "size": "1-1/2\u0022 NPS Sch 10", + "stockItems": [ + { + "lengthInches": 252.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "816801", + "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 1-1/2 SCH 10 X21" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 252.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "816801", - "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 1-1/2 SCH 10 X21" - } - ] - } - ] - }, - { - "shape": "Pipe", - "type": "Steel", - "grade": "A500 GR B", - "size": "1-1/2\" NPS Sch 40", - "dimensions": { + { "nominalSize": 1.5000, - "schedule": "40" + "wall": 0, + "schedule": "40", + "type": "Steel", + "grade": "A500 GR B", + "size": "1-1/2\u0022 NPS Sch 40", + "stockItems": [ + { + "lengthInches": 252.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "816894", + "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 1-1/2 SCH 40 X21" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 252.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "816894", - "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 1-1/2 SCH 40 X21" - } - ] - } - ] - }, - { - "shape": "Pipe", - "type": "Steel", - "grade": "A500 GR B", - "size": "1-1/2\" NPS Sch 80", - "dimensions": { + { "nominalSize": 1.5000, - "schedule": "80" + "wall": 0, + "schedule": "80", + "type": "Steel", + "grade": "A500 GR B", + "size": "1-1/2\u0022 NPS Sch 80", + "stockItems": [ + { + "lengthInches": 252.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "817109", + "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 1-1/2 SCH 80 X21" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 252.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "817109", - "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 1-1/2 SCH 80 X21" - } - ] - } - ] - }, - { - "shape": "Pipe", - "type": "Steel", - "grade": "A500 GR B", - "size": "2\" NPS Sch 80", - "dimensions": { + { "nominalSize": 2.0000, - "schedule": "80" + "wall": 0, + "schedule": "80", + "type": "Steel", + "grade": "A500 GR B", + "size": "2\u0022 NPS Sch 80", + "stockItems": [ + { + "lengthInches": 252.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "1110068", + "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - 2 SCH 80 X21" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 252.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "1110068", - "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - 2 SCH 80 X21" - } - ] - } - ] - }, - { - "shape": "Pipe", - "type": "Steel", - "grade": "A500 GR B", - "size": "2\" NPS Sch 40", - "dimensions": { + { "nominalSize": 2.0000, - "schedule": "40" + "wall": 0, + "schedule": "40", + "type": "Steel", + "grade": "A500 GR B", + "size": "2\u0022 NPS Sch 40", + "stockItems": [ + { + "lengthInches": 252.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "817230", + "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 2 SCH 40 X21" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 252.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "817230", - "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 2 SCH 40 X21" - } - ] - } - ] - }, - { - "shape": "Pipe", - "type": "Steel", - "grade": "A500 GR B", - "size": "2-1/2\" NPS Sch 80", - "dimensions": { + { "nominalSize": 2.5000, - "schedule": "80" + "wall": 0, + "schedule": "80", + "type": "Steel", + "grade": "A500 GR B", + "size": "2-1/2\u0022 NPS Sch 80", + "stockItems": [ + { + "lengthInches": 252.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "1163675", + "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - 2 1/2 SCH 80 X21" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 252.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "1163675", - "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - 2 1/2 SCH 80 X21" - } - ] - } - ] - }, - { - "shape": "Pipe", - "type": "Steel", - "grade": "A500 GR B", - "size": "2-1/2\" NPS Sch 40", - "dimensions": { + { "nominalSize": 2.5000, - "schedule": "40" + "wall": 0, + "schedule": "40", + "type": "Steel", + "grade": "A500 GR B", + "size": "2-1/2\u0022 NPS Sch 40", + "stockItems": [ + { + "lengthInches": 252.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "817475", + "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 2-1/2 SCH 40 X21" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 252.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "817475", - "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 2-1/2 SCH 40 X21" - } - ] - } - ] - }, - { - "shape": "Pipe", - "type": "Steel", - "grade": "A500 GR B", - "size": "3\" NPS Sch 40", - "dimensions": { + { "nominalSize": 3.0000, - "schedule": "40" + "wall": 0, + "schedule": "40", + "type": "Steel", + "grade": "A500 GR B", + "size": "3\u0022 NPS Sch 40", + "stockItems": [ + { + "lengthInches": 252.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "817686", + "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 3 SCH 40 X21" + } + ] + }, + { + "lengthInches": 504.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "817791", + "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 3 SCH 40 X42" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 252.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "817686", - "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 3 SCH 40 X21" - } - ] - }, - { - "lengthInches": 504.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "817791", - "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 3 SCH 40 X42" - } - ] - } - ] - }, - { - "shape": "Pipe", - "type": "Steel", - "grade": "A500 GR B", - "size": "3\" NPS Sch 80", - "dimensions": { + { "nominalSize": 3.0000, - "schedule": "80" + "wall": 0, + "schedule": "80", + "type": "Steel", + "grade": "A500 GR B", + "size": "3\u0022 NPS Sch 80", + "stockItems": [ + { + "lengthInches": 252.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "2533601", + "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - 3 SCH 80 X21" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 252.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "2533601", - "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - 3 SCH 80 X21" - } - ] - } - ] - }, - { - "shape": "Pipe", - "type": "Steel", - "grade": "A500 GR B", - "size": "3-1/2\" NPS Sch 80", - "dimensions": { + { "nominalSize": 3.5000, - "schedule": "80" + "wall": 0, + "schedule": "80", + "type": "Steel", + "grade": "A500 GR B", + "size": "3-1/2\u0022 NPS Sch 80", + "stockItems": [ + { + "lengthInches": 252.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "13843832", + "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 3-1/2 SCH 80 X21" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 252.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "13843832", - "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 3-1/2 SCH 80 X21" - } - ] - } - ] - }, - { - "shape": "Pipe", - "type": "Steel", - "grade": "A500 GR B", - "size": "3-1/2\" NPS Sch 40", - "dimensions": { + { "nominalSize": 3.5000, - "schedule": "40" + "wall": 0, + "schedule": "40", + "type": "Steel", + "grade": "A500 GR B", + "size": "3-1/2\u0022 NPS Sch 40", + "stockItems": [ + { + "lengthInches": 252.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "817871", + "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 3-1/2 SCH 40 X21" + } + ] + }, + { + "lengthInches": 504.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "817934", + "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 3-1/2 SCH 40 X42" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 252.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "817871", - "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 3-1/2 SCH 40 X21" - } - ] - }, - { - "lengthInches": 504.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "817934", - "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 3-1/2 SCH 40 X42" - } - ] - } - ] - }, - { - "shape": "Pipe", - "type": "Steel", - "grade": "A500 GR B", - "size": "4\" NPS Sch 80", - "dimensions": { + { "nominalSize": 4.0000, - "schedule": "80" + "wall": 0, + "schedule": "80", + "type": "Steel", + "grade": "A500 GR B", + "size": "4\u0022 NPS Sch 80", + "stockItems": [ + { + "lengthInches": 252.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "1138124", + "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 4 SCH 80 X21" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 252.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "1138124", - "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 4 SCH 80 X21" - } - ] - } - ] - }, - { - "shape": "Pipe", - "type": "Steel", - "grade": "A53B", - "size": "4\" NPS Sch 40", - "dimensions": { + { "nominalSize": 4.0000, - "schedule": "40" + "wall": 0, + "schedule": "40", + "type": "Steel", + "grade": "A53B", + "size": "4\u0022 NPS Sch 40", + "stockItems": [ + { + "lengthInches": 252.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "2980049", + "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A53B - BLACK PLAIN END - 4 SCH 40 X21" + } + ] + }, + { + "lengthInches": 504.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "818064", + "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 4 SCH 40 X42" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 252.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "2980049", - "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A53B - BLACK PLAIN END - 4 SCH 40 X21" - } - ] - }, - { - "lengthInches": 504.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "818064", - "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 4 SCH 40 X42" - } - ] - } - ] - }, - { - "shape": "Pipe", - "type": "Steel", - "grade": "A500 GR B", - "size": "5\" NPS Sch 40", - "dimensions": { + { "nominalSize": 5.0000, - "schedule": "40" + "wall": 0, + "schedule": "40", + "type": "Steel", + "grade": "A500 GR B", + "size": "5\u0022 NPS Sch 40", + "stockItems": [ + { + "lengthInches": 252.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "816161", + "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 5 SCH 40 X21" + } + ] + }, + { + "lengthInches": 504.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "818195", + "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 5 SCH 40 X42" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 252.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "816161", - "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 5 SCH 40 X21" - } - ] - }, - { - "lengthInches": 504.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "818195", - "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 5 SCH 40 X42" - } - ] - } - ] - }, - { - "shape": "Pipe", - "type": "Steel", - "grade": "A500 GR B", - "size": "6\" NPS Sch 80", - "dimensions": { + { "nominalSize": 6.0000, - "schedule": "80" + "wall": 0, + "schedule": "80", + "type": "Steel", + "grade": "A500 GR B", + "size": "6\u0022 NPS Sch 80", + "stockItems": [ + { + "lengthInches": 252.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "2124621", + "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 6 SCH 80 X21" + } + ] + }, + { + "lengthInches": 504.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "818582", + "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 6 SCH 80 X42" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 252.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "2124621", - "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 6 SCH 80 X21" - } - ] - }, - { - "lengthInches": 504.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "818582", - "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 6 SCH 80 X42" - } - ] - } - ] - }, - { - "shape": "Pipe", - "type": "Steel", - "grade": "A500 GR B", - "size": "6\" NPS Sch 40", - "dimensions": { + { "nominalSize": 6.0000, - "schedule": "40" + "wall": 0, + "schedule": "40", + "type": "Steel", + "grade": "A500 GR B", + "size": "6\u0022 NPS Sch 40", + "stockItems": [ + { + "lengthInches": 252.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "818435", + "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 6 SCH 40 X21" + } + ] + }, + { + "lengthInches": 504.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "818494", + "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 6 SCH 40 X42" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 252.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "818435", - "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 6 SCH 40 X21" - } - ] - }, - { - "lengthInches": 504.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "818494", - "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 6 SCH 40 X42" - } - ] - } - ] - }, - { - "shape": "Pipe", - "type": "Steel", - "grade": "A500 GR B", - "size": "8\" NPS Sch 80", - "dimensions": { + { "nominalSize": 8.0000, - "schedule": "80" + "wall": 0, + "schedule": "80", + "type": "Steel", + "grade": "A500 GR B", + "size": "8\u0022 NPS Sch 80", + "stockItems": [ + { + "lengthInches": 504.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "18707215", + "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 8 SCH 80 X42" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 504.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "18707215", - "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 8 SCH 80 X42" - } - ] - } - ] - }, - { - "shape": "Pipe", - "type": "Steel", - "grade": "A500 GR B", - "size": "8\" NPS Sch 40", - "dimensions": { + { "nominalSize": 8.0000, - "schedule": "40" + "wall": 0, + "schedule": "40", + "type": "Steel", + "grade": "A500 GR B", + "size": "8\u0022 NPS Sch 40", + "stockItems": [ + { + "lengthInches": 252.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "818671", + "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 8 SCH 40 X21" + } + ] + }, + { + "lengthInches": 504.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "818718", + "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 8 SCH 40 X42" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 252.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "818671", - "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 8 SCH 40 X21" - } - ] - }, - { - "lengthInches": 504.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "818718", - "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 8 SCH 40 X42" - } - ] - } - ] - }, - { - "shape": "Pipe", - "type": "Steel", - "grade": "A500 GR B", - "size": "10\" NPS Sch 40", - "dimensions": { + { "nominalSize": 10.0000, - "schedule": "40" + "wall": 0, + "schedule": "40", + "type": "Steel", + "grade": "A500 GR B", + "size": "10\u0022 NPS Sch 40", + "stockItems": [ + { + "lengthInches": 252.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "13860149", + "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 10 SCH 40 X21" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 252.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "13860149", - "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 10 SCH 40 X21" - } - ] - } - ] - }, - { - "shape": "Pipe", - "type": "Steel", - "grade": "A500 GR B", - "size": "1' 0\" NPS Sch 20", - "dimensions": { + { "nominalSize": 12.0000, - "schedule": "20" - }, - "stockItems": [ - { - "lengthInches": 252.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "19182799", - "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 12 SCH 20 X21" - } - ] - }, - { - "lengthInches": 504.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "17807100", - "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 12 SCH 20 X42" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "AST13 TY 1", - "size": "3/4\" x 1-1/2\" x 1/16\" wall", - "dimensions": { + "wall": 0, + "schedule": "20", + "type": "Steel", + "grade": "A500 GR B", + "size": "1\u0027 0\u0022 NPS Sch 20", + "stockItems": [ + { + "lengthInches": 252.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "19182799", + "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 12 SCH 20 X21" + } + ] + }, + { + "lengthInches": 504.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "17807100", + "supplierDescription": "PIPE - CARBON STEEL - HOT ROLL - A500 GR B - BARE - 12 SCH 20 X42" + } + ] + } + ] + } + ], + "rectangularTubes": [ + { "width": 0.7500, "height": 1.5000, - "wall": 0.1196 + "wall": 0.1196, + "type": "Steel", + "grade": "AST13 TY 1", + "size": "3/4\u0022 x 1-1/2\u0022 x 1/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "2039347", + "supplierDescription": "RECTANGULAR TUBE - HRW - HOT ROLL - AST13 TY 1 - 1-1/2 X 3/4 X 11GA" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "2039347", - "supplierDescription": "RECTANGULAR TUBE - HRW - HOT ROLL - AST13 TY 1 - 1-1/2 X 3/4 X 11GA" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "AST13 TY 1", - "size": "1\" x 1-1/2\" x 1/16\" wall", - "dimensions": { + { "width": 1.0000, "height": 1.5000, - "wall": 0.0650 + "wall": 0.0650, + "type": "Steel", + "grade": "AST13 TY 1", + "size": "1\u0022 x 1-1/2\u0022 x 1/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "1911472", + "supplierDescription": "RECTANGULAR TUBE - HRW - HOT ROLL - AST13 TY 1 - 1-1/2 X 1 X 13/200" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "1911472", - "supplierDescription": "RECTANGULAR TUBE - HRW - HOT ROLL - AST13 TY 1 - 1-1/2 X 1 X 13/200" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "AST13 TY 1", - "size": "1\" x 1-1/2\" x 0\" wall", - "dimensions": { + { "width": 1.0000, "height": 1.5000, - "wall": 0.0598 + "wall": 0.0598, + "type": "Steel", + "grade": "AST13 TY 1", + "size": "1\u0022 x 1-1/2\u0022 x 0\u0022 wall", + "stockItems": [ + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "820834", + "supplierDescription": "RECTANGULAR TUBE - HRW - HOT ROLL - AST13 TY 1 - 1-1/2 X 1 X 16GA" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "820834", - "supplierDescription": "RECTANGULAR TUBE - HRW - HOT ROLL - AST13 TY 1 - 1-1/2 X 1 X 16GA" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "", - "size": "1\" x 2\" x 3/16\" wall", - "dimensions": { + { "width": 1.0000, "height": 2.0000, - "wall": 0.1875 + "wall": 0.1875, + "type": "Steel", + "grade": "", + "size": "1\u0022 x 2\u0022 x 3/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "2212200", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - NO GRADE - 2 X 1 X 3/16 X 24" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "2212200", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - NO GRADE - 2 X 1 X 3/16 X 24" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A513 TY 1", - "size": "1\" x 2\" x 0\" wall", - "dimensions": { + { "width": 1.0000, "height": 2.0000, - "wall": 0.0598 + "wall": 0.0598, + "type": "Steel", + "grade": "A513 TY 1", + "size": "1\u0022 x 2\u0022 x 0\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "820973", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A513 TY 1 - 2 X 1 X 16GA X 20" + } + ] + }, + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "820990", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A513 TY 1 - 2 X 1 X 16GA X 24" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "820973", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A513 TY 1 - 2 X 1 X 16GA X 20" - } - ] - }, - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "820990", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A513 TY 1 - 2 X 1 X 16GA X 24" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A513 TY 1", - "size": "1\" x 2\" x 1/16\" wall", - "dimensions": { + { "width": 1.0000, "height": 2.0000, - "wall": 0.0747 + "wall": 0.0747, + "type": "Steel", + "grade": "A513 TY 1", + "size": "1\u0022 x 2\u0022 x 1/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "821044", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A513 TY 1 - 2 X 1 X 14GA X 20" + } + ] + }, + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "821052", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A513 TY 1 - 2 X 1 X 14GA X 24" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "821044", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A513 TY 1 - 2 X 1 X 14GA X 20" - } - ] - }, - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "821052", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A513 TY 1 - 2 X 1 X 14GA X 24" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "1\" x 3\" x 1/16\" wall", - "dimensions": { + { "width": 1.0000, "height": 3.0000, - "wall": 0.1196 + "wall": 0.1196, + "type": "Steel", + "grade": "A500 GR B", + "size": "1\u0022 x 3\u0022 x 1/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "13294237", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 3 X1 X11GAX24" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "13294237", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 3 X1 X11GAX24" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A513 TY 1", - "size": "1-1/2\" x 2\" x 1/16\" wall", - "dimensions": { + { "width": 1.5000, "height": 2.0000, - "wall": 0.0747 + "wall": 0.0747, + "type": "Steel", + "grade": "A513 TY 1", + "size": "1-1/2\u0022 x 2\u0022 x 1/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "821163", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A513 TY 1 - 2 X 1 1/2 X 14GA X 24" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "821163", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A513 TY 1 - 2 X 1 1/2 X 14GA X 24" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "1-1/2\" x 2-1/2\" x 1/16\" wall", - "dimensions": { + { "width": 1.5000, "height": 2.5000, - "wall": 0.1196 + "wall": 0.1196, + "type": "Steel", + "grade": "A500 GR B", + "size": "1-1/2\u0022 x 2-1/2\u0022 x 1/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "1167391", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 2-1/2 X1-1/2 X11GA X24" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "1167391", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 2-1/2 X1-1/2 X11GA X24" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "1-1/2\" x 2-1/2\" x 3/16\" wall", - "dimensions": { + { "width": 1.5000, "height": 2.5000, - "wall": 0.1875 + "wall": 0.1875, + "type": "Steel", + "grade": "A500 GR B", + "size": "1-1/2\u0022 x 2-1/2\u0022 x 3/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "921351", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 2-1/2 X1-1/2 X3/16\u0022 X24" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "921351", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 2-1/2 X1-1/2 X3/16\" X24" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "1-1/2\" x 2-1/2\" x 1/4\" wall", - "dimensions": { + { "width": 1.5000, "height": 2.5000, - "wall": 0.2500 + "wall": 0.2500, + "type": "Steel", + "grade": "A500 GR B", + "size": "1-1/2\u0022 x 2-1/2\u0022 x 1/4\u0022 wall", + "stockItems": [ + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "821407", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 2-1/2 X1-1/2 X1/4 X24" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "821407", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 2-1/2 X1-1/2 X1/4 X24" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "1-1/2\" x 3\" x 1/16\" wall", - "dimensions": { + { "width": 1.5000, "height": 3.0000, - "wall": 0.1196 + "wall": 0.1196, + "type": "Steel", + "grade": "A500 GR B", + "size": "1-1/2\u0022 x 3\u0022 x 1/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "2103863", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 3 X1-1/2 X1 11GA X20" + } + ] + }, + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "1140662", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 3 X1-1/2 X1 11GA X24" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "2103863", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 3 X1-1/2 X1 11GA X20" - } - ] - }, - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "1140662", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 3 X1-1/2 X1 11GA X24" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "1-1/2\" x 3\" x 3/16\" wall", - "dimensions": { + { "width": 1.5000, "height": 3.0000, - "wall": 0.1875 + "wall": 0.1875, + "type": "Steel", + "grade": "A500 GR B", + "size": "1-1/2\u0022 x 3\u0022 x 3/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "821589", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 3 X1-1/2 X3/16 6X20" + } + ] + }, + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "821597", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 3 X1-1/2 X3/16 6X24" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "821589", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 3 X1-1/2 X3/16 6X20" - } - ] - }, - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "821597", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 3 X1-1/2 X3/16 6X24" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "2\" x 3\" x 1/16\" wall", - "dimensions": { + { "width": 2.0000, "height": 3.0000, - "wall": 0.0747 + "wall": 0.0747, + "type": "Steel", + "grade": "A500 GR B", + "size": "2\u0022 x 3\u0022 x 1/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "821642", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 3 X2 X14GA X24" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "821642", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 3 X2 X14GA X24" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "2\" x 3\" x 3/16\" wall", - "dimensions": { + { "width": 2.0000, "height": 3.0000, - "wall": 0.1875 + "wall": 0.1875, + "type": "Steel", + "grade": "A500 GR B", + "size": "2\u0022 x 3\u0022 x 3/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "821861", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 3 X 2 X3/16X20" + } + ] + }, + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "821868", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 3 X 2 X3/16X24" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "821909", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 3 X 2 X3/16X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "821861", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 3 X 2 X3/16X20" - } - ] - }, - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "821868", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 3 X 2 X3/16X24" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "821909", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 3 X 2 X3/16X40" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "2\" x 3\" x 1/4\" wall", - "dimensions": { + { "width": 2.0000, "height": 3.0000, - "wall": 0.2500 + "wall": 0.2500, + "type": "Steel", + "grade": "A500 GR B", + "size": "2\u0022 x 3\u0022 x 1/4\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "821933", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 3 X 2 X1/4X20" + } + ] + }, + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "821941", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 3 X 2 X1/4X24" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "821950", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 3 X 2 X1/4X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "821933", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 3 X 2 X1/4X20" - } - ] - }, - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "821941", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 3 X 2 X1/4X24" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "821950", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 3 X 2 X1/4X40" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "2\" x 4\" x 5/16\" wall", - "dimensions": { + { "width": 2.0000, "height": 4.0000, - "wall": 0.3125 + "wall": 0.3125, + "type": "Steel", + "grade": "A500 GR B", + "size": "2\u0022 x 4\u0022 x 5/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 264.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "19502992", + "supplierDescription": "RECTANGULAR TUBE - HRW - HOT ROLL - A500 GR B - 4 X2 X3/16X22" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 264.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "19502992", - "supplierDescription": "RECTANGULAR TUBE - HRW - HOT ROLL - A500 GR B - 4 X2 X3/16X22" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "2\" x 4\" x 3/8\" wall", - "dimensions": { + { "width": 2.0000, "height": 4.0000, - "wall": 0.3750 + "wall": 0.3750, + "type": "Steel", + "grade": "A500 GR B", + "size": "2\u0022 x 4\u0022 x 3/8\u0022 wall", + "stockItems": [ + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "2623831", + "supplierDescription": "RECTANGULAR TUBE - HRW - HOT ROLL - A500 GR B - 4 X2 X3/8 X24" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "2623831", - "supplierDescription": "RECTANGULAR TUBE - HRW - HOT ROLL - A500 GR B - 4 X2 X3/8 X24" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "2\" x 4\" x 1/16\" wall", - "dimensions": { + { "width": 2.0000, "height": 4.0000, - "wall": 0.0897 + "wall": 0.0897, + "type": "Steel", + "grade": "A500 GR B", + "size": "2\u0022 x 4\u0022 x 1/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "822009", + "supplierDescription": "RECTANGULAR TUBE - HRW - HOT ROLL - A500 GR B - 4 X2 X1/2 X24" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "822009", - "supplierDescription": "RECTANGULAR TUBE - HRW - HOT ROLL - A500 GR B - 4 X2 X1/2 X24" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "2\" x 4\" x 3/16\" wall", - "dimensions": { + { "width": 2.0000, "height": 4.0000, - "wall": 0.1875 + "wall": 0.1875, + "type": "Steel", + "grade": "A500 GR B", + "size": "2\u0022 x 4\u0022 x 3/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "822303", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 4 X 2 X 3/16 X 20" + } + ] + }, + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "822311", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 4 X 2 X 3/16 X 24" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "822338", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 4 X 2 X 3/16 X 40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "822303", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 4 X 2 X 3/16 X 20" - } - ] - }, - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "822311", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 4 X 2 X 3/16 X 24" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "822338", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 4 X 2 X 3/16 X 40" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "2\" x 4\" x 1/4\" wall", - "dimensions": { + { "width": 2.0000, "height": 4.0000, - "wall": 0.2500 + "wall": 0.2500, + "type": "Steel", + "grade": "A500 GR B", + "size": "2\u0022 x 4\u0022 x 1/4\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "822389", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 4 X 2 X 1/4 X 20" + } + ] + }, + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "822397", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 4 X 2 X 1/4 X 24" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "822418", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 4 X 2 X 1/4 X 40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "822389", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 4 X 2 X 1/4 X 20" - } - ] - }, - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "822397", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 4 X 2 X 1/4 X 24" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "822418", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 4 X 2 X 1/4 X 40" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR C", - "size": "2\" x 5\" x 1/8\" wall", - "dimensions": { + { "width": 2.0000, "height": 5.0000, - "wall": 0.1345 + "wall": 0.1345, + "type": "Steel", + "grade": "A500 GR C", + "size": "2\u0022 x 5\u0022 x 1/8\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "2047662", + "supplierDescription": "RECTANGULAR TUBE - HRW - HOT ROLL - A500 GR C - 5 X 2 X10GA X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "2047662", - "supplierDescription": "RECTANGULAR TUBE - HRW - HOT ROLL - A500 GR C - 5 X 2 X10GA X20" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "2\" x 5\" x 1/16\" wall", - "dimensions": { + { "width": 2.0000, "height": 5.0000, - "wall": 0.1196 + "wall": 0.1196, + "type": "Steel", + "grade": "A500 GR B", + "size": "2\u0022 x 5\u0022 x 1/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "822830", + "supplierDescription": "RECTANGULAR TUBE - HRW - HOT ROLL - A500 GR B - 5 X 2 X11GAX24" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "822830", - "supplierDescription": "RECTANGULAR TUBE - HRW - HOT ROLL - A500 GR B - 5 X 2 X11GAX24" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "2\" x 5\" x 3/16\" wall", - "dimensions": { + { "width": 2.0000, "height": 5.0000, - "wall": 0.1875 + "wall": 0.1875, + "type": "Steel", + "grade": "A500 GR B", + "size": "2\u0022 x 5\u0022 x 3/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "822928", + "supplierDescription": "RECTANGULAR TUBE - HRW - HOT ROLL - A500 GR B - 5 X 2 X3/16X24" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "822961", + "supplierDescription": "RECTANGULAR TUBE - HRW - HOT ROLL - A500 GR B - 5 X 2 X3/16X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "822928", - "supplierDescription": "RECTANGULAR TUBE - HRW - HOT ROLL - A500 GR B - 5 X 2 X3/16X24" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "822961", - "supplierDescription": "RECTANGULAR TUBE - HRW - HOT ROLL - A500 GR B - 5 X 2 X3/16X40" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "2\" x 5\" x 1/4\" wall", - "dimensions": { + { "width": 2.0000, "height": 5.0000, - "wall": 0.2500 + "wall": 0.2500, + "type": "Steel", + "grade": "A500 GR B", + "size": "2\u0022 x 5\u0022 x 1/4\u0022 wall", + "stockItems": [ + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "823007", + "supplierDescription": "RECTANGULAR TUBE - HRW - HOT ROLL - A500 GR B - 5 X 2 X1/4X24" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "823015", + "supplierDescription": "RECTANGULAR TUBE - HRW - HOT ROLL - A500 GR B - 5 X 2 X1/4X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "823007", - "supplierDescription": "RECTANGULAR TUBE - HRW - HOT ROLL - A500 GR B - 5 X 2 X1/4X24" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "823015", - "supplierDescription": "RECTANGULAR TUBE - HRW - HOT ROLL - A500 GR B - 5 X 2 X1/4X40" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "2\" x 6\" x 3/16\" wall", - "dimensions": { + { "width": 2.0000, "height": 6.0000, - "wall": 0.1875 + "wall": 0.1875, + "type": "Steel", + "grade": "A500 GR B", + "size": "2\u0022 x 6\u0022 x 3/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "823461", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 6 X 2 X 3/16 X20" + } + ] + }, + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "823470", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 6 X 2 X 3/16 X24" + } + ] + }, + { + "lengthInches": 300.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "18820066", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 6 X 2 X 3/16 X25" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "823517", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 6 X 2 X 3/16 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "823461", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 6 X 2 X 3/16 X20" - } - ] - }, - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "823470", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 6 X 2 X 3/16 X24" - } - ] - }, - { - "lengthInches": 300.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "18820066", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 6 X 2 X 3/16 X25" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "823517", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 6 X 2 X 3/16 X40" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "2\" x 6\" x 1/16\" wall", - "dimensions": { + { "width": 2.0000, "height": 6.0000, - "wall": 0.1196 + "wall": 0.1196, + "type": "Steel", + "grade": "A500 GR B", + "size": "2\u0022 x 6\u0022 x 1/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "823445", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 6 X 2 X 11GA X24" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "823445", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 6 X 2 X 11GA X24" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "2\" x 6\" x 1/4\" wall", - "dimensions": { + { "width": 2.0000, "height": 6.0000, - "wall": 0.2500 + "wall": 0.2500, + "type": "Steel", + "grade": "A500 GR B", + "size": "2\u0022 x 6\u0022 x 1/4\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "823592", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 6 X2 X1/4 X20" + } + ] + }, + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "823613", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 6 X2 X1/4 X24" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "823630", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 6 X2 X1/4 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "823592", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 6 X2 X1/4 X20" - } - ] - }, - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "823613", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 6 X2 X1/4 X24" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "823630", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 6 X2 X1/4 X40" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "2\" x 9\" x 3/16\" wall", - "dimensions": { + { "width": 2.0000, "height": 9.0000, - "wall": 0.1875 + "wall": 0.1875, + "type": "Steel", + "grade": "A500 GR B", + "size": "2\u0022 x 9\u0022 x 3/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "824499", + "supplierDescription": "RECTANGULAR TUBE - HRW - HOT ROLL - A500 GR B - 8 X 2 X 3/16 X .140" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "824499", - "supplierDescription": "RECTANGULAR TUBE - HRW - HOT ROLL - A500 GR B - 8 X 2 X 3/16 X .140" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "2\" x 8\" x 1/4\" wall", - "dimensions": { + { "width": 2.0000, "height": 8.0000, - "wall": 0.2500 + "wall": 0.2500, + "type": "Steel", + "grade": "A500 GR B", + "size": "2\u0022 x 8\u0022 x 1/4\u0022 wall", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "824528", + "supplierDescription": "RECTANGULAR TUBE - HRW - HOT ROLL - A500 GR B - 8 X 2 X 1/4 X .140" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "824528", - "supplierDescription": "RECTANGULAR TUBE - HRW - HOT ROLL - A500 GR B - 8 X 2 X 1/4 X .140" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "2-1/2\" x 3-1/2\" x 3/16\" wall", - "dimensions": { + { "width": 2.5000, "height": 3.5000, - "wall": 0.1875 + "wall": 0.1875, + "type": "Steel", + "grade": "A500 GR B", + "size": "2-1/2\u0022 x 3-1/2\u0022 x 3/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "822004", + "supplierDescription": "RECTANGULAR TUBE - HREW - A500 GR B - 3-1/2 X 2-1/2 X 3/16" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "822004", - "supplierDescription": "RECTANGULAR TUBE - HREW - A500 GR B - 3-1/2 X 2-1/2 X 3/16" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "2-1/2\" x 5\" x 3/16\" wall", - "dimensions": { + { "width": 2.5000, "height": 5.0000, - "wall": 0.1875 + "wall": 0.1875, + "type": "Steel", + "grade": "A500 GR B", + "size": "2-1/2\u0022 x 5\u0022 x 3/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "1759515", + "supplierDescription": "RECTANGULAR TUBE - HRW - HOT ROLL - A500 GR B - 5 X 2-1/2 X3/16X24" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "1759515", - "supplierDescription": "RECTANGULAR TUBE - HRW - HOT ROLL - A500 GR B - 5 X 2-1/2 X3/16X24" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "3\" x 4\" x 1/4\" wall", - "dimensions": { + { "width": 3.0000, "height": 4.0000, - "wall": 0.2500 + "wall": 0.2500, + "type": "Steel", + "grade": "A500 GR B", + "size": "3\u0022 x 4\u0022 x 1/4\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "822725", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 4 X 3 X 1/4 X 20\u0027" + } + ] + }, + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "822733", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 4 X 3 X 1/4 X 24\u0027" + } + ] + }, + { + "lengthInches": 360.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "16022648", + "supplierDescription": "RECTANGULAR TUBE - HRW - HOT ROLL - A500 GR B - 4 X3 X1/4 X30" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "822741", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 4 X 3 X 1/4 X 40\u0027" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "822725", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 4 X 3 X 1/4 X 20'" - } - ] - }, - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "822733", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 4 X 3 X 1/4 X 24'" - } - ] - }, - { - "lengthInches": 360.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "16022648", - "supplierDescription": "RECTANGULAR TUBE - HRW - HOT ROLL - A500 GR B - 4 X3 X1/4 X30" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "822741", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 4 X 3 X 1/4 X 40'" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "3\" x 4\" x 1/16\" wall", - "dimensions": { + { "width": 3.0000, "height": 4.0000, - "wall": 0.1196 + "wall": 0.1196, + "type": "Steel", + "grade": "A500 GR B", + "size": "3\u0022 x 4\u0022 x 1/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "822611", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 4 X 3 X 11GAX24" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "822628", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 4 X 3 X 11GAX40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "822611", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 4 X 3 X 11GAX24" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "822628", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 4 X 3 X 11GAX40" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "3\" x 4\" x 1/8\" wall", - "dimensions": { + { "width": 3.0000, "height": 4.0000, - "wall": 0.1250 + "wall": 0.1250, + "type": "Steel", + "grade": "A500 GR B", + "size": "3\u0022 x 4\u0022 x 1/8\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "822661", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 4 X 3 X 1/8 X 20\u0027" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "822661", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 4 X 3 X 1/8 X 20'" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "3\" x 4\" x 3/16\" wall", - "dimensions": { + { "width": 3.0000, "height": 4.0000, - "wall": 0.1875 + "wall": 0.1875, + "type": "Steel", + "grade": "A500 GR B", + "size": "3\u0022 x 4\u0022 x 3/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "822670", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 4 X 3 X 3/16 X 24\u0027" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "822717", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 4 X 3 X 3/16 X 40\u0027" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "822670", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 4 X 3 X 3/16 X 24'" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "822717", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 4 X 3 X 3/16 X 40'" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "3\" x 5\" x 1/16\" wall", - "dimensions": { + { "width": 3.0000, "height": 5.0000, - "wall": 0.1196 + "wall": 0.1196, + "type": "Steel", + "grade": "A500 GR B", + "size": "3\u0022 x 5\u0022 x 1/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "17811141", + "supplierDescription": "RECTANGULAR TUBE - HRW - HOT ROLL - A500 GR B - 5 X 3 X11GAX40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "17811141", - "supplierDescription": "RECTANGULAR TUBE - HRW - HOT ROLL - A500 GR B - 5 X 3 X11GAX40" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "3\" x 5\" x 3/16\" wall", - "dimensions": { + { "width": 3.0000, "height": 5.0000, - "wall": 0.1875 + "wall": 0.1875, + "type": "Steel", + "grade": "A500 GR B", + "size": "3\u0022 x 5\u0022 x 3/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 40.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "823189", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 5 X 3 X3/16X40" + } + ] + }, + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "823154", + "supplierDescription": "RECTANGULAR TUBE - HRW - HOT ROLL - A500 GR B - 5 X 3 X3/16X20" + } + ] + }, + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "823162", + "supplierDescription": "RECTANGULAR TUBE - HRW - HOT ROLL - A500 GR B - 5 X 3 X3/16X24" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 40.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "823189", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 5 X 3 X3/16X40" - } - ] - }, - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "823154", - "supplierDescription": "RECTANGULAR TUBE - HRW - HOT ROLL - A500 GR B - 5 X 3 X3/16X20" - } - ] - }, - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "823162", - "supplierDescription": "RECTANGULAR TUBE - HRW - HOT ROLL - A500 GR B - 5 X 3 X3/16X24" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "3\" x 5\" x 3/8\" wall", - "dimensions": { + { "width": 3.0000, "height": 5.0000, - "wall": 0.3750 + "wall": 0.3750, + "type": "Steel", + "grade": "A500 GR B", + "size": "3\u0022 x 5\u0022 x 3/8\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "823314", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 5 X 3 X 3/8 X 20" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "823349", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 5 X 3 X 3/8 X 40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "823314", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 5 X 3 X 3/8 X 20" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "823349", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 5 X 3 X 3/8 X 40" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "3\" x 6\" x 3/16\" wall", - "dimensions": { + { "width": 3.0000, "height": 6.0000, - "wall": 0.1875 + "wall": 0.1875, + "type": "Steel", + "grade": "A500 GR B", + "size": "3\u0022 x 6\u0022 x 3/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "823699", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 6 X3 X3/16 X20" + } + ] + }, + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "823701", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 6 X3 X3/16 X24" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "823728", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 6 X3 X3/16 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "823699", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 6 X3 X3/16 X20" - } - ] - }, - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "823701", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 6 X3 X3/16 X24" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "823728", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 6 X3 X3/16 X40" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "3\" x 6\" x 1/4\" wall", - "dimensions": { + { "width": 3.0000, "height": 6.0000, - "wall": 0.2500 + "wall": 0.2500, + "type": "Steel", + "grade": "A500 GR B", + "size": "3\u0022 x 6\u0022 x 1/4\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "823787", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 6 X3 X1/4 X20" + } + ] + }, + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "823795", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 6 X3 X1/4 X24" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "823808", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 6 X3 X1/4 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "823787", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 6 X3 X1/4 X20" - } - ] - }, - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "823795", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 6 X3 X1/4 X24" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "823808", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 6 X3 X1/4 X40" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "3\" x 6\" x 3/8\" wall", - "dimensions": { + { "width": 3.0000, "height": 6.0000, - "wall": 0.3750 + "wall": 0.3750, + "type": "Steel", + "grade": "A500 GR B", + "size": "3\u0022 x 6\u0022 x 3/8\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "823899", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 6 X3 X3/8 X20" + } + ] + }, + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "823907", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 6 X3 X3/8 X24" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "823915", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 6 X3 X3/8 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "823899", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 6 X3 X3/8 X20" - } - ] - }, - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "823907", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 6 X3 X3/8 X24" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "823915", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 6 X3 X3/8 X40" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "3\" x 8\" x 1-1/4\" wall", - "dimensions": { + { "width": 3.0000, "height": 8.0000, - "wall": 1.2500 + "wall": 1.2500, + "type": "Steel", + "grade": "A500 GR B", + "size": "3\u0022 x 8\u0022 x 1-1/4\u0022 wall", + "stockItems": [ + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "2065465", + "supplierDescription": "RECTANGULAR TUBE - HRW - HOT ROLL - A500 GR B - 8 X 3 X 1 1/4 X .240" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "2065465", - "supplierDescription": "RECTANGULAR TUBE - HRW - HOT ROLL - A500 GR B - 8 X 3 X 1 1/4 X .240" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "3\" x 8\" x 3/16\" wall", - "dimensions": { + { "width": 3.0000, "height": 8.0000, - "wall": 0.1875 + "wall": 0.1875, + "type": "Steel", + "grade": "A500 GR B", + "size": "3\u0022 x 8\u0022 x 3/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 40.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "824561", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 8 X3 X1/16X40" + } + ] + }, + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "824552", + "supplierDescription": "RECTANGULAR TUBE - HRW - HOT ROLL - A500 GR B - 8 X 3 X 3/16 X .240" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 40.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "824561", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 8 X3 X1/16X40" - } - ] - }, - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "824552", - "supplierDescription": "RECTANGULAR TUBE - HRW - HOT ROLL - A500 GR B - 8 X 3 X 3/16 X .240" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "3\" x 8\" x 1/4\" wall", - "dimensions": { + { "width": 3.0000, "height": 8.0000, - "wall": 0.2500 + "wall": 0.2500, + "type": "Steel", + "grade": "A500 GR B", + "size": "3\u0022 x 8\u0022 x 1/4\u0022 wall", + "stockItems": [ + { + "lengthInches": 20.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "824587", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 8 X1 X1/4 X20" + } + ] + }, + { + "lengthInches": 40.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "824622", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 8 X3 X1/4 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 20.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "824587", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 8 X1 X1/4 X20" - } - ] - }, - { - "lengthInches": 40.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "824622", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 8 X3 X1/4 X40" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "3\" x 8\" x 3/8\" wall", - "dimensions": { + { "width": 3.0000, "height": 8.0000, - "wall": 0.3750 + "wall": 0.3750, + "type": "Steel", + "grade": "A500 GR B", + "size": "3\u0022 x 8\u0022 x 3/8\u0022 wall", + "stockItems": [ + { + "lengthInches": 40.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "824641", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 8 X3 X3/8 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 40.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "824641", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 8 X3 X3/8 X40" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "4\" x 6\" x 3/16\" wall", - "dimensions": { + { "width": 4.0000, "height": 6.0000, - "wall": 0.1875 + "wall": 0.1875, + "type": "Steel", + "grade": "A500 GR B", + "size": "4\u0022 x 6\u0022 x 3/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "823963", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 6 X4 X3/16 X20" + } + ] + }, + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "823971", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 6 X4 X3/16 X24" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "823963", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 6 X4 X3/16 X20" - } - ] - }, - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "823971", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 6 X4 X3/16 X24" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "4\" x 6\" x 1/4\" wall", - "dimensions": { + { "width": 4.0000, "height": 6.0000, - "wall": 0.2500 + "wall": 0.2500, + "type": "Steel", + "grade": "A500 GR B", + "size": "4\u0022 x 6\u0022 x 1/4\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "824034", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 6 X4 X1/4 X20" + } + ] + }, + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "824042", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 6 X4 X1/4 X24" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "824051", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 6 X4 X1/4 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "824034", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 6 X4 X1/4 X20" - } - ] - }, - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "824042", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 6 X4 X1/4 X24" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "824051", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 6 X4 X1/4 X40" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "4\" x 6\" x 5/16\" wall", - "dimensions": { + { "width": 4.0000, "height": 6.0000, - "wall": 0.3125 + "wall": 0.3125, + "type": "Steel", + "grade": "A500 GR B", + "size": "4\u0022 x 6\u0022 x 5/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "824106", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 6 X5 X5/16 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "824106", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 6 X5 X5/16 X40" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "4\" x 6\" x 3/8\" wall", - "dimensions": { + { "width": 4.0000, "height": 6.0000, - "wall": 0.3750 + "wall": 0.3750, + "type": "Steel", + "grade": "A500 GR B", + "size": "4\u0022 x 6\u0022 x 3/8\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "824173", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 6 X4 X3/8 X20" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "824190", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 6 X4 X3/8 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "824173", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 6 X4 X3/8 X20" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "824190", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 6 X4 X3/8 X40" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "4\" x 6\" x 1/2\" wall", - "dimensions": { + { "width": 4.0000, "height": 6.0000, - "wall": 0.5000 + "wall": 0.5000, + "type": "Steel", + "grade": "A500 GR B", + "size": "4\u0022 x 6\u0022 x 1/2\u0022 wall", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "824237", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 6 X 4 X 1/2 X 40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "824237", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 6 X 4 X 1/2 X 40" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "4\" x 8\" x 1/4\" wall", - "dimensions": { + { "width": 4.0000, "height": 8.0000, - "wall": 0.2500 + "wall": 0.2500, + "type": "Steel", + "grade": "A500 GR B", + "size": "4\u0022 x 8\u0022 x 1/4\u0022 wall", + "stockItems": [ + { + "lengthInches": 40.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "824729", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 8 X4 X1/4 X40" + } + ] + }, + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "2003900", + "supplierDescription": "RECTANGULAR TUBE - HRW - HOT ROLL - A500 GR B - 8 X 4 X 1/4 X .240" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 40.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "824729", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 8 X4 X1/4 X40" - } - ] - }, - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "2003900", - "supplierDescription": "RECTANGULAR TUBE - HRW - HOT ROLL - A500 GR B - 8 X 4 X 1/4 X .240" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "4\" x 8\" x 3/16\" wall", - "dimensions": { + { "width": 4.0000, "height": 8.0000, - "wall": 0.1875 + "wall": 0.1875, + "type": "Steel", + "grade": "A500 GR B", + "size": "4\u0022 x 8\u0022 x 3/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 40.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "824683", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 8 X4 X3/16X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 40.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "824683", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 8 X4 X3/16X40" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "4\" x 8\" x 3/8\" wall", - "dimensions": { + { "width": 4.0000, "height": 8.0000, - "wall": 0.3750 + "wall": 0.3750, + "type": "Steel", + "grade": "A500 GR B", + "size": "4\u0022 x 8\u0022 x 3/8\u0022 wall", + "stockItems": [ + { + "lengthInches": 20.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "824819", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 8 X4 X3/8 X20" + } + ] + }, + { + "lengthInches": 40.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "824835", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 8 X4 X3/8 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 20.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "824819", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 8 X4 X3/8 X20" - } - ] - }, - { - "lengthInches": 40.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "824835", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 8 X4 X3/8 X40" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "4\" x 8\" x 1/2\" wall", - "dimensions": { + { "width": 4.0000, "height": 8.0000, - "wall": 0.5000 + "wall": 0.5000, + "type": "Steel", + "grade": "A500 GR B", + "size": "4\u0022 x 8\u0022 x 1/2\u0022 wall", + "stockItems": [ + { + "lengthInches": 40.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "824878", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 8 X4 X1/2 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 40.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "824878", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 8 X4 X1/2 X40" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "4\" x 10\" x 3/16\" wall", - "dimensions": { + { "width": 4.0000, "height": 10.0000, - "wall": 0.1875 + "wall": 0.1875, + "type": "Steel", + "grade": "A500 GR B", + "size": "4\u0022 x 10\u0022 x 3/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "825117", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 10 X 4 X 3/16 X 40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "825117", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 10 X 4 X 3/16 X 40" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "4\" x 10\" x 1/4\" wall", - "dimensions": { + { "width": 4.0000, "height": 10.0000, - "wall": 0.2500 + "wall": 0.2500, + "type": "Steel", + "grade": "A500 GR B", + "size": "4\u0022 x 10\u0022 x 1/4\u0022 wall", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "825133", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 10 X 4 X 1/4 X 40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "825133", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 10 X 4 X 1/4 X 40" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "4\" x 1' 0\" x 1/2\" wall", - "dimensions": { + { "width": 4.0000, "height": 12.0000, - "wall": 0.5000 + "wall": 0.5000, + "type": "Steel", + "grade": "A500 GR B", + "size": "4\u0022 x 1\u0027 0\u0022 x 1/2\u0022 wall", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "1075557", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 12 X 4 X 1/2 X 40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "1075557", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 12 X 4 X 1/2 X 40" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "4\" x 1' 0\" x 3/16\" wall", - "dimensions": { + { "width": 4.0000, "height": 12.0000, - "wall": 0.1875 + "wall": 0.1875, + "type": "Steel", + "grade": "A500 GR B", + "size": "4\u0022 x 1\u0027 0\u0022 x 3/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "825441", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 12 X 4 X 3/16 X 40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "825441", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 12 X 4 X 3/16 X 40" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "4\" x 1' 0\" x 1/4\" wall", - "dimensions": { + { "width": 4.0000, "height": 12.0000, - "wall": 0.2500 + "wall": 0.2500, + "type": "Steel", + "grade": "A500 GR B", + "size": "4\u0022 x 1\u0027 0\u0022 x 1/4\u0022 wall", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "825459", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 12 X 4 X 1/4 X 40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "825459", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 12 X 4 X 1/4 X 40" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "4\" x 1' 0\" x 3/8\" wall", - "dimensions": { + { "width": 4.0000, "height": 12.0000, - "wall": 0.3750 + "wall": 0.3750, + "type": "Steel", + "grade": "A500 GR B", + "size": "4\u0022 x 1\u0027 0\u0022 x 3/8\u0022 wall", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "825491", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 12 X 4 X 3/8 X 40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "825491", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 12 X 4 X 3/8 X 40" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "5\" x 7\" x 1/4\" wall", - "dimensions": { + { "width": 5.0000, "height": 7.0000, - "wall": 0.2500 + "wall": 0.2500, + "type": "Steel", + "grade": "A500 GR B", + "size": "5\u0022 x 7\u0022 x 1/4\u0022 wall", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "824392", + "supplierDescription": "RECTANGULAR TUBE - HRW - HOT ROLL - A500 GR B - 7 X 5 1/4 X .140" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "824392", - "supplierDescription": "RECTANGULAR TUBE - HRW - HOT ROLL - A500 GR B - 7 X 5 1/4 X .140" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "5\" x 7\" x 3/8\" wall", - "dimensions": { + { "width": 5.0000, "height": 7.0000, - "wall": 0.3750 + "wall": 0.3750, + "type": "Steel", + "grade": "A500 GR B", + "size": "5\u0022 x 7\u0022 x 3/8\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "950410", + "supplierDescription": "RECTANGULAR TUBE - HRW - HOT ROLL - A500 GR B - 7 X 5 X 3/8 X .200" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "824448", + "supplierDescription": "RECTANGULAR TUBE - HRW - HOT ROLL - A500 GR B - 7 X 5 X 3/8 X .140" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "950410", - "supplierDescription": "RECTANGULAR TUBE - HRW - HOT ROLL - A500 GR B - 7 X 5 X 3/8 X .200" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "824448", - "supplierDescription": "RECTANGULAR TUBE - HRW - HOT ROLL - A500 GR B - 7 X 5 X 3/8 X .140" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "5\" x 10\" x 1/4\" wall", - "dimensions": { + { "width": 5.0000, "height": 10.0000, - "wall": 0.2500 + "wall": 0.2500, + "type": "Steel", + "grade": "A500 GR B", + "size": "5\u0022 x 10\u0022 x 1/4\u0022 wall", + "stockItems": [ + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "18430164", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 10 X5 X1/4 X24" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "18430164", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 10 X5 X1/4 X24" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "6\" x 8\" x 3/16\" wall", - "dimensions": { + { "width": 6.0000, "height": 8.0000, - "wall": 0.1875 + "wall": 0.1875, + "type": "Steel", + "grade": "A500 GR B", + "size": "6\u0022 x 8\u0022 x 3/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 40.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "824983", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 8 X6 X3/16X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 40.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "824983", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 8 X6 X3/16X40" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "6\" x 8\" x 1/4\" wall", - "dimensions": { + { "width": 6.0000, "height": 8.0000, - "wall": 0.2500 + "wall": 0.2500, + "type": "Steel", + "grade": "A500 GR B", + "size": "6\u0022 x 8\u0022 x 1/4\u0022 wall", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "824923", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 8 X6 X1/4 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "824923", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 8 X6 X1/4 X40" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "6\" x 8\" x 3/8\" wall", - "dimensions": { + { "width": 6.0000, "height": 8.0000, - "wall": 0.3750 + "wall": 0.3750, + "type": "Steel", + "grade": "A500 GR B", + "size": "6\u0022 x 8\u0022 x 3/8\u0022 wall", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "824974", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 8 X6 X3/8 X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "824974", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 8 X6 X3/8 X40" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "6\" x 10\" x 1/2\" wall", - "dimensions": { + { "width": 6.0000, "height": 10.0000, - "wall": 0.5000 + "wall": 0.5000, + "type": "Steel", + "grade": "A500 GR B", + "size": "6\u0022 x 10\u0022 x 1/2\u0022 wall", + "stockItems": [ + { + "lengthInches": 576.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "2560511", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 10 X 6 X 1/2 X 48" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 576.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "2560511", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 10 X 6 X 1/2 X 48" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "6\" x 1' 0\" x 1/2\" wall", - "dimensions": { + { "width": 6.0000, "height": 12.0000, - "wall": 0.5000 + "wall": 0.5000, + "type": "Steel", + "grade": "A500 GR B", + "size": "6\u0022 x 1\u0027 0\u0022 x 1/2\u0022 wall", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "825555", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 12 X 6 X 1/2 X 40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "825555", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 12 X 6 X 1/2 X 40" - } - ] - } - ] - }, - { - "shape": "RectangularTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "8\" x 10\" x 1/4\" wall", - "dimensions": { + { "width": 8.0000, "height": 10.0000, - "wall": 0.2500 + "wall": 0.2500, + "type": "Steel", + "grade": "A500 GR B", + "size": "8\u0022 x 10\u0022 x 1/4\u0022 wall", + "stockItems": [ + { + "lengthInches": 576.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "18439559", + "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 10 X8 X1/4 X48" + } + ] + } + ] + } + ], + "roundBars": [ + { + "diameter": 0.2500, + "type": "Steel", + "grade": "1008", + "size": "1/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "83443", + "supplierDescription": "ROUND BAR - HOT ROLL - 1008/20 - 1/4 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 576.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "18439559", - "supplierDescription": "RECTANGULAR TUBE - HREW - HOT ROLL - A500 GR B - 10 X8 X1/4 X48" - } - ] - } - ] - }, - { - "shape": "RoundBar", - "type": "Steel", - "grade": "1008", - "size": "1/4\"", - "dimensions": { - "diameter": 0.2500 + { + "diameter": 0.3125, + "type": "Steel", + "size": "5/16\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "834486", + "supplierDescription": "ROUND BAR - HOT ROLL - 1008/20 - 5/16 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "83443", - "supplierDescription": "ROUND BAR - HOT ROLL - 1008/20 - 1/4 X20" - } - ] - } - ] - }, - { - "shape": "RoundBar", - "type": "Steel", - "size": "5/16\"", - "dimensions": { - "diameter": 0.3125 + { + "diameter": 0.3750, + "type": "Steel", + "size": "3/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "834523", + "supplierDescription": "ROUND BAR - HOT ROLL - 1008/20 - 3/8 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "834486", - "supplierDescription": "ROUND BAR - HOT ROLL - 1008/20 - 5/16 X20" - } - ] - } - ] - }, - { - "shape": "RoundBar", - "type": "Steel", - "size": "3/8\"", - "dimensions": { - "diameter": 0.3750 + { + "diameter": 0.4375, + "type": "Steel", + "grade": "A36", + "size": "7/16\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "1846669", + "supplierDescription": "ROUND BAR - HOT ROLL - A36 - 7/16 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "834523", - "supplierDescription": "ROUND BAR - HOT ROLL - 1008/20 - 3/8 X20" - } - ] - } - ] - }, - { - "shape": "RoundBar", - "type": "Steel", - "grade": "A36", - "size": "7/16\"", - "dimensions": { - "diameter": 0.4375 + { + "diameter": 0.5000, + "type": "Steel", + "grade": "A36/A529G50", + "size": "1/2\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "834574", + "supplierDescription": "ROUND BAR - HOT ROLL - A36/A529G50 - 1/2 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "1846669", - "supplierDescription": "ROUND BAR - HOT ROLL - A36 - 7/16 X20" - } - ] - } - ] - }, - { - "shape": "RoundBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "1/2\"", - "dimensions": { - "diameter": 0.5000 + { + "diameter": 0.5625, + "type": "Steel", + "grade": "A36/A529G50", + "size": "9/16\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "83420", + "supplierDescription": "ROUND BAR - HOT ROLL - A36/A529G50 - 9/16 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "834574", - "supplierDescription": "ROUND BAR - HOT ROLL - A36/A529G50 - 1/2 X20" - } - ] - } - ] - }, - { - "shape": "RoundBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "9/16\"", - "dimensions": { - "diameter": 0.5625 + { + "diameter": 0.6250, + "type": "Steel", + "grade": "A36/A529G50", + "size": "5/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "83446", + "supplierDescription": "ROUND BAR - HOT ROLL - A36/A529G50 - 5/8 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "83420", - "supplierDescription": "ROUND BAR - HOT ROLL - A36/A529G50 - 9/16 X20" - } - ] - } - ] - }, - { - "shape": "RoundBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "5/8\"", - "dimensions": { - "diameter": 0.6250 + { + "diameter": 0.6875, + "type": "Steel", + "grade": "A36/A529G50", + "size": "11/16\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "824697", + "supplierDescription": "ROUND BAR - HOT ROLL - A36/A529G50 - 11/16 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "83446", - "supplierDescription": "ROUND BAR - HOT ROLL - A36/A529G50 - 5/8 X20" - } - ] - } - ] - }, - { - "shape": "RoundBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "11/16\"", - "dimensions": { - "diameter": 0.6875 + { + "diameter": 0.7500, + "type": "Steel", + "grade": "A36/A529G50", + "size": "3/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "834718", + "supplierDescription": "ROUND BAR - HOT ROLL - A36/A529G50 - 3/4 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "824697", - "supplierDescription": "ROUND BAR - HOT ROLL - A36/A529G50 - 11/16 X20" - } - ] - } - ] - }, - { - "shape": "RoundBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "3/4\"", - "dimensions": { - "diameter": 0.7500 + { + "diameter": 0.8750, + "type": "Steel", + "grade": "A36/A529G50", + "size": "7/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "834806", + "supplierDescription": "ROUND BAR - HOT ROLL - A36/A529G50 - 7/8 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "834718", - "supplierDescription": "ROUND BAR - HOT ROLL - A36/A529G50 - 3/4 X20" - } - ] - } - ] - }, - { - "shape": "RoundBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "7/8\"", - "dimensions": { - "diameter": 0.8750 + { + "diameter": 1.0000, + "type": "Steel", + "grade": "A36/A529G50", + "size": "1\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "834857", + "supplierDescription": "ROUND BAR - HOT ROLL - A36/A529G50 - 1 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "834806", - "supplierDescription": "ROUND BAR - HOT ROLL - A36/A529G50 - 7/8 X20" - } - ] - } - ] - }, - { - "shape": "RoundBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "1\"", - "dimensions": { - "diameter": 1.0000 + { + "diameter": 1.1250, + "type": "Steel", + "grade": "A36/A529G50", + "size": "1-1/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "834977", + "supplierDescription": "ROUND BAR - HOT ROLL - A36/A529G50 - 1 1/8\u0022 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "834857", - "supplierDescription": "ROUND BAR - HOT ROLL - A36/A529G50 - 1 X20" - } - ] - } - ] - }, - { - "shape": "RoundBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "1-1/8\"", - "dimensions": { - "diameter": 1.1250 + { + "diameter": 1.2500, + "type": "Steel", + "grade": "A36/A529G50", + "size": "1-1/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "835008", + "supplierDescription": "ROUND BAR - HOT ROLL - A36/A529G50 - 1 1/4\u0022 X20" + } + ] + }, + { + "lengthInches": 241.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "835024", + "supplierDescription": "ROUND BAR - HOT ROLL - A572GR50 - MACHINE STRAIGHTENED - 1-1/4 X20FT1" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "834977", - "supplierDescription": "ROUND BAR - HOT ROLL - A36/A529G50 - 1 1/8\" X20" - } - ] - } - ] - }, - { - "shape": "RoundBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "1-1/4\"", - "dimensions": { - "diameter": 1.2500 + { + "diameter": 1.3750, + "type": "Steel", + "grade": "A36/A529G50", + "size": "1-3/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "835112", + "supplierDescription": "ROUND BAR - HOT ROLL - A36/A529G50 - 1-3/8 X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "835008", - "supplierDescription": "ROUND BAR - HOT ROLL - A36/A529G50 - 1 1/4\" X20" - } - ] - }, - { - "lengthInches": 241.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "835024", - "supplierDescription": "ROUND BAR - HOT ROLL - A572GR50 - MACHINE STRAIGHTENED - 1-1/4 X20FT1" - } - ] - } - ] - }, - { - "shape": "RoundBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "1-3/8\"", - "dimensions": { - "diameter": 1.3750 + { + "diameter": 1.5000, + "type": "Steel", + "grade": "A36/A529G50", + "size": "1-1/2\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "835190", + "supplierDescription": "ROUND BAR - HOT ROLL - A36/A529G50 - 1-1/2 X20" + } + ] + }, + { + "lengthInches": 241.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "835201", + "supplierDescription": "ROUND BAR - HOT ROLL - A572GR50 - MACHINE STRAIGHTENED - 1-1/2 X20FT1" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "835112", - "supplierDescription": "ROUND BAR - HOT ROLL - A36/A529G50 - 1-3/8 X20" - } - ] - } - ] - }, - { - "shape": "RoundBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "1-1/2\"", - "dimensions": { - "diameter": 1.5000 + { + "diameter": 1.7500, + "type": "Steel", + "grade": "A36/A529G50", + "size": "1-3/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "835331", + "supplierDescription": "ROUND BAR - HOT ROLL - A36/A529G50 - 1-3/4 X20" + } + ] + }, + { + "lengthInches": 241.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "835358", + "supplierDescription": "ROUND BAR - HOT ROLL - A572GR50 - MACHINE STRAIGHTENED - 1-3/4 X20FT1" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "835190", - "supplierDescription": "ROUND BAR - HOT ROLL - A36/A529G50 - 1-1/2 X20" - } - ] - }, - { - "lengthInches": 241.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "835201", - "supplierDescription": "ROUND BAR - HOT ROLL - A572GR50 - MACHINE STRAIGHTENED - 1-1/2 X20FT1" - } - ] - } - ] - }, - { - "shape": "RoundBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "1-3/4\"", - "dimensions": { - "diameter": 1.7500 + { + "diameter": 2.0000, + "type": "Steel", + "grade": "A572GR50", + "size": "2\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "835499", + "supplierDescription": "ROUND BAR - HOT ROLL - A36/A52950 - 2 X 20" + } + ] + }, + { + "lengthInches": 241.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "2929214", + "supplierDescription": "ROUND BAR - HOT ROLL - A572GR50 - STRAIGHTENED - 2 X 20FT1" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "835331", - "supplierDescription": "ROUND BAR - HOT ROLL - A36/A529G50 - 1-3/4 X20" - } - ] - }, - { - "lengthInches": 241.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "835358", - "supplierDescription": "ROUND BAR - HOT ROLL - A572GR50 - MACHINE STRAIGHTENED - 1-3/4 X20FT1" - } - ] - } - ] - }, - { - "shape": "RoundBar", - "type": "Steel", - "grade": "A572GR50", - "size": "2\"", - "dimensions": { - "diameter": 2.0000 + { + "diameter": 2.2500, + "type": "Steel", + "grade": "A572GR50", + "size": "2-1/4\u0022", + "stockItems": [ + { + "lengthInches": 241.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "835657", + "supplierDescription": "ROUND BAR - HOT ROLL - A572GR50 - MACHINE STRAIGHTENED - 2-1/4 X 20FT1" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "835499", - "supplierDescription": "ROUND BAR - HOT ROLL - A36/A52950 - 2 X 20" - } - ] - }, - { - "lengthInches": 241.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "2929214", - "supplierDescription": "ROUND BAR - HOT ROLL - A572GR50 - STRAIGHTENED - 2 X 20FT1" - } - ] - } - ] - }, - { - "shape": "RoundBar", - "type": "Steel", - "grade": "A572GR50", - "size": "2-1/4\"", - "dimensions": { - "diameter": 2.2500 + { + "diameter": 2.5000, + "type": "Steel", + "grade": "A36/A52950", + "size": "2-1/2\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "835833", + "supplierDescription": "ROUND BAR - HOT ROLL - A36/A52950 - 2-1/2 X 20" + } + ] + }, + { + "lengthInches": 241.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "835850", + "supplierDescription": "ROUND BAR - HOT ROLL - A572GR50 - MACHINE STRAIGHTENED - 2-1/2 X 20FT1" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 241.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "835657", - "supplierDescription": "ROUND BAR - HOT ROLL - A572GR50 - MACHINE STRAIGHTENED - 2-1/4 X 20FT1" - } - ] - } - ] - }, - { - "shape": "RoundBar", - "type": "Steel", - "grade": "A36/A52950", - "size": "2-1/2\"", - "dimensions": { - "diameter": 2.5000 + { + "diameter": 2.7500, + "type": "Steel", + "grade": "A572GR50", + "size": "2-3/4\u0022", + "stockItems": [ + { + "lengthInches": 241.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "836025", + "supplierDescription": "ROUND BAR - HOT ROLL - A572GR50 - MACHINE STRAIGHTENED - 2-3/4 X 20FT1" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "835833", - "supplierDescription": "ROUND BAR - HOT ROLL - A36/A52950 - 2-1/2 X 20" - } - ] - }, - { - "lengthInches": 241.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "835850", - "supplierDescription": "ROUND BAR - HOT ROLL - A572GR50 - MACHINE STRAIGHTENED - 2-1/2 X 20FT1" - } - ] - } - ] - }, - { - "shape": "RoundBar", - "type": "Steel", - "grade": "A572GR50", - "size": "2-3/4\"", - "dimensions": { - "diameter": 2.7500 + { + "diameter": 3.0000, + "type": "Steel", + "grade": "A36/A52950", + "size": "3\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "836299", + "supplierDescription": "ROUND BAR - HOT ROLL - A36/A52950 - 3 X 20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 241.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "836025", - "supplierDescription": "ROUND BAR - HOT ROLL - A572GR50 - MACHINE STRAIGHTENED - 2-3/4 X 20FT1" - } - ] - } - ] - }, - { - "shape": "RoundBar", - "type": "Steel", - "grade": "A36/A52950", - "size": "3\"", - "dimensions": { - "diameter": 3.0000 + { + "diameter": 3.2500, + "type": "Steel", + "grade": "A572GR50", + "size": "3-1/4\u0022", + "stockItems": [ + { + "lengthInches": 241.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "836473", + "supplierDescription": "ROUND BAR - HOT ROLL - A572GR50 - MACHINE STRAIGHTENED - 3-1/4 X 20FT1" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "836299", - "supplierDescription": "ROUND BAR - HOT ROLL - A36/A52950 - 3 X 20" - } - ] - } - ] - }, - { - "shape": "RoundBar", - "type": "Steel", - "grade": "A572GR50", - "size": "3-1/4\"", - "dimensions": { - "diameter": 3.2500 + { + "diameter": 3.5000, + "type": "Steel", + "grade": "A572GR50", + "size": "3-1/2\u0022", + "stockItems": [ + { + "lengthInches": 241.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "836641", + "supplierDescription": "ROUND BAR - HOT ROLL - A572GR50 - MACHINE STRAIGHTENED - 3-1/2 X 20FT1" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 241.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "836473", - "supplierDescription": "ROUND BAR - HOT ROLL - A572GR50 - MACHINE STRAIGHTENED - 3-1/4 X 20FT1" - } - ] - } - ] - }, - { - "shape": "RoundBar", - "type": "Steel", - "grade": "A572GR50", - "size": "3-1/2\"", - "dimensions": { - "diameter": 3.5000 + { + "diameter": 3.7500, + "type": "Steel", + "grade": "A572GR50", + "size": "3-3/4\u0022", + "stockItems": [ + { + "lengthInches": 241.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "836810", + "supplierDescription": "ROUND BAR - HOT ROLL - A572GR50 - MACHINE STRAIGHTENED - 3-3/4 X 20FT1" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 241.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "836641", - "supplierDescription": "ROUND BAR - HOT ROLL - A572GR50 - MACHINE STRAIGHTENED - 3-1/2 X 20FT1" - } - ] - } - ] - }, - { - "shape": "RoundBar", - "type": "Steel", - "grade": "A572GR50", - "size": "3-3/4\"", - "dimensions": { - "diameter": 3.7500 + { + "diameter": 4.0000, + "type": "Steel", + "grade": "A572GR50", + "size": "4\u0022", + "stockItems": [ + { + "lengthInches": 241.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "836983", + "supplierDescription": "ROUND BAR - HOT ROLL - A572GR50 - MACHINE STRAIGHTENED - 4 X20FT1" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 241.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "836810", - "supplierDescription": "ROUND BAR - HOT ROLL - A572GR50 - MACHINE STRAIGHTENED - 3-3/4 X 20FT1" - } - ] - } - ] - }, - { - "shape": "RoundBar", - "type": "Steel", - "grade": "A572GR50", - "size": "4\"", - "dimensions": { - "diameter": 4.0000 + { + "diameter": 4.2500, + "type": "Steel", + "grade": "A572GR50", + "size": "4-1/4\u0022", + "stockItems": [ + { + "lengthInches": 241.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "18343001", + "supplierDescription": "ROUND BAR - HOT ROLL - A572GR50 - STRAIGHTENED - 4-1/4 X20FT1" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 241.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "836983", - "supplierDescription": "ROUND BAR - HOT ROLL - A572GR50 - MACHINE STRAIGHTENED - 4 X20FT1" - } - ] - } - ] - }, - { - "shape": "RoundBar", - "type": "Steel", - "grade": "A572GR50", - "size": "4-1/4\"", - "dimensions": { - "diameter": 4.2500 + { + "diameter": 4.5000, + "type": "Steel", + "grade": "A572GR50", + "size": "4-1/2\u0022", + "stockItems": [ + { + "lengthInches": 241.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "18343010", + "supplierDescription": "ROUND BAR - HOT ROLL - A572GR50 - STRAIGHTENED - 4-1/2 X20FT1" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 241.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "18343001", - "supplierDescription": "ROUND BAR - HOT ROLL - A572GR50 - STRAIGHTENED - 4-1/4 X20FT1" - } - ] - } - ] - }, - { - "shape": "RoundBar", - "type": "Steel", - "grade": "A572GR50", - "size": "4-1/2\"", - "dimensions": { - "diameter": 4.5000 + { + "diameter": 4.7500, + "type": "Steel", + "grade": "A572GR50", + "size": "4-3/4\u0022", + "stockItems": [ + { + "lengthInches": 241.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "18343036", + "supplierDescription": "ROUND BAR - HOT ROLL - A572GR50 - STRAIGHTENED - 4-3/4 X20FT1" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 241.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "18343010", - "supplierDescription": "ROUND BAR - HOT ROLL - A572GR50 - STRAIGHTENED - 4-1/2 X20FT1" - } - ] - } - ] - }, - { - "shape": "RoundBar", - "type": "Steel", - "grade": "A572GR50", - "size": "4-3/4\"", - "dimensions": { - "diameter": 4.7500 + { + "diameter": 5.0000, + "type": "Steel", + "grade": "A572GR50", + "size": "5\u0022", + "stockItems": [ + { + "lengthInches": 241.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "943586", + "supplierDescription": "ROUND BAR - HOT ROLL - A572GR50 - MACHINE STRAIGHTENED - 5 X20FT1" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 241.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "18343036", - "supplierDescription": "ROUND BAR - HOT ROLL - A572GR50 - STRAIGHTENED - 4-3/4 X20FT1" - } - ] - } - ] - }, - { - "shape": "RoundBar", - "type": "Steel", - "grade": "A572GR50", - "size": "5\"", - "dimensions": { - "diameter": 5.0000 - }, - "stockItems": [ - { - "lengthInches": 241.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "943586", - "supplierDescription": "ROUND BAR - HOT ROLL - A572GR50 - MACHINE STRAIGHTENED - 5 X20FT1" - } - ] - } - ] - }, - { - "shape": "RoundBar", - "type": "Steel", - "grade": "A572GR50", - "size": "5-1/2\"", - "dimensions": { - "diameter": 5.5000 - }, - "stockItems": [ - { - "lengthInches": 241.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "18741974", - "supplierDescription": "ROUND BAR - HOT ROLL - A572GR50 - MACHINE STRAIGHTENED - 5-1/2 X20FT1" - } - ] - } - ] - }, - { - "shape": "RoundTube", - "type": "Steel", - "size": "5/8\" OD x 1/16\" wall", - "dimensions": { + { + "diameter": 5.5000, + "type": "Steel", + "grade": "A572GR50", + "size": "5-1/2\u0022", + "stockItems": [ + { + "lengthInches": 241.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "18741974", + "supplierDescription": "ROUND BAR - HOT ROLL - A572GR50 - MACHINE STRAIGHTENED - 5-1/2 X20FT1" + } + ] + } + ] + } + ], + "roundTubes": [ + { "outerDiameter": 0.6250, - "wall": 0.1200 - }, - "stockItems": [] - }, - { - "shape": "RoundTube", - "type": "Steel", - "grade": "AS13 TY 1", - "size": "3/4\" OD x 0\" wall", - "dimensions": { - "outerDiameter": 0.7500, - "wall": 0.0598 - }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "849055", - "supplierDescription": "ROUND TUBE - HREW - HOT ROLL - AS13 TY 1 - 3/4OD X16GA X20" - } - ] - } - ] - }, - { - "shape": "RoundTube", - "type": "Steel", - "grade": "", - "size": "1\" OD x 1/16\" wall", - "dimensions": { - "outerDiameter": 1.0000, - "wall": 0.1200 - }, - "stockItems": [] - }, - { - "shape": "RoundTube", - "type": "Steel", - "grade": "AS13 TY 1", - "size": "1\" OD x 0\" wall", - "dimensions": { - "outerDiameter": 1.0000, - "wall": 0.0598 - }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "849573", - "supplierDescription": "ROUND TUBE - HREW - HOT ROLL - AS13 TY 1 - 1OD X16GA X20" - } - ] - } - ] - }, - { - "shape": "RoundTube", - "type": "Steel", - "grade": "AS13 TY 1", - "size": "1-1/4\" OD x 0\" wall", - "dimensions": { - "outerDiameter": 1.2500, - "wall": 0.0598 - }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "850081", - "supplierDescription": "ROUND TUBE - HREW - HOT ROLL - AS13 TY 1 - 1-1/4OD X16GA X20" - } - ] - } - ] - }, - { - "shape": "RoundTube", - "type": "Steel", - "grade": "AS13 TY 1", - "size": "1-1/4\" OD x 1/16\" wall", - "dimensions": { - "outerDiameter": 1.2500, - "wall": 0.0747 - }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "850110", - "supplierDescription": "ROUND TUBE - HREW - HOT ROLL - AS13 TY 1 - 1-1/4OD X14GA X20" - } - ] - } - ] - }, - { - "shape": "RoundTube", - "type": "Steel", - "grade": "A513 TY 1", - "size": "1-1/2\" OD x 0\" wall", - "dimensions": { - "outerDiameter": 1.5000, - "wall": 0.0598 - }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "850283", - "supplierDescription": "ROUND TUBE - HREW - HOT ROLL - A513 TY 1 - 1-1/2OD X16GA X20" - } - ] - } - ] - }, - { - "shape": "RoundTube", - "type": "Steel", - "grade": "A513 TY 1", - "size": "1-1/2\" OD x 1/16\" wall", - "dimensions": { - "outerDiameter": 1.5000, - "wall": 0.0747 - }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "850304", - "supplierDescription": "ROUND TUBE - HREW - HOT ROLL - A513 TY 1 - 1-1/2OD X14GA X20" - } - ] - } - ] - }, - { - "shape": "RoundTube", - "type": "Steel", - "grade": "", - "size": "1-9/16\" OD x 1/4\" wall", - "dimensions": { - "outerDiameter": 1.5900, - "wall": 0.2930 - }, - "stockItems": [] - }, - { - "shape": "RoundTube", - "type": "Steel", - "grade": "A513 TY 1", - "size": "1-3/4\" OD x 1/16\" wall", - "dimensions": { - "outerDiameter": 1.7500, - "wall": 0.1196 - }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "850523", - "supplierDescription": "ROUND TUBE - HREW - HOT ROLL - A513 TY 1 - 1-3/4OD X11GA X20" - } - ] - } - ] - }, - { - "shape": "RoundTube", - "type": "Steel", - "grade": "A513 TY 1", - "size": "2\" OD x 0\" wall", - "dimensions": { - "outerDiameter": 2.0000, - "wall": 0.0598 - }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "850620", - "supplierDescription": "ROUND TUBE - HREW - HOT ROLL - A513 TY 1 - 2OD X16GA X20" - } - ] - } - ] - }, - { - "shape": "RoundTube", - "type": "Steel", - "grade": "A513 TY 1", - "size": "2\" OD x 1/16\" wall", - "dimensions": { - "outerDiameter": 2.0000, - "wall": 0.0747 - }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "850662", - "supplierDescription": "ROUND TUBE - HREW - HOT ROLL - A513 TY 1 - 2OD X14GA X20" - } - ] - } - ] - }, - { - "shape": "RoundTube", - "type": "Steel", - "size": "2-1/2\" OD x 1/2\" wall", - "dimensions": { - "outerDiameter": 2.5000, - "wall": 0.5000 - }, - "stockItems": [] - }, - { - "shape": "RoundTube", - "type": "Steel", - "grade": "A513 TY 1", - "size": "3\" OD x 1/16\" wall", - "dimensions": { - "outerDiameter": 3.0000, - "wall": 0.1196 - }, - "stockItems": [ - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "850996", - "supplierDescription": "ROUND TUBE - HREW - HOT ROLL - A513 TY 1 - 3OD X11GA X24" - } - ] - } - ] - }, - { - "shape": "RoundTube", - "type": "Steel", - "grade": "A513 TY 1", - "size": "4\" OD x 1/16\" wall", - "dimensions": { - "outerDiameter": 4.0000, - "wall": 0.1196 - }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "851163", - "supplierDescription": "ROUND TUBE - HREW - HOT ROLL - A513 TY 1 - 4OD X11GA X20" - } - ] - } - ] - }, - { - "shape": "RoundTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "6\" OD x 1/16\" wall", - "dimensions": { - "outerDiameter": 6.0000, - "wall": 0.1196 - }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "19222181", - "supplierDescription": "ROUND TUBE - HREW - HOT ROLL - A500 GR B - 6 OD X11GA X20" - } - ] - } - ] - }, - { - "shape": "SquareBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "1/2\"", - "dimensions": { - "size": 0.5000 - }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "870014", - "supplierDescription": "SQUARE BAR - HOT ROLL - A36/A529G50 - 1/2 X20" - } - ] - } - ] - }, - { - "shape": "SquareBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "5/8\"", - "dimensions": { - "size": 0.6250 - }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "870057", - "supplierDescription": "SQUARE BAR - HOT ROLL - A36/A529G50 - 5/8 X20" - } - ] - } - ] - }, - { - "shape": "SquareBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "3/4\"", - "dimensions": { - "size": 0.7500 - }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "870188", - "supplierDescription": "SQUARE BAR - HOT ROLL - A36/A529G50 - 3/4 X20" - } - ] - } - ] - }, - { - "shape": "SquareBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "7/8\"", - "dimensions": { - "size": 0.8750 - }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "870196", - "supplierDescription": "SQUARE BAR - HOT ROLL - A36/A529G50 - 7/8 X20" - } - ] - } - ] - }, - { - "shape": "SquareBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "1\"", - "dimensions": { - "size": 1.0000 - }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "870225", - "supplierDescription": "SQUARE BAR - HOT ROLL - A36/A529G50 - 1 X20" - } - ] - } - ] - }, - { - "shape": "SquareBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "1-1/4\"", - "dimensions": { - "size": 1.2500 - }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "870250", - "supplierDescription": "SQUARE BAR - HOT ROLL - A36/A529G50 - 1-1/4 X20" - } - ] - } - ] - }, - { - "shape": "SquareBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "1-1/2\"", - "dimensions": { - "size": 1.5000 - }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "870276", - "supplierDescription": "SQUARE BAR - HOT ROLL - A36/A529G50 - 1-1/2 X20" - } - ] - } - ] - }, - { - "shape": "SquareBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "1-3/4\"", - "dimensions": { - "size": 1.7500 - }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "870284", - "supplierDescription": "SQUARE BAR - HOT ROLL - A36/A529G50 - 1-3/4 X20" - } - ] - } - ] - }, - { - "shape": "SquareBar", - "type": "Steel", - "grade": "A36/A529G50", - "size": "2\"", - "dimensions": { - "size": 2.0000 - }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "870292", - "supplierDescription": "SQUARE BAR - HOT ROLL - A36/A529G50 - 2 X20" - } - ] - } - ] - }, - { - "shape": "SquareBar", - "type": "Steel", - "grade": "A36", - "size": "2-1/2\"", - "dimensions": { - "size": 2.5000 - }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "18466781", - "supplierDescription": "SQUARE BAR - HOT ROLL - A36 - 2-1/2 X20" - } - ] - } - ] - }, - { - "shape": "SquareBar", - "type": "Steel", - "grade": "A36", - "size": "3\"", - "dimensions": { - "size": 3.0000 - }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "19320637", - "supplierDescription": "SQUARE BAR - HOT ROLL - A36 - 3 X20" - } - ] - } - ] - }, - { - "shape": "SquareTube", - "type": "Steel", - "grade": "A513 TY I", - "size": "1/2\" x 0\" wall", - "dimensions": { - "wall": 0.0598, - "size": 0.5000 - }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "871586", - "supplierDescription": "SQUARE TUBE - HRW - HOT ROLL - A513 TY I - 1/2 X 1/2 X 20" - } - ] - }, - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "871594", - "supplierDescription": "SQUARE TUBE - HRW - HOT ROLL - A513 TY I - 1/2 X 1/2 X 24" - } - ] - } - ] - }, - { - "shape": "SquareTube", - "type": "Steel", - "grade": "A513 TY I", - "size": "3/4\" x 1/16\" wall", - "dimensions": { - "wall": 0.1196, - "size": 0.7500 - }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "871771", - "supplierDescription": "SQUARE TUBE - HRW - HOT ROLL - A513 TY I - 3/4 X 3/4 X 20" - } - ] - }, - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "13995502", - "supplierDescription": "SQUARE TUBE - HRW - HOT ROLL - A513 TY I - 3/4 X 3/4 X 24" - } - ] - } - ] - }, - { - "shape": "SquareTube", - "type": "Steel", - "grade": "A513 TY I", - "size": "3/4\" x 0\" wall", - "dimensions": { - "wall": 0.0598, - "size": 0.7500 - }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "871658", - "supplierDescription": "SQUARE TUBE - HRW - HOT ROLL - A513 TY I - 3/4 X 3/4 X 20" - } - ] - }, - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "871674", - "supplierDescription": "SQUARE TUBE - HRW - HOT ROLL - A513 TY I - 3/4 X 3/4 X 24" - } - ] - } - ] - }, - { - "shape": "SquareTube", - "type": "Steel", - "grade": "A513 TY I", - "size": "1\" x 0\" wall", - "dimensions": { - "wall": 0.0598, - "size": 1.0000 - }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "871826", - "supplierDescription": "SQUARE TUBE - HRW - HOT ROLL - A513 TY I - 1 X 1 X 20" - } - ] - }, - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "871869", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A513 TY 1 - 1 X16GA X24" - } - ] - } - ] - }, - { - "shape": "SquareTube", - "type": "Steel", - "size": "1\" x 1/16\" wall", - "dimensions": { - "wall": 0.0673, - "size": 1.0000 - }, - "stockItems": [ - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "871885", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - 1008/10 - 1 X15GA X24" - } - ] - } - ] - }, - { - "shape": "SquareTube", - "type": "Steel", - "grade": "A513 TY 1", - "size": "1-1/4\" x 1/16\" wall", - "dimensions": { - "wall": 0.1196, - "size": 1.2500 - }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "871076", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A513 TY 1 - 1-1/4 X11GA X20" - } - ] - }, - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "872263", - "supplierDescription": "SQUARE TUBE - HRW - HOT ROLL - AST13 TY 1 - 1-1/4 X 1-1/4 GA X24" - } - ] - } - ] - }, - { - "shape": "SquareTube", - "type": "Steel", - "grade": "A513 TY 1", - "size": "1-1/4\" x 0\" wall", - "dimensions": { - "wall": 0.0598, - "size": 1.2500 - }, - "stockItems": [ - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "872167", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A513 TY 1 - 1-1/4 X16GA X24" - } - ] - } - ] - }, - { - "shape": "SquareTube", - "type": "Steel", - "grade": "AST13 TY 1", - "size": "1-1/2\" x 0\" wall", - "dimensions": { - "wall": 0.0598, - "size": 1.5000 - }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "872319", - "supplierDescription": "SQUARE TUBE - HRW - HOT ROLL - AST13 TY 1 - 1-1/2 X 1-1/2 X 16GA" - } - ] - } - ] - }, - { - "shape": "SquareTube", - "type": "Steel", - "grade": "AST13 TY 1", - "size": "1-1/2\" x 1/16\" wall", - "dimensions": { - "wall": 0.0747, - "size": 1.5000 - }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "872351", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A513 TY 1 - 1-1/2 X1/2 X1GA X20" - } - ] - }, - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "872327", - "supplierDescription": "SQUARE TUBE - HRW - HOT ROLL - AST13 TY 1 - 1-1/2 X 1-1/2 X 14GA" - } - ] - } - ] - }, - { - "shape": "SquareTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "1-1/2\" x 3/16\" wall", - "dimensions": { - "wall": 0.1875, - "size": 1.5000 - }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "872634", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 1-1/2 X3/16\"X6W X20" - } - ] - }, - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "872651", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 1-1/2 X3/16\"X6W X24" - } - ] - } - ] - }, - { - "shape": "SquareTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "1-1/2\" x 1/4\" wall", - "dimensions": { - "wall": 0.2500, - "size": 1.5000 - }, - "stockItems": [ - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "872706", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 1-1/2 X1/4\"X4W X24" - } - ] - } - ] - }, - { - "shape": "SquareTube", - "type": "Steel", - "grade": "A513 TY 1", - "size": "1-3/4\" x 1/16\" wall", - "dimensions": { "wall": 0.1200, - "size": 1.7500 + "type": "Steel", + "size": "5/8\u0022 OD x 1/16\u0022 wall", + "stockItems": [] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "1993351", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A513 TY 1 - 1-3/4 X1/2 X1GA X20" - } - ] - } - ] - }, - { - "shape": "SquareTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "2\" x 1/16\" wall", - "dimensions": { - "wall": 0.1196, - "size": 2.0000 - }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "2072121", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 2 X 11GA X 20" - } - ] - }, - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "15367577", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 2 X 11GA X 24" - } - ] - } - ] - }, - { - "shape": "SquareTube", - "type": "Steel", - "grade": "A513 TY 1", - "size": "2\" x 0\" wall", - "dimensions": { + { + "outerDiameter": 0.7500, "wall": 0.0598, - "size": 2.0000 + "type": "Steel", + "grade": "AS13 TY 1", + "size": "3/4\u0022 OD x 0\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "849055", + "supplierDescription": "ROUND TUBE - HREW - HOT ROLL - AS13 TY 1 - 3/4OD X16GA X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "872781", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A513 TY 1 - 2 X 16GA X20" - } - ] - } - ] - }, - { - "shape": "SquareTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "2\" x 3/16\" wall", - "dimensions": { - "wall": 0.1875, - "size": 2.0000 + { + "outerDiameter": 1.0000, + "wall": 0.1200, + "type": "Steel", + "grade": "", + "size": "1\u0022 OD x 1/16\u0022 wall", + "stockItems": [] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "873055", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 2 X 3/16W X20" - } - ] - }, - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "873080", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 2 X 3/16W X24" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "873101", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 2 X 3/16W X40" - } - ] - } - ] - }, - { - "shape": "SquareTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "2\" x 1/4\" wall", - "dimensions": { - "wall": 0.2500, - "size": 2.0000 + { + "outerDiameter": 1.0000, + "wall": 0.0598, + "type": "Steel", + "grade": "AS13 TY 1", + "size": "1\u0022 OD x 0\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "849573", + "supplierDescription": "ROUND TUBE - HREW - HOT ROLL - AS13 TY 1 - 1OD X16GA X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "873143", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 2 X 1/4W X20" - } - ] - }, - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "873186", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 2 X 1/4W X24" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "873215", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 2 X1/4W X40" - } - ] - } - ] - }, - { - "shape": "SquareTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "2-1/2\" x 1/16\" wall", - "dimensions": { + { + "outerDiameter": 1.2500, + "wall": 0.0598, + "type": "Steel", + "grade": "AS13 TY 1", + "size": "1-1/4\u0022 OD x 0\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "850081", + "supplierDescription": "ROUND TUBE - HREW - HOT ROLL - AS13 TY 1 - 1-1/4OD X16GA X20" + } + ] + } + ] + }, + { + "outerDiameter": 1.2500, + "wall": 0.0747, + "type": "Steel", + "grade": "AS13 TY 1", + "size": "1-1/4\u0022 OD x 1/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "850110", + "supplierDescription": "ROUND TUBE - HREW - HOT ROLL - AS13 TY 1 - 1-1/4OD X14GA X20" + } + ] + } + ] + }, + { + "outerDiameter": 1.5000, + "wall": 0.0598, + "type": "Steel", + "grade": "A513 TY 1", + "size": "1-1/2\u0022 OD x 0\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "850283", + "supplierDescription": "ROUND TUBE - HREW - HOT ROLL - A513 TY 1 - 1-1/2OD X16GA X20" + } + ] + } + ] + }, + { + "outerDiameter": 1.5000, + "wall": 0.0747, + "type": "Steel", + "grade": "A513 TY 1", + "size": "1-1/2\u0022 OD x 1/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "850304", + "supplierDescription": "ROUND TUBE - HREW - HOT ROLL - A513 TY 1 - 1-1/2OD X14GA X20" + } + ] + } + ] + }, + { + "outerDiameter": 1.5900, + "wall": 0.2930, + "type": "Steel", + "grade": "", + "size": "1-9/16\u0022 OD x 1/4\u0022 wall", + "stockItems": [] + }, + { + "outerDiameter": 1.7500, "wall": 0.1196, - "size": 2.5000 + "type": "Steel", + "grade": "A513 TY 1", + "size": "1-3/4\u0022 OD x 1/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "850523", + "supplierDescription": "ROUND TUBE - HREW - HOT ROLL - A513 TY 1 - 1-3/4OD X11GA X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "873282", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 2-1/2 X11GA X20" - } - ] - }, - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "13269201", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 2-1/2 X11GA X24" - } - ] - } - ] - }, - { - "shape": "SquareTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "2-1/2\" x 3/16\" wall", - "dimensions": { - "wall": 0.1875, - "size": 2.5000 + { + "outerDiameter": 2.0000, + "wall": 0.0598, + "type": "Steel", + "grade": "A513 TY 1", + "size": "2\u0022 OD x 0\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "850620", + "supplierDescription": "ROUND TUBE - HREW - HOT ROLL - A513 TY 1 - 2OD X16GA X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "873311", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 2-1/2 X3/16\" X20" - } - ] - }, - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "873320", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 2-1/2 X3/16\" X24" - } - ] - } - ] - }, - { - "shape": "SquareTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "2-1/2\" x 1/4\" wall", - "dimensions": { - "wall": 0.2500, - "size": 2.5000 + { + "outerDiameter": 2.0000, + "wall": 0.0747, + "type": "Steel", + "grade": "A513 TY 1", + "size": "2\u0022 OD x 1/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "850662", + "supplierDescription": "ROUND TUBE - HREW - HOT ROLL - A513 TY 1 - 2OD X14GA X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "873349", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 2-1/2 X1/4\" X20" - } - ] - }, - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "873358", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 2-1/2 X1/4\" X24" - } - ] - } - ] - }, - { - "shape": "SquareTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "3\" x 1/16\" wall", - "dimensions": { + { + "outerDiameter": 2.5000, + "wall": 0.5000, + "type": "Steel", + "size": "2-1/2\u0022 OD x 1/2\u0022 wall", + "stockItems": [] + }, + { + "outerDiameter": 3.0000, "wall": 0.1196, - "size": 3.0000 + "type": "Steel", + "grade": "A513 TY 1", + "size": "3\u0022 OD x 1/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "850996", + "supplierDescription": "ROUND TUBE - HREW - HOT ROLL - A513 TY 1 - 3OD X11GA X24" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "873477", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 3 X11GAX20" - } - ] - }, - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "873506", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 3 X11GAX24" - } - ] - } - ] - }, - { - "shape": "SquareTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "3\" x 3/16\" wall", - "dimensions": { - "wall": 0.1875, - "size": 3.0000 - }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "873549", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 3 X 3/16X20" - } - ] - }, - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "873555", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 3 X 3/16W X 24" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "873531", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 3 X 3/16W X 40" - } - ] - } - ] - }, - { - "shape": "SquareTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "3\" x 1/4\" wall", - "dimensions": { - "wall": 0.2500, - "size": 3.0000 - }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "873637", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 3 X 1/4W X 20" - } - ] - }, - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "873670", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 3 X 1/4W X 24" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "873688", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 3 X 1/4W X 40" - } - ] - } - ] - }, - { - "shape": "SquareTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "3\" x 3/8\" wall", - "dimensions": { - "wall": 0.3750, - "size": 3.0000 - }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "873733", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 3 X 3/8W X 20" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "873741", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 3 X 3/8W X 40" - } - ] - } - ] - }, - { - "shape": "SquareTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "3\" x 1/2\" wall", - "dimensions": { - "wall": 0.5000, - "size": 3.0000 - }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "873784", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 3 X 1/2W X 20" - } - ] - } - ] - }, - { - "shape": "SquareTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "3-1/2\" x 3/16\" wall", - "dimensions": { - "wall": 0.1875, - "size": 3.5000 - }, - "stockItems": [ - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "873792", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 3-1/2 X3/16W X24" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "873813", - "supplierDescription": "SQUARE TUBE - HRW - HOT ROLL - A500 GR B - 3-1/2 X3/16W X40" - } - ] - } - ] - }, - { - "shape": "SquareTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "3-1/2\" x 1/4\" wall", - "dimensions": { - "wall": 0.2500, - "size": 3.5000 - }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "873848", - "supplierDescription": "SQUARE TUBE - HRW - HOT ROLL - A500 GR B - 3-1/2 X1/4W X20" - } - ] - }, - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "873856", - "supplierDescription": "SQUARE TUBE - HRW - HOT ROLL - A500 GR B - 3-1/2 X1/4W X24" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "873864", - "supplierDescription": "SQUARE TUBE - HRW - HOT ROLL - A500 GR B - 3-1/2 X1/4W X40" - } - ] - } - ] - }, - { - "shape": "SquareTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "3-1/2\" x 5/16\" wall", - "dimensions": { - "wall": 0.3125, - "size": 3.5000 - }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "873881", - "supplierDescription": "SQUARE TUBE - HRW - HOT ROLL - A500 GR B - 3-1/2 X5/16W X40" - } - ] - } - ] - }, - { - "shape": "SquareTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "4\" x 1/16\" wall", - "dimensions": { + { + "outerDiameter": 4.0000, "wall": 0.1196, - "size": 4.0000 + "type": "Steel", + "grade": "A513 TY 1", + "size": "4\u0022 OD x 1/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "851163", + "supplierDescription": "ROUND TUBE - HREW - HOT ROLL - A513 TY 1 - 4OD X11GA X20" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "873961", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 4 X 11GA X 20'" - } - ] - }, - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "873987", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 4 X 11GA X 24'" - } - ] - } - ] - }, - { - "shape": "SquareTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "4\" x 3/16\" wall", - "dimensions": { + { + "outerDiameter": 6.0000, + "wall": 0.1196, + "type": "Steel", + "grade": "A500 GR B", + "size": "6\u0022 OD x 1/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "19222181", + "supplierDescription": "ROUND TUBE - HREW - HOT ROLL - A500 GR B - 6 OD X11GA X20" + } + ] + } + ] + } + ], + "squareBars": [ + { + "sideLength": 0.5000, + "type": "Steel", + "grade": "A36/A529G50", + "size": "1/2\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "870014", + "supplierDescription": "SQUARE BAR - HOT ROLL - A36/A529G50 - 1/2 X20" + } + ] + } + ] + }, + { + "sideLength": 0.6250, + "type": "Steel", + "grade": "A36/A529G50", + "size": "5/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "870057", + "supplierDescription": "SQUARE BAR - HOT ROLL - A36/A529G50 - 5/8 X20" + } + ] + } + ] + }, + { + "sideLength": 0.7500, + "type": "Steel", + "grade": "A36/A529G50", + "size": "3/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "870188", + "supplierDescription": "SQUARE BAR - HOT ROLL - A36/A529G50 - 3/4 X20" + } + ] + } + ] + }, + { + "sideLength": 0.8750, + "type": "Steel", + "grade": "A36/A529G50", + "size": "7/8\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "870196", + "supplierDescription": "SQUARE BAR - HOT ROLL - A36/A529G50 - 7/8 X20" + } + ] + } + ] + }, + { + "sideLength": 1.0000, + "type": "Steel", + "grade": "A36/A529G50", + "size": "1\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "870225", + "supplierDescription": "SQUARE BAR - HOT ROLL - A36/A529G50 - 1 X20" + } + ] + } + ] + }, + { + "sideLength": 1.2500, + "type": "Steel", + "grade": "A36/A529G50", + "size": "1-1/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "870250", + "supplierDescription": "SQUARE BAR - HOT ROLL - A36/A529G50 - 1-1/4 X20" + } + ] + } + ] + }, + { + "sideLength": 1.5000, + "type": "Steel", + "grade": "A36/A529G50", + "size": "1-1/2\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "870276", + "supplierDescription": "SQUARE BAR - HOT ROLL - A36/A529G50 - 1-1/2 X20" + } + ] + } + ] + }, + { + "sideLength": 1.7500, + "type": "Steel", + "grade": "A36/A529G50", + "size": "1-3/4\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "870284", + "supplierDescription": "SQUARE BAR - HOT ROLL - A36/A529G50 - 1-3/4 X20" + } + ] + } + ] + }, + { + "sideLength": 2.0000, + "type": "Steel", + "grade": "A36/A529G50", + "size": "2\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "870292", + "supplierDescription": "SQUARE BAR - HOT ROLL - A36/A529G50 - 2 X20" + } + ] + } + ] + }, + { + "sideLength": 2.5000, + "type": "Steel", + "grade": "A36", + "size": "2-1/2\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "18466781", + "supplierDescription": "SQUARE BAR - HOT ROLL - A36 - 2-1/2 X20" + } + ] + } + ] + }, + { + "sideLength": 3.0000, + "type": "Steel", + "grade": "A36", + "size": "3\u0022", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "19320637", + "supplierDescription": "SQUARE BAR - HOT ROLL - A36 - 3 X20" + } + ] + } + ] + } + ], + "squareTubes": [ + { + "sideLength": 0.5000, + "wall": 0.0598, + "type": "Steel", + "grade": "A513 TY I", + "size": "1/2\u0022 x 0\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "871586", + "supplierDescription": "SQUARE TUBE - HRW - HOT ROLL - A513 TY I - 1/2 X 1/2 X 20" + } + ] + }, + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "871594", + "supplierDescription": "SQUARE TUBE - HRW - HOT ROLL - A513 TY I - 1/2 X 1/2 X 24" + } + ] + } + ] + }, + { + "sideLength": 0.7500, + "wall": 0.1196, + "type": "Steel", + "grade": "A513 TY I", + "size": "3/4\u0022 x 1/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "871771", + "supplierDescription": "SQUARE TUBE - HRW - HOT ROLL - A513 TY I - 3/4 X 3/4 X 20" + } + ] + }, + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "13995502", + "supplierDescription": "SQUARE TUBE - HRW - HOT ROLL - A513 TY I - 3/4 X 3/4 X 24" + } + ] + } + ] + }, + { + "sideLength": 0.7500, + "wall": 0.0598, + "type": "Steel", + "grade": "A513 TY I", + "size": "3/4\u0022 x 0\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "871658", + "supplierDescription": "SQUARE TUBE - HRW - HOT ROLL - A513 TY I - 3/4 X 3/4 X 20" + } + ] + }, + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "871674", + "supplierDescription": "SQUARE TUBE - HRW - HOT ROLL - A513 TY I - 3/4 X 3/4 X 24" + } + ] + } + ] + }, + { + "sideLength": 1.0000, + "wall": 0.0598, + "type": "Steel", + "grade": "A513 TY I", + "size": "1\u0022 x 0\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "871826", + "supplierDescription": "SQUARE TUBE - HRW - HOT ROLL - A513 TY I - 1 X 1 X 20" + } + ] + }, + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "871869", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A513 TY 1 - 1 X16GA X24" + } + ] + } + ] + }, + { + "sideLength": 1.0000, + "wall": 0.0673, + "type": "Steel", + "size": "1\u0022 x 1/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "871885", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - 1008/10 - 1 X15GA X24" + } + ] + } + ] + }, + { + "sideLength": 1.2500, + "wall": 0.1196, + "type": "Steel", + "grade": "A513 TY 1", + "size": "1-1/4\u0022 x 1/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "871076", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A513 TY 1 - 1-1/4 X11GA X20" + } + ] + }, + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "872263", + "supplierDescription": "SQUARE TUBE - HRW - HOT ROLL - AST13 TY 1 - 1-1/4 X 1-1/4 GA X24" + } + ] + } + ] + }, + { + "sideLength": 1.2500, + "wall": 0.0598, + "type": "Steel", + "grade": "A513 TY 1", + "size": "1-1/4\u0022 x 0\u0022 wall", + "stockItems": [ + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "872167", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A513 TY 1 - 1-1/4 X16GA X24" + } + ] + } + ] + }, + { + "sideLength": 1.5000, + "wall": 0.0598, + "type": "Steel", + "grade": "AST13 TY 1", + "size": "1-1/2\u0022 x 0\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "872319", + "supplierDescription": "SQUARE TUBE - HRW - HOT ROLL - AST13 TY 1 - 1-1/2 X 1-1/2 X 16GA" + } + ] + } + ] + }, + { + "sideLength": 1.5000, + "wall": 0.0747, + "type": "Steel", + "grade": "AST13 TY 1", + "size": "1-1/2\u0022 x 1/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "872351", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A513 TY 1 - 1-1/2 X1/2 X1GA X20" + } + ] + }, + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "872327", + "supplierDescription": "SQUARE TUBE - HRW - HOT ROLL - AST13 TY 1 - 1-1/2 X 1-1/2 X 14GA" + } + ] + } + ] + }, + { + "sideLength": 1.5000, "wall": 0.1875, - "size": 4.0000 + "type": "Steel", + "grade": "A500 GR B", + "size": "1-1/2\u0022 x 3/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "872634", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 1-1/2 X3/16\u0022X6W X20" + } + ] + }, + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "872651", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 1-1/2 X3/16\u0022X6W X24" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "874111", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 4 X 3/16 X 20'" - } - ] - }, - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "874138", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 4 X 3/16 X 24'" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "874171", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 4 X 3/16W X40" - } - ] - } - ] - }, - { - "shape": "SquareTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "4\" x 1/4\" wall", - "dimensions": { + { + "sideLength": 1.5000, "wall": 0.2500, - "size": 4.0000 + "type": "Steel", + "grade": "A500 GR B", + "size": "1-1/2\u0022 x 1/4\u0022 wall", + "stockItems": [ + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "872706", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 1-1/2 X1/4\u0022X4W X24" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "874242", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 4 X 1/4W X20" - } - ] - }, - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "874251", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 4 X 1/4W X24" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "874277", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 4 X 1/4W X40" - } - ] - } - ] - }, - { - "shape": "SquareTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "4\" x 5/16\" wall", - "dimensions": { + { + "sideLength": 1.7500, + "wall": 0.1200, + "type": "Steel", + "grade": "A513 TY 1", + "size": "1-3/4\u0022 x 1/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "1993351", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A513 TY 1 - 1-3/4 X1/2 X1GA X20" + } + ] + } + ] + }, + { + "sideLength": 2.0000, + "wall": 0.1196, + "type": "Steel", + "grade": "A500 GR B", + "size": "2\u0022 x 1/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "2072121", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 2 X 11GA X 20" + } + ] + }, + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "15367577", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 2 X 11GA X 24" + } + ] + } + ] + }, + { + "sideLength": 2.0000, + "wall": 0.0598, + "type": "Steel", + "grade": "A513 TY 1", + "size": "2\u0022 x 0\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "872781", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A513 TY 1 - 2 X 16GA X20" + } + ] + } + ] + }, + { + "sideLength": 2.0000, + "wall": 0.1875, + "type": "Steel", + "grade": "A500 GR B", + "size": "2\u0022 x 3/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "873055", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 2 X 3/16W X20" + } + ] + }, + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "873080", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 2 X 3/16W X24" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "873101", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 2 X 3/16W X40" + } + ] + } + ] + }, + { + "sideLength": 2.0000, + "wall": 0.2500, + "type": "Steel", + "grade": "A500 GR B", + "size": "2\u0022 x 1/4\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "873143", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 2 X 1/4W X20" + } + ] + }, + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "873186", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 2 X 1/4W X24" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "873215", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 2 X1/4W X40" + } + ] + } + ] + }, + { + "sideLength": 2.5000, + "wall": 0.1196, + "type": "Steel", + "grade": "A500 GR B", + "size": "2-1/2\u0022 x 1/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "873282", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 2-1/2 X11GA X20" + } + ] + }, + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "13269201", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 2-1/2 X11GA X24" + } + ] + } + ] + }, + { + "sideLength": 2.5000, + "wall": 0.1875, + "type": "Steel", + "grade": "A500 GR B", + "size": "2-1/2\u0022 x 3/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "873311", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 2-1/2 X3/16\u0022 X20" + } + ] + }, + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "873320", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 2-1/2 X3/16\u0022 X24" + } + ] + } + ] + }, + { + "sideLength": 2.5000, + "wall": 0.2500, + "type": "Steel", + "grade": "A500 GR B", + "size": "2-1/2\u0022 x 1/4\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "873349", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 2-1/2 X1/4\u0022 X20" + } + ] + }, + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "873358", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 2-1/2 X1/4\u0022 X24" + } + ] + } + ] + }, + { + "sideLength": 3.0000, + "wall": 0.1196, + "type": "Steel", + "grade": "A500 GR B", + "size": "3\u0022 x 1/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "873477", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 3 X11GAX20" + } + ] + }, + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "873506", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 3 X11GAX24" + } + ] + } + ] + }, + { + "sideLength": 3.0000, + "wall": 0.1875, + "type": "Steel", + "grade": "A500 GR B", + "size": "3\u0022 x 3/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "873549", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 3 X 3/16X20" + } + ] + }, + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "873555", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 3 X 3/16W X 24" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "873531", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 3 X 3/16W X 40" + } + ] + } + ] + }, + { + "sideLength": 3.0000, + "wall": 0.2500, + "type": "Steel", + "grade": "A500 GR B", + "size": "3\u0022 x 1/4\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "873637", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 3 X 1/4W X 20" + } + ] + }, + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "873670", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 3 X 1/4W X 24" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "873688", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 3 X 1/4W X 40" + } + ] + } + ] + }, + { + "sideLength": 3.0000, + "wall": 0.3750, + "type": "Steel", + "grade": "A500 GR B", + "size": "3\u0022 x 3/8\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "873733", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 3 X 3/8W X 20" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "873741", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 3 X 3/8W X 40" + } + ] + } + ] + }, + { + "sideLength": 3.0000, + "wall": 0.5000, + "type": "Steel", + "grade": "A500 GR B", + "size": "3\u0022 x 1/2\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "873784", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 3 X 1/2W X 20" + } + ] + } + ] + }, + { + "sideLength": 3.5000, + "wall": 0.1875, + "type": "Steel", + "grade": "A500 GR B", + "size": "3-1/2\u0022 x 3/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "873792", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 3-1/2 X3/16W X24" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "873813", + "supplierDescription": "SQUARE TUBE - HRW - HOT ROLL - A500 GR B - 3-1/2 X3/16W X40" + } + ] + } + ] + }, + { + "sideLength": 3.5000, + "wall": 0.2500, + "type": "Steel", + "grade": "A500 GR B", + "size": "3-1/2\u0022 x 1/4\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "873848", + "supplierDescription": "SQUARE TUBE - HRW - HOT ROLL - A500 GR B - 3-1/2 X1/4W X20" + } + ] + }, + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "873856", + "supplierDescription": "SQUARE TUBE - HRW - HOT ROLL - A500 GR B - 3-1/2 X1/4W X24" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "873864", + "supplierDescription": "SQUARE TUBE - HRW - HOT ROLL - A500 GR B - 3-1/2 X1/4W X40" + } + ] + } + ] + }, + { + "sideLength": 3.5000, "wall": 0.3125, - "size": 4.0000 + "type": "Steel", + "grade": "A500 GR B", + "size": "3-1/2\u0022 x 5/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "873881", + "supplierDescription": "SQUARE TUBE - HRW - HOT ROLL - A500 GR B - 3-1/2 X5/16W X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "874331", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 4 X 5/16W X40" - } - ] - } - ] - }, - { - "shape": "SquareTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "4\" x 3/8\" wall", - "dimensions": { - "wall": 0.3750, - "size": 4.0000 + { + "sideLength": 4.0000, + "wall": 0.1196, + "type": "Steel", + "grade": "A500 GR B", + "size": "4\u0022 x 1/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "873961", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 4 X 11GA X 20\u0027" + } + ] + }, + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "873987", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 4 X 11GA X 24\u0027" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "874355", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 4 X 3/8W X20" - } - ] - }, - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "874381", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 4 X 3/8W X24" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "874402", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 4 X 3/8W X40" - } - ] - }, - { - "lengthInches": 576.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "874411", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 4 X 3/8W X48" - } - ] - } - ] - }, - { - "shape": "SquareTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "4\" x 1/2\" wall", - "dimensions": { - "wall": 0.5000, - "size": 4.0000 + { + "sideLength": 4.0000, + "wall": 0.1875, + "type": "Steel", + "grade": "A500 GR B", + "size": "4\u0022 x 3/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "874111", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 4 X 3/16 X 20\u0027" + } + ] + }, + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "874138", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 4 X 3/16 X 24\u0027" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "874171", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 4 X 3/16W X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "874445", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 4 X 1/2W X40" - } - ] - } - ] - }, - { - "shape": "SquareTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "5\" x 1/4\" wall", - "dimensions": { + { + "sideLength": 4.0000, "wall": 0.2500, - "size": 5.0000 + "type": "Steel", + "grade": "A500 GR B", + "size": "4\u0022 x 1/4\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "874242", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 4 X 1/4W X20" + } + ] + }, + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "874251", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 4 X 1/4W X24" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "874277", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 4 X 1/4W X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "874621", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 5 X 1/4 X 20" - } - ] - }, - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "874630", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 5 X 1/4 X 24" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "874656", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 5 X 1/4 X 40" - } - ] - } - ] - }, - { - "shape": "SquareTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "5\" x 5/16\" wall", - "dimensions": { + { + "sideLength": 4.0000, "wall": 0.3125, - "size": 5.0000 + "type": "Steel", + "grade": "A500 GR B", + "size": "4\u0022 x 5/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "874331", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 4 X 5/16W X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "874699", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 5 X 5 / 16W X40" - } - ] - } - ] - }, - { - "shape": "SquareTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "5\" x 3/8\" wall", - "dimensions": { + { + "sideLength": 4.0000, "wall": 0.3750, - "size": 5.0000 + "type": "Steel", + "grade": "A500 GR B", + "size": "4\u0022 x 3/8\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "874355", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 4 X 3/8W X20" + } + ] + }, + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "874381", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 4 X 3/8W X24" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "874402", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 4 X 3/8W X40" + } + ] + }, + { + "lengthInches": 576.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "874411", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 4 X 3/8W X48" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "874744", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 5 X 3/8W X40" - } - ] - } - ] - }, - { - "shape": "SquareTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "5\" x 1/2\" wall", - "dimensions": { + { + "sideLength": 4.0000, "wall": 0.5000, - "size": 5.0000 + "type": "Steel", + "grade": "A500 GR B", + "size": "4\u0022 x 1/2\u0022 wall", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "874445", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 4 X 1/2W X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "874752", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 5 X 1/2W X40" - } - ] - } - ] - }, - { - "shape": "SquareTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "6\" x 1/4\" wall", - "dimensions": { + { + "sideLength": 5.0000, "wall": 0.2500, - "size": 6.0000 + "type": "Steel", + "grade": "A500 GR B", + "size": "5\u0022 x 1/4\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "874621", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 5 X 1/4 X 20" + } + ] + }, + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "874630", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 5 X 1/4 X 24" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "874656", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 5 X 1/4 X 40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "874841", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 6 X 1/4 X 20" - } - ] - }, - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "874859", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 6 X 1/4 X 24" - } - ] - }, - { - "lengthInches": 445.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "19502422", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 6 X 1/4W X37FT1" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "874883", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 6 X 1/4 X 40" - } - ] - } - ] - }, - { - "shape": "SquareTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "6\" x 1/2\" wall", - "dimensions": { - "wall": 0.5000, - "size": 6.0000 + { + "sideLength": 5.0000, + "wall": 0.3125, + "type": "Steel", + "grade": "A500 GR B", + "size": "5\u0022 x 5/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "874699", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 5 X 5 / 16W X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "2087904", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 6 X 1/2W X20" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "875000", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 6 X 1/2 X 40" - } - ] - } - ] - }, - { - "shape": "SquareTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "6\" x 3/16\" wall", - "dimensions": { - "wall": 0.1875, - "size": 6.0000 - }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "874779", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 6 X 3/16 X 20" - } - ] - }, - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "874787", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 6 X 3/16 X 24" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "874816", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 6 X 3/16 X 40" - } - ] - } - ] - }, - { - "shape": "SquareTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "6\" x 3/8\" wall", - "dimensions": { + { + "sideLength": 5.0000, "wall": 0.3750, - "size": 6.0000 + "type": "Steel", + "grade": "A500 GR B", + "size": "5\u0022 x 3/8\u0022 wall", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "874744", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 5 X 3/8W X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 360.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "874947", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 6 X 3/8 X 30" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "874963", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 6 X 3/8 X 40" - } - ] - } - ] - }, - { - "shape": "SquareTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "7\" x 3/16\" wall", - "dimensions": { - "wall": 0.1875, - "size": 7.0000 - }, - "stockItems": [ - { - "lengthInches": 240.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "16054273", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 7 X3/16W X20" - } - ] - } - ] - }, - { - "shape": "SquareTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "7\" x 1/2\" wall", - "dimensions": { + { + "sideLength": 5.0000, "wall": 0.5000, - "size": 7.0000 + "type": "Steel", + "grade": "A500 GR B", + "size": "5\u0022 x 1/2\u0022 wall", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "874752", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 5 X 1/2W X40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "875173", - "supplierDescription": "SQUARE TUBE - HRW - HOT ROLL - A500 GR B - 7 X 7 X 1/2 X .140" - } - ] - } - ] - }, - { - "shape": "SquareTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "8\" x 3/16\" wall", - "dimensions": { - "wall": 0.1875, - "size": 8.0000 - }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "875237", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 8 X3/8 X8 X40" - } - ] - } - ] - }, - { - "shape": "SquareTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "8\" x 1/4\" wall", - "dimensions": { + { + "sideLength": 6.0000, "wall": 0.2500, - "size": 8.0000 + "type": "Steel", + "grade": "A500 GR B", + "size": "6\u0022 x 1/4\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "874841", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 6 X 1/4 X 20" + } + ] + }, + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "874859", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 6 X 1/4 X 24" + } + ] + }, + { + "lengthInches": 445.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "19502422", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 6 X 1/4W X37FT1" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "874883", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 6 X 1/4 X 40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "875270", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 8 X1/4 X8 X40" - } - ] - }, - { - "lengthInches": 576.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "875288", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 8 X1/4 X8 X48" - } - ] - } - ] - }, - { - "shape": "SquareTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "8\" x 3/8\" wall", - "dimensions": { - "wall": 0.3750, - "size": 8.0000 - }, - "stockItems": [ - { - "lengthInches": 288.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "875317", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 8 X3/8 X8 X24" - } - ] - }, - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "875350", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 8 X3/8 X8 X40" - } - ] - } - ] - }, - { - "shape": "SquareTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "8\" x 1/2\" wall", - "dimensions": { + { + "sideLength": 6.0000, "wall": 0.5000, - "size": 8.0000 + "type": "Steel", + "grade": "A500 GR B", + "size": "6\u0022 x 1/2\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "2087904", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 6 X 1/2W X20" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "875000", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 6 X 1/2 X 40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "875376", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 8 X1/2 X8 X40" - } - ] - } - ] - }, - { - "shape": "SquareTube", - "type": "Steel", - "grade": "A500 GR B", - "size": "1' 0\" x 3/8\" wall", - "dimensions": { + { + "sideLength": 6.0000, + "wall": 0.1875, + "type": "Steel", + "grade": "A500 GR B", + "size": "6\u0022 x 3/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "874779", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 6 X 3/16 X 20" + } + ] + }, + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "874787", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 6 X 3/16 X 24" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "874816", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 6 X 3/16 X 40" + } + ] + } + ] + }, + { + "sideLength": 6.0000, "wall": 0.3750, - "size": 12.0000 + "type": "Steel", + "grade": "A500 GR B", + "size": "6\u0022 x 3/8\u0022 wall", + "stockItems": [ + { + "lengthInches": 360.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "874947", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 6 X 3/8 X 30" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "874963", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 6 X 3/8 X 40" + } + ] + } + ] }, - "stockItems": [ - { - "lengthInches": 480.0000, - "quantityOnHand": 0, - "supplierOfferings": [ - { - "supplierName": "O'Neal Steel", - "partNumber": "875552", - "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 12 X 12 X 3/8 X 40" - } - ] - } - ] - } - ] + { + "sideLength": 7.0000, + "wall": 0.1875, + "type": "Steel", + "grade": "A500 GR B", + "size": "7\u0022 x 3/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 240.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "16054273", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 7 X3/16W X20" + } + ] + } + ] + }, + { + "sideLength": 7.0000, + "wall": 0.5000, + "type": "Steel", + "grade": "A500 GR B", + "size": "7\u0022 x 1/2\u0022 wall", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "875173", + "supplierDescription": "SQUARE TUBE - HRW - HOT ROLL - A500 GR B - 7 X 7 X 1/2 X .140" + } + ] + } + ] + }, + { + "sideLength": 8.0000, + "wall": 0.1875, + "type": "Steel", + "grade": "A500 GR B", + "size": "8\u0022 x 3/16\u0022 wall", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "875237", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 8 X3/8 X8 X40" + } + ] + } + ] + }, + { + "sideLength": 8.0000, + "wall": 0.2500, + "type": "Steel", + "grade": "A500 GR B", + "size": "8\u0022 x 1/4\u0022 wall", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "875270", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 8 X1/4 X8 X40" + } + ] + }, + { + "lengthInches": 576.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "875288", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 8 X1/4 X8 X48" + } + ] + } + ] + }, + { + "sideLength": 8.0000, + "wall": 0.3750, + "type": "Steel", + "grade": "A500 GR B", + "size": "8\u0022 x 3/8\u0022 wall", + "stockItems": [ + { + "lengthInches": 288.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "875317", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 8 X3/8 X8 X24" + } + ] + }, + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "875350", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 8 X3/8 X8 X40" + } + ] + } + ] + }, + { + "sideLength": 8.0000, + "wall": 0.5000, + "type": "Steel", + "grade": "A500 GR B", + "size": "8\u0022 x 1/2\u0022 wall", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "875376", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 8 X1/2 X8 X40" + } + ] + } + ] + }, + { + "sideLength": 12.0000, + "wall": 0.3750, + "type": "Steel", + "grade": "A500 GR B", + "size": "1\u0027 0\u0022 x 3/8\u0022 wall", + "stockItems": [ + { + "lengthInches": 480.0000, + "quantityOnHand": 0, + "supplierOfferings": [ + { + "supplierName": "O\u0027Neal Steel", + "partNumber": "875552", + "supplierDescription": "SQUARE TUBE - HREW - HOT ROLL - A500 GR B - 12 X 12 X 3/8 X 40" + } + ] + } + ] + } + ] + } } \ No newline at end of file diff --git a/CutList.Web/Services/CatalogService.cs b/CutList.Web/Services/CatalogService.cs index fdc45f8..506abe3 100644 --- a/CutList.Web/Services/CatalogService.cs +++ b/CutList.Web/Services/CatalogService.cs @@ -39,6 +39,101 @@ public class CatalogService .AsNoTracking() .ToListAsync(); + var grouped = materials.GroupBy(m => m.Shape); + var materialsDto = new CatalogMaterialsDto(); + + foreach (var group in grouped) + { + foreach (var m in group) + { + var stockItems = MapStockItems(m, suppliers); + + switch (m.Shape) + { + case MaterialShape.Angle when m.Dimensions is AngleDimensions d: + materialsDto.Angles.Add(new CatalogAngleDto + { + Type = m.Type.ToString(), Grade = m.Grade, Size = m.Size, Description = m.Description, + Leg1 = d.Leg1, Leg2 = d.Leg2, Thickness = d.Thickness, + StockItems = stockItems + }); + break; + case MaterialShape.Channel when m.Dimensions is ChannelDimensions d: + materialsDto.Channels.Add(new CatalogChannelDto + { + Type = m.Type.ToString(), Grade = m.Grade, Size = m.Size, Description = m.Description, + Height = d.Height, Flange = d.Flange, Web = d.Web, + StockItems = stockItems + }); + break; + case MaterialShape.FlatBar when m.Dimensions is FlatBarDimensions d: + materialsDto.FlatBars.Add(new CatalogFlatBarDto + { + Type = m.Type.ToString(), Grade = m.Grade, Size = m.Size, Description = m.Description, + Width = d.Width, Thickness = d.Thickness, + StockItems = stockItems + }); + break; + case MaterialShape.IBeam when m.Dimensions is IBeamDimensions d: + materialsDto.IBeams.Add(new CatalogIBeamDto + { + Type = m.Type.ToString(), Grade = m.Grade, Size = m.Size, Description = m.Description, + Height = d.Height, WeightPerFoot = d.WeightPerFoot, + StockItems = stockItems + }); + break; + case MaterialShape.Pipe when m.Dimensions is PipeDimensions d: + materialsDto.Pipes.Add(new CatalogPipeDto + { + Type = m.Type.ToString(), Grade = m.Grade, Size = m.Size, Description = m.Description, + NominalSize = d.NominalSize, Wall = d.Wall ?? 0, Schedule = d.Schedule, + StockItems = stockItems + }); + break; + case MaterialShape.RectangularTube when m.Dimensions is RectangularTubeDimensions d: + materialsDto.RectangularTubes.Add(new CatalogRectangularTubeDto + { + Type = m.Type.ToString(), Grade = m.Grade, Size = m.Size, Description = m.Description, + Width = d.Width, Height = d.Height, Wall = d.Wall, + StockItems = stockItems + }); + break; + case MaterialShape.RoundBar when m.Dimensions is RoundBarDimensions d: + materialsDto.RoundBars.Add(new CatalogRoundBarDto + { + Type = m.Type.ToString(), Grade = m.Grade, Size = m.Size, Description = m.Description, + Diameter = d.Diameter, + StockItems = stockItems + }); + break; + case MaterialShape.RoundTube when m.Dimensions is RoundTubeDimensions d: + materialsDto.RoundTubes.Add(new CatalogRoundTubeDto + { + Type = m.Type.ToString(), Grade = m.Grade, Size = m.Size, Description = m.Description, + OuterDiameter = d.OuterDiameter, Wall = d.Wall, + StockItems = stockItems + }); + break; + case MaterialShape.SquareBar when m.Dimensions is SquareBarDimensions d: + materialsDto.SquareBars.Add(new CatalogSquareBarDto + { + Type = m.Type.ToString(), Grade = m.Grade, Size = m.Size, Description = m.Description, + SideLength = d.Size, + StockItems = stockItems + }); + break; + case MaterialShape.SquareTube when m.Dimensions is SquareTubeDimensions d: + materialsDto.SquareTubes.Add(new CatalogSquareTubeDto + { + Type = m.Type.ToString(), Grade = m.Grade, Size = m.Size, Description = m.Description, + SideLength = d.Size, Wall = d.Wall, + StockItems = stockItems + }); + break; + } + } + } + return new CatalogData { ExportedAt = DateTime.UtcNow, @@ -54,30 +149,7 @@ public class CatalogService KerfInches = t.KerfInches, IsDefault = t.IsDefault }).ToList(), - Materials = materials.Select(m => new CatalogMaterialDto - { - Shape = m.Shape.ToString(), - Type = m.Type.ToString(), - Grade = m.Grade, - Size = m.Size, - Description = m.Description, - Dimensions = MapDimensions(m.Dimensions), - StockItems = m.StockItems.OrderBy(s => s.LengthInches).Select(s => new CatalogStockItemDto - { - LengthInches = s.LengthInches, - Name = s.Name, - QuantityOnHand = s.QuantityOnHand, - Notes = s.Notes, - SupplierOfferings = s.SupplierOfferings.Select(o => new CatalogSupplierOfferingDto - { - SupplierName = suppliers.FirstOrDefault(sup => sup.Id == o.SupplierId)?.Name ?? "Unknown", - PartNumber = o.PartNumber, - SupplierDescription = o.SupplierDescription, - Price = o.Price, - Notes = o.Notes - }).ToList() - }).ToList() - }).ToList() + Materials = materialsDto }; } @@ -89,14 +161,14 @@ public class CatalogService try { - // 1. Suppliers — upsert by name + // 1. Suppliers - upsert by name var supplierMap = await ImportSuppliersAsync(data.Suppliers, result); - // 2. Cutting tools — upsert by name + // 2. Cutting tools - upsert by name await ImportCuttingToolsAsync(data.CuttingTools, result); // 3. Materials + stock items + offerings - await ImportMaterialsAsync(data.Materials, supplierMap, result); + await ImportAllMaterialsAsync(data.Materials, supplierMap, result); await transaction.CommitAsync(); } @@ -173,7 +245,6 @@ public class CatalogService { existing.KerfInches = dto.KerfInches; existing.IsActive = true; - // Skip IsDefault changes to avoid conflicts result.CuttingToolsUpdated++; } else @@ -182,7 +253,7 @@ public class CatalogService { Name = dto.Name, KerfInches = dto.KerfInches, - IsDefault = false // Never import as default to avoid conflicts + IsDefault = false }; _context.CuttingTools.Add(tool); existingTools.Add(tool); @@ -198,94 +269,128 @@ public class CatalogService await _context.SaveChangesAsync(); } - private async Task ImportMaterialsAsync( - List materials, Dictionary supplierMap, ImportResultDto result) + private async Task ImportAllMaterialsAsync( + CatalogMaterialsDto materials, Dictionary supplierMap, ImportResultDto result) { - // Pre-load existing materials with their dimensions var existingMaterials = await _context.Materials .Include(m => m.Dimensions) .Include(m => m.StockItems) .ThenInclude(s => s.SupplierOfferings) .ToListAsync(); - foreach (var dto in materials) + foreach (var dto in materials.Angles) + await ImportMaterialAsync(dto, MaterialShape.Angle, existingMaterials, supplierMap, result, + () => new AngleDimensions { Leg1 = dto.Leg1, Leg2 = dto.Leg2, Thickness = dto.Thickness }, + dim => { var d = (AngleDimensions)dim; d.Leg1 = dto.Leg1; d.Leg2 = dto.Leg2; d.Thickness = dto.Thickness; }); + + foreach (var dto in materials.Channels) + await ImportMaterialAsync(dto, MaterialShape.Channel, existingMaterials, supplierMap, result, + () => new ChannelDimensions { Height = dto.Height, Flange = dto.Flange, Web = dto.Web }, + dim => { var d = (ChannelDimensions)dim; d.Height = dto.Height; d.Flange = dto.Flange; d.Web = dto.Web; }); + + foreach (var dto in materials.FlatBars) + await ImportMaterialAsync(dto, MaterialShape.FlatBar, existingMaterials, supplierMap, result, + () => new FlatBarDimensions { Width = dto.Width, Thickness = dto.Thickness }, + dim => { var d = (FlatBarDimensions)dim; d.Width = dto.Width; d.Thickness = dto.Thickness; }); + + foreach (var dto in materials.IBeams) + await ImportMaterialAsync(dto, MaterialShape.IBeam, existingMaterials, supplierMap, result, + () => new IBeamDimensions { Height = dto.Height, WeightPerFoot = dto.WeightPerFoot }, + dim => { var d = (IBeamDimensions)dim; d.Height = dto.Height; d.WeightPerFoot = dto.WeightPerFoot; }); + + foreach (var dto in materials.Pipes) + await ImportMaterialAsync(dto, MaterialShape.Pipe, existingMaterials, supplierMap, result, + () => new PipeDimensions { NominalSize = dto.NominalSize, Wall = dto.Wall, Schedule = dto.Schedule }, + dim => { var d = (PipeDimensions)dim; d.NominalSize = dto.NominalSize; d.Wall = (decimal?)dto.Wall; d.Schedule = dto.Schedule; }); + + foreach (var dto in materials.RectangularTubes) + await ImportMaterialAsync(dto, MaterialShape.RectangularTube, existingMaterials, supplierMap, result, + () => new RectangularTubeDimensions { Width = dto.Width, Height = dto.Height, Wall = dto.Wall }, + dim => { var d = (RectangularTubeDimensions)dim; d.Width = dto.Width; d.Height = dto.Height; d.Wall = dto.Wall; }); + + foreach (var dto in materials.RoundBars) + await ImportMaterialAsync(dto, MaterialShape.RoundBar, existingMaterials, supplierMap, result, + () => new RoundBarDimensions { Diameter = dto.Diameter }, + dim => { var d = (RoundBarDimensions)dim; d.Diameter = dto.Diameter; }); + + foreach (var dto in materials.RoundTubes) + await ImportMaterialAsync(dto, MaterialShape.RoundTube, existingMaterials, supplierMap, result, + () => new RoundTubeDimensions { OuterDiameter = dto.OuterDiameter, Wall = dto.Wall }, + dim => { var d = (RoundTubeDimensions)dim; d.OuterDiameter = dto.OuterDiameter; d.Wall = dto.Wall; }); + + foreach (var dto in materials.SquareBars) + await ImportMaterialAsync(dto, MaterialShape.SquareBar, existingMaterials, supplierMap, result, + () => new SquareBarDimensions { Size = dto.SideLength }, + dim => { var d = (SquareBarDimensions)dim; d.Size = dto.SideLength; }); + + foreach (var dto in materials.SquareTubes) + await ImportMaterialAsync(dto, MaterialShape.SquareTube, existingMaterials, supplierMap, result, + () => new SquareTubeDimensions { Size = dto.SideLength, Wall = dto.Wall }, + dim => { var d = (SquareTubeDimensions)dim; d.Size = dto.SideLength; d.Wall = dto.Wall; }); + } + + private async Task ImportMaterialAsync( + CatalogMaterialBaseDto dto, MaterialShape shape, + List existingMaterials, Dictionary supplierMap, + ImportResultDto result, + Func createDimensions, + Action updateDimensions) + { + try { - try + if (!Enum.TryParse(dto.Type, ignoreCase: true, out var type)) { - if (!Enum.TryParse(dto.Shape, ignoreCase: true, out var shape)) - { - result.Errors.Add($"Material '{dto.Shape} - {dto.Size}': Unknown shape '{dto.Shape}'"); - continue; - } - - if (!Enum.TryParse(dto.Type, ignoreCase: true, out var type)) - { - type = MaterialType.Steel; // Default - result.Warnings.Add($"Material '{dto.Shape} - {dto.Size}': Unknown type '{dto.Type}', defaulting to Steel"); - } - - var existing = existingMaterials.FirstOrDefault( - m => m.Shape == shape && m.Size.Equals(dto.Size, StringComparison.OrdinalIgnoreCase)); - - Material material; - - if (existing != null) - { - // Update existing material - existing.Type = type; - existing.Grade = dto.Grade ?? existing.Grade; - existing.Description = dto.Description ?? existing.Description; - existing.IsActive = true; - existing.UpdatedAt = DateTime.UtcNow; - - // Update dimensions if provided - if (dto.Dimensions != null && existing.Dimensions != null) - { - ApplyDimensionValues(existing.Dimensions, dto.Dimensions); - existing.SortOrder = existing.Dimensions.GetSortOrder(); - } - - material = existing; - result.MaterialsUpdated++; - } - else - { - // Create new material with dimensions - material = new Material - { - Shape = shape, - Type = type, - Grade = dto.Grade, - Size = dto.Size, - Description = dto.Description, - CreatedAt = DateTime.UtcNow - }; - - if (dto.Dimensions != null) - { - var dimensions = MaterialService.CreateDimensionsForShape(shape); - ApplyDimensionValues(dimensions, dto.Dimensions); - material = await _materialService.CreateWithDimensionsAsync(material, dimensions); - } - else - { - _context.Materials.Add(material); - await _context.SaveChangesAsync(); - } - - existingMaterials.Add(material); - result.MaterialsCreated++; - } - - await _context.SaveChangesAsync(); - - // Import stock items for this material - await ImportStockItemsAsync(material, dto.StockItems, supplierMap, result); + type = MaterialType.Steel; + result.Warnings.Add($"Material '{shape} - {dto.Size}': Unknown type '{dto.Type}', defaulting to Steel"); } - catch (Exception ex) + + var existing = existingMaterials.FirstOrDefault( + m => m.Shape == shape && m.Size.Equals(dto.Size, StringComparison.OrdinalIgnoreCase)); + + Material material; + + if (existing != null) { - result.Errors.Add($"Material '{dto.Shape} - {dto.Size}': {ex.Message}"); + existing.Type = type; + existing.Grade = dto.Grade ?? existing.Grade; + existing.Description = dto.Description ?? existing.Description; + existing.IsActive = true; + existing.UpdatedAt = DateTime.UtcNow; + + if (existing.Dimensions != null) + { + updateDimensions(existing.Dimensions); + existing.SortOrder = existing.Dimensions.GetSortOrder(); + } + + material = existing; + result.MaterialsUpdated++; } + else + { + material = new Material + { + Shape = shape, + Type = type, + Grade = dto.Grade, + Size = dto.Size, + Description = dto.Description, + CreatedAt = DateTime.UtcNow + }; + + var dimensions = createDimensions(); + material = await _materialService.CreateWithDimensionsAsync(material, dimensions); + existingMaterials.Add(material); + result.MaterialsCreated++; + } + + await _context.SaveChangesAsync(); + + await ImportStockItemsAsync(material, dto.StockItems, supplierMap, result); + } + catch (Exception ex) + { + result.Errors.Add($"Material '{shape} - {dto.Size}': {ex.Message}"); } } @@ -293,7 +398,6 @@ public class CatalogService Material material, List stockItems, Dictionary supplierMap, ImportResultDto result) { - // Reload stock items for this material to ensure we have current state var existingStockItems = await _context.StockItems .Include(s => s.SupplierOfferings) .Where(s => s.MaterialId == material.Id) @@ -314,7 +418,6 @@ public class CatalogService existing.Notes = dto.Notes ?? existing.Notes; existing.IsActive = true; existing.UpdatedAt = DateTime.UtcNow; - // Don't overwrite QuantityOnHand — preserve actual inventory stockItem = existing; result.StockItemsUpdated++; } @@ -335,7 +438,6 @@ public class CatalogService result.StockItemsCreated++; } - // Import supplier offerings foreach (var offeringDto in dto.SupplierOfferings) { try @@ -394,67 +496,22 @@ public class CatalogService } } - private static CatalogDimensionsDto? MapDimensions(MaterialDimensions? dim) => dim switch + private static List MapStockItems(Material m, List suppliers) { - RoundBarDimensions d => new CatalogDimensionsDto { Diameter = d.Diameter }, - RoundTubeDimensions d => new CatalogDimensionsDto { OuterDiameter = d.OuterDiameter, Wall = d.Wall }, - FlatBarDimensions d => new CatalogDimensionsDto { Width = d.Width, Thickness = d.Thickness }, - SquareBarDimensions d => new CatalogDimensionsDto { Size = d.Size }, - SquareTubeDimensions d => new CatalogDimensionsDto { Size = d.Size, Wall = d.Wall }, - RectangularTubeDimensions d => new CatalogDimensionsDto { Width = d.Width, Height = d.Height, Wall = d.Wall }, - AngleDimensions d => new CatalogDimensionsDto { Leg1 = d.Leg1, Leg2 = d.Leg2, Thickness = d.Thickness }, - ChannelDimensions d => new CatalogDimensionsDto { Height = d.Height, Flange = d.Flange, Web = d.Web }, - IBeamDimensions d => new CatalogDimensionsDto { Height = d.Height, WeightPerFoot = d.WeightPerFoot }, - PipeDimensions d => new CatalogDimensionsDto { NominalSize = d.NominalSize, Wall = d.Wall, Schedule = d.Schedule }, - _ => null - }; - - private static void ApplyDimensionValues(MaterialDimensions dimensions, CatalogDimensionsDto dto) - { - switch (dimensions) + return m.StockItems.OrderBy(s => s.LengthInches).Select(s => new CatalogStockItemDto { - case RoundBarDimensions rb: - if (dto.Diameter.HasValue) rb.Diameter = dto.Diameter.Value; - break; - case RoundTubeDimensions rt: - if (dto.OuterDiameter.HasValue) rt.OuterDiameter = dto.OuterDiameter.Value; - if (dto.Wall.HasValue) rt.Wall = dto.Wall.Value; - break; - case FlatBarDimensions fb: - if (dto.Width.HasValue) fb.Width = dto.Width.Value; - if (dto.Thickness.HasValue) fb.Thickness = dto.Thickness.Value; - break; - case SquareBarDimensions sb: - if (dto.Size.HasValue) sb.Size = dto.Size.Value; - break; - case SquareTubeDimensions st: - if (dto.Size.HasValue) st.Size = dto.Size.Value; - if (dto.Wall.HasValue) st.Wall = dto.Wall.Value; - break; - case RectangularTubeDimensions rect: - if (dto.Width.HasValue) rect.Width = dto.Width.Value; - if (dto.Height.HasValue) rect.Height = dto.Height.Value; - if (dto.Wall.HasValue) rect.Wall = dto.Wall.Value; - break; - case AngleDimensions a: - if (dto.Leg1.HasValue) a.Leg1 = dto.Leg1.Value; - if (dto.Leg2.HasValue) a.Leg2 = dto.Leg2.Value; - if (dto.Thickness.HasValue) a.Thickness = dto.Thickness.Value; - break; - case ChannelDimensions c: - if (dto.Height.HasValue) c.Height = dto.Height.Value; - if (dto.Flange.HasValue) c.Flange = dto.Flange.Value; - if (dto.Web.HasValue) c.Web = dto.Web.Value; - break; - case IBeamDimensions ib: - if (dto.Height.HasValue) ib.Height = dto.Height.Value; - if (dto.WeightPerFoot.HasValue) ib.WeightPerFoot = dto.WeightPerFoot.Value; - break; - case PipeDimensions p: - if (dto.NominalSize.HasValue) p.NominalSize = dto.NominalSize.Value; - if (dto.Wall.HasValue) p.Wall = dto.Wall.Value; - if (dto.Schedule != null) p.Schedule = dto.Schedule; - break; - } + LengthInches = s.LengthInches, + Name = s.Name, + QuantityOnHand = s.QuantityOnHand, + Notes = s.Notes, + SupplierOfferings = s.SupplierOfferings.Select(o => new CatalogSupplierOfferingDto + { + SupplierName = suppliers.FirstOrDefault(sup => sup.Id == o.SupplierId)?.Name ?? "Unknown", + PartNumber = o.PartNumber, + SupplierDescription = o.SupplierDescription, + Price = o.Price, + Notes = o.Notes + }).ToList() + }).ToList(); } } diff --git a/scripts/AlroCatalog/alro-scrape-progress.json b/scripts/AlroCatalog/alro-scrape-progress.json index a7fec7c..adbcb6e 100644 --- a/scripts/AlroCatalog/alro-scrape-progress.json +++ b/scripts/AlroCatalog/alro-scrape-progress.json @@ -4,6 +4,11 @@ "Bars", "A-36", "ROUND" + ], + [ + "Bars", + "A-36", + "FLAT" ] ], "items": [ diff --git a/scripts/AlroCatalog/scrape_alro.py b/scripts/AlroCatalog/scrape_alro.py index 48bef4b..0c8d856 100644 --- a/scripts/AlroCatalog/scrape_alro.py +++ b/scripts/AlroCatalog/scrape_alro.py @@ -5,10 +5,10 @@ Scrapes myalro.com's SmartGrid for Carbon Steel materials and outputs a catalog JSON matching the O'Neal catalog format. Usage: - python scrape_alro.py # Scrape filtered grades (edit GRADE_FILTER below) + python scrape_alro.py # Scrape filtered grades (resumes from saved progress) python scrape_alro.py --all-grades # Scrape ALL grades (slow) python scrape_alro.py --discover # Scrape first item only, dump HTML/screenshots - python scrape_alro.py --resume # Resume from saved progress + python scrape_alro.py --fresh # Start fresh, ignoring saved progress """ import asyncio @@ -342,8 +342,14 @@ async def get_select_options(page: Page, sel_id: str): async def scrape_dims_panel(page: Page, grade: str, shape_alro: str, - shape_mapped: str, *, save_discovery: bool = False): - """Main Level 3 extraction. Returns list of raw item dicts.""" + shape_mapped: str, *, save_discovery: bool = False, + on_item=None, scraped_dim_a: set[str] | None = None): + """Main Level 3 extraction. Returns list of raw item dicts. + + If on_item callback is provided, it is called with each item dict + as soon as it is discovered (for incremental saving). + If scraped_dim_a is provided, DimA values in that set are skipped (resume). + """ items: list[dict] = [] if save_discovery: @@ -368,9 +374,18 @@ async def scrape_dims_panel(page: Page, grade: str, shape_alro: str, log.warning(f" Could not dump dims panel: {e}") return [] - log.info(f" DimA: {len(dim_a_opts)} sizes") + already_done = scraped_dim_a or set() + remaining = [(v, t) for v, t in dim_a_opts if v not in already_done] + if already_done: + log.info(f" DimA: {len(dim_a_opts)} sizes ({len(dim_a_opts) - len(remaining)} already scraped, {len(remaining)} remaining)") + else: + log.info(f" DimA: {len(dim_a_opts)} sizes") - for a_val, a_text in dim_a_opts: + # All DimA values already scraped — combo is complete + if not remaining: + return [] + + for a_val, a_text in remaining: # Select DimA → triggers postback → DimB/Length populate await page.select_option(f"#{ID['dim_a']}", a_val) await asyncio.sleep(DELAY) @@ -394,29 +409,38 @@ async def scrape_dims_panel(page: Page, grade: str, shape_alro: str, lengths = await get_select_options(page, ID["dim_length"]) for l_val, l_text in lengths: - items.append(_make_item( + item = _make_item( grade, shape_mapped, a_val, a_text, b_val, b_text, c_val, c_text, l_text, - )) + ) + items.append(item) + if on_item: + on_item(item) else: # No DimC — read lengths lengths = await get_select_options(page, ID["dim_length"]) for l_val, l_text in lengths: - items.append(_make_item( + item = _make_item( grade, shape_mapped, a_val, a_text, b_val, b_text, None, None, l_text, - )) + ) + items.append(item) + if on_item: + on_item(item) else: # No DimB — just DimA + Length lengths = await get_select_options(page, ID["dim_length"]) for l_val, l_text in lengths: - items.append(_make_item( + item = _make_item( grade, shape_mapped, a_val, a_text, None, None, None, None, l_text, - )) + ) + items.append(item) + if on_item: + on_item(item) return items @@ -467,7 +491,7 @@ def build_size_and_dims(shape: str, item: dict): return f'{a_txt}"', {"width": round(a, 4), "thickness": 0} if shape == "SquareBar" and a is not None: - return f'{a_txt}"', {"size": round(a, 4)} + return f'{a_txt}"', {"sideLength": round(a, 4)} if shape == "Angle": if a is not None and b is not None: @@ -495,9 +519,9 @@ def build_size_and_dims(shape: str, item: dict): if shape == "SquareTube": if a is not None and b is not None: return (f'{a_txt}" x {b_txt}" wall', - {"size": round(a, 4), "wall": round(b, 4)}) + {"sideLength": round(a, 4), "wall": round(b, 4)}) if a is not None: - return f'{a_txt}"', {"size": round(a, 4), "wall": 0} + return f'{a_txt}"', {"sideLength": round(a, 4), "wall": 0} if shape == "RectangularTube": if a is not None and b is not None and c is not None: @@ -524,6 +548,20 @@ def build_size_and_dims(shape: str, item: dict): return a_txt or "", {} +SHAPE_GROUP_KEY = { + "Angle": "angles", + "Channel": "channels", + "FlatBar": "flatBars", + "IBeam": "iBeams", + "Pipe": "pipes", + "RectangularTube": "rectangularTubes", + "RoundBar": "roundBars", + "RoundTube": "roundTubes", + "SquareBar": "squareBars", + "SquareTube": "squareTubes", +} + + def build_catalog(scraped: list[dict]) -> dict: """Assemble the final catalog JSON from scraped item dicts.""" materials: dict[tuple, dict] = {} @@ -538,14 +576,14 @@ def build_catalog(scraped: list[dict]) -> dict: key = (shape, grade, size_str) if key not in materials: - materials[key] = { - "shape": shape, + mat = { "type": "Steel", "grade": grade, "size": size_str, - "dimensions": dims, "stockItems": [], } + mat.update(dims) + materials[key] = mat length = item.get("length_inches") if length and length > 0: @@ -561,7 +599,12 @@ def build_catalog(scraped: list[dict]) -> dict: }], }) - sorted_mats = sorted(materials.values(), key=lambda m: (m["shape"], m["grade"], m["size"])) + # Group by shape key + grouped: dict[str, list] = {v: [] for v in SHAPE_GROUP_KEY.values()} + for (shape, _, _), mat in sorted(materials.items(), key=lambda kv: (kv[0][0], kv[0][1], kv[0][2])): + group_key = SHAPE_GROUP_KEY.get(shape) + if group_key: + grouped[group_key].append(mat) return { "exportedAt": datetime.now(timezone.utc).isoformat(), @@ -572,7 +615,7 @@ def build_catalog(scraped: list[dict]) -> dict: {"name": "Cold Cut Saw", "kerfInches": 0.0625, "isDefault": False}, {"name": "Hacksaw", "kerfInches": 0.0625, "isDefault": False}, ], - "materials": sorted_mats, + "materials": grouped, } @@ -596,20 +639,29 @@ def save_progress(progress: dict): async def main(): discover = "--discover" in sys.argv - resume = "--resume" in sys.argv + fresh = "--fresh" in sys.argv all_grades = "--all-grades" in sys.argv - progress = load_progress() if resume else {"completed": [], "items": []} + progress = {"completed": [], "items": []} if fresh else load_progress() all_items: list[dict] = progress.get("items", []) done_keys: set[tuple] = {tuple(k) for k in progress.get("completed", [])} + # Build index of saved DimA values per (grade, shape) for partial resume + saved_dim_a: dict[tuple[str, str], set[str]] = {} + if all_items and not fresh: + for item in all_items: + key = (item.get("grade", ""), item.get("shape", "")) + saved_dim_a.setdefault(key, set()).add(item.get("dim_a_val", "")) + log.info("Alro Steel SmartGrid Scraper") if all_grades: log.info(" Mode: ALL grades") else: log.info(f" Filtering to {len(GRADE_FILTER)} grades: {', '.join(sorted(GRADE_FILTER))}") - if resume: - log.info(f" Resuming: {len(done_keys)} combos done, {len(all_items)} items") + if fresh: + log.info(" Fresh start — ignoring saved progress") + elif done_keys: + log.info(f" Resuming: {len(done_keys)} combos done, {len(all_items)} items saved") if discover: log.info(" Discovery mode — will scrape first item then stop") @@ -677,19 +729,30 @@ async def main(): await asyncio.sleep(DELAY) + combo_count = 0 + def on_item_discovered(item): + nonlocal total_scraped, combo_count + all_items.append(item) + total_scraped += 1 + combo_count += 1 + progress["items"] = all_items + save_progress(progress) + + # Pass already-scraped DimA values so partial combos resume correctly + already = saved_dim_a.get((grade_name, shape_mapped), set()) + items = await scrape_dims_panel( page, grade_name, shape_name, shape_mapped, save_discovery=first_item or discover, + on_item=on_item_discovered, + scraped_dim_a=already, ) first_item = False - all_items.extend(items) - total_scraped += len(items) - log.info(f" -> {len(items)} items (total {total_scraped})") + log.info(f" -> {combo_count} items (total {total_scraped})") done_keys.add(combo_key) progress["completed"] = [list(k) for k in done_keys] - progress["items"] = all_items save_progress(progress) await click_back(page) @@ -714,14 +777,13 @@ async def main(): OUTPUT_PATH.write_text(json.dumps(catalog, indent=2, ensure_ascii=False), encoding="utf-8") log.info(f"Written: {OUTPUT_PATH}") - log.info(f"Materials: {len(catalog['materials'])}") - total_stock = sum(len(m["stockItems"]) for m in catalog["materials"]) + total_mats = sum(len(v) for v in catalog["materials"].values()) + total_stock = sum(len(m["stockItems"]) for v in catalog["materials"].values() for m in v) + log.info(f"Materials: {total_mats}") log.info(f"Stock items: {total_stock}") - by_shape: dict[str, int] = {} - for m in catalog["materials"]: - by_shape[m["shape"]] = by_shape.get(m["shape"], 0) + 1 - for s, n in sorted(by_shape.items()): - log.info(f" {s}: {n}") + for shape_key, mats in sorted(catalog["materials"].items()): + if mats: + log.info(f" {shape_key}: {len(mats)}") if __name__ == "__main__":