SQLSERVER中的LOB页面简单研究

时间:2023-03-09 10:07:27
SQLSERVER中的LOB页面简单研究

SQLSERVER中的LOB页面简单研究

这篇文章和我另一篇文章是相辅相成的,在看《SQLSERVER2012 列存储索引的简单研究和测试》这篇文章之前希望大家先看一下这篇文章o(∩_∩)o

SQLSERVER2012 列存储索引的简单研究和测试

LOB页面相信大家都不会陌生,LOB专门存储大型对象数据的,类型text、image这些数据类型的数据就是存储在LOB页面

MSDN上的解释是这样的:

http://technet.microsoft.com/zh-cn/library/ms189051(v=sql.105).aspx

LOB_DATA:以下列一种或多种数据类型存储的大型对象数据:text、ntext、image、xml、varchar(max)、nvarchar(max)、

varbinary(max) 或 CLR 用户定义类型 (CLR UDT)。页的类型为 Text/Image。

LOB_DATA 分配单元

当表或索引有一个或多个 LOB 数据类型时,将为每个分区分配一个 LOB_DATA 分配单元,以管理该数据的存储。

LOB 数据类型包括text、ntext、image、xml、varchar(max)、nvarchar(max)、varbinary(max) 和 CLR 用户定义类型。

但是在DBCC IND的结果里面,有这样的解释

PageType  页面类型:1:数据页面;2:索引页面;3:Lob_mixed_page;4:Lob_tree_page;10:IAM页面

究竟Lob_mixed_page和Lob_tree_page有什么区别?


堆表

先执行下面的SQL语句,用来存储DBCC IND的结果

 --执行下面语句,看一下DBCC IND的结果
--先说明一下:
--
--PageType 页面类型:1:数据页面;2:索引页面;3:Lob_mixed_page;4:Lob_tree_page;10:IAM页面
--
--IndexID 索引ID:0 代表堆, 1 代表聚集索引, 2-250 代表非聚集索引 大于250就是text或image字段
CREATE TABLE DBCCResult (
PageFID NVARCHAR(200),
PagePID NVARCHAR(200),
IAMFID NVARCHAR(200),
IAMPID NVARCHAR(200),
ObjectID NVARCHAR(200),
IndexID NVARCHAR(200),
PartitionNumber NVARCHAR(200),
PartitionID NVARCHAR(200),
iam_chain_type NVARCHAR(200),
PageType NVARCHAR(200),
IndexLevel NVARCHAR(200),
NextPageFID NVARCHAR(200),
NextPagePID NVARCHAR(200),
PrevPageFID NVARCHAR(200),
PrevPagePID NVARCHAR(200)
)

建立一个堆表

 CREATE TABLE LobTestTable(id INT,NAME varchar(200) ,comment TEXT)
GO

插入3条记录

 INSERT INTO [dbo].[LobTestTable] ( [id],name, [comment] )
SELECT 1,'中国','你好你好你好你好你好你好你好你好' UNION ALL
SELECT 2,'中国','他好他好他好他好他好他好他好他好' UNION ALL
SELECT 3,'中国','我好我好我好我好我好我好我好我好'
 SELECT * FROM [dbo].[LobTestTable]
GO

SQLSERVER中的LOB页面简单研究

把结果存入[DBCCResult]里

 --TRUNCATE TABLE [dbo].[DBCCResult]
INSERT INTO DBCCResult EXEC ('DBCC IND(pratice,LobTestTable,-1) ') SELECT * FROM [dbo].[DBCCResult] ORDER BY [PageType] DESC

SQLSERVER中的LOB页面简单研究

可以看到,pagetype为3,即是Lob_mixed_page来存储text数据

而且普通的数据页和LOB页是由不同的IAM页来管理的,LOB页面由pageid为14575的页面来管理

普通数据页面由pageid为15608的页面来管理

我们看一下14576页面和14550页面到底存放了什么?

14576页面

 PAGE: (1:14576)

 BUFFER:

 BUF @0x03E8A5E4

 bpage = 0x193C0000                   bhash = 0x00000000                   bpageno = (1:14576)
bdbid = 5 breferences = 0 bUse1 = 3859
bstat = 0xc0010b blog = 0x212159bb bnext = 0x00000000 PAGE HEADER: Page @0x193C0000 m_pageId = (1:14576) m_headerVersion = 1 m_type = 1
m_typeFlagBits = 0x4 m_level = 0 m_flagBits = 0x8000
m_objId (AllocUnitId.idObj) = 438 m_indexId (AllocUnitId.idInd) = 256
Metadata: AllocUnitId = 72057594066632704
Metadata: PartitionId = 72057594057261056 Metadata: IndexId = 0
Metadata: ObjectId = 891150220 m_prevPage = (0:0) m_nextPage = (0:0)
pminlen = 8 m_slotCnt = 3 m_freeCnt = 7979
m_freeData = 207 m_reservedCnt = 0 m_lsn = (2922:21125:41)
m_xactReserved = 0 m_xdesId = (0:0) m_ghostRecCnt = 0
m_tornBits = 0 Allocation Status GAM (1:2) = ALLOCATED SGAM (1:3) = ALLOCATED
PFS (1:8088) = 0x61 MIXED_EXT ALLOCATED 50_PCT_FULL DIFF (1:6) = CHANGED
ML (1:7) = NOT MIN_LOGGED Slot 0 Offset 0x60 Length 37 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP VARIABLE_COLUMNS Memory Dump @0x0917C060 00000000: 30000800 01000000 03006802 00150025 †0.........h....%
00000010: 80d6d0b9 fa0000f1 71250000 00d63800 †........q%....8.
00000020: 00010000 00††††††††††††††††††††††††††..... Slot 0 Column 0 Offset 0x4 Length 4 id = 1 Slot 0 Column 1 Offset 0x11 Length 4 NAME = 中国 comment = [Textpointer] Slot 0 Column 2 Offset 0x15 Length 16 TextTimeStamp = 160825409536 RowId = (1:14550:0) Slot 1 Offset 0x85 Length 37 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP VARIABLE_COLUMNS Memory Dump @0x0917C085 00000000: 30000800 02000000 03002002 00150025 †0......... ....%
00000010: 80d6d0b9 fa0000f2 71250000 00d63800 †........q%....8.
00000020: 00010001 00††††††††††††††††††††††††††..... Slot 1 Column 0 Offset 0x4 Length 4 id = 2 Slot 1 Column 1 Offset 0x11 Length 4 NAME = 中国 comment = [Textpointer] Slot 1 Column 2 Offset 0x15 Length 16 TextTimeStamp = 160825475072 RowId = (1:14550:1) Slot 2 Offset 0xaa Length 37 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP VARIABLE_COLUMNS Memory Dump @0x0917C0AA 00000000: 30000800 03000000 03002002 00150025 †0......... ....%
00000010: 80d6d0b9 fa0000f3 71250000 00d63800 †........q%....8.
00000020: 00010002 00††††††††††††††††††††††††††..... Slot 2 Column 0 Offset 0x4 Length 4 id = 3 Slot 2 Column 1 Offset 0x11 Length 4 NAME = 中国 comment = [Textpointer] Slot 2 Column 2 Offset 0x15 Length 16 TextTimeStamp = 160825540608 RowId = (1:14550:2) DBCC 执行完毕。如果 DBCC 输出了错误信息,请与系统管理员联系。

14550页面

 PAGE: (1:14550)

 BUFFER:

 BUF @0x03E88DD8

 bpage = 0x192E8000                   bhash = 0x00000000                   bpageno = (1:14550)
bdbid = 5 breferences = 0 bUse1 = 3893
bstat = 0xc0010b blog = 0x3212159b bnext = 0x00000000 PAGE HEADER: Page @0x192E8000 m_pageId = (1:14550) m_headerVersion = 1 m_type = 3
m_typeFlagBits = 0x0 m_level = 0 m_flagBits = 0x8000
m_objId (AllocUnitId.idObj) = 439 m_indexId (AllocUnitId.idInd) = 256
Metadata: AllocUnitId = 72057594066698240
Metadata: PartitionId = 72057594057261056 Metadata: IndexId = 0
Metadata: ObjectId = 891150220 m_prevPage = (0:0) m_nextPage = (0:0)
pminlen = 0 m_slotCnt = 3 m_freeCnt = 7838
m_freeData = 348 m_reservedCnt = 0 m_lsn = (2922:21125:40)
m_xactReserved = 0 m_xdesId = (0:0) m_ghostRecCnt = 0
m_tornBits = 0 Allocation Status GAM (1:2) = ALLOCATED SGAM (1:3) = ALLOCATED
PFS (1:8088) = 0x61 MIXED_EXT ALLOCATED 50_PCT_FULL DIFF (1:6) = CHANGED
ML (1:7) = NOT MIN_LOGGED Blob row at: Page (1:14550) Slot 0 Length: 84 Type: 0 (SMALL_ROOT) Small Blob Id: 160825409536 Size:32 0A05C074: c3bae3c4 c3bae3c4 c3bae3c4 c3bae3c4 ................ 0A05C084: c3bae3c4 c3bae3c4 c3bae3c4 c3bae3c4 ................ Blob row at: Page (1:14550) Slot 1 Length: 84 Type: 0 (SMALL_ROOT) Small Blob Id: 160825475072 Size:32 0A05C0C8: c3bafbcb c3bafbcb c3bafbcb c3bafbcb ................ 0A05C0D8: c3bafbcb c3bafbcb c3bafbcb c3bafbcb ................ Blob row at: Page (1:14550) Slot 2 Length: 84 Type: 0 (SMALL_ROOT) Small Blob Id: 160825540608 Size:32 0A05C11C: c3bad2ce c3bad2ce c3bad2ce c3bad2ce ................ 0A05C12C: c3bad2ce c3bad2ce c3bad2ce c3bad2ce ................ DBCC 执行完毕。如果 DBCC 输出了错误信息,请与系统管理员联系。

可以看到14576页面里的每一行第三列(即comment字段)都有一个指针指向14550页面,并且指示了数据在14550页面的哪一行RowId = (1:14550:0)

 Slot 0 Column 0 Offset 0x4 Length 4

 id = 1                              

 Slot 0 Column 1 Offset 0x11 Length 4

 NAME = 中国                         

 comment = [Textpointer] Slot 0 Column 2 Offset 0x15 Length 16

 TextTimeStamp = 160825409536         RowId = (1:14550:0) 

而在14550页面,则存储了实际的text数据类型的数据

 Blob row at: Page (1:14550) Slot 0 Length: 84 Type: 0 (SMALL_ROOT)

 Small Blob Id: 160825409536 Size:32

 0A05C074:  c3bae3c4  c3bae3c4  c3bae3c4  c3bae3c4 ................

 0A05C084:  c3bae3c4  c3bae3c4  c3bae3c4  c3bae3c4 ................

我们向[LobTestTable]表插入多一点数据,插入1000条记录

 DECLARE @i INT
SET @i=4
WHILE @i<1001
BEGIN
INSERT INTO [dbo].[LobTestTable] ( [id],name, [comment] )
SELECT @i,'中国','你好你好你好你好你好你好你好你好'
SET @i=@i+1
END SELECT * FROM [dbo].[LobTestTable]
GO

插入了1000条记录之后表中也没有出现 Lob_tree_page 页

SQLSERVER中的LOB页面简单研究


非聚集索引表

建立一个非聚集索引表

 CREATE TABLE LobIndexTestTable(id INT,NAME varchar(200) ,comment TEXT)
GO INSERT INTO [dbo].[LobIndexTestTable] ( [id],name, [comment] )
SELECT 1,'中国','你好你好你好你好你好你好你好你好' UNION ALL
SELECT 2,'中国','他好他好他好他好他好他好他好他好' UNION ALL
SELECT 3,'中国','我好我好我好我好我好我好我好我好' SELECT * FROM [LobIndexTestTable]

但是在text数据类型字段上建立索引会报错

 CREATE NONCLUSTERED INDEX IX_LobIndexTestTable ON LobIndexTestTable([comment] ASC)
GO

SQLSERVER中的LOB页面简单研究

这里跟SQLSERVER2012的列存储索引是一样的,列存储索引也不允许在下面的数据类型中建立索引

 binary和varbinary
ntext、text和 image
varchar(max)和nvarchar(max)
uniqueidentifier
rowversion(和 timestamp)
sql_variant
精度大于 18 位的 decimal(和 numeric)
标量大于 2 的 datetimeoffset
CLR 类型(hierarchyid和空间类型)
xml

我们就在name这个字段上建立索引吧

 CREATE NONCLUSTERED INDEX IX_LobIndexTestTable ON LobIndexTestTable(name ASC)
GO
 --TRUNCATE TABLE [dbo].[DBCCResult]
INSERT INTO DBCCResult EXEC ('DBCC IND(pratice,LobIndexTestTable,-1) ') SELECT * FROM [dbo].[DBCCResult] ORDER BY [PageType] DESC

SQLSERVER中的LOB页面简单研究

可以看到索引页,LOB页面,普通数据页由37253,37265,37255这三个IAM页面进行管理

使用下面语句查看索引页,数据页,LOB页的情况

 DBCC TRACEON(3604,-1)
GO
DBCC PAGE([pratice],1,37252,3)
GO
DBCC PAGE([pratice],1,37254,3)
GO
DBCC PAGE([pratice],1,37264,3)
GO

图片就不贴出来了,大家查看页面内容会看到跟堆表的情况是一样的

普通数据页面也是有指针指向LOB页面

我们插入10000条记录到LobIndexTestTable表

 DECLARE @i INT
SET @i=4
WHILE @i<10001
BEGIN
INSERT INTO [dbo].LobIndexTestTable ( [id],name, [comment] )
SELECT @i,'中国','你好你好你好你好你好你好你好你好'
SET @i=@i+1
END

很遗憾,也是没有出现Lob_tree_page 页

SQLSERVER中的LOB页面简单研究

SQLSERVER中的LOB页面简单研究

SQLSERVER中的LOB页面简单研究

SQLSERVER中的LOB页面简单研究


 聚集索引表

建表脚本

 CREATE TABLE LobCIndexTestTable(id INT,NAME varchar(200) ,comment TEXT)
GO INSERT INTO [dbo].[LobCIndexTestTable] ( [id],name, [comment] )
SELECT 1,'中国','你好你好你好你好你好你好你好你好' UNION ALL
SELECT 2,'中国','他好他好他好他好他好他好他好他好' UNION ALL
SELECT 3,'中国','我好我好我好我好我好我好我好我好' SELECT * FROM [LobCIndexTestTable] CREATE CLUSTERED INDEX IX_LobCIndexTestTable ON LobCIndexTestTable(name ASC)
GO --TRUNCATE TABLE [dbo].[DBCCResult]
INSERT INTO DBCCResult EXEC ('DBCC IND(pratice,LobCIndexTestTable,-1) ') SELECT * FROM [dbo].[DBCCResult] ORDER BY [PageType] DESC --插入10000条记录
DECLARE @i INT
SET @i=4
WHILE @i<10001
BEGIN
INSERT INTO [dbo].[LobCIndexTestTable] ( [id],name, [comment] )
SELECT @i,'中国','你好你好你好你好你好你好你好你好'
SET @i=@i+1
END SELECT * FROM LobCIndexTestTable
GO DBCC TRACEON(3604,-1)
GO
DBCC PAGE([pratice],1,28815,3) --lob页面
GO
DBCC PAGE([pratice],1,37376,3) --聚集索引页面
GO
DBCC PAGE([pratice],1,37350,3) --数据页面
GO

聚集索引表跟非聚集索引表也是一样,在10000条记录的表中也没有出现Lob_tree_page 页

表中的结构跟非聚集索引表一样

普通数据页面也是有指针指向LOB页面

SQLSERVER中的LOB页面简单研究

SQLSERVER中的LOB页面简单研究

SQLSERVER中的LOB页面简单研究

SQLSERVER中的LOB页面简单研究

在MSDN中的聚集索引结构和非聚集索引结构的文章里对于LOB页面的解释

http://msdn.microsoft.com/zh-cn/library/ms177484(v=SQL.90).aspx

http://msdn.microsoft.com/zh-cn/library/ms177443(v=SQL.90).aspx

如果聚集索引包含大型对象 (LOB) 列,则它的每个分区中还会有一个 LOB_DATA 分配单元。

如果非聚集索引包含大型对象 (LOB) 列,则还有一个针对每个分区的 LOB_DATA 分配单元。


列存储索引表

结果有点让人失望,聚集索引表和非聚集索引表都没有出现Lob_tree_page 页

在SQLSERVER2012里新增了列存储索引,我们来看一下

使用下面的脚本建立列存储索引

 USE [pratice]
GO
CREATE TABLE TestTable
(
id INT ,
c1 INT ,
c2 INT
) DECLARE @i INT
SET @i=1
WHILE @i<10001
BEGIN
INSERT INTO TestTable (id,c1)
SELECT @i,@i
SET @i=@i+1
END CREATE NONCLUSTERED columnstore INDEX PK__TestTabl__ColumnStore ON TestTable(c1) --TRUNCATE TABLE [dbo].[DBCCResult]
INSERT INTO DBCCResult EXEC ('DBCC IND(pratice,TestTable,-1) ') SELECT * FROM [dbo].[DBCCResult] ORDER BY [PageType] DESC

SQLSERVER中的LOB页面简单研究

可以看到出现了Lob_tree_page 页

列存储索引属于非聚集索引,因为indexid=2,是非聚集索引的一部分,但是刚才在聚集索引的那个环节,LOB页面也属于聚集索引的一部分啊?

刚才非聚集索引表的页面情况

SQLSERVER中的LOB页面简单研究

刚才聚集索引表的页面情况

SQLSERVER中的LOB页面简单研究

列存储索引比聚集索引表的页面结构多了一个Lob_tree_page 页

究竟是怎麽回事?那天问了微软的孙大侠,他给出了这样的解释

即使是Blob数据类型,在SQL Server之中也是通过Tree的方式进行存储,也就是说也会分为Root Structure->Intermediate Node->Blocks的方式。

所以就存在了Lob_Tree_Page和Lob_Mix_Page,简单的说Tree只包含了到下一级页的指针,不包含数据;Mix则包含数据和部分指针。

他说的Blocks的意思是指leaf Node,也就是:Root Structure->Intermediate Node->leaf Node

大家可能看书的时候听过:SQLSERVER数据库中有混合区和统一区的说法,但是没有听说过混合页的说法吧(Lob_Mix_Page)

根据他们的说法,我画了一下LOB结构的草图

SQLSERVER中的LOB页面简单研究

但是indexlevel列全部都是0,也就是说LOB页面是没有分等级的,所以我上面画的图也不一定正确

SQLSERVER中的LOB页面简单研究


为什麽在聚集索引表中,LOB页面没有Lob_Tree_Page,我们来看一下列存储索引表里面的408和409页面

 DBCC TRACEON(3604,-1)
GO
DBCC PAGE([pratice],1,408,) --LOB类型为4
GO
DBCC PAGE([pratice],1,409,) --LOB类型为3
GO

408页面内容

 DBCC 执行完毕。如果 DBCC 输出了错误信息,请与系统管理员联系。

 PAGE: (1:408)

 BUFFER:

 BUF @0x0000000004F88280

 bpage = 0x00000001AC9AA000          bhash = 0x0000000000000000          bpageno = (1:408)
bdbid = 8 breferences = 0 bcputicks = 0
bsampleCount = 0 bUse1 = 4178 bstat = 0x9
blog = 0x15a bnext = 0x0000000000000000 PAGE HEADER: Page @0x00000001AC9AA000 m_pageId = (1:408) m_headerVersion = 1 m_type = 4
m_typeFlagBits = 0x0 m_level = 0 m_flagBits = 0xc200
m_objId (AllocUnitId.idObj) = 254 m_indexId (AllocUnitId.idInd) = 256
Metadata: AllocUnitId = 72057594054574080
Metadata: PartitionId = 72057594046840832 Metadata: IndexId = 2
Metadata: ObjectId = 434100587 m_prevPage = (0:0) m_nextPage = (0:0)
pminlen = 0 m_slotCnt = 1 m_freeCnt = 7898
m_freeData = 292 m_reservedCnt = 0 m_lsn = (2561:1989:66)
m_xactReserved = 0 m_xdesId = (0:0) m_ghostRecCnt = 0
m_tornBits = 1200443217 DB Frag ID = 1 Allocation Status GAM (1:2) = ALLOCATED SGAM (1:3) = NOT ALLOCATED PFS (1:1) = 0x44 ALLOCATED 100_PCT_FULL
DIFF (1:6) = CHANGED ML (1:7) = NOT MIN_LOGGED Blob row at: Page (1:408) Slot 0 Length: 196 Type: 2 (INTERNAL) Blob Id: 28967305216 Level: 0 MaxLinks: 501 CurLinks: 11 Child 0 at Page (1:403) Slot 0 Size: 8040 Offset: 8040 Child 1 at Page (1:404) Slot 0 Size: 8040 Offset: 16080 Child 2 at Page (1:405) Slot 0 Size: 8040 Offset: 24120 Child 3 at Page (1:406) Slot 0 Size: 8040 Offset: 32160 Child 4 at Page (1:407) Slot 0 Size: 8040 Offset: 40200 Child 5 at Page (1:409) Slot 0 Size: 8040 Offset: 48240 Child 6 at Page (1:410) Slot 0 Size: 8040 Offset: 56280 Child 7 at Page (1:411) Slot 0 Size: 8040 Offset: 64320 Child 8 at Page (1:412) Slot 0 Size: 8040 Offset: 72360 Child 9 at Page (1:413) Slot 0 Size: 8040 Offset: 80400 Child 10 at Page (1:414) Slot 0 Size: 312 Offset: 80712 DBCC 执行完毕。如果 DBCC 输出了错误信息,请与系统管理员联系。

Child 0 at Page (1:403) Slot 0 Size: 8040 Offset: 8040

Child 1 at Page (1:404) Slot 0 Size: 8040 Offset: 16080

Child 2 at Page (1:405) Slot 0 Size: 8040 Offset: 24120

Child 3 at Page (1:406) Slot 0 Size: 8040 Offset: 32160

Child 4 at Page (1:407) Slot 0 Size: 8040 Offset: 40200

Child 5 at Page (1:409) Slot 0 Size: 8040 Offset: 48240

Child 6 at Page (1:410) Slot 0 Size: 8040 Offset: 56280

Child 7 at Page (1:411) Slot 0 Size: 8040 Offset: 64320

Child 8 at Page (1:412) Slot 0 Size: 8040 Offset: 72360

Child 9 at Page (1:413) Slot 0 Size: 8040 Offset: 80400

Child 10 at Page (1:414) Slot 0 Size: 312 Offset: 80712

可以看到他属下所连接的LOB子页面

409页面的内容

 PAGE: (1:409)

 BUFFER:

 BUF @0x0000000004F881C0

 bpage = 0x00000001AC9B2000          bhash = 0x0000000000000000          bpageno = (1:409)
bdbid = 8 breferences = 0 bcputicks = 0
bsampleCount = 0 bUse1 = 4452 bstat = 0x9
blog = 0x15a bnext = 0x0000000000000000 PAGE HEADER: Page @0x00000001AC9B2000 m_pageId = (1:409) m_headerVersion = 1 m_type = 3
m_typeFlagBits = 0x0 m_level = 0 m_flagBits = 0x8200
m_objId (AllocUnitId.idObj) = 254 m_indexId (AllocUnitId.idInd) = 256
Metadata: AllocUnitId = 72057594054574080
Metadata: PartitionId = 72057594046840832 Metadata: IndexId = 2
Metadata: ObjectId = 434100587 m_prevPage = (0:0) m_nextPage = (0:0)
pminlen = 0 m_slotCnt = 1 m_freeCnt = 40
m_freeData = 8150 m_reservedCnt = 0 m_lsn = (2561:1989:22)
m_xactReserved = 0 m_xdesId = (0:0) m_ghostRecCnt = 0
m_tornBits = -454517409 DB Frag ID = 1 Allocation Status GAM (1:2) = ALLOCATED SGAM (1:3) = NOT ALLOCATED PFS (1:1) = 0x44 ALLOCATED 100_PCT_FULL
DIFF (1:6) = CHANGED ML (1:7) = NOT MIN_LOGGED Blob row at: Page (1:409) Slot 0 Length: 8054 Type: 3 (DATA) Blob Id:28967305216 000000005815A06E: 00000002 01960000 00000002 01970000 ................ 000000005815A07E: 00000002 01980000 00000002 01990000 ................ 000000005815A08E: 00000002 019a0000 00000002 019b0000 ................ 000000005815A09E: 00000002 019c0000 00000002 019d0000 ................ 000000005815A0AE: 00000002 019e0000 00000002 019f0000 ................ 000000005815A0BE: 00000002 01a00000 00000002 01a10000 ................ 000000005815A0CE: 00000002 01a20000 00000002 01a30000 ................ 000000005815A0DE: 00000002 01a40000 00000002 01a50000 ................ 000000005815A0EE: 00000002 01a60000 00000002 01a70000 ................ 000000005815A0FE: 00000002 01a80000 00000002 01a90000 ................ 000000005815A10E: 00000002 01aa0000 00000002 01ab0000 ................ 000000005815A11E: 00000002 01ac0000 00000002 01ad0000 ................ 000000005815A12E: 00000002 01ae0000 00000002 01af0000 ................ 000000005815A13E: 00000002 01b00000 00000002 01b10000 ................ 000000005815A14E: 00000002 01b20000 00000002 01b30000 ................ 000000005815A15E: 00000002 01b40000 00000002 01b50000 ................ 000000005815A16E: 00000002 01b60000 00000002 01b70000 ................ 000000005815A17E: 00000002 01b80000 00000002 01b90000 ................ 000000005815A18E: 00000002 01ba0000 00000002 01bb0000 ................ 000000005815A19E: 00000002 01bc0000 00000002 01bd0000 ................ 000000005815A1AE: 00000002 01be0000 00000002 01bf0000 ................ 000000005815A1BE: 00000002 01c00000 00000002 01c10000 ................ 000000005815A1CE: 00000002 01c20000 00000002 01c30000 ................ 000000005815A1DE: 00000002 01c40000 00000003 00000000 ................ 000000005815A1EE: 00000003 00010000 00000003 00020000 ................ 000000005815A1FE: 00000003 00030000 00000003 00040000 ................ 000000005815A20E: 00000003 00050000 00000003 00060000 ................ 000000005815A21E: 00000003 00070000 00000003 00080000 ................ 000000005815A22E: 00000003 00090000 00000003 000a0000 ................ 000000005815A23E: 00000003 000b0000 00000003 000c0000 ................ 000000005815A24E: 00000003 000d0000 00000003 000e0000 ................ 000000005815A25E: 00000003 000f0000 00000003 00100000 ................ 000000005815A26E: 00000003 00110000 00000003 00120000 ................ 000000005815A27E: 00000003 00130000 00000003 00140000 ................ 000000005815A28E: 00000003 00150000 00000003 00160000 ................ 000000005815A29E: 00000003 00170000 00000003 00180000 ................ 000000005815A2AE: 00000003 00190000 00000003 001a0000 ................ 000000005815A2BE: 00000003 001b0000 00000003 001c0000 ................ 000000005815A2CE: 00000003 001d0000 00000003 001e0000 ................ 000000005815A2DE: 00000003 001f0000 00000003 00200000 .............. . 000000005815A2EE: 00000003 00210000 00000003 00220000 ......!.......". 000000005815A2FE: 00000003 00230000 00000003 00240000 ......#.......$. 000000005815A30E: 00000003 00250000 00000003 00260000 ......%.......&. 000000005815A31E: 00000003 00270000 00000003 00280000 ......'.......(. 000000005815A32E: 00000003 00290000 00000003 002a0000 ......).......*. 000000005815A33E: 00000003 002b0000 00000003 002c0000 ......+.......,. 000000005815A34E: 00000003 002d0000 00000003 002e0000 ......-......... 000000005815A35E: 00000003 002f0000 00000003 00300000 ....../.......0. 000000005815A36E: 00000003 00310000 00000003 00320000 ......1.......2. 000000005815A37E: 00000003 00330000 00000003 00340000 ......3.......4. 000000005815A38E: 00000003 00350000 00000003 00360000 ......5.......6. 000000005815A39E: 00000003 00370000 00000003 00380000 ......7.......8. 000000005815A3AE: 00000003 00390000 00000003 003a0000 ......9.......:. 000000005815A3BE: 00000003 003b0000 00000003 003c0000 ......;.......<. 000000005815A3CE: 00000003 003d0000 00000003 003e0000 ......=.......>. 000000005815A3DE: 00000003 003f0000 00000003 00400000 ......?.......@. 000000005815A3EE: 00000003 00410000 00000003 00420000 ......A.......B. 000000005815A3FE: 00000003 00430000 00000003 00440000 ......C.......D. 000000005815A40E: 00000003 00450000 00000003 00460000 ......E.......F. 000000005815A41E: 00000003 00470000 00000003 00480000 ......G.......H. 000000005815A42E: 00000003 00490000 00000003 004a0000 ......I.......J. 000000005815A43E: 00000003 004b0000 00000003 004c0000 ......K.......L. 000000005815A44E: 00000003 004d0000 00000003 004e0000 ......M.......N. 000000005815A45E: 00000003 004f0000 00000003 00500000 ......O.......P. 000000005815A46E: 00000003 00510000 00000003 00520000 ......Q.......R. 000000005815A47E: 00000003 00530000 00000003 00540000 ......S.......T. 000000005815A48E: 00000003 00550000 00000003 00560000 ......U.......V. 000000005815A49E: 00000003 00570000 00000003 00580000 ......W.......X. 000000005815A4AE: 00000003 00590000 00000003 005a0000 ......Y.......Z. 000000005815A4BE: 00000003 005b0000 00000003 005c0000 ......[.......\. 000000005815A4CE: 00000003 005d0000 00000003 005e0000 ......].......^. 000000005815A4DE: 00000003 005f0000 00000003 00600000 ......_.......`. 000000005815A4EE: 00000003 00610000 00000003 00620000 ......a.......b. 000000005815A4FE: 00000003 00630000 00000003 00640000 ......c.......d. 000000005815A50E: 00000003 00650000 00000003 00660000 ......e.......f. 000000005815A51E: 00000003 00670000 00000003 00680000 ......g.......h. 000000005815A52E: 00000003 00690000 00000003 006a0000 ......i.......j. 000000005815A53E: 00000003 006b0000 00000003 006c0000 ......k.......l. 000000005815A54E: 00000003 006d0000 00000003 006e0000 ......m.......n. 000000005815A55E: 00000003 006f0000 00000003 00700000 ......o.......p. 000000005815A56E: 00000003 00710000 00000003 00720000 ......q.......r. 000000005815A57E: 00000003 00730000 00000003 00740000 ......s.......t. 000000005815A58E: 00000003 00750000 00000003 00760000 ......u.......v. 000000005815A59E: 00000003 00770000 00000003 00780000 ......w.......x. 000000005815A5AE: 00000003 00790000 00000003 007a0000 ......y.......z. 000000005815A5BE: 00000003 007b0000 00000003 007c0000 ......{.......|. 000000005815A5CE: 00000003 007d0000 00000003 007e0000 ......}.......~. 000000005815A5DE: 00000003 007f0000 00000003 00800000 ................ 000000005815A5EE: 00000003 00810000 00000003 00820000 ................ 000000005815A5FE: 00000003 00830000 00000003 00840000 ................ 000000005815A60E: 00000003 00850000 00000003 00860000 ................ 000000005815A61E: 00000003 00870000 00000003 00880000 ................ 000000005815A62E: 00000003 00890000 00000003 008a0000 ................ 000000005815A63E: 00000003 008b0000 00000003 008c0000 ................ 000000005815A64E: 00000003 008d0000 00000003 008e0000 ................ 000000005815A65E: 00000003 008f0000 00000003 00900000 ................ 000000005815A66E: 00000003 00910000 00000003 00920000 ................ 000000005815A67E: 00000003 00930000 00000003 00940000 ................ 000000005815A68E: 00000003 00950000 00000003 00960000 ................ 000000005815A69E: 00000003 00970000 00000003 00980000 ................ 000000005815A6AE: 00000003 00990000 00000003 009a0000 ................ 000000005815A6BE: 00000003 009b0000 00000003 009c0000 ................ 000000005815A6CE: 00000003 009d0000 00000003 009e0000 ................ 000000005815A6DE: 00000003 009f0000 00000003 00a00000 ................ 000000005815A6EE: 00000003 00a10000 00000003 00a20000 ................ 000000005815A6FE: 00000003 00a30000 00000003 00a40000 ................ 000000005815A70E: 00000003 00a50000 00000003 00a60000 ................ 000000005815A71E: 00000003 00a70000 00000003 00a80000 ................ 000000005815A72E: 00000003 00a90000 00000003 00aa0000 ................ 000000005815A73E: 00000003 00ab0000 00000003 00ac0000 ................ 000000005815A74E: 00000003 00ad0000 00000003 00ae0000 ................ 000000005815A75E: 00000003 00af0000 00000003 00b00000 ................ 000000005815A76E: 00000003 00b10000 00000003 00b20000 ................ 000000005815A77E: 00000003 00b30000 00000003 00b40000 ................ 000000005815A78E: 00000003 00b50000 00000003 00b60000 ................ 000000005815A79E: 00000003 00b70000 00000003 00b80000 ................ 000000005815A7AE: 00000003 00b90000 00000003 00ba0000 ................ 000000005815A7BE: 00000003 00bb0000 00000003 00bc0000 ................ 000000005815A7CE: 00000003 00bd0000 00000003 00be0000 ................ 000000005815A7DE: 00000003 00bf0000 00000003 00c00000 ................ 000000005815A7EE: 00000003 00c10000 00000003 00c20000 ................ 000000005815A7FE: 00000003 00c30000 00000003 00c40000 ................ 000000005815A80E: 00000003 00c50000 00000003 00c60000 ................ 000000005815A81E: 00000003 00c70000 00000003 00c80000 ................ 000000005815A82E: 00000003 00c90000 00000003 00ca0000 ................ 000000005815A83E: 00000003 00cb0000 00000003 00cc0000 ................ 000000005815A84E: 00000003 00cd0000 00000003 00ce0000 ................ 000000005815A85E: 00000003 00cf0000 00000003 00d00000 ................ 000000005815A86E: 00000003 00d10000 00000003 00d20000 ................ 000000005815A87E: 00000003 00d30000 00000003 00d40000 ................ 000000005815A88E: 00000003 00d50000 00000003 00d60000 ................ 000000005815A89E: 00000003 00d70000 00000003 00d80000 ................ 000000005815A8AE: 00000003 00d90000 00000003 00da0000 ................ 000000005815A8BE: 00000003 00db0000 00000003 00dc0000 ................ 000000005815A8CE: 00000003 00dd0000 00000003 00de0000 ................ 000000005815A8DE: 00000003 00df0000 00000003 00e00000 ................ 000000005815A8EE: 00000003 00e10000 00000003 00e20000 ................ 000000005815A8FE: 00000003 00e30000 00000003 00e40000 ................ 000000005815A90E: 00000003 00e50000 00000003 00e60000 ................ 000000005815A91E: 00000003 00e70000 00000003 00e80000 ................ 000000005815A92E: 00000003 00e90000 00000003 00ea0000 ................ 000000005815A93E: 00000003 00eb0000 00000003 00ec0000 ................ 000000005815A94E: 00000003 00ed0000 00000003 00ee0000 ................ 000000005815A95E: 00000003 00ef0000 00000003 00f00000 ................ 000000005815A96E: 00000003 00f10000 00000003 00f20000 ................ 000000005815A97E: 00000003 00f30000 00000003 00f40000 ................ 000000005815A98E: 00000003 00f50000 00000003 00f60000 ................ 000000005815A99E: 00000003 00f70000 00000003 00f80000 ................ 000000005815A9AE: 00000003 00f90000 00000003 00fa0000 ................ 000000005815A9BE: 00000003 00fb0000 00000003 00fc0000 ................ 000000005815A9CE: 00000003 00fd0000 00000003 00fe0000 ................ 000000005815A9DE: 00000003 00ff0000 00000003 01000000 ................ 000000005815A9EE: 00000003 01010000 00000003 01020000 ................ 000000005815A9FE: 00000003 01030000 00000003 01040000 ................ 000000005815AA0E: 00000003 01050000 00000003 01060000 ................ 000000005815AA1E: 00000003 01070000 00000003 01080000 ................ 000000005815AA2E: 00000003 01090000 00000003 010a0000 ................ 000000005815AA3E: 00000003 010b0000 00000003 010c0000 ................ 000000005815AA4E: 00000003 010d0000 00000003 010e0000 ................ 000000005815AA5E: 00000003 010f0000 00000003 01100000 ................ 000000005815AA6E: 00000003 01110000 00000003 01120000 ................ 000000005815AA7E: 00000003 01130000 00000003 01140000 ................ 000000005815AA8E: 00000003 01150000 00000003 01160000 ................ 000000005815AA9E: 00000003 01170000 00000003 01180000 ................ 000000005815AAAE: 00000003 01190000 00000003 011a0000 ................ 000000005815AABE: 00000003 011b0000 00000003 011c0000 ................ 000000005815AACE: 00000003 011d0000 00000003 011e0000 ................ 000000005815AADE: 00000003 011f0000 00000003 01200000 .............. . 000000005815AAEE: 00000003 01210000 00000003 01220000 ......!.......". 000000005815AAFE: 00000003 01230000 00000003 01240000 ......#.......$. 000000005815AB0E: 00000003 01250000 00000003 01260000 ......%.......&. 000000005815AB1E: 00000003 01270000 00000003 01280000 ......'.......(. 000000005815AB2E: 00000003 01290000 00000003 012a0000 ......).......*. 000000005815AB3E: 00000003 012b0000 00000003 012c0000 ......+.......,. 000000005815AB4E: 00000003 012d0000 00000003 012e0000 ......-......... 000000005815AB5E: 00000003 012f0000 00000003 01300000 ....../.......0. 000000005815AB6E: 00000003 01310000 00000003 01320000 ......1.......2. 000000005815AB7E: 00000003 01330000 00000003 01340000 ......3.......4. 000000005815AB8E: 00000003 01350000 00000003 01360000 ......5.......6. 000000005815AB9E: 00000003 01370000 00000003 01380000 ......7.......8. 000000005815ABAE: 00000003 01390000 00000003 013a0000 ......9.......:. 000000005815ABBE: 00000003 013b0000 00000003 013c0000 ......;.......<. 000000005815ABCE: 00000003 013d0000 00000003 013e0000 ......=.......>. 000000005815ABDE: 00000003 013f0000 00000003 01400000 ......?.......@. 000000005815ABEE: 00000003 01410000 00000003 01420000 ......A.......B. 000000005815ABFE: 00000003 01430000 00000003 01440000 ......C.......D. 000000005815AC0E: 00000003 01450000 00000003 01460000 ......E.......F. 000000005815AC1E: 00000003 01470000 00000003 01480000 ......G.......H. 000000005815AC2E: 00000003 01490000 00000003 014a0000 ......I.......J. 000000005815AC3E: 00000003 014b0000 00000003 014c0000 ......K.......L. 000000005815AC4E: 00000003 014d0000 00000003 014e0000 ......M.......N. 000000005815AC5E: 00000003 014f0000 00000003 01500000 ......O.......P. 000000005815AC6E: 00000003 01510000 00000003 01520000 ......Q.......R. 000000005815AC7E: 00000003 01530000 00000003 01540000 ......S.......T. 000000005815AC8E: 00000003 01550000 00000003 01560000 ......U.......V. 000000005815AC9E: 00000003 01570000 00000003 01580000 ......W.......X. 000000005815ACAE: 00000003 01590000 00000003 015a0000 ......Y.......Z. 000000005815ACBE: 00000003 015b0000 00000003 015c0000 ......[.......\. 000000005815ACCE: 00000003 015d0000 00000003 015e0000 ......].......^. 000000005815ACDE: 00000003 015f0000 00000003 01600000 ......_.......`. 000000005815ACEE: 00000003 01610000 00000003 01620000 ......a.......b. 000000005815ACFE: 00000003 01630000 00000003 01640000 ......c.......d. 000000005815AD0E: 00000003 01650000 00000003 01660000 ......e.......f. 000000005815AD1E: 00000003 01670000 00000003 01680000 ......g.......h. 000000005815AD2E: 00000003 01690000 00000003 016a0000 ......i.......j. 000000005815AD3E: 00000003 016b0000 00000003 016c0000 ......k.......l. 000000005815AD4E: 00000003 016d0000 00000003 016e0000 ......m.......n. 000000005815AD5E: 00000003 016f0000 00000003 01700000 ......o.......p. 000000005815AD6E: 00000003 01710000 00000003 01720000 ......q.......r. 000000005815AD7E: 00000003 01730000 00000003 01740000 ......s.......t. 000000005815AD8E: 00000003 01750000 00000003 01760000 ......u.......v. 000000005815AD9E: 00000003 01770000 00000003 01780000 ......w.......x. 000000005815ADAE: 00000003 01790000 00000003 017a0000 ......y.......z. 000000005815ADBE: 00000003 017b0000 00000003 017c0000 ......{.......|. 000000005815ADCE: 00000003 017d0000 00000003 017e0000 ......}.......~. 000000005815ADDE: 00000003 017f0000 00000003 01800000 ................ 000000005815ADEE: 00000003 01810000 00000003 01820000 ................ 000000005815ADFE: 00000003 01830000 00000003 01840000 ................ 000000005815AE0E: 00000003 01850000 00000003 01860000 ................ 000000005815AE1E: 00000003 01870000 00000003 01880000 ................ 000000005815AE2E: 00000003 01890000 00000003 018a0000 ................ 000000005815AE3E: 00000003 018b0000 00000003 018c0000 ................ 000000005815AE4E: 00000003 018d0000 00000003 018e0000 ................ 000000005815AE5E: 00000003 018f0000 00000003 01900000 ................ 000000005815AE6E: 00000003 01910000 00000003 01920000 ................ 000000005815AE7E: 00000003 01930000 00000003 01940000 ................ 000000005815AE8E: 00000003 01950000 00000003 01960000 ................ 000000005815AE9E: 00000003 01970000 00000003 01980000 ................ 000000005815AEAE: 00000003 01990000 00000003 019a0000 ................ 000000005815AEBE: 00000003 019b0000 00000003 019c0000 ................ 000000005815AECE: 00000003 019d0000 00000003 019e0000 ................ 000000005815AEDE: 00000003 019f0000 00000003 01a00000 ................ 000000005815AEEE: 00000003 01a10000 00000003 01a20000 ................ 000000005815AEFE: 00000003 01a30000 00000003 01a40000 ................ 000000005815AF0E: 00000003 01a50000 00000003 01a60000 ................ 000000005815AF1E: 00000003 01a70000 00000003 01a80000 ................ 000000005815AF2E: 00000003 01a90000 00000003 01aa0000 ................ 000000005815AF3E: 00000003 01ab0000 00000003 01ac0000 ................ 000000005815AF4E: 00000003 01ad0000 00000003 01ae0000 ................ 000000005815AF5E: 00000003 01af0000 00000003 01b00000 ................ 000000005815AF6E: 00000003 01b10000 00000003 01b20000 ................ 000000005815AF7E: 00000003 01b30000 00000003 01b40000 ................ 000000005815AF8E: 00000003 01b50000 00000003 01b60000 ................ 000000005815AF9E: 00000003 01b70000 00000003 01b80000 ................ 000000005815AFAE: 00000003 01b90000 00000003 01ba0000 ................ 000000005815AFBE: 00000003 01bb0000 00000003 01bc0000 ................ 000000005815AFCE: 00000003 01bd0000 00000003 01be0000 ................ 000000005815AFDE: 00000003 01bf0000 00000003 01c00000 ................ 000000005815AFEE: 00000003 01c10000 00000003 01c20000 ................ 000000005815AFFE: 00000003 01c30000 00000003 01c40000 ................ 000000005815B00E: 00000004 00000000 00000004 00010000 ................ 000000005815B01E: 00000004 00020000 00000004 00030000 ................ 000000005815B02E: 00000004 00040000 00000004 00050000 ................ 000000005815B03E: 00000004 00060000 00000004 00070000 ................ 000000005815B04E: 00000004 00080000 00000004 00090000 ................ 000000005815B05E: 00000004 000a0000 00000004 000b0000 ................ 000000005815B06E: 00000004 000c0000 00000004 000d0000 ................ 000000005815B07E: 00000004 000e0000 00000004 000f0000 ................ 000000005815B08E: 00000004 00100000 00000004 00110000 ................ 000000005815B09E: 00000004 00120000 00000004 00130000 ................ 000000005815B0AE: 00000004 00140000 00000004 00150000 ................ 000000005815B0BE: 00000004 00160000 00000004 00170000 ................ 000000005815B0CE: 00000004 00180000 00000004 00190000 ................ 000000005815B0DE: 00000004 001a0000 00000004 001b0000 ................ 000000005815B0EE: 00000004 001c0000 00000004 001d0000 ................ 000000005815B0FE: 00000004 001e0000 00000004 001f0000 ................ 000000005815B10E: 00000004 00200000 00000004 00210000 ...... .......!. 000000005815B11E: 00000004 00220000 00000004 00230000 ......".......#. 000000005815B12E: 00000004 00240000 00000004 00250000 ......$.......%. 000000005815B13E: 00000004 00260000 00000004 00270000 ......&.......'. 000000005815B14E: 00000004 00280000 00000004 00290000 ......(.......). 000000005815B15E: 00000004 002a0000 00000004 002b0000 ......*.......+. 000000005815B16E: 00000004 002c0000 00000004 002d0000 ......,.......-. 000000005815B17E: 00000004 002e0000 00000004 002f0000 ............../. 000000005815B18E: 00000004 00300000 00000004 00310000 ......0.......1. 000000005815B19E: 00000004 00320000 00000004 00330000 ......2.......3. 000000005815B1AE: 00000004 00340000 00000004 00350000 ......4.......5. 000000005815B1BE: 00000004 00360000 00000004 00370000 ......6.......7. 000000005815B1CE: 00000004 00380000 00000004 00390000 ......8.......9. 000000005815B1DE: 00000004 003a0000 00000004 003b0000 ......:.......;. 000000005815B1EE: 00000004 003c0000 00000004 003d0000 ......<.......=. 000000005815B1FE: 00000004 003e0000 00000004 003f0000 ......>.......?. 000000005815B20E: 00000004 00400000 00000004 00410000 ......@.......A. 000000005815B21E: 00000004 00420000 00000004 00430000 ......B.......C. 000000005815B22E: 00000004 00440000 00000004 00450000 ......D.......E. 000000005815B23E: 00000004 00460000 00000004 00470000 ......F.......G. 000000005815B24E: 00000004 00480000 00000004 00490000 ......H.......I. 000000005815B25E: 00000004 004a0000 00000004 004b0000 ......J.......K. 000000005815B26E: 00000004 004c0000 00000004 004d0000 ......L.......M. 000000005815B27E: 00000004 004e0000 00000004 004f0000 ......N.......O. 000000005815B28E: 00000004 00500000 00000004 00510000 ......P.......Q. 000000005815B29E: 00000004 00520000 00000004 00530000 ......R.......S. 000000005815B2AE: 00000004 00540000 00000004 00550000 ......T.......U. 000000005815B2BE: 00000004 00560000 00000004 00570000 ......V.......W. 000000005815B2CE: 00000004 00580000 00000004 00590000 ......X.......Y. 000000005815B2DE: 00000004 005a0000 00000004 005b0000 ......Z.......[. 000000005815B2EE: 00000004 005c0000 00000004 005d0000 ......\.......]. 000000005815B2FE: 00000004 005e0000 00000004 005f0000 ......^......._. 000000005815B30E: 00000004 00600000 00000004 00610000 ......`.......a. 000000005815B31E: 00000004 00620000 00000004 00630000 ......b.......c. 000000005815B32E: 00000004 00640000 00000004 00650000 ......d.......e. 000000005815B33E: 00000004 00660000 00000004 00670000 ......f.......g. 000000005815B34E: 00000004 00680000 00000004 00690000 ......h.......i. 000000005815B35E: 00000004 006a0000 00000004 006b0000 ......j.......k. 000000005815B36E: 00000004 006c0000 00000004 006d0000 ......l.......m. 000000005815B37E: 00000004 006e0000 00000004 006f0000 ......n.......o. 000000005815B38E: 00000004 00700000 00000004 00710000 ......p.......q. 000000005815B39E: 00000004 00720000 00000004 00730000 ......r.......s. 000000005815B3AE: 00000004 00740000 00000004 00750000 ......t.......u. 000000005815B3BE: 00000004 00760000 00000004 00770000 ......v.......w. 000000005815B3CE: 00000004 00780000 00000004 00790000 ......x.......y. 000000005815B3DE: 00000004 007a0000 00000004 007b0000 ......z.......{. 000000005815B3EE: 00000004 007c0000 00000004 007d0000 ......|.......}. 000000005815B3FE: 00000004 007e0000 00000004 007f0000 ......~......... 000000005815B40E: 00000004 00800000 00000004 00810000 ................ 000000005815B41E: 00000004 00820000 00000004 00830000 ................ 000000005815B42E: 00000004 00840000 00000004 00850000 ................ 000000005815B43E: 00000004 00860000 00000004 00870000 ................ 000000005815B44E: 00000004 00880000 00000004 00890000 ................ 000000005815B45E: 00000004 008a0000 00000004 008b0000 ................ 000000005815B46E: 00000004 008c0000 00000004 008d0000 ................ 000000005815B47E: 00000004 008e0000 00000004 008f0000 ................ 000000005815B48E: 00000004 00900000 00000004 00910000 ................ 000000005815B49E: 00000004 00920000 00000004 00930000 ................ 000000005815B4AE: 00000004 00940000 00000004 00950000 ................ 000000005815B4BE: 00000004 00960000 00000004 00970000 ................ 000000005815B4CE: 00000004 00980000 00000004 00990000 ................ 000000005815B4DE: 00000004 009a0000 00000004 009b0000 ................ 000000005815B4EE: 00000004 009c0000 00000004 009d0000 ................ 000000005815B4FE: 00000004 009e0000 00000004 009f0000 ................ 000000005815B50E: 00000004 00a00000 00000004 00a10000 ................ 000000005815B51E: 00000004 00a20000 00000004 00a30000 ................ 000000005815B52E: 00000004 00a40000 00000004 00a50000 ................ 000000005815B53E: 00000004 00a60000 00000004 00a70000 ................ 000000005815B54E: 00000004 00a80000 00000004 00a90000 ................ 000000005815B55E: 00000004 00aa0000 00000004 00ab0000 ................ 000000005815B56E: 00000004 00ac0000 00000004 00ad0000 ................ 000000005815B57E: 00000004 00ae0000 00000004 00af0000 ................ 000000005815B58E: 00000004 00b00000 00000004 00b10000 ................ 000000005815B59E: 00000004 00b20000 00000004 00b30000 ................ 000000005815B5AE: 00000004 00b40000 00000004 00b50000 ................ 000000005815B5BE: 00000004 00b60000 00000004 00b70000 ................ 000000005815B5CE: 00000004 00b80000 00000004 00b90000 ................ 000000005815B5DE: 00000004 00ba0000 00000004 00bb0000 ................ 000000005815B5EE: 00000004 00bc0000 00000004 00bd0000 ................ 000000005815B5FE: 00000004 00be0000 00000004 00bf0000 ................ 000000005815B60E: 00000004 00c00000 00000004 00c10000 ................ 000000005815B61E: 00000004 00c20000 00000004 00c30000 ................ 000000005815B62E: 00000004 00c40000 00000004 00c50000 ................ 000000005815B63E: 00000004 00c60000 00000004 00c70000 ................ 000000005815B64E: 00000004 00c80000 00000004 00c90000 ................ 000000005815B65E: 00000004 00ca0000 00000004 00cb0000 ................ 000000005815B66E: 00000004 00cc0000 00000004 00cd0000 ................ 000000005815B67E: 00000004 00ce0000 00000004 00cf0000 ................ 000000005815B68E: 00000004 00d00000 00000004 00d10000 ................ 000000005815B69E: 00000004 00d20000 00000004 00d30000 ................ 000000005815B6AE: 00000004 00d40000 00000004 00d50000 ................ 000000005815B6BE: 00000004 00d60000 00000004 00d70000 ................ 000000005815B6CE: 00000004 00d80000 00000004 00d90000 ................ 000000005815B6DE: 00000004 00da0000 00000004 00db0000 ................ 000000005815B6EE: 00000004 00dc0000 00000004 00dd0000 ................ 000000005815B6FE: 00000004 00de0000 00000004 00df0000 ................ 000000005815B70E: 00000004 00e00000 00000004 00e10000 ................ 000000005815B71E: 00000004 00e20000 00000004 00e30000 ................ 000000005815B72E: 00000004 00e40000 00000004 00e50000 ................ 000000005815B73E: 00000004 00e60000 00000004 00e70000 ................ 000000005815B74E: 00000004 00e80000 00000004 00e90000 ................ 000000005815B75E: 00000004 00ea0000 00000004 00eb0000 ................ 000000005815B76E: 00000004 00ec0000 00000004 00ed0000 ................ 000000005815B77E: 00000004 00ee0000 00000004 00ef0000 ................ 000000005815B78E: 00000004 00f00000 00000004 00f10000 ................ 000000005815B79E: 00000004 00f20000 00000004 00f30000 ................ 000000005815B7AE: 00000004 00f40000 00000004 00f50000 ................ 000000005815B7BE: 00000004 00f60000 00000004 00f70000 ................ 000000005815B7CE: 00000004 00f80000 00000004 00f90000 ................ 000000005815B7DE: 00000004 00fa0000 00000004 00fb0000 ................ 000000005815B7EE: 00000004 00fc0000 00000004 00fd0000 ................ 000000005815B7FE: 00000004 00fe0000 00000004 00ff0000 ................ 000000005815B80E: 00000004 01000000 00000004 01010000 ................ 000000005815B81E: 00000004 01020000 00000004 01030000 ................ 000000005815B82E: 00000004 01040000 00000004 01050000 ................ 000000005815B83E: 00000004 01060000 00000004 01070000 ................ 000000005815B84E: 00000004 01080000 00000004 01090000 ................ 000000005815B85E: 00000004 010a0000 00000004 010b0000 ................ 000000005815B86E: 00000004 010c0000 00000004 010d0000 ................ 000000005815B87E: 00000004 010e0000 00000004 010f0000 ................ 000000005815B88E: 00000004 01100000 00000004 01110000 ................ 000000005815B89E: 00000004 01120000 00000004 01130000 ................ 000000005815B8AE: 00000004 01140000 00000004 01150000 ................ 000000005815B8BE: 00000004 01160000 00000004 01170000 ................ 000000005815B8CE: 00000004 01180000 00000004 01190000 ................ 000000005815B8DE: 00000004 011a0000 00000004 011b0000 ................ 000000005815B8EE: 00000004 011c0000 00000004 011d0000 ................ 000000005815B8FE: 00000004 011e0000 00000004 011f0000 ................ 000000005815B90E: 00000004 01200000 00000004 01210000 ...... .......!. 000000005815B91E: 00000004 01220000 00000004 01230000 ......".......#. 000000005815B92E: 00000004 01240000 00000004 01250000 ......$.......%. 000000005815B93E: 00000004 01260000 00000004 01270000 ......&.......'. 000000005815B94E: 00000004 01280000 00000004 01290000 ......(.......). 000000005815B95E: 00000004 012a0000 00000004 012b0000 ......*.......+. 000000005815B96E: 00000004 012c0000 00000004 012d0000 ......,.......-. 000000005815B97E: 00000004 012e0000 00000004 012f0000 ............../. 000000005815B98E: 00000004 01300000 00000004 01310000 ......0.......1. 000000005815B99E: 00000004 01320000 00000004 01330000 ......2.......3. 000000005815B9AE: 00000004 01340000 00000004 01350000 ......4.......5. 000000005815B9BE: 00000004 01360000 00000004 01370000 ......6.......7. 000000005815B9CE: 00000004 01380000 00000004 01390000 ......8.......9. 000000005815B9DE: 00000004 013a0000 00000004 013b0000 ......:.......;. 000000005815B9EE: 00000004 013c0000 00000004 013d0000 ......<.......=. 000000005815B9FE: 00000004 013e0000 00000004 013f0000 ......>.......?. 000000005815BA0E: 00000004 01400000 00000004 01410000 ......@.......A. 000000005815BA1E: 00000004 01420000 00000004 01430000 ......B.......C. 000000005815BA2E: 00000004 01440000 00000004 01450000 ......D.......E. 000000005815BA3E: 00000004 01460000 00000004 01470000 ......F.......G. 000000005815BA4E: 00000004 01480000 00000004 01490000 ......H.......I. 000000005815BA5E: 00000004 014a0000 00000004 014b0000 ......J.......K. 000000005815BA6E: 00000004 014c0000 00000004 014d0000 ......L.......M. 000000005815BA7E: 00000004 014e0000 00000004 014f0000 ......N.......O. 000000005815BA8E: 00000004 01500000 00000004 01510000 ......P.......Q. 000000005815BA9E: 00000004 01520000 00000004 01530000 ......R.......S. 000000005815BAAE: 00000004 01540000 00000004 01550000 ......T.......U. 000000005815BABE: 00000004 01560000 00000004 01570000 ......V.......W. 000000005815BACE: 00000004 01580000 00000004 01590000 ......X.......Y. 000000005815BADE: 00000004 015a0000 00000004 015b0000 ......Z.......[. 000000005815BAEE: 00000004 015c0000 00000004 015d0000 ......\.......]. 000000005815BAFE: 00000004 015e0000 00000004 015f0000 ......^......._. 000000005815BB0E: 00000004 01600000 00000004 01610000 ......`.......a. 000000005815BB1E: 00000004 01620000 00000004 01630000 ......b.......c. 000000005815BB2E: 00000004 01640000 00000004 01650000 ......d.......e. 000000005815BB3E: 00000004 01660000 00000004 01670000 ......f.......g. 000000005815BB4E: 00000004 01680000 00000004 01690000 ......h.......i. 000000005815BB5E: 00000004 016a0000 00000004 016b0000 ......j.......k. 000000005815BB6E: 00000004 016c0000 00000004 016d0000 ......l.......m. 000000005815BB7E: 00000004 016e0000 00000004 016f0000 ......n.......o. 000000005815BB8E: 00000004 01700000 00000004 01710000 ......p.......q. 000000005815BB9E: 00000004 01720000 00000004 01730000 ......r.......s. 000000005815BBAE: 00000004 01740000 00000004 01750000 ......t.......u. 000000005815BBBE: 00000004 01760000 00000004 01770000 ......v.......w. 000000005815BBCE: 00000004 01780000 00000004 01790000 ......x.......y. 000000005815BBDE: 00000004 017a0000 00000004 017b0000 ......z.......{. 000000005815BBEE: 00000004 017c0000 00000004 017d0000 ......|.......}. 000000005815BBFE: 00000004 017e0000 00000004 017f0000 ......~......... 000000005815BC0E: 00000004 01800000 00000004 01810000 ................ 000000005815BC1E: 00000004 01820000 00000004 01830000 ................ 000000005815BC2E: 00000004 01840000 00000004 01850000 ................ 000000005815BC3E: 00000004 01860000 00000004 01870000 ................ 000000005815BC4E: 00000004 01880000 00000004 01890000 ................ 000000005815BC5E: 00000004 018a0000 00000004 018b0000 ................ 000000005815BC6E: 00000004 018c0000 00000004 018d0000 ................ 000000005815BC7E: 00000004 018e0000 00000004 018f0000 ................ 000000005815BC8E: 00000004 01900000 00000004 01910000 ................ 000000005815BC9E: 00000004 01920000 00000004 01930000 ................ 000000005815BCAE: 00000004 01940000 00000004 01950000 ................ 000000005815BCBE: 00000004 01960000 00000004 01970000 ................ 000000005815BCCE: 00000004 01980000 00000004 01990000 ................ 000000005815BCDE: 00000004 019a0000 00000004 019b0000 ................ 000000005815BCEE: 00000004 019c0000 00000004 019d0000 ................ 000000005815BCFE: 00000004 019e0000 00000004 019f0000 ................ 000000005815BD0E: 00000004 01a00000 00000004 01a10000 ................ 000000005815BD1E: 00000004 01a20000 00000004 01a30000 ................ 000000005815BD2E: 00000004 01a40000 00000004 01a50000 ................ 000000005815BD3E: 00000004 01a60000 00000004 01a70000 ................ 000000005815BD4E: 00000004 01a80000 00000004 01a90000 ................ 000000005815BD5E: 00000004 01aa0000 00000004 01ab0000 ................ 000000005815BD6E: 00000004 01ac0000 00000004 01ad0000 ................ 000000005815BD7E: 00000004 01ae0000 00000004 01af0000 ................ 000000005815BD8E: 00000004 01b00000 00000004 01b10000 ................ 000000005815BD9E: 00000004 01b20000 00000004 01b30000 ................ 000000005815BDAE: 00000004 01b40000 00000004 01b50000 ................ 000000005815BDBE: 00000004 01b60000 00000004 01b70000 ................ 000000005815BDCE: 00000004 01b80000 00000004 01b90000 ................ 000000005815BDDE: 00000004 01ba0000 00000004 01bb0000 ................ 000000005815BDEE: 00000004 01bc0000 00000004 01bd0000 ................ 000000005815BDFE: 00000004 01be0000 00000004 01bf0000 ................ 000000005815BE0E: 00000004 01c00000 00000004 01c10000 ................ 000000005815BE1E: 00000004 01c20000 00000004 01c30000 ................ 000000005815BE2E: 00000004 01c40000 00000005 00000000 ................ 000000005815BE3E: 00000005 00010000 00000005 00020000 ................ 000000005815BE4E: 00000005 00030000 00000005 00040000 ................ 000000005815BE5E: 00000005 00050000 00000005 00060000 ................ 000000005815BE6E: 00000005 00070000 00000005 00080000 ................ 000000005815BE7E: 00000005 00090000 00000005 000a0000 ................ 000000005815BE8E: 00000005 000b0000 00000005 000c0000 ................ 000000005815BE9E: 00000005 000d0000 00000005 000e0000 ................ 000000005815BEAE: 00000005 000f0000 00000005 00100000 ................ 000000005815BEBE: 00000005 00110000 00000005 00120000 ................ 000000005815BECE: 00000005 00130000 00000005 00140000 ................ 000000005815BEDE: 00000005 00150000 00000005 00160000 ................ 000000005815BEEE: 00000005 00170000 00000005 00180000 ................ 000000005815BEFE: 00000005 00190000 00000005 001a0000 ................ 000000005815BF0E: 00000005 001b0000 00000005 001c0000 ................ 000000005815BF1E: 00000005 001d0000 00000005 001e0000 ................ 000000005815BF2E: 00000005 001f0000 00000005 00200000 .............. . 000000005815BF3E: 00000005 00210000 00000005 00220000 ......!.......". 000000005815BF4E: 00000005 00230000 00000005 00240000 ......#.......$. 000000005815BF5E: 00000005 00250000 00000005 00260000 ......%.......&. 000000005815BF6E: 00000005 00270000 00000005 00280000 ......'.......(. 000000005815BF7E: 00000005 00290000 00000005 002a0000 ......).......*. 000000005815BF8E: 00000005 002b0000 00000005 002c0000 ......+.......,. 000000005815BF9E: 00000005 002d0000 00000005 002e0000 ......-......... 000000005815BFAE: 00000005 002f0000 00000005 00300000 ....../.......0. 000000005815BFBE: 00000005 00310000 00000005 00320000 ......1.......2. 000000005815BFCE: 00000005 00330000 ......3. DBCC 执行完毕。如果 DBCC 输出了错误信息,请与系统管理员联系。

可以看到跟刚才堆表中的LOB页面有很大的不同

这里Type:3(DATA)和Type:0(SMALL_ROOT)的意思:我估计是

Type:3(DATA):表示这个页面纯粹存储数据不存放指针

Type:0(SMALL_ROOT):表示这个页面包含数据和指针

因为前面已经说了:Lob_Mix_Page既包含指针也包含数据

SQLSERVER中的LOB页面简单研究

普通数据页面13874里的内容

 PAGE: (1:13874)

 BUFFER:

 BUF @0x0000000004F86900

 bpage = 0x00000001AC952000          bhash = 0x0000000000000000          bpageno = (1:13874)
bdbid = 8 breferences = 0 bcputicks = 0
bsampleCount = 0 bUse1 = 6259 bstat = 0x9
blog = 0x15a bnext = 0x0000000000000000 PAGE HEADER: Page @0x00000001AC952000 m_pageId = (1:13874) m_headerVersion = 1 m_type = 1
m_typeFlagBits = 0x0 m_level = 0 m_flagBits = 0x8200
m_objId (AllocUnitId.idObj) = 248 m_indexId (AllocUnitId.idInd) = 256
Metadata: AllocUnitId = 72057594054180864
Metadata: PartitionId = 72057594046644224 Metadata: IndexId = 0
Metadata: ObjectId = 434100587 m_prevPage = (0:0) m_nextPage = (0:0)
pminlen = 12 m_slotCnt = 453 m_freeCnt = 395
m_freeData = 6891 m_reservedCnt = 0 m_lsn = (2560:14034:2)
m_xactReserved = 0 m_xdesId = (0:0) m_ghostRecCnt = 0
m_tornBits = 994562372 DB Frag ID = 1 Allocation Status GAM (1:2) = ALLOCATED SGAM (1:3) = ALLOCATED
PFS (1:8088) = 0x64 MIXED_EXT ALLOCATED 100_PCT_FULL DIFF (1:6) = CHANGED
ML (1:7) = NOT MIN_LOGGED Slot 0 Offset 0x60 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A060 0000000000000000: 10000c00 c6010000 c6010000 020000 ............... Slot 0 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 454 Slot 0 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 454 Slot 1 Offset 0x6f Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A06F 0000000000000000: 10000c00 c7010000 c7010000 020000 ............... Slot 1 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 455 Slot 1 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 455 Slot 2 Offset 0x7e Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A07E 0000000000000000: 10000c00 c8010000 c8010000 020000 ............... Slot 2 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 456 Slot 2 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 456 Slot 3 Offset 0x8d Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A08D 0000000000000000: 10000c00 c9010000 c9010000 020000 ............... Slot 3 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 457 Slot 3 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 457 Slot 4 Offset 0x9c Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A09C 0000000000000000: 10000c00 ca010000 ca010000 020000 ............... Slot 4 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 458 Slot 4 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 458 Slot 5 Offset 0xab Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A0AB 0000000000000000: 10000c00 cb010000 cb010000 020000 ............... Slot 5 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 459 Slot 5 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 459 Slot 6 Offset 0xba Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A0BA 0000000000000000: 10000c00 cc010000 cc010000 020000 ............... Slot 6 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 460 Slot 6 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 460 Slot 7 Offset 0xc9 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A0C9 0000000000000000: 10000c00 cd010000 cd010000 020000 ............... Slot 7 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 461 Slot 7 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 461 Slot 8 Offset 0xd8 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A0D8 0000000000000000: 10000c00 ce010000 ce010000 020000 ............... Slot 8 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 462 Slot 8 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 462 Slot 9 Offset 0xe7 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A0E7 0000000000000000: 10000c00 cf010000 cf010000 020000 ............... Slot 9 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 463 Slot 9 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 463 Slot 10 Offset 0xf6 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A0F6 0000000000000000: 10000c00 d0010000 d0010000 020000 ............... Slot 10 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 464 Slot 10 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 464 Slot 11 Offset 0x105 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A105 0000000000000000: 10000c00 d1010000 d1010000 020000 ............... Slot 11 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 465 Slot 11 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 465 Slot 12 Offset 0x114 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A114 0000000000000000: 10000c00 d2010000 d2010000 020000 ............... Slot 12 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 466 Slot 12 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 466 Slot 13 Offset 0x123 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A123 0000000000000000: 10000c00 d3010000 d3010000 020000 ............... Slot 13 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 467 Slot 13 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 467 Slot 14 Offset 0x132 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A132 0000000000000000: 10000c00 d4010000 d4010000 020000 ............... Slot 14 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 468 Slot 14 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 468 Slot 15 Offset 0x141 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A141 0000000000000000: 10000c00 d5010000 d5010000 020000 ............... Slot 15 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 469 Slot 15 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 469 Slot 16 Offset 0x150 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A150 0000000000000000: 10000c00 d6010000 d6010000 020000 ............... Slot 16 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 470 Slot 16 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 470 Slot 17 Offset 0x15f Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A15F 0000000000000000: 10000c00 d7010000 d7010000 020000 ............... Slot 17 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 471 Slot 17 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 471 Slot 18 Offset 0x16e Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A16E 0000000000000000: 10000c00 d8010000 d8010000 020000 ............... Slot 18 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 472 Slot 18 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 472 Slot 19 Offset 0x17d Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A17D 0000000000000000: 10000c00 d9010000 d9010000 020000 ............... Slot 19 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 473 Slot 19 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 473 Slot 20 Offset 0x18c Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A18C 0000000000000000: 10000c00 da010000 da010000 020000 ............... Slot 20 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 474 Slot 20 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 474 Slot 21 Offset 0x19b Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A19B 0000000000000000: 10000c00 db010000 db010000 020000 ............... Slot 21 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 475 Slot 21 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 475 Slot 22 Offset 0x1aa Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A1AA 0000000000000000: 10000c00 dc010000 dc010000 020000 ............... Slot 22 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 476 Slot 22 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 476 Slot 23 Offset 0x1b9 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A1B9 0000000000000000: 10000c00 dd010000 dd010000 020000 ............... Slot 23 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 477 Slot 23 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 477 Slot 24 Offset 0x1c8 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A1C8 0000000000000000: 10000c00 de010000 de010000 020000 ............... Slot 24 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 478 Slot 24 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 478 Slot 25 Offset 0x1d7 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A1D7 0000000000000000: 10000c00 df010000 df010000 020000 ............... Slot 25 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 479 Slot 25 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 479 Slot 26 Offset 0x1e6 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A1E6 0000000000000000: 10000c00 e0010000 e0010000 020000 ............... Slot 26 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 480 Slot 26 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 480 Slot 27 Offset 0x1f5 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A1F5 0000000000000000: 10000c00 e1010000 e1010000 020000 ............... Slot 27 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 481 Slot 27 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 481 Slot 28 Offset 0x204 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A204 0000000000000000: 10000c00 e2010000 e2010000 020000 ............... Slot 28 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 482 Slot 28 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 482 Slot 29 Offset 0x213 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A213 0000000000000000: 10000c00 e3010000 e3010000 020000 ............... Slot 29 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 483 Slot 29 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 483 Slot 30 Offset 0x222 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A222 0000000000000000: 10000c00 e4010000 e4010000 020000 ............... Slot 30 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 484 Slot 30 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 484 Slot 31 Offset 0x231 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A231 0000000000000000: 10000c00 e5010000 e5010000 020000 ............... Slot 31 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 485 Slot 31 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 485 Slot 32 Offset 0x240 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A240 0000000000000000: 10000c00 e6010000 e6010000 020000 ............... Slot 32 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 486 Slot 32 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 486 Slot 33 Offset 0x24f Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A24F 0000000000000000: 10000c00 e7010000 e7010000 020000 ............... Slot 33 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 487 Slot 33 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 487 Slot 34 Offset 0x25e Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A25E 0000000000000000: 10000c00 e8010000 e8010000 020000 ............... Slot 34 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 488 Slot 34 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 488 Slot 35 Offset 0x26d Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A26D 0000000000000000: 10000c00 e9010000 e9010000 020000 ............... Slot 35 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 489 Slot 35 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 489 Slot 36 Offset 0x27c Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A27C 0000000000000000: 10000c00 ea010000 ea010000 020000 ............... Slot 36 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 490 Slot 36 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 490 Slot 37 Offset 0x28b Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A28B 0000000000000000: 10000c00 eb010000 eb010000 020000 ............... Slot 37 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 491 Slot 37 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 491 Slot 38 Offset 0x29a Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A29A 0000000000000000: 10000c00 ec010000 ec010000 020000 ............... Slot 38 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 492 Slot 38 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 492 Slot 39 Offset 0x2a9 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A2A9 0000000000000000: 10000c00 ed010000 ed010000 020000 ............... Slot 39 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 493 Slot 39 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 493 Slot 40 Offset 0x2b8 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A2B8 0000000000000000: 10000c00 ee010000 ee010000 020000 ............... Slot 40 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 494 Slot 40 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 494 Slot 41 Offset 0x2c7 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A2C7 0000000000000000: 10000c00 ef010000 ef010000 020000 ............... Slot 41 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 495 Slot 41 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 495 Slot 42 Offset 0x2d6 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A2D6 0000000000000000: 10000c00 f0010000 f0010000 020000 ............... Slot 42 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 496 Slot 42 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 496 Slot 43 Offset 0x2e5 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A2E5 0000000000000000: 10000c00 f1010000 f1010000 020000 ............... Slot 43 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 497 Slot 43 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 497 Slot 44 Offset 0x2f4 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A2F4 0000000000000000: 10000c00 f2010000 f2010000 020000 ............... Slot 44 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 498 Slot 44 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 498 Slot 45 Offset 0x303 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A303 0000000000000000: 10000c00 f3010000 f3010000 020000 ............... Slot 45 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 499 Slot 45 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 499 Slot 46 Offset 0x312 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A312 0000000000000000: 10000c00 f4010000 f4010000 020000 ............... Slot 46 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 500 Slot 46 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 500 Slot 47 Offset 0x321 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A321 0000000000000000: 10000c00 f5010000 f5010000 020000 ............... Slot 47 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 501 Slot 47 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 501 Slot 48 Offset 0x330 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A330 0000000000000000: 10000c00 f6010000 f6010000 020000 ............... Slot 48 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 502 Slot 48 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 502 Slot 49 Offset 0x33f Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A33F 0000000000000000: 10000c00 f7010000 f7010000 020000 ............... Slot 49 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 503 Slot 49 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 503 Slot 50 Offset 0x34e Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A34E 0000000000000000: 10000c00 f8010000 f8010000 020000 ............... Slot 50 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 504 Slot 50 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 504 Slot 51 Offset 0x35d Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A35D 0000000000000000: 10000c00 f9010000 f9010000 020000 ............... Slot 51 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 505 Slot 51 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 505 Slot 52 Offset 0x36c Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A36C 0000000000000000: 10000c00 fa010000 fa010000 020000 ............... Slot 52 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 506 Slot 52 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 506 Slot 53 Offset 0x37b Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A37B 0000000000000000: 10000c00 fb010000 fb010000 020000 ............... Slot 53 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 507 Slot 53 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 507 Slot 54 Offset 0x38a Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A38A 0000000000000000: 10000c00 fc010000 fc010000 020000 ............... Slot 54 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 508 Slot 54 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 508 Slot 55 Offset 0x399 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A399 0000000000000000: 10000c00 fd010000 fd010000 020000 ............... Slot 55 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 509 Slot 55 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 509 Slot 56 Offset 0x3a8 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A3A8 0000000000000000: 10000c00 fe010000 fe010000 020000 ............... Slot 56 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 510 Slot 56 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 510 Slot 57 Offset 0x3b7 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A3B7 0000000000000000: 10000c00 ff010000 ff010000 020000 ............... Slot 57 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 511 Slot 57 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 511 Slot 58 Offset 0x3c6 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A3C6 0000000000000000: 10000c00 00020000 00020000 020000 ............... Slot 58 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 512 Slot 58 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 512 Slot 59 Offset 0x3d5 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A3D5 0000000000000000: 10000c00 01020000 01020000 020000 ............... Slot 59 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 513 Slot 59 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 513 Slot 60 Offset 0x3e4 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A3E4 0000000000000000: 10000c00 02020000 02020000 020000 ............... Slot 60 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 514 Slot 60 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 514 Slot 61 Offset 0x3f3 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A3F3 0000000000000000: 10000c00 03020000 03020000 020000 ............... Slot 61 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 515 Slot 61 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 515 Slot 62 Offset 0x402 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A402 0000000000000000: 10000c00 04020000 04020000 020000 ............... Slot 62 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 516 Slot 62 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 516 Slot 63 Offset 0x411 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A411 0000000000000000: 10000c00 05020000 05020000 020000 ............... Slot 63 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 517 Slot 63 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 517 Slot 64 Offset 0x420 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A420 0000000000000000: 10000c00 06020000 06020000 020000 ............... Slot 64 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 518 Slot 64 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 518 Slot 65 Offset 0x42f Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A42F 0000000000000000: 10000c00 07020000 07020000 020000 ............... Slot 65 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 519 Slot 65 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 519 Slot 66 Offset 0x43e Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A43E 0000000000000000: 10000c00 08020000 08020000 020000 ............... Slot 66 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 520 Slot 66 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 520 Slot 67 Offset 0x44d Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A44D 0000000000000000: 10000c00 09020000 09020000 020000 .... ... ...... Slot 67 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 521 Slot 67 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 521 Slot 68 Offset 0x45c Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A45C 0000000000000000: 10000c00 0a020000 0a020000 020000 ............... Slot 68 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 522 Slot 68 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 522 Slot 69 Offset 0x46b Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A46B 0000000000000000: 10000c00 0b020000 0b020000 020000 ............... Slot 69 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 523 Slot 69 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 523 Slot 70 Offset 0x47a Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A47A 0000000000000000: 10000c00 0c020000 0c020000 020000 ............... Slot 70 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 524 Slot 70 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 524 Slot 71 Offset 0x489 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A489 0000000000000000: 10000c00 0d020000 0d020000 020000 ............... Slot 71 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 525 Slot 71 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 525 Slot 72 Offset 0x498 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A498 0000000000000000: 10000c00 0e020000 0e020000 020000 ............... Slot 72 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 526 Slot 72 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 526 Slot 73 Offset 0x4a7 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A4A7 0000000000000000: 10000c00 0f020000 0f020000 020000 ............... Slot 73 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 527 Slot 73 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 527 Slot 74 Offset 0x4b6 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A4B6 0000000000000000: 10000c00 10020000 10020000 020000 ............... Slot 74 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 528 Slot 74 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 528 Slot 75 Offset 0x4c5 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A4C5 0000000000000000: 10000c00 11020000 11020000 020000 ............... Slot 75 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 529 Slot 75 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 529 Slot 76 Offset 0x4d4 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A4D4 0000000000000000: 10000c00 12020000 12020000 020000 ............... Slot 76 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 530 Slot 76 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 530 Slot 77 Offset 0x4e3 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A4E3 0000000000000000: 10000c00 13020000 13020000 020000 ............... Slot 77 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 531 Slot 77 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 531 Slot 78 Offset 0x4f2 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A4F2 0000000000000000: 10000c00 14020000 14020000 020000 ............... Slot 78 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 532 Slot 78 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 532 Slot 79 Offset 0x501 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A501 0000000000000000: 10000c00 15020000 15020000 020000 ............... Slot 79 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 533 Slot 79 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 533 Slot 80 Offset 0x510 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A510 0000000000000000: 10000c00 16020000 16020000 020000 ............... Slot 80 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 534 Slot 80 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 534 Slot 81 Offset 0x51f Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A51F 0000000000000000: 10000c00 17020000 17020000 020000 ............... Slot 81 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 535 Slot 81 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 535 Slot 82 Offset 0x52e Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A52E 0000000000000000: 10000c00 18020000 18020000 020000 ............... Slot 82 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 536 Slot 82 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 536 Slot 83 Offset 0x53d Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A53D 0000000000000000: 10000c00 19020000 19020000 020000 ............... Slot 83 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 537 Slot 83 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 537 Slot 84 Offset 0x54c Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A54C 0000000000000000: 10000c00 1a020000 1a020000 020000 ............... Slot 84 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 538 Slot 84 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 538 Slot 85 Offset 0x55b Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A55B 0000000000000000: 10000c00 1b020000 1b020000 020000 ............... Slot 85 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 539 Slot 85 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 539 Slot 86 Offset 0x56a Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A56A 0000000000000000: 10000c00 1c020000 1c020000 020000 ............... Slot 86 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 540 Slot 86 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 540 Slot 87 Offset 0x579 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A579 0000000000000000: 10000c00 1d020000 1d020000 020000 ............... Slot 87 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 541 Slot 87 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 541 Slot 88 Offset 0x588 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A588 0000000000000000: 10000c00 1e020000 1e020000 020000 ............... Slot 88 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 542 Slot 88 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 542 Slot 89 Offset 0x597 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A597 0000000000000000: 10000c00 1f020000 1f020000 020000 ............... Slot 89 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 543 Slot 89 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 543 Slot 90 Offset 0x5a6 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A5A6 0000000000000000: 10000c00 20020000 20020000 020000 .... ... ...... Slot 90 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 544 Slot 90 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 544 Slot 91 Offset 0x5b5 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A5B5 0000000000000000: 10000c00 21020000 21020000 020000 ....!...!...... Slot 91 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 545 Slot 91 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 545 Slot 92 Offset 0x5c4 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A5C4 0000000000000000: 10000c00 22020000 22020000 020000 ...."..."...... Slot 92 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 546 Slot 92 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 546 Slot 93 Offset 0x5d3 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A5D3 0000000000000000: 10000c00 23020000 23020000 020000 ....#...#...... Slot 93 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 547 Slot 93 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 547 Slot 94 Offset 0x5e2 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A5E2 0000000000000000: 10000c00 24020000 24020000 020000 ....$...$...... Slot 94 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 548 Slot 94 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 548 Slot 95 Offset 0x5f1 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A5F1 0000000000000000: 10000c00 25020000 25020000 020000 ....%...%...... Slot 95 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 549 Slot 95 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 549 Slot 96 Offset 0x600 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A600 0000000000000000: 10000c00 26020000 26020000 020000 ....&...&...... Slot 96 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 550 Slot 96 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 550 Slot 97 Offset 0x60f Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A60F 0000000000000000: 10000c00 27020000 27020000 020000 ....'...'...... Slot 97 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 551 Slot 97 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 551 Slot 98 Offset 0x61e Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A61E 0000000000000000: 10000c00 28020000 28020000 020000 ....(...(...... Slot 98 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 552 Slot 98 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 552 Slot 99 Offset 0x62d Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A62D 0000000000000000: 10000c00 29020000 29020000 020000 ....)...)...... Slot 99 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 553 Slot 99 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 553 Slot 100 Offset 0x63c Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A63C 0000000000000000: 10000c00 2a020000 2a020000 020000 ....*...*...... Slot 100 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 554 Slot 100 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 554 Slot 101 Offset 0x64b Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A64B 0000000000000000: 10000c00 2b020000 2b020000 020000 ....+...+...... Slot 101 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 555 Slot 101 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 555 Slot 102 Offset 0x65a Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A65A 0000000000000000: 10000c00 2c020000 2c020000 020000 ....,...,...... Slot 102 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 556 Slot 102 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 556 Slot 103 Offset 0x669 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A669 0000000000000000: 10000c00 2d020000 2d020000 020000 ....-...-...... Slot 103 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 557 Slot 103 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 557 Slot 104 Offset 0x678 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A678 0000000000000000: 10000c00 2e020000 2e020000 020000 ............... Slot 104 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 558 Slot 104 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 558 Slot 105 Offset 0x687 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A687 0000000000000000: 10000c00 2f020000 2f020000 020000 ..../.../...... Slot 105 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 559 Slot 105 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 559 Slot 106 Offset 0x696 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A696 0000000000000000: 10000c00 30020000 30020000 020000 ....0...0...... Slot 106 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 560 Slot 106 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 560 Slot 107 Offset 0x6a5 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A6A5 0000000000000000: 10000c00 31020000 31020000 020000 ....1...1...... Slot 107 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 561 Slot 107 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 561 Slot 108 Offset 0x6b4 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A6B4 0000000000000000: 10000c00 32020000 32020000 020000 ....2...2...... Slot 108 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 562 Slot 108 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 562 Slot 109 Offset 0x6c3 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A6C3 0000000000000000: 10000c00 33020000 33020000 020000 ....3...3...... Slot 109 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 563 Slot 109 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 563 Slot 110 Offset 0x6d2 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A6D2 0000000000000000: 10000c00 34020000 34020000 020000 ....4...4...... Slot 110 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 564 Slot 110 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 564 Slot 111 Offset 0x6e1 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A6E1 0000000000000000: 10000c00 35020000 35020000 020000 ....5...5...... Slot 111 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 565 Slot 111 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 565 Slot 112 Offset 0x6f0 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A6F0 0000000000000000: 10000c00 36020000 36020000 020000 ....6...6...... Slot 112 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 566 Slot 112 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 566 Slot 113 Offset 0x6ff Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A6FF 0000000000000000: 10000c00 37020000 37020000 020000 ....7...7...... Slot 113 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 567 Slot 113 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 567 Slot 114 Offset 0x70e Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A70E 0000000000000000: 10000c00 38020000 38020000 020000 ....8...8...... Slot 114 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 568 Slot 114 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 568 Slot 115 Offset 0x71d Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A71D 0000000000000000: 10000c00 39020000 39020000 020000 ....9...9...... Slot 115 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 569 Slot 115 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 569 Slot 116 Offset 0x72c Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A72C 0000000000000000: 10000c00 3a020000 3a020000 020000 ....:...:...... Slot 116 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 570 Slot 116 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 570 Slot 117 Offset 0x73b Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A73B 0000000000000000: 10000c00 3b020000 3b020000 020000 ....;...;...... Slot 117 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 571 Slot 117 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 571 Slot 118 Offset 0x74a Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A74A 0000000000000000: 10000c00 3c020000 3c020000 020000 ....<...<...... Slot 118 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 572 Slot 118 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 572 Slot 119 Offset 0x759 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A759 0000000000000000: 10000c00 3d020000 3d020000 020000 ....=...=...... Slot 119 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 573 Slot 119 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 573 Slot 120 Offset 0x768 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A768 0000000000000000: 10000c00 3e020000 3e020000 020000 ....>...>...... Slot 120 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 574 Slot 120 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 574 Slot 121 Offset 0x777 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A777 0000000000000000: 10000c00 3f020000 3f020000 020000 ....?...?...... Slot 121 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 575 Slot 121 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 575 Slot 122 Offset 0x786 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A786 0000000000000000: 10000c00 40020000 40020000 020000 ....@...@...... Slot 122 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 576 Slot 122 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 576 Slot 123 Offset 0x795 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A795 0000000000000000: 10000c00 41020000 41020000 020000 ....A...A...... Slot 123 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 577 Slot 123 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 577 Slot 124 Offset 0x7a4 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A7A4 0000000000000000: 10000c00 42020000 42020000 020000 ....B...B...... Slot 124 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 578 Slot 124 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 578 Slot 125 Offset 0x7b3 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A7B3 0000000000000000: 10000c00 43020000 43020000 020000 ....C...C...... Slot 125 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 579 Slot 125 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 579 Slot 126 Offset 0x7c2 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A7C2 0000000000000000: 10000c00 44020000 44020000 020000 ....D...D...... Slot 126 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 580 Slot 126 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 580 Slot 127 Offset 0x7d1 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A7D1 0000000000000000: 10000c00 45020000 45020000 020000 ....E...E...... Slot 127 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 581 Slot 127 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 581 Slot 128 Offset 0x7e0 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A7E0 0000000000000000: 10000c00 46020000 46020000 020000 ....F...F...... Slot 128 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 582 Slot 128 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 582 Slot 129 Offset 0x7ef Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A7EF 0000000000000000: 10000c00 47020000 47020000 020000 ....G...G...... Slot 129 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 583 Slot 129 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 583 Slot 130 Offset 0x7fe Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A7FE 0000000000000000: 10000c00 48020000 48020000 020000 ....H...H...... Slot 130 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 584 Slot 130 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 584 Slot 131 Offset 0x80d Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A80D 0000000000000000: 10000c00 49020000 49020000 020000 ....I...I...... Slot 131 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 585 Slot 131 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 585 Slot 132 Offset 0x81c Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A81C 0000000000000000: 10000c00 4a020000 4a020000 020000 ....J...J...... Slot 132 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 586 Slot 132 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 586 Slot 133 Offset 0x82b Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A82B 0000000000000000: 10000c00 4b020000 4b020000 020000 ....K...K...... Slot 133 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 587 Slot 133 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 587 Slot 134 Offset 0x83a Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A83A 0000000000000000: 10000c00 4c020000 4c020000 020000 ....L...L...... Slot 134 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 588 Slot 134 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 588 Slot 135 Offset 0x849 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A849 0000000000000000: 10000c00 4d020000 4d020000 020000 ....M...M...... Slot 135 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 589 Slot 135 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 589 Slot 136 Offset 0x858 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A858 0000000000000000: 10000c00 4e020000 4e020000 020000 ....N...N...... Slot 136 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 590 Slot 136 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 590 Slot 137 Offset 0x867 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A867 0000000000000000: 10000c00 4f020000 4f020000 020000 ....O...O...... Slot 137 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 591 Slot 137 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 591 Slot 138 Offset 0x876 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A876 0000000000000000: 10000c00 50020000 50020000 020000 ....P...P...... Slot 138 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 592 Slot 138 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 592 Slot 139 Offset 0x885 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A885 0000000000000000: 10000c00 51020000 51020000 020000 ....Q...Q...... Slot 139 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 593 Slot 139 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 593 Slot 140 Offset 0x894 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A894 0000000000000000: 10000c00 52020000 52020000 020000 ....R...R...... Slot 140 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 594 Slot 140 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 594 Slot 141 Offset 0x8a3 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A8A3 0000000000000000: 10000c00 53020000 53020000 020000 ....S...S...... Slot 141 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 595 Slot 141 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 595 Slot 142 Offset 0x8b2 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A8B2 0000000000000000: 10000c00 54020000 54020000 020000 ....T...T...... Slot 142 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 596 Slot 142 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 596 Slot 143 Offset 0x8c1 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A8C1 0000000000000000: 10000c00 55020000 55020000 020000 ....U...U...... Slot 143 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 597 Slot 143 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 597 Slot 144 Offset 0x8d0 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A8D0 0000000000000000: 10000c00 56020000 56020000 020000 ....V...V...... Slot 144 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 598 Slot 144 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 598 Slot 145 Offset 0x8df Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A8DF 0000000000000000: 10000c00 57020000 57020000 020000 ....W...W...... Slot 145 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 599 Slot 145 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 599 Slot 146 Offset 0x8ee Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A8EE 0000000000000000: 10000c00 58020000 58020000 020000 ....X...X...... Slot 146 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 600 Slot 146 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 600 Slot 147 Offset 0x8fd Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A8FD 0000000000000000: 10000c00 59020000 59020000 020000 ....Y...Y...... Slot 147 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 601 Slot 147 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 601 Slot 148 Offset 0x90c Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A90C 0000000000000000: 10000c00 5a020000 5a020000 020000 ....Z...Z...... Slot 148 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 602 Slot 148 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 602 Slot 149 Offset 0x91b Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A91B 0000000000000000: 10000c00 5b020000 5b020000 020000 ....[...[...... Slot 149 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 603 Slot 149 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 603 Slot 150 Offset 0x92a Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A92A 0000000000000000: 10000c00 5c020000 5c020000 020000 ....\...\...... Slot 150 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 604 Slot 150 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 604 Slot 151 Offset 0x939 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A939 0000000000000000: 10000c00 5d020000 5d020000 020000 ....]...]...... Slot 151 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 605 Slot 151 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 605 Slot 152 Offset 0x948 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A948 0000000000000000: 10000c00 5e020000 5e020000 020000 ....^...^...... Slot 152 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 606 Slot 152 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 606 Slot 153 Offset 0x957 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A957 0000000000000000: 10000c00 5f020000 5f020000 020000 ...._..._...... Slot 153 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 607 Slot 153 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 607 Slot 154 Offset 0x966 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A966 0000000000000000: 10000c00 60020000 60020000 020000 ....`...`...... Slot 154 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 608 Slot 154 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 608 Slot 155 Offset 0x975 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A975 0000000000000000: 10000c00 61020000 61020000 020000 ....a...a...... Slot 155 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 609 Slot 155 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 609 Slot 156 Offset 0x984 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A984 0000000000000000: 10000c00 62020000 62020000 020000 ....b...b...... Slot 156 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 610 Slot 156 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 610 Slot 157 Offset 0x993 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A993 0000000000000000: 10000c00 63020000 63020000 020000 ....c...c...... Slot 157 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 611 Slot 157 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 611 Slot 158 Offset 0x9a2 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A9A2 0000000000000000: 10000c00 64020000 64020000 020000 ....d...d...... Slot 158 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 612 Slot 158 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 612 Slot 159 Offset 0x9b1 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A9B1 0000000000000000: 10000c00 65020000 65020000 020000 ....e...e...... Slot 159 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 613 Slot 159 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 613 Slot 160 Offset 0x9c0 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A9C0 0000000000000000: 10000c00 66020000 66020000 020000 ....f...f...... Slot 160 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 614 Slot 160 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 614 Slot 161 Offset 0x9cf Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A9CF 0000000000000000: 10000c00 67020000 67020000 020000 ....g...g...... Slot 161 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 615 Slot 161 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 615 Slot 162 Offset 0x9de Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A9DE 0000000000000000: 10000c00 68020000 68020000 020000 ....h...h...... Slot 162 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 616 Slot 162 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 616 Slot 163 Offset 0x9ed Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A9ED 0000000000000000: 10000c00 69020000 69020000 020000 ....i...i...... Slot 163 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 617 Slot 163 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 617 Slot 164 Offset 0x9fc Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815A9FC 0000000000000000: 10000c00 6a020000 6a020000 020000 ....j...j...... Slot 164 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 618 Slot 164 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 618 Slot 165 Offset 0xa0b Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AA0B 0000000000000000: 10000c00 6b020000 6b020000 020000 ....k...k...... Slot 165 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 619 Slot 165 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 619 Slot 166 Offset 0xa1a Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AA1A 0000000000000000: 10000c00 6c020000 6c020000 020000 ....l...l...... Slot 166 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 620 Slot 166 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 620 Slot 167 Offset 0xa29 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AA29 0000000000000000: 10000c00 6d020000 6d020000 020000 ....m...m...... Slot 167 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 621 Slot 167 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 621 Slot 168 Offset 0xa38 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AA38 0000000000000000: 10000c00 6e020000 6e020000 020000 ....n...n...... Slot 168 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 622 Slot 168 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 622 Slot 169 Offset 0xa47 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AA47 0000000000000000: 10000c00 6f020000 6f020000 020000 ....o...o...... Slot 169 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 623 Slot 169 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 623 Slot 170 Offset 0xa56 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AA56 0000000000000000: 10000c00 70020000 70020000 020000 ....p...p...... Slot 170 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 624 Slot 170 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 624 Slot 171 Offset 0xa65 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AA65 0000000000000000: 10000c00 71020000 71020000 020000 ....q...q...... Slot 171 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 625 Slot 171 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 625 Slot 172 Offset 0xa74 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AA74 0000000000000000: 10000c00 72020000 72020000 020000 ....r...r...... Slot 172 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 626 Slot 172 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 626 Slot 173 Offset 0xa83 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AA83 0000000000000000: 10000c00 73020000 73020000 020000 ....s...s...... Slot 173 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 627 Slot 173 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 627 Slot 174 Offset 0xa92 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AA92 0000000000000000: 10000c00 74020000 74020000 020000 ....t...t...... Slot 174 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 628 Slot 174 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 628 Slot 175 Offset 0xaa1 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AAA1 0000000000000000: 10000c00 75020000 75020000 020000 ....u...u...... Slot 175 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 629 Slot 175 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 629 Slot 176 Offset 0xab0 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AAB0 0000000000000000: 10000c00 76020000 76020000 020000 ....v...v...... Slot 176 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 630 Slot 176 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 630 Slot 177 Offset 0xabf Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AABF 0000000000000000: 10000c00 77020000 77020000 020000 ....w...w...... Slot 177 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 631 Slot 177 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 631 Slot 178 Offset 0xace Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AACE 0000000000000000: 10000c00 78020000 78020000 020000 ....x...x...... Slot 178 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 632 Slot 178 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 632 Slot 179 Offset 0xadd Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AADD 0000000000000000: 10000c00 79020000 79020000 020000 ....y...y...... Slot 179 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 633 Slot 179 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 633 Slot 180 Offset 0xaec Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AAEC 0000000000000000: 10000c00 7a020000 7a020000 020000 ....z...z...... Slot 180 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 634 Slot 180 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 634 Slot 181 Offset 0xafb Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AAFB 0000000000000000: 10000c00 7b020000 7b020000 020000 ....{...{...... Slot 181 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 635 Slot 181 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 635 Slot 182 Offset 0xb0a Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AB0A 0000000000000000: 10000c00 7c020000 7c020000 020000 ....|...|...... Slot 182 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 636 Slot 182 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 636 Slot 183 Offset 0xb19 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AB19 0000000000000000: 10000c00 7d020000 7d020000 020000 ....}...}...... Slot 183 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 637 Slot 183 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 637 Slot 184 Offset 0xb28 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AB28 0000000000000000: 10000c00 7e020000 7e020000 020000 ....~...~...... Slot 184 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 638 Slot 184 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 638 Slot 185 Offset 0xb37 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AB37 0000000000000000: 10000c00 7f020000 7f020000 020000 ............... Slot 185 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 639 Slot 185 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 639 Slot 186 Offset 0xb46 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AB46 0000000000000000: 10000c00 80020000 80020000 020000 ............... Slot 186 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 640 Slot 186 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 640 Slot 187 Offset 0xb55 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AB55 0000000000000000: 10000c00 81020000 81020000 020000 ............... Slot 187 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 641 Slot 187 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 641 Slot 188 Offset 0xb64 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AB64 0000000000000000: 10000c00 82020000 82020000 020000 ............... Slot 188 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 642 Slot 188 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 642 Slot 189 Offset 0xb73 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AB73 0000000000000000: 10000c00 83020000 83020000 020000 ............... Slot 189 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 643 Slot 189 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 643 Slot 190 Offset 0xb82 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AB82 0000000000000000: 10000c00 84020000 84020000 020000 ............... Slot 190 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 644 Slot 190 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 644 Slot 191 Offset 0xb91 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AB91 0000000000000000: 10000c00 85020000 85020000 020000 ............... Slot 191 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 645 Slot 191 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 645 Slot 192 Offset 0xba0 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815ABA0 0000000000000000: 10000c00 86020000 86020000 020000 ............... Slot 192 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 646 Slot 192 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 646 Slot 193 Offset 0xbaf Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815ABAF 0000000000000000: 10000c00 87020000 87020000 020000 ............... Slot 193 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 647 Slot 193 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 647 Slot 194 Offset 0xbbe Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815ABBE 0000000000000000: 10000c00 88020000 88020000 020000 ............... Slot 194 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 648 Slot 194 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 648 Slot 195 Offset 0xbcd Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815ABCD 0000000000000000: 10000c00 89020000 89020000 020000 ............... Slot 195 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 649 Slot 195 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 649 Slot 196 Offset 0xbdc Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815ABDC 0000000000000000: 10000c00 8a020000 8a020000 020000 ............... Slot 196 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 650 Slot 196 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 650 Slot 197 Offset 0xbeb Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815ABEB 0000000000000000: 10000c00 8b020000 8b020000 020000 ............... Slot 197 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 651 Slot 197 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 651 Slot 198 Offset 0xbfa Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815ABFA 0000000000000000: 10000c00 8c020000 8c020000 020000 ............... Slot 198 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 652 Slot 198 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 652 Slot 199 Offset 0xc09 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AC09 0000000000000000: 10000c00 8d020000 8d020000 020000 ............... Slot 199 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 653 Slot 199 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 653 Slot 200 Offset 0xc18 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AC18 0000000000000000: 10000c00 8e020000 8e020000 020000 ............... Slot 200 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 654 Slot 200 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 654 Slot 201 Offset 0xc27 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AC27 0000000000000000: 10000c00 8f020000 8f020000 020000 ............... Slot 201 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 655 Slot 201 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 655 Slot 202 Offset 0xc36 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AC36 0000000000000000: 10000c00 90020000 90020000 020000 ............... Slot 202 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 656 Slot 202 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 656 Slot 203 Offset 0xc45 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AC45 0000000000000000: 10000c00 91020000 91020000 020000 ............... Slot 203 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 657 Slot 203 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 657 Slot 204 Offset 0xc54 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AC54 0000000000000000: 10000c00 92020000 92020000 020000 ............... Slot 204 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 658 Slot 204 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 658 Slot 205 Offset 0xc63 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AC63 0000000000000000: 10000c00 93020000 93020000 020000 ............... Slot 205 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 659 Slot 205 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 659 Slot 206 Offset 0xc72 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AC72 0000000000000000: 10000c00 94020000 94020000 020000 ............... Slot 206 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 660 Slot 206 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 660 Slot 207 Offset 0xc81 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AC81 0000000000000000: 10000c00 95020000 95020000 020000 ............... Slot 207 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 661 Slot 207 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 661 Slot 208 Offset 0xc90 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AC90 0000000000000000: 10000c00 96020000 96020000 020000 ............... Slot 208 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 662 Slot 208 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 662 Slot 209 Offset 0xc9f Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AC9F 0000000000000000: 10000c00 97020000 97020000 020000 ............... Slot 209 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 663 Slot 209 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 663 Slot 210 Offset 0xcae Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815ACAE 0000000000000000: 10000c00 98020000 98020000 020000 ............... Slot 210 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 664 Slot 210 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 664 Slot 211 Offset 0xcbd Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815ACBD 0000000000000000: 10000c00 99020000 99020000 020000 ............... Slot 211 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 665 Slot 211 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 665 Slot 212 Offset 0xccc Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815ACCC 0000000000000000: 10000c00 9a020000 9a020000 020000 ............... Slot 212 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 666 Slot 212 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 666 Slot 213 Offset 0xcdb Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815ACDB 0000000000000000: 10000c00 9b020000 9b020000 020000 ............... Slot 213 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 667 Slot 213 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 667 Slot 214 Offset 0xcea Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815ACEA 0000000000000000: 10000c00 9c020000 9c020000 020000 ............... Slot 214 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 668 Slot 214 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 668 Slot 215 Offset 0xcf9 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815ACF9 0000000000000000: 10000c00 9d020000 9d020000 020000 ............... Slot 215 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 669 Slot 215 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 669 Slot 216 Offset 0xd08 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AD08 0000000000000000: 10000c00 9e020000 9e020000 020000 ............... Slot 216 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 670 Slot 216 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 670 Slot 217 Offset 0xd17 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AD17 0000000000000000: 10000c00 9f020000 9f020000 020000 ............... Slot 217 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 671 Slot 217 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 671 Slot 218 Offset 0xd26 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AD26 0000000000000000: 10000c00 a0020000 a0020000 020000 ............... Slot 218 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 672 Slot 218 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 672 Slot 219 Offset 0xd35 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AD35 0000000000000000: 10000c00 a1020000 a1020000 020000 ............... Slot 219 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 673 Slot 219 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 673 Slot 220 Offset 0xd44 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AD44 0000000000000000: 10000c00 a2020000 a2020000 020000 ............... Slot 220 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 674 Slot 220 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 674 Slot 221 Offset 0xd53 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AD53 0000000000000000: 10000c00 a3020000 a3020000 020000 ............... Slot 221 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 675 Slot 221 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 675 Slot 222 Offset 0xd62 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AD62 0000000000000000: 10000c00 a4020000 a4020000 020000 ............... Slot 222 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 676 Slot 222 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 676 Slot 223 Offset 0xd71 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AD71 0000000000000000: 10000c00 a5020000 a5020000 020000 ............... Slot 223 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 677 Slot 223 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 677 Slot 224 Offset 0xd80 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AD80 0000000000000000: 10000c00 a6020000 a6020000 020000 ............... Slot 224 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 678 Slot 224 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 678 Slot 225 Offset 0xd8f Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AD8F 0000000000000000: 10000c00 a7020000 a7020000 020000 ............... Slot 225 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 679 Slot 225 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 679 Slot 226 Offset 0xd9e Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AD9E 0000000000000000: 10000c00 a8020000 a8020000 020000 ............... Slot 226 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 680 Slot 226 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 680 Slot 227 Offset 0xdad Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815ADAD 0000000000000000: 10000c00 a9020000 a9020000 020000 ............... Slot 227 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 681 Slot 227 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 681 Slot 228 Offset 0xdbc Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815ADBC 0000000000000000: 10000c00 aa020000 aa020000 020000 ............... Slot 228 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 682 Slot 228 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 682 Slot 229 Offset 0xdcb Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815ADCB 0000000000000000: 10000c00 ab020000 ab020000 020000 ............... Slot 229 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 683 Slot 229 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 683 Slot 230 Offset 0xdda Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815ADDA 0000000000000000: 10000c00 ac020000 ac020000 020000 ............... Slot 230 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 684 Slot 230 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 684 Slot 231 Offset 0xde9 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815ADE9 0000000000000000: 10000c00 ad020000 ad020000 020000 ............... Slot 231 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 685 Slot 231 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 685 Slot 232 Offset 0xdf8 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815ADF8 0000000000000000: 10000c00 ae020000 ae020000 020000 ............... Slot 232 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 686 Slot 232 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 686 Slot 233 Offset 0xe07 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AE07 0000000000000000: 10000c00 af020000 af020000 020000 ............... Slot 233 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 687 Slot 233 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 687 Slot 234 Offset 0xe16 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AE16 0000000000000000: 10000c00 b0020000 b0020000 020000 ............... Slot 234 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 688 Slot 234 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 688 Slot 235 Offset 0xe25 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AE25 0000000000000000: 10000c00 b1020000 b1020000 020000 ............... Slot 235 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 689 Slot 235 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 689 Slot 236 Offset 0xe34 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AE34 0000000000000000: 10000c00 b2020000 b2020000 020000 ............... Slot 236 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 690 Slot 236 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 690 Slot 237 Offset 0xe43 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AE43 0000000000000000: 10000c00 b3020000 b3020000 020000 ............... Slot 237 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 691 Slot 237 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 691 Slot 238 Offset 0xe52 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AE52 0000000000000000: 10000c00 b4020000 b4020000 020000 ............... Slot 238 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 692 Slot 238 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 692 Slot 239 Offset 0xe61 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AE61 0000000000000000: 10000c00 b5020000 b5020000 020000 ............... Slot 239 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 693 Slot 239 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 693 Slot 240 Offset 0xe70 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AE70 0000000000000000: 10000c00 b6020000 b6020000 020000 ............... Slot 240 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 694 Slot 240 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 694 Slot 241 Offset 0xe7f Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AE7F 0000000000000000: 10000c00 b7020000 b7020000 020000 ............... Slot 241 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 695 Slot 241 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 695 Slot 242 Offset 0xe8e Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AE8E 0000000000000000: 10000c00 b8020000 b8020000 020000 ............... Slot 242 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 696 Slot 242 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 696 Slot 243 Offset 0xe9d Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AE9D 0000000000000000: 10000c00 b9020000 b9020000 020000 ............... Slot 243 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 697 Slot 243 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 697 Slot 244 Offset 0xeac Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AEAC 0000000000000000: 10000c00 ba020000 ba020000 020000 ............... Slot 244 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 698 Slot 244 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 698 Slot 245 Offset 0xebb Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AEBB 0000000000000000: 10000c00 bb020000 bb020000 020000 ............... Slot 245 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 699 Slot 245 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 699 Slot 246 Offset 0xeca Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AECA 0000000000000000: 10000c00 bc020000 bc020000 020000 ............... Slot 246 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 700 Slot 246 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 700 Slot 247 Offset 0xed9 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AED9 0000000000000000: 10000c00 bd020000 bd020000 020000 ............... Slot 247 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 701 Slot 247 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 701 Slot 248 Offset 0xee8 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AEE8 0000000000000000: 10000c00 be020000 be020000 020000 ............... Slot 248 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 702 Slot 248 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 702 Slot 249 Offset 0xef7 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AEF7 0000000000000000: 10000c00 bf020000 bf020000 020000 ............... Slot 249 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 703 Slot 249 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 703 Slot 250 Offset 0xf06 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AF06 0000000000000000: 10000c00 c0020000 c0020000 020000 ............... Slot 250 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 704 Slot 250 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 704 Slot 251 Offset 0xf15 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AF15 0000000000000000: 10000c00 c1020000 c1020000 020000 ............... Slot 251 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 705 Slot 251 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 705 Slot 252 Offset 0xf24 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AF24 0000000000000000: 10000c00 c2020000 c2020000 020000 ............... Slot 252 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 706 Slot 252 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 706 Slot 253 Offset 0xf33 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AF33 0000000000000000: 10000c00 c3020000 c3020000 020000 ............... Slot 253 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 707 Slot 253 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 707 Slot 254 Offset 0xf42 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AF42 0000000000000000: 10000c00 c4020000 c4020000 020000 ............... Slot 254 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 708 Slot 254 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 708 Slot 255 Offset 0xf51 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AF51 0000000000000000: 10000c00 c5020000 c5020000 020000 ............... Slot 255 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 709 Slot 255 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 709 Slot 256 Offset 0xf60 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AF60 0000000000000000: 10000c00 c6020000 c6020000 020000 ............... Slot 256 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 710 Slot 256 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 710 Slot 257 Offset 0xf6f Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AF6F 0000000000000000: 10000c00 c7020000 c7020000 020000 ............... Slot 257 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 711 Slot 257 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 711 Slot 258 Offset 0xf7e Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AF7E 0000000000000000: 10000c00 c8020000 c8020000 020000 ............... Slot 258 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 712 Slot 258 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 712 Slot 259 Offset 0xf8d Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AF8D 0000000000000000: 10000c00 c9020000 c9020000 020000 ............... Slot 259 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 713 Slot 259 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 713 Slot 260 Offset 0xf9c Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AF9C 0000000000000000: 10000c00 ca020000 ca020000 020000 ............... Slot 260 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 714 Slot 260 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 714 Slot 261 Offset 0xfab Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AFAB 0000000000000000: 10000c00 cb020000 cb020000 020000 ............... Slot 261 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 715 Slot 261 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 715 Slot 262 Offset 0xfba Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AFBA 0000000000000000: 10000c00 cc020000 cc020000 020000 ............... Slot 262 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 716 Slot 262 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 716 Slot 263 Offset 0xfc9 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AFC9 0000000000000000: 10000c00 cd020000 cd020000 020000 ............... Slot 263 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 717 Slot 263 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 717 Slot 264 Offset 0xfd8 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AFD8 0000000000000000: 10000c00 ce020000 ce020000 020000 ............... Slot 264 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 718 Slot 264 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 718 Slot 265 Offset 0xfe7 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AFE7 0000000000000000: 10000c00 cf020000 cf020000 020000 ............... Slot 265 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 719 Slot 265 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 719 Slot 266 Offset 0xff6 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815AFF6 0000000000000000: 10000c00 d0020000 d0020000 020000 ............... Slot 266 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 720 Slot 266 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 720 Slot 267 Offset 0x1005 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B005 0000000000000000: 10000c00 d1020000 d1020000 020000 ............... Slot 267 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 721 Slot 267 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 721 Slot 268 Offset 0x1014 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B014 0000000000000000: 10000c00 d2020000 d2020000 020000 ............... Slot 268 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 722 Slot 268 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 722 Slot 269 Offset 0x1023 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B023 0000000000000000: 10000c00 d3020000 d3020000 020000 ............... Slot 269 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 723 Slot 269 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 723 Slot 270 Offset 0x1032 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B032 0000000000000000: 10000c00 d4020000 d4020000 020000 ............... Slot 270 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 724 Slot 270 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 724 Slot 271 Offset 0x1041 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B041 0000000000000000: 10000c00 d5020000 d5020000 020000 ............... Slot 271 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 725 Slot 271 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 725 Slot 272 Offset 0x1050 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B050 0000000000000000: 10000c00 d6020000 d6020000 020000 ............... Slot 272 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 726 Slot 272 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 726 Slot 273 Offset 0x105f Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B05F 0000000000000000: 10000c00 d7020000 d7020000 020000 ............... Slot 273 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 727 Slot 273 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 727 Slot 274 Offset 0x106e Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B06E 0000000000000000: 10000c00 d8020000 d8020000 020000 ............... Slot 274 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 728 Slot 274 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 728 Slot 275 Offset 0x107d Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B07D 0000000000000000: 10000c00 d9020000 d9020000 020000 ............... Slot 275 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 729 Slot 275 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 729 Slot 276 Offset 0x108c Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B08C 0000000000000000: 10000c00 da020000 da020000 020000 ............... Slot 276 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 730 Slot 276 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 730 Slot 277 Offset 0x109b Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B09B 0000000000000000: 10000c00 db020000 db020000 020000 ............... Slot 277 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 731 Slot 277 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 731 Slot 278 Offset 0x10aa Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B0AA 0000000000000000: 10000c00 dc020000 dc020000 020000 ............... Slot 278 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 732 Slot 278 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 732 Slot 279 Offset 0x10b9 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B0B9 0000000000000000: 10000c00 dd020000 dd020000 020000 ............... Slot 279 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 733 Slot 279 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 733 Slot 280 Offset 0x10c8 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B0C8 0000000000000000: 10000c00 de020000 de020000 020000 ............... Slot 280 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 734 Slot 280 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 734 Slot 281 Offset 0x10d7 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B0D7 0000000000000000: 10000c00 df020000 df020000 020000 ............... Slot 281 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 735 Slot 281 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 735 Slot 282 Offset 0x10e6 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B0E6 0000000000000000: 10000c00 e0020000 e0020000 020000 ............... Slot 282 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 736 Slot 282 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 736 Slot 283 Offset 0x10f5 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B0F5 0000000000000000: 10000c00 e1020000 e1020000 020000 ............... Slot 283 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 737 Slot 283 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 737 Slot 284 Offset 0x1104 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B104 0000000000000000: 10000c00 e2020000 e2020000 020000 ............... Slot 284 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 738 Slot 284 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 738 Slot 285 Offset 0x1113 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B113 0000000000000000: 10000c00 e3020000 e3020000 020000 ............... Slot 285 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 739 Slot 285 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 739 Slot 286 Offset 0x1122 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B122 0000000000000000: 10000c00 e4020000 e4020000 020000 ............... Slot 286 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 740 Slot 286 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 740 Slot 287 Offset 0x1131 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B131 0000000000000000: 10000c00 e5020000 e5020000 020000 ............... Slot 287 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 741 Slot 287 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 741 Slot 288 Offset 0x1140 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B140 0000000000000000: 10000c00 e6020000 e6020000 020000 ............... Slot 288 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 742 Slot 288 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 742 Slot 289 Offset 0x114f Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B14F 0000000000000000: 10000c00 e7020000 e7020000 020000 ............... Slot 289 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 743 Slot 289 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 743 Slot 290 Offset 0x115e Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B15E 0000000000000000: 10000c00 e8020000 e8020000 020000 ............... Slot 290 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 744 Slot 290 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 744 Slot 291 Offset 0x116d Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B16D 0000000000000000: 10000c00 e9020000 e9020000 020000 ............... Slot 291 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 745 Slot 291 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 745 Slot 292 Offset 0x117c Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B17C 0000000000000000: 10000c00 ea020000 ea020000 020000 ............... Slot 292 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 746 Slot 292 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 746 Slot 293 Offset 0x118b Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B18B 0000000000000000: 10000c00 eb020000 eb020000 020000 ............... Slot 293 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 747 Slot 293 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 747 Slot 294 Offset 0x119a Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B19A 0000000000000000: 10000c00 ec020000 ec020000 020000 ............... Slot 294 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 748 Slot 294 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 748 Slot 295 Offset 0x11a9 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B1A9 0000000000000000: 10000c00 ed020000 ed020000 020000 ............... Slot 295 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 749 Slot 295 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 749 Slot 296 Offset 0x11b8 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B1B8 0000000000000000: 10000c00 ee020000 ee020000 020000 ............... Slot 296 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 750 Slot 296 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 750 Slot 297 Offset 0x11c7 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B1C7 0000000000000000: 10000c00 ef020000 ef020000 020000 ............... Slot 297 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 751 Slot 297 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 751 Slot 298 Offset 0x11d6 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B1D6 0000000000000000: 10000c00 f0020000 f0020000 020000 ............... Slot 298 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 752 Slot 298 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 752 Slot 299 Offset 0x11e5 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B1E5 0000000000000000: 10000c00 f1020000 f1020000 020000 ............... Slot 299 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 753 Slot 299 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 753 Slot 300 Offset 0x11f4 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B1F4 0000000000000000: 10000c00 f2020000 f2020000 020000 ............... Slot 300 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 754 Slot 300 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 754 Slot 301 Offset 0x1203 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B203 0000000000000000: 10000c00 f3020000 f3020000 020000 ............... Slot 301 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 755 Slot 301 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 755 Slot 302 Offset 0x1212 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B212 0000000000000000: 10000c00 f4020000 f4020000 020000 ............... Slot 302 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 756 Slot 302 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 756 Slot 303 Offset 0x1221 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B221 0000000000000000: 10000c00 f5020000 f5020000 020000 ............... Slot 303 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 757 Slot 303 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 757 Slot 304 Offset 0x1230 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B230 0000000000000000: 10000c00 f6020000 f6020000 020000 ............... Slot 304 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 758 Slot 304 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 758 Slot 305 Offset 0x123f Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B23F 0000000000000000: 10000c00 f7020000 f7020000 020000 ............... Slot 305 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 759 Slot 305 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 759 Slot 306 Offset 0x124e Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B24E 0000000000000000: 10000c00 f8020000 f8020000 020000 ............... Slot 306 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 760 Slot 306 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 760 Slot 307 Offset 0x125d Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B25D 0000000000000000: 10000c00 f9020000 f9020000 020000 ............... Slot 307 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 761 Slot 307 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 761 Slot 308 Offset 0x126c Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B26C 0000000000000000: 10000c00 fa020000 fa020000 020000 ............... Slot 308 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 762 Slot 308 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 762 Slot 309 Offset 0x127b Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B27B 0000000000000000: 10000c00 fb020000 fb020000 020000 ............... Slot 309 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 763 Slot 309 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 763 Slot 310 Offset 0x128a Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B28A 0000000000000000: 10000c00 fc020000 fc020000 020000 ............... Slot 310 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 764 Slot 310 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 764 Slot 311 Offset 0x1299 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B299 0000000000000000: 10000c00 fd020000 fd020000 020000 ............... Slot 311 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 765 Slot 311 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 765 Slot 312 Offset 0x12a8 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B2A8 0000000000000000: 10000c00 fe020000 fe020000 020000 ............... Slot 312 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 766 Slot 312 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 766 Slot 313 Offset 0x12b7 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B2B7 0000000000000000: 10000c00 ff020000 ff020000 020000 ............... Slot 313 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 767 Slot 313 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 767 Slot 314 Offset 0x12c6 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B2C6 0000000000000000: 10000c00 00030000 00030000 020000 ............... Slot 314 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 768 Slot 314 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 768 Slot 315 Offset 0x12d5 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B2D5 0000000000000000: 10000c00 01030000 01030000 020000 ............... Slot 315 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 769 Slot 315 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 769 Slot 316 Offset 0x12e4 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B2E4 0000000000000000: 10000c00 02030000 02030000 020000 ............... Slot 316 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 770 Slot 316 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 770 Slot 317 Offset 0x12f3 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B2F3 0000000000000000: 10000c00 03030000 03030000 020000 ............... Slot 317 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 771 Slot 317 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 771 Slot 318 Offset 0x1302 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B302 0000000000000000: 10000c00 04030000 04030000 020000 ............... Slot 318 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 772 Slot 318 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 772 Slot 319 Offset 0x1311 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B311 0000000000000000: 10000c00 05030000 05030000 020000 ............... Slot 319 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 773 Slot 319 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 773 Slot 320 Offset 0x1320 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B320 0000000000000000: 10000c00 06030000 06030000 020000 ............... Slot 320 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 774 Slot 320 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 774 Slot 321 Offset 0x132f Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B32F 0000000000000000: 10000c00 07030000 07030000 020000 ............... Slot 321 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 775 Slot 321 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 775 Slot 322 Offset 0x133e Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B33E 0000000000000000: 10000c00 08030000 08030000 020000 ............... Slot 322 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 776 Slot 322 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 776 Slot 323 Offset 0x134d Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B34D 0000000000000000: 10000c00 09030000 09030000 020000 .... ... ...... Slot 323 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 777 Slot 323 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 777 Slot 324 Offset 0x135c Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B35C 0000000000000000: 10000c00 0a030000 0a030000 020000 ............... Slot 324 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 778 Slot 324 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 778 Slot 325 Offset 0x136b Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B36B 0000000000000000: 10000c00 0b030000 0b030000 020000 ............... Slot 325 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 779 Slot 325 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 779 Slot 326 Offset 0x137a Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B37A 0000000000000000: 10000c00 0c030000 0c030000 020000 ............... Slot 326 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 780 Slot 326 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 780 Slot 327 Offset 0x1389 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B389 0000000000000000: 10000c00 0d030000 0d030000 020000 ............... Slot 327 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 781 Slot 327 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 781 Slot 328 Offset 0x1398 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B398 0000000000000000: 10000c00 0e030000 0e030000 020000 ............... Slot 328 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 782 Slot 328 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 782 Slot 329 Offset 0x13a7 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B3A7 0000000000000000: 10000c00 0f030000 0f030000 020000 ............... Slot 329 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 783 Slot 329 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 783 Slot 330 Offset 0x13b6 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B3B6 0000000000000000: 10000c00 10030000 10030000 020000 ............... Slot 330 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 784 Slot 330 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 784 Slot 331 Offset 0x13c5 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B3C5 0000000000000000: 10000c00 11030000 11030000 020000 ............... Slot 331 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 785 Slot 331 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 785 Slot 332 Offset 0x13d4 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B3D4 0000000000000000: 10000c00 12030000 12030000 020000 ............... Slot 332 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 786 Slot 332 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 786 Slot 333 Offset 0x13e3 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B3E3 0000000000000000: 10000c00 13030000 13030000 020000 ............... Slot 333 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 787 Slot 333 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 787 Slot 334 Offset 0x13f2 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B3F2 0000000000000000: 10000c00 14030000 14030000 020000 ............... Slot 334 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 788 Slot 334 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 788 Slot 335 Offset 0x1401 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B401 0000000000000000: 10000c00 15030000 15030000 020000 ............... Slot 335 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 789 Slot 335 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 789 Slot 336 Offset 0x1410 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B410 0000000000000000: 10000c00 16030000 16030000 020000 ............... Slot 336 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 790 Slot 336 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 790 Slot 337 Offset 0x141f Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B41F 0000000000000000: 10000c00 17030000 17030000 020000 ............... Slot 337 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 791 Slot 337 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 791 Slot 338 Offset 0x142e Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B42E 0000000000000000: 10000c00 18030000 18030000 020000 ............... Slot 338 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 792 Slot 338 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 792 Slot 339 Offset 0x143d Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B43D 0000000000000000: 10000c00 19030000 19030000 020000 ............... Slot 339 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 793 Slot 339 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 793 Slot 340 Offset 0x144c Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B44C 0000000000000000: 10000c00 1a030000 1a030000 020000 ............... Slot 340 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 794 Slot 340 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 794 Slot 341 Offset 0x145b Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B45B 0000000000000000: 10000c00 1b030000 1b030000 020000 ............... Slot 341 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 795 Slot 341 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 795 Slot 342 Offset 0x146a Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B46A 0000000000000000: 10000c00 1c030000 1c030000 020000 ............... Slot 342 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 796 Slot 342 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 796 Slot 343 Offset 0x1479 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B479 0000000000000000: 10000c00 1d030000 1d030000 020000 ............... Slot 343 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 797 Slot 343 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 797 Slot 344 Offset 0x1488 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B488 0000000000000000: 10000c00 1e030000 1e030000 020000 ............... Slot 344 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 798 Slot 344 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 798 Slot 345 Offset 0x1497 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B497 0000000000000000: 10000c00 1f030000 1f030000 020000 ............... Slot 345 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 799 Slot 345 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 799 Slot 346 Offset 0x14a6 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B4A6 0000000000000000: 10000c00 20030000 20030000 020000 .... ... ...... Slot 346 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 800 Slot 346 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 800 Slot 347 Offset 0x14b5 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B4B5 0000000000000000: 10000c00 21030000 21030000 020000 ....!...!...... Slot 347 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 801 Slot 347 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 801 Slot 348 Offset 0x14c4 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B4C4 0000000000000000: 10000c00 22030000 22030000 020000 ...."..."...... Slot 348 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 802 Slot 348 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 802 Slot 349 Offset 0x14d3 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B4D3 0000000000000000: 10000c00 23030000 23030000 020000 ....#...#...... Slot 349 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 803 Slot 349 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 803 Slot 350 Offset 0x14e2 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B4E2 0000000000000000: 10000c00 24030000 24030000 020000 ....$...$...... Slot 350 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 804 Slot 350 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 804 Slot 351 Offset 0x14f1 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B4F1 0000000000000000: 10000c00 25030000 25030000 020000 ....%...%...... Slot 351 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 805 Slot 351 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 805 Slot 352 Offset 0x1500 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B500 0000000000000000: 10000c00 26030000 26030000 020000 ....&...&...... Slot 352 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 806 Slot 352 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 806 Slot 353 Offset 0x150f Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B50F 0000000000000000: 10000c00 27030000 27030000 020000 ....'...'...... Slot 353 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 807 Slot 353 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 807 Slot 354 Offset 0x151e Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B51E 0000000000000000: 10000c00 28030000 28030000 020000 ....(...(...... Slot 354 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 808 Slot 354 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 808 Slot 355 Offset 0x152d Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B52D 0000000000000000: 10000c00 29030000 29030000 020000 ....)...)...... Slot 355 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 809 Slot 355 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 809 Slot 356 Offset 0x153c Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B53C 0000000000000000: 10000c00 2a030000 2a030000 020000 ....*...*...... Slot 356 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 810 Slot 356 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 810 Slot 357 Offset 0x154b Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B54B 0000000000000000: 10000c00 2b030000 2b030000 020000 ....+...+...... Slot 357 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 811 Slot 357 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 811 Slot 358 Offset 0x155a Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B55A 0000000000000000: 10000c00 2c030000 2c030000 020000 ....,...,...... Slot 358 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 812 Slot 358 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 812 Slot 359 Offset 0x1569 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B569 0000000000000000: 10000c00 2d030000 2d030000 020000 ....-...-...... Slot 359 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 813 Slot 359 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 813 Slot 360 Offset 0x1578 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B578 0000000000000000: 10000c00 2e030000 2e030000 020000 ............... Slot 360 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 814 Slot 360 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 814 Slot 361 Offset 0x1587 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B587 0000000000000000: 10000c00 2f030000 2f030000 020000 ..../.../...... Slot 361 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 815 Slot 361 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 815 Slot 362 Offset 0x1596 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B596 0000000000000000: 10000c00 30030000 30030000 020000 ....0...0...... Slot 362 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 816 Slot 362 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 816 Slot 363 Offset 0x15a5 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B5A5 0000000000000000: 10000c00 31030000 31030000 020000 ....1...1...... Slot 363 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 817 Slot 363 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 817 Slot 364 Offset 0x15b4 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B5B4 0000000000000000: 10000c00 32030000 32030000 020000 ....2...2...... Slot 364 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 818 Slot 364 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 818 Slot 365 Offset 0x15c3 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B5C3 0000000000000000: 10000c00 33030000 33030000 020000 ....3...3...... Slot 365 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 819 Slot 365 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 819 Slot 366 Offset 0x15d2 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B5D2 0000000000000000: 10000c00 34030000 34030000 020000 ....4...4...... Slot 366 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 820 Slot 366 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 820 Slot 367 Offset 0x15e1 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B5E1 0000000000000000: 10000c00 35030000 35030000 020000 ....5...5...... Slot 367 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 821 Slot 367 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 821 Slot 368 Offset 0x15f0 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B5F0 0000000000000000: 10000c00 36030000 36030000 020000 ....6...6...... Slot 368 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 822 Slot 368 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 822 Slot 369 Offset 0x15ff Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B5FF 0000000000000000: 10000c00 37030000 37030000 020000 ....7...7...... Slot 369 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 823 Slot 369 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 823 Slot 370 Offset 0x160e Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B60E 0000000000000000: 10000c00 38030000 38030000 020000 ....8...8...... Slot 370 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 824 Slot 370 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 824 Slot 371 Offset 0x161d Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B61D 0000000000000000: 10000c00 39030000 39030000 020000 ....9...9...... Slot 371 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 825 Slot 371 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 825 Slot 372 Offset 0x162c Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B62C 0000000000000000: 10000c00 3a030000 3a030000 020000 ....:...:...... Slot 372 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 826 Slot 372 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 826 Slot 373 Offset 0x163b Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B63B 0000000000000000: 10000c00 3b030000 3b030000 020000 ....;...;...... Slot 373 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 827 Slot 373 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 827 Slot 374 Offset 0x164a Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B64A 0000000000000000: 10000c00 3c030000 3c030000 020000 ....<...<...... Slot 374 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 828 Slot 374 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 828 Slot 375 Offset 0x1659 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B659 0000000000000000: 10000c00 3d030000 3d030000 020000 ....=...=...... Slot 375 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 829 Slot 375 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 829 Slot 376 Offset 0x1668 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B668 0000000000000000: 10000c00 3e030000 3e030000 020000 ....>...>...... Slot 376 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 830 Slot 376 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 830 Slot 377 Offset 0x1677 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B677 0000000000000000: 10000c00 3f030000 3f030000 020000 ....?...?...... Slot 377 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 831 Slot 377 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 831 Slot 378 Offset 0x1686 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B686 0000000000000000: 10000c00 40030000 40030000 020000 ....@...@...... Slot 378 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 832 Slot 378 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 832 Slot 379 Offset 0x1695 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B695 0000000000000000: 10000c00 41030000 41030000 020000 ....A...A...... Slot 379 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 833 Slot 379 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 833 Slot 380 Offset 0x16a4 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B6A4 0000000000000000: 10000c00 42030000 42030000 020000 ....B...B...... Slot 380 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 834 Slot 380 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 834 Slot 381 Offset 0x16b3 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B6B3 0000000000000000: 10000c00 43030000 43030000 020000 ....C...C...... Slot 381 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 835 Slot 381 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 835 Slot 382 Offset 0x16c2 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B6C2 0000000000000000: 10000c00 44030000 44030000 020000 ....D...D...... Slot 382 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 836 Slot 382 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 836 Slot 383 Offset 0x16d1 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B6D1 0000000000000000: 10000c00 45030000 45030000 020000 ....E...E...... Slot 383 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 837 Slot 383 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 837 Slot 384 Offset 0x16e0 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B6E0 0000000000000000: 10000c00 46030000 46030000 020000 ....F...F...... Slot 384 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 838 Slot 384 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 838 Slot 385 Offset 0x16ef Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B6EF 0000000000000000: 10000c00 47030000 47030000 020000 ....G...G...... Slot 385 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 839 Slot 385 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 839 Slot 386 Offset 0x16fe Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B6FE 0000000000000000: 10000c00 48030000 48030000 020000 ....H...H...... Slot 386 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 840 Slot 386 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 840 Slot 387 Offset 0x170d Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B70D 0000000000000000: 10000c00 49030000 49030000 020000 ....I...I...... Slot 387 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 841 Slot 387 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 841 Slot 388 Offset 0x171c Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B71C 0000000000000000: 10000c00 4a030000 4a030000 020000 ....J...J...... Slot 388 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 842 Slot 388 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 842 Slot 389 Offset 0x172b Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B72B 0000000000000000: 10000c00 4b030000 4b030000 020000 ....K...K...... Slot 389 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 843 Slot 389 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 843 Slot 390 Offset 0x173a Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B73A 0000000000000000: 10000c00 4c030000 4c030000 020000 ....L...L...... Slot 390 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 844 Slot 390 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 844 Slot 391 Offset 0x1749 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B749 0000000000000000: 10000c00 4d030000 4d030000 020000 ....M...M...... Slot 391 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 845 Slot 391 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 845 Slot 392 Offset 0x1758 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B758 0000000000000000: 10000c00 4e030000 4e030000 020000 ....N...N...... Slot 392 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 846 Slot 392 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 846 Slot 393 Offset 0x1767 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B767 0000000000000000: 10000c00 4f030000 4f030000 020000 ....O...O...... Slot 393 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 847 Slot 393 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 847 Slot 394 Offset 0x1776 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B776 0000000000000000: 10000c00 50030000 50030000 020000 ....P...P...... Slot 394 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 848 Slot 394 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 848 Slot 395 Offset 0x1785 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B785 0000000000000000: 10000c00 51030000 51030000 020000 ....Q...Q...... Slot 395 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 849 Slot 395 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 849 Slot 396 Offset 0x1794 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B794 0000000000000000: 10000c00 52030000 52030000 020000 ....R...R...... Slot 396 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 850 Slot 396 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 850 Slot 397 Offset 0x17a3 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B7A3 0000000000000000: 10000c00 53030000 53030000 020000 ....S...S...... Slot 397 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 851 Slot 397 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 851 Slot 398 Offset 0x17b2 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B7B2 0000000000000000: 10000c00 54030000 54030000 020000 ....T...T...... Slot 398 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 852 Slot 398 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 852 Slot 399 Offset 0x17c1 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B7C1 0000000000000000: 10000c00 55030000 55030000 020000 ....U...U...... Slot 399 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 853 Slot 399 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 853 Slot 400 Offset 0x17d0 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B7D0 0000000000000000: 10000c00 56030000 56030000 020000 ....V...V...... Slot 400 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 854 Slot 400 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 854 Slot 401 Offset 0x17df Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B7DF 0000000000000000: 10000c00 57030000 57030000 020000 ....W...W...... Slot 401 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 855 Slot 401 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 855 Slot 402 Offset 0x17ee Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B7EE 0000000000000000: 10000c00 58030000 58030000 020000 ....X...X...... Slot 402 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 856 Slot 402 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 856 Slot 403 Offset 0x17fd Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B7FD 0000000000000000: 10000c00 59030000 59030000 020000 ....Y...Y...... Slot 403 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 857 Slot 403 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 857 Slot 404 Offset 0x180c Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B80C 0000000000000000: 10000c00 5a030000 5a030000 020000 ....Z...Z...... Slot 404 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 858 Slot 404 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 858 Slot 405 Offset 0x181b Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B81B 0000000000000000: 10000c00 5b030000 5b030000 020000 ....[...[...... Slot 405 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 859 Slot 405 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 859 Slot 406 Offset 0x182a Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B82A 0000000000000000: 10000c00 5c030000 5c030000 020000 ....\...\...... Slot 406 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 860 Slot 406 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 860 Slot 407 Offset 0x1839 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B839 0000000000000000: 10000c00 5d030000 5d030000 020000 ....]...]...... Slot 407 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 861 Slot 407 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 861 Slot 408 Offset 0x1848 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B848 0000000000000000: 10000c00 5e030000 5e030000 020000 ....^...^...... Slot 408 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 862 Slot 408 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 862 Slot 409 Offset 0x1857 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B857 0000000000000000: 10000c00 5f030000 5f030000 020000 ...._..._...... Slot 409 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 863 Slot 409 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 863 Slot 410 Offset 0x1866 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B866 0000000000000000: 10000c00 60030000 60030000 020000 ....`...`...... Slot 410 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 864 Slot 410 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 864 Slot 411 Offset 0x1875 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B875 0000000000000000: 10000c00 61030000 61030000 020000 ....a...a...... Slot 411 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 865 Slot 411 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 865 Slot 412 Offset 0x1884 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B884 0000000000000000: 10000c00 62030000 62030000 020000 ....b...b...... Slot 412 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 866 Slot 412 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 866 Slot 413 Offset 0x1893 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B893 0000000000000000: 10000c00 63030000 63030000 020000 ....c...c...... Slot 413 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 867 Slot 413 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 867 Slot 414 Offset 0x18a2 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B8A2 0000000000000000: 10000c00 64030000 64030000 020000 ....d...d...... Slot 414 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 868 Slot 414 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 868 Slot 415 Offset 0x18b1 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B8B1 0000000000000000: 10000c00 65030000 65030000 020000 ....e...e...... Slot 415 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 869 Slot 415 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 869 Slot 416 Offset 0x18c0 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B8C0 0000000000000000: 10000c00 66030000 66030000 020000 ....f...f...... Slot 416 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 870 Slot 416 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 870 Slot 417 Offset 0x18cf Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B8CF 0000000000000000: 10000c00 67030000 67030000 020000 ....g...g...... Slot 417 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 871 Slot 417 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 871 Slot 418 Offset 0x18de Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B8DE 0000000000000000: 10000c00 68030000 68030000 020000 ....h...h...... Slot 418 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 872 Slot 418 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 872 Slot 419 Offset 0x18ed Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B8ED 0000000000000000: 10000c00 69030000 69030000 020000 ....i...i...... Slot 419 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 873 Slot 419 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 873 Slot 420 Offset 0x18fc Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B8FC 0000000000000000: 10000c00 6a030000 6a030000 020000 ....j...j...... Slot 420 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 874 Slot 420 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 874 Slot 421 Offset 0x190b Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B90B 0000000000000000: 10000c00 6b030000 6b030000 020000 ....k...k...... Slot 421 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 875 Slot 421 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 875 Slot 422 Offset 0x191a Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B91A 0000000000000000: 10000c00 6c030000 6c030000 020000 ....l...l...... Slot 422 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 876 Slot 422 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 876 Slot 423 Offset 0x1929 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B929 0000000000000000: 10000c00 6d030000 6d030000 020000 ....m...m...... Slot 423 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 877 Slot 423 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 877 Slot 424 Offset 0x1938 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B938 0000000000000000: 10000c00 6e030000 6e030000 020000 ....n...n...... Slot 424 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 878 Slot 424 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 878 Slot 425 Offset 0x1947 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B947 0000000000000000: 10000c00 6f030000 6f030000 020000 ....o...o...... Slot 425 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 879 Slot 425 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 879 Slot 426 Offset 0x1956 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B956 0000000000000000: 10000c00 70030000 70030000 020000 ....p...p...... Slot 426 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 880 Slot 426 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 880 Slot 427 Offset 0x1965 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B965 0000000000000000: 10000c00 71030000 71030000 020000 ....q...q...... Slot 427 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 881 Slot 427 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 881 Slot 428 Offset 0x1974 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B974 0000000000000000: 10000c00 72030000 72030000 020000 ....r...r...... Slot 428 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 882 Slot 428 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 882 Slot 429 Offset 0x1983 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B983 0000000000000000: 10000c00 73030000 73030000 020000 ....s...s...... Slot 429 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 883 Slot 429 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 883 Slot 430 Offset 0x1992 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B992 0000000000000000: 10000c00 74030000 74030000 020000 ....t...t...... Slot 430 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 884 Slot 430 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 884 Slot 431 Offset 0x19a1 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B9A1 0000000000000000: 10000c00 75030000 75030000 020000 ....u...u...... Slot 431 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 885 Slot 431 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 885 Slot 432 Offset 0x19b0 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B9B0 0000000000000000: 10000c00 76030000 76030000 020000 ....v...v...... Slot 432 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 886 Slot 432 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 886 Slot 433 Offset 0x19bf Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B9BF 0000000000000000: 10000c00 77030000 77030000 020000 ....w...w...... Slot 433 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 887 Slot 433 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 887 Slot 434 Offset 0x19ce Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B9CE 0000000000000000: 10000c00 78030000 78030000 020000 ....x...x...... Slot 434 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 888 Slot 434 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 888 Slot 435 Offset 0x19dd Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B9DD 0000000000000000: 10000c00 79030000 79030000 020000 ....y...y...... Slot 435 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 889 Slot 435 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 889 Slot 436 Offset 0x19ec Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B9EC 0000000000000000: 10000c00 7a030000 7a030000 020000 ....z...z...... Slot 436 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 890 Slot 436 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 890 Slot 437 Offset 0x19fb Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815B9FB 0000000000000000: 10000c00 7b030000 7b030000 020000 ....{...{...... Slot 437 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 891 Slot 437 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 891 Slot 438 Offset 0x1a0a Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815BA0A 0000000000000000: 10000c00 7c030000 7c030000 020000 ....|...|...... Slot 438 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 892 Slot 438 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 892 Slot 439 Offset 0x1a19 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815BA19 0000000000000000: 10000c00 7d030000 7d030000 020000 ....}...}...... Slot 439 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 893 Slot 439 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 893 Slot 440 Offset 0x1a28 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815BA28 0000000000000000: 10000c00 7e030000 7e030000 020000 ....~...~...... Slot 440 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 894 Slot 440 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 894 Slot 441 Offset 0x1a37 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815BA37 0000000000000000: 10000c00 7f030000 7f030000 020000 ............... Slot 441 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 895 Slot 441 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 895 Slot 442 Offset 0x1a46 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815BA46 0000000000000000: 10000c00 80030000 80030000 020000 ............... Slot 442 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 896 Slot 442 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 896 Slot 443 Offset 0x1a55 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815BA55 0000000000000000: 10000c00 81030000 81030000 020000 ............... Slot 443 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 897 Slot 443 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 897 Slot 444 Offset 0x1a64 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815BA64 0000000000000000: 10000c00 82030000 82030000 020000 ............... Slot 444 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 898 Slot 444 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 898 Slot 445 Offset 0x1a73 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815BA73 0000000000000000: 10000c00 83030000 83030000 020000 ............... Slot 445 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 899 Slot 445 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 899 Slot 446 Offset 0x1a82 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815BA82 0000000000000000: 10000c00 84030000 84030000 020000 ............... Slot 446 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 900 Slot 446 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 900 Slot 447 Offset 0x1a91 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815BA91 0000000000000000: 10000c00 85030000 85030000 020000 ............... Slot 447 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 901 Slot 447 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 901 Slot 448 Offset 0x1aa0 Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815BAA0 0000000000000000: 10000c00 86030000 86030000 020000 ............... Slot 448 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 902 Slot 448 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 902 Slot 449 Offset 0x1aaf Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815BAAF 0000000000000000: 10000c00 87030000 87030000 020000 ............... Slot 449 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 903 Slot 449 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 903 Slot 450 Offset 0x1abe Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815BABE 0000000000000000: 10000c00 88030000 88030000 020000 ............... Slot 450 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 904 Slot 450 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 904 Slot 451 Offset 0x1acd Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815BACD 0000000000000000: 10000c00 89030000 89030000 020000 ............... Slot 451 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 905 Slot 451 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 905 Slot 452 Offset 0x1adc Length 15 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15 Memory Dump @0x000000005815BADC 0000000000000000: 10000c00 8a030000 8a030000 020000 ............... Slot 452 Column 1 Offset 0x4 Length 4 Length (physical) 4 id = 906 Slot 452 Column 2 Offset 0x8 Length 4 Length (physical) 4 c1 = 906 DBCC 执行完毕。如果 DBCC 输出了错误信息,请与系统管理员联系。
Slot 1 Offset 0x6f Length 15
53
54 Record Type = PRIMARY_RECORD Record Attributes = NULL_BITMAP Record Size = 15
55
56 Memory Dump @0x000000005815A06F
57
58 0000000000000000: 10000c00 c7010000 c7010000 020000 ...............
59
60 Slot 1 Column 1 Offset 0x4 Length 4 Length (physical) 4
61
62 id = 455
63
64 Slot 1 Column 2 Offset 0x8 Length 4 Length (physical) 4
65
66 c1 = 455

可以看到在c1列上建立的列存储索引,数据页会存放c1列的数据,而不是存放指向LOB页面的指针

回到这个问题: 为什麽在聚集索引表中,LOB页面没有Lob_Tree_Page?

本人的观点:

因为聚集索引中,text字段不在索引列里,只是当一个表有聚集索引的时候,无论是什么种类的页面,

LOB页面也好,in-row data页面也好 row-overflow页面也好,都是属于聚集索引的一部分,而实际的表数据只是存在于聚集索引的叶子节点

而列存储索引不同,LOB页面就是存放的索引数据(这里不知道为什么既然不能在ntext、text和 image这些数据类型上建立索引但是也要

用LOB页面来存放索引数据),既然存放索引当然可以用树结构来组织这些数据啦!而且这个树结构应该不是B树,因为在列存储索引中

“列存储索引不支持 SEEK”,而且刚才indexlevel列是没有等级的

SQLSERVER中的LOB页面简单研究


文章就写到这里了

最后大家看了这篇文章,应该能回答下面这个帖子的问题了

http://social.msdn.microsoft.com/forums/zh-CN/b84d1311-8399-4222-b31f-de1c3727eb5d/sqlserver-2012-

如有不对的地方,欢迎大家拍砖o(∩_∩)o

2014-6-24补充:

相关文章

SQL Server Storage Engine: LOB Storage

SQLSERVER中的LOB页面简单研究